mn-video-player 1.2.3 → 1.2.5

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.
@@ -2,12 +2,12 @@ function dt(R) {
2
2
  this.gl = R, this.texture = R.createTexture(), R.bindTexture(R.TEXTURE_2D, this.texture), R.texParameteri(R.TEXTURE_2D, R.TEXTURE_MAG_FILTER, R.LINEAR), R.texParameteri(R.TEXTURE_2D, R.TEXTURE_MIN_FILTER, R.LINEAR), R.texParameteri(R.TEXTURE_2D, R.TEXTURE_WRAP_S, R.CLAMP_TO_EDGE), R.texParameteri(R.TEXTURE_2D, R.TEXTURE_WRAP_T, R.CLAMP_TO_EDGE);
3
3
  }
4
4
  dt.prototype.bind = function(R, a, p) {
5
- var y = this.gl;
6
- y.activeTexture([y.TEXTURE0, y.TEXTURE1, y.TEXTURE2][R]), y.bindTexture(y.TEXTURE_2D, this.texture), y.uniform1i(y.getUniformLocation(a, p), R);
5
+ var m = this.gl;
6
+ m.activeTexture([m.TEXTURE0, m.TEXTURE1, m.TEXTURE2][R]), m.bindTexture(m.TEXTURE_2D, this.texture), m.uniform1i(m.getUniformLocation(a, p), R);
7
7
  };
8
8
  dt.prototype.fill = function(R, a, p) {
9
- var y = this.gl;
10
- y.bindTexture(y.TEXTURE_2D, this.texture), y.texImage2D(y.TEXTURE_2D, 0, y.LUMINANCE, R, a, 0, y.LUMINANCE, y.UNSIGNED_BYTE, p);
9
+ var m = this.gl;
10
+ m.bindTexture(m.TEXTURE_2D, this.texture), m.texImage2D(m.TEXTURE_2D, 0, m.LUMINANCE, R, a, 0, m.LUMINANCE, m.UNSIGNED_BYTE, p);
11
11
  };
12
12
  function Je(R, a) {
13
13
  this.canvas = R, console.log("this.canvas", this.canvas), this.gl = R.getContext("webgl") || R.getContext("experimental-webgl"), this.initGL(a);
@@ -19,7 +19,7 @@ Je.prototype.initGL = function(R) {
19
19
  }
20
20
  var a = this.gl;
21
21
  a.pixelStorei(a.UNPACK_ALIGNMENT, 1);
22
- var p = a.createProgram(), y = [
22
+ var p = a.createProgram(), m = [
23
23
  "attribute highp vec4 aVertexPosition;",
24
24
  "attribute vec2 aTextureCoord;",
25
25
  "varying highp vec2 vTextureCoord;",
@@ -29,7 +29,7 @@ Je.prototype.initGL = function(R) {
29
29
  "}"
30
30
  ].join(`
31
31
  `), k = a.createShader(a.VERTEX_SHADER);
32
- a.shaderSource(k, y), a.compileShader(k);
32
+ a.shaderSource(k, m), a.compileShader(k);
33
33
  var w = [
34
34
  "precision highp float;",
35
35
  "varying lowp vec2 vTextureCoord;",
@@ -47,8 +47,8 @@ Je.prototype.initGL = function(R) {
47
47
  " gl_FragColor = vec4(texture2D(YTexture, vTextureCoord).x, texture2D(UTexture, vTextureCoord).x, texture2D(VTexture, vTextureCoord).x, 1) * YUV2RGB;",
48
48
  "}"
49
49
  ].join(`
50
- `), D = a.createShader(a.FRAGMENT_SHADER);
51
- a.shaderSource(D, w), a.compileShader(D), a.attachShader(p, k), a.attachShader(p, D), a.linkProgram(p), a.useProgram(p), a.getProgramParameter(p, a.LINK_STATUS) || console.log("[ER] Shader link failed.");
50
+ `), A = a.createShader(a.FRAGMENT_SHADER);
51
+ a.shaderSource(A, w), a.compileShader(A), a.attachShader(p, k), a.attachShader(p, A), a.linkProgram(p), a.useProgram(p), a.getProgramParameter(p, a.LINK_STATUS) || console.log("[ER] Shader link failed.");
52
52
  var $ = a.getAttribLocation(p, "aVertexPosition");
53
53
  a.enableVertexAttribArray($);
54
54
  var q = a.getAttribLocation(p, "aTextureCoord");
@@ -58,13 +58,13 @@ Je.prototype.initGL = function(R) {
58
58
  var re = a.createBuffer();
59
59
  a.bindBuffer(a.ARRAY_BUFFER, re), a.bufferData(a.ARRAY_BUFFER, new Float32Array([1, 0, 0, 0, 1, 1, 0, 1]), a.STATIC_DRAW), a.vertexAttribPointer(q, 2, a.FLOAT, !1, 0, 0), a.y = new dt(a), a.u = new dt(a), a.v = new dt(a), a.y.bind(0, p, "YTexture"), a.u.bind(1, p, "UTexture"), a.v.bind(2, p, "VTexture");
60
60
  };
61
- Je.prototype.renderFrame = function(R, a, p, y, k) {
61
+ Je.prototype.renderFrame = function(R, a, p, m, k) {
62
62
  if (!this.gl) {
63
63
  console.log("[ER] Render frame failed due to WebGL not supported.");
64
64
  return;
65
65
  }
66
66
  var w = this.gl;
67
- w.viewport(0, 0, w.canvas.width, w.canvas.height), w.clearColor(0, 0, 0, 0), w.clear(w.COLOR_BUFFER_BIT), w.y.fill(a, p, R.subarray(0, y)), w.u.fill(a >> 1, p >> 1, R.subarray(y, y + k)), w.v.fill(a >> 1, p >> 1, R.subarray(y + k, R.length)), w.drawArrays(w.TRIANGLE_STRIP, 0, 4);
67
+ w.viewport(0, 0, w.canvas.width, w.canvas.height), w.clearColor(0, 0, 0, 0), w.clear(w.COLOR_BUFFER_BIT), w.y.fill(a, p, R.subarray(0, m)), w.u.fill(a >> 1, p >> 1, R.subarray(m, m + k)), w.v.fill(a >> 1, p >> 1, R.subarray(m + k, R.length)), w.drawArrays(w.TRIANGLE_STRIP, 0, 4);
68
68
  };
69
69
  Je.prototype.fullscreen = function() {
70
70
  var R = this.canvas;
@@ -77,7 +77,7 @@ Je.prototype.stop = function() {
77
77
  var R = this.gl;
78
78
  R && R.getExtension("WEBGL_lose_context").loseContext();
79
79
  };
80
- class Jn {
80
+ class Qn {
81
81
  cacheDataList = [];
82
82
  constructor(a) {
83
83
  this.init(a);
@@ -120,7 +120,7 @@ class Jn {
120
120
  speed(a) {
121
121
  if (this.playbackRate = a, this.playingBuffers.forEach((p) => {
122
122
  p.bufferSource.playbackRate.value = a;
123
- const y = this.audioCtx.currentTime - p.startTime, k = (p.endTime - p.startTime) * (1 / p.bufferSource.playbackRate.value) - y;
123
+ const m = this.audioCtx.currentTime - p.startTime, k = (p.endTime - p.startTime) * (1 / p.bufferSource.playbackRate.value) - m;
124
124
  p.endTime = this.audioCtx.currentTime + k;
125
125
  }), this.startTime > this.audioCtx.currentTime) {
126
126
  const p = this.audioCtx.currentTime - this.startTime;
@@ -133,20 +133,20 @@ class Jn {
133
133
  feed(a, p = null) {
134
134
  if (!this.isTypedArray(a)) return;
135
135
  a = this.getFormatedValue(a);
136
- let y = p;
137
- this.baseTime !== null && p !== null && (y = this.baseAudioTime + (p - this.baseTime)), this.cacheDataList.push({
136
+ let m = p;
137
+ this.baseTime !== null && p !== null && (m = this.baseAudioTime + (p - this.baseTime)), this.cacheDataList.push({
138
138
  data: a,
139
- timestamp: y,
139
+ timestamp: m,
140
140
  rawTimestamp: p,
141
141
  // 保存原始时间戳用于调试
142
142
  duration: a.length / this.option.sampleRate / this.option.channels
143
143
  }), this.cacheDataList.sort((k, w) => k.timestamp === null ? 1 : w.timestamp === null ? -1 : k.timestamp - w.timestamp);
144
144
  }
145
145
  getFormatedValue(a) {
146
- const p = new this.typedArray(a.buffer), y = new Float32Array(p.length);
146
+ const p = new this.typedArray(a.buffer), m = new Float32Array(p.length);
147
147
  for (let k = 0; k < p.length; k++)
148
- y[k] = p[k] / this.maxValue;
149
- return y;
148
+ m[k] = p[k] / this.maxValue;
149
+ return m;
150
150
  }
151
151
  volume(a) {
152
152
  this.gainNode.gain.value = a;
@@ -162,11 +162,11 @@ class Jn {
162
162
  (L) => L.timestamp === null || L.timestamp <= a + 0.1
163
163
  );
164
164
  if (!p.length) return;
165
- const y = p.reduce((L, Le) => L + Le.data.length, 0), k = new Float32Array(y);
165
+ const m = p.reduce((L, Le) => L + Le.data.length, 0), k = new Float32Array(m);
166
166
  let w = 0;
167
167
  for (const L of p)
168
168
  k.set(L.data, w), w += L.data.length;
169
- const D = this.audioCtx.createBufferSource(), $ = k.length / this.option.channels, q = this.audioCtx.createBuffer(
169
+ const A = this.audioCtx.createBufferSource(), $ = k.length / this.option.channels, q = this.audioCtx.createBuffer(
170
170
  this.option.channels,
171
171
  $,
172
172
  this.option.sampleRate
@@ -175,19 +175,19 @@ class Jn {
175
175
  for (re = 0; re < this.option.channels; re++)
176
176
  for (F = q.getChannelData(re), Z = re, de = 50, ie = 0; ie < $; ie++)
177
177
  F[ie] = k[Z], ie < 50 && (F[ie] = F[ie] * ie / 50), ie >= $ - 51 && (F[ie] = F[ie] * de-- / 50), Z += this.option.channels;
178
- let j;
179
- p[0].timestamp !== null ? j = Math.max(p[0].timestamp, this.startTime) : j = Math.max(a, this.startTime), D.buffer = q, D.connect(this.gainNode), D.playbackRate.value = this.playbackRate;
178
+ let M;
179
+ p[0].timestamp !== null ? M = Math.max(p[0].timestamp, this.startTime) : M = Math.max(a, this.startTime), A.buffer = q, A.connect(this.gainNode), A.playbackRate.value = this.playbackRate;
180
180
  const W = {
181
- bufferSource: D,
181
+ bufferSource: A,
182
182
  buffer: q,
183
- startTime: j,
184
- endTime: j + q.duration / this.playbackRate,
183
+ startTime: M,
184
+ endTime: M + q.duration / this.playbackRate,
185
185
  rawData: p
186
186
  };
187
- this.playingBuffers.push(W), D.onended = () => {
188
- const L = this.playingBuffers.findIndex((Le) => Le.bufferSource === D);
187
+ this.playingBuffers.push(W), A.onended = () => {
188
+ const L = this.playingBuffers.findIndex((Le) => Le.bufferSource === A);
189
189
  L !== -1 && this.playingBuffers.splice(L, 1);
190
- }, D.start(j), this.startTime = j + q.duration / this.playbackRate;
190
+ }, A.start(M), this.startTime = M + q.duration / this.playbackRate;
191
191
  const Ne = new Set(p.map(
192
192
  (L, Le) => this.cacheDataList.findIndex(
193
193
  (Ke) => Ke.data === L.data && Ke.timestamp === L.timestamp
@@ -203,28 +203,28 @@ class Jn {
203
203
  play(a, p = null) {
204
204
  if (!this.isTypedArray(a) || (a = this.getFormatedValue(a), !a.length))
205
205
  return;
206
- const y = this.audioCtx.createBufferSource(), k = a.length / this.option.channels, w = this.audioCtx.createBuffer(
206
+ const m = this.audioCtx.createBufferSource(), k = a.length / this.option.channels, w = this.audioCtx.createBuffer(
207
207
  this.option.channels,
208
208
  k,
209
209
  this.option.sampleRate
210
210
  );
211
- let D, $, q, F, re;
211
+ let A, $, q, F, re;
212
212
  for ($ = 0; $ < this.option.channels; $++)
213
- for (D = w.getChannelData($), q = $, re = 50, F = 0; F < k; F++)
214
- D[F] = a[q], F < 50 && (D[F] = D[F] * F / 50), F >= k - 51 && (D[F] = D[F] * re-- / 50), q += this.option.channels;
213
+ for (A = w.getChannelData($), q = $, re = 50, F = 0; F < k; F++)
214
+ A[F] = a[q], F < 50 && (A[F] = A[F] * F / 50), F >= k - 51 && (A[F] = A[F] * re-- / 50), q += this.option.channels;
215
215
  let Z;
216
- p !== null ? this.baseTime !== null ? Z = this.baseAudioTime + (p - this.baseTime) : Z = this.audioCtx.currentTime : Z = Math.max(this.audioCtx.currentTime, this.startTime), y.buffer = w, y.connect(this.gainNode), y.playbackRate.value = this.playbackRate;
216
+ p !== null ? this.baseTime !== null ? Z = this.baseAudioTime + (p - this.baseTime) : Z = this.audioCtx.currentTime : Z = Math.max(this.audioCtx.currentTime, this.startTime), m.buffer = w, m.connect(this.gainNode), m.playbackRate.value = this.playbackRate;
217
217
  const ie = {
218
- bufferSource: y,
218
+ bufferSource: m,
219
219
  buffer: w,
220
220
  startTime: Z,
221
221
  endTime: Z + w.duration / this.playbackRate,
222
222
  rawData: [{ data: a, timestamp: p }]
223
223
  };
224
- this.playingBuffers.push(ie), y.onended = () => {
225
- const de = this.playingBuffers.findIndex((j) => j.bufferSource === y);
224
+ this.playingBuffers.push(ie), m.onended = () => {
225
+ const de = this.playingBuffers.findIndex((M) => M.bufferSource === m);
226
226
  de !== -1 && this.playingBuffers.splice(de, 1);
227
- }, y.start(Z), this.startTime = Z + w.duration / this.playbackRate;
227
+ }, m.start(Z), this.startTime = Z + w.duration / this.playbackRate;
228
228
  }
229
229
  pause() {
230
230
  this.audioCtx.state === "running" && this.audioCtx.suspend();
@@ -233,9 +233,8 @@ class Jn {
233
233
  this.audioCtx.state === "suspended" && this.audioCtx.resume();
234
234
  }
235
235
  }
236
- console.log("innercommon");
237
- const Kn = 2, Zn = 1, er = 3, tr = 4, ir = 5, nr = 6, rr = 7, or = 9, sr = 10, ar = 11, ur = 12, lr = 13, fr = 2, cr = 4, dr = 5, hr = 6, pr = 7, gr = 8, yr = 13, mr = 14, vr = 15, xr = 16;
238
- class br {
236
+ const Jn = 2, Kn = 1, Zn = 3, er = 4, tr = 5, ir = 6, nr = 7, rr = 9, sr = 10, or = 11, ar = 12, ur = 13, fr = 2, lr = 4, cr = 5, dr = 6, hr = 7, pr = 8, gr = 13, yr = 14, mr = 15, vr = 16;
237
+ class xr {
239
238
  constructor(a) {
240
239
  this.module = a;
241
240
  }
@@ -252,44 +251,43 @@ class br {
252
251
  console.log("[" + this.currentTimeStr() + "][" + this.module + "][DT] " + a);
253
252
  }
254
253
  currentTimeStr() {
255
- const a = new Date(Date.now()), p = a.getFullYear(), y = a.getMonth() + 1, k = a.getDate(), w = a.getHours(), D = a.getMinutes(), $ = a.getSeconds(), q = a.getMilliseconds();
256
- return p + "-" + y + "-" + k + " " + w + ":" + D + ":" + $ + ":" + q;
254
+ const a = new Date(Date.now()), p = a.getFullYear(), m = a.getMonth() + 1, k = a.getDate(), w = a.getHours(), A = a.getMinutes(), $ = a.getSeconds(), q = a.getMilliseconds();
255
+ return p + "-" + m + "-" + k + " " + w + ":" + A + ":" + $ + ":" + q;
257
256
  }
258
257
  }
259
258
  const G = {
260
- kMediaSpeak: Kn,
261
- kOpenDecoderReq: Zn,
262
- kResumeDecodingReq: er,
263
- kPauseDecodingReq: tr,
264
- kOpenStreamReq: ir,
265
- kCloseStreamReq: nr,
266
- kEnableAudioReq: rr,
267
- kSwitchStreamReq: or,
259
+ kMediaSpeak: Jn,
260
+ kOpenDecoderReq: Kn,
261
+ kResumeDecodingReq: Zn,
262
+ kPauseDecodingReq: er,
263
+ kOpenStreamReq: tr,
264
+ kCloseStreamReq: ir,
265
+ kEnableAudioReq: nr,
266
+ kSwitchStreamReq: rr,
268
267
  kFastForward: sr,
269
- kRecorderSpeakReq: ar,
270
- kRecorderTalkReq: ur,
271
- kReplayReq: lr,
268
+ kRecorderSpeakReq: or,
269
+ kRecorderTalkReq: ar,
270
+ kReplayReq: ur,
272
271
  kOpenDecoderRsp: fr,
273
- kVideoReady: cr,
274
- kVideoFrame: dr,
275
- kAudioFrame: hr,
276
- kStringFrame: pr,
277
- kNetSpeedFrame: gr,
278
- kSocketErrorRsp: yr,
279
- kSocketCloseRsp: mr,
280
- kReplaySpeed: vr,
281
- kVideoFrameOrigin: xr,
282
- Logger: br
283
- }, Tr = "data:image/svg+xml,%3c!--%20By%20Sam%20Herbert%20(@sherb),%20for%20everyone.%20More%20@%20http://goo.gl/7AJzbL%20--%3e%3c!--%20Todo:%20add%20easing%20--%3e%3csvg%20width='57'%20height='57'%20viewBox='0%200%2057%2057'%20xmlns='http://www.w3.org/2000/svg'%20stroke='%23fff'%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cg%20transform='translate(1%201)'%20stroke-width='2'%3e%3ccircle%20cx='5'%20cy='50'%20r='5'%3e%3canimate%20attributeName='cy'%20begin='0s'%20dur='2.2s'%20values='50;5;50;50'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3canimate%20attributeName='cx'%20begin='0s'%20dur='2.2s'%20values='5;27;49;5'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3c/circle%3e%3ccircle%20cx='27'%20cy='5'%20r='5'%3e%3canimate%20attributeName='cy'%20begin='0s'%20dur='2.2s'%20from='5'%20to='5'%20values='5;50;50;5'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3canimate%20attributeName='cx'%20begin='0s'%20dur='2.2s'%20from='27'%20to='27'%20values='27;49;5;27'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3c/circle%3e%3ccircle%20cx='49'%20cy='50'%20r='5'%3e%3canimate%20attributeName='cy'%20begin='0s'%20dur='2.2s'%20values='50;50;5;50'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3canimate%20attributeName='cx'%20from='49'%20to='49'%20begin='0s'%20dur='2.2s'%20values='49;5;27;49'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3c/circle%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
284
- function Bi(R) {
272
+ kVideoReady: lr,
273
+ kVideoFrame: cr,
274
+ kAudioFrame: dr,
275
+ kStringFrame: hr,
276
+ kNetSpeedFrame: pr,
277
+ kSocketErrorRsp: gr,
278
+ kSocketCloseRsp: yr,
279
+ kReplaySpeed: mr,
280
+ kVideoFrameOrigin: vr,
281
+ Logger: xr
282
+ }, br = "data:image/svg+xml,%3c!--%20By%20Sam%20Herbert%20(@sherb),%20for%20everyone.%20More%20@%20http://goo.gl/7AJzbL%20--%3e%3c!--%20Todo:%20add%20easing%20--%3e%3csvg%20width='57'%20height='57'%20viewBox='0%200%2057%2057'%20xmlns='http://www.w3.org/2000/svg'%20stroke='%23fff'%3e%3cg%20fill='none'%20fill-rule='evenodd'%3e%3cg%20transform='translate(1%201)'%20stroke-width='2'%3e%3ccircle%20cx='5'%20cy='50'%20r='5'%3e%3canimate%20attributeName='cy'%20begin='0s'%20dur='2.2s'%20values='50;5;50;50'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3canimate%20attributeName='cx'%20begin='0s'%20dur='2.2s'%20values='5;27;49;5'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3c/circle%3e%3ccircle%20cx='27'%20cy='5'%20r='5'%3e%3canimate%20attributeName='cy'%20begin='0s'%20dur='2.2s'%20from='5'%20to='5'%20values='5;50;50;5'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3canimate%20attributeName='cx'%20begin='0s'%20dur='2.2s'%20from='27'%20to='27'%20values='27;49;5;27'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3c/circle%3e%3ccircle%20cx='49'%20cy='50'%20r='5'%3e%3canimate%20attributeName='cy'%20begin='0s'%20dur='2.2s'%20values='50;50;5;50'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3canimate%20attributeName='cx'%20from='49'%20to='49'%20begin='0s'%20dur='2.2s'%20values='49;5;27;49'%20calcMode='linear'%20repeatCount='indefinite'%20/%3e%3c/circle%3e%3c/g%3e%3c/g%3e%3c/svg%3e";
283
+ function Tr(R) {
285
284
  return new Worker(
286
- "" + new URL("mn-worker-CYIBI-Fh.js", import.meta.url).href,
285
+ "" + new URL("mn-worker-DfFDSJOR.js", import.meta.url).href,
287
286
  {
288
287
  name: R?.name
289
288
  }
290
289
  );
291
290
  }
292
- console.log("MnWorker", Bi);
293
291
  const Wi = 0, Jt = 2, Kt = 0, ct = 1, Ct = 2;
294
292
  class ee {
295
293
  static host = "";
@@ -305,8 +303,8 @@ class ee {
305
303
  static frameCache = [];
306
304
  static intervalTimer = null;
307
305
  static onlyWasm = !1;
308
- constructor(a, p, y, k, w, D) {
309
- this.phone = a, this.channel = p, this.div = y, this.chlId = "chlId", this.spedId = "spedId", this.loadId = null, this.hintId = null, this.loading = !0, this.canvas = k, this.lang = w, this.streamTime = null, this.replayTimer = null, this.isFirstLoad = !1, this.frameCache = [], this.intervalTimer = null, this.onlyWasm = D, this.messageId = 0, this.mediaType = -1, this.streamType = -1, this.beginTime = "", this.timeout = 3e4, this.playbackMode = null, this.width = 0, this.height = 0, this.yLength = 0, this.uvLength = 0, this.mnVideo = null, this.mnAudio = null, this.mnWorker = null, this.playAudio = !1, this.playerState = Kt, this.decoderState = Wi, this.audioEncoding = "16bitInt", this.audioChannels = 1, this.audioSampleRate = 8e3, this.supportH264 = !1, this.supportH265 = !1, this.logger = new G.Logger("MnPlayer"), this.mnAudio = new Jn({
306
+ constructor(a, p, m, k, w, A) {
307
+ this.phone = a, this.channel = p, this.div = m, this.chlId = "chlId", this.spedId = "spedId", this.loadId = null, this.hintId = null, this.loading = !0, this.canvas = k, this.lang = w, this.streamTime = null, this.replayTimer = null, this.isFirstLoad = !1, this.frameCache = [], this.intervalTimer = null, this.onlyWasm = A, this.messageId = 0, this.mediaType = -1, this.streamType = -1, this.beginTime = "", this.timeout = 3e4, this.playbackMode = null, this.width = 0, this.height = 0, this.yLength = 0, this.uvLength = 0, this.mnVideo = null, this.mnAudio = null, this.mnWorker = null, this.playAudio = !1, this.playerState = Kt, this.decoderState = Wi, this.audioEncoding = "16bitInt", this.audioChannels = 1, this.audioSampleRate = 8e3, this.supportH264 = !1, this.supportH265 = !1, this.logger = new G.Logger("MnPlayer"), this.mnAudio = new Qn({
310
308
  encoding: this.audioEncoding,
311
309
  channels: this.audioChannels,
312
310
  sampleRate: this.audioSampleRate,
@@ -362,39 +360,38 @@ class ee {
362
360
  * 初始化工作者线程(码流接收、解码)
363
361
  **/
364
362
  initMnWorker() {
365
- console.log("初始化work线程");
366
363
  let a = this;
367
- this.mnWorker = new Bi({}), this.renderMode = 0, !this.onlyWasm && this.initVideoDecoder() ? this.renderMode = 1 : (this.renderMode = 0, this.canvas != null && (this.mnVideo = new Je(this.canvas, {
364
+ this.mnWorker = new Tr({}), this.renderMode = 0, !this.onlyWasm && this.initVideoDecoder() ? this.renderMode = 1 : (this.renderMode = 0, this.canvas != null && (this.mnVideo = new Je(this.canvas, {
368
365
  preserveDrawingBuffer: !1
369
366
  }))), this.mnWorker.onmessage = function(p) {
370
- let y = p.data;
371
- switch (y.t) {
367
+ let m = p.data;
368
+ switch (m.t) {
372
369
  case G.kVideoFrameOrigin:
373
- a.decodeVideoFrame(y.d, y.ti, y.isKey);
370
+ a.decodeVideoFrame(m.d, m.ti, m.isKey);
374
371
  break;
375
372
  case G.kOpenDecoderRsp:
376
- a.onOpenDecoder(y);
373
+ a.onOpenDecoder(m);
377
374
  break;
378
375
  case G.kVideoReady:
379
- a.onVideoReady(y);
376
+ a.onVideoReady(m);
380
377
  break;
381
378
  case G.kVideoFrame:
382
- a.onVideoFrame(y), y.ti && ee.timeCallback && typeof ee.timeCallback == "function" && ee.timeCallback(
383
- new Date(y.ti - 1e3 * 60 * 60 * 8).getTime()
379
+ a.onVideoFrame(m), m.ti && ee.timeCallback && typeof ee.timeCallback == "function" && ee.timeCallback(
380
+ new Date(m.ti - 1e3 * 60 * 60 * 8).getTime()
384
381
  );
385
382
  break;
386
383
  case G.kAudioFrame:
387
- a.onAudioFrame(y);
384
+ a.onAudioFrame(m);
388
385
  break;
389
386
  case G.kNetSpeedFrame:
390
- a.onNetSpeedFrame(y);
387
+ a.onNetSpeedFrame(m);
391
388
  break;
392
389
  case G.kStringFrame:
393
- a.onStringFrame(y);
390
+ a.onStringFrame(m);
394
391
  break;
395
392
  case G.kSocketErrorRsp:
396
393
  case G.kSocketCloseRsp:
397
- a.stopWorker(!1), a.onStringFrame(y);
394
+ a.stopWorker(!1), a.onStringFrame(m);
398
395
  break;
399
396
  }
400
397
  }, this.mnWorker.postMessage({
@@ -429,26 +426,19 @@ class ee {
429
426
  /**
430
427
  * 开始播放
431
428
  **/
432
- play(a, p, y) {
433
- console.log("播放play", a, p, y), console.log("playerState", this.playerState);
429
+ play(a, p, m) {
434
430
  do {
435
431
  if (this.playerState == Ct) {
436
432
  this.resume();
437
433
  break;
438
434
  }
439
- if (this.playerState == ct) {
440
- console.warn("正在播放中");
435
+ if (this.playerState == ct || a == this.mediaType && p == this.streamType)
441
436
  break;
442
- }
443
- if (a == this.mediaType && p == this.streamType) {
444
- console.log("码流相同");
445
- break;
446
- }
447
- if (this.mediaType = a, this.streamType = p, this.beginTime = y, y == null || y.length == 0 ? this.messageId = 37121 : this.playbackMode == null ? (this.playbackMode = 0, this.messageId = 37377) : (this.playbackMode = 5, this.messageId = 37378), !this.canvas && this.mediaType != G.kMediaSpeak) {
437
+ if (this.mediaType = a, this.streamType = p, this.beginTime = m, m == null || m.length == 0 ? this.messageId = 37121 : this.playbackMode == null ? (this.playbackMode = 0, this.messageId = 37377) : (this.playbackMode = 5, this.messageId = 37378), !this.canvas && this.mediaType != G.kMediaSpeak) {
448
438
  this.logger.logError("[ER] playVideo error, canvas empty.");
449
439
  break;
450
440
  }
451
- this.mediaType != G.kMediaSpeak && this.showChannel(), console.log("this.openstream"), this.openStream(), this.playerState = ct, console.log("playerState", this.playerState);
441
+ this.mediaType != G.kMediaSpeak && this.showChannel(), this.openStream(), this.playerState = ct;
452
442
  } while (!1);
453
443
  this.beginTime || (this.intervalTimer = setInterval(() => {
454
444
  this.drawOne();
@@ -552,7 +542,6 @@ class ee {
552
542
  speak(a) {
553
543
  if (this.decoderState !== Jt)
554
544
  return;
555
- console.log(a, 2333);
556
545
  let p = {
557
546
  t: G.kRecorderSpeakReq,
558
547
  d: a
@@ -633,9 +622,9 @@ class ee {
633
622
  }
634
623
  });
635
624
  window.dispatchEvent ? window.dispatchEvent(p) : window.fireEvent(p);
636
- let y = new Uint8Array(a.d);
625
+ let m = new Uint8Array(a.d);
637
626
  this.mnVideo != null ? this.mnVideo.renderFrame(
638
- y,
627
+ m,
639
628
  this.width,
640
629
  this.height,
641
630
  this.yLength,
@@ -660,18 +649,18 @@ class ee {
660
649
  if (p.charAt(0) === "1")
661
650
  this.showHinting(p.substr(1)), this.loading = !1;
662
651
  else if (p.charAt(0) === "2") {
663
- let y = new CustomEvent("gpsData", {
652
+ let m = new CustomEvent("gpsData", {
664
653
  detail: {
665
654
  data: p.substr(1)
666
655
  }
667
656
  });
668
- window.dispatchEvent ? window.dispatchEvent(y) : window.fireEvent(y);
657
+ window.dispatchEvent ? window.dispatchEvent(m) : window.fireEvent(m);
669
658
  }
670
659
  }
671
660
  }
672
661
  onNetSpeedFrame(a) {
673
- let p, y = parseInt(a.d / 1024, 10);
674
- y = y + "KB/S;", this.div !== void 0 && this.div !== null && (this.spedId != null && this.div.find("#" + this.spedId).remove(), this.streamType == 0 ? p = '<span id="' + this.spedId + '" style="position: absolute;bottom:0;right:0;transform:translate(-10px,-10px);font-size:2.5vh;color:white;width:auto">' + y + "</span>" : p = '<span id="' + this.spedId + '" style="position: absolute;bottom:0;right:0;transform:translate(-10px,-10px);font-size:1.0vh;color:white;width:auto">' + y + "</span>", this.div.append(p));
662
+ let p, m = parseInt(a.d / 1024, 10);
663
+ m = m + "KB/S;", this.div !== void 0 && this.div !== null && (this.spedId != null && this.div.find("#" + this.spedId).remove(), this.streamType == 0 ? p = '<span id="' + this.spedId + '" style="position: absolute;bottom:0;right:0;transform:translate(-10px,-10px);font-size:2.5vh;color:white;width:auto">' + m + "</span>" : p = '<span id="' + this.spedId + '" style="position: absolute;bottom:0;right:0;transform:translate(-10px,-10px);font-size:1.0vh;color:white;width:auto">' + m + "</span>", this.div.append(p));
675
664
  }
676
665
  /**
677
666
  * 显示通道号
@@ -691,7 +680,7 @@ class ee {
691
680
  **/
692
681
  showLoading() {
693
682
  this.mediaType != G.kMediaSpeak && (this.hidePrompt(), this.loadId = "loadId", this.div != null && this.div.append(
694
- '<img class="avue-home__loading" id="' + this.loadId + '" width="30" height="30" style="position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);" src="' + Tr + '" alt="loading">'
683
+ '<img class="avue-home__loading" id="' + this.loadId + '" width="30" height="30" style="position: absolute;top: 50%;left: 50%;transform: translate(-50%,-50%);" src="' + br + '" alt="loading">'
695
684
  ));
696
685
  }
697
686
  /**
@@ -728,7 +717,7 @@ class ee {
728
717
  // H265
729
718
  hardwareAcceleration: "prefer-hardware"
730
719
  }, p = await VideoDecoder.isConfigSupported(a);
731
- return console.log("是否支持H265:", p.supported), !0;
720
+ return !0;
732
721
  } else
733
722
  return !1;
734
723
  } catch {
@@ -743,7 +732,7 @@ class ee {
743
732
  // H264 基础配置
744
733
  hardwareAcceleration: "prefer-hardware"
745
734
  }, p = await VideoDecoder.isConfigSupported(a);
746
- return console.log("是否支持H264:", p.supported), !0;
735
+ return !0;
747
736
  } else
748
737
  return !1;
749
738
  } catch {
@@ -758,7 +747,7 @@ class ee {
758
747
  initVideoDecoder(a = {}) {
759
748
  if (!("VideoDecoder" in window))
760
749
  return console.warn("VideoDecoder is not supported in this browser"), !1;
761
- const y = { ...{
750
+ const m = { ...{
762
751
  codec: "avc1.42001E",
763
752
  // H264 基础配置
764
753
  // codec: "avc1.640028", // H265
@@ -767,15 +756,15 @@ class ee {
767
756
  // hardwareAcceleration: "prefer-hardware",
768
757
  description: this.avcC
769
758
  }, ...a };
770
- return VideoDecoder.isConfigSupported(y).then((k) => {
759
+ return VideoDecoder.isConfigSupported(m).then((k) => {
771
760
  if (!k.supported) {
772
- console.warn("VideoDecoder config is not supported:", y);
761
+ console.warn("VideoDecoder config is not supported:", m);
773
762
  return;
774
763
  }
775
- console.log("finalConfig", y), this.videoDecoder = new VideoDecoder({
764
+ this.videoDecoder = new VideoDecoder({
776
765
  output: this.handleDecodedFrame.bind(this),
777
766
  error: this.handleDecoderError.bind(this)
778
- }), this.videoDecoder.configure(y), console.log("VideoDecoder initialized successfully");
767
+ }), this.videoDecoder.configure(m), console.log("VideoDecoder initialized successfully");
779
768
  }).catch((k) => {
780
769
  console.error("Failed to initialize VideoDecoder:", k);
781
770
  }), !0;
@@ -806,71 +795,71 @@ class ee {
806
795
  return a.byteLength <= 16 ? new ArrayBuffer(0) : a.slice(0, a.byteLength - 16);
807
796
  }
808
797
  annexBToAvcc(a) {
809
- const p = a.reduce((w, D) => w + 4 + D.length, 0), y = new Uint8Array(p);
798
+ const p = a.reduce((w, A) => w + 4 + A.length, 0), m = new Uint8Array(p);
810
799
  let k = 0;
811
800
  for (const w of a)
812
- y[k++] = w.length >>> 24 & 255, y[k++] = w.length >>> 16 & 255, y[k++] = w.length >>> 8 & 255, y[k++] = w.length & 255, y.set(w, k), k += w.length;
813
- return y;
801
+ m[k++] = w.length >>> 24 & 255, m[k++] = w.length >>> 16 & 255, m[k++] = w.length >>> 8 & 255, m[k++] = w.length & 255, m.set(w, k), k += w.length;
802
+ return m;
814
803
  }
815
804
  splitAnnexBNalus(a) {
816
805
  const p = [];
817
- let y = 0;
806
+ let m = 0;
818
807
  function k(w) {
819
808
  return a[w] === 0 && a[w + 1] === 0 && (a[w + 2] === 1 || a[w + 2] === 0 && a[w + 3] === 1);
820
809
  }
821
- for (; y < a.length; ) {
822
- if (!k(y)) {
823
- y++;
810
+ for (; m < a.length; ) {
811
+ if (!k(m)) {
812
+ m++;
824
813
  continue;
825
814
  }
826
- a[y + (a[y + 2] === 1 ? 3 : 4)];
827
- const w = y + (a[y + 2] === 1 ? 3 : 4);
828
- let D = w;
829
- for (; D < a.length && !k(D); ) D++;
830
- p.push(a.subarray(w, D)), y = D;
815
+ a[m + (a[m + 2] === 1 ? 3 : 4)];
816
+ const w = m + (a[m + 2] === 1 ? 3 : 4);
817
+ let A = w;
818
+ for (; A < a.length && !k(A); ) A++;
819
+ p.push(a.subarray(w, A)), m = A;
831
820
  }
832
821
  return p;
833
822
  }
834
823
  extractSpsPps(a) {
835
- let p = null, y = null, k = 0;
824
+ let p = null, m = null, k = 0;
836
825
  for (; k + 4 < a.length; )
837
826
  if (a[k] === 0 && a[k + 1] === 0 && (a[k + 2] === 1 || a[k + 2] === 0 && a[k + 3] === 1)) {
838
- const w = a[k + 2] === 1 ? 3 : 4, D = k + w, $ = a[D] & 31;
839
- let q = D + 1;
827
+ const w = a[k + 2] === 1 ? 3 : 4, A = k + w, $ = a[A] & 31;
828
+ let q = A + 1;
840
829
  for (; q + 3 < a.length && !(a[q] === 0 && a[q + 1] === 0 && (a[q + 2] === 1 || a[q + 2] === 0 && a[q + 3] === 1)); )
841
830
  q++;
842
- const F = a.slice(D, q);
843
- if ($ === 7 && !p && (p = F), $ === 8 && !y && (y = F), $ === 32 && !p && (p = F), $ === 33 && !y && (y = F), p && y) break;
831
+ const F = a.slice(A, q);
832
+ if ($ === 7 && !p && (p = F), $ === 8 && !m && (m = F), $ === 32 && !p && (p = F), $ === 33 && !m && (m = F), p && m) break;
844
833
  k = q;
845
834
  } else
846
835
  k++;
847
- return { sps: p, pps: y };
836
+ return { sps: p, pps: m };
848
837
  }
849
838
  extractVpsSpsPps(a) {
850
839
  const p = [];
851
- let y = 0;
840
+ let m = 0;
852
841
  function k(q) {
853
842
  for (let F = q; F + 3 < a.length; F++)
854
843
  if (a[F] === 0 && a[F + 1] === 0 && (a[F + 2] === 1 || a[F + 2] === 0 && a[F + 3] === 1))
855
844
  return F;
856
845
  return -1;
857
846
  }
858
- for (; y < a.length; ) {
859
- const q = k(y);
847
+ for (; m < a.length; ) {
848
+ const q = k(m);
860
849
  if (q === -1) break;
861
850
  let F = a[q + 2] === 1 ? 3 : 4, re = q + F, Z = k(re);
862
851
  Z === -1 && (Z = a.length);
863
852
  const ie = a.subarray(re, Z), de = ie[0] >> 1 & 63;
864
- (de === 32 || de === 33 || de === 34) && p.push({ type: de, data: ie }), y = Z;
853
+ (de === 32 || de === 33 || de === 34) && p.push({ type: de, data: ie }), m = Z;
865
854
  }
866
- const w = p.find((q) => q.type === 32)?.data, D = p.find((q) => q.type === 33)?.data, $ = p.find((q) => q.type === 34)?.data;
867
- return { vps: w, sps: D, pps: $ };
855
+ const w = p.find((q) => q.type === 32)?.data, A = p.find((q) => q.type === 33)?.data, $ = p.find((q) => q.type === 34)?.data;
856
+ return { vps: w, sps: A, pps: $ };
868
857
  }
869
858
  guessCodec(a) {
870
859
  if (a.length < 1) return null;
871
860
  if ((a[0] & 31) === 7) return "H.264";
872
- const y = a[0] >> 1 & 63;
873
- return y === 32 || y === 33 ? "H.265" : "unknown";
861
+ const m = a[0] >> 1 & 63;
862
+ return m === 32 || m === 33 ? "H.265" : "unknown";
874
863
  }
875
864
  parseNalUnitType(a) {
876
865
  let p = 0;
@@ -898,56 +887,56 @@ class ee {
898
887
  p++;
899
888
  }
900
889
  if (p >= a.length) return "unknown";
901
- const y = a[p], k = y & 31, w = y >> 1 & 63;
890
+ const m = a[p], k = m & 31, w = m >> 1 & 63;
902
891
  return k >= 1 && k <= 12 ? "h264" : w >= 0 && w <= 40 ? "h265" : "unknown";
903
892
  }
904
893
  makeAvcC(a, p) {
905
- const y = a.length, k = p.length, w = new Uint8Array(8 + y + 3 + k);
906
- let D = 0;
907
- return w[D++] = 1, w[D++] = a[1], w[D++] = a[2], w[D++] = a[3], w[D++] = 255, w[D++] = 225, w[D++] = y >> 8 & 255, w[D++] = y & 255, w.set(a, D), D += y, w[D++] = 1, w[D++] = k >> 8 & 255, w[D++] = k & 255, w.set(p, D), w;
894
+ const m = a.length, k = p.length, w = new Uint8Array(8 + m + 3 + k);
895
+ let A = 0;
896
+ return w[A++] = 1, w[A++] = a[1], w[A++] = a[2], w[A++] = a[3], w[A++] = 255, w[A++] = 225, w[A++] = m >> 8 & 255, w[A++] = m & 255, w.set(a, A), A += m, w[A++] = 1, w[A++] = k >> 8 & 255, w[A++] = k & 255, w.set(p, A), w;
908
897
  }
909
898
  /**
910
899
  * 解码视频帧
911
900
  * @param {ArrayBuffer} data - 视频帧数据
912
901
  * @param {number} timestamp - 时间戳
913
902
  */
914
- decodeVideoFrame(a, p, y = !1) {
903
+ decodeVideoFrame(a, p, m = !1) {
915
904
  if (!this.videoDecoder) {
916
905
  console.warn("VideoDecoder is not initialized");
917
906
  return;
918
907
  }
919
908
  if (!this.isFirstLoad) {
920
909
  const k = this.detectVideoCodec(a);
921
- if (console.log("type", k), k === "unknown") return;
910
+ if (k === "unknown") return;
922
911
  if (k == "h264") {
923
912
  let $ = function(F) {
924
913
  const re = F[1], Z = F[2], ie = F[3];
925
914
  return `avc1.${re.toString(16).padStart(2, "0")}${Z.toString(16).padStart(2, "0")}${ie.toString(16).padStart(2, "0")}`;
926
915
  };
927
916
  this.frameType = "h264";
928
- const { sps: w, pps: D } = this.extractSpsPps(a);
929
- if (!w || !D) return;
930
- this.sps = w, this.pps = D, this.avcC = this.makeAvcC(w, D), console.warn("avcC", this.avcC);
917
+ const { sps: w, pps: A } = this.extractSpsPps(a);
918
+ if (!w || !A) return;
919
+ this.sps = w, this.pps = A, this.avcC = this.makeAvcC(w, A), console.warn("avcC", this.avcC);
931
920
  let q = $(w);
932
- if (console.log("codec", q), this.videoDecoder.configure({
921
+ if (this.videoDecoder.configure({
933
922
  codec: q,
934
923
  // ⚠️ 要和 SPS 一致
935
924
  codedWidth: this.width || 640,
936
925
  codedHeight: this.height || 480,
937
926
  description: this.avcC
938
- }), this.t = 0, y)
927
+ }), this.t = 0, m)
939
928
  this.isFirstLoad = !0;
940
929
  else
941
930
  return;
942
931
  } else {
943
932
  this.frameType = "h265";
944
- const { vps: w, sps: D, pps: $ } = this.extractVpsSpsPps(a);
945
- if (this.vps = w, this.sps = D, this.pps = $, !w || !D || !$) return;
933
+ const { vps: w, sps: A, pps: $ } = this.extractVpsSpsPps(a);
934
+ if (this.vps = w, this.sps = A, this.pps = $, !w || !A || !$) return;
946
935
  if (this.videoDecoder.configure({
947
936
  codec: "hev1.1.6.L93.B0"
948
937
  // codedWidth: this.width || 640,
949
938
  // codedHeight: this.height || 480,
950
- }), y)
939
+ }), m)
951
940
  this.isFirstLoad = !0;
952
941
  else
953
942
  return;
@@ -955,8 +944,8 @@ class ee {
955
944
  }
956
945
  if (this.frameType == "h264") {
957
946
  let k = this.annexBToAvcc(this.splitAnnexBNalus(a)), w = 33333;
958
- const D = new EncodedVideoChunk({
959
- type: y ? "key" : "delta",
947
+ const A = new EncodedVideoChunk({
948
+ type: m ? "key" : "delta",
960
949
  // 根据是否关键帧设置类型
961
950
  // type: "key", // 根据是否关键帧设置类型
962
951
  // data: this.dropLast16Bytes(data),
@@ -966,11 +955,11 @@ class ee {
966
955
  duration: w
967
956
  // 假设30fps,约33.33ms
968
957
  });
969
- this.videoDecoder.decode(D);
958
+ this.videoDecoder.decode(A);
970
959
  } else {
971
960
  let k = 33333;
972
961
  const w = new EncodedVideoChunk({
973
- type: y ? "key" : "delta",
962
+ type: m ? "key" : "delta",
974
963
  // 根据是否关键帧设置类型
975
964
  // data: this.dropLast16Bytes(data),
976
965
  data: a,
@@ -994,7 +983,7 @@ class ee {
994
983
  **/
995
984
  changeSpeed(a = 1, p = "") {
996
985
  this.isSupportH265();
997
- let y = /* @__PURE__ */ new Map([
986
+ let m = /* @__PURE__ */ new Map([
998
987
  [1, 1],
999
988
  [2, 2],
1000
989
  [4, 3],
@@ -1005,11 +994,11 @@ class ee {
1005
994
  let w = {
1006
995
  t: G.kReplaySpeed,
1007
996
  time: p,
1008
- d: y.get(a) || 1,
997
+ d: m.get(a) || 1,
1009
998
  v: a,
1010
999
  playbackMode: k
1011
1000
  };
1012
- console.log("changeSpeed", a, y.get(a)), this.speed = a, this.mnAudio.speed(a), this.speedValue = y.get(a), this.mnWorker.postMessage(w);
1001
+ console.log("changeSpeed", a, m.get(a)), this.speed = a, this.mnAudio.speed(a), this.speedValue = m.get(a), this.mnWorker.postMessage(w);
1013
1002
  }
1014
1003
  }
1015
1004
  function wr(R) {
@@ -1020,17 +1009,17 @@ var Sr = kt.exports, _i;
1020
1009
  function Cr() {
1021
1010
  return _i || (_i = 1, (function(R) {
1022
1011
  (function(a, p) {
1023
- R.exports = a.document ? p(a, !0) : function(y) {
1024
- if (!y.document)
1012
+ R.exports = a.document ? p(a, !0) : function(m) {
1013
+ if (!m.document)
1025
1014
  throw new Error("jQuery requires a window with a document");
1026
- return p(y);
1015
+ return p(m);
1027
1016
  };
1028
1017
  })(typeof window < "u" ? window : Sr, function(a, p) {
1029
- var y = [], k = Object.getPrototypeOf, w = y.slice, D = y.flat ? function(e) {
1030
- return y.flat.call(e);
1018
+ var m = [], k = Object.getPrototypeOf, w = m.slice, A = m.flat ? function(e) {
1019
+ return m.flat.call(e);
1031
1020
  } : function(e) {
1032
- return y.concat.apply([], e);
1033
- }, $ = y.push, q = y.indexOf, F = {}, re = F.toString, Z = F.hasOwnProperty, ie = Z.toString, de = ie.call(Object), j = {}, W = function(t) {
1021
+ return m.concat.apply([], e);
1022
+ }, $ = m.push, q = m.indexOf, F = {}, re = F.toString, Z = F.hasOwnProperty, ie = Z.toString, de = ie.call(Object), M = {}, W = function(t) {
1034
1023
  return typeof t == "function" && typeof t.nodeType != "number" && typeof t.item != "function";
1035
1024
  }, Ne = function(t) {
1036
1025
  return t != null && t === t.window;
@@ -1042,16 +1031,16 @@ function Cr() {
1042
1031
  };
1043
1032
  function Ke(e, t, i) {
1044
1033
  i = i || L;
1045
- var n, o, s = i.createElement("script");
1046
- if (s.text = e, t)
1034
+ var n, s, o = i.createElement("script");
1035
+ if (o.text = e, t)
1047
1036
  for (n in Le)
1048
- o = t[n] || t.getAttribute && t.getAttribute(n), o && s.setAttribute(n, o);
1049
- i.head.appendChild(s).parentNode.removeChild(s);
1037
+ s = t[n] || t.getAttribute && t.getAttribute(n), s && o.setAttribute(n, s);
1038
+ i.head.appendChild(o).parentNode.removeChild(o);
1050
1039
  }
1051
1040
  function We(e) {
1052
1041
  return e == null ? e + "" : typeof e == "object" || typeof e == "function" ? F[re.call(e)] || "object" : typeof e;
1053
1042
  }
1054
- var Zt = "3.7.1", Vi = /HTML$/i, r = function(e, t) {
1043
+ var Zt = "3.7.1", Bi = /HTML$/i, r = function(e, t) {
1055
1044
  return new r.fn.init(e, t);
1056
1045
  };
1057
1046
  r.fn = r.prototype = {
@@ -1112,14 +1101,14 @@ function Cr() {
1112
1101
  // For internal use only.
1113
1102
  // Behaves like an Array's method, not like a jQuery method.
1114
1103
  push: $,
1115
- sort: y.sort,
1116
- splice: y.splice
1104
+ sort: m.sort,
1105
+ splice: m.splice
1117
1106
  }, r.extend = r.fn.extend = function() {
1118
- var e, t, i, n, o, s, u = arguments[0] || {}, c = 1, f = arguments.length, h = !1;
1119
- for (typeof u == "boolean" && (h = u, u = arguments[c] || {}, c++), typeof u != "object" && !W(u) && (u = {}), c === f && (u = this, c--); c < f; c++)
1107
+ var e, t, i, n, s, o, u = arguments[0] || {}, c = 1, l = arguments.length, h = !1;
1108
+ for (typeof u == "boolean" && (h = u, u = arguments[c] || {}, c++), typeof u != "object" && !W(u) && (u = {}), c === l && (u = this, c--); c < l; c++)
1120
1109
  if ((e = arguments[c]) != null)
1121
1110
  for (t in e)
1122
- n = e[t], !(t === "__proto__" || u === n) && (h && n && (r.isPlainObject(n) || (o = Array.isArray(n))) ? (i = u[t], o && !Array.isArray(i) ? s = [] : !o && !r.isPlainObject(i) ? s = {} : s = i, o = !1, u[t] = r.extend(h, s, n)) : n !== void 0 && (u[t] = n));
1111
+ n = e[t], !(t === "__proto__" || u === n) && (h && n && (r.isPlainObject(n) || (s = Array.isArray(n))) ? (i = u[t], s && !Array.isArray(i) ? o = [] : !s && !r.isPlainObject(i) ? o = {} : o = i, s = !1, u[t] = r.extend(h, o, n)) : n !== void 0 && (u[t] = n));
1123
1112
  return u;
1124
1113
  }, r.extend({
1125
1114
  // Unique for each copy of jQuery on the page
@@ -1159,11 +1148,11 @@ function Cr() {
1159
1148
  },
1160
1149
  // Retrieve the text value of an array of DOM nodes
1161
1150
  text: function(e) {
1162
- var t, i = "", n = 0, o = e.nodeType;
1163
- if (!o)
1151
+ var t, i = "", n = 0, s = e.nodeType;
1152
+ if (!s)
1164
1153
  for (; t = e[n++]; )
1165
1154
  i += r.text(t);
1166
- return o === 1 || o === 11 ? e.textContent : o === 9 ? e.documentElement.textContent : o === 3 || o === 4 ? e.nodeValue : i;
1155
+ return s === 1 || s === 11 ? e.textContent : s === 9 ? e.documentElement.textContent : s === 3 || s === 4 ? e.nodeValue : i;
1167
1156
  },
1168
1157
  // results is for internal usage only
1169
1158
  makeArray: function(e, t) {
@@ -1178,37 +1167,37 @@ function Cr() {
1178
1167
  },
1179
1168
  isXMLDoc: function(e) {
1180
1169
  var t = e && e.namespaceURI, i = e && (e.ownerDocument || e).documentElement;
1181
- return !Vi.test(t || i && i.nodeName || "HTML");
1170
+ return !Bi.test(t || i && i.nodeName || "HTML");
1182
1171
  },
1183
1172
  // Support: Android <=4.0 only, PhantomJS 1 only
1184
1173
  // push.apply(_, arraylike) throws on ancient WebKit
1185
1174
  merge: function(e, t) {
1186
- for (var i = +t.length, n = 0, o = e.length; n < i; n++)
1187
- e[o++] = t[n];
1188
- return e.length = o, e;
1175
+ for (var i = +t.length, n = 0, s = e.length; n < i; n++)
1176
+ e[s++] = t[n];
1177
+ return e.length = s, e;
1189
1178
  },
1190
1179
  grep: function(e, t, i) {
1191
- for (var n, o = [], s = 0, u = e.length, c = !i; s < u; s++)
1192
- n = !t(e[s], s), n !== c && o.push(e[s]);
1193
- return o;
1180
+ for (var n, s = [], o = 0, u = e.length, c = !i; o < u; o++)
1181
+ n = !t(e[o], o), n !== c && s.push(e[o]);
1182
+ return s;
1194
1183
  },
1195
1184
  // arg is for internal usage only
1196
1185
  map: function(e, t, i) {
1197
- var n, o, s = 0, u = [];
1186
+ var n, s, o = 0, u = [];
1198
1187
  if (Et(e))
1199
- for (n = e.length; s < n; s++)
1200
- o = t(e[s], s, i), o != null && u.push(o);
1188
+ for (n = e.length; o < n; o++)
1189
+ s = t(e[o], o, i), s != null && u.push(s);
1201
1190
  else
1202
- for (s in e)
1203
- o = t(e[s], s, i), o != null && u.push(o);
1204
- return D(u);
1191
+ for (o in e)
1192
+ s = t(e[o], o, i), s != null && u.push(s);
1193
+ return A(u);
1205
1194
  },
1206
1195
  // A global GUID counter for objects
1207
1196
  guid: 1,
1208
1197
  // jQuery.support is not used in Core but other projects attach their
1209
1198
  // properties to it so it needs to exist.
1210
- support: j
1211
- }), typeof Symbol == "function" && (r.fn[Symbol.iterator] = y[Symbol.iterator]), r.each(
1199
+ support: M
1200
+ }), typeof Symbol == "function" && (r.fn[Symbol.iterator] = m[Symbol.iterator]), r.each(
1212
1201
  "Boolean Number String Function Array Date RegExp Object Error Symbol".split(" "),
1213
1202
  function(e, t) {
1214
1203
  F["[object " + t + "]"] = t.toLowerCase();
@@ -1221,7 +1210,7 @@ function Cr() {
1221
1210
  function K(e, t) {
1222
1211
  return e.nodeName && e.nodeName.toLowerCase() === t.toLowerCase();
1223
1212
  }
1224
- var Ui = y.pop, $i = y.sort, zi = y.splice, Q = "[\\x20\\t\\r\\n\\f]", Ze = new RegExp(
1213
+ var Vi = m.pop, Ui = m.sort, $i = m.splice, Q = "[\\x20\\t\\r\\n\\f]", Ze = new RegExp(
1225
1214
  "^" + Q + "+|((?:^|[^\\\\])(?:\\\\.)*)" + Q + "+$",
1226
1215
  "g"
1227
1216
  );
@@ -1231,20 +1220,20 @@ function Cr() {
1231
1220
  // IE doesn't have `contains` on SVG.
1232
1221
  (e.contains ? e.contains(i) : e.compareDocumentPosition && e.compareDocumentPosition(i) & 16));
1233
1222
  };
1234
- var Xi = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;
1235
- function Gi(e, t) {
1223
+ var zi = /([\0-\x1f\x7f]|^-?\d)|^-$|[^\x80-\uFFFF\w-]/g;
1224
+ function Xi(e, t) {
1236
1225
  return t ? e === "\0" ? "�" : e.slice(0, -1) + "\\" + e.charCodeAt(e.length - 1).toString(16) + " " : "\\" + e;
1237
1226
  }
1238
1227
  r.escapeSelector = function(e) {
1239
- return (e + "").replace(Xi, Gi);
1228
+ return (e + "").replace(zi, Xi);
1240
1229
  };
1241
- var ke = L, At = $;
1230
+ var ke = L, Dt = $;
1242
1231
  (function() {
1243
- var e, t, i, n, o, s = At, u, c, f, h, x, T = r.expando, m = 0, S = 0, P = bt(), z = bt(), _ = bt(), oe = bt(), ne = function(l, d) {
1244
- return l === d && (o = !0), 0;
1232
+ var e, t, i, n, s, o = Dt, u, c, l, h, x, T = r.expando, y = 0, S = 0, P = bt(), z = bt(), _ = bt(), se = bt(), ne = function(f, d) {
1233
+ return f === d && (s = !0), 0;
1245
1234
  }, be = "checked|selected|async|autofocus|autoplay|controls|defer|disabled|hidden|ismap|loop|multiple|open|readonly|required|scoped", Te = "(?:\\\\[\\da-fA-F]{1,6}" + Q + "?|\\\\[^\\r\\n\\f]|[\\w-]|[^\0-\\x7f])+", U = "\\[" + Q + "*(" + Te + ")(?:" + Q + // Operator (capture 2)
1246
1235
  "*([*^$|!~]?=)" + Q + // "Attribute values must be CSS identifiers [capture 5] or strings [capture 3 or capture 4]"
1247
- `*(?:'((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)"|(` + Te + "))|)" + Q + "*\\]", Fe = ":(" + Te + `)(?:\\((('((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|` + U + ")*)|.*)\\)|)", X = new RegExp(Q + "+", "g"), te = new RegExp("^" + Q + "*," + Q + "*"), ut = new RegExp("^" + Q + "*([>+~]|" + Q + ")" + Q + "*"), Ut = new RegExp(Q + "|>"), we = new RegExp(Fe), lt = new RegExp("^" + Te + "$"), Se = {
1236
+ `*(?:'((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)"|(` + Te + "))|)" + Q + "*\\]", Fe = ":(" + Te + `)(?:\\((('((?:\\\\.|[^\\\\'])*)'|"((?:\\\\.|[^\\\\"])*)")|((?:\\\\.|[^\\\\()[\\]]|` + U + ")*)|.*)\\)|)", X = new RegExp(Q + "+", "g"), te = new RegExp("^" + Q + "*," + Q + "*"), ut = new RegExp("^" + Q + "*([>+~]|" + Q + ")" + Q + "*"), Ut = new RegExp(Q + "|>"), we = new RegExp(Fe), ft = new RegExp("^" + Te + "$"), Se = {
1248
1237
  ID: new RegExp("^#(" + Te + ")"),
1249
1238
  CLASS: new RegExp("^\\.(" + Te + ")"),
1250
1239
  TAG: new RegExp("^(" + Te + "|[*])"),
@@ -1258,221 +1247,221 @@ function Cr() {
1258
1247
  // For use in libraries implementing .is()
1259
1248
  // We use this for POS matching in `select`
1260
1249
  needsContext: new RegExp("^" + Q + "*[>+~]|:(even|odd|eq|gt|lt|nth|first|last)(?:\\(" + Q + "*((?:-\\d)?\\d*)" + Q + "*\\)|)(?=[^-]|$)", "i")
1261
- }, Ie = /^(?:input|select|textarea|button)$/i, qe = /^h\d$/i, pe = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, $t = /[+~]/, De = new RegExp("\\\\[\\da-fA-F]{1,6}" + Q + "?|\\\\([^\\r\\n\\f])", "g"), Re = function(l, d) {
1262
- var g = "0x" + l.slice(1) - 65536;
1250
+ }, Ie = /^(?:input|select|textarea|button)$/i, qe = /^h\d$/i, pe = /^(?:#([\w-]+)|(\w+)|\.([\w-]+))$/, $t = /[+~]/, Ae = new RegExp("\\\\[\\da-fA-F]{1,6}" + Q + "?|\\\\([^\\r\\n\\f])", "g"), Re = function(f, d) {
1251
+ var g = "0x" + f.slice(1) - 65536;
1263
1252
  return d || (g < 0 ? String.fromCharCode(g + 65536) : String.fromCharCode(g >> 10 | 55296, g & 1023 | 56320));
1264
- }, Un = function() {
1265
- Me();
1266
- }, $n = wt(
1267
- function(l) {
1268
- return l.disabled === !0 && K(l, "fieldset");
1253
+ }, Vn = function() {
1254
+ je();
1255
+ }, Un = wt(
1256
+ function(f) {
1257
+ return f.disabled === !0 && K(f, "fieldset");
1269
1258
  },
1270
1259
  { dir: "parentNode", next: "legend" }
1271
1260
  );
1272
- function zn() {
1261
+ function $n() {
1273
1262
  try {
1274
1263
  return u.activeElement;
1275
1264
  } catch {
1276
1265
  }
1277
1266
  }
1278
1267
  try {
1279
- s.apply(
1280
- y = w.call(ke.childNodes),
1268
+ o.apply(
1269
+ m = w.call(ke.childNodes),
1281
1270
  ke.childNodes
1282
- ), y[ke.childNodes.length].nodeType;
1271
+ ), m[ke.childNodes.length].nodeType;
1283
1272
  } catch {
1284
- s = {
1273
+ o = {
1285
1274
  apply: function(d, g) {
1286
- At.apply(d, w.call(g));
1275
+ Dt.apply(d, w.call(g));
1287
1276
  },
1288
1277
  call: function(d) {
1289
- At.apply(d, w.call(arguments, 1));
1278
+ Dt.apply(d, w.call(arguments, 1));
1290
1279
  }
1291
1280
  };
1292
1281
  }
1293
- function Y(l, d, g, v) {
1294
- var b, C, E, N, A, B, H, O = d && d.ownerDocument, V = d ? d.nodeType : 9;
1295
- if (g = g || [], typeof l != "string" || !l || V !== 1 && V !== 9 && V !== 11)
1282
+ function Y(f, d, g, v) {
1283
+ var b, C, E, N, D, B, H, O = d && d.ownerDocument, V = d ? d.nodeType : 9;
1284
+ if (g = g || [], typeof f != "string" || !f || V !== 1 && V !== 9 && V !== 11)
1296
1285
  return g;
1297
- if (!v && (Me(d), d = d || u, f)) {
1298
- if (V !== 11 && (A = pe.exec(l)))
1299
- if (b = A[1]) {
1286
+ if (!v && (je(d), d = d || u, l)) {
1287
+ if (V !== 11 && (D = pe.exec(f)))
1288
+ if (b = D[1]) {
1300
1289
  if (V === 9)
1301
1290
  if (E = d.getElementById(b)) {
1302
1291
  if (E.id === b)
1303
- return s.call(g, E), g;
1292
+ return o.call(g, E), g;
1304
1293
  } else
1305
1294
  return g;
1306
1295
  else if (O && (E = O.getElementById(b)) && Y.contains(d, E) && E.id === b)
1307
- return s.call(g, E), g;
1296
+ return o.call(g, E), g;
1308
1297
  } else {
1309
- if (A[2])
1310
- return s.apply(g, d.getElementsByTagName(l)), g;
1311
- if ((b = A[3]) && d.getElementsByClassName)
1312
- return s.apply(g, d.getElementsByClassName(b)), g;
1298
+ if (D[2])
1299
+ return o.apply(g, d.getElementsByTagName(f)), g;
1300
+ if ((b = D[3]) && d.getElementsByClassName)
1301
+ return o.apply(g, d.getElementsByClassName(b)), g;
1313
1302
  }
1314
- if (!oe[l + " "] && (!h || !h.test(l))) {
1315
- if (H = l, O = d, V === 1 && (Ut.test(l) || ut.test(l))) {
1316
- for (O = $t.test(l) && zt(d.parentNode) || d, (O != d || !j.scope) && ((N = d.getAttribute("id")) ? N = r.escapeSelector(N) : d.setAttribute("id", N = T)), B = ft(l), C = B.length; C--; )
1303
+ if (!se[f + " "] && (!h || !h.test(f))) {
1304
+ if (H = f, O = d, V === 1 && (Ut.test(f) || ut.test(f))) {
1305
+ for (O = $t.test(f) && zt(d.parentNode) || d, (O != d || !M.scope) && ((N = d.getAttribute("id")) ? N = r.escapeSelector(N) : d.setAttribute("id", N = T)), B = lt(f), C = B.length; C--; )
1317
1306
  B[C] = (N ? "#" + N : ":scope") + " " + Tt(B[C]);
1318
1307
  H = B.join(",");
1319
1308
  }
1320
1309
  try {
1321
- return s.apply(
1310
+ return o.apply(
1322
1311
  g,
1323
1312
  O.querySelectorAll(H)
1324
1313
  ), g;
1325
1314
  } catch {
1326
- oe(l, !0);
1315
+ se(f, !0);
1327
1316
  } finally {
1328
1317
  N === T && d.removeAttribute("id");
1329
1318
  }
1330
1319
  }
1331
1320
  }
1332
- return Oi(l.replace(Ze, "$1"), d, g, v);
1321
+ return Oi(f.replace(Ze, "$1"), d, g, v);
1333
1322
  }
1334
1323
  function bt() {
1335
- var l = [];
1324
+ var f = [];
1336
1325
  function d(g, v) {
1337
- return l.push(g + " ") > t.cacheLength && delete d[l.shift()], d[g + " "] = v;
1326
+ return f.push(g + " ") > t.cacheLength && delete d[f.shift()], d[g + " "] = v;
1338
1327
  }
1339
1328
  return d;
1340
1329
  }
1341
- function me(l) {
1342
- return l[T] = !0, l;
1330
+ function me(f) {
1331
+ return f[T] = !0, f;
1343
1332
  }
1344
- function Ye(l) {
1333
+ function Ye(f) {
1345
1334
  var d = u.createElement("fieldset");
1346
1335
  try {
1347
- return !!l(d);
1336
+ return !!f(d);
1348
1337
  } catch {
1349
1338
  return !1;
1350
1339
  } finally {
1351
1340
  d.parentNode && d.parentNode.removeChild(d), d = null;
1352
1341
  }
1353
1342
  }
1354
- function Xn(l) {
1343
+ function zn(f) {
1355
1344
  return function(d) {
1356
- return K(d, "input") && d.type === l;
1345
+ return K(d, "input") && d.type === f;
1357
1346
  };
1358
1347
  }
1359
- function Gn(l) {
1348
+ function Xn(f) {
1360
1349
  return function(d) {
1361
- return (K(d, "input") || K(d, "button")) && d.type === l;
1350
+ return (K(d, "input") || K(d, "button")) && d.type === f;
1362
1351
  };
1363
1352
  }
1364
- function Pi(l) {
1353
+ function Pi(f) {
1365
1354
  return function(d) {
1366
- return "form" in d ? d.parentNode && d.disabled === !1 ? "label" in d ? "label" in d.parentNode ? d.parentNode.disabled === l : d.disabled === l : d.isDisabled === l || // Where there is no isDisabled, check manually
1367
- d.isDisabled !== !l && $n(d) === l : d.disabled === l : "label" in d ? d.disabled === l : !1;
1355
+ return "form" in d ? d.parentNode && d.disabled === !1 ? "label" in d ? "label" in d.parentNode ? d.parentNode.disabled === f : d.disabled === f : d.isDisabled === f || // Where there is no isDisabled, check manually
1356
+ d.isDisabled !== !f && Un(d) === f : d.disabled === f : "label" in d ? d.disabled === f : !1;
1368
1357
  };
1369
1358
  }
1370
- function Oe(l) {
1359
+ function Oe(f) {
1371
1360
  return me(function(d) {
1372
1361
  return d = +d, me(function(g, v) {
1373
- for (var b, C = l([], g.length, d), E = C.length; E--; )
1362
+ for (var b, C = f([], g.length, d), E = C.length; E--; )
1374
1363
  g[b = C[E]] && (g[b] = !(v[b] = g[b]));
1375
1364
  });
1376
1365
  });
1377
1366
  }
1378
- function zt(l) {
1379
- return l && typeof l.getElementsByTagName < "u" && l;
1367
+ function zt(f) {
1368
+ return f && typeof f.getElementsByTagName < "u" && f;
1380
1369
  }
1381
- function Me(l) {
1382
- var d, g = l ? l.ownerDocument || l : ke;
1383
- return g == u || g.nodeType !== 9 || !g.documentElement || (u = g, c = u.documentElement, f = !r.isXMLDoc(u), x = c.matches || c.webkitMatchesSelector || c.msMatchesSelector, c.msMatchesSelector && // Support: IE 11+, Edge 17 - 18+
1370
+ function je(f) {
1371
+ var d, g = f ? f.ownerDocument || f : ke;
1372
+ return g == u || g.nodeType !== 9 || !g.documentElement || (u = g, c = u.documentElement, l = !r.isXMLDoc(u), x = c.matches || c.webkitMatchesSelector || c.msMatchesSelector, c.msMatchesSelector && // Support: IE 11+, Edge 17 - 18+
1384
1373
  // IE/Edge sometimes throw a "Permission denied" error when strict-comparing
1385
1374
  // two documents; shallow comparisons work.
1386
1375
  // eslint-disable-next-line eqeqeq
1387
- ke != u && (d = u.defaultView) && d.top !== d && d.addEventListener("unload", Un), j.getById = Ye(function(v) {
1376
+ ke != u && (d = u.defaultView) && d.top !== d && d.addEventListener("unload", Vn), M.getById = Ye(function(v) {
1388
1377
  return c.appendChild(v).id = r.expando, !u.getElementsByName || !u.getElementsByName(r.expando).length;
1389
- }), j.disconnectedMatch = Ye(function(v) {
1378
+ }), M.disconnectedMatch = Ye(function(v) {
1390
1379
  return x.call(v, "*");
1391
- }), j.scope = Ye(function() {
1380
+ }), M.scope = Ye(function() {
1392
1381
  return u.querySelectorAll(":scope");
1393
- }), j.cssHas = Ye(function() {
1382
+ }), M.cssHas = Ye(function() {
1394
1383
  try {
1395
1384
  return u.querySelector(":has(*,:jqfake)"), !1;
1396
1385
  } catch {
1397
1386
  return !0;
1398
1387
  }
1399
- }), j.getById ? (t.filter.ID = function(v) {
1400
- var b = v.replace(De, Re);
1388
+ }), M.getById ? (t.filter.ID = function(v) {
1389
+ var b = v.replace(Ae, Re);
1401
1390
  return function(C) {
1402
1391
  return C.getAttribute("id") === b;
1403
1392
  };
1404
1393
  }, t.find.ID = function(v, b) {
1405
- if (typeof b.getElementById < "u" && f) {
1394
+ if (typeof b.getElementById < "u" && l) {
1406
1395
  var C = b.getElementById(v);
1407
1396
  return C ? [C] : [];
1408
1397
  }
1409
1398
  }) : (t.filter.ID = function(v) {
1410
- var b = v.replace(De, Re);
1399
+ var b = v.replace(Ae, Re);
1411
1400
  return function(C) {
1412
1401
  var E = typeof C.getAttributeNode < "u" && C.getAttributeNode("id");
1413
1402
  return E && E.value === b;
1414
1403
  };
1415
1404
  }, t.find.ID = function(v, b) {
1416
- if (typeof b.getElementById < "u" && f) {
1417
- var C, E, N, A = b.getElementById(v);
1418
- if (A) {
1419
- if (C = A.getAttributeNode("id"), C && C.value === v)
1420
- return [A];
1421
- for (N = b.getElementsByName(v), E = 0; A = N[E++]; )
1422
- if (C = A.getAttributeNode("id"), C && C.value === v)
1423
- return [A];
1405
+ if (typeof b.getElementById < "u" && l) {
1406
+ var C, E, N, D = b.getElementById(v);
1407
+ if (D) {
1408
+ if (C = D.getAttributeNode("id"), C && C.value === v)
1409
+ return [D];
1410
+ for (N = b.getElementsByName(v), E = 0; D = N[E++]; )
1411
+ if (C = D.getAttributeNode("id"), C && C.value === v)
1412
+ return [D];
1424
1413
  }
1425
1414
  return [];
1426
1415
  }
1427
1416
  }), t.find.TAG = function(v, b) {
1428
1417
  return typeof b.getElementsByTagName < "u" ? b.getElementsByTagName(v) : b.querySelectorAll(v);
1429
1418
  }, t.find.CLASS = function(v, b) {
1430
- if (typeof b.getElementsByClassName < "u" && f)
1419
+ if (typeof b.getElementsByClassName < "u" && l)
1431
1420
  return b.getElementsByClassName(v);
1432
1421
  }, h = [], Ye(function(v) {
1433
1422
  var b;
1434
1423
  c.appendChild(v).innerHTML = "<a id='" + T + "' href='' disabled='disabled'></a><select id='" + T + "-\r\\' disabled='disabled'><option selected=''></option></select>", v.querySelectorAll("[selected]").length || h.push("\\[" + Q + "*(?:value|" + be + ")"), v.querySelectorAll("[id~=" + T + "-]").length || h.push("~="), v.querySelectorAll("a#" + T + "+*").length || h.push(".#.+[+~]"), v.querySelectorAll(":checked").length || h.push(":checked"), b = u.createElement("input"), b.setAttribute("type", "hidden"), v.appendChild(b).setAttribute("name", "D"), c.appendChild(v).disabled = !0, v.querySelectorAll(":disabled").length !== 2 && h.push(":enabled", ":disabled"), b = u.createElement("input"), b.setAttribute("name", ""), v.appendChild(b), v.querySelectorAll("[name='']").length || h.push("\\[" + Q + "*name" + Q + "*=" + Q + `*(?:''|"")`);
1435
- }), j.cssHas || h.push(":has"), h = h.length && new RegExp(h.join("|")), ne = function(v, b) {
1424
+ }), M.cssHas || h.push(":has"), h = h.length && new RegExp(h.join("|")), ne = function(v, b) {
1436
1425
  if (v === b)
1437
- return o = !0, 0;
1426
+ return s = !0, 0;
1438
1427
  var C = !v.compareDocumentPosition - !b.compareDocumentPosition;
1439
1428
  return C || (C = (v.ownerDocument || v) == (b.ownerDocument || b) ? v.compareDocumentPosition(b) : (
1440
1429
  // Otherwise we know they are disconnected
1441
1430
  1
1442
- ), C & 1 || !j.sortDetached && b.compareDocumentPosition(v) === C ? v === u || v.ownerDocument == ke && Y.contains(ke, v) ? -1 : b === u || b.ownerDocument == ke && Y.contains(ke, b) ? 1 : n ? q.call(n, v) - q.call(n, b) : 0 : C & 4 ? -1 : 1);
1431
+ ), C & 1 || !M.sortDetached && b.compareDocumentPosition(v) === C ? v === u || v.ownerDocument == ke && Y.contains(ke, v) ? -1 : b === u || b.ownerDocument == ke && Y.contains(ke, b) ? 1 : n ? q.call(n, v) - q.call(n, b) : 0 : C & 4 ? -1 : 1);
1443
1432
  }), u;
1444
1433
  }
1445
- Y.matches = function(l, d) {
1446
- return Y(l, null, null, d);
1447
- }, Y.matchesSelector = function(l, d) {
1448
- if (Me(l), f && !oe[d + " "] && (!h || !h.test(d)))
1434
+ Y.matches = function(f, d) {
1435
+ return Y(f, null, null, d);
1436
+ }, Y.matchesSelector = function(f, d) {
1437
+ if (je(f), l && !se[d + " "] && (!h || !h.test(d)))
1449
1438
  try {
1450
- var g = x.call(l, d);
1451
- if (g || j.disconnectedMatch || // As well, disconnected nodes are said to be in a document
1439
+ var g = x.call(f, d);
1440
+ if (g || M.disconnectedMatch || // As well, disconnected nodes are said to be in a document
1452
1441
  // fragment in IE 9
1453
- l.document && l.document.nodeType !== 11)
1442
+ f.document && f.document.nodeType !== 11)
1454
1443
  return g;
1455
1444
  } catch {
1456
- oe(d, !0);
1445
+ se(d, !0);
1457
1446
  }
1458
- return Y(d, u, null, [l]).length > 0;
1459
- }, Y.contains = function(l, d) {
1460
- return (l.ownerDocument || l) != u && Me(l), r.contains(l, d);
1461
- }, Y.attr = function(l, d) {
1462
- (l.ownerDocument || l) != u && Me(l);
1463
- var g = t.attrHandle[d.toLowerCase()], v = g && Z.call(t.attrHandle, d.toLowerCase()) ? g(l, d, !f) : void 0;
1464
- return v !== void 0 ? v : l.getAttribute(d);
1465
- }, Y.error = function(l) {
1466
- throw new Error("Syntax error, unrecognized expression: " + l);
1467
- }, r.uniqueSort = function(l) {
1447
+ return Y(d, u, null, [f]).length > 0;
1448
+ }, Y.contains = function(f, d) {
1449
+ return (f.ownerDocument || f) != u && je(f), r.contains(f, d);
1450
+ }, Y.attr = function(f, d) {
1451
+ (f.ownerDocument || f) != u && je(f);
1452
+ var g = t.attrHandle[d.toLowerCase()], v = g && Z.call(t.attrHandle, d.toLowerCase()) ? g(f, d, !l) : void 0;
1453
+ return v !== void 0 ? v : f.getAttribute(d);
1454
+ }, Y.error = function(f) {
1455
+ throw new Error("Syntax error, unrecognized expression: " + f);
1456
+ }, r.uniqueSort = function(f) {
1468
1457
  var d, g = [], v = 0, b = 0;
1469
- if (o = !j.sortStable, n = !j.sortStable && w.call(l, 0), $i.call(l, ne), o) {
1470
- for (; d = l[b++]; )
1471
- d === l[b] && (v = g.push(b));
1458
+ if (s = !M.sortStable, n = !M.sortStable && w.call(f, 0), Ui.call(f, ne), s) {
1459
+ for (; d = f[b++]; )
1460
+ d === f[b] && (v = g.push(b));
1472
1461
  for (; v--; )
1473
- zi.call(l, g[v], 1);
1462
+ $i.call(f, g[v], 1);
1474
1463
  }
1475
- return n = null, l;
1464
+ return n = null, f;
1476
1465
  }, r.fn.uniqueSort = function() {
1477
1466
  return this.pushStack(r.uniqueSort(w.apply(this)));
1478
1467
  }, t = r.expr = {
@@ -1489,80 +1478,80 @@ function Cr() {
1489
1478
  "~": { dir: "previousSibling" }
1490
1479
  },
1491
1480
  preFilter: {
1492
- ATTR: function(l) {
1493
- return l[1] = l[1].replace(De, Re), l[3] = (l[3] || l[4] || l[5] || "").replace(De, Re), l[2] === "~=" && (l[3] = " " + l[3] + " "), l.slice(0, 4);
1481
+ ATTR: function(f) {
1482
+ return f[1] = f[1].replace(Ae, Re), f[3] = (f[3] || f[4] || f[5] || "").replace(Ae, Re), f[2] === "~=" && (f[3] = " " + f[3] + " "), f.slice(0, 4);
1494
1483
  },
1495
- CHILD: function(l) {
1496
- return l[1] = l[1].toLowerCase(), l[1].slice(0, 3) === "nth" ? (l[3] || Y.error(l[0]), l[4] = +(l[4] ? l[5] + (l[6] || 1) : 2 * (l[3] === "even" || l[3] === "odd")), l[5] = +(l[7] + l[8] || l[3] === "odd")) : l[3] && Y.error(l[0]), l;
1484
+ CHILD: function(f) {
1485
+ return f[1] = f[1].toLowerCase(), f[1].slice(0, 3) === "nth" ? (f[3] || Y.error(f[0]), f[4] = +(f[4] ? f[5] + (f[6] || 1) : 2 * (f[3] === "even" || f[3] === "odd")), f[5] = +(f[7] + f[8] || f[3] === "odd")) : f[3] && Y.error(f[0]), f;
1497
1486
  },
1498
- PSEUDO: function(l) {
1499
- var d, g = !l[6] && l[2];
1500
- return Se.CHILD.test(l[0]) ? null : (l[3] ? l[2] = l[4] || l[5] || "" : g && we.test(g) && // Get excess from tokenize (recursively)
1501
- (d = ft(g, !0)) && // advance to the next closing parenthesis
1502
- (d = g.indexOf(")", g.length - d) - g.length) && (l[0] = l[0].slice(0, d), l[2] = g.slice(0, d)), l.slice(0, 3));
1487
+ PSEUDO: function(f) {
1488
+ var d, g = !f[6] && f[2];
1489
+ return Se.CHILD.test(f[0]) ? null : (f[3] ? f[2] = f[4] || f[5] || "" : g && we.test(g) && // Get excess from tokenize (recursively)
1490
+ (d = lt(g, !0)) && // advance to the next closing parenthesis
1491
+ (d = g.indexOf(")", g.length - d) - g.length) && (f[0] = f[0].slice(0, d), f[2] = g.slice(0, d)), f.slice(0, 3));
1503
1492
  }
1504
1493
  },
1505
1494
  filter: {
1506
- TAG: function(l) {
1507
- var d = l.replace(De, Re).toLowerCase();
1508
- return l === "*" ? function() {
1495
+ TAG: function(f) {
1496
+ var d = f.replace(Ae, Re).toLowerCase();
1497
+ return f === "*" ? function() {
1509
1498
  return !0;
1510
1499
  } : function(g) {
1511
1500
  return K(g, d);
1512
1501
  };
1513
1502
  },
1514
- CLASS: function(l) {
1515
- var d = P[l + " "];
1516
- return d || (d = new RegExp("(^|" + Q + ")" + l + "(" + Q + "|$)")) && P(l, function(g) {
1503
+ CLASS: function(f) {
1504
+ var d = P[f + " "];
1505
+ return d || (d = new RegExp("(^|" + Q + ")" + f + "(" + Q + "|$)")) && P(f, function(g) {
1517
1506
  return d.test(
1518
1507
  typeof g.className == "string" && g.className || typeof g.getAttribute < "u" && g.getAttribute("class") || ""
1519
1508
  );
1520
1509
  });
1521
1510
  },
1522
- ATTR: function(l, d, g) {
1511
+ ATTR: function(f, d, g) {
1523
1512
  return function(v) {
1524
- var b = Y.attr(v, l);
1513
+ var b = Y.attr(v, f);
1525
1514
  return b == null ? d === "!=" : d ? (b += "", d === "=" ? b === g : d === "!=" ? b !== g : d === "^=" ? g && b.indexOf(g) === 0 : d === "*=" ? g && b.indexOf(g) > -1 : d === "$=" ? g && b.slice(-g.length) === g : d === "~=" ? (" " + b.replace(X, " ") + " ").indexOf(g) > -1 : d === "|=" ? b === g || b.slice(0, g.length + 1) === g + "-" : !1) : !0;
1526
1515
  };
1527
1516
  },
1528
- CHILD: function(l, d, g, v, b) {
1529
- var C = l.slice(0, 3) !== "nth", E = l.slice(-4) !== "last", N = d === "of-type";
1517
+ CHILD: function(f, d, g, v, b) {
1518
+ var C = f.slice(0, 3) !== "nth", E = f.slice(-4) !== "last", N = d === "of-type";
1530
1519
  return v === 1 && b === 0 ? (
1531
1520
  // Shortcut for :nth-*(n)
1532
- function(A) {
1533
- return !!A.parentNode;
1521
+ function(D) {
1522
+ return !!D.parentNode;
1534
1523
  }
1535
- ) : function(A, B, H) {
1536
- var O, V, M, J, ce, se = C !== E ? "nextSibling" : "previousSibling", ge = A.parentNode, Ce = N && A.nodeName.toLowerCase(), Qe = !H && !N, ae = !1;
1524
+ ) : function(D, B, H) {
1525
+ var O, V, j, J, ce, oe = C !== E ? "nextSibling" : "previousSibling", ge = D.parentNode, Ce = N && D.nodeName.toLowerCase(), Qe = !H && !N, ae = !1;
1537
1526
  if (ge) {
1538
1527
  if (C) {
1539
- for (; se; ) {
1540
- for (M = A; M = M[se]; )
1541
- if (N ? K(M, Ce) : M.nodeType === 1)
1528
+ for (; oe; ) {
1529
+ for (j = D; j = j[oe]; )
1530
+ if (N ? K(j, Ce) : j.nodeType === 1)
1542
1531
  return !1;
1543
- ce = se = l === "only" && !ce && "nextSibling";
1532
+ ce = oe = f === "only" && !ce && "nextSibling";
1544
1533
  }
1545
1534
  return !0;
1546
1535
  }
1547
1536
  if (ce = [E ? ge.firstChild : ge.lastChild], E && Qe) {
1548
- for (V = ge[T] || (ge[T] = {}), O = V[l] || [], J = O[0] === m && O[1], ae = J && O[2], M = J && ge.childNodes[J]; M = ++J && M && M[se] || // Fallback to seeking `elem` from the start
1537
+ for (V = ge[T] || (ge[T] = {}), O = V[f] || [], J = O[0] === y && O[1], ae = J && O[2], j = J && ge.childNodes[J]; j = ++J && j && j[oe] || // Fallback to seeking `elem` from the start
1549
1538
  (ae = J = 0) || ce.pop(); )
1550
- if (M.nodeType === 1 && ++ae && M === A) {
1551
- V[l] = [m, J, ae];
1539
+ if (j.nodeType === 1 && ++ae && j === D) {
1540
+ V[f] = [y, J, ae];
1552
1541
  break;
1553
1542
  }
1554
- } else if (Qe && (V = A[T] || (A[T] = {}), O = V[l] || [], J = O[0] === m && O[1], ae = J), ae === !1)
1555
- for (; (M = ++J && M && M[se] || (ae = J = 0) || ce.pop()) && !((N ? K(M, Ce) : M.nodeType === 1) && ++ae && (Qe && (V = M[T] || (M[T] = {}), V[l] = [m, ae]), M === A)); )
1543
+ } else if (Qe && (V = D[T] || (D[T] = {}), O = V[f] || [], J = O[0] === y && O[1], ae = J), ae === !1)
1544
+ for (; (j = ++J && j && j[oe] || (ae = J = 0) || ce.pop()) && !((N ? K(j, Ce) : j.nodeType === 1) && ++ae && (Qe && (V = j[T] || (j[T] = {}), V[f] = [y, ae]), j === D)); )
1556
1545
  ;
1557
1546
  return ae -= b, ae === v || ae % v === 0 && ae / v >= 0;
1558
1547
  }
1559
1548
  };
1560
1549
  },
1561
- PSEUDO: function(l, d) {
1562
- var g, v = t.pseudos[l] || t.setFilters[l.toLowerCase()] || Y.error("unsupported pseudo: " + l);
1563
- return v[T] ? v(d) : v.length > 1 ? (g = [l, l, "", d], t.setFilters.hasOwnProperty(l.toLowerCase()) ? me(function(b, C) {
1564
- for (var E, N = v(b, d), A = N.length; A--; )
1565
- E = q.call(b, N[A]), b[E] = !(C[E] = N[A]);
1550
+ PSEUDO: function(f, d) {
1551
+ var g, v = t.pseudos[f] || t.setFilters[f.toLowerCase()] || Y.error("unsupported pseudo: " + f);
1552
+ return v[T] ? v(d) : v.length > 1 ? (g = [f, f, "", d], t.setFilters.hasOwnProperty(f.toLowerCase()) ? me(function(b, C) {
1553
+ for (var E, N = v(b, d), D = N.length; D--; )
1554
+ E = q.call(b, N[D]), b[E] = !(C[E] = N[D]);
1566
1555
  }) : function(b) {
1567
1556
  return v(b, 0, g);
1568
1557
  }) : v;
@@ -1570,23 +1559,23 @@ function Cr() {
1570
1559
  },
1571
1560
  pseudos: {
1572
1561
  // Potentially complex pseudos
1573
- not: me(function(l) {
1574
- var d = [], g = [], v = Qt(l.replace(Ze, "$1"));
1562
+ not: me(function(f) {
1563
+ var d = [], g = [], v = Qt(f.replace(Ze, "$1"));
1575
1564
  return v[T] ? me(function(b, C, E, N) {
1576
- for (var A, B = v(b, null, N, []), H = b.length; H--; )
1577
- (A = B[H]) && (b[H] = !(C[H] = A));
1565
+ for (var D, B = v(b, null, N, []), H = b.length; H--; )
1566
+ (D = B[H]) && (b[H] = !(C[H] = D));
1578
1567
  }) : function(b, C, E) {
1579
1568
  return d[0] = b, v(d, null, E, g), d[0] = null, !g.pop();
1580
1569
  };
1581
1570
  }),
1582
- has: me(function(l) {
1571
+ has: me(function(f) {
1583
1572
  return function(d) {
1584
- return Y(l, d).length > 0;
1573
+ return Y(f, d).length > 0;
1585
1574
  };
1586
1575
  }),
1587
- contains: me(function(l) {
1588
- return l = l.replace(De, Re), function(d) {
1589
- return (d.textContent || r.text(d)).indexOf(l) > -1;
1576
+ contains: me(function(f) {
1577
+ return f = f.replace(Ae, Re), function(d) {
1578
+ return (d.textContent || r.text(d)).indexOf(f) > -1;
1590
1579
  };
1591
1580
  }),
1592
1581
  // "Whether an element is represented by a :lang() selector
@@ -1596,115 +1585,115 @@ function Cr() {
1596
1585
  // The matching of C against the element's language value is performed case-insensitively.
1597
1586
  // The identifier C does not have to be a valid language name."
1598
1587
  // https://www.w3.org/TR/selectors/#lang-pseudo
1599
- lang: me(function(l) {
1600
- return lt.test(l || "") || Y.error("unsupported lang: " + l), l = l.replace(De, Re).toLowerCase(), function(d) {
1588
+ lang: me(function(f) {
1589
+ return ft.test(f || "") || Y.error("unsupported lang: " + f), f = f.replace(Ae, Re).toLowerCase(), function(d) {
1601
1590
  var g;
1602
1591
  do
1603
- if (g = f ? d.lang : d.getAttribute("xml:lang") || d.getAttribute("lang"))
1604
- return g = g.toLowerCase(), g === l || g.indexOf(l + "-") === 0;
1592
+ if (g = l ? d.lang : d.getAttribute("xml:lang") || d.getAttribute("lang"))
1593
+ return g = g.toLowerCase(), g === f || g.indexOf(f + "-") === 0;
1605
1594
  while ((d = d.parentNode) && d.nodeType === 1);
1606
1595
  return !1;
1607
1596
  };
1608
1597
  }),
1609
1598
  // Miscellaneous
1610
- target: function(l) {
1599
+ target: function(f) {
1611
1600
  var d = a.location && a.location.hash;
1612
- return d && d.slice(1) === l.id;
1601
+ return d && d.slice(1) === f.id;
1613
1602
  },
1614
- root: function(l) {
1615
- return l === c;
1603
+ root: function(f) {
1604
+ return f === c;
1616
1605
  },
1617
- focus: function(l) {
1618
- return l === zn() && u.hasFocus() && !!(l.type || l.href || ~l.tabIndex);
1606
+ focus: function(f) {
1607
+ return f === $n() && u.hasFocus() && !!(f.type || f.href || ~f.tabIndex);
1619
1608
  },
1620
1609
  // Boolean properties
1621
1610
  enabled: Pi(!1),
1622
1611
  disabled: Pi(!0),
1623
- checked: function(l) {
1624
- return K(l, "input") && !!l.checked || K(l, "option") && !!l.selected;
1612
+ checked: function(f) {
1613
+ return K(f, "input") && !!f.checked || K(f, "option") && !!f.selected;
1625
1614
  },
1626
- selected: function(l) {
1627
- return l.parentNode && l.parentNode.selectedIndex, l.selected === !0;
1615
+ selected: function(f) {
1616
+ return f.parentNode && f.parentNode.selectedIndex, f.selected === !0;
1628
1617
  },
1629
1618
  // Contents
1630
- empty: function(l) {
1631
- for (l = l.firstChild; l; l = l.nextSibling)
1632
- if (l.nodeType < 6)
1619
+ empty: function(f) {
1620
+ for (f = f.firstChild; f; f = f.nextSibling)
1621
+ if (f.nodeType < 6)
1633
1622
  return !1;
1634
1623
  return !0;
1635
1624
  },
1636
- parent: function(l) {
1637
- return !t.pseudos.empty(l);
1625
+ parent: function(f) {
1626
+ return !t.pseudos.empty(f);
1638
1627
  },
1639
1628
  // Element/input types
1640
- header: function(l) {
1641
- return qe.test(l.nodeName);
1629
+ header: function(f) {
1630
+ return qe.test(f.nodeName);
1642
1631
  },
1643
- input: function(l) {
1644
- return Ie.test(l.nodeName);
1632
+ input: function(f) {
1633
+ return Ie.test(f.nodeName);
1645
1634
  },
1646
- button: function(l) {
1647
- return K(l, "input") && l.type === "button" || K(l, "button");
1635
+ button: function(f) {
1636
+ return K(f, "input") && f.type === "button" || K(f, "button");
1648
1637
  },
1649
- text: function(l) {
1638
+ text: function(f) {
1650
1639
  var d;
1651
- return K(l, "input") && l.type === "text" && // Support: IE <10 only
1640
+ return K(f, "input") && f.type === "text" && // Support: IE <10 only
1652
1641
  // New HTML5 attribute values (e.g., "search") appear
1653
1642
  // with elem.type === "text"
1654
- ((d = l.getAttribute("type")) == null || d.toLowerCase() === "text");
1643
+ ((d = f.getAttribute("type")) == null || d.toLowerCase() === "text");
1655
1644
  },
1656
1645
  // Position-in-collection
1657
1646
  first: Oe(function() {
1658
1647
  return [0];
1659
1648
  }),
1660
- last: Oe(function(l, d) {
1649
+ last: Oe(function(f, d) {
1661
1650
  return [d - 1];
1662
1651
  }),
1663
- eq: Oe(function(l, d, g) {
1652
+ eq: Oe(function(f, d, g) {
1664
1653
  return [g < 0 ? g + d : g];
1665
1654
  }),
1666
- even: Oe(function(l, d) {
1655
+ even: Oe(function(f, d) {
1667
1656
  for (var g = 0; g < d; g += 2)
1668
- l.push(g);
1669
- return l;
1657
+ f.push(g);
1658
+ return f;
1670
1659
  }),
1671
- odd: Oe(function(l, d) {
1660
+ odd: Oe(function(f, d) {
1672
1661
  for (var g = 1; g < d; g += 2)
1673
- l.push(g);
1674
- return l;
1662
+ f.push(g);
1663
+ return f;
1675
1664
  }),
1676
- lt: Oe(function(l, d, g) {
1665
+ lt: Oe(function(f, d, g) {
1677
1666
  var v;
1678
1667
  for (g < 0 ? v = g + d : g > d ? v = d : v = g; --v >= 0; )
1679
- l.push(v);
1680
- return l;
1668
+ f.push(v);
1669
+ return f;
1681
1670
  }),
1682
- gt: Oe(function(l, d, g) {
1671
+ gt: Oe(function(f, d, g) {
1683
1672
  for (var v = g < 0 ? g + d : g; ++v < d; )
1684
- l.push(v);
1685
- return l;
1673
+ f.push(v);
1674
+ return f;
1686
1675
  })
1687
1676
  }
1688
1677
  }, t.pseudos.nth = t.pseudos.eq;
1689
1678
  for (e in { radio: !0, checkbox: !0, file: !0, password: !0, image: !0 })
1690
- t.pseudos[e] = Xn(e);
1679
+ t.pseudos[e] = zn(e);
1691
1680
  for (e in { submit: !0, reset: !0 })
1692
- t.pseudos[e] = Gn(e);
1681
+ t.pseudos[e] = Xn(e);
1693
1682
  function Fi() {
1694
1683
  }
1695
1684
  Fi.prototype = t.filters = t.pseudos, t.setFilters = new Fi();
1696
- function ft(l, d) {
1697
- var g, v, b, C, E, N, A, B = z[l + " "];
1685
+ function lt(f, d) {
1686
+ var g, v, b, C, E, N, D, B = z[f + " "];
1698
1687
  if (B)
1699
1688
  return d ? 0 : B.slice(0);
1700
- for (E = l, N = [], A = t.preFilter; E; ) {
1689
+ for (E = f, N = [], D = t.preFilter; E; ) {
1701
1690
  (!g || (v = te.exec(E))) && (v && (E = E.slice(v[0].length) || E), N.push(b = [])), g = !1, (v = ut.exec(E)) && (g = v.shift(), b.push({
1702
1691
  value: g,
1703
1692
  // Cast descendant combinators to space
1704
1693
  type: v[0].replace(Ze, " ")
1705
1694
  }), E = E.slice(g.length));
1706
1695
  for (C in t.filter)
1707
- (v = Se[C].exec(E)) && (!A[C] || (v = A[C](v))) && (g = v.shift(), b.push({
1696
+ (v = Se[C].exec(E)) && (!D[C] || (v = D[C](v))) && (g = v.shift(), b.push({
1708
1697
  value: g,
1709
1698
  type: C,
1710
1699
  matches: v
@@ -1712,209 +1701,209 @@ function Cr() {
1712
1701
  if (!g)
1713
1702
  break;
1714
1703
  }
1715
- return d ? E.length : E ? Y.error(l) : (
1704
+ return d ? E.length : E ? Y.error(f) : (
1716
1705
  // Cache the tokens
1717
- z(l, N).slice(0)
1706
+ z(f, N).slice(0)
1718
1707
  );
1719
1708
  }
1720
- function Tt(l) {
1721
- for (var d = 0, g = l.length, v = ""; d < g; d++)
1722
- v += l[d].value;
1709
+ function Tt(f) {
1710
+ for (var d = 0, g = f.length, v = ""; d < g; d++)
1711
+ v += f[d].value;
1723
1712
  return v;
1724
1713
  }
1725
- function wt(l, d, g) {
1714
+ function wt(f, d, g) {
1726
1715
  var v = d.dir, b = d.next, C = b || v, E = g && C === "parentNode", N = S++;
1727
1716
  return d.first ? (
1728
1717
  // Check against closest ancestor/preceding element
1729
- function(A, B, H) {
1730
- for (; A = A[v]; )
1731
- if (A.nodeType === 1 || E)
1732
- return l(A, B, H);
1718
+ function(D, B, H) {
1719
+ for (; D = D[v]; )
1720
+ if (D.nodeType === 1 || E)
1721
+ return f(D, B, H);
1733
1722
  return !1;
1734
1723
  }
1735
1724
  ) : (
1736
1725
  // Check against all ancestor/preceding elements
1737
- function(A, B, H) {
1738
- var O, V, M = [m, N];
1726
+ function(D, B, H) {
1727
+ var O, V, j = [y, N];
1739
1728
  if (H) {
1740
- for (; A = A[v]; )
1741
- if ((A.nodeType === 1 || E) && l(A, B, H))
1729
+ for (; D = D[v]; )
1730
+ if ((D.nodeType === 1 || E) && f(D, B, H))
1742
1731
  return !0;
1743
1732
  } else
1744
- for (; A = A[v]; )
1745
- if (A.nodeType === 1 || E)
1746
- if (V = A[T] || (A[T] = {}), b && K(A, b))
1747
- A = A[v] || A;
1733
+ for (; D = D[v]; )
1734
+ if (D.nodeType === 1 || E)
1735
+ if (V = D[T] || (D[T] = {}), b && K(D, b))
1736
+ D = D[v] || D;
1748
1737
  else {
1749
- if ((O = V[C]) && O[0] === m && O[1] === N)
1750
- return M[2] = O[2];
1751
- if (V[C] = M, M[2] = l(A, B, H))
1738
+ if ((O = V[C]) && O[0] === y && O[1] === N)
1739
+ return j[2] = O[2];
1740
+ if (V[C] = j, j[2] = f(D, B, H))
1752
1741
  return !0;
1753
1742
  }
1754
1743
  return !1;
1755
1744
  }
1756
1745
  );
1757
1746
  }
1758
- function Xt(l) {
1759
- return l.length > 1 ? function(d, g, v) {
1760
- for (var b = l.length; b--; )
1761
- if (!l[b](d, g, v))
1747
+ function Xt(f) {
1748
+ return f.length > 1 ? function(d, g, v) {
1749
+ for (var b = f.length; b--; )
1750
+ if (!f[b](d, g, v))
1762
1751
  return !1;
1763
1752
  return !0;
1764
- } : l[0];
1753
+ } : f[0];
1765
1754
  }
1766
- function Yn(l, d, g) {
1755
+ function Gn(f, d, g) {
1767
1756
  for (var v = 0, b = d.length; v < b; v++)
1768
- Y(l, d[v], g);
1757
+ Y(f, d[v], g);
1769
1758
  return g;
1770
1759
  }
1771
- function St(l, d, g, v, b) {
1772
- for (var C, E = [], N = 0, A = l.length, B = d != null; N < A; N++)
1773
- (C = l[N]) && (!g || g(C, v, b)) && (E.push(C), B && d.push(N));
1760
+ function St(f, d, g, v, b) {
1761
+ for (var C, E = [], N = 0, D = f.length, B = d != null; N < D; N++)
1762
+ (C = f[N]) && (!g || g(C, v, b)) && (E.push(C), B && d.push(N));
1774
1763
  return E;
1775
1764
  }
1776
- function Gt(l, d, g, v, b, C) {
1777
- return v && !v[T] && (v = Gt(v)), b && !b[T] && (b = Gt(b, C)), me(function(E, N, A, B) {
1778
- var H, O, V, M, J = [], ce = [], se = N.length, ge = E || Yn(
1765
+ function Gt(f, d, g, v, b, C) {
1766
+ return v && !v[T] && (v = Gt(v)), b && !b[T] && (b = Gt(b, C)), me(function(E, N, D, B) {
1767
+ var H, O, V, j, J = [], ce = [], oe = N.length, ge = E || Gn(
1779
1768
  d || "*",
1780
- A.nodeType ? [A] : A,
1769
+ D.nodeType ? [D] : D,
1781
1770
  []
1782
- ), Ce = l && (E || !d) ? St(ge, J, l, A, B) : ge;
1783
- if (g ? (M = b || (E ? l : se || v) ? (
1771
+ ), Ce = f && (E || !d) ? St(ge, J, f, D, B) : ge;
1772
+ if (g ? (j = b || (E ? f : oe || v) ? (
1784
1773
  // ...intermediate processing is necessary
1785
1774
  []
1786
1775
  ) : (
1787
1776
  // ...otherwise use results directly
1788
1777
  N
1789
- ), g(Ce, M, A, B)) : M = Ce, v)
1790
- for (H = St(M, ce), v(H, [], A, B), O = H.length; O--; )
1791
- (V = H[O]) && (M[ce[O]] = !(Ce[ce[O]] = V));
1778
+ ), g(Ce, j, D, B)) : j = Ce, v)
1779
+ for (H = St(j, ce), v(H, [], D, B), O = H.length; O--; )
1780
+ (V = H[O]) && (j[ce[O]] = !(Ce[ce[O]] = V));
1792
1781
  if (E) {
1793
- if (b || l) {
1782
+ if (b || f) {
1794
1783
  if (b) {
1795
- for (H = [], O = M.length; O--; )
1796
- (V = M[O]) && H.push(Ce[O] = V);
1797
- b(null, M = [], H, B);
1784
+ for (H = [], O = j.length; O--; )
1785
+ (V = j[O]) && H.push(Ce[O] = V);
1786
+ b(null, j = [], H, B);
1798
1787
  }
1799
- for (O = M.length; O--; )
1800
- (V = M[O]) && (H = b ? q.call(E, V) : J[O]) > -1 && (E[H] = !(N[H] = V));
1788
+ for (O = j.length; O--; )
1789
+ (V = j[O]) && (H = b ? q.call(E, V) : J[O]) > -1 && (E[H] = !(N[H] = V));
1801
1790
  }
1802
1791
  } else
1803
- M = St(
1804
- M === N ? M.splice(se, M.length) : M
1805
- ), b ? b(null, N, M, B) : s.apply(N, M);
1792
+ j = St(
1793
+ j === N ? j.splice(oe, j.length) : j
1794
+ ), b ? b(null, N, j, B) : o.apply(N, j);
1806
1795
  });
1807
1796
  }
1808
- function Yt(l) {
1809
- for (var d, g, v, b = l.length, C = t.relative[l[0].type], E = C || t.relative[" "], N = C ? 1 : 0, A = wt(function(O) {
1797
+ function Yt(f) {
1798
+ for (var d, g, v, b = f.length, C = t.relative[f[0].type], E = C || t.relative[" "], N = C ? 1 : 0, D = wt(function(O) {
1810
1799
  return O === d;
1811
1800
  }, E, !0), B = wt(function(O) {
1812
1801
  return q.call(d, O) > -1;
1813
- }, E, !0), H = [function(O, V, M) {
1814
- var J = !C && (M || V != i) || ((d = V).nodeType ? A(O, V, M) : B(O, V, M));
1802
+ }, E, !0), H = [function(O, V, j) {
1803
+ var J = !C && (j || V != i) || ((d = V).nodeType ? D(O, V, j) : B(O, V, j));
1815
1804
  return d = null, J;
1816
1805
  }]; N < b; N++)
1817
- if (g = t.relative[l[N].type])
1806
+ if (g = t.relative[f[N].type])
1818
1807
  H = [wt(Xt(H), g)];
1819
1808
  else {
1820
- if (g = t.filter[l[N].type].apply(null, l[N].matches), g[T]) {
1821
- for (v = ++N; v < b && !t.relative[l[v].type]; v++)
1809
+ if (g = t.filter[f[N].type].apply(null, f[N].matches), g[T]) {
1810
+ for (v = ++N; v < b && !t.relative[f[v].type]; v++)
1822
1811
  ;
1823
1812
  return Gt(
1824
1813
  N > 1 && Xt(H),
1825
1814
  N > 1 && Tt(
1826
1815
  // If the preceding token was a descendant combinator, insert an implicit any-element `*`
1827
- l.slice(0, N - 1).concat({ value: l[N - 2].type === " " ? "*" : "" })
1816
+ f.slice(0, N - 1).concat({ value: f[N - 2].type === " " ? "*" : "" })
1828
1817
  ).replace(Ze, "$1"),
1829
1818
  g,
1830
- N < v && Yt(l.slice(N, v)),
1831
- v < b && Yt(l = l.slice(v)),
1832
- v < b && Tt(l)
1819
+ N < v && Yt(f.slice(N, v)),
1820
+ v < b && Yt(f = f.slice(v)),
1821
+ v < b && Tt(f)
1833
1822
  );
1834
1823
  }
1835
1824
  H.push(g);
1836
1825
  }
1837
1826
  return Xt(H);
1838
1827
  }
1839
- function Qn(l, d) {
1840
- var g = d.length > 0, v = l.length > 0, b = function(C, E, N, A, B) {
1841
- var H, O, V, M = 0, J = "0", ce = C && [], se = [], ge = i, Ce = C || v && t.find.TAG("*", B), Qe = m += ge == null ? 1 : Math.random() || 0.1, ae = Ce.length;
1828
+ function Yn(f, d) {
1829
+ var g = d.length > 0, v = f.length > 0, b = function(C, E, N, D, B) {
1830
+ var H, O, V, j = 0, J = "0", ce = C && [], oe = [], ge = i, Ce = C || v && t.find.TAG("*", B), Qe = y += ge == null ? 1 : Math.random() || 0.1, ae = Ce.length;
1842
1831
  for (B && (i = E == u || E || B); J !== ae && (H = Ce[J]) != null; J++) {
1843
1832
  if (v && H) {
1844
- for (O = 0, !E && H.ownerDocument != u && (Me(H), N = !f); V = l[O++]; )
1833
+ for (O = 0, !E && H.ownerDocument != u && (je(H), N = !l); V = f[O++]; )
1845
1834
  if (V(H, E || u, N)) {
1846
- s.call(A, H);
1835
+ o.call(D, H);
1847
1836
  break;
1848
1837
  }
1849
- B && (m = Qe);
1838
+ B && (y = Qe);
1850
1839
  }
1851
- g && ((H = !V && H) && M--, C && ce.push(H));
1840
+ g && ((H = !V && H) && j--, C && ce.push(H));
1852
1841
  }
1853
- if (M += J, g && J !== M) {
1842
+ if (j += J, g && J !== j) {
1854
1843
  for (O = 0; V = d[O++]; )
1855
- V(ce, se, E, N);
1844
+ V(ce, oe, E, N);
1856
1845
  if (C) {
1857
- if (M > 0)
1846
+ if (j > 0)
1858
1847
  for (; J--; )
1859
- ce[J] || se[J] || (se[J] = Ui.call(A));
1860
- se = St(se);
1848
+ ce[J] || oe[J] || (oe[J] = Vi.call(D));
1849
+ oe = St(oe);
1861
1850
  }
1862
- s.apply(A, se), B && !C && se.length > 0 && M + d.length > 1 && r.uniqueSort(A);
1851
+ o.apply(D, oe), B && !C && oe.length > 0 && j + d.length > 1 && r.uniqueSort(D);
1863
1852
  }
1864
- return B && (m = Qe, i = ge), ce;
1853
+ return B && (y = Qe, i = ge), ce;
1865
1854
  };
1866
1855
  return g ? me(b) : b;
1867
1856
  }
1868
- function Qt(l, d) {
1869
- var g, v = [], b = [], C = _[l + " "];
1857
+ function Qt(f, d) {
1858
+ var g, v = [], b = [], C = _[f + " "];
1870
1859
  if (!C) {
1871
- for (d || (d = ft(l)), g = d.length; g--; )
1860
+ for (d || (d = lt(f)), g = d.length; g--; )
1872
1861
  C = Yt(d[g]), C[T] ? v.push(C) : b.push(C);
1873
1862
  C = _(
1874
- l,
1875
- Qn(b, v)
1876
- ), C.selector = l;
1863
+ f,
1864
+ Yn(b, v)
1865
+ ), C.selector = f;
1877
1866
  }
1878
1867
  return C;
1879
1868
  }
1880
- function Oi(l, d, g, v) {
1881
- var b, C, E, N, A, B = typeof l == "function" && l, H = !v && ft(l = B.selector || l);
1869
+ function Oi(f, d, g, v) {
1870
+ var b, C, E, N, D, B = typeof f == "function" && f, H = !v && lt(f = B.selector || f);
1882
1871
  if (g = g || [], H.length === 1) {
1883
- if (C = H[0] = H[0].slice(0), C.length > 2 && (E = C[0]).type === "ID" && d.nodeType === 9 && f && t.relative[C[1].type]) {
1872
+ if (C = H[0] = H[0].slice(0), C.length > 2 && (E = C[0]).type === "ID" && d.nodeType === 9 && l && t.relative[C[1].type]) {
1884
1873
  if (d = (t.find.ID(
1885
- E.matches[0].replace(De, Re),
1874
+ E.matches[0].replace(Ae, Re),
1886
1875
  d
1887
1876
  ) || [])[0], d)
1888
1877
  B && (d = d.parentNode);
1889
1878
  else return g;
1890
- l = l.slice(C.shift().value.length);
1879
+ f = f.slice(C.shift().value.length);
1891
1880
  }
1892
- for (b = Se.needsContext.test(l) ? 0 : C.length; b-- && (E = C[b], !t.relative[N = E.type]); )
1893
- if ((A = t.find[N]) && (v = A(
1894
- E.matches[0].replace(De, Re),
1881
+ for (b = Se.needsContext.test(f) ? 0 : C.length; b-- && (E = C[b], !t.relative[N = E.type]); )
1882
+ if ((D = t.find[N]) && (v = D(
1883
+ E.matches[0].replace(Ae, Re),
1895
1884
  $t.test(C[0].type) && zt(d.parentNode) || d
1896
1885
  ))) {
1897
- if (C.splice(b, 1), l = v.length && Tt(C), !l)
1898
- return s.apply(g, v), g;
1886
+ if (C.splice(b, 1), f = v.length && Tt(C), !f)
1887
+ return o.apply(g, v), g;
1899
1888
  break;
1900
1889
  }
1901
1890
  }
1902
- return (B || Qt(l, H))(
1891
+ return (B || Qt(f, H))(
1903
1892
  v,
1904
1893
  d,
1905
- !f,
1894
+ !l,
1906
1895
  g,
1907
- !d || $t.test(l) && zt(d.parentNode) || d
1896
+ !d || $t.test(f) && zt(d.parentNode) || d
1908
1897
  ), g;
1909
1898
  }
1910
- j.sortStable = T.split("").sort(ne).join("") === T, Me(), j.sortDetached = Ye(function(l) {
1911
- return l.compareDocumentPosition(u.createElement("fieldset")) & 1;
1912
- }), r.find = Y, r.expr[":"] = r.expr.pseudos, r.unique = r.uniqueSort, Y.compile = Qt, Y.select = Oi, Y.setDocument = Me, Y.tokenize = ft, Y.escape = r.escapeSelector, Y.getText = r.text, Y.isXML = r.isXMLDoc, Y.selectors = r.expr, Y.support = r.support, Y.uniqueSort = r.uniqueSort;
1899
+ M.sortStable = T.split("").sort(ne).join("") === T, je(), M.sortDetached = Ye(function(f) {
1900
+ return f.compareDocumentPosition(u.createElement("fieldset")) & 1;
1901
+ }), r.find = Y, r.expr[":"] = r.expr.pseudos, r.unique = r.uniqueSort, Y.compile = Qt, Y.select = Oi, Y.setDocument = je, Y.tokenize = lt, Y.escape = r.escapeSelector, Y.getText = r.text, Y.isXML = r.isXMLDoc, Y.selectors = r.expr, Y.support = r.support, Y.uniqueSort = r.uniqueSort;
1913
1902
  })();
1914
1903
  var _e = function(e, t, i) {
1915
- for (var n = [], o = i !== void 0; (e = e[t]) && e.nodeType !== 9; )
1904
+ for (var n = [], s = i !== void 0; (e = e[t]) && e.nodeType !== 9; )
1916
1905
  if (e.nodeType === 1) {
1917
- if (o && r(e).is(i))
1906
+ if (s && r(e).is(i))
1918
1907
  break;
1919
1908
  n.push(e);
1920
1909
  }
@@ -1924,9 +1913,9 @@ function Cr() {
1924
1913
  e.nodeType === 1 && e !== t && i.push(e);
1925
1914
  return i;
1926
1915
  }, ti = r.expr.match.needsContext, ii = /^<([a-z][^\/\0>:\x20\t\r\n\f]*)[\x20\t\r\n\f]*\/?>(?:<\/\1>|)$/i;
1927
- function Dt(e, t, i) {
1928
- return W(t) ? r.grep(e, function(n, o) {
1929
- return !!t.call(n, o, n) !== i;
1916
+ function At(e, t, i) {
1917
+ return W(t) ? r.grep(e, function(n, s) {
1918
+ return !!t.call(n, s, n) !== i;
1930
1919
  }) : t.nodeType ? r.grep(e, function(n) {
1931
1920
  return n === t !== i;
1932
1921
  }) : typeof t != "string" ? r.grep(e, function(n) {
@@ -1935,30 +1924,30 @@ function Cr() {
1935
1924
  }
1936
1925
  r.filter = function(e, t, i) {
1937
1926
  var n = t[0];
1938
- return i && (e = ":not(" + e + ")"), t.length === 1 && n.nodeType === 1 ? r.find.matchesSelector(n, e) ? [n] : [] : r.find.matches(e, r.grep(t, function(o) {
1939
- return o.nodeType === 1;
1927
+ return i && (e = ":not(" + e + ")"), t.length === 1 && n.nodeType === 1 ? r.find.matchesSelector(n, e) ? [n] : [] : r.find.matches(e, r.grep(t, function(s) {
1928
+ return s.nodeType === 1;
1940
1929
  }));
1941
1930
  }, r.fn.extend({
1942
1931
  find: function(e) {
1943
- var t, i, n = this.length, o = this;
1932
+ var t, i, n = this.length, s = this;
1944
1933
  if (typeof e != "string")
1945
1934
  return this.pushStack(r(e).filter(function() {
1946
1935
  for (t = 0; t < n; t++)
1947
- if (r.contains(o[t], this))
1936
+ if (r.contains(s[t], this))
1948
1937
  return !0;
1949
1938
  }));
1950
1939
  for (i = this.pushStack([]), t = 0; t < n; t++)
1951
- r.find(e, o[t], i);
1940
+ r.find(e, s[t], i);
1952
1941
  return n > 1 ? r.uniqueSort(i) : i;
1953
1942
  },
1954
1943
  filter: function(e) {
1955
- return this.pushStack(Dt(this, e || [], !1));
1944
+ return this.pushStack(At(this, e || [], !1));
1956
1945
  },
1957
1946
  not: function(e) {
1958
- return this.pushStack(Dt(this, e || [], !0));
1947
+ return this.pushStack(At(this, e || [], !0));
1959
1948
  },
1960
1949
  is: function(e) {
1961
- return !!Dt(
1950
+ return !!At(
1962
1951
  this,
1963
1952
  // If this is a positional/relative selector, check membership in the returned set
1964
1953
  // so $("p:first").is("p:last") won't return true for a doc with two "p".
@@ -1967,12 +1956,12 @@ function Cr() {
1967
1956
  ).length;
1968
1957
  }
1969
1958
  });
1970
- var ni, Yi = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, Qi = r.fn.init = function(e, t, i) {
1971
- var n, o;
1959
+ var ni, Gi = /^(?:\s*(<[\w\W]+>)[^>]*|#([\w-]+))$/, Yi = r.fn.init = function(e, t, i) {
1960
+ var n, s;
1972
1961
  if (!e)
1973
1962
  return this;
1974
1963
  if (i = i || ni, typeof e == "string")
1975
- if (e[0] === "<" && e[e.length - 1] === ">" && e.length >= 3 ? n = [null, e, null] : n = Yi.exec(e), n && (n[1] || !t))
1964
+ if (e[0] === "<" && e[e.length - 1] === ">" && e.length >= 3 ? n = [null, e, null] : n = Gi.exec(e), n && (n[1] || !t))
1976
1965
  if (n[1]) {
1977
1966
  if (t = t instanceof r ? t[0] : t, r.merge(this, r.parseHTML(
1978
1967
  n[1],
@@ -1983,7 +1972,7 @@ function Cr() {
1983
1972
  W(this[n]) ? this[n](t[n]) : this.attr(n, t[n]);
1984
1973
  return this;
1985
1974
  } else
1986
- return o = L.getElementById(n[2]), o && (this[0] = o, this.length = 1), this;
1975
+ return s = L.getElementById(n[2]), s && (this[0] = s, this.length = 1), this;
1987
1976
  else return !t || t.jquery ? (t || i).find(e) : this.constructor(t).find(e);
1988
1977
  else {
1989
1978
  if (e.nodeType)
@@ -1996,8 +1985,8 @@ function Cr() {
1996
1985
  }
1997
1986
  return r.makeArray(e, this);
1998
1987
  };
1999
- Qi.prototype = r.fn, ni = r(L);
2000
- var Ji = /^(?:parents|prev(?:Until|All))/, Ki = {
1988
+ Yi.prototype = r.fn, ni = r(L);
1989
+ var Qi = /^(?:parents|prev(?:Until|All))/, Ji = {
2001
1990
  children: !0,
2002
1991
  contents: !0,
2003
1992
  next: !0,
@@ -2013,19 +2002,19 @@ function Cr() {
2013
2002
  });
2014
2003
  },
2015
2004
  closest: function(e, t) {
2016
- var i, n = 0, o = this.length, s = [], u = typeof e != "string" && r(e);
2005
+ var i, n = 0, s = this.length, o = [], u = typeof e != "string" && r(e);
2017
2006
  if (!ti.test(e)) {
2018
- for (; n < o; n++)
2007
+ for (; n < s; n++)
2019
2008
  for (i = this[n]; i && i !== t; i = i.parentNode)
2020
2009
  if (i.nodeType < 11 && (u ? u.index(i) > -1 : (
2021
2010
  // Don't pass non-elements to jQuery#find
2022
2011
  i.nodeType === 1 && r.find.matchesSelector(i, e)
2023
2012
  ))) {
2024
- s.push(i);
2013
+ o.push(i);
2025
2014
  break;
2026
2015
  }
2027
2016
  }
2028
- return this.pushStack(s.length > 1 ? r.uniqueSort(s) : s);
2017
+ return this.pushStack(o.length > 1 ? r.uniqueSort(o) : o);
2029
2018
  },
2030
2019
  // Determine the position of an element within the set
2031
2020
  index: function(e) {
@@ -2096,70 +2085,70 @@ function Cr() {
2096
2085
  }
2097
2086
  }, function(e, t) {
2098
2087
  r.fn[e] = function(i, n) {
2099
- var o = r.map(this, t, i);
2100
- return e.slice(-5) !== "Until" && (n = i), n && typeof n == "string" && (o = r.filter(n, o)), this.length > 1 && (Ki[e] || r.uniqueSort(o), Ji.test(e) && o.reverse()), this.pushStack(o);
2088
+ var s = r.map(this, t, i);
2089
+ return e.slice(-5) !== "Until" && (n = i), n && typeof n == "string" && (s = r.filter(n, s)), this.length > 1 && (Ji[e] || r.uniqueSort(s), Qi.test(e) && s.reverse()), this.pushStack(s);
2101
2090
  };
2102
2091
  });
2103
2092
  var ve = /[^\x20\t\r\n\f]+/g;
2104
- function Zi(e) {
2093
+ function Ki(e) {
2105
2094
  var t = {};
2106
2095
  return r.each(e.match(ve) || [], function(i, n) {
2107
2096
  t[n] = !0;
2108
2097
  }), t;
2109
2098
  }
2110
2099
  r.Callbacks = function(e) {
2111
- e = typeof e == "string" ? Zi(e) : r.extend({}, e);
2112
- var t, i, n, o, s = [], u = [], c = -1, f = function() {
2113
- for (o = o || e.once, n = t = !0; u.length; c = -1)
2114
- for (i = u.shift(); ++c < s.length; )
2115
- s[c].apply(i[0], i[1]) === !1 && e.stopOnFalse && (c = s.length, i = !1);
2116
- e.memory || (i = !1), t = !1, o && (i ? s = [] : s = "");
2100
+ e = typeof e == "string" ? Ki(e) : r.extend({}, e);
2101
+ var t, i, n, s, o = [], u = [], c = -1, l = function() {
2102
+ for (s = s || e.once, n = t = !0; u.length; c = -1)
2103
+ for (i = u.shift(); ++c < o.length; )
2104
+ o[c].apply(i[0], i[1]) === !1 && e.stopOnFalse && (c = o.length, i = !1);
2105
+ e.memory || (i = !1), t = !1, s && (i ? o = [] : o = "");
2117
2106
  }, h = {
2118
2107
  // Add a callback or a collection of callbacks to the list
2119
2108
  add: function() {
2120
- return s && (i && !t && (c = s.length - 1, u.push(i)), (function x(T) {
2121
- r.each(T, function(m, S) {
2122
- W(S) ? (!e.unique || !h.has(S)) && s.push(S) : S && S.length && We(S) !== "string" && x(S);
2109
+ return o && (i && !t && (c = o.length - 1, u.push(i)), (function x(T) {
2110
+ r.each(T, function(y, S) {
2111
+ W(S) ? (!e.unique || !h.has(S)) && o.push(S) : S && S.length && We(S) !== "string" && x(S);
2123
2112
  });
2124
- })(arguments), i && !t && f()), this;
2113
+ })(arguments), i && !t && l()), this;
2125
2114
  },
2126
2115
  // Remove a callback from the list
2127
2116
  remove: function() {
2128
2117
  return r.each(arguments, function(x, T) {
2129
- for (var m; (m = r.inArray(T, s, m)) > -1; )
2130
- s.splice(m, 1), m <= c && c--;
2118
+ for (var y; (y = r.inArray(T, o, y)) > -1; )
2119
+ o.splice(y, 1), y <= c && c--;
2131
2120
  }), this;
2132
2121
  },
2133
2122
  // Check if a given callback is in the list.
2134
2123
  // If no argument is given, return whether or not list has callbacks attached.
2135
2124
  has: function(x) {
2136
- return x ? r.inArray(x, s) > -1 : s.length > 0;
2125
+ return x ? r.inArray(x, o) > -1 : o.length > 0;
2137
2126
  },
2138
2127
  // Remove all callbacks from the list
2139
2128
  empty: function() {
2140
- return s && (s = []), this;
2129
+ return o && (o = []), this;
2141
2130
  },
2142
2131
  // Disable .fire and .add
2143
2132
  // Abort any current/pending executions
2144
2133
  // Clear all callbacks and values
2145
2134
  disable: function() {
2146
- return o = u = [], s = i = "", this;
2135
+ return s = u = [], o = i = "", this;
2147
2136
  },
2148
2137
  disabled: function() {
2149
- return !s;
2138
+ return !o;
2150
2139
  },
2151
2140
  // Disable .fire
2152
2141
  // Also disable .add unless we have memory (since it would have no effect)
2153
2142
  // Abort any pending executions
2154
2143
  lock: function() {
2155
- return o = u = [], !i && !t && (s = i = ""), this;
2144
+ return s = u = [], !i && !t && (o = i = ""), this;
2156
2145
  },
2157
2146
  locked: function() {
2158
- return !!o;
2147
+ return !!s;
2159
2148
  },
2160
2149
  // Call all callbacks with the given context and arguments
2161
2150
  fireWith: function(x, T) {
2162
- return o || (T = T || [], T = [x, T.slice ? T.slice() : T], u.push(T), t || f()), this;
2151
+ return s || (T = T || [], T = [x, T.slice ? T.slice() : T], u.push(T), t || l()), this;
2163
2152
  },
2164
2153
  // Call all the callbacks with the given arguments
2165
2154
  fire: function() {
@@ -2178,12 +2167,12 @@ function Cr() {
2178
2167
  function ht(e) {
2179
2168
  throw e;
2180
2169
  }
2181
- function oi(e, t, i, n) {
2182
- var o;
2170
+ function si(e, t, i, n) {
2171
+ var s;
2183
2172
  try {
2184
- e && W(o = e.promise) ? o.call(e).done(t).fail(i) : e && W(o = e.then) ? o.call(e, t, i) : t.apply(void 0, [e].slice(n));
2185
- } catch (s) {
2186
- i.apply(void 0, [s]);
2173
+ e && W(s = e.promise) ? s.call(e).done(t).fail(i) : e && W(s = e.then) ? s.call(e, t, i) : t.apply(void 0, [e].slice(n));
2174
+ } catch (o) {
2175
+ i.apply(void 0, [o]);
2187
2176
  }
2188
2177
  }
2189
2178
  r.extend({
@@ -2219,66 +2208,66 @@ function Cr() {
2219
2208
  return i;
2220
2209
  },
2221
2210
  always: function() {
2222
- return o.done(arguments).fail(arguments), this;
2211
+ return s.done(arguments).fail(arguments), this;
2223
2212
  },
2224
- catch: function(s) {
2225
- return n.then(null, s);
2213
+ catch: function(o) {
2214
+ return n.then(null, o);
2226
2215
  },
2227
2216
  // Keep pipe for back-compat
2228
2217
  pipe: function() {
2229
- var s = arguments;
2218
+ var o = arguments;
2230
2219
  return r.Deferred(function(u) {
2231
- r.each(t, function(c, f) {
2232
- var h = W(s[f[4]]) && s[f[4]];
2233
- o[f[1]](function() {
2220
+ r.each(t, function(c, l) {
2221
+ var h = W(o[l[4]]) && o[l[4]];
2222
+ s[l[1]](function() {
2234
2223
  var x = h && h.apply(this, arguments);
2235
- x && W(x.promise) ? x.promise().progress(u.notify).done(u.resolve).fail(u.reject) : u[f[0] + "With"](
2224
+ x && W(x.promise) ? x.promise().progress(u.notify).done(u.resolve).fail(u.reject) : u[l[0] + "With"](
2236
2225
  this,
2237
2226
  h ? [x] : arguments
2238
2227
  );
2239
2228
  });
2240
- }), s = null;
2229
+ }), o = null;
2241
2230
  }).promise();
2242
2231
  },
2243
- then: function(s, u, c) {
2244
- var f = 0;
2245
- function h(x, T, m, S) {
2232
+ then: function(o, u, c) {
2233
+ var l = 0;
2234
+ function h(x, T, y, S) {
2246
2235
  return function() {
2247
2236
  var P = this, z = arguments, _ = function() {
2248
2237
  var ne, be;
2249
- if (!(x < f)) {
2250
- if (ne = m.apply(P, z), ne === T.promise())
2238
+ if (!(x < l)) {
2239
+ if (ne = y.apply(P, z), ne === T.promise())
2251
2240
  throw new TypeError("Thenable self-resolution");
2252
2241
  be = ne && // Support: Promises/A+ section 2.3.4
2253
2242
  // https://promisesaplus.com/#point-64
2254
2243
  // Only check objects and functions for thenability
2255
2244
  (typeof ne == "object" || typeof ne == "function") && ne.then, W(be) ? S ? be.call(
2256
2245
  ne,
2257
- h(f, T, Be, S),
2258
- h(f, T, ht, S)
2259
- ) : (f++, be.call(
2246
+ h(l, T, Be, S),
2247
+ h(l, T, ht, S)
2248
+ ) : (l++, be.call(
2260
2249
  ne,
2261
- h(f, T, Be, S),
2262
- h(f, T, ht, S),
2250
+ h(l, T, Be, S),
2251
+ h(l, T, ht, S),
2263
2252
  h(
2264
- f,
2253
+ l,
2265
2254
  T,
2266
2255
  Be,
2267
2256
  T.notifyWith
2268
2257
  )
2269
- )) : (m !== Be && (P = void 0, z = [ne]), (S || T.resolveWith)(P, z));
2258
+ )) : (y !== Be && (P = void 0, z = [ne]), (S || T.resolveWith)(P, z));
2270
2259
  }
2271
- }, oe = S ? _ : function() {
2260
+ }, se = S ? _ : function() {
2272
2261
  try {
2273
2262
  _();
2274
2263
  } catch (ne) {
2275
2264
  r.Deferred.exceptionHook && r.Deferred.exceptionHook(
2276
2265
  ne,
2277
- oe.error
2278
- ), x + 1 >= f && (m !== ht && (P = void 0, z = [ne]), T.rejectWith(P, z));
2266
+ se.error
2267
+ ), x + 1 >= l && (y !== ht && (P = void 0, z = [ne]), T.rejectWith(P, z));
2279
2268
  }
2280
2269
  };
2281
- x ? oe() : (r.Deferred.getErrorHook ? oe.error = r.Deferred.getErrorHook() : r.Deferred.getStackHook && (oe.error = r.Deferred.getStackHook()), a.setTimeout(oe));
2270
+ x ? se() : (r.Deferred.getErrorHook ? se.error = r.Deferred.getErrorHook() : r.Deferred.getStackHook && (se.error = r.Deferred.getStackHook()), a.setTimeout(se));
2282
2271
  };
2283
2272
  }
2284
2273
  return r.Deferred(function(x) {
@@ -2293,7 +2282,7 @@ function Cr() {
2293
2282
  h(
2294
2283
  0,
2295
2284
  x,
2296
- W(s) ? s : Be
2285
+ W(o) ? o : Be
2297
2286
  )
2298
2287
  ), t[2][3].add(
2299
2288
  h(
@@ -2306,53 +2295,53 @@ function Cr() {
2306
2295
  },
2307
2296
  // Get a promise for this deferred
2308
2297
  // If obj is provided, the promise aspect is added to the object
2309
- promise: function(s) {
2310
- return s != null ? r.extend(s, n) : n;
2298
+ promise: function(o) {
2299
+ return o != null ? r.extend(o, n) : n;
2311
2300
  }
2312
- }, o = {};
2313
- return r.each(t, function(s, u) {
2314
- var c = u[2], f = u[5];
2315
- n[u[1]] = c.add, f && c.add(
2301
+ }, s = {};
2302
+ return r.each(t, function(o, u) {
2303
+ var c = u[2], l = u[5];
2304
+ n[u[1]] = c.add, l && c.add(
2316
2305
  function() {
2317
- i = f;
2306
+ i = l;
2318
2307
  },
2319
2308
  // rejected_callbacks.disable
2320
2309
  // fulfilled_callbacks.disable
2321
- t[3 - s][2].disable,
2310
+ t[3 - o][2].disable,
2322
2311
  // rejected_handlers.disable
2323
2312
  // fulfilled_handlers.disable
2324
- t[3 - s][3].disable,
2313
+ t[3 - o][3].disable,
2325
2314
  // progress_callbacks.lock
2326
2315
  t[0][2].lock,
2327
2316
  // progress_handlers.lock
2328
2317
  t[0][3].lock
2329
- ), c.add(u[3].fire), o[u[0]] = function() {
2330
- return o[u[0] + "With"](this === o ? void 0 : this, arguments), this;
2331
- }, o[u[0] + "With"] = c.fireWith;
2332
- }), n.promise(o), e && e.call(o, o), o;
2318
+ ), c.add(u[3].fire), s[u[0]] = function() {
2319
+ return s[u[0] + "With"](this === s ? void 0 : this, arguments), this;
2320
+ }, s[u[0] + "With"] = c.fireWith;
2321
+ }), n.promise(s), e && e.call(s, s), s;
2333
2322
  },
2334
2323
  // Deferred helper
2335
2324
  when: function(e) {
2336
- var t = arguments.length, i = t, n = Array(i), o = w.call(arguments), s = r.Deferred(), u = function(c) {
2337
- return function(f) {
2338
- n[c] = this, o[c] = arguments.length > 1 ? w.call(arguments) : f, --t || s.resolveWith(n, o);
2325
+ var t = arguments.length, i = t, n = Array(i), s = w.call(arguments), o = r.Deferred(), u = function(c) {
2326
+ return function(l) {
2327
+ n[c] = this, s[c] = arguments.length > 1 ? w.call(arguments) : l, --t || o.resolveWith(n, s);
2339
2328
  };
2340
2329
  };
2341
- if (t <= 1 && (oi(
2330
+ if (t <= 1 && (si(
2342
2331
  e,
2343
- s.done(u(i)).resolve,
2344
- s.reject,
2332
+ o.done(u(i)).resolve,
2333
+ o.reject,
2345
2334
  !t
2346
- ), s.state() === "pending" || W(o[i] && o[i].then)))
2347
- return s.then();
2335
+ ), o.state() === "pending" || W(s[i] && s[i].then)))
2336
+ return o.then();
2348
2337
  for (; i--; )
2349
- oi(o[i], u(i), s.reject);
2350
- return s.promise();
2338
+ si(s[i], u(i), o.reject);
2339
+ return o.promise();
2351
2340
  }
2352
2341
  });
2353
- var en = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
2342
+ var Zi = /^(Eval|Internal|Range|Reference|Syntax|Type|URI)Error$/;
2354
2343
  r.Deferred.exceptionHook = function(e, t) {
2355
- a.console && a.console.warn && e && en.test(e.name) && a.console.warn(
2344
+ a.console && a.console.warn && e && Zi.test(e.name) && a.console.warn(
2356
2345
  "jQuery.Deferred exception: " + e.message,
2357
2346
  e.stack,
2358
2347
  t
@@ -2382,28 +2371,28 @@ function Cr() {
2382
2371
  L.removeEventListener("DOMContentLoaded", pt), a.removeEventListener("load", pt), r.ready();
2383
2372
  }
2384
2373
  L.readyState === "complete" || L.readyState !== "loading" && !L.documentElement.doScroll ? a.setTimeout(r.ready) : (L.addEventListener("DOMContentLoaded", pt), a.addEventListener("load", pt));
2385
- var Ee = function(e, t, i, n, o, s, u) {
2386
- var c = 0, f = e.length, h = i == null;
2374
+ var Ee = function(e, t, i, n, s, o, u) {
2375
+ var c = 0, l = e.length, h = i == null;
2387
2376
  if (We(i) === "object") {
2388
- o = !0;
2377
+ s = !0;
2389
2378
  for (c in i)
2390
- Ee(e, t, c, i[c], !0, s, u);
2391
- } else if (n !== void 0 && (o = !0, W(n) || (u = !0), h && (u ? (t.call(e, n), t = null) : (h = t, t = function(x, T, m) {
2392
- return h.call(r(x), m);
2379
+ Ee(e, t, c, i[c], !0, o, u);
2380
+ } else if (n !== void 0 && (s = !0, W(n) || (u = !0), h && (u ? (t.call(e, n), t = null) : (h = t, t = function(x, T, y) {
2381
+ return h.call(r(x), y);
2393
2382
  })), t))
2394
- for (; c < f; c++)
2383
+ for (; c < l; c++)
2395
2384
  t(
2396
2385
  e[c],
2397
2386
  i,
2398
2387
  u ? n : n.call(e[c], c, t(e[c], i))
2399
2388
  );
2400
- return o ? e : h ? t.call(e) : f ? t(e[0], i) : s;
2401
- }, tn = /^-ms-/, nn = /-([a-z])/g;
2402
- function rn(e, t) {
2389
+ return s ? e : h ? t.call(e) : l ? t(e[0], i) : o;
2390
+ }, en = /^-ms-/, tn = /-([a-z])/g;
2391
+ function nn(e, t) {
2403
2392
  return t.toUpperCase();
2404
2393
  }
2405
2394
  function xe(e) {
2406
- return e.replace(tn, "ms-").replace(nn, rn);
2395
+ return e.replace(en, "ms-").replace(tn, nn);
2407
2396
  }
2408
2397
  var et = function(e) {
2409
2398
  return e.nodeType === 1 || e.nodeType === 9 || !+e.nodeType;
@@ -2420,13 +2409,13 @@ function Cr() {
2420
2409
  }))), t;
2421
2410
  },
2422
2411
  set: function(e, t, i) {
2423
- var n, o = this.cache(e);
2412
+ var n, s = this.cache(e);
2424
2413
  if (typeof t == "string")
2425
- o[xe(t)] = i;
2414
+ s[xe(t)] = i;
2426
2415
  else
2427
2416
  for (n in t)
2428
- o[xe(n)] = t[n];
2429
- return o;
2417
+ s[xe(n)] = t[n];
2418
+ return s;
2430
2419
  },
2431
2420
  get: function(e, t) {
2432
2421
  return t === void 0 ? this.cache(e) : (
@@ -2451,16 +2440,16 @@ function Cr() {
2451
2440
  return t !== void 0 && !r.isEmptyObject(t);
2452
2441
  }
2453
2442
  };
2454
- var I = new tt(), ue = new tt(), on = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, sn = /[A-Z]/g;
2455
- function an(e) {
2456
- return e === "true" ? !0 : e === "false" ? !1 : e === "null" ? null : e === +e + "" ? +e : on.test(e) ? JSON.parse(e) : e;
2443
+ var I = new tt(), ue = new tt(), rn = /^(?:\{[\w\W]*\}|\[[\w\W]*\])$/, sn = /[A-Z]/g;
2444
+ function on(e) {
2445
+ return e === "true" ? !0 : e === "false" ? !1 : e === "null" ? null : e === +e + "" ? +e : rn.test(e) ? JSON.parse(e) : e;
2457
2446
  }
2458
- function si(e, t, i) {
2447
+ function oi(e, t, i) {
2459
2448
  var n;
2460
2449
  if (i === void 0 && e.nodeType === 1)
2461
2450
  if (n = "data-" + t.replace(sn, "-$&").toLowerCase(), i = e.getAttribute(n), typeof i == "string") {
2462
2451
  try {
2463
- i = an(i);
2452
+ i = on(i);
2464
2453
  } catch {
2465
2454
  }
2466
2455
  ue.set(e, t, i);
@@ -2488,21 +2477,21 @@ function Cr() {
2488
2477
  }
2489
2478
  }), r.fn.extend({
2490
2479
  data: function(e, t) {
2491
- var i, n, o, s = this[0], u = s && s.attributes;
2480
+ var i, n, s, o = this[0], u = o && o.attributes;
2492
2481
  if (e === void 0) {
2493
- if (this.length && (o = ue.get(s), s.nodeType === 1 && !I.get(s, "hasDataAttrs"))) {
2482
+ if (this.length && (s = ue.get(o), o.nodeType === 1 && !I.get(o, "hasDataAttrs"))) {
2494
2483
  for (i = u.length; i--; )
2495
- u[i] && (n = u[i].name, n.indexOf("data-") === 0 && (n = xe(n.slice(5)), si(s, n, o[n])));
2496
- I.set(s, "hasDataAttrs", !0);
2484
+ u[i] && (n = u[i].name, n.indexOf("data-") === 0 && (n = xe(n.slice(5)), oi(o, n, s[n])));
2485
+ I.set(o, "hasDataAttrs", !0);
2497
2486
  }
2498
- return o;
2487
+ return s;
2499
2488
  }
2500
2489
  return typeof e == "object" ? this.each(function() {
2501
2490
  ue.set(this, e);
2502
2491
  }) : Ee(this, function(c) {
2503
- var f;
2504
- if (s && c === void 0)
2505
- return f = ue.get(s, e), f !== void 0 || (f = si(s, e), f !== void 0) ? f : void 0;
2492
+ var l;
2493
+ if (o && c === void 0)
2494
+ return l = ue.get(o, e), l !== void 0 || (l = oi(o, e), l !== void 0) ? l : void 0;
2506
2495
  this.each(function() {
2507
2496
  ue.set(this, e, c);
2508
2497
  });
@@ -2521,10 +2510,10 @@ function Cr() {
2521
2510
  },
2522
2511
  dequeue: function(e, t) {
2523
2512
  t = t || "fx";
2524
- var i = r.queue(e, t), n = i.length, o = i.shift(), s = r._queueHooks(e, t), u = function() {
2513
+ var i = r.queue(e, t), n = i.length, s = i.shift(), o = r._queueHooks(e, t), u = function() {
2525
2514
  r.dequeue(e, t);
2526
2515
  };
2527
- o === "inprogress" && (o = i.shift(), n--), o && (t === "fx" && i.unshift("inprogress"), delete s.stop, o.call(e, u, s)), !n && s && s.empty.fire();
2516
+ s === "inprogress" && (s = i.shift(), n--), s && (t === "fx" && i.unshift("inprogress"), delete o.stop, s.call(e, u, o)), !n && o && o.empty.fire();
2528
2517
  },
2529
2518
  // Not public - generate a queueHooks object, or return the current one
2530
2519
  _queueHooks: function(e, t) {
@@ -2554,19 +2543,19 @@ function Cr() {
2554
2543
  // Get a promise resolved when queues of a certain type
2555
2544
  // are emptied (fx is the type by default)
2556
2545
  promise: function(e, t) {
2557
- var i, n = 1, o = r.Deferred(), s = this, u = this.length, c = function() {
2558
- --n || o.resolveWith(s, [s]);
2546
+ var i, n = 1, s = r.Deferred(), o = this, u = this.length, c = function() {
2547
+ --n || s.resolveWith(o, [o]);
2559
2548
  };
2560
2549
  for (typeof e != "string" && (t = e, e = void 0), e = e || "fx"; u--; )
2561
- i = I.get(s[u], e + "queueHooks"), i && i.empty && (n++, i.empty.add(c));
2562
- return c(), o.promise(t);
2550
+ i = I.get(o[u], e + "queueHooks"), i && i.empty && (n++, i.empty.add(c));
2551
+ return c(), s.promise(t);
2563
2552
  }
2564
2553
  });
2565
- var ai = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, it = new RegExp("^(?:([+-])=|)(" + ai + ")([a-z%]*)$", "i"), Ae = ["Top", "Right", "Bottom", "Left"], je = L.documentElement, Ve = function(e) {
2554
+ var ai = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, it = new RegExp("^(?:([+-])=|)(" + ai + ")([a-z%]*)$", "i"), De = ["Top", "Right", "Bottom", "Left"], Me = L.documentElement, Ve = function(e) {
2566
2555
  return r.contains(e.ownerDocument, e);
2567
- }, un = { composed: !0 };
2568
- je.getRootNode && (Ve = function(e) {
2569
- return r.contains(e.ownerDocument, e) || e.getRootNode(un) === e.ownerDocument;
2556
+ }, an = { composed: !0 };
2557
+ Me.getRootNode && (Ve = function(e) {
2558
+ return r.contains(e.ownerDocument, e) || e.getRootNode(an) === e.ownerDocument;
2570
2559
  });
2571
2560
  var gt = function(e, t) {
2572
2561
  return e = t || e, e.style.display === "none" || e.style.display === "" && // Otherwise, check computed style
@@ -2576,28 +2565,28 @@ function Cr() {
2576
2565
  Ve(e) && r.css(e, "display") === "none";
2577
2566
  };
2578
2567
  function ui(e, t, i, n) {
2579
- var o, s, u = 20, c = n ? function() {
2568
+ var s, o, u = 20, c = n ? function() {
2580
2569
  return n.cur();
2581
2570
  } : function() {
2582
2571
  return r.css(e, t, "");
2583
- }, f = c(), h = i && i[3] || (r.cssNumber[t] ? "" : "px"), x = e.nodeType && (r.cssNumber[t] || h !== "px" && +f) && it.exec(r.css(e, t));
2572
+ }, l = c(), h = i && i[3] || (r.cssNumber[t] ? "" : "px"), x = e.nodeType && (r.cssNumber[t] || h !== "px" && +l) && it.exec(r.css(e, t));
2584
2573
  if (x && x[3] !== h) {
2585
- for (f = f / 2, h = h || x[3], x = +f || 1; u--; )
2586
- r.style(e, t, x + h), (1 - s) * (1 - (s = c() / f || 0.5)) <= 0 && (u = 0), x = x / s;
2574
+ for (l = l / 2, h = h || x[3], x = +l || 1; u--; )
2575
+ r.style(e, t, x + h), (1 - o) * (1 - (o = c() / l || 0.5)) <= 0 && (u = 0), x = x / o;
2587
2576
  x = x * 2, r.style(e, t, x + h), i = i || [];
2588
2577
  }
2589
- return i && (x = +x || +f || 0, o = i[1] ? x + (i[1] + 1) * i[2] : +i[2], n && (n.unit = h, n.start = x, n.end = o)), o;
2578
+ return i && (x = +x || +l || 0, s = i[1] ? x + (i[1] + 1) * i[2] : +i[2], n && (n.unit = h, n.start = x, n.end = s)), s;
2590
2579
  }
2591
- var li = {};
2592
- function ln(e) {
2593
- var t, i = e.ownerDocument, n = e.nodeName, o = li[n];
2594
- return o || (t = i.body.appendChild(i.createElement(n)), o = r.css(t, "display"), t.parentNode.removeChild(t), o === "none" && (o = "block"), li[n] = o, o);
2580
+ var fi = {};
2581
+ function un(e) {
2582
+ var t, i = e.ownerDocument, n = e.nodeName, s = fi[n];
2583
+ return s || (t = i.body.appendChild(i.createElement(n)), s = r.css(t, "display"), t.parentNode.removeChild(t), s === "none" && (s = "block"), fi[n] = s, s);
2595
2584
  }
2596
2585
  function Ue(e, t) {
2597
- for (var i, n, o = [], s = 0, u = e.length; s < u; s++)
2598
- n = e[s], n.style && (i = n.style.display, t ? (i === "none" && (o[s] = I.get(n, "display") || null, o[s] || (n.style.display = "")), n.style.display === "" && gt(n) && (o[s] = ln(n))) : i !== "none" && (o[s] = "none", I.set(n, "display", i)));
2599
- for (s = 0; s < u; s++)
2600
- o[s] != null && (e[s].style.display = o[s]);
2586
+ for (var i, n, s = [], o = 0, u = e.length; o < u; o++)
2587
+ n = e[o], n.style && (i = n.style.display, t ? (i === "none" && (s[o] = I.get(n, "display") || null, s[o] || (n.style.display = "")), n.style.display === "" && gt(n) && (s[o] = un(n))) : i !== "none" && (s[o] = "none", I.set(n, "display", i)));
2588
+ for (o = 0; o < u; o++)
2589
+ s[o] != null && (e[o].style.display = s[o]);
2601
2590
  return e;
2602
2591
  }
2603
2592
  r.fn.extend({
@@ -2613,10 +2602,10 @@ function Cr() {
2613
2602
  });
2614
2603
  }
2615
2604
  });
2616
- var nt = /^(?:checkbox|radio)$/i, fi = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i, ci = /^$|^module$|\/(?:java|ecma)script/i;
2605
+ var nt = /^(?:checkbox|radio)$/i, li = /<([a-z][^\/\0>\x20\t\r\n\f]*)/i, ci = /^$|^module$|\/(?:java|ecma)script/i;
2617
2606
  (function() {
2618
2607
  var e = L.createDocumentFragment(), t = e.appendChild(L.createElement("div")), i = L.createElement("input");
2619
- i.setAttribute("type", "radio"), i.setAttribute("checked", "checked"), i.setAttribute("name", "t"), t.appendChild(i), j.checkClone = t.cloneNode(!0).cloneNode(!0).lastChild.checked, t.innerHTML = "<textarea>x</textarea>", j.noCloneChecked = !!t.cloneNode(!0).lastChild.defaultValue, t.innerHTML = "<option></option>", j.option = !!t.lastChild;
2608
+ i.setAttribute("type", "radio"), i.setAttribute("checked", "checked"), i.setAttribute("name", "t"), t.appendChild(i), M.checkClone = t.cloneNode(!0).cloneNode(!0).lastChild.checked, t.innerHTML = "<textarea>x</textarea>", M.noCloneChecked = !!t.cloneNode(!0).lastChild.defaultValue, t.innerHTML = "<option></option>", M.option = !!t.lastChild;
2620
2609
  })();
2621
2610
  var he = {
2622
2611
  // XHTML parsers do not magically insert elements in the
@@ -2628,8 +2617,8 @@ function Cr() {
2628
2617
  td: [3, "<table><tbody><tr>", "</tr></tbody></table>"],
2629
2618
  _default: [0, "", ""]
2630
2619
  };
2631
- he.tbody = he.tfoot = he.colgroup = he.caption = he.thead, he.th = he.td, j.option || (he.optgroup = he.option = [1, "<select multiple='multiple'>", "</select>"]);
2632
- function le(e, t) {
2620
+ he.tbody = he.tfoot = he.colgroup = he.caption = he.thead, he.th = he.td, M.option || (he.optgroup = he.option = [1, "<select multiple='multiple'>", "</select>"]);
2621
+ function fe(e, t) {
2633
2622
  var i;
2634
2623
  return typeof e.getElementsByTagName < "u" ? i = e.getElementsByTagName(t || "*") : typeof e.querySelectorAll < "u" ? i = e.querySelectorAll(t || "*") : i = [], t === void 0 || t && K(e, t) ? r.merge([e], i) : i;
2635
2624
  }
@@ -2642,26 +2631,26 @@ function Cr() {
2642
2631
  );
2643
2632
  }
2644
2633
  var fn = /<|&#?\w+;/;
2645
- function di(e, t, i, n, o) {
2646
- for (var s, u, c, f, h, x, T = t.createDocumentFragment(), m = [], S = 0, P = e.length; S < P; S++)
2647
- if (s = e[S], s || s === 0)
2648
- if (We(s) === "object")
2649
- r.merge(m, s.nodeType ? [s] : s);
2650
- else if (!fn.test(s))
2651
- m.push(t.createTextNode(s));
2634
+ function di(e, t, i, n, s) {
2635
+ for (var o, u, c, l, h, x, T = t.createDocumentFragment(), y = [], S = 0, P = e.length; S < P; S++)
2636
+ if (o = e[S], o || o === 0)
2637
+ if (We(o) === "object")
2638
+ r.merge(y, o.nodeType ? [o] : o);
2639
+ else if (!fn.test(o))
2640
+ y.push(t.createTextNode(o));
2652
2641
  else {
2653
- for (u = u || T.appendChild(t.createElement("div")), c = (fi.exec(s) || ["", ""])[1].toLowerCase(), f = he[c] || he._default, u.innerHTML = f[1] + r.htmlPrefilter(s) + f[2], x = f[0]; x--; )
2642
+ for (u = u || T.appendChild(t.createElement("div")), c = (li.exec(o) || ["", ""])[1].toLowerCase(), l = he[c] || he._default, u.innerHTML = l[1] + r.htmlPrefilter(o) + l[2], x = l[0]; x--; )
2654
2643
  u = u.lastChild;
2655
- r.merge(m, u.childNodes), u = T.firstChild, u.textContent = "";
2644
+ r.merge(y, u.childNodes), u = T.firstChild, u.textContent = "";
2656
2645
  }
2657
- for (T.textContent = "", S = 0; s = m[S++]; ) {
2658
- if (n && r.inArray(s, n) > -1) {
2659
- o && o.push(s);
2646
+ for (T.textContent = "", S = 0; o = y[S++]; ) {
2647
+ if (n && r.inArray(o, n) > -1) {
2648
+ s && s.push(o);
2660
2649
  continue;
2661
2650
  }
2662
- if (h = Ve(s), u = le(T.appendChild(s), "script"), h && Nt(u), i)
2663
- for (x = 0; s = u[x++]; )
2664
- ci.test(s.type || "") && i.push(s);
2651
+ if (h = Ve(o), u = fe(T.appendChild(o), "script"), h && Nt(u), i)
2652
+ for (x = 0; o = u[x++]; )
2653
+ ci.test(o.type || "") && i.push(o);
2665
2654
  }
2666
2655
  return T;
2667
2656
  }
@@ -2672,74 +2661,74 @@ function Cr() {
2672
2661
  function ze() {
2673
2662
  return !1;
2674
2663
  }
2675
- function Lt(e, t, i, n, o, s) {
2664
+ function Lt(e, t, i, n, s, o) {
2676
2665
  var u, c;
2677
2666
  if (typeof t == "object") {
2678
2667
  typeof i != "string" && (n = n || i, i = void 0);
2679
2668
  for (c in t)
2680
- Lt(e, c, i, n, t[c], s);
2669
+ Lt(e, c, i, n, t[c], o);
2681
2670
  return e;
2682
2671
  }
2683
- if (n == null && o == null ? (o = i, n = i = void 0) : o == null && (typeof i == "string" ? (o = n, n = void 0) : (o = n, n = i, i = void 0)), o === !1)
2684
- o = ze;
2685
- else if (!o)
2672
+ if (n == null && s == null ? (s = i, n = i = void 0) : s == null && (typeof i == "string" ? (s = n, n = void 0) : (s = n, n = i, i = void 0)), s === !1)
2673
+ s = ze;
2674
+ else if (!s)
2686
2675
  return e;
2687
- return s === 1 && (u = o, o = function(f) {
2688
- return r().off(f), u.apply(this, arguments);
2689
- }, o.guid = u.guid || (u.guid = r.guid++)), e.each(function() {
2690
- r.event.add(this, t, o, n, i);
2676
+ return o === 1 && (u = s, s = function(l) {
2677
+ return r().off(l), u.apply(this, arguments);
2678
+ }, s.guid = u.guid || (u.guid = r.guid++)), e.each(function() {
2679
+ r.event.add(this, t, s, n, i);
2691
2680
  });
2692
2681
  }
2693
2682
  r.event = {
2694
2683
  global: {},
2695
- add: function(e, t, i, n, o) {
2696
- var s, u, c, f, h, x, T, m, S, P, z, _ = I.get(e);
2684
+ add: function(e, t, i, n, s) {
2685
+ var o, u, c, l, h, x, T, y, S, P, z, _ = I.get(e);
2697
2686
  if (et(e))
2698
- for (i.handler && (s = i, i = s.handler, o = s.selector), o && r.find.matchesSelector(je, o), i.guid || (i.guid = r.guid++), (f = _.events) || (f = _.events = /* @__PURE__ */ Object.create(null)), (u = _.handle) || (u = _.handle = function(oe) {
2699
- return typeof r < "u" && r.event.triggered !== oe.type ? r.event.dispatch.apply(e, arguments) : void 0;
2687
+ for (i.handler && (o = i, i = o.handler, s = o.selector), s && r.find.matchesSelector(Me, s), i.guid || (i.guid = r.guid++), (l = _.events) || (l = _.events = /* @__PURE__ */ Object.create(null)), (u = _.handle) || (u = _.handle = function(se) {
2688
+ return typeof r < "u" && r.event.triggered !== se.type ? r.event.dispatch.apply(e, arguments) : void 0;
2700
2689
  }), t = (t || "").match(ve) || [""], h = t.length; h--; )
2701
- c = hi.exec(t[h]) || [], S = z = c[1], P = (c[2] || "").split(".").sort(), S && (T = r.event.special[S] || {}, S = (o ? T.delegateType : T.bindType) || S, T = r.event.special[S] || {}, x = r.extend({
2690
+ c = hi.exec(t[h]) || [], S = z = c[1], P = (c[2] || "").split(".").sort(), S && (T = r.event.special[S] || {}, S = (s ? T.delegateType : T.bindType) || S, T = r.event.special[S] || {}, x = r.extend({
2702
2691
  type: S,
2703
2692
  origType: z,
2704
2693
  data: n,
2705
2694
  handler: i,
2706
2695
  guid: i.guid,
2707
- selector: o,
2708
- needsContext: o && r.expr.match.needsContext.test(o),
2696
+ selector: s,
2697
+ needsContext: s && r.expr.match.needsContext.test(s),
2709
2698
  namespace: P.join(".")
2710
- }, s), (m = f[S]) || (m = f[S] = [], m.delegateCount = 0, (!T.setup || T.setup.call(e, n, P, u) === !1) && e.addEventListener && e.addEventListener(S, u)), T.add && (T.add.call(e, x), x.handler.guid || (x.handler.guid = i.guid)), o ? m.splice(m.delegateCount++, 0, x) : m.push(x), r.event.global[S] = !0);
2699
+ }, o), (y = l[S]) || (y = l[S] = [], y.delegateCount = 0, (!T.setup || T.setup.call(e, n, P, u) === !1) && e.addEventListener && e.addEventListener(S, u)), T.add && (T.add.call(e, x), x.handler.guid || (x.handler.guid = i.guid)), s ? y.splice(y.delegateCount++, 0, x) : y.push(x), r.event.global[S] = !0);
2711
2700
  },
2712
2701
  // Detach an event or set of events from an element
2713
- remove: function(e, t, i, n, o) {
2714
- var s, u, c, f, h, x, T, m, S, P, z, _ = I.hasData(e) && I.get(e);
2715
- if (!(!_ || !(f = _.events))) {
2702
+ remove: function(e, t, i, n, s) {
2703
+ var o, u, c, l, h, x, T, y, S, P, z, _ = I.hasData(e) && I.get(e);
2704
+ if (!(!_ || !(l = _.events))) {
2716
2705
  for (t = (t || "").match(ve) || [""], h = t.length; h--; ) {
2717
2706
  if (c = hi.exec(t[h]) || [], S = z = c[1], P = (c[2] || "").split(".").sort(), !S) {
2718
- for (S in f)
2707
+ for (S in l)
2719
2708
  r.event.remove(e, S + t[h], i, n, !0);
2720
2709
  continue;
2721
2710
  }
2722
- for (T = r.event.special[S] || {}, S = (n ? T.delegateType : T.bindType) || S, m = f[S] || [], c = c[2] && new RegExp("(^|\\.)" + P.join("\\.(?:.*\\.|)") + "(\\.|$)"), u = s = m.length; s--; )
2723
- x = m[s], (o || z === x.origType) && (!i || i.guid === x.guid) && (!c || c.test(x.namespace)) && (!n || n === x.selector || n === "**" && x.selector) && (m.splice(s, 1), x.selector && m.delegateCount--, T.remove && T.remove.call(e, x));
2724
- u && !m.length && ((!T.teardown || T.teardown.call(e, P, _.handle) === !1) && r.removeEvent(e, S, _.handle), delete f[S]);
2711
+ for (T = r.event.special[S] || {}, S = (n ? T.delegateType : T.bindType) || S, y = l[S] || [], c = c[2] && new RegExp("(^|\\.)" + P.join("\\.(?:.*\\.|)") + "(\\.|$)"), u = o = y.length; o--; )
2712
+ x = y[o], (s || z === x.origType) && (!i || i.guid === x.guid) && (!c || c.test(x.namespace)) && (!n || n === x.selector || n === "**" && x.selector) && (y.splice(o, 1), x.selector && y.delegateCount--, T.remove && T.remove.call(e, x));
2713
+ u && !y.length && ((!T.teardown || T.teardown.call(e, P, _.handle) === !1) && r.removeEvent(e, S, _.handle), delete l[S]);
2725
2714
  }
2726
- r.isEmptyObject(f) && I.remove(e, "handle events");
2715
+ r.isEmptyObject(l) && I.remove(e, "handle events");
2727
2716
  }
2728
2717
  },
2729
2718
  dispatch: function(e) {
2730
- var t, i, n, o, s, u, c = new Array(arguments.length), f = r.event.fix(e), h = (I.get(this, "events") || /* @__PURE__ */ Object.create(null))[f.type] || [], x = r.event.special[f.type] || {};
2731
- for (c[0] = f, t = 1; t < arguments.length; t++)
2719
+ var t, i, n, s, o, u, c = new Array(arguments.length), l = r.event.fix(e), h = (I.get(this, "events") || /* @__PURE__ */ Object.create(null))[l.type] || [], x = r.event.special[l.type] || {};
2720
+ for (c[0] = l, t = 1; t < arguments.length; t++)
2732
2721
  c[t] = arguments[t];
2733
- if (f.delegateTarget = this, !(x.preDispatch && x.preDispatch.call(this, f) === !1)) {
2734
- for (u = r.event.handlers.call(this, f, h), t = 0; (o = u[t++]) && !f.isPropagationStopped(); )
2735
- for (f.currentTarget = o.elem, i = 0; (s = o.handlers[i++]) && !f.isImmediatePropagationStopped(); )
2736
- (!f.rnamespace || s.namespace === !1 || f.rnamespace.test(s.namespace)) && (f.handleObj = s, f.data = s.data, n = ((r.event.special[s.origType] || {}).handle || s.handler).apply(o.elem, c), n !== void 0 && (f.result = n) === !1 && (f.preventDefault(), f.stopPropagation()));
2737
- return x.postDispatch && x.postDispatch.call(this, f), f.result;
2722
+ if (l.delegateTarget = this, !(x.preDispatch && x.preDispatch.call(this, l) === !1)) {
2723
+ for (u = r.event.handlers.call(this, l, h), t = 0; (s = u[t++]) && !l.isPropagationStopped(); )
2724
+ for (l.currentTarget = s.elem, i = 0; (o = s.handlers[i++]) && !l.isImmediatePropagationStopped(); )
2725
+ (!l.rnamespace || o.namespace === !1 || l.rnamespace.test(o.namespace)) && (l.handleObj = o, l.data = o.data, n = ((r.event.special[o.origType] || {}).handle || o.handler).apply(s.elem, c), n !== void 0 && (l.result = n) === !1 && (l.preventDefault(), l.stopPropagation()));
2726
+ return x.postDispatch && x.postDispatch.call(this, l), l.result;
2738
2727
  }
2739
2728
  },
2740
2729
  handlers: function(e, t) {
2741
- var i, n, o, s, u, c = [], f = t.delegateCount, h = e.target;
2742
- if (f && // Support: IE <=9
2730
+ var i, n, s, o, u, c = [], l = t.delegateCount, h = e.target;
2731
+ if (l && // Support: IE <=9
2743
2732
  // Black-hole SVG <use> instance trees (trac-13180)
2744
2733
  h.nodeType && // Support: Firefox <=42
2745
2734
  // Suppress spec-violating clicks indicating a non-primary pointer button (trac-3861)
@@ -2749,12 +2738,12 @@ function Cr() {
2749
2738
  !(e.type === "click" && e.button >= 1)) {
2750
2739
  for (; h !== this; h = h.parentNode || this)
2751
2740
  if (h.nodeType === 1 && !(e.type === "click" && h.disabled === !0)) {
2752
- for (s = [], u = {}, i = 0; i < f; i++)
2753
- n = t[i], o = n.selector + " ", u[o] === void 0 && (u[o] = n.needsContext ? r(o, this).index(h) > -1 : r.find(o, this, null, [h]).length), u[o] && s.push(n);
2754
- s.length && c.push({ elem: h, handlers: s });
2741
+ for (o = [], u = {}, i = 0; i < l; i++)
2742
+ n = t[i], s = n.selector + " ", u[s] === void 0 && (u[s] = n.needsContext ? r(s, this).index(h) > -1 : r.find(s, this, null, [h]).length), u[s] && o.push(n);
2743
+ o.length && c.push({ elem: h, handlers: o });
2755
2744
  }
2756
2745
  }
2757
- return h = this, f < t.length && c.push({ elem: h, handlers: t.slice(f) }), c;
2746
+ return h = this, l < t.length && c.push({ elem: h, handlers: t.slice(l) }), c;
2758
2747
  },
2759
2748
  addProp: function(e, t) {
2760
2749
  Object.defineProperty(r.Event.prototype, e, {
@@ -2817,15 +2806,15 @@ function Cr() {
2817
2806
  I.set(e, t, !1), r.event.add(e, t, {
2818
2807
  namespace: !1,
2819
2808
  handler: function(n) {
2820
- var o, s = I.get(this, t);
2809
+ var s, o = I.get(this, t);
2821
2810
  if (n.isTrigger & 1 && this[t]) {
2822
- if (s)
2811
+ if (o)
2823
2812
  (r.event.special[t] || {}).delegateType && n.stopPropagation();
2824
- else if (s = w.call(arguments), I.set(this, t, s), this[t](), o = I.get(this, t), I.set(this, t, !1), s !== o)
2825
- return n.stopImmediatePropagation(), n.preventDefault(), o;
2826
- } else s && (I.set(this, t, r.event.trigger(
2827
- s[0],
2828
- s.slice(1),
2813
+ else if (o = w.call(arguments), I.set(this, t, o), this[t](), s = I.get(this, t), I.set(this, t, !1), o !== s)
2814
+ return n.stopImmediatePropagation(), n.preventDefault(), s;
2815
+ } else o && (I.set(this, t, r.event.trigger(
2816
+ o[0],
2817
+ o.slice(1),
2829
2818
  this
2830
2819
  )), n.stopPropagation(), n.isImmediatePropagationStopped = $e);
2831
2820
  }
@@ -2891,8 +2880,8 @@ function Cr() {
2891
2880
  }, r.event.addProp), r.each({ focus: "focusin", blur: "focusout" }, function(e, t) {
2892
2881
  function i(n) {
2893
2882
  if (L.documentMode) {
2894
- var o = I.get(this, "handle"), s = r.event.fix(n);
2895
- s.type = n.type === "focusin" ? "focus" : "blur", s.isSimulated = !0, o(n), s.target === s.currentTarget && o(s);
2883
+ var s = I.get(this, "handle"), o = r.event.fix(n);
2884
+ o.type = n.type === "focusin" ? "focus" : "blur", o.isSimulated = !0, s(n), o.target === o.currentTarget && s(o);
2896
2885
  } else
2897
2886
  r.event.simulate(
2898
2887
  t,
@@ -2927,12 +2916,12 @@ function Cr() {
2927
2916
  delegateType: t
2928
2917
  }, r.event.special[t] = {
2929
2918
  setup: function() {
2930
- var n = this.ownerDocument || this.document || this, o = L.documentMode ? this : n, s = I.get(o, t);
2931
- s || (L.documentMode ? this.addEventListener(t, i) : n.addEventListener(e, i, !0)), I.set(o, t, (s || 0) + 1);
2919
+ var n = this.ownerDocument || this.document || this, s = L.documentMode ? this : n, o = I.get(s, t);
2920
+ o || (L.documentMode ? this.addEventListener(t, i) : n.addEventListener(e, i, !0)), I.set(s, t, (o || 0) + 1);
2932
2921
  },
2933
2922
  teardown: function() {
2934
- var n = this.ownerDocument || this.document || this, o = L.documentMode ? this : n, s = I.get(o, t) - 1;
2935
- s ? I.set(o, t, s) : (L.documentMode ? this.removeEventListener(t, i) : n.removeEventListener(e, i, !0), I.remove(o, t));
2923
+ var n = this.ownerDocument || this.document || this, s = L.documentMode ? this : n, o = I.get(s, t) - 1;
2924
+ o ? I.set(s, t, o) : (L.documentMode ? this.removeEventListener(t, i) : n.removeEventListener(e, i, !0), I.remove(s, t));
2936
2925
  }
2937
2926
  };
2938
2927
  }), r.each({
@@ -2945,8 +2934,8 @@ function Cr() {
2945
2934
  delegateType: t,
2946
2935
  bindType: t,
2947
2936
  handle: function(i) {
2948
- var n, o = this, s = i.relatedTarget, u = i.handleObj;
2949
- return (!s || s !== o && !r.contains(o, s)) && (i.type = u.origType, n = u.handler.apply(this, arguments), i.type = t), n;
2937
+ var n, s = this, o = i.relatedTarget, u = i.handleObj;
2938
+ return (!o || o !== s && !r.contains(s, o)) && (i.type = u.origType, n = u.handler.apply(this, arguments), i.type = t), n;
2950
2939
  }
2951
2940
  };
2952
2941
  }), r.fn.extend({
@@ -2957,7 +2946,7 @@ function Cr() {
2957
2946
  return Lt(this, e, t, i, n, 1);
2958
2947
  },
2959
2948
  off: function(e, t, i) {
2960
- var n, o;
2949
+ var n, s;
2961
2950
  if (e && e.preventDefault && e.handleObj)
2962
2951
  return n = e.handleObj, r(e.delegateTarget).off(
2963
2952
  n.namespace ? n.origType + "." + n.namespace : n.origType,
@@ -2965,8 +2954,8 @@ function Cr() {
2965
2954
  n.handler
2966
2955
  ), this;
2967
2956
  if (typeof e == "object") {
2968
- for (o in e)
2969
- this.off(o, t, e[o]);
2957
+ for (s in e)
2958
+ this.off(s, t, e[s]);
2970
2959
  return this;
2971
2960
  }
2972
2961
  return (t === !1 || typeof t == "function") && (i = t, t = void 0), i === !1 && (i = ze), this.each(function() {
@@ -2974,54 +2963,54 @@ function Cr() {
2974
2963
  });
2975
2964
  }
2976
2965
  });
2977
- var cn = /<script|<style|<link/i, dn = /checked\s*(?:[^=]|=\s*.checked.)/i, hn = /^\s*<!\[CDATA\[|\]\]>\s*$/g;
2966
+ var ln = /<script|<style|<link/i, cn = /checked\s*(?:[^=]|=\s*.checked.)/i, dn = /^\s*<!\[CDATA\[|\]\]>\s*$/g;
2978
2967
  function pi(e, t) {
2979
2968
  return K(e, "table") && K(t.nodeType !== 11 ? t : t.firstChild, "tr") && r(e).children("tbody")[0] || e;
2980
2969
  }
2981
- function pn(e) {
2970
+ function hn(e) {
2982
2971
  return e.type = (e.getAttribute("type") !== null) + "/" + e.type, e;
2983
2972
  }
2984
- function gn(e) {
2973
+ function pn(e) {
2985
2974
  return (e.type || "").slice(0, 5) === "true/" ? e.type = e.type.slice(5) : e.removeAttribute("type"), e;
2986
2975
  }
2987
2976
  function gi(e, t) {
2988
- var i, n, o, s, u, c, f;
2977
+ var i, n, s, o, u, c, l;
2989
2978
  if (t.nodeType === 1) {
2990
- if (I.hasData(e) && (s = I.get(e), f = s.events, f)) {
2979
+ if (I.hasData(e) && (o = I.get(e), l = o.events, l)) {
2991
2980
  I.remove(t, "handle events");
2992
- for (o in f)
2993
- for (i = 0, n = f[o].length; i < n; i++)
2994
- r.event.add(t, o, f[o][i]);
2981
+ for (s in l)
2982
+ for (i = 0, n = l[s].length; i < n; i++)
2983
+ r.event.add(t, s, l[s][i]);
2995
2984
  }
2996
2985
  ue.hasData(e) && (u = ue.access(e), c = r.extend({}, u), ue.set(t, c));
2997
2986
  }
2998
2987
  }
2999
- function yn(e, t) {
2988
+ function gn(e, t) {
3000
2989
  var i = t.nodeName.toLowerCase();
3001
2990
  i === "input" && nt.test(e.type) ? t.checked = e.checked : (i === "input" || i === "textarea") && (t.defaultValue = e.defaultValue);
3002
2991
  }
3003
2992
  function Xe(e, t, i, n) {
3004
- t = D(t);
3005
- var o, s, u, c, f, h, x = 0, T = e.length, m = T - 1, S = t[0], P = W(S);
3006
- if (P || T > 1 && typeof S == "string" && !j.checkClone && dn.test(S))
2993
+ t = A(t);
2994
+ var s, o, u, c, l, h, x = 0, T = e.length, y = T - 1, S = t[0], P = W(S);
2995
+ if (P || T > 1 && typeof S == "string" && !M.checkClone && cn.test(S))
3007
2996
  return e.each(function(z) {
3008
2997
  var _ = e.eq(z);
3009
2998
  P && (t[0] = S.call(this, z, _.html())), Xe(_, t, i, n);
3010
2999
  });
3011
- if (T && (o = di(t, e[0].ownerDocument, !1, e, n), s = o.firstChild, o.childNodes.length === 1 && (o = s), s || n)) {
3012
- for (u = r.map(le(o, "script"), pn), c = u.length; x < T; x++)
3013
- f = o, x !== m && (f = r.clone(f, !0, !0), c && r.merge(u, le(f, "script"))), i.call(e[x], f, x);
3000
+ if (T && (s = di(t, e[0].ownerDocument, !1, e, n), o = s.firstChild, s.childNodes.length === 1 && (s = o), o || n)) {
3001
+ for (u = r.map(fe(s, "script"), hn), c = u.length; x < T; x++)
3002
+ l = s, x !== y && (l = r.clone(l, !0, !0), c && r.merge(u, fe(l, "script"))), i.call(e[x], l, x);
3014
3003
  if (c)
3015
- for (h = u[u.length - 1].ownerDocument, r.map(u, gn), x = 0; x < c; x++)
3016
- f = u[x], ci.test(f.type || "") && !I.access(f, "globalEval") && r.contains(h, f) && (f.src && (f.type || "").toLowerCase() !== "module" ? r._evalUrl && !f.noModule && r._evalUrl(f.src, {
3017
- nonce: f.nonce || f.getAttribute("nonce")
3018
- }, h) : Ke(f.textContent.replace(hn, ""), f, h));
3004
+ for (h = u[u.length - 1].ownerDocument, r.map(u, pn), x = 0; x < c; x++)
3005
+ l = u[x], ci.test(l.type || "") && !I.access(l, "globalEval") && r.contains(h, l) && (l.src && (l.type || "").toLowerCase() !== "module" ? r._evalUrl && !l.noModule && r._evalUrl(l.src, {
3006
+ nonce: l.nonce || l.getAttribute("nonce")
3007
+ }, h) : Ke(l.textContent.replace(dn, ""), l, h));
3019
3008
  }
3020
3009
  return e;
3021
3010
  }
3022
3011
  function yi(e, t, i) {
3023
- for (var n, o = t ? r.filter(t, e) : e, s = 0; (n = o[s]) != null; s++)
3024
- !i && n.nodeType === 1 && r.cleanData(le(n)), n.parentNode && (i && Ve(n) && Nt(le(n, "script")), n.parentNode.removeChild(n));
3012
+ for (var n, s = t ? r.filter(t, e) : e, o = 0; (n = s[o]) != null; o++)
3013
+ !i && n.nodeType === 1 && r.cleanData(fe(n)), n.parentNode && (i && Ve(n) && Nt(fe(n, "script")), n.parentNode.removeChild(n));
3025
3014
  return e;
3026
3015
  }
3027
3016
  r.extend({
@@ -3029,25 +3018,25 @@ function Cr() {
3029
3018
  return e;
3030
3019
  },
3031
3020
  clone: function(e, t, i) {
3032
- var n, o, s, u, c = e.cloneNode(!0), f = Ve(e);
3033
- if (!j.noCloneChecked && (e.nodeType === 1 || e.nodeType === 11) && !r.isXMLDoc(e))
3034
- for (u = le(c), s = le(e), n = 0, o = s.length; n < o; n++)
3035
- yn(s[n], u[n]);
3021
+ var n, s, o, u, c = e.cloneNode(!0), l = Ve(e);
3022
+ if (!M.noCloneChecked && (e.nodeType === 1 || e.nodeType === 11) && !r.isXMLDoc(e))
3023
+ for (u = fe(c), o = fe(e), n = 0, s = o.length; n < s; n++)
3024
+ gn(o[n], u[n]);
3036
3025
  if (t)
3037
3026
  if (i)
3038
- for (s = s || le(e), u = u || le(c), n = 0, o = s.length; n < o; n++)
3039
- gi(s[n], u[n]);
3027
+ for (o = o || fe(e), u = u || fe(c), n = 0, s = o.length; n < s; n++)
3028
+ gi(o[n], u[n]);
3040
3029
  else
3041
3030
  gi(e, c);
3042
- return u = le(c, "script"), u.length > 0 && Nt(u, !f && le(e, "script")), c;
3031
+ return u = fe(c, "script"), u.length > 0 && Nt(u, !l && fe(e, "script")), c;
3043
3032
  },
3044
3033
  cleanData: function(e) {
3045
- for (var t, i, n, o = r.event.special, s = 0; (i = e[s]) !== void 0; s++)
3034
+ for (var t, i, n, s = r.event.special, o = 0; (i = e[o]) !== void 0; o++)
3046
3035
  if (et(i)) {
3047
3036
  if (t = i[I.expando]) {
3048
3037
  if (t.events)
3049
3038
  for (n in t.events)
3050
- o[n] ? r.event.remove(i, n) : r.removeEvent(i, n, t.handle);
3039
+ s[n] ? r.event.remove(i, n) : r.removeEvent(i, n, t.handle);
3051
3040
  i[I.expando] = void 0;
3052
3041
  }
3053
3042
  i[ue.expando] && (i[ue.expando] = void 0);
@@ -3095,7 +3084,7 @@ function Cr() {
3095
3084
  },
3096
3085
  empty: function() {
3097
3086
  for (var e, t = 0; (e = this[t]) != null; t++)
3098
- e.nodeType === 1 && (r.cleanData(le(e, !1)), e.textContent = "");
3087
+ e.nodeType === 1 && (r.cleanData(fe(e, !1)), e.textContent = "");
3099
3088
  return this;
3100
3089
  },
3101
3090
  clone: function(e, t) {
@@ -3105,14 +3094,14 @@ function Cr() {
3105
3094
  },
3106
3095
  html: function(e) {
3107
3096
  return Ee(this, function(t) {
3108
- var i = this[0] || {}, n = 0, o = this.length;
3097
+ var i = this[0] || {}, n = 0, s = this.length;
3109
3098
  if (t === void 0 && i.nodeType === 1)
3110
3099
  return i.innerHTML;
3111
- if (typeof t == "string" && !cn.test(t) && !he[(fi.exec(t) || ["", ""])[1].toLowerCase()]) {
3100
+ if (typeof t == "string" && !ln.test(t) && !he[(li.exec(t) || ["", ""])[1].toLowerCase()]) {
3112
3101
  t = r.htmlPrefilter(t);
3113
3102
  try {
3114
- for (; n < o; n++)
3115
- i = this[n] || {}, i.nodeType === 1 && (r.cleanData(le(i, !1)), i.innerHTML = t);
3103
+ for (; n < s; n++)
3104
+ i = this[n] || {}, i.nodeType === 1 && (r.cleanData(fe(i, !1)), i.innerHTML = t);
3116
3105
  i = 0;
3117
3106
  } catch {
3118
3107
  }
@@ -3124,7 +3113,7 @@ function Cr() {
3124
3113
  var e = [];
3125
3114
  return Xe(this, arguments, function(t) {
3126
3115
  var i = this.parentNode;
3127
- r.inArray(this, e) < 0 && (r.cleanData(le(this)), i && i.replaceChild(t, this));
3116
+ r.inArray(this, e) < 0 && (r.cleanData(fe(this)), i && i.replaceChild(t, this));
3128
3117
  }, e);
3129
3118
  }
3130
3119
  }), r.each({
@@ -3135,41 +3124,41 @@ function Cr() {
3135
3124
  replaceAll: "replaceWith"
3136
3125
  }, function(e, t) {
3137
3126
  r.fn[e] = function(i) {
3138
- for (var n, o = [], s = r(i), u = s.length - 1, c = 0; c <= u; c++)
3139
- n = c === u ? this : this.clone(!0), r(s[c])[t](n), $.apply(o, n.get());
3140
- return this.pushStack(o);
3127
+ for (var n, s = [], o = r(i), u = o.length - 1, c = 0; c <= u; c++)
3128
+ n = c === u ? this : this.clone(!0), r(o[c])[t](n), $.apply(s, n.get());
3129
+ return this.pushStack(s);
3141
3130
  };
3142
3131
  });
3143
3132
  var It = new RegExp("^(" + ai + ")(?!px)[a-z%]+$", "i"), qt = /^--/, mt = function(e) {
3144
3133
  var t = e.ownerDocument.defaultView;
3145
3134
  return (!t || !t.opener) && (t = a), t.getComputedStyle(e);
3146
3135
  }, mi = function(e, t, i) {
3147
- var n, o, s = {};
3148
- for (o in t)
3149
- s[o] = e.style[o], e.style[o] = t[o];
3136
+ var n, s, o = {};
3137
+ for (s in t)
3138
+ o[s] = e.style[s], e.style[s] = t[s];
3150
3139
  n = i.call(e);
3151
- for (o in t)
3152
- e.style[o] = s[o];
3140
+ for (s in t)
3141
+ e.style[s] = o[s];
3153
3142
  return n;
3154
- }, mn = new RegExp(Ae.join("|"), "i");
3143
+ }, yn = new RegExp(De.join("|"), "i");
3155
3144
  (function() {
3156
3145
  function e() {
3157
3146
  if (h) {
3158
- f.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0", h.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%", je.appendChild(f).appendChild(h);
3147
+ l.style.cssText = "position:absolute;left:-11111px;width:60px;margin-top:1px;padding:0;border:0", h.style.cssText = "position:relative;display:block;box-sizing:border-box;overflow:scroll;margin:auto;border:1px;padding:1px;width:60%;top:1%", Me.appendChild(l).appendChild(h);
3159
3148
  var x = a.getComputedStyle(h);
3160
- i = x.top !== "1%", c = t(x.marginLeft) === 12, h.style.right = "60%", s = t(x.right) === 36, n = t(x.width) === 36, h.style.position = "absolute", o = t(h.offsetWidth / 3) === 12, je.removeChild(f), h = null;
3149
+ i = x.top !== "1%", c = t(x.marginLeft) === 12, h.style.right = "60%", o = t(x.right) === 36, n = t(x.width) === 36, h.style.position = "absolute", s = t(h.offsetWidth / 3) === 12, Me.removeChild(l), h = null;
3161
3150
  }
3162
3151
  }
3163
3152
  function t(x) {
3164
3153
  return Math.round(parseFloat(x));
3165
3154
  }
3166
- var i, n, o, s, u, c, f = L.createElement("div"), h = L.createElement("div");
3167
- h.style && (h.style.backgroundClip = "content-box", h.cloneNode(!0).style.backgroundClip = "", j.clearCloneStyle = h.style.backgroundClip === "content-box", r.extend(j, {
3155
+ var i, n, s, o, u, c, l = L.createElement("div"), h = L.createElement("div");
3156
+ h.style && (h.style.backgroundClip = "content-box", h.cloneNode(!0).style.backgroundClip = "", M.clearCloneStyle = h.style.backgroundClip === "content-box", r.extend(M, {
3168
3157
  boxSizingReliable: function() {
3169
3158
  return e(), n;
3170
3159
  },
3171
3160
  pixelBoxStyles: function() {
3172
- return e(), s;
3161
+ return e(), o;
3173
3162
  },
3174
3163
  pixelPosition: function() {
3175
3164
  return e(), i;
@@ -3178,7 +3167,7 @@ function Cr() {
3178
3167
  return e(), c;
3179
3168
  },
3180
3169
  scrollboxSize: function() {
3181
- return e(), o;
3170
+ return e(), s;
3182
3171
  },
3183
3172
  // Support: IE 9 - 11+, Edge 15 - 18+
3184
3173
  // IE/Edge misreport `getComputedStyle` of table rows with width/height
@@ -3190,14 +3179,14 @@ function Cr() {
3190
3179
  // Only Firefox includes border widths
3191
3180
  // in computed dimensions. (gh-4529)
3192
3181
  reliableTrDimensions: function() {
3193
- var x, T, m, S;
3194
- return u == null && (x = L.createElement("table"), T = L.createElement("tr"), m = L.createElement("div"), x.style.cssText = "position:absolute;left:-11111px;border-collapse:separate", T.style.cssText = "box-sizing:content-box;border:1px solid", T.style.height = "1px", m.style.height = "9px", m.style.display = "block", je.appendChild(x).appendChild(T).appendChild(m), S = a.getComputedStyle(T), u = parseInt(S.height, 10) + parseInt(S.borderTopWidth, 10) + parseInt(S.borderBottomWidth, 10) === T.offsetHeight, je.removeChild(x)), u;
3182
+ var x, T, y, S;
3183
+ return u == null && (x = L.createElement("table"), T = L.createElement("tr"), y = L.createElement("div"), x.style.cssText = "position:absolute;left:-11111px;border-collapse:separate", T.style.cssText = "box-sizing:content-box;border:1px solid", T.style.height = "1px", y.style.height = "9px", y.style.display = "block", Me.appendChild(x).appendChild(T).appendChild(y), S = a.getComputedStyle(T), u = parseInt(S.height, 10) + parseInt(S.borderTopWidth, 10) + parseInt(S.borderBottomWidth, 10) === T.offsetHeight, Me.removeChild(x)), u;
3195
3184
  }
3196
3185
  }));
3197
3186
  })();
3198
3187
  function rt(e, t, i) {
3199
- var n, o, s, u, c = qt.test(t), f = e.style;
3200
- return i = i || mt(e), i && (u = i.getPropertyValue(t) || i[t], c && u && (u = u.replace(Ze, "$1") || void 0), u === "" && !Ve(e) && (u = r.style(e, t)), !j.pixelBoxStyles() && It.test(u) && mn.test(t) && (n = f.width, o = f.minWidth, s = f.maxWidth, f.minWidth = f.maxWidth = f.width = u, u = i.width, f.width = n, f.minWidth = o, f.maxWidth = s)), u !== void 0 ? (
3188
+ var n, s, o, u, c = qt.test(t), l = e.style;
3189
+ return i = i || mt(e), i && (u = i.getPropertyValue(t) || i[t], c && u && (u = u.replace(Ze, "$1") || void 0), u === "" && !Ve(e) && (u = r.style(e, t)), !M.pixelBoxStyles() && It.test(u) && yn.test(t) && (n = l.width, s = l.minWidth, o = l.maxWidth, l.minWidth = l.maxWidth = l.width = u, u = i.width, l.width = n, l.minWidth = s, l.maxWidth = o)), u !== void 0 ? (
3201
3190
  // Support: IE <=9 - 11 only
3202
3191
  // IE returns zIndex value as an integer.
3203
3192
  u + ""
@@ -3215,16 +3204,16 @@ function Cr() {
3215
3204
  };
3216
3205
  }
3217
3206
  var xi = ["Webkit", "Moz", "ms"], bi = L.createElement("div").style, Ti = {};
3218
- function vn(e) {
3207
+ function mn(e) {
3219
3208
  for (var t = e[0].toUpperCase() + e.slice(1), i = xi.length; i--; )
3220
3209
  if (e = xi[i] + t, e in bi)
3221
3210
  return e;
3222
3211
  }
3223
- function Mt(e) {
3212
+ function jt(e) {
3224
3213
  var t = r.cssProps[e] || Ti[e];
3225
- return t || (e in bi ? e : Ti[e] = vn(e) || e);
3214
+ return t || (e in bi ? e : Ti[e] = mn(e) || e);
3226
3215
  }
3227
- var xn = /^(none|table(?!-c[ea]).+)/, bn = { position: "absolute", visibility: "hidden", display: "block" }, wi = {
3216
+ var vn = /^(none|table(?!-c[ea]).+)/, xn = { position: "absolute", visibility: "hidden", display: "block" }, wi = {
3228
3217
  letterSpacing: "0",
3229
3218
  fontWeight: "400"
3230
3219
  };
@@ -3235,38 +3224,38 @@ function Cr() {
3235
3224
  Math.max(0, n[2] - (i || 0)) + (n[3] || "px")
3236
3225
  ) : t;
3237
3226
  }
3238
- function jt(e, t, i, n, o, s) {
3239
- var u = t === "width" ? 1 : 0, c = 0, f = 0, h = 0;
3227
+ function Mt(e, t, i, n, s, o) {
3228
+ var u = t === "width" ? 1 : 0, c = 0, l = 0, h = 0;
3240
3229
  if (i === (n ? "border" : "content"))
3241
3230
  return 0;
3242
3231
  for (; u < 4; u += 2)
3243
- i === "margin" && (h += r.css(e, i + Ae[u], !0, o)), n ? (i === "content" && (f -= r.css(e, "padding" + Ae[u], !0, o)), i !== "margin" && (f -= r.css(e, "border" + Ae[u] + "Width", !0, o))) : (f += r.css(e, "padding" + Ae[u], !0, o), i !== "padding" ? f += r.css(e, "border" + Ae[u] + "Width", !0, o) : c += r.css(e, "border" + Ae[u] + "Width", !0, o));
3244
- return !n && s >= 0 && (f += Math.max(0, Math.ceil(
3245
- e["offset" + t[0].toUpperCase() + t.slice(1)] - s - f - c - 0.5
3232
+ i === "margin" && (h += r.css(e, i + De[u], !0, s)), n ? (i === "content" && (l -= r.css(e, "padding" + De[u], !0, s)), i !== "margin" && (l -= r.css(e, "border" + De[u] + "Width", !0, s))) : (l += r.css(e, "padding" + De[u], !0, s), i !== "padding" ? l += r.css(e, "border" + De[u] + "Width", !0, s) : c += r.css(e, "border" + De[u] + "Width", !0, s));
3233
+ return !n && o >= 0 && (l += Math.max(0, Math.ceil(
3234
+ e["offset" + t[0].toUpperCase() + t.slice(1)] - o - l - c - 0.5
3246
3235
  // If offsetWidth/offsetHeight is unknown, then we can't determine content-box scroll gutter
3247
3236
  // Use an explicit zero to avoid NaN (gh-3964)
3248
- )) || 0), f + h;
3237
+ )) || 0), l + h;
3249
3238
  }
3250
3239
  function Ci(e, t, i) {
3251
- var n = mt(e), o = !j.boxSizingReliable() || i, s = o && r.css(e, "boxSizing", !1, n) === "border-box", u = s, c = rt(e, t, n), f = "offset" + t[0].toUpperCase() + t.slice(1);
3240
+ var n = mt(e), s = !M.boxSizingReliable() || i, o = s && r.css(e, "boxSizing", !1, n) === "border-box", u = o, c = rt(e, t, n), l = "offset" + t[0].toUpperCase() + t.slice(1);
3252
3241
  if (It.test(c)) {
3253
3242
  if (!i)
3254
3243
  return c;
3255
3244
  c = "auto";
3256
3245
  }
3257
- return (!j.boxSizingReliable() && s || // Support: IE 10 - 11+, Edge 15 - 18+
3246
+ return (!M.boxSizingReliable() && o || // Support: IE 10 - 11+, Edge 15 - 18+
3258
3247
  // IE/Edge misreport `getComputedStyle` of table rows with width/height
3259
3248
  // set in CSS while `offset*` properties report correct values.
3260
3249
  // Interestingly, in some cases IE 9 doesn't suffer from this issue.
3261
- !j.reliableTrDimensions() && K(e, "tr") || // Fall back to offsetWidth/offsetHeight when value is "auto"
3250
+ !M.reliableTrDimensions() && K(e, "tr") || // Fall back to offsetWidth/offsetHeight when value is "auto"
3262
3251
  // This happens for inline elements with no explicit setting (gh-3571)
3263
3252
  c === "auto" || // Support: Android <=4.1 - 4.3 only
3264
3253
  // Also use offsetWidth/offsetHeight for misreported inline dimensions (gh-3602)
3265
3254
  !parseFloat(c) && r.css(e, "display", !1, n) === "inline") && // Make sure the element is visible & connected
3266
- e.getClientRects().length && (s = r.css(e, "boxSizing", !1, n) === "border-box", u = f in e, u && (c = e[f])), c = parseFloat(c) || 0, c + jt(
3255
+ e.getClientRects().length && (o = r.css(e, "boxSizing", !1, n) === "border-box", u = l in e, u && (c = e[l])), c = parseFloat(c) || 0, c + Mt(
3267
3256
  e,
3268
3257
  t,
3269
- i || (s ? "border" : "content"),
3258
+ i || (o ? "border" : "content"),
3270
3259
  u,
3271
3260
  n,
3272
3261
  // Provide the current computed size to request scroll gutter calculation (gh-3589)
@@ -3323,48 +3312,48 @@ function Cr() {
3323
3312
  // Get and set the style property on a DOM Node
3324
3313
  style: function(e, t, i, n) {
3325
3314
  if (!(!e || e.nodeType === 3 || e.nodeType === 8 || !e.style)) {
3326
- var o, s, u, c = xe(t), f = qt.test(t), h = e.style;
3327
- if (f || (t = Mt(c)), u = r.cssHooks[t] || r.cssHooks[c], i !== void 0) {
3328
- if (s = typeof i, s === "string" && (o = it.exec(i)) && o[1] && (i = ui(e, t, o), s = "number"), i == null || i !== i)
3315
+ var s, o, u, c = xe(t), l = qt.test(t), h = e.style;
3316
+ if (l || (t = jt(c)), u = r.cssHooks[t] || r.cssHooks[c], i !== void 0) {
3317
+ if (o = typeof i, o === "string" && (s = it.exec(i)) && s[1] && (i = ui(e, t, s), o = "number"), i == null || i !== i)
3329
3318
  return;
3330
- s === "number" && !f && (i += o && o[3] || (r.cssNumber[c] ? "" : "px")), !j.clearCloneStyle && i === "" && t.indexOf("background") === 0 && (h[t] = "inherit"), (!u || !("set" in u) || (i = u.set(e, i, n)) !== void 0) && (f ? h.setProperty(t, i) : h[t] = i);
3319
+ o === "number" && !l && (i += s && s[3] || (r.cssNumber[c] ? "" : "px")), !M.clearCloneStyle && i === "" && t.indexOf("background") === 0 && (h[t] = "inherit"), (!u || !("set" in u) || (i = u.set(e, i, n)) !== void 0) && (l ? h.setProperty(t, i) : h[t] = i);
3331
3320
  } else
3332
- return u && "get" in u && (o = u.get(e, !1, n)) !== void 0 ? o : h[t];
3321
+ return u && "get" in u && (s = u.get(e, !1, n)) !== void 0 ? s : h[t];
3333
3322
  }
3334
3323
  },
3335
3324
  css: function(e, t, i, n) {
3336
- var o, s, u, c = xe(t), f = qt.test(t);
3337
- return f || (t = Mt(c)), u = r.cssHooks[t] || r.cssHooks[c], u && "get" in u && (o = u.get(e, !0, i)), o === void 0 && (o = rt(e, t, n)), o === "normal" && t in wi && (o = wi[t]), i === "" || i ? (s = parseFloat(o), i === !0 || isFinite(s) ? s || 0 : o) : o;
3325
+ var s, o, u, c = xe(t), l = qt.test(t);
3326
+ return l || (t = jt(c)), u = r.cssHooks[t] || r.cssHooks[c], u && "get" in u && (s = u.get(e, !0, i)), s === void 0 && (s = rt(e, t, n)), s === "normal" && t in wi && (s = wi[t]), i === "" || i ? (o = parseFloat(s), i === !0 || isFinite(o) ? o || 0 : s) : s;
3338
3327
  }
3339
3328
  }), r.each(["height", "width"], function(e, t) {
3340
3329
  r.cssHooks[t] = {
3341
- get: function(i, n, o) {
3330
+ get: function(i, n, s) {
3342
3331
  if (n)
3343
- return xn.test(r.css(i, "display")) && // Support: Safari 8+
3332
+ return vn.test(r.css(i, "display")) && // Support: Safari 8+
3344
3333
  // Table columns in Safari have non-zero offsetWidth & zero
3345
3334
  // getBoundingClientRect().width unless display is changed.
3346
3335
  // Support: IE <=11 only
3347
3336
  // Running getBoundingClientRect on a disconnected node
3348
3337
  // in IE throws an error.
3349
- (!i.getClientRects().length || !i.getBoundingClientRect().width) ? mi(i, bn, function() {
3350
- return Ci(i, t, o);
3351
- }) : Ci(i, t, o);
3338
+ (!i.getClientRects().length || !i.getBoundingClientRect().width) ? mi(i, xn, function() {
3339
+ return Ci(i, t, s);
3340
+ }) : Ci(i, t, s);
3352
3341
  },
3353
- set: function(i, n, o) {
3354
- var s, u = mt(i), c = !j.scrollboxSize() && u.position === "absolute", f = c || o, h = f && r.css(i, "boxSizing", !1, u) === "border-box", x = o ? jt(
3342
+ set: function(i, n, s) {
3343
+ var o, u = mt(i), c = !M.scrollboxSize() && u.position === "absolute", l = c || s, h = l && r.css(i, "boxSizing", !1, u) === "border-box", x = s ? Mt(
3355
3344
  i,
3356
3345
  t,
3357
- o,
3346
+ s,
3358
3347
  h,
3359
3348
  u
3360
3349
  ) : 0;
3361
3350
  return h && c && (x -= Math.ceil(
3362
- i["offset" + t[0].toUpperCase() + t.slice(1)] - parseFloat(u[t]) - jt(i, t, "border", !1, u) - 0.5
3363
- )), x && (s = it.exec(n)) && (s[3] || "px") !== "px" && (i.style[t] = n, n = r.css(i, t)), Si(i, n, x);
3351
+ i["offset" + t[0].toUpperCase() + t.slice(1)] - parseFloat(u[t]) - Mt(i, t, "border", !1, u) - 0.5
3352
+ )), x && (o = it.exec(n)) && (o[3] || "px") !== "px" && (i.style[t] = n, n = r.css(i, t)), Si(i, n, x);
3364
3353
  }
3365
3354
  };
3366
3355
  }), r.cssHooks.marginLeft = vi(
3367
- j.reliableMarginLeft,
3356
+ M.reliableMarginLeft,
3368
3357
  function(e, t) {
3369
3358
  if (t)
3370
3359
  return (parseFloat(rt(e, "marginLeft")) || e.getBoundingClientRect().left - mi(e, { marginLeft: 0 }, function() {
@@ -3378,57 +3367,57 @@ function Cr() {
3378
3367
  }, function(e, t) {
3379
3368
  r.cssHooks[e + t] = {
3380
3369
  expand: function(i) {
3381
- for (var n = 0, o = {}, s = typeof i == "string" ? i.split(" ") : [i]; n < 4; n++)
3382
- o[e + Ae[n] + t] = s[n] || s[n - 2] || s[0];
3383
- return o;
3370
+ for (var n = 0, s = {}, o = typeof i == "string" ? i.split(" ") : [i]; n < 4; n++)
3371
+ s[e + De[n] + t] = o[n] || o[n - 2] || o[0];
3372
+ return s;
3384
3373
  }
3385
3374
  }, e !== "margin" && (r.cssHooks[e + t].set = Si);
3386
3375
  }), r.fn.extend({
3387
3376
  css: function(e, t) {
3388
- return Ee(this, function(i, n, o) {
3389
- var s, u, c = {}, f = 0;
3377
+ return Ee(this, function(i, n, s) {
3378
+ var o, u, c = {}, l = 0;
3390
3379
  if (Array.isArray(n)) {
3391
- for (s = mt(i), u = n.length; f < u; f++)
3392
- c[n[f]] = r.css(i, n[f], !1, s);
3380
+ for (o = mt(i), u = n.length; l < u; l++)
3381
+ c[n[l]] = r.css(i, n[l], !1, o);
3393
3382
  return c;
3394
3383
  }
3395
- return o !== void 0 ? r.style(i, n, o) : r.css(i, n);
3384
+ return s !== void 0 ? r.style(i, n, s) : r.css(i, n);
3396
3385
  }, e, t, arguments.length > 1);
3397
3386
  }
3398
3387
  });
3399
- function fe(e, t, i, n, o) {
3400
- return new fe.prototype.init(e, t, i, n, o);
3388
+ function le(e, t, i, n, s) {
3389
+ return new le.prototype.init(e, t, i, n, s);
3401
3390
  }
3402
- r.Tween = fe, fe.prototype = {
3403
- constructor: fe,
3404
- init: function(e, t, i, n, o, s) {
3405
- this.elem = e, this.prop = i, this.easing = o || r.easing._default, this.options = t, this.start = this.now = this.cur(), this.end = n, this.unit = s || (r.cssNumber[i] ? "" : "px");
3391
+ r.Tween = le, le.prototype = {
3392
+ constructor: le,
3393
+ init: function(e, t, i, n, s, o) {
3394
+ this.elem = e, this.prop = i, this.easing = s || r.easing._default, this.options = t, this.start = this.now = this.cur(), this.end = n, this.unit = o || (r.cssNumber[i] ? "" : "px");
3406
3395
  },
3407
3396
  cur: function() {
3408
- var e = fe.propHooks[this.prop];
3409
- return e && e.get ? e.get(this) : fe.propHooks._default.get(this);
3397
+ var e = le.propHooks[this.prop];
3398
+ return e && e.get ? e.get(this) : le.propHooks._default.get(this);
3410
3399
  },
3411
3400
  run: function(e) {
3412
- var t, i = fe.propHooks[this.prop];
3401
+ var t, i = le.propHooks[this.prop];
3413
3402
  return this.options.duration ? this.pos = t = r.easing[this.easing](
3414
3403
  e,
3415
3404
  this.options.duration * e,
3416
3405
  0,
3417
3406
  1,
3418
3407
  this.options.duration
3419
- ) : this.pos = t = e, this.now = (this.end - this.start) * t + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), i && i.set ? i.set(this) : fe.propHooks._default.set(this), this;
3408
+ ) : this.pos = t = e, this.now = (this.end - this.start) * t + this.start, this.options.step && this.options.step.call(this.elem, this.now, this), i && i.set ? i.set(this) : le.propHooks._default.set(this), this;
3420
3409
  }
3421
- }, fe.prototype.init.prototype = fe.prototype, fe.propHooks = {
3410
+ }, le.prototype.init.prototype = le.prototype, le.propHooks = {
3422
3411
  _default: {
3423
3412
  get: function(e) {
3424
3413
  var t;
3425
3414
  return e.elem.nodeType !== 1 || e.elem[e.prop] != null && e.elem.style[e.prop] == null ? e.elem[e.prop] : (t = r.css(e.elem, e.prop, ""), !t || t === "auto" ? 0 : t);
3426
3415
  },
3427
3416
  set: function(e) {
3428
- r.fx.step[e.prop] ? r.fx.step[e.prop](e) : e.elem.nodeType === 1 && (r.cssHooks[e.prop] || e.elem.style[Mt(e.prop)] != null) ? r.style(e.elem, e.prop, e.now + e.unit) : e.elem[e.prop] = e.now;
3417
+ r.fx.step[e.prop] ? r.fx.step[e.prop](e) : e.elem.nodeType === 1 && (r.cssHooks[e.prop] || e.elem.style[jt(e.prop)] != null) ? r.style(e.elem, e.prop, e.now + e.unit) : e.elem[e.prop] = e.now;
3429
3418
  }
3430
3419
  }
3431
- }, fe.propHooks.scrollTop = fe.propHooks.scrollLeft = {
3420
+ }, le.propHooks.scrollTop = le.propHooks.scrollLeft = {
3432
3421
  set: function(e) {
3433
3422
  e.elem.nodeType && e.elem.parentNode && (e.elem[e.prop] = e.now);
3434
3423
  }
@@ -3440,8 +3429,8 @@ function Cr() {
3440
3429
  return 0.5 - Math.cos(e * Math.PI) / 2;
3441
3430
  },
3442
3431
  _default: "swing"
3443
- }, r.fx = fe.prototype.init, r.fx.step = {};
3444
- var Ge, vt, Tn = /^(?:toggle|show|hide)$/, wn = /queueHooks$/;
3432
+ }, r.fx = le.prototype.init, r.fx.step = {};
3433
+ var Ge, vt, bn = /^(?:toggle|show|hide)$/, Tn = /queueHooks$/;
3445
3434
  function Ht() {
3446
3435
  vt && (L.hidden === !1 && a.requestAnimationFrame ? a.requestAnimationFrame(Ht) : a.setTimeout(Ht, r.fx.interval), r.fx.tick());
3447
3436
  }
@@ -3451,67 +3440,67 @@ function Cr() {
3451
3440
  }), Ge = Date.now();
3452
3441
  }
3453
3442
  function xt(e, t) {
3454
- var i, n = 0, o = { height: e };
3443
+ var i, n = 0, s = { height: e };
3455
3444
  for (t = t ? 1 : 0; n < 4; n += 2 - t)
3456
- i = Ae[n], o["margin" + i] = o["padding" + i] = e;
3457
- return t && (o.opacity = o.width = e), o;
3445
+ i = De[n], s["margin" + i] = s["padding" + i] = e;
3446
+ return t && (s.opacity = s.width = e), s;
3458
3447
  }
3459
3448
  function Ei(e, t, i) {
3460
- for (var n, o = (ye.tweeners[t] || []).concat(ye.tweeners["*"]), s = 0, u = o.length; s < u; s++)
3461
- if (n = o[s].call(i, t, e))
3449
+ for (var n, s = (ye.tweeners[t] || []).concat(ye.tweeners["*"]), o = 0, u = s.length; o < u; o++)
3450
+ if (n = s[o].call(i, t, e))
3462
3451
  return n;
3463
3452
  }
3464
- function Sn(e, t, i) {
3465
- var n, o, s, u, c, f, h, x, T = "width" in t || "height" in t, m = this, S = {}, P = e.style, z = e.nodeType && gt(e), _ = I.get(e, "fxshow");
3453
+ function wn(e, t, i) {
3454
+ var n, s, o, u, c, l, h, x, T = "width" in t || "height" in t, y = this, S = {}, P = e.style, z = e.nodeType && gt(e), _ = I.get(e, "fxshow");
3466
3455
  i.queue || (u = r._queueHooks(e, "fx"), u.unqueued == null && (u.unqueued = 0, c = u.empty.fire, u.empty.fire = function() {
3467
3456
  u.unqueued || c();
3468
- }), u.unqueued++, m.always(function() {
3469
- m.always(function() {
3457
+ }), u.unqueued++, y.always(function() {
3458
+ y.always(function() {
3470
3459
  u.unqueued--, r.queue(e, "fx").length || u.empty.fire();
3471
3460
  });
3472
3461
  }));
3473
3462
  for (n in t)
3474
- if (o = t[n], Tn.test(o)) {
3475
- if (delete t[n], s = s || o === "toggle", o === (z ? "hide" : "show"))
3476
- if (o === "show" && _ && _[n] !== void 0)
3463
+ if (s = t[n], bn.test(s)) {
3464
+ if (delete t[n], o = o || s === "toggle", s === (z ? "hide" : "show"))
3465
+ if (s === "show" && _ && _[n] !== void 0)
3477
3466
  z = !0;
3478
3467
  else
3479
3468
  continue;
3480
3469
  S[n] = _ && _[n] || r.style(e, n);
3481
3470
  }
3482
- if (f = !r.isEmptyObject(t), !(!f && r.isEmptyObject(S))) {
3483
- T && e.nodeType === 1 && (i.overflow = [P.overflow, P.overflowX, P.overflowY], h = _ && _.display, h == null && (h = I.get(e, "display")), x = r.css(e, "display"), x === "none" && (h ? x = h : (Ue([e], !0), h = e.style.display || h, x = r.css(e, "display"), Ue([e]))), (x === "inline" || x === "inline-block" && h != null) && r.css(e, "float") === "none" && (f || (m.done(function() {
3471
+ if (l = !r.isEmptyObject(t), !(!l && r.isEmptyObject(S))) {
3472
+ T && e.nodeType === 1 && (i.overflow = [P.overflow, P.overflowX, P.overflowY], h = _ && _.display, h == null && (h = I.get(e, "display")), x = r.css(e, "display"), x === "none" && (h ? x = h : (Ue([e], !0), h = e.style.display || h, x = r.css(e, "display"), Ue([e]))), (x === "inline" || x === "inline-block" && h != null) && r.css(e, "float") === "none" && (l || (y.done(function() {
3484
3473
  P.display = h;
3485
- }), h == null && (x = P.display, h = x === "none" ? "" : x)), P.display = "inline-block")), i.overflow && (P.overflow = "hidden", m.always(function() {
3474
+ }), h == null && (x = P.display, h = x === "none" ? "" : x)), P.display = "inline-block")), i.overflow && (P.overflow = "hidden", y.always(function() {
3486
3475
  P.overflow = i.overflow[0], P.overflowX = i.overflow[1], P.overflowY = i.overflow[2];
3487
- })), f = !1;
3476
+ })), l = !1;
3488
3477
  for (n in S)
3489
- f || (_ ? "hidden" in _ && (z = _.hidden) : _ = I.access(e, "fxshow", { display: h }), s && (_.hidden = !z), z && Ue([e], !0), m.done(function() {
3478
+ l || (_ ? "hidden" in _ && (z = _.hidden) : _ = I.access(e, "fxshow", { display: h }), o && (_.hidden = !z), z && Ue([e], !0), y.done(function() {
3490
3479
  z || Ue([e]), I.remove(e, "fxshow");
3491
3480
  for (n in S)
3492
3481
  r.style(e, n, S[n]);
3493
- })), f = Ei(z ? _[n] : 0, n, m), n in _ || (_[n] = f.start, z && (f.end = f.start, f.start = 0));
3482
+ })), l = Ei(z ? _[n] : 0, n, y), n in _ || (_[n] = l.start, z && (l.end = l.start, l.start = 0));
3494
3483
  }
3495
3484
  }
3496
- function Cn(e, t) {
3497
- var i, n, o, s, u;
3485
+ function Sn(e, t) {
3486
+ var i, n, s, o, u;
3498
3487
  for (i in e)
3499
- if (n = xe(i), o = t[n], s = e[i], Array.isArray(s) && (o = s[1], s = e[i] = s[0]), i !== n && (e[n] = s, delete e[i]), u = r.cssHooks[n], u && "expand" in u) {
3500
- s = u.expand(s), delete e[n];
3501
- for (i in s)
3502
- i in e || (e[i] = s[i], t[i] = o);
3488
+ if (n = xe(i), s = t[n], o = e[i], Array.isArray(o) && (s = o[1], o = e[i] = o[0]), i !== n && (e[n] = o, delete e[i]), u = r.cssHooks[n], u && "expand" in u) {
3489
+ o = u.expand(o), delete e[n];
3490
+ for (i in o)
3491
+ i in e || (e[i] = o[i], t[i] = s);
3503
3492
  } else
3504
- t[n] = o;
3493
+ t[n] = s;
3505
3494
  }
3506
3495
  function ye(e, t, i) {
3507
- var n, o, s = 0, u = ye.prefilters.length, c = r.Deferred().always(function() {
3508
- delete f.elem;
3509
- }), f = function() {
3510
- if (o)
3496
+ var n, s, o = 0, u = ye.prefilters.length, c = r.Deferred().always(function() {
3497
+ delete l.elem;
3498
+ }), l = function() {
3499
+ if (s)
3511
3500
  return !1;
3512
- for (var T = Ge || ki(), m = Math.max(0, h.startTime + h.duration - T), S = m / h.duration || 0, P = 1 - S, z = 0, _ = h.tweens.length; z < _; z++)
3501
+ for (var T = Ge || ki(), y = Math.max(0, h.startTime + h.duration - T), S = y / h.duration || 0, P = 1 - S, z = 0, _ = h.tweens.length; z < _; z++)
3513
3502
  h.tweens[z].run(P);
3514
- return c.notifyWith(e, [h, P, m]), P < 1 && _ ? m : (_ || c.notifyWith(e, [h, 1, 0]), c.resolveWith(e, [h]), !1);
3503
+ return c.notifyWith(e, [h, P, y]), P < 1 && _ ? y : (_ || c.notifyWith(e, [h, 1, 0]), c.resolveWith(e, [h]), !1);
3515
3504
  }, h = c.promise({
3516
3505
  elem: e,
3517
3506
  props: r.extend({}, t),
@@ -3524,30 +3513,30 @@ function Cr() {
3524
3513
  startTime: Ge || ki(),
3525
3514
  duration: i.duration,
3526
3515
  tweens: [],
3527
- createTween: function(T, m) {
3516
+ createTween: function(T, y) {
3528
3517
  var S = r.Tween(
3529
3518
  e,
3530
3519
  h.opts,
3531
3520
  T,
3532
- m,
3521
+ y,
3533
3522
  h.opts.specialEasing[T] || h.opts.easing
3534
3523
  );
3535
3524
  return h.tweens.push(S), S;
3536
3525
  },
3537
3526
  stop: function(T) {
3538
- var m = 0, S = T ? h.tweens.length : 0;
3539
- if (o)
3527
+ var y = 0, S = T ? h.tweens.length : 0;
3528
+ if (s)
3540
3529
  return this;
3541
- for (o = !0; m < S; m++)
3542
- h.tweens[m].run(1);
3530
+ for (s = !0; y < S; y++)
3531
+ h.tweens[y].run(1);
3543
3532
  return T ? (c.notifyWith(e, [h, 1, 0]), c.resolveWith(e, [h, T])) : c.rejectWith(e, [h, T]), this;
3544
3533
  }
3545
3534
  }), x = h.props;
3546
- for (Cn(x, h.opts.specialEasing); s < u; s++)
3547
- if (n = ye.prefilters[s].call(h, e, x, h.opts), n)
3535
+ for (Sn(x, h.opts.specialEasing); o < u; o++)
3536
+ if (n = ye.prefilters[o].call(h, e, x, h.opts), n)
3548
3537
  return W(n.stop) && (r._queueHooks(h.elem, h.opts.queue).stop = n.stop.bind(n)), n;
3549
3538
  return r.map(x, Ei, h), W(h.opts.start) && h.opts.start.call(e, h), h.progress(h.opts.progress).done(h.opts.done, h.opts.complete).fail(h.opts.fail).always(h.opts.always), r.fx.timer(
3550
- r.extend(f, {
3539
+ r.extend(l, {
3551
3540
  elem: e,
3552
3541
  anim: h,
3553
3542
  queue: h.opts.queue
@@ -3563,10 +3552,10 @@ function Cr() {
3563
3552
  },
3564
3553
  tweener: function(e, t) {
3565
3554
  W(e) ? (t = e, e = ["*"]) : e = e.match(ve);
3566
- for (var i, n = 0, o = e.length; n < o; n++)
3555
+ for (var i, n = 0, s = e.length; n < s; n++)
3567
3556
  i = e[n], ye.tweeners[i] = ye.tweeners[i] || [], ye.tweeners[i].unshift(t);
3568
3557
  },
3569
- prefilters: [Sn],
3558
+ prefilters: [wn],
3570
3559
  prefilter: function(e, t) {
3571
3560
  t ? ye.prefilters.unshift(e) : ye.prefilters.push(e);
3572
3561
  }
@@ -3584,34 +3573,34 @@ function Cr() {
3584
3573
  return this.filter(gt).css("opacity", 0).show().end().animate({ opacity: t }, e, i, n);
3585
3574
  },
3586
3575
  animate: function(e, t, i, n) {
3587
- var o = r.isEmptyObject(e), s = r.speed(t, i, n), u = function() {
3588
- var c = ye(this, r.extend({}, e), s);
3589
- (o || I.get(this, "finish")) && c.stop(!0);
3576
+ var s = r.isEmptyObject(e), o = r.speed(t, i, n), u = function() {
3577
+ var c = ye(this, r.extend({}, e), o);
3578
+ (s || I.get(this, "finish")) && c.stop(!0);
3590
3579
  };
3591
- return u.finish = u, o || s.queue === !1 ? this.each(u) : this.queue(s.queue, u);
3580
+ return u.finish = u, s || o.queue === !1 ? this.each(u) : this.queue(o.queue, u);
3592
3581
  },
3593
3582
  stop: function(e, t, i) {
3594
- var n = function(o) {
3595
- var s = o.stop;
3596
- delete o.stop, s(i);
3583
+ var n = function(s) {
3584
+ var o = s.stop;
3585
+ delete s.stop, o(i);
3597
3586
  };
3598
3587
  return typeof e != "string" && (i = t, t = e, e = void 0), t && this.queue(e || "fx", []), this.each(function() {
3599
- var o = !0, s = e != null && e + "queueHooks", u = r.timers, c = I.get(this);
3600
- if (s)
3601
- c[s] && c[s].stop && n(c[s]);
3588
+ var s = !0, o = e != null && e + "queueHooks", u = r.timers, c = I.get(this);
3589
+ if (o)
3590
+ c[o] && c[o].stop && n(c[o]);
3602
3591
  else
3603
- for (s in c)
3604
- c[s] && c[s].stop && wn.test(s) && n(c[s]);
3605
- for (s = u.length; s--; )
3606
- u[s].elem === this && (e == null || u[s].queue === e) && (u[s].anim.stop(i), o = !1, u.splice(s, 1));
3607
- (o || !i) && r.dequeue(this, e);
3592
+ for (o in c)
3593
+ c[o] && c[o].stop && Tn.test(o) && n(c[o]);
3594
+ for (o = u.length; o--; )
3595
+ u[o].elem === this && (e == null || u[o].queue === e) && (u[o].anim.stop(i), s = !1, u.splice(o, 1));
3596
+ (s || !i) && r.dequeue(this, e);
3608
3597
  });
3609
3598
  },
3610
3599
  finish: function(e) {
3611
3600
  return e !== !1 && (e = e || "fx"), this.each(function() {
3612
- var t, i = I.get(this), n = i[e + "queue"], o = i[e + "queueHooks"], s = r.timers, u = n ? n.length : 0;
3613
- for (i.finish = !0, r.queue(this, e, []), o && o.stop && o.stop.call(this, !0), t = s.length; t--; )
3614
- s[t].elem === this && s[t].queue === e && (s[t].anim.stop(!0), s.splice(t, 1));
3601
+ var t, i = I.get(this), n = i[e + "queue"], s = i[e + "queueHooks"], o = r.timers, u = n ? n.length : 0;
3602
+ for (i.finish = !0, r.queue(this, e, []), s && s.stop && s.stop.call(this, !0), t = o.length; t--; )
3603
+ o[t].elem === this && o[t].queue === e && (o[t].anim.stop(!0), o.splice(t, 1));
3615
3604
  for (t = 0; t < u; t++)
3616
3605
  n[t] && n[t].finish && n[t].finish.call(this);
3617
3606
  delete i.finish;
@@ -3619,8 +3608,8 @@ function Cr() {
3619
3608
  }
3620
3609
  }), r.each(["toggle", "show", "hide"], function(e, t) {
3621
3610
  var i = r.fn[t];
3622
- r.fn[t] = function(n, o, s) {
3623
- return n == null || typeof n == "boolean" ? i.apply(this, arguments) : this.animate(xt(t, !0), n, o, s);
3611
+ r.fn[t] = function(n, s, o) {
3612
+ return n == null || typeof n == "boolean" ? i.apply(this, arguments) : this.animate(xt(t, !0), n, s, o);
3624
3613
  };
3625
3614
  }), r.each({
3626
3615
  slideDown: xt("show"),
@@ -3630,8 +3619,8 @@ function Cr() {
3630
3619
  fadeOut: { opacity: "hide" },
3631
3620
  fadeToggle: { opacity: "toggle" }
3632
3621
  }, function(e, t) {
3633
- r.fn[e] = function(i, n, o) {
3634
- return this.animate(t, i, n, o);
3622
+ r.fn[e] = function(i, n, s) {
3623
+ return this.animate(t, i, n, s);
3635
3624
  };
3636
3625
  }), r.timers = [], r.fx.tick = function() {
3637
3626
  var e, t = 0, i = r.timers;
@@ -3651,16 +3640,16 @@ function Cr() {
3651
3640
  _default: 400
3652
3641
  }, r.fn.delay = function(e, t) {
3653
3642
  return e = r.fx && r.fx.speeds[e] || e, t = t || "fx", this.queue(t, function(i, n) {
3654
- var o = a.setTimeout(i, e);
3643
+ var s = a.setTimeout(i, e);
3655
3644
  n.stop = function() {
3656
- a.clearTimeout(o);
3645
+ a.clearTimeout(s);
3657
3646
  };
3658
3647
  });
3659
3648
  }, (function() {
3660
3649
  var e = L.createElement("input"), t = L.createElement("select"), i = t.appendChild(L.createElement("option"));
3661
- e.type = "checkbox", j.checkOn = e.value !== "", j.optSelected = i.selected, e = L.createElement("input"), e.value = "t", e.type = "radio", j.radioValue = e.value === "t";
3650
+ e.type = "checkbox", M.checkOn = e.value !== "", M.optSelected = i.selected, e = L.createElement("input"), e.value = "t", e.type = "radio", M.radioValue = e.value === "t";
3662
3651
  })();
3663
- var Ai, ot = r.expr.attrHandle;
3652
+ var Di, st = r.expr.attrHandle;
3664
3653
  r.fn.extend({
3665
3654
  attr: function(e, t) {
3666
3655
  return Ee(this, r.attr, e, t, arguments.length > 1);
@@ -3672,24 +3661,24 @@ function Cr() {
3672
3661
  }
3673
3662
  }), r.extend({
3674
3663
  attr: function(e, t, i) {
3675
- var n, o, s = e.nodeType;
3676
- if (!(s === 3 || s === 8 || s === 2)) {
3664
+ var n, s, o = e.nodeType;
3665
+ if (!(o === 3 || o === 8 || o === 2)) {
3677
3666
  if (typeof e.getAttribute > "u")
3678
3667
  return r.prop(e, t, i);
3679
- if ((s !== 1 || !r.isXMLDoc(e)) && (o = r.attrHooks[t.toLowerCase()] || (r.expr.match.bool.test(t) ? Ai : void 0)), i !== void 0) {
3668
+ if ((o !== 1 || !r.isXMLDoc(e)) && (s = r.attrHooks[t.toLowerCase()] || (r.expr.match.bool.test(t) ? Di : void 0)), i !== void 0) {
3680
3669
  if (i === null) {
3681
3670
  r.removeAttr(e, t);
3682
3671
  return;
3683
3672
  }
3684
- return o && "set" in o && (n = o.set(e, i, t)) !== void 0 ? n : (e.setAttribute(t, i + ""), i);
3673
+ return s && "set" in s && (n = s.set(e, i, t)) !== void 0 ? n : (e.setAttribute(t, i + ""), i);
3685
3674
  }
3686
- return o && "get" in o && (n = o.get(e, t)) !== null ? n : (n = r.find.attr(e, t), n ?? void 0);
3675
+ return s && "get" in s && (n = s.get(e, t)) !== null ? n : (n = r.find.attr(e, t), n ?? void 0);
3687
3676
  }
3688
3677
  },
3689
3678
  attrHooks: {
3690
3679
  type: {
3691
3680
  set: function(e, t) {
3692
- if (!j.radioValue && t === "radio" && K(e, "input")) {
3681
+ if (!M.radioValue && t === "radio" && K(e, "input")) {
3693
3682
  var i = e.value;
3694
3683
  return e.setAttribute("type", t), i && (e.value = i), t;
3695
3684
  }
@@ -3697,23 +3686,23 @@ function Cr() {
3697
3686
  }
3698
3687
  },
3699
3688
  removeAttr: function(e, t) {
3700
- var i, n = 0, o = t && t.match(ve);
3701
- if (o && e.nodeType === 1)
3702
- for (; i = o[n++]; )
3689
+ var i, n = 0, s = t && t.match(ve);
3690
+ if (s && e.nodeType === 1)
3691
+ for (; i = s[n++]; )
3703
3692
  e.removeAttribute(i);
3704
3693
  }
3705
- }), Ai = {
3694
+ }), Di = {
3706
3695
  set: function(e, t, i) {
3707
3696
  return t === !1 ? r.removeAttr(e, i) : e.setAttribute(i, i), i;
3708
3697
  }
3709
3698
  }, r.each(r.expr.match.bool.source.match(/\w+/g), function(e, t) {
3710
- var i = ot[t] || r.find.attr;
3711
- ot[t] = function(n, o, s) {
3712
- var u, c, f = o.toLowerCase();
3713
- return s || (c = ot[f], ot[f] = u, u = i(n, o, s) != null ? f : null, ot[f] = c), u;
3699
+ var i = st[t] || r.find.attr;
3700
+ st[t] = function(n, s, o) {
3701
+ var u, c, l = s.toLowerCase();
3702
+ return o || (c = st[l], st[l] = u, u = i(n, s, o) != null ? l : null, st[l] = c), u;
3714
3703
  };
3715
3704
  });
3716
- var kn = /^(?:input|select|textarea|button)$/i, En = /^(?:a|area)$/i;
3705
+ var Cn = /^(?:input|select|textarea|button)$/i, kn = /^(?:a|area)$/i;
3717
3706
  r.fn.extend({
3718
3707
  prop: function(e, t) {
3719
3708
  return Ee(this, r.prop, e, t, arguments.length > 1);
@@ -3725,15 +3714,15 @@ function Cr() {
3725
3714
  }
3726
3715
  }), r.extend({
3727
3716
  prop: function(e, t, i) {
3728
- var n, o, s = e.nodeType;
3729
- if (!(s === 3 || s === 8 || s === 2))
3730
- return (s !== 1 || !r.isXMLDoc(e)) && (t = r.propFix[t] || t, o = r.propHooks[t]), i !== void 0 ? o && "set" in o && (n = o.set(e, i, t)) !== void 0 ? n : e[t] = i : o && "get" in o && (n = o.get(e, t)) !== null ? n : e[t];
3717
+ var n, s, o = e.nodeType;
3718
+ if (!(o === 3 || o === 8 || o === 2))
3719
+ return (o !== 1 || !r.isXMLDoc(e)) && (t = r.propFix[t] || t, s = r.propHooks[t]), i !== void 0 ? s && "set" in s && (n = s.set(e, i, t)) !== void 0 ? n : e[t] = i : s && "get" in s && (n = s.get(e, t)) !== null ? n : e[t];
3731
3720
  },
3732
3721
  propHooks: {
3733
3722
  tabIndex: {
3734
3723
  get: function(e) {
3735
3724
  var t = r.find.attr(e, "tabindex");
3736
- return t ? parseInt(t, 10) : kn.test(e.nodeName) || En.test(e.nodeName) && e.href ? 0 : -1;
3725
+ return t ? parseInt(t, 10) : Cn.test(e.nodeName) || kn.test(e.nodeName) && e.href ? 0 : -1;
3737
3726
  }
3738
3727
  }
3739
3728
  },
@@ -3741,7 +3730,7 @@ function Cr() {
3741
3730
  for: "htmlFor",
3742
3731
  class: "className"
3743
3732
  }
3744
- }), j.optSelected || (r.propHooks.selected = {
3733
+ }), M.optSelected || (r.propHooks.selected = {
3745
3734
  get: function(e) {
3746
3735
  var t = e.parentNode;
3747
3736
  return t && t.parentNode && t.parentNode.selectedIndex, null;
@@ -3776,41 +3765,41 @@ function Cr() {
3776
3765
  }
3777
3766
  r.fn.extend({
3778
3767
  addClass: function(e) {
3779
- var t, i, n, o, s, u;
3768
+ var t, i, n, s, o, u;
3780
3769
  return W(e) ? this.each(function(c) {
3781
3770
  r(this).addClass(e.call(this, c, Pe(this)));
3782
3771
  }) : (t = Pt(e), t.length ? this.each(function() {
3783
3772
  if (n = Pe(this), i = this.nodeType === 1 && " " + He(n) + " ", i) {
3784
- for (s = 0; s < t.length; s++)
3785
- o = t[s], i.indexOf(" " + o + " ") < 0 && (i += o + " ");
3773
+ for (o = 0; o < t.length; o++)
3774
+ s = t[o], i.indexOf(" " + s + " ") < 0 && (i += s + " ");
3786
3775
  u = He(i), n !== u && this.setAttribute("class", u);
3787
3776
  }
3788
3777
  }) : this);
3789
3778
  },
3790
3779
  removeClass: function(e) {
3791
- var t, i, n, o, s, u;
3780
+ var t, i, n, s, o, u;
3792
3781
  return W(e) ? this.each(function(c) {
3793
3782
  r(this).removeClass(e.call(this, c, Pe(this)));
3794
3783
  }) : arguments.length ? (t = Pt(e), t.length ? this.each(function() {
3795
3784
  if (n = Pe(this), i = this.nodeType === 1 && " " + He(n) + " ", i) {
3796
- for (s = 0; s < t.length; s++)
3797
- for (o = t[s]; i.indexOf(" " + o + " ") > -1; )
3798
- i = i.replace(" " + o + " ", " ");
3785
+ for (o = 0; o < t.length; o++)
3786
+ for (s = t[o]; i.indexOf(" " + s + " ") > -1; )
3787
+ i = i.replace(" " + s + " ", " ");
3799
3788
  u = He(i), n !== u && this.setAttribute("class", u);
3800
3789
  }
3801
3790
  }) : this) : this.attr("class", "");
3802
3791
  },
3803
3792
  toggleClass: function(e, t) {
3804
- var i, n, o, s, u = typeof e, c = u === "string" || Array.isArray(e);
3805
- return W(e) ? this.each(function(f) {
3793
+ var i, n, s, o, u = typeof e, c = u === "string" || Array.isArray(e);
3794
+ return W(e) ? this.each(function(l) {
3806
3795
  r(this).toggleClass(
3807
- e.call(this, f, Pe(this), t),
3796
+ e.call(this, l, Pe(this), t),
3808
3797
  t
3809
3798
  );
3810
3799
  }) : typeof t == "boolean" && c ? t ? this.addClass(e) : this.removeClass(e) : (i = Pt(e), this.each(function() {
3811
3800
  if (c)
3812
- for (s = r(this), o = 0; o < i.length; o++)
3813
- n = i[o], s.hasClass(n) ? s.removeClass(n) : s.addClass(n);
3801
+ for (o = r(this), s = 0; s < i.length; s++)
3802
+ n = i[s], o.hasClass(n) ? o.removeClass(n) : o.addClass(n);
3814
3803
  else (e === void 0 || u === "boolean") && (n = Pe(this), n && I.set(this, "__className__", n), this.setAttribute && this.setAttribute(
3815
3804
  "class",
3816
3805
  n || e === !1 ? "" : I.get(this, "__className__") || ""
@@ -3825,16 +3814,16 @@ function Cr() {
3825
3814
  return !1;
3826
3815
  }
3827
3816
  });
3828
- var An = /\r/g;
3817
+ var En = /\r/g;
3829
3818
  r.fn.extend({
3830
3819
  val: function(e) {
3831
- var t, i, n, o = this[0];
3832
- return arguments.length ? (n = W(e), this.each(function(s) {
3820
+ var t, i, n, s = this[0];
3821
+ return arguments.length ? (n = W(e), this.each(function(o) {
3833
3822
  var u;
3834
- this.nodeType === 1 && (n ? u = e.call(this, s, r(this).val()) : u = e, u == null ? u = "" : typeof u == "number" ? u += "" : Array.isArray(u) && (u = r.map(u, function(c) {
3823
+ this.nodeType === 1 && (n ? u = e.call(this, o, r(this).val()) : u = e, u == null ? u = "" : typeof u == "number" ? u += "" : Array.isArray(u) && (u = r.map(u, function(c) {
3835
3824
  return c == null ? "" : c + "";
3836
3825
  })), t = r.valHooks[this.type] || r.valHooks[this.nodeName.toLowerCase()], (!t || !("set" in t) || t.set(this, u, "value") === void 0) && (this.value = u));
3837
- })) : o ? (t = r.valHooks[o.type] || r.valHooks[o.nodeName.toLowerCase()], t && "get" in t && (i = t.get(o, "value")) !== void 0 ? i : (i = o.value, typeof i == "string" ? i.replace(An, "") : i ?? "")) : void 0;
3826
+ })) : s ? (t = r.valHooks[s.type] || r.valHooks[s.nodeName.toLowerCase()], t && "get" in t && (i = t.get(s, "value")) !== void 0 ? i : (i = s.value, typeof i == "string" ? i.replace(En, "") : i ?? "")) : void 0;
3838
3827
  }
3839
3828
  }), r.extend({
3840
3829
  valHooks: {
@@ -3850,9 +3839,9 @@ function Cr() {
3850
3839
  },
3851
3840
  select: {
3852
3841
  get: function(e) {
3853
- var t, i, n, o = e.options, s = e.selectedIndex, u = e.type === "select-one", c = u ? null : [], f = u ? s + 1 : o.length;
3854
- for (s < 0 ? n = f : n = u ? s : 0; n < f; n++)
3855
- if (i = o[n], (i.selected || n === s) && // Don't return options that are disabled or in a disabled optgroup
3842
+ var t, i, n, s = e.options, o = e.selectedIndex, u = e.type === "select-one", c = u ? null : [], l = u ? o + 1 : s.length;
3843
+ for (o < 0 ? n = l : n = u ? o : 0; n < l; n++)
3844
+ if (i = s[n], (i.selected || n === o) && // Don't return options that are disabled or in a disabled optgroup
3856
3845
  !i.disabled && (!i.parentNode.disabled || !K(i.parentNode, "optgroup"))) {
3857
3846
  if (t = r(i).val(), u)
3858
3847
  return t;
@@ -3861,9 +3850,9 @@ function Cr() {
3861
3850
  return c;
3862
3851
  },
3863
3852
  set: function(e, t) {
3864
- for (var i, n, o = e.options, s = r.makeArray(t), u = o.length; u--; )
3865
- n = o[u], (n.selected = r.inArray(r.valHooks.option.get(n), s) > -1) && (i = !0);
3866
- return i || (e.selectedIndex = -1), s;
3853
+ for (var i, n, s = e.options, o = r.makeArray(t), u = s.length; u--; )
3854
+ n = s[u], (n.selected = r.inArray(r.valHooks.option.get(n), o) > -1) && (i = !0);
3855
+ return i || (e.selectedIndex = -1), o;
3867
3856
  }
3868
3857
  }
3869
3858
  }
@@ -3873,11 +3862,11 @@ function Cr() {
3873
3862
  if (Array.isArray(t))
3874
3863
  return e.checked = r.inArray(r(e).val(), t) > -1;
3875
3864
  }
3876
- }, j.checkOn || (r.valHooks[this].get = function(e) {
3865
+ }, M.checkOn || (r.valHooks[this].get = function(e) {
3877
3866
  return e.getAttribute("value") === null ? "on" : e.value;
3878
3867
  });
3879
3868
  });
3880
- var st = a.location, Di = { guid: Date.now() }, Ft = /\?/;
3869
+ var ot = a.location, Ai = { guid: Date.now() }, Ft = /\?/;
3881
3870
  r.parseXML = function(e) {
3882
3871
  var t, i;
3883
3872
  if (!e || typeof e != "string")
@@ -3896,16 +3885,16 @@ function Cr() {
3896
3885
  };
3897
3886
  r.extend(r.event, {
3898
3887
  trigger: function(e, t, i, n) {
3899
- var o, s, u, c, f, h, x, T, m = [i || L], S = Z.call(e, "type") ? e.type : e, P = Z.call(e, "namespace") ? e.namespace.split(".") : [];
3900
- if (s = T = u = i = i || L, !(i.nodeType === 3 || i.nodeType === 8) && !Ri.test(S + r.event.triggered) && (S.indexOf(".") > -1 && (P = S.split("."), S = P.shift(), P.sort()), f = S.indexOf(":") < 0 && "on" + S, e = e[r.expando] ? e : new r.Event(S, typeof e == "object" && e), e.isTrigger = n ? 2 : 3, e.namespace = P.join("."), e.rnamespace = e.namespace ? new RegExp("(^|\\.)" + P.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, e.result = void 0, e.target || (e.target = i), t = t == null ? [e] : r.makeArray(t, [e]), x = r.event.special[S] || {}, !(!n && x.trigger && x.trigger.apply(i, t) === !1))) {
3888
+ var s, o, u, c, l, h, x, T, y = [i || L], S = Z.call(e, "type") ? e.type : e, P = Z.call(e, "namespace") ? e.namespace.split(".") : [];
3889
+ if (o = T = u = i = i || L, !(i.nodeType === 3 || i.nodeType === 8) && !Ri.test(S + r.event.triggered) && (S.indexOf(".") > -1 && (P = S.split("."), S = P.shift(), P.sort()), l = S.indexOf(":") < 0 && "on" + S, e = e[r.expando] ? e : new r.Event(S, typeof e == "object" && e), e.isTrigger = n ? 2 : 3, e.namespace = P.join("."), e.rnamespace = e.namespace ? new RegExp("(^|\\.)" + P.join("\\.(?:.*\\.|)") + "(\\.|$)") : null, e.result = void 0, e.target || (e.target = i), t = t == null ? [e] : r.makeArray(t, [e]), x = r.event.special[S] || {}, !(!n && x.trigger && x.trigger.apply(i, t) === !1))) {
3901
3890
  if (!n && !x.noBubble && !Ne(i)) {
3902
- for (c = x.delegateType || S, Ri.test(c + S) || (s = s.parentNode); s; s = s.parentNode)
3903
- m.push(s), u = s;
3904
- u === (i.ownerDocument || L) && m.push(u.defaultView || u.parentWindow || a);
3891
+ for (c = x.delegateType || S, Ri.test(c + S) || (o = o.parentNode); o; o = o.parentNode)
3892
+ y.push(o), u = o;
3893
+ u === (i.ownerDocument || L) && y.push(u.defaultView || u.parentWindow || a);
3905
3894
  }
3906
- for (o = 0; (s = m[o++]) && !e.isPropagationStopped(); )
3907
- T = s, e.type = o > 1 ? c : x.bindType || S, h = (I.get(s, "events") || /* @__PURE__ */ Object.create(null))[e.type] && I.get(s, "handle"), h && h.apply(s, t), h = f && s[f], h && h.apply && et(s) && (e.result = h.apply(s, t), e.result === !1 && e.preventDefault());
3908
- return e.type = S, !n && !e.isDefaultPrevented() && (!x._default || x._default.apply(m.pop(), t) === !1) && et(i) && f && W(i[S]) && !Ne(i) && (u = i[f], u && (i[f] = null), r.event.triggered = S, e.isPropagationStopped() && T.addEventListener(S, Ni), i[S](), e.isPropagationStopped() && T.removeEventListener(S, Ni), r.event.triggered = void 0, u && (i[f] = u)), e.result;
3895
+ for (s = 0; (o = y[s++]) && !e.isPropagationStopped(); )
3896
+ T = o, e.type = s > 1 ? c : x.bindType || S, h = (I.get(o, "events") || /* @__PURE__ */ Object.create(null))[e.type] && I.get(o, "handle"), h && h.apply(o, t), h = l && o[l], h && h.apply && et(o) && (e.result = h.apply(o, t), e.result === !1 && e.preventDefault());
3897
+ return e.type = S, !n && !e.isDefaultPrevented() && (!x._default || x._default.apply(y.pop(), t) === !1) && et(i) && l && W(i[S]) && !Ne(i) && (u = i[l], u && (i[l] = null), r.event.triggered = S, e.isPropagationStopped() && T.addEventListener(S, Ni), i[S](), e.isPropagationStopped() && T.removeEventListener(S, Ni), r.event.triggered = void 0, u && (i[l] = u)), e.result;
3909
3898
  }
3910
3899
  },
3911
3900
  // Piggyback on a donor event to simulate a different one
@@ -3933,38 +3922,38 @@ function Cr() {
3933
3922
  return r.event.trigger(e, t, i, !0);
3934
3923
  }
3935
3924
  });
3936
- var Dn = /\[\]$/, Li = /\r?\n/g, Rn = /^(?:submit|button|image|reset|file)$/i, Nn = /^(?:input|select|textarea|keygen)/i;
3925
+ var Dn = /\[\]$/, Li = /\r?\n/g, An = /^(?:submit|button|image|reset|file)$/i, Rn = /^(?:input|select|textarea|keygen)/i;
3937
3926
  function Ot(e, t, i, n) {
3938
- var o;
3927
+ var s;
3939
3928
  if (Array.isArray(t))
3940
- r.each(t, function(s, u) {
3929
+ r.each(t, function(o, u) {
3941
3930
  i || Dn.test(e) ? n(e, u) : Ot(
3942
- e + "[" + (typeof u == "object" && u != null ? s : "") + "]",
3931
+ e + "[" + (typeof u == "object" && u != null ? o : "") + "]",
3943
3932
  u,
3944
3933
  i,
3945
3934
  n
3946
3935
  );
3947
3936
  });
3948
3937
  else if (!i && We(t) === "object")
3949
- for (o in t)
3950
- Ot(e + "[" + o + "]", t[o], i, n);
3938
+ for (s in t)
3939
+ Ot(e + "[" + s + "]", t[s], i, n);
3951
3940
  else
3952
3941
  n(e, t);
3953
3942
  }
3954
3943
  r.param = function(e, t) {
3955
- var i, n = [], o = function(s, u) {
3944
+ var i, n = [], s = function(o, u) {
3956
3945
  var c = W(u) ? u() : u;
3957
- n[n.length] = encodeURIComponent(s) + "=" + encodeURIComponent(c ?? "");
3946
+ n[n.length] = encodeURIComponent(o) + "=" + encodeURIComponent(c ?? "");
3958
3947
  };
3959
3948
  if (e == null)
3960
3949
  return "";
3961
3950
  if (Array.isArray(e) || e.jquery && !r.isPlainObject(e))
3962
3951
  r.each(e, function() {
3963
- o(this.name, this.value);
3952
+ s(this.name, this.value);
3964
3953
  });
3965
3954
  else
3966
3955
  for (i in e)
3967
- Ot(i, e[i], t, o);
3956
+ Ot(i, e[i], t, s);
3968
3957
  return n.join("&");
3969
3958
  }, r.fn.extend({
3970
3959
  serialize: function() {
@@ -3976,7 +3965,7 @@ function Cr() {
3976
3965
  return e ? r.makeArray(e) : this;
3977
3966
  }).filter(function() {
3978
3967
  var e = this.type;
3979
- return this.name && !r(this).is(":disabled") && Nn.test(this.nodeName) && !Rn.test(e) && (this.checked || !nt.test(e));
3968
+ return this.name && !r(this).is(":disabled") && Rn.test(this.nodeName) && !An.test(e) && (this.checked || !nt.test(e));
3980
3969
  }).map(function(e, t) {
3981
3970
  var i = r(this).val();
3982
3971
  return i == null ? null : Array.isArray(i) ? r.map(i, function(n) {
@@ -3987,76 +3976,76 @@ function Cr() {
3987
3976
  }).get();
3988
3977
  }
3989
3978
  });
3990
- var Ln = /%20/g, In = /#.*$/, qn = /([?&])_=[^&]*/, Mn = /^(.*?):[ \t]*([^\r\n]*)$/mg, jn = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, Hn = /^(?:GET|HEAD)$/, Pn = /^\/\//, Ii = {}, Wt = {}, qi = "*/".concat("*"), _t = L.createElement("a");
3991
- _t.href = st.href;
3992
- function Mi(e) {
3979
+ var Nn = /%20/g, Ln = /#.*$/, In = /([?&])_=[^&]*/, qn = /^(.*?):[ \t]*([^\r\n]*)$/mg, jn = /^(?:about|app|app-storage|.+-extension|file|res|widget):$/, Mn = /^(?:GET|HEAD)$/, Hn = /^\/\//, Ii = {}, Wt = {}, qi = "*/".concat("*"), _t = L.createElement("a");
3980
+ _t.href = ot.href;
3981
+ function ji(e) {
3993
3982
  return function(t, i) {
3994
3983
  typeof t != "string" && (i = t, t = "*");
3995
- var n, o = 0, s = t.toLowerCase().match(ve) || [];
3984
+ var n, s = 0, o = t.toLowerCase().match(ve) || [];
3996
3985
  if (W(i))
3997
- for (; n = s[o++]; )
3986
+ for (; n = o[s++]; )
3998
3987
  n[0] === "+" ? (n = n.slice(1) || "*", (e[n] = e[n] || []).unshift(i)) : (e[n] = e[n] || []).push(i);
3999
3988
  };
4000
3989
  }
4001
- function ji(e, t, i, n) {
4002
- var o = {}, s = e === Wt;
3990
+ function Mi(e, t, i, n) {
3991
+ var s = {}, o = e === Wt;
4003
3992
  function u(c) {
4004
- var f;
4005
- return o[c] = !0, r.each(e[c] || [], function(h, x) {
3993
+ var l;
3994
+ return s[c] = !0, r.each(e[c] || [], function(h, x) {
4006
3995
  var T = x(t, i, n);
4007
- if (typeof T == "string" && !s && !o[T])
3996
+ if (typeof T == "string" && !o && !s[T])
4008
3997
  return t.dataTypes.unshift(T), u(T), !1;
4009
- if (s)
4010
- return !(f = T);
4011
- }), f;
3998
+ if (o)
3999
+ return !(l = T);
4000
+ }), l;
4012
4001
  }
4013
- return u(t.dataTypes[0]) || !o["*"] && u("*");
4002
+ return u(t.dataTypes[0]) || !s["*"] && u("*");
4014
4003
  }
4015
4004
  function Bt(e, t) {
4016
- var i, n, o = r.ajaxSettings.flatOptions || {};
4005
+ var i, n, s = r.ajaxSettings.flatOptions || {};
4017
4006
  for (i in t)
4018
- t[i] !== void 0 && ((o[i] ? e : n || (n = {}))[i] = t[i]);
4007
+ t[i] !== void 0 && ((s[i] ? e : n || (n = {}))[i] = t[i]);
4019
4008
  return n && r.extend(!0, e, n), e;
4020
4009
  }
4021
- function Fn(e, t, i) {
4022
- for (var n, o, s, u, c = e.contents, f = e.dataTypes; f[0] === "*"; )
4023
- f.shift(), n === void 0 && (n = e.mimeType || t.getResponseHeader("Content-Type"));
4010
+ function Pn(e, t, i) {
4011
+ for (var n, s, o, u, c = e.contents, l = e.dataTypes; l[0] === "*"; )
4012
+ l.shift(), n === void 0 && (n = e.mimeType || t.getResponseHeader("Content-Type"));
4024
4013
  if (n) {
4025
- for (o in c)
4026
- if (c[o] && c[o].test(n)) {
4027
- f.unshift(o);
4014
+ for (s in c)
4015
+ if (c[s] && c[s].test(n)) {
4016
+ l.unshift(s);
4028
4017
  break;
4029
4018
  }
4030
4019
  }
4031
- if (f[0] in i)
4032
- s = f[0];
4020
+ if (l[0] in i)
4021
+ o = l[0];
4033
4022
  else {
4034
- for (o in i) {
4035
- if (!f[0] || e.converters[o + " " + f[0]]) {
4036
- s = o;
4023
+ for (s in i) {
4024
+ if (!l[0] || e.converters[s + " " + l[0]]) {
4025
+ o = s;
4037
4026
  break;
4038
4027
  }
4039
- u || (u = o);
4028
+ u || (u = s);
4040
4029
  }
4041
- s = s || u;
4030
+ o = o || u;
4042
4031
  }
4043
- if (s)
4044
- return s !== f[0] && f.unshift(s), i[s];
4032
+ if (o)
4033
+ return o !== l[0] && l.unshift(o), i[o];
4045
4034
  }
4046
- function On(e, t, i, n) {
4047
- var o, s, u, c, f, h = {}, x = e.dataTypes.slice();
4035
+ function Fn(e, t, i, n) {
4036
+ var s, o, u, c, l, h = {}, x = e.dataTypes.slice();
4048
4037
  if (x[1])
4049
4038
  for (u in e.converters)
4050
4039
  h[u.toLowerCase()] = e.converters[u];
4051
- for (s = x.shift(); s; )
4052
- if (e.responseFields[s] && (i[e.responseFields[s]] = t), !f && n && e.dataFilter && (t = e.dataFilter(t, e.dataType)), f = s, s = x.shift(), s) {
4053
- if (s === "*")
4054
- s = f;
4055
- else if (f !== "*" && f !== s) {
4056
- if (u = h[f + " " + s] || h["* " + s], !u) {
4057
- for (o in h)
4058
- if (c = o.split(" "), c[1] === s && (u = h[f + " " + c[0]] || h["* " + c[0]], u)) {
4059
- u === !0 ? u = h[o] : h[o] !== !0 && (s = c[0], x.unshift(c[1]));
4040
+ for (o = x.shift(); o; )
4041
+ if (e.responseFields[o] && (i[e.responseFields[o]] = t), !l && n && e.dataFilter && (t = e.dataFilter(t, e.dataType)), l = o, o = x.shift(), o) {
4042
+ if (o === "*")
4043
+ o = l;
4044
+ else if (l !== "*" && l !== o) {
4045
+ if (u = h[l + " " + o] || h["* " + o], !u) {
4046
+ for (s in h)
4047
+ if (c = s.split(" "), c[1] === o && (u = h[l + " " + c[0]] || h["* " + c[0]], u)) {
4048
+ u === !0 ? u = h[s] : h[s] !== !0 && (o = c[0], x.unshift(c[1]));
4060
4049
  break;
4061
4050
  }
4062
4051
  }
@@ -4069,7 +4058,7 @@ function Cr() {
4069
4058
  } catch (T) {
4070
4059
  return {
4071
4060
  state: "parsererror",
4072
- error: u ? T : "No conversion from " + f + " to " + s
4061
+ error: u ? T : "No conversion from " + l + " to " + o
4073
4062
  };
4074
4063
  }
4075
4064
  }
@@ -4083,9 +4072,9 @@ function Cr() {
4083
4072
  lastModified: {},
4084
4073
  etag: {},
4085
4074
  ajaxSettings: {
4086
- url: st.href,
4075
+ url: ot.href,
4087
4076
  type: "GET",
4088
- isLocal: jn.test(st.protocol),
4077
+ isLocal: jn.test(ot.protocol),
4089
4078
  global: !0,
4090
4079
  processData: !0,
4091
4080
  async: !0,
@@ -4151,45 +4140,45 @@ function Cr() {
4151
4140
  Bt(r.ajaxSettings, e)
4152
4141
  );
4153
4142
  },
4154
- ajaxPrefilter: Mi(Ii),
4155
- ajaxTransport: Mi(Wt),
4143
+ ajaxPrefilter: ji(Ii),
4144
+ ajaxTransport: ji(Wt),
4156
4145
  // Main method
4157
4146
  ajax: function(e, t) {
4158
4147
  typeof e == "object" && (t = e, e = void 0), t = t || {};
4159
- var i, n, o, s, u, c, f, h, x, T, m = r.ajaxSetup({}, t), S = m.context || m, P = m.context && (S.nodeType || S.jquery) ? r(S) : r.event, z = r.Deferred(), _ = r.Callbacks("once memory"), oe = m.statusCode || {}, ne = {}, be = {}, Te = "canceled", U = {
4148
+ var i, n, s, o, u, c, l, h, x, T, y = r.ajaxSetup({}, t), S = y.context || y, P = y.context && (S.nodeType || S.jquery) ? r(S) : r.event, z = r.Deferred(), _ = r.Callbacks("once memory"), se = y.statusCode || {}, ne = {}, be = {}, Te = "canceled", U = {
4160
4149
  readyState: 0,
4161
4150
  // Builds headers hashtable if needed
4162
4151
  getResponseHeader: function(X) {
4163
4152
  var te;
4164
- if (f) {
4165
- if (!s)
4166
- for (s = {}; te = Mn.exec(o); )
4167
- s[te[1].toLowerCase() + " "] = (s[te[1].toLowerCase() + " "] || []).concat(te[2]);
4168
- te = s[X.toLowerCase() + " "];
4153
+ if (l) {
4154
+ if (!o)
4155
+ for (o = {}; te = qn.exec(s); )
4156
+ o[te[1].toLowerCase() + " "] = (o[te[1].toLowerCase() + " "] || []).concat(te[2]);
4157
+ te = o[X.toLowerCase() + " "];
4169
4158
  }
4170
4159
  return te == null ? null : te.join(", ");
4171
4160
  },
4172
4161
  // Raw string
4173
4162
  getAllResponseHeaders: function() {
4174
- return f ? o : null;
4163
+ return l ? s : null;
4175
4164
  },
4176
4165
  // Caches the header
4177
4166
  setRequestHeader: function(X, te) {
4178
- return f == null && (X = be[X.toLowerCase()] = be[X.toLowerCase()] || X, ne[X] = te), this;
4167
+ return l == null && (X = be[X.toLowerCase()] = be[X.toLowerCase()] || X, ne[X] = te), this;
4179
4168
  },
4180
4169
  // Overrides response content-type header
4181
4170
  overrideMimeType: function(X) {
4182
- return f == null && (m.mimeType = X), this;
4171
+ return l == null && (y.mimeType = X), this;
4183
4172
  },
4184
4173
  // Status-dependent callbacks
4185
4174
  statusCode: function(X) {
4186
4175
  var te;
4187
4176
  if (X)
4188
- if (f)
4177
+ if (l)
4189
4178
  U.always(X[U.status]);
4190
4179
  else
4191
4180
  for (te in X)
4192
- oe[te] = [oe[te], X[te]];
4181
+ se[te] = [se[te], X[te]];
4193
4182
  return this;
4194
4183
  },
4195
4184
  // Cancel the request
@@ -4198,47 +4187,47 @@ function Cr() {
4198
4187
  return i && i.abort(te), Fe(0, te), this;
4199
4188
  }
4200
4189
  };
4201
- if (z.promise(U), m.url = ((e || m.url || st.href) + "").replace(Pn, st.protocol + "//"), m.type = t.method || t.type || m.method || m.type, m.dataTypes = (m.dataType || "*").toLowerCase().match(ve) || [""], m.crossDomain == null) {
4190
+ if (z.promise(U), y.url = ((e || y.url || ot.href) + "").replace(Hn, ot.protocol + "//"), y.type = t.method || t.type || y.method || y.type, y.dataTypes = (y.dataType || "*").toLowerCase().match(ve) || [""], y.crossDomain == null) {
4202
4191
  c = L.createElement("a");
4203
4192
  try {
4204
- c.href = m.url, c.href = c.href, m.crossDomain = _t.protocol + "//" + _t.host != c.protocol + "//" + c.host;
4193
+ c.href = y.url, c.href = c.href, y.crossDomain = _t.protocol + "//" + _t.host != c.protocol + "//" + c.host;
4205
4194
  } catch {
4206
- m.crossDomain = !0;
4195
+ y.crossDomain = !0;
4207
4196
  }
4208
4197
  }
4209
- if (m.data && m.processData && typeof m.data != "string" && (m.data = r.param(m.data, m.traditional)), ji(Ii, m, t, U), f)
4198
+ if (y.data && y.processData && typeof y.data != "string" && (y.data = r.param(y.data, y.traditional)), Mi(Ii, y, t, U), l)
4210
4199
  return U;
4211
- h = r.event && m.global, h && r.active++ === 0 && r.event.trigger("ajaxStart"), m.type = m.type.toUpperCase(), m.hasContent = !Hn.test(m.type), n = m.url.replace(In, ""), m.hasContent ? m.data && m.processData && (m.contentType || "").indexOf("application/x-www-form-urlencoded") === 0 && (m.data = m.data.replace(Ln, "+")) : (T = m.url.slice(n.length), m.data && (m.processData || typeof m.data == "string") && (n += (Ft.test(n) ? "&" : "?") + m.data, delete m.data), m.cache === !1 && (n = n.replace(qn, "$1"), T = (Ft.test(n) ? "&" : "?") + "_=" + Di.guid++ + T), m.url = n + T), m.ifModified && (r.lastModified[n] && U.setRequestHeader("If-Modified-Since", r.lastModified[n]), r.etag[n] && U.setRequestHeader("If-None-Match", r.etag[n])), (m.data && m.hasContent && m.contentType !== !1 || t.contentType) && U.setRequestHeader("Content-Type", m.contentType), U.setRequestHeader(
4200
+ h = r.event && y.global, h && r.active++ === 0 && r.event.trigger("ajaxStart"), y.type = y.type.toUpperCase(), y.hasContent = !Mn.test(y.type), n = y.url.replace(Ln, ""), y.hasContent ? y.data && y.processData && (y.contentType || "").indexOf("application/x-www-form-urlencoded") === 0 && (y.data = y.data.replace(Nn, "+")) : (T = y.url.slice(n.length), y.data && (y.processData || typeof y.data == "string") && (n += (Ft.test(n) ? "&" : "?") + y.data, delete y.data), y.cache === !1 && (n = n.replace(In, "$1"), T = (Ft.test(n) ? "&" : "?") + "_=" + Ai.guid++ + T), y.url = n + T), y.ifModified && (r.lastModified[n] && U.setRequestHeader("If-Modified-Since", r.lastModified[n]), r.etag[n] && U.setRequestHeader("If-None-Match", r.etag[n])), (y.data && y.hasContent && y.contentType !== !1 || t.contentType) && U.setRequestHeader("Content-Type", y.contentType), U.setRequestHeader(
4212
4201
  "Accept",
4213
- m.dataTypes[0] && m.accepts[m.dataTypes[0]] ? m.accepts[m.dataTypes[0]] + (m.dataTypes[0] !== "*" ? ", " + qi + "; q=0.01" : "") : m.accepts["*"]
4202
+ y.dataTypes[0] && y.accepts[y.dataTypes[0]] ? y.accepts[y.dataTypes[0]] + (y.dataTypes[0] !== "*" ? ", " + qi + "; q=0.01" : "") : y.accepts["*"]
4214
4203
  );
4215
- for (x in m.headers)
4216
- U.setRequestHeader(x, m.headers[x]);
4217
- if (m.beforeSend && (m.beforeSend.call(S, U, m) === !1 || f))
4204
+ for (x in y.headers)
4205
+ U.setRequestHeader(x, y.headers[x]);
4206
+ if (y.beforeSend && (y.beforeSend.call(S, U, y) === !1 || l))
4218
4207
  return U.abort();
4219
- if (Te = "abort", _.add(m.complete), U.done(m.success), U.fail(m.error), i = ji(Wt, m, t, U), !i)
4208
+ if (Te = "abort", _.add(y.complete), U.done(y.success), U.fail(y.error), i = Mi(Wt, y, t, U), !i)
4220
4209
  Fe(-1, "No Transport");
4221
4210
  else {
4222
- if (U.readyState = 1, h && P.trigger("ajaxSend", [U, m]), f)
4211
+ if (U.readyState = 1, h && P.trigger("ajaxSend", [U, y]), l)
4223
4212
  return U;
4224
- m.async && m.timeout > 0 && (u = a.setTimeout(function() {
4213
+ y.async && y.timeout > 0 && (u = a.setTimeout(function() {
4225
4214
  U.abort("timeout");
4226
- }, m.timeout));
4215
+ }, y.timeout));
4227
4216
  try {
4228
- f = !1, i.send(ne, Fe);
4217
+ l = !1, i.send(ne, Fe);
4229
4218
  } catch (X) {
4230
- if (f)
4219
+ if (l)
4231
4220
  throw X;
4232
4221
  Fe(-1, X);
4233
4222
  }
4234
4223
  }
4235
4224
  function Fe(X, te, ut, Ut) {
4236
- var we, lt, Se, Ie, qe, pe = te;
4237
- f || (f = !0, u && a.clearTimeout(u), i = void 0, o = Ut || "", U.readyState = X > 0 ? 4 : 0, we = X >= 200 && X < 300 || X === 304, ut && (Ie = Fn(m, U, ut)), !we && r.inArray("script", m.dataTypes) > -1 && r.inArray("json", m.dataTypes) < 0 && (m.converters["text script"] = function() {
4238
- }), Ie = On(m, Ie, U, we), we ? (m.ifModified && (qe = U.getResponseHeader("Last-Modified"), qe && (r.lastModified[n] = qe), qe = U.getResponseHeader("etag"), qe && (r.etag[n] = qe)), X === 204 || m.type === "HEAD" ? pe = "nocontent" : X === 304 ? pe = "notmodified" : (pe = Ie.state, lt = Ie.data, Se = Ie.error, we = !Se)) : (Se = pe, (X || !pe) && (pe = "error", X < 0 && (X = 0))), U.status = X, U.statusText = (te || pe) + "", we ? z.resolveWith(S, [lt, pe, U]) : z.rejectWith(S, [U, pe, Se]), U.statusCode(oe), oe = void 0, h && P.trigger(
4225
+ var we, ft, Se, Ie, qe, pe = te;
4226
+ l || (l = !0, u && a.clearTimeout(u), i = void 0, s = Ut || "", U.readyState = X > 0 ? 4 : 0, we = X >= 200 && X < 300 || X === 304, ut && (Ie = Pn(y, U, ut)), !we && r.inArray("script", y.dataTypes) > -1 && r.inArray("json", y.dataTypes) < 0 && (y.converters["text script"] = function() {
4227
+ }), Ie = Fn(y, Ie, U, we), we ? (y.ifModified && (qe = U.getResponseHeader("Last-Modified"), qe && (r.lastModified[n] = qe), qe = U.getResponseHeader("etag"), qe && (r.etag[n] = qe)), X === 204 || y.type === "HEAD" ? pe = "nocontent" : X === 304 ? pe = "notmodified" : (pe = Ie.state, ft = Ie.data, Se = Ie.error, we = !Se)) : (Se = pe, (X || !pe) && (pe = "error", X < 0 && (X = 0))), U.status = X, U.statusText = (te || pe) + "", we ? z.resolveWith(S, [ft, pe, U]) : z.rejectWith(S, [U, pe, Se]), U.statusCode(se), se = void 0, h && P.trigger(
4239
4228
  we ? "ajaxSuccess" : "ajaxError",
4240
- [U, m, we ? lt : Se]
4241
- ), _.fireWith(S, [U, pe]), h && (P.trigger("ajaxComplete", [U, m]), --r.active || r.event.trigger("ajaxStop")));
4229
+ [U, y, we ? ft : Se]
4230
+ ), _.fireWith(S, [U, pe]), h && (P.trigger("ajaxComplete", [U, y]), --r.active || r.event.trigger("ajaxStop")));
4242
4231
  }
4243
4232
  return U;
4244
4233
  },
@@ -4249,13 +4238,13 @@ function Cr() {
4249
4238
  return r.get(e, void 0, t, "script");
4250
4239
  }
4251
4240
  }), r.each(["get", "post"], function(e, t) {
4252
- r[t] = function(i, n, o, s) {
4253
- return W(n) && (s = s || o, o = n, n = void 0), r.ajax(r.extend({
4241
+ r[t] = function(i, n, s, o) {
4242
+ return W(n) && (o = o || s, s = n, n = void 0), r.ajax(r.extend({
4254
4243
  url: i,
4255
4244
  type: t,
4256
- dataType: s,
4245
+ dataType: o,
4257
4246
  data: n,
4258
- success: o
4247
+ success: s
4259
4248
  }, r.isPlainObject(i) && i));
4260
4249
  };
4261
4250
  }), r.ajaxPrefilter(function(e) {
@@ -4320,19 +4309,19 @@ function Cr() {
4320
4309
  } catch {
4321
4310
  }
4322
4311
  };
4323
- var Wn = {
4312
+ var On = {
4324
4313
  // File protocol always yields status code 0, assume 200
4325
4314
  0: 200,
4326
4315
  // Support: IE <=9 only
4327
4316
  // trac-1450: sometimes IE returns 1223 when it should be 204
4328
4317
  1223: 204
4329
4318
  }, at = r.ajaxSettings.xhr();
4330
- j.cors = !!at && "withCredentials" in at, j.ajax = at = !!at, r.ajaxTransport(function(e) {
4319
+ M.cors = !!at && "withCredentials" in at, M.ajax = at = !!at, r.ajaxTransport(function(e) {
4331
4320
  var t, i;
4332
- if (j.cors || at && !e.crossDomain)
4321
+ if (M.cors || at && !e.crossDomain)
4333
4322
  return {
4334
- send: function(n, o) {
4335
- var s, u = e.xhr();
4323
+ send: function(n, s) {
4324
+ var o, u = e.xhr();
4336
4325
  if (u.open(
4337
4326
  e.type,
4338
4327
  e.url,
@@ -4340,19 +4329,19 @@ function Cr() {
4340
4329
  e.username,
4341
4330
  e.password
4342
4331
  ), e.xhrFields)
4343
- for (s in e.xhrFields)
4344
- u[s] = e.xhrFields[s];
4332
+ for (o in e.xhrFields)
4333
+ u[o] = e.xhrFields[o];
4345
4334
  e.mimeType && u.overrideMimeType && u.overrideMimeType(e.mimeType), !e.crossDomain && !n["X-Requested-With"] && (n["X-Requested-With"] = "XMLHttpRequest");
4346
- for (s in n)
4347
- u.setRequestHeader(s, n[s]);
4335
+ for (o in n)
4336
+ u.setRequestHeader(o, n[o]);
4348
4337
  t = function(c) {
4349
4338
  return function() {
4350
- t && (t = i = u.onload = u.onerror = u.onabort = u.ontimeout = u.onreadystatechange = null, c === "abort" ? u.abort() : c === "error" ? typeof u.status != "number" ? o(0, "error") : o(
4339
+ t && (t = i = u.onload = u.onerror = u.onabort = u.ontimeout = u.onreadystatechange = null, c === "abort" ? u.abort() : c === "error" ? typeof u.status != "number" ? s(0, "error") : s(
4351
4340
  // File: protocol always yields status 0; see trac-8605, trac-14207
4352
4341
  u.status,
4353
4342
  u.statusText
4354
- ) : o(
4355
- Wn[u.status] || u.status,
4343
+ ) : s(
4344
+ On[u.status] || u.status,
4356
4345
  u.statusText,
4357
4346
  // Support: IE <=9 only
4358
4347
  // IE9 has no XHR2 but throws on binary (trac-11426)
@@ -4397,9 +4386,9 @@ function Cr() {
4397
4386
  if (e.crossDomain || e.scriptAttrs) {
4398
4387
  var t, i;
4399
4388
  return {
4400
- send: function(n, o) {
4401
- t = r("<script>").attr(e.scriptAttrs || {}).prop({ charset: e.scriptCharset, src: e.url }).on("load error", i = function(s) {
4402
- t.remove(), i = null, s && o(s.type === "error" ? 404 : 200, s.type);
4389
+ send: function(n, s) {
4390
+ t = r("<script>").attr(e.scriptAttrs || {}).prop({ charset: e.scriptCharset, src: e.url }).on("load error", i = function(o) {
4391
+ t.remove(), i = null, o && s(o.type === "error" ? 404 : 200, o.type);
4403
4392
  }), L.head.appendChild(t[0]);
4404
4393
  },
4405
4394
  abort: function() {
@@ -4412,50 +4401,50 @@ function Cr() {
4412
4401
  r.ajaxSetup({
4413
4402
  jsonp: "callback",
4414
4403
  jsonpCallback: function() {
4415
- var e = Hi.pop() || r.expando + "_" + Di.guid++;
4404
+ var e = Hi.pop() || r.expando + "_" + Ai.guid++;
4416
4405
  return this[e] = !0, e;
4417
4406
  }
4418
4407
  }), r.ajaxPrefilter("json jsonp", function(e, t, i) {
4419
- var n, o, s, u = e.jsonp !== !1 && (Vt.test(e.url) ? "url" : typeof e.data == "string" && (e.contentType || "").indexOf("application/x-www-form-urlencoded") === 0 && Vt.test(e.data) && "data");
4408
+ var n, s, o, u = e.jsonp !== !1 && (Vt.test(e.url) ? "url" : typeof e.data == "string" && (e.contentType || "").indexOf("application/x-www-form-urlencoded") === 0 && Vt.test(e.data) && "data");
4420
4409
  if (u || e.dataTypes[0] === "jsonp")
4421
4410
  return n = e.jsonpCallback = W(e.jsonpCallback) ? e.jsonpCallback() : e.jsonpCallback, u ? e[u] = e[u].replace(Vt, "$1" + n) : e.jsonp !== !1 && (e.url += (Ft.test(e.url) ? "&" : "?") + e.jsonp + "=" + n), e.converters["script json"] = function() {
4422
- return s || r.error(n + " was not called"), s[0];
4423
- }, e.dataTypes[0] = "json", o = a[n], a[n] = function() {
4424
- s = arguments;
4411
+ return o || r.error(n + " was not called"), o[0];
4412
+ }, e.dataTypes[0] = "json", s = a[n], a[n] = function() {
4413
+ o = arguments;
4425
4414
  }, i.always(function() {
4426
- o === void 0 ? r(a).removeProp(n) : a[n] = o, e[n] && (e.jsonpCallback = t.jsonpCallback, Hi.push(n)), s && W(o) && o(s[0]), s = o = void 0;
4415
+ s === void 0 ? r(a).removeProp(n) : a[n] = s, e[n] && (e.jsonpCallback = t.jsonpCallback, Hi.push(n)), o && W(s) && s(o[0]), o = s = void 0;
4427
4416
  }), "script";
4428
- }), j.createHTMLDocument = (function() {
4417
+ }), M.createHTMLDocument = (function() {
4429
4418
  var e = L.implementation.createHTMLDocument("").body;
4430
4419
  return e.innerHTML = "<form></form><form></form>", e.childNodes.length === 2;
4431
4420
  })(), r.parseHTML = function(e, t, i) {
4432
4421
  if (typeof e != "string")
4433
4422
  return [];
4434
4423
  typeof t == "boolean" && (i = t, t = !1);
4435
- var n, o, s;
4436
- return t || (j.createHTMLDocument ? (t = L.implementation.createHTMLDocument(""), n = t.createElement("base"), n.href = L.location.href, t.head.appendChild(n)) : t = L), o = ii.exec(e), s = !i && [], o ? [t.createElement(o[1])] : (o = di([e], t, s), s && s.length && r(s).remove(), r.merge([], o.childNodes));
4424
+ var n, s, o;
4425
+ return t || (M.createHTMLDocument ? (t = L.implementation.createHTMLDocument(""), n = t.createElement("base"), n.href = L.location.href, t.head.appendChild(n)) : t = L), s = ii.exec(e), o = !i && [], s ? [t.createElement(s[1])] : (s = di([e], t, o), o && o.length && r(o).remove(), r.merge([], s.childNodes));
4437
4426
  }, r.fn.load = function(e, t, i) {
4438
- var n, o, s, u = this, c = e.indexOf(" ");
4439
- return c > -1 && (n = He(e.slice(c)), e = e.slice(0, c)), W(t) ? (i = t, t = void 0) : t && typeof t == "object" && (o = "POST"), u.length > 0 && r.ajax({
4427
+ var n, s, o, u = this, c = e.indexOf(" ");
4428
+ return c > -1 && (n = He(e.slice(c)), e = e.slice(0, c)), W(t) ? (i = t, t = void 0) : t && typeof t == "object" && (s = "POST"), u.length > 0 && r.ajax({
4440
4429
  url: e,
4441
4430
  // If "type" variable is undefined, then "GET" method will be used.
4442
4431
  // Make value of this field explicit since
4443
4432
  // user can override it through ajaxSetup method
4444
- type: o || "GET",
4433
+ type: s || "GET",
4445
4434
  dataType: "html",
4446
4435
  data: t
4447
- }).done(function(f) {
4448
- s = arguments, u.html(n ? (
4436
+ }).done(function(l) {
4437
+ o = arguments, u.html(n ? (
4449
4438
  // If a selector was specified, locate the right elements in a dummy div
4450
4439
  // Exclude scripts to avoid IE 'Permission Denied' errors
4451
- r("<div>").append(r.parseHTML(f)).find(n)
4440
+ r("<div>").append(r.parseHTML(l)).find(n)
4452
4441
  ) : (
4453
4442
  // Otherwise use the full result
4454
- f
4443
+ l
4455
4444
  ));
4456
- }).always(i && function(f, h) {
4445
+ }).always(i && function(l, h) {
4457
4446
  u.each(function() {
4458
- i.apply(this, s || [f.responseText, h, f]);
4447
+ i.apply(this, o || [l.responseText, h, l]);
4459
4448
  });
4460
4449
  }), this;
4461
4450
  }, r.expr.pseudos.animated = function(e) {
@@ -4464,15 +4453,15 @@ function Cr() {
4464
4453
  }).length;
4465
4454
  }, r.offset = {
4466
4455
  setOffset: function(e, t, i) {
4467
- var n, o, s, u, c, f, h, x = r.css(e, "position"), T = r(e), m = {};
4468
- x === "static" && (e.style.position = "relative"), c = T.offset(), s = r.css(e, "top"), f = r.css(e, "left"), h = (x === "absolute" || x === "fixed") && (s + f).indexOf("auto") > -1, h ? (n = T.position(), u = n.top, o = n.left) : (u = parseFloat(s) || 0, o = parseFloat(f) || 0), W(t) && (t = t.call(e, i, r.extend({}, c))), t.top != null && (m.top = t.top - c.top + u), t.left != null && (m.left = t.left - c.left + o), "using" in t ? t.using.call(e, m) : T.css(m);
4456
+ var n, s, o, u, c, l, h, x = r.css(e, "position"), T = r(e), y = {};
4457
+ x === "static" && (e.style.position = "relative"), c = T.offset(), o = r.css(e, "top"), l = r.css(e, "left"), h = (x === "absolute" || x === "fixed") && (o + l).indexOf("auto") > -1, h ? (n = T.position(), u = n.top, s = n.left) : (u = parseFloat(o) || 0, s = parseFloat(l) || 0), W(t) && (t = t.call(e, i, r.extend({}, c))), t.top != null && (y.top = t.top - c.top + u), t.left != null && (y.left = t.left - c.left + s), "using" in t ? t.using.call(e, y) : T.css(y);
4469
4458
  }
4470
4459
  }, r.fn.extend({
4471
4460
  // offset() relates an element's border box to the document origin
4472
4461
  offset: function(e) {
4473
4462
  if (arguments.length)
4474
- return e === void 0 ? this : this.each(function(o) {
4475
- r.offset.setOffset(this, e, o);
4463
+ return e === void 0 ? this : this.each(function(s) {
4464
+ r.offset.setOffset(this, e, s);
4476
4465
  });
4477
4466
  var t, i, n = this[0];
4478
4467
  if (n)
@@ -4485,17 +4474,17 @@ function Cr() {
4485
4474
  // This corresponds to the behavior of CSS absolute positioning
4486
4475
  position: function() {
4487
4476
  if (this[0]) {
4488
- var e, t, i, n = this[0], o = { top: 0, left: 0 };
4477
+ var e, t, i, n = this[0], s = { top: 0, left: 0 };
4489
4478
  if (r.css(n, "position") === "fixed")
4490
4479
  t = n.getBoundingClientRect();
4491
4480
  else {
4492
4481
  for (t = this.offset(), i = n.ownerDocument, e = n.offsetParent || i.documentElement; e && (e === i.body || e === i.documentElement) && r.css(e, "position") === "static"; )
4493
4482
  e = e.parentNode;
4494
- e && e !== n && e.nodeType === 1 && (o = r(e).offset(), o.top += r.css(e, "borderTopWidth", !0), o.left += r.css(e, "borderLeftWidth", !0));
4483
+ e && e !== n && e.nodeType === 1 && (s = r(e).offset(), s.top += r.css(e, "borderTopWidth", !0), s.left += r.css(e, "borderLeftWidth", !0));
4495
4484
  }
4496
4485
  return {
4497
- top: t.top - o.top - r.css(n, "marginTop", !0),
4498
- left: t.left - o.left - r.css(n, "marginLeft", !0)
4486
+ top: t.top - s.top - r.css(n, "marginTop", !0),
4487
+ left: t.left - s.left - r.css(n, "marginLeft", !0)
4499
4488
  };
4500
4489
  }
4501
4490
  },
@@ -4513,25 +4502,25 @@ function Cr() {
4513
4502
  return this.map(function() {
4514
4503
  for (var e = this.offsetParent; e && r.css(e, "position") === "static"; )
4515
4504
  e = e.offsetParent;
4516
- return e || je;
4505
+ return e || Me;
4517
4506
  });
4518
4507
  }
4519
4508
  }), r.each({ scrollLeft: "pageXOffset", scrollTop: "pageYOffset" }, function(e, t) {
4520
4509
  var i = t === "pageYOffset";
4521
4510
  r.fn[e] = function(n) {
4522
- return Ee(this, function(o, s, u) {
4511
+ return Ee(this, function(s, o, u) {
4523
4512
  var c;
4524
- if (Ne(o) ? c = o : o.nodeType === 9 && (c = o.defaultView), u === void 0)
4525
- return c ? c[t] : o[s];
4513
+ if (Ne(s) ? c = s : s.nodeType === 9 && (c = s.defaultView), u === void 0)
4514
+ return c ? c[t] : s[o];
4526
4515
  c ? c.scrollTo(
4527
4516
  i ? c.pageXOffset : u,
4528
4517
  i ? u : c.pageYOffset
4529
- ) : o[s] = u;
4518
+ ) : s[o] = u;
4530
4519
  }, e, n, arguments.length);
4531
4520
  };
4532
4521
  }), r.each(["top", "left"], function(e, t) {
4533
4522
  r.cssHooks[t] = vi(
4534
- j.pixelPosition,
4523
+ M.pixelPosition,
4535
4524
  function(i, n) {
4536
4525
  if (n)
4537
4526
  return n = rt(i, t), It.test(n) ? r(i).position()[t] + "px" : n;
@@ -4543,24 +4532,24 @@ function Cr() {
4543
4532
  content: t,
4544
4533
  "": "outer" + e
4545
4534
  }, function(i, n) {
4546
- r.fn[n] = function(o, s) {
4547
- var u = arguments.length && (i || typeof o != "boolean"), c = i || (o === !0 || s === !0 ? "margin" : "border");
4548
- return Ee(this, function(f, h, x) {
4535
+ r.fn[n] = function(s, o) {
4536
+ var u = arguments.length && (i || typeof s != "boolean"), c = i || (s === !0 || o === !0 ? "margin" : "border");
4537
+ return Ee(this, function(l, h, x) {
4549
4538
  var T;
4550
- return Ne(f) ? n.indexOf("outer") === 0 ? f["inner" + e] : f.document.documentElement["client" + e] : f.nodeType === 9 ? (T = f.documentElement, Math.max(
4551
- f.body["scroll" + e],
4539
+ return Ne(l) ? n.indexOf("outer") === 0 ? l["inner" + e] : l.document.documentElement["client" + e] : l.nodeType === 9 ? (T = l.documentElement, Math.max(
4540
+ l.body["scroll" + e],
4552
4541
  T["scroll" + e],
4553
- f.body["offset" + e],
4542
+ l.body["offset" + e],
4554
4543
  T["offset" + e],
4555
4544
  T["client" + e]
4556
4545
  )) : x === void 0 ? (
4557
4546
  // Get width or height on the element, requesting but not forcing parseFloat
4558
- r.css(f, h, c)
4547
+ r.css(l, h, c)
4559
4548
  ) : (
4560
4549
  // Set width or height on the element
4561
- r.style(f, h, x, c)
4550
+ r.style(l, h, x, c)
4562
4551
  );
4563
- }, t, u ? o : void 0, u);
4552
+ }, t, u ? s : void 0, u);
4564
4553
  };
4565
4554
  });
4566
4555
  }), r.each([
@@ -4598,13 +4587,13 @@ function Cr() {
4598
4587
  };
4599
4588
  }
4600
4589
  );
4601
- var _n = /^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;
4590
+ var Wn = /^[\s\uFEFF\xA0]+|([^\s\uFEFF\xA0])[\s\uFEFF\xA0]+$/g;
4602
4591
  r.proxy = function(e, t) {
4603
- var i, n, o;
4592
+ var i, n, s;
4604
4593
  if (typeof t == "string" && (i = e[t], t = e, e = i), !!W(e))
4605
- return n = w.call(arguments, 2), o = function() {
4594
+ return n = w.call(arguments, 2), s = function() {
4606
4595
  return e.apply(t || this, n.concat(w.call(arguments)));
4607
- }, o.guid = e.guid = e.guid || r.guid++, o;
4596
+ }, s.guid = e.guid = e.guid || r.guid++, s;
4608
4597
  }, r.holdReady = function(e) {
4609
4598
  e ? r.readyWait++ : r.ready(!0);
4610
4599
  }, r.isArray = Array.isArray, r.parseJSON = JSON.parse, r.nodeName = K, r.isFunction = W, r.isWindow = Ne, r.camelCase = xe, r.type = We, r.now = Date.now, r.isNumeric = function(e) {
@@ -4614,18 +4603,18 @@ function Cr() {
4614
4603
  // subtraction forces infinities to NaN
4615
4604
  !isNaN(e - parseFloat(e));
4616
4605
  }, r.trim = function(e) {
4617
- return e == null ? "" : (e + "").replace(_n, "$1");
4606
+ return e == null ? "" : (e + "").replace(Wn, "$1");
4618
4607
  };
4619
- var Bn = a.jQuery, Vn = a.$;
4608
+ var _n = a.jQuery, Bn = a.$;
4620
4609
  return r.noConflict = function(e) {
4621
- return a.$ === r && (a.$ = Vn), e && a.jQuery === r && (a.jQuery = Bn), r;
4610
+ return a.$ === r && (a.$ = Bn), e && a.jQuery === r && (a.jQuery = _n), r;
4622
4611
  }, typeof p > "u" && (a.jQuery = a.$ = r), r;
4623
4612
  });
4624
4613
  })(kt)), kt.exports;
4625
4614
  }
4626
4615
  var kr = Cr();
4627
4616
  const Er = /* @__PURE__ */ wr(kr);
4628
- class Ar {
4617
+ class Dr {
4629
4618
  constructor() {
4630
4619
  this.canvasEl = null, this.opt = null, this.el = null, this.$el = null, this.player = null, console.log("MnPlayer constructor");
4631
4620
  }
@@ -4660,14 +4649,14 @@ class Ar {
4660
4649
  let a = document.createElement("canvas");
4661
4650
  if (this.canvasEl = a, a.setAttribute("class", "display"), !this.el)
4662
4651
  throw new Error("Element not initialized. Please call init() first.");
4663
- let p = this.el.clientHeight, y = this.el.clientWidth, k = window.devicePixelRatio || 1;
4664
- a.style.height = p + "px", a.style.width = y + "px", a.height = p * k, a.width = y * k, this.el.innerHTML = "", this.el.appendChild(a);
4652
+ let p = this.el.clientHeight, m = this.el.clientWidth, k = window.devicePixelRatio || 1;
4653
+ a.style.height = p + "px", a.style.width = m + "px", a.height = p * k, a.width = m * k, this.el.innerHTML = "", this.el.appendChild(a);
4665
4654
  }
4666
4655
  resetCanvas() {
4667
4656
  if (!this.canvasEl)
4668
4657
  throw new Error("Canvas not initialized. Please call init() first.");
4669
- let a = this.el.clientHeight, p = this.el.clientWidth, y = window.devicePixelRatio || 1;
4670
- this.canvasEl.style.height = a + "px", this.canvasEl.style.width = p + "px", this.canvasEl.height = a * y, this.canvasEl.width = p * y;
4658
+ let a = this.el.clientHeight, p = this.el.clientWidth, m = window.devicePixelRatio || 1;
4659
+ this.canvasEl.style.height = a + "px", this.canvasEl.style.width = p + "px", this.canvasEl.height = a * m, this.canvasEl.width = p * m;
4671
4660
  }
4672
4661
  removeDom() {
4673
4662
  this.canvasEl && (this.canvasEl.remove(), this.canvasEl = null), this.el && (this.el.innerHTML = "");
@@ -4675,15 +4664,15 @@ class Ar {
4675
4664
  play(a) {
4676
4665
  if (!this.opt)
4677
4666
  throw new Error("Options not initialized. Please call init() first.");
4678
- this.player || (console.log("重新生成player"), this.initDom(), this.player = new ee(
4667
+ this.player || (this.initDom(), this.player = new ee(
4679
4668
  this.opt.phone,
4680
4669
  this.opt.channelNo,
4681
4670
  this.$el,
4682
4671
  this.canvasEl,
4683
4672
  this.opt.lang || ""
4684
- )), console.log("opt?.streamType", a?.streamType);
4673
+ ));
4685
4674
  let p = a?.streamType !== void 0 ? a.streamType : 1;
4686
- a?.streamType === 0 && (p = 0), this.player.play(0, p, a?.beginTime), console.log("this.player", this.player);
4675
+ a?.streamType === 0 && (p = 0), this.player.play(0, p, a?.beginTime);
4687
4676
  }
4688
4677
  pause() {
4689
4678
  console.log("MnPlayer pause"), this.player && this.player.pause();
@@ -4708,7 +4697,7 @@ class Ar {
4708
4697
  }
4709
4698
  }
4710
4699
  export {
4711
- Ar as MnVideoPlayer,
4712
- Ar as default
4700
+ Dr as MnVideoPlayer,
4701
+ Dr as default
4713
4702
  };
4714
4703
  //# sourceMappingURL=mn-video-player.es.js.map