@smileid/web-components 11.4.5 → 11.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/dist/esm/{DocumentCaptureScreens-D2G0NOQr.js → DocumentCaptureScreens-ucJDu5nH.js} +555 -2470
  2. package/dist/esm/DocumentCaptureScreens-ucJDu5nH.js.map +1 -0
  3. package/dist/esm/{EndUserConsent-uHfA3txP.js → EndUserConsent-CsiwoThZ.js} +3 -3
  4. package/dist/esm/{EndUserConsent-uHfA3txP.js.map → EndUserConsent-CsiwoThZ.js.map} +1 -1
  5. package/dist/esm/{Navigation-Bb7MPLE8.js → Navigation-Xg565kcu.js} +28 -22
  6. package/dist/esm/Navigation-Xg565kcu.js.map +1 -0
  7. package/dist/esm/SelfieCaptureScreens-D3KuMzZA.js +11471 -0
  8. package/dist/esm/SelfieCaptureScreens-D3KuMzZA.js.map +1 -0
  9. package/dist/esm/{TotpConsent-Depzg0ti.js → TotpConsent-CRtmtudl.js} +2 -2
  10. package/dist/esm/{TotpConsent-Depzg0ti.js.map → TotpConsent-CRtmtudl.js.map} +1 -1
  11. package/dist/esm/combobox.js +1 -1
  12. package/dist/esm/document.js +1 -1
  13. package/dist/esm/end-user-consent.js +1 -1
  14. package/dist/esm/index-CUwa6MPI.js +1363 -0
  15. package/dist/esm/{index-C4RTMbgw.js.map → index-CUwa6MPI.js.map} +1 -1
  16. package/dist/esm/localisation.js +1 -1
  17. package/dist/esm/main.js +6 -6
  18. package/dist/esm/navigation.js +1 -1
  19. package/dist/esm/package-BmVbDNny.js +2535 -0
  20. package/dist/esm/package-BmVbDNny.js.map +1 -0
  21. package/dist/esm/selfie.js +1 -1
  22. package/dist/esm/smart-camera-web.js +67 -37
  23. package/dist/esm/smart-camera-web.js.map +1 -1
  24. package/dist/esm/totp-consent.js +1 -1
  25. package/dist/smart-camera-web.js +877 -122
  26. package/dist/smart-camera-web.js.map +1 -1
  27. package/dist/types/main.d.ts +11 -0
  28. package/lib/components/navigation/src/Navigation.js +27 -8
  29. package/lib/components/selfie/src/SelfieCaptureScreens.js +56 -8
  30. package/lib/components/selfie/src/enhanced-smartselfie-capture/EnhancedSmartSelfieCapture.tsx +684 -0
  31. package/lib/components/selfie/src/enhanced-smartselfie-capture/EnhancedSmartSelfieConsent.tsx +71 -0
  32. package/lib/components/selfie/src/enhanced-smartselfie-capture/EnhancedSmartSelfieSubmission.tsx +181 -0
  33. package/lib/components/selfie/src/enhanced-smartselfie-capture/OvalProgress.tsx +87 -0
  34. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/Icon.svg +8 -0
  35. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/accessories.svg +77 -0
  36. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/active_liveness_animation.lottie +0 -0
  37. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/device.svg +12 -0
  38. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/device_orientation.lottie +0 -0
  39. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/good.svg +52 -0
  40. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/id-card.svg +9 -0
  41. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/illustrations.tsx +852 -0
  42. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/instructions-img.svg +3 -0
  43. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/multiple-faces.svg +69 -0
  44. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/person.svg +6 -0
  45. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/phone.svg +8 -0
  46. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/poor-lighting.svg +53 -0
  47. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/too_dark_animation.lottie +0 -0
  48. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/ActiveLivenessOverlay.tsx +226 -0
  49. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/AlertDisplay.tsx +38 -0
  50. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/BackNavigation.tsx +45 -0
  51. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/CameraPreview.tsx +96 -0
  52. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/CaptureControls.tsx +97 -0
  53. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/CaptureGuidelines.tsx +374 -0
  54. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/ConsentView.tsx +460 -0
  55. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/SubmissionView.tsx +426 -0
  56. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/index.ts +3 -0
  57. package/lib/components/selfie/src/enhanced-smartselfie-capture/constants.ts +23 -0
  58. package/lib/components/selfie/src/enhanced-smartselfie-capture/hooks/index.ts +2 -0
  59. package/lib/components/selfie/src/enhanced-smartselfie-capture/hooks/useCamera.ts +238 -0
  60. package/lib/components/selfie/src/enhanced-smartselfie-capture/hooks/useFaceCapture.ts +1075 -0
  61. package/lib/components/selfie/src/enhanced-smartselfie-capture/index.ts +1 -0
  62. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/alertMessages.ts +20 -0
  63. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/canvas.ts +108 -0
  64. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/faceDetection.ts +545 -0
  65. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/imageCapture.ts +66 -0
  66. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/imageQuality.ts +151 -0
  67. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/index.ts +5 -0
  68. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/mediapipeManager.ts +215 -0
  69. package/lib/components/selfie/src/selfie-capture-wrapper/SelfieCaptureWrapper.tsx +24 -1
  70. package/lib/components/selfie/src/smartselfie-capture/SmartSelfieCapture.tsx +2 -2
  71. package/lib/components/selfie/src/smartselfie-capture/hooks/useFaceCapture.ts +15 -7
  72. package/lib/components/selfie/src/smartselfie-capture/utils/canvas.ts +4 -6
  73. package/lib/components/signature-pad/package.json +1 -1
  74. package/lib/components/smart-camera-web/src/SmartCameraWeb.js +64 -7
  75. package/lib/domain/localisation/index.js +2 -2
  76. package/package.json +2 -2
  77. package/dist/esm/DocumentCaptureScreens-D2G0NOQr.js.map +0 -1
  78. package/dist/esm/Navigation-Bb7MPLE8.js.map +0 -1
  79. package/dist/esm/SelfieCaptureScreens-Dr7VzON7.js +0 -7651
  80. package/dist/esm/SelfieCaptureScreens-Dr7VzON7.js.map +0 -1
  81. package/dist/esm/index-C4RTMbgw.js +0 -1360
  82. package/dist/esm/package-D6YrpMcO.js +0 -565
  83. package/dist/esm/package-D6YrpMcO.js.map +0 -1
@@ -0,0 +1,2535 @@
1
+ import { t as K } from "./index-CUwa6MPI.js";
2
+ const c4 = {
3
+ /** ID_CARD_BACK_IMAGE_BASE64 Base64 encoded back of ID card image (.jpg or .png) */
4
+ ID_CARD_BACK_IMAGE_BASE64: 7,
5
+ /** ID_CARD_BACK_IMAGE_FILE Back of ID card image in .png or .jpg file format */
6
+ ID_CARD_BACK_IMAGE_FILE: 5,
7
+ /** ID_CARD_IMAGE_BASE64 Base64 encoded ID card image (.png or .jpg) */
8
+ ID_CARD_IMAGE_BASE64: 3,
9
+ /** ID_CARD_IMAGE_FILE ID card image in .png or .jpg file format */
10
+ ID_CARD_IMAGE_FILE: 1,
11
+ /** LIVENESS_IMAGE_BASE64 Base64 encoded liveness image (.jpg or .png) */
12
+ LIVENESS_IMAGE_BASE64: 6,
13
+ /** LIVENESS_IMAGE_FILE Liveness image in .png or .jpg file format */
14
+ LIVENESS_IMAGE_FILE: 4,
15
+ /** SELFIE_IMAGE_BASE64 Base64 encoded selfie image (.png or .jpg) */
16
+ SELFIE_IMAGE_BASE64: 2,
17
+ /** SELFIE_IMAGE_FILE Selfie image in .png or .jpg file format */
18
+ SELFIE_IMAGE_FILE: 0
19
+ }, u4 = 0.92;
20
+ class z {
21
+ static stream = null;
22
+ static async getMedia(e) {
23
+ return z.stream = await navigator.mediaDevices.getUserMedia(e), z.stream;
24
+ }
25
+ static environmentOptions = {
26
+ facingMode: "environment",
27
+ height: {
28
+ ideal: 1080,
29
+ max: 1440,
30
+ min: 720
31
+ },
32
+ width: {
33
+ ideal: 1920,
34
+ max: 2560,
35
+ min: 1280
36
+ },
37
+ // NOTE: Special case for multi-camera Samsung devices (learnt from Acuant)
38
+ // "We found out that some triple camera Samsung devices (S10, S20, Note 20, etc) capture images blurry at edges.
39
+ // Zooming to 2X, matching the telephoto lens, doesn't solve it completely but mitigates it."
40
+ zoom: z.isSamsungMultiCameraDevice() ? 2 : 1
41
+ };
42
+ static stopMedia() {
43
+ z.stream && (z.stream.getTracks().forEach((e) => e.stop()), z.stream = null);
44
+ }
45
+ static async supportsAgentMode() {
46
+ try {
47
+ const n = (await navigator.mediaDevices.enumerateDevices()).filter(
48
+ (r) => r.kind === "videoinput"
49
+ );
50
+ let i = !1;
51
+ return n.forEach((r) => r.label.toLowerCase().includes("back") || r.label.toLowerCase().includes("rear") ? (i = !0, !0) : !1), i;
52
+ } catch (e) {
53
+ return console.warn("Error accessing media devices: ", e), !1;
54
+ }
55
+ }
56
+ static isSamsungMultiCameraDevice() {
57
+ const e = navigator.userAgent.match(/SM-[N|G]\d{3}/);
58
+ if (!e)
59
+ return !1;
60
+ const n = parseInt(e[0].match(/\d{3}/)[0], 10);
61
+ return !Number.isNaN(n) && n >= 970;
62
+ }
63
+ static handleCameraError(e) {
64
+ switch (e.name) {
65
+ case "NotAllowedError":
66
+ case "SecurityError":
67
+ return K("camera.error.notAllowed");
68
+ case "AbortError":
69
+ return K("camera.error.abort");
70
+ case "NotReadableError":
71
+ return K("camera.error.notReadable");
72
+ case "NotFoundError":
73
+ return K("camera.error.notFound");
74
+ case "TypeError":
75
+ return K("camera.error.insecure");
76
+ default:
77
+ return e.message;
78
+ }
79
+ }
80
+ }
81
+ var s1, v, n0, M0, N, F1, i0, s0, r0, E1, L1, C1, e1 = {}, a0 = [], I0 = /acit|ex(?:s|g|n|p|$)|rph|grid|ows|mnc|ntw|ine[ch]|zoo|^ord|itera/i, r1 = Array.isArray;
82
+ function $(t, e) {
83
+ for (var n in e) t[n] = e[n];
84
+ return t;
85
+ }
86
+ function k1(t) {
87
+ t && t.parentNode && t.parentNode.removeChild(t);
88
+ }
89
+ function q(t, e, n) {
90
+ var i, r, a, o = {};
91
+ for (a in e) a == "key" ? i = e[a] : a == "ref" ? r = e[a] : o[a] = e[a];
92
+ if (arguments.length > 2 && (o.children = arguments.length > 3 ? s1.call(arguments, 2) : n), typeof t == "function" && t.defaultProps != null) for (a in t.defaultProps) o[a] === void 0 && (o[a] = t.defaultProps[a]);
93
+ return Z(t, o, i, r, null);
94
+ }
95
+ function Z(t, e, n, i, r) {
96
+ var a = { type: t, props: e, key: n, ref: i, __k: null, __: null, __b: 0, __e: null, __c: null, constructor: void 0, __v: r ?? ++n0, __i: -1, __u: 0 };
97
+ return r == null && v.vnode != null && v.vnode(a), a;
98
+ }
99
+ function p1(t) {
100
+ return t.children;
101
+ }
102
+ function l1(t, e) {
103
+ this.props = t, this.context = e;
104
+ }
105
+ function j(t, e) {
106
+ if (e == null) return t.__ ? j(t.__, t.__i + 1) : null;
107
+ for (var n; e < t.__k.length; e++) if ((n = t.__k[e]) != null && n.__e != null) return n.__e;
108
+ return typeof t.type == "function" ? j(t) : null;
109
+ }
110
+ function o0(t) {
111
+ var e, n;
112
+ if ((t = t.__) != null && t.__c != null) {
113
+ for (t.__e = t.__c.base = null, e = 0; e < t.__k.length; e++) if ((n = t.__k[e]) != null && n.__e != null) {
114
+ t.__e = t.__c.base = n.__e;
115
+ break;
116
+ }
117
+ return o0(t);
118
+ }
119
+ }
120
+ function $1(t) {
121
+ (!t.__d && (t.__d = !0) && N.push(t) && !c1.__r++ || F1 != v.debounceRendering) && ((F1 = v.debounceRendering) || i0)(c1);
122
+ }
123
+ function c1() {
124
+ for (var t, e, n, i, r, a, o, l = 1; N.length; ) N.length > l && N.sort(s0), t = N.shift(), l = N.length, t.__d && (n = void 0, i = void 0, r = (i = (e = t).__v).__e, a = [], o = [], e.__P && ((n = $({}, i)).__v = i.__v + 1, v.vnode && v.vnode(n), x1(e.__P, n, i, e.__n, e.__P.namespaceURI, 32 & i.__u ? [r] : null, a, r ?? j(i), !!(32 & i.__u), o), n.__v = i.__v, n.__.__k[n.__i] = n, d0(a, n, o), i.__e = i.__ = null, n.__e != r && o0(n)));
125
+ c1.__r = 0;
126
+ }
127
+ function _0(t, e, n, i, r, a, o, l, h, d, p) {
128
+ var _, g, m, C, O, M, w, b = i && i.__k || a0, T = e.length;
129
+ for (h = S0(n, e, b, h, T), _ = 0; _ < T; _++) (m = n.__k[_]) != null && (g = m.__i == -1 ? e1 : b[m.__i] || e1, m.__i = _, M = x1(t, m, g, r, a, o, l, h, d, p), C = m.__e, m.ref && g.ref != m.ref && (g.ref && P1(g.ref, null, m), p.push(m.ref, m.__c || C, m)), O == null && C != null && (O = C), (w = !!(4 & m.__u)) || g.__k === m.__k ? h = l0(m, h, t, w) : typeof m.type == "function" && M !== void 0 ? h = M : C && (h = C.nextSibling), m.__u &= -7);
130
+ return n.__e = O, h;
131
+ }
132
+ function S0(t, e, n, i, r) {
133
+ var a, o, l, h, d, p = n.length, _ = p, g = 0;
134
+ for (t.__k = new Array(r), a = 0; a < r; a++) (o = e[a]) != null && typeof o != "boolean" && typeof o != "function" ? (h = a + g, (o = t.__k[a] = typeof o == "string" || typeof o == "number" || typeof o == "bigint" || o.constructor == String ? Z(null, o, null, null, null) : r1(o) ? Z(p1, { children: o }, null, null, null) : o.constructor === void 0 && o.__b > 0 ? Z(o.type, o.props, o.key, o.ref ? o.ref : null, o.__v) : o).__ = t, o.__b = t.__b + 1, l = null, (d = o.__i = k0(o, n, h, _)) != -1 && (_--, (l = n[d]) && (l.__u |= 2)), l == null || l.__v == null ? (d == -1 && (r > p ? g-- : r < p && g++), typeof o.type != "function" && (o.__u |= 4)) : d != h && (d == h - 1 ? g-- : d == h + 1 ? g++ : (d > h ? g-- : g++, o.__u |= 4))) : t.__k[a] = null;
135
+ if (_) for (a = 0; a < p; a++) (l = n[a]) != null && (2 & l.__u) == 0 && (l.__e == i && (i = j(l)), c0(l, l));
136
+ return i;
137
+ }
138
+ function l0(t, e, n, i) {
139
+ var r, a;
140
+ if (typeof t.type == "function") {
141
+ for (r = t.__k, a = 0; r && a < r.length; a++) r[a] && (r[a].__ = t, e = l0(r[a], e, n, i));
142
+ return e;
143
+ }
144
+ t.__e != e && (i && (e && t.type && !e.parentNode && (e = j(t)), n.insertBefore(t.__e, e || null)), e = t.__e);
145
+ do
146
+ e = e && e.nextSibling;
147
+ while (e != null && e.nodeType == 8);
148
+ return e;
149
+ }
150
+ function E0(t, e) {
151
+ return e = e || [], t == null || typeof t == "boolean" || (r1(t) ? t.some(function(n) {
152
+ E0(n, e);
153
+ }) : e.push(t)), e;
154
+ }
155
+ function k0(t, e, n, i) {
156
+ var r, a, o, l = t.key, h = t.type, d = e[n], p = d != null && (2 & d.__u) == 0;
157
+ if (d === null && t.key == null || p && l == d.key && h == d.type) return n;
158
+ if (i > (p ? 1 : 0)) {
159
+ for (r = n - 1, a = n + 1; r >= 0 || a < e.length; ) if ((d = e[o = r >= 0 ? r-- : a++]) != null && (2 & d.__u) == 0 && l == d.key && h == d.type) return o;
160
+ }
161
+ return -1;
162
+ }
163
+ function T1(t, e, n) {
164
+ e[0] == "-" ? t.setProperty(e, n ?? "") : t[e] = n == null ? "" : typeof n != "number" || I0.test(e) ? n : n + "px";
165
+ }
166
+ function _1(t, e, n, i, r) {
167
+ var a, o;
168
+ t: if (e == "style") if (typeof n == "string") t.style.cssText = n;
169
+ else {
170
+ if (typeof i == "string" && (t.style.cssText = i = ""), i) for (e in i) n && e in n || T1(t.style, e, "");
171
+ if (n) for (e in n) i && n[e] == i[e] || T1(t.style, e, n[e]);
172
+ }
173
+ else if (e[0] == "o" && e[1] == "n") a = e != (e = e.replace(r0, "$1")), o = e.toLowerCase(), e = o in t || e == "onFocusOut" || e == "onFocusIn" ? o.slice(2) : e.slice(2), t.l || (t.l = {}), t.l[e + a] = n, n ? i ? n.u = i.u : (n.u = E1, t.addEventListener(e, a ? C1 : L1, a)) : t.removeEventListener(e, a ? C1 : L1, a);
174
+ else {
175
+ if (r == "http://www.w3.org/2000/svg") e = e.replace(/xlink(H|:h)/, "h").replace(/sName$/, "s");
176
+ else if (e != "width" && e != "height" && e != "href" && e != "list" && e != "form" && e != "tabIndex" && e != "download" && e != "rowSpan" && e != "colSpan" && e != "role" && e != "popover" && e in t) try {
177
+ t[e] = n ?? "";
178
+ break t;
179
+ } catch {
180
+ }
181
+ typeof n == "function" || (n == null || n === !1 && e[4] != "-" ? t.removeAttribute(e) : t.setAttribute(e, e == "popover" && n == 1 ? "" : n));
182
+ }
183
+ }
184
+ function R1(t) {
185
+ return function(e) {
186
+ if (this.l) {
187
+ var n = this.l[e.type + t];
188
+ if (e.t == null) e.t = E1++;
189
+ else if (e.t < n.u) return;
190
+ return n(v.event ? v.event(e) : e);
191
+ }
192
+ };
193
+ }
194
+ function x1(t, e, n, i, r, a, o, l, h, d) {
195
+ var p, _, g, m, C, O, M, w, b, T, R, a1, V, D1, o1, J, f1, F = e.type;
196
+ if (e.constructor !== void 0) return null;
197
+ 128 & n.__u && (h = !!(32 & n.__u), a = [l = e.__e = n.__e]), (p = v.__b) && p(e);
198
+ t: if (typeof F == "function") try {
199
+ if (w = e.props, b = "prototype" in F && F.prototype.render, T = (p = F.contextType) && i[p.__c], R = p ? T ? T.props.value : p.__ : i, n.__c ? M = (_ = e.__c = n.__c).__ = _.__E : (b ? e.__c = _ = new F(w, R) : (e.__c = _ = new l1(w, R), _.constructor = F, _.render = P0), T && T.sub(_), _.props = w, _.state || (_.state = {}), _.context = R, _.__n = i, g = _.__d = !0, _.__h = [], _._sb = []), b && _.__s == null && (_.__s = _.state), b && F.getDerivedStateFromProps != null && (_.__s == _.state && (_.__s = $({}, _.__s)), $(_.__s, F.getDerivedStateFromProps(w, _.__s))), m = _.props, C = _.state, _.__v = e, g) b && F.getDerivedStateFromProps == null && _.componentWillMount != null && _.componentWillMount(), b && _.componentDidMount != null && _.__h.push(_.componentDidMount);
200
+ else {
201
+ if (b && F.getDerivedStateFromProps == null && w !== m && _.componentWillReceiveProps != null && _.componentWillReceiveProps(w, R), !_.__e && _.shouldComponentUpdate != null && _.shouldComponentUpdate(w, _.__s, R) === !1 || e.__v == n.__v) {
202
+ for (e.__v != n.__v && (_.props = w, _.state = _.__s, _.__d = !1), e.__e = n.__e, e.__k = n.__k, e.__k.some(function(G) {
203
+ G && (G.__ = e);
204
+ }), a1 = 0; a1 < _._sb.length; a1++) _.__h.push(_._sb[a1]);
205
+ _._sb = [], _.__h.length && o.push(_);
206
+ break t;
207
+ }
208
+ _.componentWillUpdate != null && _.componentWillUpdate(w, _.__s, R), b && _.componentDidUpdate != null && _.__h.push(function() {
209
+ _.componentDidUpdate(m, C, O);
210
+ });
211
+ }
212
+ if (_.context = R, _.props = w, _.__P = t, _.__e = !1, V = v.__r, D1 = 0, b) {
213
+ for (_.state = _.__s, _.__d = !1, V && V(e), p = _.render(_.props, _.state, _.context), o1 = 0; o1 < _._sb.length; o1++) _.__h.push(_._sb[o1]);
214
+ _._sb = [];
215
+ } else do
216
+ _.__d = !1, V && V(e), p = _.render(_.props, _.state, _.context), _.state = _.__s;
217
+ while (_.__d && ++D1 < 25);
218
+ _.state = _.__s, _.getChildContext != null && (i = $($({}, i), _.getChildContext())), b && !g && _.getSnapshotBeforeUpdate != null && (O = _.getSnapshotBeforeUpdate(m, C)), J = p, p != null && p.type === p1 && p.key == null && (J = h0(p.props.children)), l = _0(t, r1(J) ? J : [J], e, n, i, r, a, o, l, h, d), _.base = e.__e, e.__u &= -161, _.__h.length && o.push(_), M && (_.__E = _.__ = null);
219
+ } catch (G) {
220
+ if (e.__v = null, h || a != null) if (G.then) {
221
+ for (e.__u |= h ? 160 : 128; l && l.nodeType == 8 && l.nextSibling; ) l = l.nextSibling;
222
+ a[a.indexOf(l)] = null, e.__e = l;
223
+ } else {
224
+ for (f1 = a.length; f1--; ) k1(a[f1]);
225
+ M1(e);
226
+ }
227
+ else e.__e = n.__e, e.__k = n.__k, G.then || M1(e);
228
+ v.__e(G, e, n);
229
+ }
230
+ else a == null && e.__v == n.__v ? (e.__k = n.__k, e.__e = n.__e) : l = e.__e = x0(n.__e, e, n, i, r, a, o, h, d);
231
+ return (p = v.diffed) && p(e), 128 & e.__u ? void 0 : l;
232
+ }
233
+ function M1(t) {
234
+ t && t.__c && (t.__c.__e = !0), t && t.__k && t.__k.forEach(M1);
235
+ }
236
+ function d0(t, e, n) {
237
+ for (var i = 0; i < n.length; i++) P1(n[i], n[++i], n[++i]);
238
+ v.__c && v.__c(e, t), t.some(function(r) {
239
+ try {
240
+ t = r.__h, r.__h = [], t.some(function(a) {
241
+ a.call(r);
242
+ });
243
+ } catch (a) {
244
+ v.__e(a, r.__v);
245
+ }
246
+ });
247
+ }
248
+ function h0(t) {
249
+ return typeof t != "object" || t == null || t.__b && t.__b > 0 ? t : r1(t) ? t.map(h0) : $({}, t);
250
+ }
251
+ function x0(t, e, n, i, r, a, o, l, h) {
252
+ var d, p, _, g, m, C, O, M = n.props, w = e.props, b = e.type;
253
+ if (b == "svg" ? r = "http://www.w3.org/2000/svg" : b == "math" ? r = "http://www.w3.org/1998/Math/MathML" : r || (r = "http://www.w3.org/1999/xhtml"), a != null) {
254
+ for (d = 0; d < a.length; d++) if ((m = a[d]) && "setAttribute" in m == !!b && (b ? m.localName == b : m.nodeType == 3)) {
255
+ t = m, a[d] = null;
256
+ break;
257
+ }
258
+ }
259
+ if (t == null) {
260
+ if (b == null) return document.createTextNode(w);
261
+ t = document.createElementNS(r, b, w.is && w), l && (v.__m && v.__m(e, a), l = !1), a = null;
262
+ }
263
+ if (b == null) M === w || l && t.data == w || (t.data = w);
264
+ else {
265
+ if (a = a && s1.call(t.childNodes), M = n.props || e1, !l && a != null) for (M = {}, d = 0; d < t.attributes.length; d++) M[(m = t.attributes[d]).name] = m.value;
266
+ for (d in M) if (m = M[d], d != "children") {
267
+ if (d == "dangerouslySetInnerHTML") _ = m;
268
+ else if (!(d in w)) {
269
+ if (d == "value" && "defaultValue" in w || d == "checked" && "defaultChecked" in w) continue;
270
+ _1(t, d, null, m, r);
271
+ }
272
+ }
273
+ for (d in w) m = w[d], d == "children" ? g = m : d == "dangerouslySetInnerHTML" ? p = m : d == "value" ? C = m : d == "checked" ? O = m : l && typeof m != "function" || M[d] === m || _1(t, d, m, M[d], r);
274
+ if (p) l || _ && (p.__html == _.__html || p.__html == t.innerHTML) || (t.innerHTML = p.__html), e.__k = [];
275
+ else if (_ && (t.innerHTML = ""), _0(e.type == "template" ? t.content : t, r1(g) ? g : [g], e, n, i, b == "foreignObject" ? "http://www.w3.org/1999/xhtml" : r, a, o, a ? a[0] : n.__k && j(n, 0), l, h), a != null) for (d = a.length; d--; ) k1(a[d]);
276
+ l || (d = "value", b == "progress" && C == null ? t.removeAttribute("value") : C != null && (C !== t[d] || b == "progress" && !C || b == "option" && C != M[d]) && _1(t, d, C, M[d], r), d = "checked", O != null && O != t[d] && _1(t, d, O, M[d], r));
277
+ }
278
+ return t;
279
+ }
280
+ function P1(t, e, n) {
281
+ try {
282
+ if (typeof t == "function") {
283
+ var i = typeof t.__u == "function";
284
+ i && t.__u(), i && e == null || (t.__u = t(e));
285
+ } else t.current = e;
286
+ } catch (r) {
287
+ v.__e(r, n);
288
+ }
289
+ }
290
+ function c0(t, e, n) {
291
+ var i, r;
292
+ if (v.unmount && v.unmount(t), (i = t.ref) && (i.current && i.current != t.__e || P1(i, null, e)), (i = t.__c) != null) {
293
+ if (i.componentWillUnmount) try {
294
+ i.componentWillUnmount();
295
+ } catch (a) {
296
+ v.__e(a, e);
297
+ }
298
+ i.base = i.__P = null;
299
+ }
300
+ if (i = t.__k) for (r = 0; r < i.length; r++) i[r] && c0(i[r], e, n || typeof t.type != "function");
301
+ n || k1(t.__e), t.__c = t.__ = t.__e = void 0;
302
+ }
303
+ function P0(t, e, n) {
304
+ return this.constructor(t, n);
305
+ }
306
+ function m1(t, e, n) {
307
+ var i, r, a, o;
308
+ e == document && (e = document.documentElement), v.__ && v.__(t, e), r = (i = typeof n == "function") ? null : n && n.__k || e.__k, a = [], o = [], x1(e, t = (!i && n || e).__k = q(p1, null, [t]), r || e1, e1, e.namespaceURI, !i && n ? [n] : r ? null : e.firstChild ? s1.call(e.childNodes) : null, a, !i && n ? n : r ? r.__e : e.firstChild, i, o), d0(a, t, o);
309
+ }
310
+ function u0(t, e) {
311
+ m1(t, e, u0);
312
+ }
313
+ function p0(t, e, n) {
314
+ var i, r, a, o, l = $({}, t.props);
315
+ for (a in t.type && t.type.defaultProps && (o = t.type.defaultProps), e) a == "key" ? i = e[a] : a == "ref" ? r = e[a] : l[a] = e[a] === void 0 && o != null ? o[a] : e[a];
316
+ return arguments.length > 2 && (l.children = arguments.length > 3 ? s1.call(arguments, 2) : n), Z(t.type, l, i || t.key, r || t.ref, null);
317
+ }
318
+ s1 = a0.slice, v = { __e: function(t, e, n, i) {
319
+ for (var r, a, o; e = e.__; ) if ((r = e.__c) && !r.__) try {
320
+ if ((a = r.constructor) && a.getDerivedStateFromError != null && (r.setState(a.getDerivedStateFromError(t)), o = r.__d), r.componentDidCatch != null && (r.componentDidCatch(t, i || {}), o = r.__d), o) return r.__E = r;
321
+ } catch (l) {
322
+ t = l;
323
+ }
324
+ throw t;
325
+ } }, n0 = 0, M0 = function(t) {
326
+ return t != null && t.constructor === void 0;
327
+ }, l1.prototype.setState = function(t, e) {
328
+ var n;
329
+ n = this.__s != null && this.__s != this.state ? this.__s : this.__s = $({}, this.state), typeof t == "function" && (t = t($({}, n), this.props)), t && $(n, t), t != null && this.__v && (e && this._sb.push(e), $1(this));
330
+ }, l1.prototype.forceUpdate = function(t) {
331
+ this.__v && (this.__e = !0, t && this.__h.push(t), $1(this));
332
+ }, l1.prototype.render = p1, N = [], i0 = typeof Promise == "function" ? Promise.prototype.then.bind(Promise.resolve()) : setTimeout, s0 = function(t, e) {
333
+ return t.__v.__b - e.__v.__b;
334
+ }, c1.__r = 0, r0 = /(PointerCapture)$|Capture$/i, E1 = 0, L1 = R1(!1), C1 = R1(!0);
335
+ var O0 = 0;
336
+ function p4(t, e, n, i, r, a) {
337
+ e || (e = {});
338
+ var o, l, h = e;
339
+ if ("ref" in h) for (l in h = {}, e) l == "ref" ? o = e[l] : h[l] = e[l];
340
+ var d = { type: t, props: h, key: n, ref: o, __k: null, __: null, __b: 0, __e: null, __c: null, constructor: void 0, __v: --O0, __i: -1, __u: 0, __source: r, __self: a };
341
+ if (typeof t == "function" && (o = t.defaultProps)) for (l in o) h[l] === void 0 && (h[l] = o[l]);
342
+ return v.vnode && v.vnode(d), d;
343
+ }
344
+ var n1, y, g1, z1, u1 = 0, m0 = [], L = v, U1 = L.__b, N1 = L.__r, H1 = L.diffed, B1 = L.__c, W1 = L.unmount, G1 = L.__;
345
+ function O1(t, e) {
346
+ L.__h && L.__h(y, t, u1 || e), u1 = 0;
347
+ var n = y.__H || (y.__H = { __: [], __h: [] });
348
+ return t >= n.__.length && n.__.push({}), n.__[t];
349
+ }
350
+ function m4(t) {
351
+ return u1 = 1, A0(g0, t);
352
+ }
353
+ function A0(t, e, n) {
354
+ var i = O1(n1++, 2);
355
+ if (i.t = t, !i.__c && (i.__ = [g0(void 0, e), function(l) {
356
+ var h = i.__N ? i.__N[0] : i.__[0], d = i.t(h, l);
357
+ h !== d && (i.__N = [d, i.__[1]], i.__c.setState({}));
358
+ }], i.__c = y, !y.__f)) {
359
+ var r = function(l, h, d) {
360
+ if (!i.__c.__H) return !0;
361
+ var p = i.__c.__H.__.filter(function(g) {
362
+ return !!g.__c;
363
+ });
364
+ if (p.every(function(g) {
365
+ return !g.__N;
366
+ })) return !a || a.call(this, l, h, d);
367
+ var _ = i.__c.props !== l;
368
+ return p.forEach(function(g) {
369
+ if (g.__N) {
370
+ var m = g.__[0];
371
+ g.__ = g.__N, g.__N = void 0, m !== g.__[0] && (_ = !0);
372
+ }
373
+ }), a && a.call(this, l, h, d) || _;
374
+ };
375
+ y.__f = !0;
376
+ var a = y.shouldComponentUpdate, o = y.componentWillUpdate;
377
+ y.componentWillUpdate = function(l, h, d) {
378
+ if (this.__e) {
379
+ var p = a;
380
+ a = void 0, r(l, h, d), a = p;
381
+ }
382
+ o && o.call(this, l, h, d);
383
+ }, y.shouldComponentUpdate = r;
384
+ }
385
+ return i.__N || i.__;
386
+ }
387
+ function f4(t, e) {
388
+ var n = O1(n1++, 3);
389
+ !L.__s && f0(n.__H, e) && (n.__ = t, n.u = e, y.__H.__h.push(n));
390
+ }
391
+ function g4(t) {
392
+ return u1 = 5, D0(function() {
393
+ return { current: t };
394
+ }, []);
395
+ }
396
+ function D0(t, e) {
397
+ var n = O1(n1++, 7);
398
+ return f0(n.__H, e) && (n.__ = t(), n.__H = e, n.__h = t), n.__;
399
+ }
400
+ function F0() {
401
+ for (var t; t = m0.shift(); ) if (t.__P && t.__H) try {
402
+ t.__H.__h.forEach(d1), t.__H.__h.forEach(I1), t.__H.__h = [];
403
+ } catch (e) {
404
+ t.__H.__h = [], L.__e(e, t.__v);
405
+ }
406
+ }
407
+ L.__b = function(t) {
408
+ y = null, U1 && U1(t);
409
+ }, L.__ = function(t, e) {
410
+ t && e.__k && e.__k.__m && (t.__m = e.__k.__m), G1 && G1(t, e);
411
+ }, L.__r = function(t) {
412
+ N1 && N1(t), n1 = 0;
413
+ var e = (y = t.__c).__H;
414
+ e && (g1 === y ? (e.__h = [], y.__h = [], e.__.forEach(function(n) {
415
+ n.__N && (n.__ = n.__N), n.u = n.__N = void 0;
416
+ })) : (e.__h.forEach(d1), e.__h.forEach(I1), e.__h = [], n1 = 0)), g1 = y;
417
+ }, L.diffed = function(t) {
418
+ H1 && H1(t);
419
+ var e = t.__c;
420
+ e && e.__H && (e.__H.__h.length && (m0.push(e) !== 1 && z1 === L.requestAnimationFrame || ((z1 = L.requestAnimationFrame) || $0)(F0)), e.__H.__.forEach(function(n) {
421
+ n.u && (n.__H = n.u), n.u = void 0;
422
+ })), g1 = y = null;
423
+ }, L.__c = function(t, e) {
424
+ e.some(function(n) {
425
+ try {
426
+ n.__h.forEach(d1), n.__h = n.__h.filter(function(i) {
427
+ return !i.__ || I1(i);
428
+ });
429
+ } catch (i) {
430
+ e.some(function(r) {
431
+ r.__h && (r.__h = []);
432
+ }), e = [], L.__e(i, n.__v);
433
+ }
434
+ }), B1 && B1(t, e);
435
+ }, L.unmount = function(t) {
436
+ W1 && W1(t);
437
+ var e, n = t.__c;
438
+ n && n.__H && (n.__H.__.forEach(function(i) {
439
+ try {
440
+ d1(i);
441
+ } catch (r) {
442
+ e = r;
443
+ }
444
+ }), n.__H = void 0, e && L.__e(e, n.__v));
445
+ };
446
+ var q1 = typeof requestAnimationFrame == "function";
447
+ function $0(t) {
448
+ var e, n = function() {
449
+ clearTimeout(i), q1 && cancelAnimationFrame(e), setTimeout(t);
450
+ }, i = setTimeout(n, 35);
451
+ q1 && (e = requestAnimationFrame(n));
452
+ }
453
+ function d1(t) {
454
+ var e = y, n = t.__c;
455
+ typeof n == "function" && (t.__c = void 0, n()), y = e;
456
+ }
457
+ function I1(t) {
458
+ var e = y;
459
+ t.__c = t.__(), y = e;
460
+ }
461
+ function f0(t, e) {
462
+ return !t || t.length !== e.length || e.some(function(n, i) {
463
+ return n !== t[i];
464
+ });
465
+ }
466
+ function g0(t, e) {
467
+ return typeof e == "function" ? e(t) : e;
468
+ }
469
+ function A1() {
470
+ return (A1 = Object.assign ? Object.assign.bind() : function(t) {
471
+ for (var e = 1; e < arguments.length; e++) {
472
+ var n = arguments[e];
473
+ for (var i in n) Object.prototype.hasOwnProperty.call(n, i) && (t[i] = n[i]);
474
+ }
475
+ return t;
476
+ }).apply(this, arguments);
477
+ }
478
+ var T0 = ["context", "children"];
479
+ function R0(t) {
480
+ this.getChildContext = function() {
481
+ return t.context;
482
+ };
483
+ var e = t.children, n = (function(i, r) {
484
+ if (i == null) return {};
485
+ var a, o, l = {}, h = Object.keys(i);
486
+ for (o = 0; o < h.length; o++) r.indexOf(a = h[o]) >= 0 || (l[a] = i[a]);
487
+ return l;
488
+ })(t, T0);
489
+ return p0(e, n);
490
+ }
491
+ function z0() {
492
+ var t = new CustomEvent("_preact", { detail: {}, bubbles: !0, cancelable: !0 });
493
+ this.dispatchEvent(t), this._vdom = q(R0, A1({}, this._props, { context: t.detail.context }), (function e(n, i) {
494
+ if (n.nodeType === 3) return n.data;
495
+ if (n.nodeType !== 1) return null;
496
+ var r = [], a = {}, o = 0, l = n.attributes, h = n.childNodes;
497
+ for (o = l.length; o--; ) l[o].name !== "slot" && (a[l[o].name] = l[o].value, a[v0(l[o].name)] = l[o].value);
498
+ for (o = h.length; o--; ) {
499
+ var d = e(h[o], null), p = h[o].slot;
500
+ p ? a[p] = q(j1, { name: p }, d) : r[o] = d;
501
+ }
502
+ var _ = i ? q(j1, null, r) : r;
503
+ return q(i || n.nodeName.toLowerCase(), a, _);
504
+ })(this, this._vdomComponent)), (this.hasAttribute("hydrate") ? u0 : m1)(this._vdom, this._root);
505
+ }
506
+ function v0(t) {
507
+ return t.replace(/-(\w)/g, function(e, n) {
508
+ return n ? n.toUpperCase() : "";
509
+ });
510
+ }
511
+ function U0(t, e, n) {
512
+ if (this._vdom) {
513
+ var i = {};
514
+ i[t] = n = n ?? void 0, i[v0(t)] = n, this._vdom = p0(this._vdom, i), m1(this._vdom, this._root);
515
+ }
516
+ }
517
+ function N0() {
518
+ m1(this._vdom = null, this._root);
519
+ }
520
+ function j1(t, e) {
521
+ var n = this;
522
+ return q("slot", A1({}, t, { ref: function(i) {
523
+ i ? (n.ref = i, n._listener || (n._listener = function(r) {
524
+ r.stopPropagation(), r.detail.context = e;
525
+ }, i.addEventListener("_preact", n._listener))) : n.ref.removeEventListener("_preact", n._listener);
526
+ } }));
527
+ }
528
+ function v4(t, e, n, i) {
529
+ function r() {
530
+ var a = Reflect.construct(HTMLElement, [], r);
531
+ return a._vdomComponent = t, a._root = i && i.shadow ? a.attachShadow({ mode: i.mode || "open" }) : a, a;
532
+ }
533
+ return (r.prototype = Object.create(HTMLElement.prototype)).constructor = r, r.prototype.connectedCallback = z0, r.prototype.attributeChangedCallback = U0, r.prototype.disconnectedCallback = N0, n = n || t.observedAttributes || Object.keys(t.propTypes || {}), r.observedAttributes = n, n.forEach(function(a) {
534
+ Object.defineProperty(r.prototype, a, { get: function() {
535
+ return this._vdom.props[a];
536
+ }, set: function(o) {
537
+ this._vdom ? this.attributeChangedCallback(a, null, o) : (this._props || (this._props = {}), this._props[a] = o, this.connectedCallback());
538
+ var l = typeof o;
539
+ o != null && l !== "string" && l !== "boolean" && l !== "number" || this.setAttribute(a, o);
540
+ } });
541
+ }), customElements.define(e || t.tagName || t.displayName || t.name, r);
542
+ }
543
+ function i1(t) {
544
+ "@babel/helpers - typeof";
545
+ return i1 = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
546
+ return typeof e;
547
+ } : function(e) {
548
+ return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
549
+ }, i1(t);
550
+ }
551
+ function H0(t, e) {
552
+ if (i1(t) != "object" || !t) return t;
553
+ var n = t[Symbol.toPrimitive];
554
+ if (n !== void 0) {
555
+ var i = n.call(t, e);
556
+ if (i1(i) != "object") return i;
557
+ throw TypeError("@@toPrimitive must return a primitive value.");
558
+ }
559
+ return (e === "string" ? String : Number)(t);
560
+ }
561
+ function B0(t) {
562
+ var e = H0(t, "string");
563
+ return i1(e) == "symbol" ? e : e + "";
564
+ }
565
+ function c(t, e, n) {
566
+ return (e = B0(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
567
+ }
568
+ var W0 = class {
569
+ requestAnimationFrame(t) {
570
+ return requestAnimationFrame(t);
571
+ }
572
+ cancelAnimationFrame(t) {
573
+ cancelAnimationFrame(t);
574
+ }
575
+ }, G0 = class {
576
+ constructor() {
577
+ c(this, "_lastHandleId", 0), c(this, "_lastImmediate", null);
578
+ }
579
+ requestAnimationFrame(t) {
580
+ return this._lastHandleId >= 2 ** 53 - 1 && (this._lastHandleId = 0), this._lastHandleId += 1, this._lastImmediate = setImmediate(() => {
581
+ t(performance.now());
582
+ }), this._lastHandleId;
583
+ }
584
+ cancelAnimationFrame(t) {
585
+ this._lastImmediate && clearImmediate(this._lastImmediate);
586
+ }
587
+ }, q0 = class {
588
+ constructor() {
589
+ c(this, "_strategy", void 0), this._strategy = typeof requestAnimationFrame == "function" ? new W0() : new G0();
590
+ }
591
+ requestAnimationFrame(t) {
592
+ return this._strategy.requestAnimationFrame(t);
593
+ }
594
+ cancelAnimationFrame(t) {
595
+ this._strategy.cancelAnimationFrame(t);
596
+ }
597
+ };
598
+ const I = typeof window < "u" && window.document !== void 0, v1 = new Uint8Array([80, 75, 3, 4]), j0 = ["v", "ip", "op", "layers", "fr", "w", "h"], V1 = "0.72.1", J1 = "@lottiefiles/dotlottie-web";
599
+ let s;
600
+ const w0 = typeof TextDecoder < "u" ? new TextDecoder("utf-8", { ignoreBOM: !0, fatal: !0 }) : { decode: () => {
601
+ throw Error("TextDecoder not available");
602
+ } };
603
+ typeof TextDecoder < "u" && w0.decode();
604
+ let Y = null;
605
+ function t1() {
606
+ return (Y === null || Y.byteLength === 0) && (Y = new Uint8Array(s.memory.buffer)), Y;
607
+ }
608
+ function E(t, e) {
609
+ return t >>>= 0, w0.decode(t1().subarray(t, t + e));
610
+ }
611
+ function b0(t) {
612
+ let e = s.__externref_table_alloc_command_export();
613
+ return s.__wbindgen_export_3.set(e, t), e;
614
+ }
615
+ function V0(t, e) {
616
+ try {
617
+ return t.apply(this, e);
618
+ } catch (n) {
619
+ let i = b0(n);
620
+ s.__wbindgen_exn_store_command_export(i);
621
+ }
622
+ }
623
+ let u = 0;
624
+ const h1 = typeof TextEncoder < "u" ? new TextEncoder("utf-8") : { encode: () => {
625
+ throw Error("TextEncoder not available");
626
+ } }, J0 = typeof h1.encodeInto == "function" ? function(t, e) {
627
+ return h1.encodeInto(t, e);
628
+ } : function(t, e) {
629
+ let n = h1.encode(t);
630
+ return e.set(n), { read: t.length, written: n.length };
631
+ };
632
+ function f(t, e, n) {
633
+ if (n === void 0) {
634
+ let l = h1.encode(t), h = e(l.length, 1) >>> 0;
635
+ return t1().subarray(h, h + l.length).set(l), u = l.length, h;
636
+ }
637
+ let i = t.length, r = e(i, 1) >>> 0, a = t1(), o = 0;
638
+ for (; o < i; o++) {
639
+ let l = t.charCodeAt(o);
640
+ if (l > 127) break;
641
+ a[r + o] = l;
642
+ }
643
+ if (o !== i) {
644
+ o !== 0 && (t = t.slice(o)), r = n(r, i, i = o + t.length * 3, 1) >>> 0;
645
+ let l = t1().subarray(r + o, r + i), h = J0(t, l);
646
+ o += h.written, r = n(r, i, o, 1) >>> 0;
647
+ }
648
+ return u = o, r;
649
+ }
650
+ let U = null;
651
+ function Q() {
652
+ return (U === null || U.buffer.detached === !0 || U.buffer.detached === void 0 && U.buffer !== s.memory.buffer) && (U = new DataView(s.memory.buffer)), U;
653
+ }
654
+ function K0(t) {
655
+ return t == null;
656
+ }
657
+ let X = null;
658
+ function Y0() {
659
+ return (X === null || X.byteLength === 0) && (X = new Float32Array(s.memory.buffer)), X;
660
+ }
661
+ function Q0(t, e) {
662
+ let n = e(t.length * 4, 4) >>> 0;
663
+ return Y0().set(t, n / 4), u = t.length, n;
664
+ }
665
+ function S1(t, e) {
666
+ let n = e(t.length * 1, 1) >>> 0;
667
+ return t1().set(t, n / 1), u = t.length, n;
668
+ }
669
+ function X0(t, e) {
670
+ let n = e(t.length * 4, 4) >>> 0;
671
+ for (let i = 0; i < t.length; i++) {
672
+ let r = b0(t[i]);
673
+ Q().setUint32(n + 4 * i, r, !0);
674
+ }
675
+ return u = t.length, n;
676
+ }
677
+ function Z0(t, e) {
678
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u, r = S1(e, s.__wbindgen_malloc_command_export), a = u;
679
+ return s.register_font(n, i, r, a) !== 0;
680
+ }
681
+ const B = Object.freeze({ Forward: 0, 0: "Forward", Reverse: 1, 1: "Reverse", Bounce: 2, 2: "Bounce", ReverseBounce: 3, 3: "ReverseBounce" }), K1 = typeof FinalizationRegistry > "u" ? { register: () => {
682
+ }, unregister: () => {
683
+ } } : new FinalizationRegistry((t) => s.__wbg_dotlottieplayerwasm_free(t >>> 0, 1));
684
+ var t4 = class {
685
+ __destroy_into_raw() {
686
+ let t = this.__wbg_ptr;
687
+ return this.__wbg_ptr = 0, K1.unregister(this), t;
688
+ }
689
+ free() {
690
+ let t = this.__destroy_into_raw();
691
+ s.__wbg_dotlottieplayerwasm_free(t, 0);
692
+ }
693
+ clear_slot(t) {
694
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
695
+ return s.dotlottieplayerwasm_clear_slot(this.__wbg_ptr, e, n) !== 0;
696
+ }
697
+ is_playing() {
698
+ return s.dotlottieplayerwasm_is_playing(this.__wbg_ptr) !== 0;
699
+ }
700
+ is_stopped() {
701
+ return s.dotlottieplayerwasm_is_stopped(this.__wbg_ptr) !== 0;
702
+ }
703
+ layout_fit() {
704
+ let t, e;
705
+ try {
706
+ let n = s.dotlottieplayerwasm_layout_fit(this.__wbg_ptr);
707
+ return t = n[0], e = n[1], E(n[0], n[1]);
708
+ } finally {
709
+ s.__wbindgen_free_command_export(t, e, 1);
710
+ }
711
+ }
712
+ loop_count() {
713
+ return s.dotlottieplayerwasm_loop_count(this.__wbg_ptr) >>> 0;
714
+ }
715
+ poll_event() {
716
+ return s.dotlottieplayerwasm_poll_event(this.__wbg_ptr);
717
+ }
718
+ reset_slot(t) {
719
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
720
+ return s.dotlottieplayerwasm_reset_slot(this.__wbg_ptr, e, n) !== 0;
721
+ }
722
+ set_layout(t, e, n) {
723
+ let i = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), r = u;
724
+ return s.dotlottieplayerwasm_set_layout(this.__wbg_ptr, i, r, e, n) !== 0;
725
+ }
726
+ set_marker(t) {
727
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
728
+ s.dotlottieplayerwasm_set_marker(this.__wbg_ptr, e, n);
729
+ }
730
+ clear_slots() {
731
+ return s.dotlottieplayerwasm_clear_slots(this.__wbg_ptr) !== 0;
732
+ }
733
+ is_complete() {
734
+ return s.dotlottieplayerwasm_is_complete(this.__wbg_ptr) !== 0;
735
+ }
736
+ is_tweening() {
737
+ return s.dotlottieplayerwasm_is_tweening(this.__wbg_ptr) !== 0;
738
+ }
739
+ reset_slots() {
740
+ return s.dotlottieplayerwasm_reset_slots(this.__wbg_ptr) !== 0;
741
+ }
742
+ reset_theme() {
743
+ return s.dotlottieplayerwasm_reset_theme(this.__wbg_ptr) !== 0;
744
+ }
745
+ segment_end() {
746
+ return s.dotlottieplayerwasm_segment_end(this.__wbg_ptr);
747
+ }
748
+ set_quality(t) {
749
+ return s.dotlottieplayerwasm_set_quality(this.__wbg_ptr, t) !== 0;
750
+ }
751
+ set_segment(t, e) {
752
+ return s.dotlottieplayerwasm_set_segment(this.__wbg_ptr, t, e) !== 0;
753
+ }
754
+ static unload_font(t) {
755
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
756
+ return s.dotlottieplayerwasm_unload_font(e, n) !== 0;
757
+ }
758
+ animation_id() {
759
+ let t = s.dotlottieplayerwasm_animation_id(this.__wbg_ptr), e;
760
+ return t[0] !== 0 && (e = E(t[0], t[1]).slice(), s.__wbindgen_free_command_export(t[0], t[1] * 1, 1)), e;
761
+ }
762
+ audio_volume() {
763
+ return s.dotlottieplayerwasm_audio_volume(this.__wbg_ptr);
764
+ }
765
+ background_a() {
766
+ return s.dotlottieplayerwasm_background_a(this.__wbg_ptr);
767
+ }
768
+ background_b() {
769
+ return s.dotlottieplayerwasm_background_b(this.__wbg_ptr);
770
+ }
771
+ background_g() {
772
+ return s.dotlottieplayerwasm_background_g(this.__wbg_ptr);
773
+ }
774
+ background_r() {
775
+ return s.dotlottieplayerwasm_background_r(this.__wbg_ptr);
776
+ }
777
+ clear_marker() {
778
+ s.dotlottieplayerwasm_clear_marker(this.__wbg_ptr);
779
+ }
780
+ emit_on_loop() {
781
+ s.dotlottieplayerwasm_emit_on_loop(this.__wbg_ptr);
782
+ }
783
+ get_slot_ids() {
784
+ return s.dotlottieplayerwasm_get_slot_ids(this.__wbg_ptr);
785
+ }
786
+ get_slot_str(t) {
787
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u, i = s.dotlottieplayerwasm_get_slot_str(this.__wbg_ptr, e, n), r;
788
+ return i[0] !== 0 && (r = E(i[0], i[1]).slice(), s.__wbindgen_free_command_export(i[0], i[1] * 1, 1)), r;
789
+ }
790
+ marker_names() {
791
+ return s.dotlottieplayerwasm_marker_names(this.__wbg_ptr);
792
+ }
793
+ set_autoplay(t) {
794
+ s.dotlottieplayerwasm_set_autoplay(this.__wbg_ptr, t);
795
+ }
796
+ set_slot_str(t, e) {
797
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u, r = f(e, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), a = u;
798
+ return s.dotlottieplayerwasm_set_slot_str(this.__wbg_ptr, n, i, r, a) !== 0;
799
+ }
800
+ set_viewport(t, e, n, i) {
801
+ return s.dotlottieplayerwasm_set_viewport(this.__wbg_ptr, t, e, n, i) !== 0;
802
+ }
803
+ total_frames() {
804
+ return s.dotlottieplayerwasm_total_frames(this.__wbg_ptr);
805
+ }
806
+ clear_segment() {
807
+ return s.dotlottieplayerwasm_clear_segment(this.__wbg_ptr) !== 0;
808
+ }
809
+ current_frame() {
810
+ return s.dotlottieplayerwasm_current_frame(this.__wbg_ptr);
811
+ }
812
+ get_slot_type(t) {
813
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u, i = s.dotlottieplayerwasm_get_slot_type(this.__wbg_ptr, e, n), r;
814
+ return i[0] !== 0 && (r = E(i[0], i[1]).slice(), s.__wbindgen_free_command_export(i[0], i[1] * 1, 1)), r;
815
+ }
816
+ get_slots_str() {
817
+ let t, e;
818
+ try {
819
+ let n = s.dotlottieplayerwasm_get_slots_str(this.__wbg_ptr);
820
+ return t = n[0], e = n[1], E(n[0], n[1]);
821
+ } finally {
822
+ s.__wbindgen_free_command_export(t, e, 1);
823
+ }
824
+ }
825
+ get_transform() {
826
+ return s.dotlottieplayerwasm_get_transform(this.__wbg_ptr);
827
+ }
828
+ segment_start() {
829
+ return s.dotlottieplayerwasm_segment_start(this.__wbg_ptr);
830
+ }
831
+ set_slots_str(t) {
832
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
833
+ return s.dotlottieplayerwasm_set_slots_str(this.__wbg_ptr, e, n) !== 0;
834
+ }
835
+ set_text_slot(t, e) {
836
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u, r = f(e, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), a = u;
837
+ return s.dotlottieplayerwasm_set_text_slot(this.__wbg_ptr, n, i, r, a) !== 0;
838
+ }
839
+ set_transform(t) {
840
+ let e = Q0(t, s.__wbindgen_malloc_command_export), n = u;
841
+ return s.dotlottieplayerwasm_set_transform(this.__wbg_ptr, e, n) !== 0;
842
+ }
843
+ sm_get_inputs() {
844
+ return s.dotlottieplayerwasm_sm_get_inputs(this.__wbg_ptr);
845
+ }
846
+ sm_poll_event() {
847
+ return s.dotlottieplayerwasm_sm_poll_event(this.__wbg_ptr);
848
+ }
849
+ sm_post_click(t, e) {
850
+ s.dotlottieplayerwasm_sm_post_click(this.__wbg_ptr, t, e);
851
+ }
852
+ animation_size() {
853
+ return s.dotlottieplayerwasm_animation_size(this.__wbg_ptr);
854
+ }
855
+ current_marker() {
856
+ let t = s.dotlottieplayerwasm_current_marker(this.__wbg_ptr), e;
857
+ return t[0] !== 0 && (e = E(t[0], t[1]).slice(), s.__wbindgen_free_command_export(t[0], t[1] * 1, 1)), e;
858
+ }
859
+ layout_align_x() {
860
+ return s.dotlottieplayerwasm_layout_align_x(this.__wbg_ptr);
861
+ }
862
+ layout_align_y() {
863
+ return s.dotlottieplayerwasm_layout_align_y(this.__wbg_ptr);
864
+ }
865
+ load_animation(t) {
866
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
867
+ return s.dotlottieplayerwasm_load_animation(this.__wbg_ptr, e, n) !== 0;
868
+ }
869
+ loop_animation() {
870
+ return s.dotlottieplayerwasm_loop_animation(this.__wbg_ptr) !== 0;
871
+ }
872
+ set_background(t, e, n, i) {
873
+ return s.dotlottieplayerwasm_set_background(this.__wbg_ptr, t, e, n, i) !== 0;
874
+ }
875
+ set_color_slot(t, e, n, i) {
876
+ let r = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), a = u;
877
+ return s.dotlottieplayerwasm_set_color_slot(this.__wbg_ptr, r, a, e, n, i) !== 0;
878
+ }
879
+ set_loop_count(t) {
880
+ s.dotlottieplayerwasm_set_loop_count(this.__wbg_ptr, t);
881
+ }
882
+ set_theme_data(t) {
883
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
884
+ return s.dotlottieplayerwasm_set_theme_data(this.__wbg_ptr, e, n) !== 0;
885
+ }
886
+ sm_reset_input(t) {
887
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
888
+ s.dotlottieplayerwasm_sm_reset_input(this.__wbg_ptr, e, n);
889
+ }
890
+ manifest_string() {
891
+ let t, e;
892
+ try {
893
+ let n = s.dotlottieplayerwasm_manifest_string(this.__wbg_ptr);
894
+ return t = n[0], e = n[1], E(n[0], n[1]);
895
+ } finally {
896
+ s.__wbindgen_free_command_export(t, e, 1);
897
+ }
898
+ }
899
+ set_scalar_slot(t, e) {
900
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u;
901
+ return s.dotlottieplayerwasm_set_scalar_slot(this.__wbg_ptr, n, i, e) !== 0;
902
+ }
903
+ set_vector_slot(t, e, n) {
904
+ let i = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), r = u;
905
+ return s.dotlottieplayerwasm_set_vector_slot(this.__wbg_ptr, i, r, e, n) !== 0;
906
+ }
907
+ setup_sw_target(t, e) {
908
+ return s.dotlottieplayerwasm_setup_sw_target(this.__wbg_ptr, t, e) !== 0;
909
+ }
910
+ get_pixel_buffer() {
911
+ return s.dotlottieplayerwasm_get_pixel_buffer(this.__wbg_ptr);
912
+ }
913
+ set_audio_volume(t) {
914
+ s.dotlottieplayerwasm_set_audio_volume(this.__wbg_ptr, t);
915
+ }
916
+ sm_current_state() {
917
+ let t, e;
918
+ try {
919
+ let n = s.dotlottieplayerwasm_sm_current_state(this.__wbg_ptr);
920
+ return t = n[0], e = n[1], E(n[0], n[1]);
921
+ } finally {
922
+ s.__wbindgen_free_command_export(t, e, 1);
923
+ }
924
+ }
925
+ state_machine_id() {
926
+ let t = s.dotlottieplayerwasm_state_machine_id(this.__wbg_ptr), e;
927
+ return t[0] !== 0 && (e = E(t[0], t[1]).slice(), s.__wbindgen_free_command_export(t[0], t[1] * 1, 1)), e;
928
+ }
929
+ get_state_machine(t) {
930
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u, i = s.dotlottieplayerwasm_get_state_machine(this.__wbg_ptr, e, n), r;
931
+ return i[0] !== 0 && (r = E(i[0], i[1]).slice(), s.__wbindgen_free_command_export(i[0], i[1] * 1, 1)), r;
932
+ }
933
+ set_position_slot(t, e, n) {
934
+ let i = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), r = u;
935
+ return s.dotlottieplayerwasm_set_position_slot(this.__wbg_ptr, i, r, e, n) !== 0;
936
+ }
937
+ current_loop_count() {
938
+ return s.dotlottieplayerwasm_current_loop_count(this.__wbg_ptr) >>> 0;
939
+ }
940
+ sm_framework_setup() {
941
+ return s.dotlottieplayerwasm_sm_framework_setup(this.__wbg_ptr);
942
+ }
943
+ sm_post_pointer_up(t, e) {
944
+ s.dotlottieplayerwasm_sm_post_pointer_up(this.__wbg_ptr, t, e);
945
+ }
946
+ state_machine_load(t) {
947
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
948
+ return s.dotlottieplayerwasm_state_machine_load(this.__wbg_ptr, e, n) !== 0;
949
+ }
950
+ load_dotlottie_data(t) {
951
+ let e = S1(t, s.__wbindgen_malloc_command_export), n = u;
952
+ return s.dotlottieplayerwasm_load_dotlottie_data(this.__wbg_ptr, e, n) !== 0;
953
+ }
954
+ sm_get_string_input(t) {
955
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u, i = s.dotlottieplayerwasm_sm_get_string_input(this.__wbg_ptr, e, n), r;
956
+ return i[0] !== 0 && (r = E(i[0], i[1]).slice(), s.__wbindgen_free_command_export(i[0], i[1] * 1, 1)), r;
957
+ }
958
+ sm_set_string_input(t, e) {
959
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u, r = f(e, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), a = u;
960
+ return s.dotlottieplayerwasm_sm_set_string_input(this.__wbg_ptr, n, i, r, a) !== 0;
961
+ }
962
+ sm_get_boolean_input(t) {
963
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u, i = s.dotlottieplayerwasm_sm_get_boolean_input(this.__wbg_ptr, e, n);
964
+ return i === 16777215 ? void 0 : i !== 0;
965
+ }
966
+ sm_get_numeric_input(t) {
967
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u, i = s.dotlottieplayerwasm_sm_get_numeric_input(this.__wbg_ptr, e, n);
968
+ return i === 4294967297 ? void 0 : i;
969
+ }
970
+ sm_post_pointer_down(t, e) {
971
+ s.dotlottieplayerwasm_sm_post_pointer_down(this.__wbg_ptr, t, e);
972
+ }
973
+ sm_post_pointer_exit(t, e) {
974
+ s.dotlottieplayerwasm_sm_post_pointer_exit(this.__wbg_ptr, t, e);
975
+ }
976
+ sm_post_pointer_move(t, e) {
977
+ s.dotlottieplayerwasm_sm_post_pointer_move(this.__wbg_ptr, t, e);
978
+ }
979
+ sm_set_boolean_input(t, e) {
980
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u;
981
+ return s.dotlottieplayerwasm_sm_set_boolean_input(this.__wbg_ptr, n, i, e) !== 0;
982
+ }
983
+ sm_set_numeric_input(t, e) {
984
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u;
985
+ return s.dotlottieplayerwasm_sm_set_numeric_input(this.__wbg_ptr, n, i, e) !== 0;
986
+ }
987
+ state_machine_unload() {
988
+ s.dotlottieplayerwasm_state_machine_unload(this.__wbg_ptr);
989
+ }
990
+ sm_post_pointer_enter(t, e) {
991
+ s.dotlottieplayerwasm_sm_post_pointer_enter(this.__wbg_ptr, t, e);
992
+ }
993
+ load_animation_from_id(t) {
994
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
995
+ return s.dotlottieplayerwasm_load_animation_from_id(this.__wbg_ptr, e, n) !== 0;
996
+ }
997
+ sm_poll_internal_event() {
998
+ return s.dotlottieplayerwasm_sm_poll_internal_event(this.__wbg_ptr);
999
+ }
1000
+ use_frame_interpolation() {
1001
+ return s.dotlottieplayerwasm_use_frame_interpolation(this.__wbg_ptr) !== 0;
1002
+ }
1003
+ reset_current_loop_count() {
1004
+ s.dotlottieplayerwasm_reset_current_loop_count(this.__wbg_ptr);
1005
+ }
1006
+ sm_override_current_state(t, e) {
1007
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u;
1008
+ return s.dotlottieplayerwasm_sm_override_current_state(this.__wbg_ptr, n, i, e) !== 0;
1009
+ }
1010
+ state_machine_load_from_id(t) {
1011
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
1012
+ return s.dotlottieplayerwasm_state_machine_load_from_id(this.__wbg_ptr, e, n) !== 0;
1013
+ }
1014
+ set_use_frame_interpolation(t) {
1015
+ s.dotlottieplayerwasm_set_use_frame_interpolation(this.__wbg_ptr, t);
1016
+ }
1017
+ constructor() {
1018
+ let t = s.dotlottieplayerwasm_new();
1019
+ return this.__wbg_ptr = t >>> 0, K1.register(this, this.__wbg_ptr, this), this;
1020
+ }
1021
+ mode() {
1022
+ return s.dotlottieplayerwasm_mode(this.__wbg_ptr);
1023
+ }
1024
+ play() {
1025
+ return s.dotlottieplayerwasm_play(this.__wbg_ptr) !== 0;
1026
+ }
1027
+ stop() {
1028
+ return s.dotlottieplayerwasm_stop(this.__wbg_ptr) !== 0;
1029
+ }
1030
+ tick(t) {
1031
+ return s.dotlottieplayerwasm_tick(this.__wbg_ptr, t) !== 0;
1032
+ }
1033
+ pause() {
1034
+ return s.dotlottieplayerwasm_pause(this.__wbg_ptr) !== 0;
1035
+ }
1036
+ speed() {
1037
+ return s.dotlottieplayerwasm_speed(this.__wbg_ptr);
1038
+ }
1039
+ width() {
1040
+ return s.dotlottieplayerwasm_width(this.__wbg_ptr) >>> 0;
1041
+ }
1042
+ height() {
1043
+ return s.dotlottieplayerwasm_height(this.__wbg_ptr) >>> 0;
1044
+ }
1045
+ render() {
1046
+ return s.dotlottieplayerwasm_render(this.__wbg_ptr) !== 0;
1047
+ }
1048
+ markers() {
1049
+ return s.dotlottieplayerwasm_markers(this.__wbg_ptr);
1050
+ }
1051
+ sm_fire(t) {
1052
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
1053
+ return s.dotlottieplayerwasm_sm_fire(this.__wbg_ptr, e, n) !== 0;
1054
+ }
1055
+ sm_stop() {
1056
+ return s.dotlottieplayerwasm_sm_stop(this.__wbg_ptr) !== 0;
1057
+ }
1058
+ sm_tick(t) {
1059
+ return s.dotlottieplayerwasm_sm_tick(this.__wbg_ptr, t) !== 0;
1060
+ }
1061
+ autoplay() {
1062
+ return s.dotlottieplayerwasm_autoplay(this.__wbg_ptr) !== 0;
1063
+ }
1064
+ duration() {
1065
+ return s.dotlottieplayerwasm_duration(this.__wbg_ptr);
1066
+ }
1067
+ set_loop(t) {
1068
+ s.dotlottieplayerwasm_set_loop(this.__wbg_ptr, t);
1069
+ }
1070
+ set_mode(t) {
1071
+ s.dotlottieplayerwasm_set_mode(this.__wbg_ptr, t);
1072
+ }
1073
+ sm_start(t, e) {
1074
+ let n = X0(e, s.__wbindgen_malloc_command_export), i = u;
1075
+ return s.dotlottieplayerwasm_sm_start(this.__wbg_ptr, t, n, i) !== 0;
1076
+ }
1077
+ theme_id() {
1078
+ let t = s.dotlottieplayerwasm_theme_id(this.__wbg_ptr), e;
1079
+ return t[0] !== 0 && (e = E(t[0], t[1]).slice(), s.__wbindgen_free_command_export(t[0], t[1] * 1, 1)), e;
1080
+ }
1081
+ is_loaded() {
1082
+ return s.dotlottieplayerwasm_is_loaded(this.__wbg_ptr) !== 0;
1083
+ }
1084
+ is_paused() {
1085
+ return s.dotlottieplayerwasm_is_paused(this.__wbg_ptr) !== 0;
1086
+ }
1087
+ load_font(t, e) {
1088
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u, r = S1(e, s.__wbindgen_malloc_command_export), a = u;
1089
+ return s.dotlottieplayerwasm_load_font(this.__wbg_ptr, n, i, r, a) !== 0;
1090
+ }
1091
+ set_frame(t) {
1092
+ return s.dotlottieplayerwasm_set_frame(this.__wbg_ptr, t) !== 0;
1093
+ }
1094
+ set_speed(t) {
1095
+ s.dotlottieplayerwasm_set_speed(this.__wbg_ptr, t);
1096
+ }
1097
+ set_theme(t) {
1098
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
1099
+ return s.dotlottieplayerwasm_set_theme(this.__wbg_ptr, e, n) !== 0;
1100
+ }
1101
+ sm_status() {
1102
+ let t, e;
1103
+ try {
1104
+ let n = s.dotlottieplayerwasm_sm_status(this.__wbg_ptr);
1105
+ return t = n[0], e = n[1], E(n[0], n[1]);
1106
+ } finally {
1107
+ s.__wbindgen_free_command_export(t, e, 1);
1108
+ }
1109
+ }
1110
+ };
1111
+ async function e4(t, e) {
1112
+ if (typeof Response == "function" && t instanceof Response) {
1113
+ if (typeof WebAssembly.instantiateStreaming == "function") try {
1114
+ return await WebAssembly.instantiateStreaming(t, e);
1115
+ } catch (i) {
1116
+ if (t.headers.get("Content-Type") != "application/wasm") console.warn("`WebAssembly.instantiateStreaming` failed because your server does not serve Wasm with `application/wasm` MIME type. Falling back to `WebAssembly.instantiate` which is slower. Original error:\n", i);
1117
+ else throw i;
1118
+ }
1119
+ let n = await t.arrayBuffer();
1120
+ return await WebAssembly.instantiate(n, e);
1121
+ } else {
1122
+ let n = await WebAssembly.instantiate(t, e);
1123
+ return n instanceof WebAssembly.Instance ? { instance: n, module: t } : n;
1124
+ }
1125
+ }
1126
+ function n4() {
1127
+ let t = {};
1128
+ return t.wbg = {}, t.wbg.__wbg_buffer_609cc3eee51ed158 = function(e) {
1129
+ return e.buffer;
1130
+ }, t.wbg.__wbg_error_7534b8e9a36f1ab4 = function(e, n) {
1131
+ let i, r;
1132
+ try {
1133
+ i = e, r = n, console.error(E(e, n));
1134
+ } finally {
1135
+ s.__wbindgen_free_command_export(i, r, 1);
1136
+ }
1137
+ }, t.wbg.__wbg_new_405e22f390576ce2 = function() {
1138
+ return {};
1139
+ }, t.wbg.__wbg_new_78feb108b6472713 = function() {
1140
+ return [];
1141
+ }, t.wbg.__wbg_new_8a6f238a6ece86ea = function() {
1142
+ return Error();
1143
+ }, t.wbg.__wbg_newwithbyteoffsetandlength_d97e637ebe145a9a = function(e, n, i) {
1144
+ return new Uint8Array(e, n >>> 0, i >>> 0);
1145
+ }, t.wbg.__wbg_newwithlength_5a5efe313cfd59f1 = function(e) {
1146
+ return new Float32Array(e >>> 0);
1147
+ }, t.wbg.__wbg_push_737cfc8c1432c2c6 = function(e, n) {
1148
+ return e.push(n);
1149
+ }, t.wbg.__wbg_set_bb8cecf6a62b9f46 = function() {
1150
+ return V0(function(e, n, i) {
1151
+ return Reflect.set(e, n, i);
1152
+ }, arguments);
1153
+ }, t.wbg.__wbg_setindex_4e73afdcd9bb95cd = function(e, n, i) {
1154
+ e[n >>> 0] = i;
1155
+ }, t.wbg.__wbg_stack_0ed75d68575b0f3c = function(e, n) {
1156
+ let i = n.stack, r = f(i, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), a = u;
1157
+ Q().setInt32(e + 4, a, !0), Q().setInt32(e + 0, r, !0);
1158
+ }, t.wbg.__wbindgen_init_externref_table = function() {
1159
+ let e = s.__wbindgen_export_3, n = e.grow(4);
1160
+ e.set(0, void 0), e.set(n + 0, void 0), e.set(n + 1, null), e.set(n + 2, !0), e.set(n + 3, !1);
1161
+ }, t.wbg.__wbindgen_memory = function() {
1162
+ return s.memory;
1163
+ }, t.wbg.__wbindgen_number_new = function(e) {
1164
+ return e;
1165
+ }, t.wbg.__wbindgen_string_get = function(e, n) {
1166
+ let i = n, r = typeof i == "string" ? i : void 0;
1167
+ var a = K0(r) ? 0 : f(r, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), o = u;
1168
+ Q().setInt32(e + 4, o, !0), Q().setInt32(e + 0, a, !0);
1169
+ }, t.wbg.__wbindgen_string_new = function(e, n) {
1170
+ return E(e, n);
1171
+ }, t.wbg.__wbindgen_throw = function(e, n) {
1172
+ throw Error(E(e, n));
1173
+ }, t;
1174
+ }
1175
+ function i4(t, e) {
1176
+ return s = t.exports, y0.__wbindgen_wasm_module = e, U = null, X = null, Y = null, s.__wbindgen_start(), s;
1177
+ }
1178
+ async function y0(t) {
1179
+ if (s !== void 0) return s;
1180
+ if (t !== void 0 && (Object.getPrototypeOf(t) === Object.prototype ? { module_or_path: t } = t : console.warn("using deprecated parameters for the initialization function; pass a single object instead")), t === void 0) throw Error("WASM module URL must be provided via DotLottieWasmLoader or setWasmUrl().");
1181
+ let e = n4();
1182
+ (typeof t == "string" || typeof Request == "function" && t instanceof Request || typeof URL == "function" && t instanceof URL) && (t = fetch(t));
1183
+ let { instance: n, module: i } = await e4(await t, e);
1184
+ return i4(n, i);
1185
+ }
1186
+ var L0 = class {
1187
+ constructor() {
1188
+ c(this, "_eventListeners", /* @__PURE__ */ new Map());
1189
+ }
1190
+ addEventListener(t, e) {
1191
+ let n = this._eventListeners.get(t);
1192
+ n || (n = /* @__PURE__ */ new Set(), this._eventListeners.set(t, n)), n.add(e);
1193
+ }
1194
+ removeEventListener(t, e) {
1195
+ let n = this._eventListeners.get(t);
1196
+ n && (e ? (n.delete(e), n.size === 0 && this._eventListeners.delete(t)) : this._eventListeners.delete(t));
1197
+ }
1198
+ dispatch(t) {
1199
+ this._eventListeners.get(t.type)?.forEach((e) => e(t));
1200
+ }
1201
+ removeAllEventListeners() {
1202
+ this._eventListeners.clear();
1203
+ }
1204
+ }, A = class k {
1205
+ static _initializeObserver() {
1206
+ k._observer || (k._observer = new IntersectionObserver((e) => {
1207
+ e.forEach((n) => {
1208
+ let i = k._observedCanvases.get(n.target);
1209
+ i && (n.isIntersecting ? i.unfreeze() : i.freeze());
1210
+ });
1211
+ }, { threshold: 0 }));
1212
+ }
1213
+ static observe(e, n) {
1214
+ k._initializeObserver(), !k._observedCanvases.has(e) && (k._observedCanvases.set(e, n), k._observer?.observe(e));
1215
+ }
1216
+ static unobserve(e) {
1217
+ k._observer?.unobserve(e), k._observedCanvases.delete(e), k._observedCanvases.size === 0 && (k._observer?.disconnect(), k._observer = null);
1218
+ }
1219
+ };
1220
+ c(A, "_observer", null), c(A, "_observedCanvases", /* @__PURE__ */ new Map());
1221
+ var D = class S {
1222
+ static _initializeObserver() {
1223
+ S._observer || (S._observer = new ResizeObserver((e) => {
1224
+ e.forEach((n) => {
1225
+ let i = S._observedCanvases.get(n.target);
1226
+ if (!i) return;
1227
+ let [r, a] = i;
1228
+ clearTimeout(a);
1229
+ let o = setTimeout(() => {
1230
+ r.resize();
1231
+ }, 100);
1232
+ S._observedCanvases.set(n.target, [r, o]);
1233
+ });
1234
+ }));
1235
+ }
1236
+ static observe(e, n) {
1237
+ S._initializeObserver(), !S._observedCanvases.has(e) && (S._observedCanvases.set(e, [n, 0]), S._observer?.observe(e));
1238
+ }
1239
+ static unobserve(e) {
1240
+ let n = S._observedCanvases.get(e);
1241
+ if (n) {
1242
+ let i = n[1];
1243
+ i && clearTimeout(i);
1244
+ }
1245
+ S._observer?.unobserve(e), S._observedCanvases.delete(e), !S._observedCanvases.size && S._observer && (S._observer.disconnect(), S._observer = null);
1246
+ }
1247
+ };
1248
+ c(D, "_observer", null), c(D, "_observedCanvases", /* @__PURE__ */ new Map());
1249
+ function s4(t) {
1250
+ return /^#([\da-f]{6}|[\da-f]{8})$/iu.test(t);
1251
+ }
1252
+ function r4(t) {
1253
+ if (!s4(t)) return [0, 0, 0, 0];
1254
+ let e = t.replace("#", "");
1255
+ return e = e.length === 6 ? `${e}ff` : e, [parseInt(e.slice(0, 2), 16) / 255, parseInt(e.slice(2, 4), 16) / 255, parseInt(e.slice(4, 6), 16) / 255, parseInt(e.slice(6, 8), 16) / 255];
1256
+ }
1257
+ function Y1(t) {
1258
+ if (t.byteLength < 4) return !1;
1259
+ let e = new Uint8Array(t.slice(0, v1.byteLength));
1260
+ for (let n = 0; n < v1.length; n += 1) if (v1[n] !== e[n]) return !1;
1261
+ return !0;
1262
+ }
1263
+ function Q1(t) {
1264
+ return j0.every((e) => Object.hasOwn(t, e));
1265
+ }
1266
+ function X1(t) {
1267
+ if (typeof t == "string") try {
1268
+ return Q1(JSON.parse(t));
1269
+ } catch {
1270
+ return !1;
1271
+ }
1272
+ else return Q1(t);
1273
+ }
1274
+ function H() {
1275
+ return 1 + ((I ? window.devicePixelRatio : 1) - 1) * 0.75;
1276
+ }
1277
+ function W(t) {
1278
+ let e = t.getBoundingClientRect(), n = window.innerHeight || document.documentElement.clientHeight, i = window.innerWidth || document.documentElement.clientWidth;
1279
+ return !(e.bottom < 0 || e.top > n || e.right < 0 || e.left > i);
1280
+ }
1281
+ function P(t) {
1282
+ let e = t.target;
1283
+ if (e instanceof HTMLCanvasElement) {
1284
+ let n = e.getBoundingClientRect();
1285
+ if (n.width === 0 || n.height === 0 || e.width === 0 || e.height === 0) return null;
1286
+ let i = e.width / n.width, r = e.height / n.height, a = (t.clientX - n.left) * i, o = (t.clientY - n.top) * r;
1287
+ return !Number.isFinite(a) || !Number.isFinite(o) || Number.isNaN(a) || Number.isNaN(o) ? null : { x: a, y: o };
1288
+ }
1289
+ return null;
1290
+ }
1291
+ function C0(t) {
1292
+ let e = t.replace("OpenUrl: ", ""), n = e.indexOf(" | Target: "), i, r;
1293
+ n === -1 ? (i = e, r = "_blank") : (i = e.substring(0, n), r = e.substring(n + 11)), window.open(i, r);
1294
+ }
1295
+ function a4(t, e, n) {
1296
+ let i = null, r = e;
1297
+ async function a(l) {
1298
+ await t({ module_or_path: l });
1299
+ }
1300
+ async function o(l) {
1301
+ let h = await fetch(l);
1302
+ if (!h.ok) throw Error(`fetch ${l} responded with ${h.status} ${h.statusText}`);
1303
+ await t({ module_or_path: await h.arrayBuffer() });
1304
+ }
1305
+ return { load() {
1306
+ if (!i) {
1307
+ let l = r, h = n;
1308
+ i = (async () => {
1309
+ let d, p;
1310
+ try {
1311
+ await a(l);
1312
+ return;
1313
+ } catch (_) {
1314
+ d = _, console.warn(`Primary WASM load failed from ${l}: ${_.message}`), console.warn(`Attempting to load WASM from backup URL: ${h}`);
1315
+ }
1316
+ try {
1317
+ await a(h);
1318
+ return;
1319
+ } catch (_) {
1320
+ p = _, console.warn(`Backup WASM load failed from ${h}: ${_.message}`);
1321
+ }
1322
+ console.warn("Retrying WASM load with buffered instantiation");
1323
+ try {
1324
+ await o(l);
1325
+ return;
1326
+ } catch (_) {
1327
+ console.warn(`Buffered WASM load from ${l} failed: ${_.message}`);
1328
+ }
1329
+ try {
1330
+ await o(h);
1331
+ return;
1332
+ } catch (_) {
1333
+ throw console.error(`Primary WASM URL failed: ${d.message}`), console.error(`Backup WASM URL failed: ${p.message}`), console.error(`Buffered fallback failed: ${_.message}`), i = null, Error("WASM loading failed from all sources.");
1334
+ }
1335
+ })();
1336
+ }
1337
+ return i;
1338
+ }, setWasmUrl(l) {
1339
+ l !== r && (r = l, i = null);
1340
+ } };
1341
+ }
1342
+ const w1 = a4(y0, `https://cdn.jsdelivr.net/npm/${J1}@${V1}/dist/dotlottie-player.wasm`, `https://unpkg.com/${J1}@${V1}/dist/dotlottie-player.wasm`), b1 = (t) => {
1343
+ switch (t) {
1344
+ case "reverse":
1345
+ return B.Reverse;
1346
+ case "bounce":
1347
+ return B.Bounce;
1348
+ case "reverse-bounce":
1349
+ return B.ReverseBounce;
1350
+ default:
1351
+ return B.Forward;
1352
+ }
1353
+ }, Z1 = (t) => {
1354
+ switch (t) {
1355
+ case B.Reverse:
1356
+ return "reverse";
1357
+ case B.Bounce:
1358
+ return "bounce";
1359
+ case B.ReverseBounce:
1360
+ return "reverse-bounce";
1361
+ default:
1362
+ return "forward";
1363
+ }
1364
+ }, o4 = (t) => {
1365
+ switch (t) {
1366
+ case "contain":
1367
+ return "contain";
1368
+ case "cover":
1369
+ return "cover";
1370
+ case "fill":
1371
+ return "fill";
1372
+ case "fit-height":
1373
+ return "fit-height";
1374
+ case "fit-width":
1375
+ return "fit-width";
1376
+ case "none":
1377
+ return "none";
1378
+ default:
1379
+ return "contain";
1380
+ }
1381
+ };
1382
+ var w4 = class {
1383
+ constructor(t) {
1384
+ c(this, "_canvas", null), c(this, "_pendingLoad", null), c(this, "_context", null), c(this, "_eventManager", void 0), c(this, "_animationFrameId", null), c(this, "_frameManager", void 0), c(this, "_boundAnimationLoop", void 0), c(this, "_dotLottieCore", null), c(this, "_stateMachineId", ""), c(this, "_stateMachineConfig", null), c(this, "_isStateMachineRunning", !1), c(this, "_renderConfig", {}), c(this, "_isFrozen", !1), c(this, "_backgroundColor", null), c(this, "_lastFrameTime", null), c(this, "_boundOnClick", null), c(this, "_boundOnPointerUp", null), c(this, "_boundOnPointerDown", null), c(this, "_boundOnPointerMove", null), c(this, "_boundOnPointerEnter", null), c(this, "_boundOnPointerLeave", null), c(this, "_bufferMismatchCount", 0), c(this, "_lastExpectedBufferSize", 0), c(this, "_cachedImageData", null), c(this, "_cachedImageDataBuffer", null), c(this, "_cachedImageDataByteOffset", 0), c(this, "_marker", ""), c(this, "_segment", null), this._canvas = t.canvas ?? null, this._eventManager = new L0(), this._frameManager = new q0(), this._boundAnimationLoop = this._animationLoop.bind(this), this._renderConfig = { ...t.renderConfig, devicePixelRatio: t.renderConfig?.devicePixelRatio || H(), freezeOnOffscreen: t.renderConfig?.freezeOnOffscreen ?? !0 }, this._initWasm().then(() => {
1385
+ this._dotLottieCore = this._createCore(), this._dotLottieCore.set_autoplay(t.autoplay ?? !1), this._dotLottieCore.set_loop(t.loop ?? !1), this._dotLottieCore.set_loop_count(t.loopCount ?? 0), this._dotLottieCore.set_mode(b1(t.mode ?? "forward")), this._dotLottieCore.set_speed(t.speed ?? 1), this._dotLottieCore.set_use_frame_interpolation(t.useFrameInterpolation ?? !0), t.segment && t.segment.length === 2 && (this._segment = [t.segment[0], t.segment[1]], this._dotLottieCore.set_segment(this._segment[0], this._segment[1])), this._marker = t.marker ?? "", this._marker && this._dotLottieCore.set_marker(this._marker), this._dotLottieCore.set_layout(t.layout?.fit ?? "contain", t.layout?.align?.[0] ?? 0.5, t.layout?.align?.[1] ?? 0.5), this._stateMachineId = t.stateMachineId ?? "", this._stateMachineConfig = t.stateMachineConfig ?? null, this._onCoreCreated(), this._eventManager.dispatch({ type: "ready" }), t.data ? this._canvas ? this._loadFromData(t.data) : this._pendingLoad = { data: t.data } : t.src && (this._canvas ? this._loadFromSrc(t.src) : this._pendingLoad = { src: t.src }), t.backgroundColor && this.setBackgroundColor(t.backgroundColor);
1386
+ }).catch((e) => {
1387
+ console.error("[dotlottie-web] Initialization failed:", e), this._eventManager.dispatch({ type: "loadError", error: Error(`Failed to load wasm module: ${e}`) });
1388
+ });
1389
+ }
1390
+ async _initWasm() {
1391
+ return w1.load();
1392
+ }
1393
+ _createCore() {
1394
+ return new t4();
1395
+ }
1396
+ _onCoreCreated() {
1397
+ }
1398
+ _setupTarget(t, e) {
1399
+ return this._dotLottieCore ? this._dotLottieCore.setup_sw_target(t, e) : !1;
1400
+ }
1401
+ _drainPlayerEvents({ skipFrame: t = !1 } = {}) {
1402
+ if (!this._dotLottieCore) return;
1403
+ let e;
1404
+ for (; (e = this._dotLottieCore.poll_event()) != null; ) {
1405
+ let n = e;
1406
+ switch (n.type) {
1407
+ case "Load":
1408
+ setTimeout(() => this._eventManager.dispatch({ type: "load" }), 0);
1409
+ break;
1410
+ case "LoadError":
1411
+ setTimeout(() => this._eventManager.dispatch({ type: "loadError", error: Error("failed to load") }), 0);
1412
+ break;
1413
+ case "Play":
1414
+ queueMicrotask(() => this._eventManager.dispatch({ type: "play" }));
1415
+ break;
1416
+ case "Pause":
1417
+ queueMicrotask(() => this._eventManager.dispatch({ type: "pause" }));
1418
+ break;
1419
+ case "Stop":
1420
+ queueMicrotask(() => this._eventManager.dispatch({ type: "stop" }));
1421
+ break;
1422
+ case "Frame":
1423
+ t || queueMicrotask(() => this._eventManager.dispatch({ type: "frame", currentFrame: n.frameNo ?? 0 }));
1424
+ break;
1425
+ case "Render":
1426
+ t || queueMicrotask(() => this._eventManager.dispatch({ type: "render", currentFrame: n.frameNo ?? 0 }));
1427
+ break;
1428
+ case "Loop":
1429
+ queueMicrotask(() => this._eventManager.dispatch({ type: "loop", loopCount: n.loopCount ?? 0 }));
1430
+ break;
1431
+ case "Complete":
1432
+ queueMicrotask(() => this._eventManager.dispatch({ type: "complete" }));
1433
+ break;
1434
+ }
1435
+ }
1436
+ }
1437
+ _drainSmEvents() {
1438
+ if (!this._dotLottieCore) return;
1439
+ let t;
1440
+ for (; (t = this._dotLottieCore.sm_poll_event()) != null; ) {
1441
+ let n = t;
1442
+ switch (n.type) {
1443
+ case "Start":
1444
+ queueMicrotask(() => {
1445
+ this._isStateMachineRunning = !0, this._eventManager.dispatch({ type: "stateMachineStart" }), this._startAnimationLoop();
1446
+ });
1447
+ break;
1448
+ case "Stop":
1449
+ queueMicrotask(() => {
1450
+ this._isStateMachineRunning = !1, this._eventManager.dispatch({ type: "stateMachineStop" }), this._dotLottieCore?.is_playing() || this._stopAnimationLoop();
1451
+ });
1452
+ break;
1453
+ case "CustomEvent":
1454
+ this._eventManager.dispatch({ type: "stateMachineCustomEvent", eventName: n.message ?? "" });
1455
+ break;
1456
+ case "BooleanInputChange":
1457
+ this._eventManager.dispatch({ type: "stateMachineBooleanInputValueChange", inputName: n.name ?? "", newValue: n.newValue, oldValue: n.oldValue });
1458
+ break;
1459
+ case "NumericInputChange":
1460
+ this._eventManager.dispatch({ type: "stateMachineNumericInputValueChange", inputName: n.name ?? "", newValue: n.newValue, oldValue: n.oldValue });
1461
+ break;
1462
+ case "StringInputChange":
1463
+ this._eventManager.dispatch({ type: "stateMachineStringInputValueChange", inputName: n.name ?? "", newValue: n.newValue, oldValue: n.oldValue });
1464
+ break;
1465
+ case "InputFired":
1466
+ this._eventManager.dispatch({ type: "stateMachineInputFired", inputName: n.name ?? "" });
1467
+ break;
1468
+ case "Transition":
1469
+ this._eventManager.dispatch({ type: "stateMachineTransition", fromState: n.previousState ?? "", toState: n.newState ?? "" });
1470
+ break;
1471
+ case "StateEntered":
1472
+ this._eventManager.dispatch({ type: "stateMachineStateEntered", state: n.state ?? "" });
1473
+ break;
1474
+ case "StateExit":
1475
+ this._eventManager.dispatch({ type: "stateMachineStateExit", state: n.state ?? "" });
1476
+ break;
1477
+ case "Error":
1478
+ this._eventManager.dispatch({ type: "stateMachineError", error: n.message ?? "" });
1479
+ break;
1480
+ }
1481
+ }
1482
+ let e;
1483
+ for (; (e = this._dotLottieCore.sm_poll_internal_event()) != null; ) {
1484
+ let n = e;
1485
+ if (n.type === "Message") {
1486
+ let i = n.message ?? "";
1487
+ I && i.startsWith("OpenUrl: ") ? C0(i) : this._eventManager.dispatch({ type: "stateMachineInternalMessage", message: i });
1488
+ }
1489
+ }
1490
+ }
1491
+ _dispatchError(t) {
1492
+ console.error(t), this._eventManager.dispatch({ type: "loadError", error: Error(t) });
1493
+ }
1494
+ async _fetchData(t) {
1495
+ let e = await fetch(t);
1496
+ if (!e.ok) throw Error(`Failed to fetch animation data from URL: ${t}. ${e.status}: ${e.statusText}`);
1497
+ let n = await e.arrayBuffer();
1498
+ return Y1(n) ? n : new TextDecoder().decode(n);
1499
+ }
1500
+ _loadFromData(t) {
1501
+ if (this._dotLottieCore === null) return;
1502
+ if (!this._canvas) {
1503
+ console.warn("[dotlottie-web] Cannot load animation without canvas. Call setCanvas() first.");
1504
+ return;
1505
+ }
1506
+ let e = this._canvas.width, n = this._canvas.height;
1507
+ this._setupTarget(e, n);
1508
+ let i = !1;
1509
+ if (typeof t == "string") {
1510
+ if (!X1(t)) {
1511
+ this._dispatchError("Invalid Lottie JSON string: The provided string does not conform to the Lottie JSON format.");
1512
+ return;
1513
+ }
1514
+ i = this._dotLottieCore.load_animation(t);
1515
+ } else if (t instanceof ArrayBuffer) {
1516
+ if (!Y1(t)) {
1517
+ this._dispatchError("Invalid dotLottie ArrayBuffer: The provided ArrayBuffer does not conform to the dotLottie format.");
1518
+ return;
1519
+ }
1520
+ i = this._dotLottieCore.load_dotlottie_data(new Uint8Array(t));
1521
+ } else if (typeof t == "object") {
1522
+ if (!X1(t)) {
1523
+ this._dispatchError("Invalid Lottie JSON object: The provided object does not conform to the Lottie JSON format.");
1524
+ return;
1525
+ }
1526
+ i = this._dotLottieCore.load_animation(JSON.stringify(t));
1527
+ } else {
1528
+ this._dispatchError(`Unsupported data type for animation data. Expected:
1529
+ - string (Lottie JSON),
1530
+ - ArrayBuffer (dotLottie),
1531
+ - object (Lottie JSON).
1532
+ Received: ${typeof t}`);
1533
+ return;
1534
+ }
1535
+ if (i) {
1536
+ if (this._renderConfig.quality !== void 0 && this._dotLottieCore.set_quality(this._renderConfig.quality), I && this.resize(), this._drainPlayerEvents({ skipFrame: !!this._marker || !!this._segment }), this._marker && this._dotLottieCore.set_marker(this._marker), this._segment) {
1537
+ this._dotLottieCore.set_segment(this._segment[0], this._segment[1]);
1538
+ let r = Z1(this._dotLottieCore.mode()), a = r === "reverse" || r === "reverse-bounce" ? this._segment[1] : this._segment[0];
1539
+ this._dotLottieCore.set_frame(a);
1540
+ }
1541
+ setTimeout(() => {
1542
+ this._eventManager.dispatch({ type: "frame", currentFrame: this.currentFrame });
1543
+ }, 0), this._dotLottieCore.render(), this._drainPlayerEvents(), this._draw(), this._stateMachineId ? this.stateMachineLoad(this._stateMachineId) && this.stateMachineStart() && this._startAnimationLoop() : this._dotLottieCore.is_playing() && this._startAnimationLoop(), I && this._canvas instanceof HTMLCanvasElement && (this._renderConfig.freezeOnOffscreen && (A.observe(this._canvas, this), W(this._canvas) || this.freeze()), this._renderConfig.autoResize && D.observe(this._canvas, this));
1544
+ } else this._drainPlayerEvents();
1545
+ }
1546
+ _loadFromSrc(t) {
1547
+ this._fetchData(t).then((e) => this._loadFromData(e)).catch((e) => this._dispatchError(`Failed to load animation data from URL: ${t}. ${e}`));
1548
+ }
1549
+ get buffer() {
1550
+ return this._dotLottieCore ? this._dotLottieCore.get_pixel_buffer() : null;
1551
+ }
1552
+ get activeAnimationId() {
1553
+ return this._dotLottieCore?.animation_id() ?? void 0;
1554
+ }
1555
+ get activeThemeId() {
1556
+ return this._dotLottieCore?.theme_id() ?? void 0;
1557
+ }
1558
+ get layout() {
1559
+ if (this._dotLottieCore) return { align: [this._dotLottieCore.layout_align_x(), this._dotLottieCore.layout_align_y()], fit: o4(this._dotLottieCore.layout_fit()) };
1560
+ }
1561
+ get marker() {
1562
+ return this._dotLottieCore?.current_marker() ?? "";
1563
+ }
1564
+ get manifest() {
1565
+ try {
1566
+ let t = this._dotLottieCore?.manifest_string();
1567
+ if (this._dotLottieCore === null || !t) return null;
1568
+ let e = JSON.parse(t);
1569
+ return Object.keys(e).length === 0 ? null : e;
1570
+ } catch {
1571
+ return null;
1572
+ }
1573
+ }
1574
+ get renderConfig() {
1575
+ return this._renderConfig;
1576
+ }
1577
+ get segment() {
1578
+ if (this._dotLottieCore) return [this._dotLottieCore.segment_start(), this._dotLottieCore.segment_end()];
1579
+ }
1580
+ get loop() {
1581
+ return this._dotLottieCore?.loop_animation() ?? !1;
1582
+ }
1583
+ get mode() {
1584
+ return this._dotLottieCore ? Z1(this._dotLottieCore.mode()) : "forward";
1585
+ }
1586
+ get isFrozen() {
1587
+ return this._isFrozen;
1588
+ }
1589
+ get isStateMachineRunning() {
1590
+ return this._isStateMachineRunning;
1591
+ }
1592
+ get backgroundColor() {
1593
+ return this._backgroundColor ?? "";
1594
+ }
1595
+ get autoplay() {
1596
+ return this._dotLottieCore?.autoplay() ?? !1;
1597
+ }
1598
+ get useFrameInterpolation() {
1599
+ return this._dotLottieCore?.use_frame_interpolation() ?? !1;
1600
+ }
1601
+ get speed() {
1602
+ return this._dotLottieCore?.speed() ?? 0;
1603
+ }
1604
+ get isReady() {
1605
+ return this._dotLottieCore !== null;
1606
+ }
1607
+ get isLoaded() {
1608
+ return this._dotLottieCore?.is_loaded() ?? !1;
1609
+ }
1610
+ get isPlaying() {
1611
+ return this._dotLottieCore?.is_playing() ?? !1;
1612
+ }
1613
+ get isPaused() {
1614
+ return this._dotLottieCore?.is_paused() ?? !1;
1615
+ }
1616
+ get isStopped() {
1617
+ return this._dotLottieCore?.is_stopped() ?? !1;
1618
+ }
1619
+ get currentFrame() {
1620
+ return this._dotLottieCore ? Math.round(this._dotLottieCore.current_frame() * 100) / 100 : 0;
1621
+ }
1622
+ get loopCount() {
1623
+ return this._dotLottieCore?.current_loop_count() ?? 0;
1624
+ }
1625
+ get totalFrames() {
1626
+ return this._dotLottieCore?.total_frames() ?? 0;
1627
+ }
1628
+ get duration() {
1629
+ return (this._dotLottieCore?.duration() ?? 0) / 1e3;
1630
+ }
1631
+ get canvas() {
1632
+ return this._canvas;
1633
+ }
1634
+ load(t) {
1635
+ this._dotLottieCore !== null && (this._stopAnimationLoop(), this._cleanupCanvas(), this._isFrozen = !1, this._dotLottieCore.set_autoplay(t.autoplay ?? !1), this._dotLottieCore.set_loop(t.loop ?? !1), this._dotLottieCore.set_loop_count(t.loopCount ?? 0), this._dotLottieCore.set_mode(b1(t.mode ?? "forward")), this._dotLottieCore.set_speed(t.speed ?? 1), this._dotLottieCore.set_use_frame_interpolation(t.useFrameInterpolation ?? !0), t.segment && t.segment.length === 2 ? (this._segment = [t.segment[0], t.segment[1]], this._dotLottieCore.set_segment(this._segment[0], this._segment[1])) : (this._segment = null, this._dotLottieCore.clear_segment()), this._marker = t.marker ?? "", this._marker ? this._dotLottieCore.set_marker(this._marker) : this._dotLottieCore.clear_marker(), this._dotLottieCore.set_layout(t.layout?.fit ?? "contain", t.layout?.align?.[0] ?? 0.5, t.layout?.align?.[1] ?? 0.5), t.data ? this._canvas ? this._loadFromData(t.data) : this._pendingLoad = { data: t.data } : t.src && (this._canvas ? this._loadFromSrc(t.src) : this._pendingLoad = { src: t.src }), t.backgroundColor && this.setBackgroundColor(t.backgroundColor));
1636
+ }
1637
+ _draw() {
1638
+ if (this._dotLottieCore === null || this._canvas === null || (!this._context && "getContext" in this._canvas && typeof this._canvas.getContext == "function" && (typeof HTMLCanvasElement < "u" && this._canvas instanceof HTMLCanvasElement || typeof OffscreenCanvas < "u" && this._canvas instanceof OffscreenCanvas) && (this._context = this._canvas.getContext("2d")), !this._context)) return;
1639
+ let t = this._dotLottieCore.get_pixel_buffer(), e = this._canvas.width, n = this._canvas.height, i = e * n * 4;
1640
+ if (t.byteLength !== i) {
1641
+ this._lastExpectedBufferSize === i ? this._bufferMismatchCount += 1 : (this._bufferMismatchCount = 1, this._lastExpectedBufferSize = i), this._bufferMismatchCount === 10 && console.warn(`[dotlottie-web] Persistent buffer size mismatch detected. Expected ${i} bytes for canvas ${e}x${n}, but got ${t.byteLength} bytes. This may indicate a WASM memory allocation issue or invalid canvas dimensions.`);
1642
+ return;
1643
+ }
1644
+ this._bufferMismatchCount = 0, this._lastExpectedBufferSize = i;
1645
+ let r = this._cachedImageData;
1646
+ if (!(r !== null && r.width === e && r.height === n && r.data.byteLength === i && this._cachedImageDataBuffer === t.buffer && this._cachedImageDataByteOffset === t.byteOffset)) {
1647
+ if (typeof ImageData > "u") this._cachedImageData = this._context.createImageData(e, n);
1648
+ else {
1649
+ let a = new Uint8ClampedArray(t.buffer, t.byteOffset, t.byteLength);
1650
+ this._cachedImageData = new ImageData(a, e, n);
1651
+ }
1652
+ this._cachedImageDataBuffer = t.buffer, this._cachedImageDataByteOffset = t.byteOffset;
1653
+ }
1654
+ if (typeof ImageData > "u") {
1655
+ let a = new Uint8ClampedArray(t.buffer, t.byteOffset, t.byteLength);
1656
+ this._cachedImageData.data.set(a);
1657
+ }
1658
+ this._context.putImageData(this._cachedImageData, 0, 0);
1659
+ }
1660
+ _cleanupCanvas() {
1661
+ this._canvas && I && this._canvas instanceof HTMLCanvasElement && (A.unobserve(this._canvas), D.unobserve(this._canvas), this._cleanupStateMachineListeners());
1662
+ }
1663
+ _initializeCanvas() {
1664
+ this._setupRendererOnCanvas(), this._canvas && I && this._canvas instanceof HTMLCanvasElement && this.isLoaded && (this._renderConfig.freezeOnOffscreen && (A.observe(this._canvas, this), W(this._canvas) || this.freeze()), this._renderConfig.autoResize && D.observe(this._canvas, this), this._isStateMachineRunning && this._setupStateMachineListeners()), this._canvas && this._dotLottieCore && this.isLoaded && this._setupTarget(this._canvas.width, this._canvas.height) && (this._dotLottieCore.render(), this._draw());
1665
+ }
1666
+ _setupRendererOnCanvas() {
1667
+ this._context = null;
1668
+ }
1669
+ _stopAnimationLoop() {
1670
+ this._animationFrameId !== null && (this._frameManager.cancelAnimationFrame(this._animationFrameId), this._animationFrameId = null), this._lastFrameTime = null;
1671
+ }
1672
+ _startAnimationLoop() {
1673
+ this._animationFrameId === null && this._dotLottieCore && !this._isFrozen && (this._dotLottieCore.is_playing() || this._isStateMachineRunning) && (this._animationFrameId = this._frameManager.requestAnimationFrame(this._boundAnimationLoop));
1674
+ }
1675
+ _animationLoop(t) {
1676
+ if (this._dotLottieCore === null) {
1677
+ this._stopAnimationLoop();
1678
+ return;
1679
+ }
1680
+ if (!this._dotLottieCore.is_playing() && !this._isStateMachineRunning) {
1681
+ this._stopAnimationLoop();
1682
+ return;
1683
+ }
1684
+ try {
1685
+ let e = this._lastFrameTime === null ? 0 : t - this._lastFrameTime;
1686
+ this._lastFrameTime = t;
1687
+ let n = this._isStateMachineRunning ? this._dotLottieCore.sm_tick(e) : this._dotLottieCore.tick(e);
1688
+ this._isStateMachineRunning ? this._drainSmEvents() : this._drainPlayerEvents(), n && this._draw(), this._animationFrameId = this._frameManager.requestAnimationFrame(this._boundAnimationLoop);
1689
+ } catch (e) {
1690
+ console.error("Error in animation frame:", e), this._eventManager.dispatch({ type: "renderError", error: e }), e instanceof WebAssembly.RuntimeError && this.destroy();
1691
+ }
1692
+ }
1693
+ play() {
1694
+ if (this._dotLottieCore === null || !this.isLoaded) return;
1695
+ this._stopAnimationLoop();
1696
+ let t = this._dotLottieCore.play();
1697
+ this._drainPlayerEvents(), (t || this._dotLottieCore.is_playing()) && (this._isFrozen = !1, this._startAnimationLoop()), this._canvas && I && this._canvas instanceof HTMLCanvasElement && this._renderConfig.freezeOnOffscreen && !W(this._canvas) && this.freeze();
1698
+ }
1699
+ pause() {
1700
+ this._dotLottieCore !== null && (this._dotLottieCore.pause(), this._drainPlayerEvents(), this._stopAnimationLoop());
1701
+ }
1702
+ stop() {
1703
+ if (this._dotLottieCore === null) return;
1704
+ let t = this._dotLottieCore.stop();
1705
+ this._drainPlayerEvents(), this._stopAnimationLoop(), t && (this._eventManager.dispatch({ type: "frame", currentFrame: this.currentFrame }), this._dotLottieCore.render(), this._draw());
1706
+ }
1707
+ setFrame(t) {
1708
+ if (this._dotLottieCore !== null && this._dotLottieCore.set_frame(t)) {
1709
+ let e = this._dotLottieCore.render();
1710
+ this._drainPlayerEvents(), e && this._draw();
1711
+ }
1712
+ }
1713
+ setSpeed(t) {
1714
+ this._dotLottieCore !== null && this._dotLottieCore.set_speed(t);
1715
+ }
1716
+ setBackgroundColor(t) {
1717
+ if (this._dotLottieCore !== null) {
1718
+ if (I && this._canvas instanceof HTMLCanvasElement) this._canvas.style.backgroundColor = t;
1719
+ else {
1720
+ let [e, n, i, r] = r4(t);
1721
+ this._dotLottieCore.set_background(e, n, i, r);
1722
+ }
1723
+ this._backgroundColor = t;
1724
+ }
1725
+ }
1726
+ setLoop(t) {
1727
+ this._dotLottieCore !== null && this._dotLottieCore.set_loop(t);
1728
+ }
1729
+ setLoopCount(t) {
1730
+ this._dotLottieCore !== null && this._dotLottieCore.set_loop_count(t);
1731
+ }
1732
+ setUseFrameInterpolation(t) {
1733
+ this._dotLottieCore !== null && this._dotLottieCore.set_use_frame_interpolation(t);
1734
+ }
1735
+ addEventListener(t, e) {
1736
+ this._eventManager.addEventListener(t, e);
1737
+ }
1738
+ removeEventListener(t, e) {
1739
+ this._eventManager.removeEventListener(t, e);
1740
+ }
1741
+ destroy() {
1742
+ this._stopAnimationLoop(), this._isStateMachineRunning = !1, this._cleanupCanvas();
1743
+ let t = this._dotLottieCore;
1744
+ if (this._dotLottieCore = null, this._context = null, t) try {
1745
+ t.free();
1746
+ } catch (e) {
1747
+ console.warn("[dotlottie-web] Error freeing wasm core during destroy:", e);
1748
+ }
1749
+ this._eventManager.dispatch({ type: "destroy" }), this._eventManager.removeAllEventListeners(), this._cleanupStateMachineListeners();
1750
+ }
1751
+ freeze() {
1752
+ this._animationFrameId !== null && (this._stopAnimationLoop(), this._isFrozen = !0, this._eventManager.dispatch({ type: "freeze" }));
1753
+ }
1754
+ unfreeze() {
1755
+ this._animationFrameId === null && (this._isFrozen = !1, this._eventManager.dispatch({ type: "unfreeze" }), this._startAnimationLoop());
1756
+ }
1757
+ resize() {
1758
+ if (!(!this._dotLottieCore || !this.isLoaded || !this._canvas)) {
1759
+ if (I && this._canvas instanceof HTMLCanvasElement) {
1760
+ let t = this._renderConfig.devicePixelRatio || window.devicePixelRatio || 1, { height: e, width: n } = this._canvas.getBoundingClientRect();
1761
+ e !== 0 && n !== 0 && (this._canvas.width = n * t, this._canvas.height = e * t);
1762
+ }
1763
+ this._setupTarget(this._canvas.width, this._canvas.height) && (this._dotLottieCore.render(), this._draw());
1764
+ }
1765
+ }
1766
+ setCanvas(t) {
1767
+ if (!(!t || this._canvas === t) && (this._canvas && this._cleanupCanvas(), this._canvas = t, this._initializeCanvas(), this._pendingLoad)) {
1768
+ let e = this._pendingLoad;
1769
+ this._pendingLoad = null, e.data ? this._loadFromData(e.data) : e.src && this._loadFromSrc(e.src);
1770
+ }
1771
+ }
1772
+ setTransform(t) {
1773
+ if (!this._dotLottieCore) return !1;
1774
+ let e = this._dotLottieCore.set_transform(new Float32Array(t));
1775
+ return e && this._dotLottieCore.render() && this._draw(), e;
1776
+ }
1777
+ getTransform() {
1778
+ if (!this._dotLottieCore) return;
1779
+ let t = this._dotLottieCore.get_transform();
1780
+ return Array.from(t);
1781
+ }
1782
+ setSegment(t, e) {
1783
+ this._dotLottieCore !== null && (this._segment = [t, e], this._dotLottieCore.set_segment(t, e));
1784
+ }
1785
+ resetSegment() {
1786
+ this._dotLottieCore !== null && (this._segment = null, this._dotLottieCore.clear_segment());
1787
+ }
1788
+ setMode(t) {
1789
+ this._dotLottieCore !== null && this._dotLottieCore.set_mode(b1(t));
1790
+ }
1791
+ setRenderConfig(t) {
1792
+ let { devicePixelRatio: e, freezeOnOffscreen: n, quality: i, ...r } = t;
1793
+ this._renderConfig = { ...this._renderConfig, ...r, devicePixelRatio: e || H(), freezeOnOffscreen: n ?? !0, ...i !== void 0 && { quality: i } }, i !== void 0 && this._dotLottieCore && this._dotLottieCore.set_quality(i), I && this._canvas instanceof HTMLCanvasElement && (this._renderConfig.autoResize ? D.observe(this._canvas, this) : D.unobserve(this._canvas), this._renderConfig.freezeOnOffscreen ? (A.observe(this._canvas, this), W(this._canvas) || this.freeze()) : (A.unobserve(this._canvas), this._isFrozen && this.unfreeze()));
1794
+ }
1795
+ loadAnimation(t) {
1796
+ this._dotLottieCore === null || this._dotLottieCore.animation_id() === t || !this._canvas || (this._setupTarget(this._canvas.width, this._canvas.height), this._dotLottieCore.load_animation_from_id(t) ? (this._renderConfig.quality !== void 0 && this._dotLottieCore.set_quality(this._renderConfig.quality), this.resize(), this._drainPlayerEvents(), this._dotLottieCore.render(), this._draw()) : this._dispatchError(`Failed to load animation with id: ${t}`));
1797
+ }
1798
+ setMarker(t) {
1799
+ this._dotLottieCore !== null && (this.markers().some((e) => e.name === t) ? (this._marker = t, this._dotLottieCore.set_marker(t)) : (this._marker = "", this._segment = null, this._dotLottieCore.clear_marker(), this._dotLottieCore.clear_segment()));
1800
+ }
1801
+ markers() {
1802
+ let t = this._dotLottieCore?.markers();
1803
+ return t && Array.isArray(t) ? t : [];
1804
+ }
1805
+ setTheme(t) {
1806
+ if (this._dotLottieCore === null) return !1;
1807
+ let e = this._dotLottieCore.set_theme(t);
1808
+ return e && (this._dotLottieCore.render(), this._draw()), e;
1809
+ }
1810
+ resetTheme() {
1811
+ if (this._dotLottieCore === null) return !1;
1812
+ let t = this._dotLottieCore.reset_theme();
1813
+ return t && (this._dotLottieCore.render(), this._draw()), t;
1814
+ }
1815
+ setThemeData(t) {
1816
+ if (this._dotLottieCore === null) return !1;
1817
+ let e = typeof t == "string" ? t : JSON.stringify(t), n = this._dotLottieCore.set_theme_data(e);
1818
+ return n && (this._dotLottieCore.render(), this._draw()), n;
1819
+ }
1820
+ setSlots(t) {
1821
+ this._dotLottieCore !== null && this._dotLottieCore.set_slots_str(JSON.stringify(t)) && (this._dotLottieCore.render(), this._draw());
1822
+ }
1823
+ _isKeyframeArray(t) {
1824
+ return Array.isArray(t) && t.length > 0 && typeof t[0] == "object" && t[0] !== null && "t" in t[0] && "s" in t[0];
1825
+ }
1826
+ getSlotIds() {
1827
+ if (!this._dotLottieCore) return [];
1828
+ let t = this._dotLottieCore.get_slot_ids();
1829
+ return Array.isArray(t) ? t : [];
1830
+ }
1831
+ getSlotType(t) {
1832
+ if (!this._dotLottieCore) return;
1833
+ let e = this._dotLottieCore.get_slot_type(t);
1834
+ if (e) return e;
1835
+ }
1836
+ getSlot(t) {
1837
+ if (!this._dotLottieCore) return;
1838
+ let e = this._dotLottieCore.get_slot_str(t);
1839
+ if (e) try {
1840
+ return JSON.parse(e);
1841
+ } catch {
1842
+ return;
1843
+ }
1844
+ }
1845
+ getSlots() {
1846
+ if (!this._dotLottieCore) return {};
1847
+ try {
1848
+ return JSON.parse(this._dotLottieCore.get_slots_str());
1849
+ } catch {
1850
+ return {};
1851
+ }
1852
+ }
1853
+ setColorSlot(t, e) {
1854
+ if (this._dotLottieCore === null) return !1;
1855
+ let n = this._isKeyframeArray(e), i = JSON.stringify({ a: +!!n, k: e }), r = this._dotLottieCore.set_slot_str(t, i);
1856
+ return this._dotLottieCore.render(), this._draw(), r;
1857
+ }
1858
+ setScalarSlot(t, e) {
1859
+ if (this._dotLottieCore === null) return !1;
1860
+ let n = JSON.stringify({ a: typeof e == "number" ? 0 : 1, k: e }), i = this._dotLottieCore.set_slot_str(t, n);
1861
+ return this._dotLottieCore.render(), this._draw(), i;
1862
+ }
1863
+ setVectorSlot(t, e) {
1864
+ if (this._dotLottieCore === null) return !1;
1865
+ let n = this._isKeyframeArray(e), i = JSON.stringify({ a: +!!n, k: e }), r = this._dotLottieCore.set_slot_str(t, i);
1866
+ return this._dotLottieCore.render(), this._draw(), r;
1867
+ }
1868
+ setGradientSlot(t, e, n) {
1869
+ if (this._dotLottieCore === null) return !1;
1870
+ let i = this._isKeyframeArray(e), r = JSON.stringify({ k: { a: +!!i, k: e }, p: n }), a = this._dotLottieCore.set_slot_str(t, r);
1871
+ return this._dotLottieCore.render(), this._draw(), a;
1872
+ }
1873
+ setTextSlot(t, e) {
1874
+ if (this._dotLottieCore === null) return !1;
1875
+ let n = this._dotLottieCore.get_slot_str(t), i = e;
1876
+ if (n) {
1877
+ let o = JSON.parse(n);
1878
+ if (o && "k" in o && Array.isArray(o.k)) {
1879
+ let l = o.k[0];
1880
+ "s" in l && typeof l.s == "object" && (i = { ...l.s, ...e });
1881
+ }
1882
+ }
1883
+ let r = JSON.stringify({ a: 0, k: [{ t: 0, s: i }] }), a = this._dotLottieCore.set_slot_str(t, r);
1884
+ return this._dotLottieCore.render(), this._draw(), a;
1885
+ }
1886
+ resetSlot(t) {
1887
+ if (this._dotLottieCore === null) return !1;
1888
+ let e = this._dotLottieCore.reset_slot(t);
1889
+ return this._dotLottieCore.render(), this._draw(), e;
1890
+ }
1891
+ clearSlot(t) {
1892
+ if (this._dotLottieCore === null) return !1;
1893
+ let e = this._dotLottieCore.clear_slot(t);
1894
+ return this._dotLottieCore.render(), this._draw(), e;
1895
+ }
1896
+ resetSlots() {
1897
+ if (this._dotLottieCore === null) return !1;
1898
+ let t = this._dotLottieCore.reset_slots();
1899
+ return this._dotLottieCore.render(), this._draw(), t;
1900
+ }
1901
+ clearSlots() {
1902
+ if (this._dotLottieCore === null) return !1;
1903
+ let t = this._dotLottieCore.clear_slots();
1904
+ return this._dotLottieCore.render(), this._draw(), t;
1905
+ }
1906
+ setLayout(t) {
1907
+ this._dotLottieCore !== null && this._dotLottieCore.set_layout(t.fit ?? "contain", t.align?.[0] ?? 0.5, t.align?.[1] ?? 0.5);
1908
+ }
1909
+ setViewport(t, e, n, i) {
1910
+ return this._dotLottieCore === null ? !1 : this._dotLottieCore.set_viewport(t, e, n, i);
1911
+ }
1912
+ static setWasmUrl(t) {
1913
+ w1.setWasmUrl(t);
1914
+ }
1915
+ static async registerFont(t, e) {
1916
+ try {
1917
+ await w1.load();
1918
+ let n;
1919
+ if (typeof e == "string") {
1920
+ let r = await fetch(e);
1921
+ if (!r.ok) return console.error(`Failed to fetch font from URL: ${e}. Status: ${r.status}`), !1;
1922
+ n = new Uint8Array(await r.arrayBuffer());
1923
+ } else n = e instanceof Uint8Array ? e : new Uint8Array(e);
1924
+ let i = Z0(t, n);
1925
+ return i || console.error(`Failed to register font "${t}". Font data may be invalid.`), i;
1926
+ } catch (n) {
1927
+ return console.error(`Error registering font "${t}":`, n), !1;
1928
+ }
1929
+ }
1930
+ animationSize() {
1931
+ let t = this._dotLottieCore?.animation_size();
1932
+ return { width: t?.[0] ?? 0, height: t?.[1] ?? 0 };
1933
+ }
1934
+ stateMachineLoad(t) {
1935
+ return this._dotLottieCore ? this._dotLottieCore.state_machine_load_from_id(t) : !1;
1936
+ }
1937
+ stateMachineLoadData(t) {
1938
+ return this._dotLottieCore ? this._dotLottieCore.state_machine_load(t) : !1;
1939
+ }
1940
+ stateMachineSetConfig(t) {
1941
+ this._stateMachineConfig = t;
1942
+ }
1943
+ stateMachineStart() {
1944
+ if (this._dotLottieCore === null) return !1;
1945
+ let t = this._dotLottieCore.sm_start(this._stateMachineConfig?.openUrlPolicy?.requireUserInteraction ?? !0, this._stateMachineConfig?.openUrlPolicy?.whitelist ?? []);
1946
+ return this._drainSmEvents(), t && (this._isStateMachineRunning = !0, this._setupStateMachineListeners(), this._startAnimationLoop()), t;
1947
+ }
1948
+ stateMachineStop() {
1949
+ if (!this._dotLottieCore) return !1;
1950
+ let t = this._dotLottieCore.sm_stop();
1951
+ return this._drainSmEvents(), t && (this._isStateMachineRunning = !1, this._cleanupStateMachineListeners(), this._dotLottieCore.is_playing() || this._stopAnimationLoop()), t;
1952
+ }
1953
+ stateMachineGetStatus() {
1954
+ return this._dotLottieCore?.sm_status() ?? "";
1955
+ }
1956
+ stateMachineGetCurrentState() {
1957
+ return this._dotLottieCore?.sm_current_state() ?? "";
1958
+ }
1959
+ stateMachineGetActiveId() {
1960
+ return this._dotLottieCore?.state_machine_id() ?? "";
1961
+ }
1962
+ stateMachineOverrideState(t, e = !1) {
1963
+ return this._dotLottieCore?.sm_override_current_state(t, e) ?? !1;
1964
+ }
1965
+ stateMachineGet(t) {
1966
+ return this._dotLottieCore?.get_state_machine(t) ?? "";
1967
+ }
1968
+ stateMachineGetListeners() {
1969
+ if (!this._dotLottieCore) return [];
1970
+ let t = this._dotLottieCore.sm_framework_setup();
1971
+ return Array.isArray(t) ? t : [];
1972
+ }
1973
+ stateMachineSetBooleanInput(t, e) {
1974
+ return this._dotLottieCore?.sm_set_boolean_input(t, e) ?? !1;
1975
+ }
1976
+ stateMachineSetNumericInput(t, e) {
1977
+ return this._dotLottieCore?.sm_set_numeric_input(t, e) ?? !1;
1978
+ }
1979
+ stateMachineSetStringInput(t, e) {
1980
+ return this._dotLottieCore?.sm_set_string_input(t, e) ?? !1;
1981
+ }
1982
+ stateMachineGetBooleanInput(t) {
1983
+ return this._dotLottieCore?.sm_get_boolean_input(t) ?? void 0;
1984
+ }
1985
+ stateMachineGetNumericInput(t) {
1986
+ return this._dotLottieCore?.sm_get_numeric_input(t) ?? void 0;
1987
+ }
1988
+ stateMachineGetStringInput(t) {
1989
+ return this._dotLottieCore?.sm_get_string_input(t) ?? void 0;
1990
+ }
1991
+ stateMachineGetInputs() {
1992
+ if (!this._dotLottieCore) return [];
1993
+ let t = this._dotLottieCore.sm_get_inputs();
1994
+ return Array.isArray(t) ? t : [];
1995
+ }
1996
+ stateMachineFireEvent(t) {
1997
+ this._dotLottieCore?.sm_fire(t);
1998
+ }
1999
+ stateMachinePostClickEvent(t, e) {
2000
+ this._dotLottieCore?.sm_post_click(t, e);
2001
+ }
2002
+ stateMachinePostPointerUpEvent(t, e) {
2003
+ this._dotLottieCore?.sm_post_pointer_up(t, e);
2004
+ }
2005
+ stateMachinePostPointerDownEvent(t, e) {
2006
+ this._dotLottieCore?.sm_post_pointer_down(t, e);
2007
+ }
2008
+ stateMachinePostPointerMoveEvent(t, e) {
2009
+ this._dotLottieCore?.sm_post_pointer_move(t, e);
2010
+ }
2011
+ stateMachinePostPointerEnterEvent(t, e) {
2012
+ this._dotLottieCore?.sm_post_pointer_enter(t, e);
2013
+ }
2014
+ stateMachinePostPointerExitEvent(t, e) {
2015
+ this._dotLottieCore?.sm_post_pointer_exit(t, e);
2016
+ }
2017
+ _onClick(t) {
2018
+ let e = P(t);
2019
+ e && this.stateMachinePostClickEvent(e.x, e.y);
2020
+ }
2021
+ _onPointerUp(t) {
2022
+ let e = P(t);
2023
+ e && this.stateMachinePostPointerUpEvent(e.x, e.y);
2024
+ }
2025
+ _onPointerDown(t) {
2026
+ let e = P(t);
2027
+ e && this.stateMachinePostPointerDownEvent(e.x, e.y);
2028
+ }
2029
+ _onPointerMove(t) {
2030
+ let e = P(t);
2031
+ e && this.stateMachinePostPointerMoveEvent(e.x, e.y);
2032
+ }
2033
+ _onPointerEnter(t) {
2034
+ let e = P(t);
2035
+ e && this.stateMachinePostPointerEnterEvent(e.x, e.y);
2036
+ }
2037
+ _onPointerLeave(t) {
2038
+ let e = P(t);
2039
+ e && this.stateMachinePostPointerExitEvent(e.x, e.y);
2040
+ }
2041
+ _setupStateMachineListeners() {
2042
+ if (I && this._canvas instanceof HTMLCanvasElement && this._dotLottieCore !== null && this.isLoaded) {
2043
+ let t = this.stateMachineGetListeners();
2044
+ this._cleanupStateMachineListeners(), t.includes("Click") && (this._boundOnClick = this._onClick.bind(this), this._canvas.addEventListener("click", this._boundOnClick)), t.includes("PointerUp") && (this._boundOnPointerUp = this._onPointerUp.bind(this), this._canvas.addEventListener("pointerup", this._boundOnPointerUp)), t.includes("PointerDown") && (this._boundOnPointerDown = this._onPointerDown.bind(this), this._canvas.addEventListener("pointerdown", this._boundOnPointerDown)), t.includes("PointerMove") && (this._boundOnPointerMove = this._onPointerMove.bind(this), this._canvas.addEventListener("pointermove", this._boundOnPointerMove)), t.includes("PointerEnter") && (this._boundOnPointerEnter = this._onPointerEnter.bind(this), this._canvas.addEventListener("pointerenter", this._boundOnPointerEnter)), t.includes("PointerExit") && (this._boundOnPointerLeave = this._onPointerLeave.bind(this), this._canvas.addEventListener("pointerleave", this._boundOnPointerLeave));
2045
+ }
2046
+ }
2047
+ _cleanupStateMachineListeners() {
2048
+ I && this._canvas instanceof HTMLCanvasElement && (this._boundOnClick && (this._canvas.removeEventListener("click", this._boundOnClick), this._boundOnClick = null), this._boundOnPointerUp && (this._canvas.removeEventListener("pointerup", this._boundOnPointerUp), this._boundOnPointerUp = null), this._boundOnPointerDown && (this._canvas.removeEventListener("pointerdown", this._boundOnPointerDown), this._boundOnPointerDown = null), this._boundOnPointerMove && (this._canvas.removeEventListener("pointermove", this._boundOnPointerMove), this._boundOnPointerMove = null), this._boundOnPointerEnter && (this._canvas.removeEventListener("pointerenter", this._boundOnPointerEnter), this._boundOnPointerEnter = null), this._boundOnPointerLeave && (this._canvas.removeEventListener("pointerleave", this._boundOnPointerLeave), this._boundOnPointerLeave = null));
2049
+ }
2050
+ }, _4 = class {
2051
+ constructor() {
2052
+ if (typeof Worker > "u") throw Error("Worker is not supported in this environment.");
2053
+ let t = new Blob([new Uint8Array([34, 117, 115, 101, 32, 115, 116, 114, 105, 99, 116, 34, 59, 40, 40, 41, 61, 62, 123, 118, 97, 114, 32, 99, 116, 61, 79, 98, 106, 101, 99, 116, 46, 100, 101, 102, 105, 110, 101, 80, 114, 111, 112, 101, 114, 116, 121, 59, 118, 97, 114, 32, 95, 116, 61, 40, 110, 44, 116, 44, 101, 41, 61, 62, 116, 32, 105, 110, 32, 110, 63, 99, 116, 40, 110, 44, 116, 44, 123, 101, 110, 117, 109, 101, 114, 97, 98, 108, 101, 58, 33, 48, 44, 99, 111, 110, 102, 105, 103, 117, 114, 97, 98, 108, 101, 58, 33, 48, 44, 119, 114, 105, 116, 97, 98, 108, 101, 58, 33, 48, 44, 118, 97, 108, 117, 101, 58, 101, 125, 41, 58, 110, 91, 116, 93, 61, 101, 59, 118, 97, 114, 32, 108, 61, 40, 110, 44, 116, 44, 101, 41, 61, 62, 95, 116, 40, 110, 44, 116, 121, 112, 101, 111, 102, 32, 116, 33, 61, 34, 115, 121, 109, 98, 111, 108, 34, 63, 116, 43, 34, 34, 58, 116, 44, 101, 41, 59, 118, 97, 114, 32, 66, 61, 99, 108, 97, 115, 115, 123, 114, 101, 113, 117, 101, 115, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 114, 101, 113, 117, 101, 115, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 125, 99, 97, 110, 99, 101, 108, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 123, 99, 97, 110, 99, 101, 108, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 125, 125, 44, 68, 61, 99, 108, 97, 115, 115, 123, 99, 111, 110, 115, 116, 114, 117, 99, 116, 111, 114, 40, 41, 123, 108, 40, 116, 104, 105, 115, 44, 34, 95, 108, 97, 115, 116, 72, 97, 110, 100, 108, 101, 73, 100, 34, 44, 48, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 108, 97, 115, 116, 73, 109, 109, 101, 100, 105, 97, 116, 101, 34, 44, 110, 117, 108, 108, 41, 125, 114, 101, 113, 117, 101, 115, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 72, 97, 110, 100, 108, 101, 73, 100, 62, 61, 78, 117, 109, 98, 101, 114, 46, 77, 65, 88, 95, 83, 65, 70, 69, 95, 73, 78, 84, 69, 71, 69, 82, 38, 38, 40, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 72, 97, 110, 100, 108, 101, 73, 100, 61, 48, 41, 44, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 72, 97, 110, 100, 108, 101, 73, 100, 43, 61, 49, 44, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 73, 109, 109, 101, 100, 105, 97, 116, 101, 61, 115, 101, 116, 73, 109, 109, 101, 100, 105, 97, 116, 101, 40, 40, 41, 61, 62, 123, 116, 40, 112, 101, 114, 102, 111, 114, 109, 97, 110, 99, 101, 46, 110, 111, 119, 40, 41, 41, 125, 41, 44, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 72, 97, 110, 100, 108, 101, 73, 100, 125, 99, 97, 110, 99, 101, 108, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 73, 109, 109, 101, 100, 105, 97, 116, 101, 38, 38, 99, 108, 101, 97, 114, 73, 109, 109, 101, 100, 105, 97, 116, 101, 40, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 73, 109, 109, 101, 100, 105, 97, 116, 101, 41, 125, 125, 44, 84, 61, 99, 108, 97, 115, 115, 123, 99, 111, 110, 115, 116, 114, 117, 99, 116, 111, 114, 40, 41, 123, 108, 40, 116, 104, 105, 115, 44, 34, 95, 115, 116, 114, 97, 116, 101, 103, 121, 34, 41, 59, 116, 104, 105, 115, 46, 95, 115, 116, 114, 97, 116, 101, 103, 121, 61, 116, 121, 112, 101, 111, 102, 32, 114, 101, 113, 117, 101, 115, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 61, 61, 34, 102, 117, 110, 99, 116, 105, 111, 110, 34, 63, 110, 101, 119, 32, 66, 58, 110, 101, 119, 32, 68, 125, 114, 101, 113, 117, 101, 115, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 115, 116, 114, 97, 116, 101, 103, 121, 46, 114, 101, 113, 117, 101, 115, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 125, 99, 97, 110, 99, 101, 108, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 115, 116, 114, 97, 116, 101, 103, 121, 46, 99, 97, 110, 99, 101, 108, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 41, 125, 125, 59, 118, 97, 114, 32, 103, 61, 116, 121, 112, 101, 111, 102, 32, 119, 105, 110, 100, 111, 119, 60, 34, 117, 34, 38, 38, 116, 121, 112, 101, 111, 102, 32, 119, 105, 110, 100, 111, 119, 46, 100, 111, 99, 117, 109, 101, 110, 116, 60, 34, 117, 34, 59, 118, 97, 114, 32, 80, 61, 110, 101, 119, 32, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 40, 91, 56, 48, 44, 55, 53, 44, 51, 44, 52, 93, 41, 44, 75, 61, 91, 34, 118, 34, 44, 34, 105, 112, 34, 44, 34, 111, 112, 34, 44, 34, 108, 97, 121, 101, 114, 115, 34, 44, 34, 102, 114, 34, 44, 34, 119, 34, 44, 34, 104, 34, 93, 44, 36, 61, 34, 48, 46, 55, 50, 46, 49, 34, 44, 122, 61, 34, 64, 108, 111, 116, 116, 105, 101, 102, 105, 108, 101, 115, 47, 100, 111, 116, 108, 111, 116, 116, 105, 101, 45, 119, 101, 98, 34, 44, 89, 61, 46, 55, 53, 44, 88, 61, 52, 59, 118, 97, 114, 32, 115, 44, 81, 61, 116, 121, 112, 101, 111, 102, 32, 84, 101, 120, 116, 68, 101, 99, 111, 100, 101, 114, 60, 34, 117, 34, 63, 110, 101, 119, 32, 84, 101, 120, 116, 68, 101, 99, 111, 100, 101, 114, 40, 34, 117, 116, 102, 45, 56, 34, 44, 123, 105, 103, 110, 111, 114, 101, 66, 79, 77, 58, 33, 48, 44, 102, 97, 116, 97, 108, 58, 33, 48, 125, 41, 58, 123, 100, 101, 99, 111, 100, 101, 58, 40, 41, 61, 62, 123, 116, 104, 114, 111, 119, 32, 69, 114, 114, 111, 114, 40, 34, 84, 101, 120, 116, 68, 101, 99, 111, 100, 101, 114, 32, 110, 111, 116, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 34, 41, 125, 125, 59, 116, 121, 112, 101, 111, 102, 32, 84, 101, 120, 116, 68, 101, 99, 111, 100, 101, 114, 60, 34, 117, 34, 38, 38, 81, 46, 100, 101, 99, 111, 100, 101, 40, 41, 59, 118, 97, 114, 32, 76, 61, 110, 117, 108, 108, 59, 102, 117, 110, 99, 116, 105, 111, 110, 32, 83, 40, 41, 123, 114, 101, 116, 117, 114, 110, 40, 76, 61, 61, 61, 110, 117, 108, 108, 124, 124, 76, 46, 98, 121, 116, 101, 76, 101, 110, 103, 116, 104, 61, 61, 61, 48, 41, 38, 38, 40, 76, 61, 110, 101, 119, 32, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 40, 115, 46, 109, 101, 109, 111, 114, 121, 46, 98, 117, 102, 102, 101, 114, 41, 41, 44, 76, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 109, 40, 110, 44, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 110, 61, 110, 62, 62, 62, 48, 44, 81, 46, 100, 101, 99, 111, 100, 101, 40, 83, 40, 41, 46, 115, 117, 98, 97, 114, 114, 97, 121, 40, 110, 44, 110, 43, 116, 41, 41, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 113, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 115, 46, 95, 95, 101, 120, 116, 101, 114, 110, 114, 101, 102, 95, 116, 97, 98, 108, 101, 95, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 101, 120, 112, 111, 114, 116, 95, 51, 46, 115, 101, 116, 40, 116, 44, 110, 41, 44, 116, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 100, 116, 40, 110, 44, 116, 41, 123, 116, 114, 121, 123, 114, 101, 116, 117, 114, 110, 32, 110, 46, 97, 112, 112, 108, 121, 40, 116, 104, 105, 115, 44, 116, 41, 125, 99, 97, 116, 99, 104, 40, 101, 41, 123, 108, 101, 116, 32, 114, 61, 113, 40, 101, 41, 59, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 101, 120, 110, 95, 115, 116, 111, 114, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 114, 41, 125, 125, 118, 97, 114, 32, 95, 61, 48, 44, 65, 61, 116, 121, 112, 101, 111, 102, 32, 84, 101, 120, 116, 69, 110, 99, 111, 100, 101, 114, 60, 34, 117, 34, 63, 110, 101, 119, 32, 84, 101, 120, 116, 69, 110, 99, 111, 100, 101, 114, 40, 34, 117, 116, 102, 45, 56, 34, 41, 58, 123, 101, 110, 99, 111, 100, 101, 58, 40, 41, 61, 62, 123, 116, 104, 114, 111, 119, 32, 69, 114, 114, 111, 114, 40, 34, 84, 101, 120, 116, 69, 110, 99, 111, 100, 101, 114, 32, 110, 111, 116, 32, 97, 118, 97, 105, 108, 97, 98, 108, 101, 34, 41, 125, 125, 44, 108, 116, 61, 116, 121, 112, 101, 111, 102, 32, 65, 46, 101, 110, 99, 111, 100, 101, 73, 110, 116, 111, 61, 61, 34, 102, 117, 110, 99, 116, 105, 111, 110, 34, 63, 102, 117, 110, 99, 116, 105, 111, 110, 40, 110, 44, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 65, 46, 101, 110, 99, 111, 100, 101, 73, 110, 116, 111, 40, 110, 44, 116, 41, 125, 58, 102, 117, 110, 99, 116, 105, 111, 110, 40, 110, 44, 116, 41, 123, 108, 101, 116, 32, 101, 61, 65, 46, 101, 110, 99, 111, 100, 101, 40, 110, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 46, 115, 101, 116, 40, 101, 41, 44, 123, 114, 101, 97, 100, 58, 110, 46, 108, 101, 110, 103, 116, 104, 44, 119, 114, 105, 116, 116, 101, 110, 58, 101, 46, 108, 101, 110, 103, 116, 104, 125, 125, 59, 102, 117, 110, 99, 116, 105, 111, 110, 32, 112, 40, 110, 44, 116, 44, 101, 41, 123, 105, 102, 40, 101, 61, 61, 61, 118, 111, 105, 100, 32, 48, 41, 123, 108, 101, 116, 32, 100, 61, 65, 46, 101, 110, 99, 111, 100, 101, 40, 110, 41, 44, 104, 61, 116, 40, 100, 46, 108, 101, 110, 103, 116, 104, 44, 49, 41, 62, 62, 62, 48, 59, 114, 101, 116, 117, 114, 110, 32, 83, 40, 41, 46, 115, 117, 98, 97, 114, 114, 97, 121, 40, 104, 44, 104, 43, 100, 46, 108, 101, 110, 103, 116, 104, 41, 46, 115, 101, 116, 40, 100, 41, 44, 95, 61, 100, 46, 108, 101, 110, 103, 116, 104, 44, 104, 125, 108, 101, 116, 32, 114, 61, 110, 46, 108, 101, 110, 103, 116, 104, 44, 111, 61, 116, 40, 114, 44, 49, 41, 62, 62, 62, 48, 44, 105, 61, 83, 40, 41, 44, 99, 61, 48, 59, 102, 111, 114, 40, 59, 99, 60, 114, 59, 99, 43, 43, 41, 123, 108, 101, 116, 32, 100, 61, 110, 46, 99, 104, 97, 114, 67, 111, 100, 101, 65, 116, 40, 99, 41, 59, 105, 102, 40, 100, 62, 49, 50, 55, 41, 98, 114, 101, 97, 107, 59, 105, 91, 111, 43, 99, 93, 61, 100, 125, 105, 102, 40, 99, 33, 61, 61, 114, 41, 123, 99, 33, 61, 61, 48, 38, 38, 40, 110, 61, 110, 46, 115, 108, 105, 99, 101, 40, 99, 41, 41, 44, 111, 61, 101, 40, 111, 44, 114, 44, 114, 61, 99, 43, 110, 46, 108, 101, 110, 103, 116, 104, 42, 51, 44, 49, 41, 62, 62, 62, 48, 59, 108, 101, 116, 32, 100, 61, 83, 40, 41, 46, 115, 117, 98, 97, 114, 114, 97, 121, 40, 111, 43, 99, 44, 111, 43, 114, 41, 44, 104, 61, 108, 116, 40, 110, 44, 100, 41, 59, 99, 43, 61, 104, 46, 119, 114, 105, 116, 116, 101, 110, 44, 111, 61, 101, 40, 111, 44, 114, 44, 99, 44, 49, 41, 62, 62, 62, 48, 125, 114, 101, 116, 117, 114, 110, 32, 95, 61, 99, 44, 111, 125, 118, 97, 114, 32, 69, 61, 110, 117, 108, 108, 59, 102, 117, 110, 99, 116, 105, 111, 110, 32, 73, 40, 41, 123, 114, 101, 116, 117, 114, 110, 40, 69, 61, 61, 61, 110, 117, 108, 108, 124, 124, 69, 46, 98, 117, 102, 102, 101, 114, 46, 100, 101, 116, 97, 99, 104, 101, 100, 61, 61, 61, 33, 48, 124, 124, 69, 46, 98, 117, 102, 102, 101, 114, 46, 100, 101, 116, 97, 99, 104, 101, 100, 61, 61, 61, 118, 111, 105, 100, 32, 48, 38, 38, 69, 46, 98, 117, 102, 102, 101, 114, 33, 61, 61, 115, 46, 109, 101, 109, 111, 114, 121, 46, 98, 117, 102, 102, 101, 114, 41, 38, 38, 40, 69, 61, 110, 101, 119, 32, 68, 97, 116, 97, 86, 105, 101, 119, 40, 115, 46, 109, 101, 109, 111, 114, 121, 46, 98, 117, 102, 102, 101, 114, 41, 41, 44, 69, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 112, 116, 40, 110, 41, 123, 114, 101, 116, 117, 114, 110, 32, 110, 61, 61, 110, 117, 108, 108, 125, 118, 97, 114, 32, 120, 61, 110, 117, 108, 108, 59, 102, 117, 110, 99, 116, 105, 111, 110, 32, 104, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 40, 120, 61, 61, 61, 110, 117, 108, 108, 124, 124, 120, 46, 98, 121, 116, 101, 76, 101, 110, 103, 116, 104, 61, 61, 61, 48, 41, 38, 38, 40, 120, 61, 110, 101, 119, 32, 70, 108, 111, 97, 116, 51, 50, 65, 114, 114, 97, 121, 40, 115, 46, 109, 101, 109, 111, 114, 121, 46, 98, 117, 102, 102, 101, 114, 41, 41, 44, 120, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 117, 116, 40, 110, 44, 116, 41, 123, 108, 101, 116, 32, 101, 61, 116, 40, 110, 46, 108, 101, 110, 103, 116, 104, 42, 52, 44, 52, 41, 62, 62, 62, 48, 59, 114, 101, 116, 117, 114, 110, 32, 104, 116, 40, 41, 46, 115, 101, 116, 40, 110, 44, 101, 47, 52, 41, 44, 95, 61, 110, 46, 108, 101, 110, 103, 116, 104, 44, 101, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 86, 40, 110, 44, 116, 41, 123, 108, 101, 116, 32, 101, 61, 116, 40, 110, 46, 108, 101, 110, 103, 116, 104, 42, 49, 44, 49, 41, 62, 62, 62, 48, 59, 114, 101, 116, 117, 114, 110, 32, 83, 40, 41, 46, 115, 101, 116, 40, 110, 44, 101, 47, 49, 41, 44, 95, 61, 110, 46, 108, 101, 110, 103, 116, 104, 44, 101, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 109, 116, 40, 110, 44, 116, 41, 123, 108, 101, 116, 32, 101, 61, 116, 40, 110, 46, 108, 101, 110, 103, 116, 104, 42, 52, 44, 52, 41, 62, 62, 62, 48, 59, 102, 111, 114, 40, 108, 101, 116, 32, 114, 61, 48, 59, 114, 60, 110, 46, 108, 101, 110, 103, 116, 104, 59, 114, 43, 43, 41, 123, 108, 101, 116, 32, 111, 61, 113, 40, 110, 91, 114, 93, 41, 59, 73, 40, 41, 46, 115, 101, 116, 85, 105, 110, 116, 51, 50, 40, 101, 43, 52, 42, 114, 44, 111, 44, 33, 48, 41, 125, 114, 101, 116, 117, 114, 110, 32, 95, 61, 110, 46, 108, 101, 110, 103, 116, 104, 44, 101, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 116, 116, 40, 110, 44, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 110, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 44, 111, 61, 86, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 105, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 114, 101, 103, 105, 115, 116, 101, 114, 95, 102, 111, 110, 116, 40, 101, 44, 114, 44, 111, 44, 105, 41, 33, 61, 61, 48, 125, 118, 97, 114, 32, 119, 61, 79, 98, 106, 101, 99, 116, 46, 102, 114, 101, 101, 122, 101, 40, 123, 70, 111, 114, 119, 97, 114, 100, 58, 48, 44, 48, 58, 34, 70, 111, 114, 119, 97, 114, 100, 34, 44, 82, 101, 118, 101, 114, 115, 101, 58, 49, 44, 49, 58, 34, 82, 101, 118, 101, 114, 115, 101, 34, 44, 66, 111, 117, 110, 99, 101, 58, 50, 44, 50, 58, 34, 66, 111, 117, 110, 99, 101, 34, 44, 82, 101, 118, 101, 114, 115, 101, 66, 111, 117, 110, 99, 101, 58, 51, 44, 51, 58, 34, 82, 101, 118, 101, 114, 115, 101, 66, 111, 117, 110, 99, 101, 34, 125, 41, 44, 90, 61, 116, 121, 112, 101, 111, 102, 32, 70, 105, 110, 97, 108, 105, 122, 97, 116, 105, 111, 110, 82, 101, 103, 105, 115, 116, 114, 121, 62, 34, 117, 34, 63, 123, 114, 101, 103, 105, 115, 116, 101, 114, 58, 40, 41, 61, 62, 123, 125, 44, 117, 110, 114, 101, 103, 105, 115, 116, 101, 114, 58, 40, 41, 61, 62, 123, 125, 125, 58, 110, 101, 119, 32, 70, 105, 110, 97, 108, 105, 122, 97, 116, 105, 111, 110, 82, 101, 103, 105, 115, 116, 114, 121, 40, 110, 61, 62, 115, 46, 95, 95, 119, 98, 103, 95, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 102, 114, 101, 101, 40, 110, 62, 62, 62, 48, 44, 49, 41, 41, 44, 70, 61, 99, 108, 97, 115, 115, 123, 95, 95, 100, 101, 115, 116, 114, 111, 121, 95, 105, 110, 116, 111, 95, 114, 97, 119, 40, 41, 123, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 61, 48, 44, 90, 46, 117, 110, 114, 101, 103, 105, 115, 116, 101, 114, 40, 116, 104, 105, 115, 41, 44, 116, 125, 102, 114, 101, 101, 40, 41, 123, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 95, 100, 101, 115, 116, 114, 111, 121, 95, 105, 110, 116, 111, 95, 114, 97, 119, 40, 41, 59, 115, 46, 95, 95, 119, 98, 103, 95, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 102, 114, 101, 101, 40, 116, 44, 48, 41, 125, 99, 108, 101, 97, 114, 95, 115, 108, 111, 116, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 99, 108, 101, 97, 114, 95, 115, 108, 111, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 105, 115, 95, 112, 108, 97, 121, 105, 110, 103, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 105, 115, 95, 112, 108, 97, 121, 105, 110, 103, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 105, 115, 95, 115, 116, 111, 112, 112, 101, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 105, 115, 95, 115, 116, 111, 112, 112, 101, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 108, 97, 121, 111, 117, 116, 95, 102, 105, 116, 40, 41, 123, 108, 101, 116, 32, 116, 44, 101, 59, 116, 114, 121, 123, 108, 101, 116, 32, 114, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 108, 97, 121, 111, 117, 116, 95, 102, 105, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 61, 114, 91, 48, 93, 44, 101, 61, 114, 91, 49, 93, 44, 109, 40, 114, 91, 48, 93, 44, 114, 91, 49, 93, 41, 125, 102, 105, 110, 97, 108, 108, 121, 123, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 116, 44, 101, 44, 49, 41, 125, 125, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 62, 62, 62, 48, 125, 112, 111, 108, 108, 95, 101, 118, 101, 110, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 112, 111, 108, 108, 95, 101, 118, 101, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 114, 101, 115, 101, 116, 95, 115, 108, 111, 116, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 114, 101, 115, 101, 116, 95, 115, 108, 111, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 108, 97, 121, 111, 117, 116, 40, 116, 44, 101, 44, 114, 41, 123, 108, 101, 116, 32, 111, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 105, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 108, 97, 121, 111, 117, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 111, 44, 105, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 109, 97, 114, 107, 101, 114, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 109, 97, 114, 107, 101, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 125, 99, 108, 101, 97, 114, 95, 115, 108, 111, 116, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 99, 108, 101, 97, 114, 95, 115, 108, 111, 116, 115, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 105, 115, 95, 99, 111, 109, 112, 108, 101, 116, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 105, 115, 95, 99, 111, 109, 112, 108, 101, 116, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 105, 115, 95, 116, 119, 101, 101, 110, 105, 110, 103, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 105, 115, 95, 116, 119, 101, 101, 110, 105, 110, 103, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 114, 101, 115, 101, 116, 95, 115, 108, 111, 116, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 114, 101, 115, 101, 116, 95, 115, 108, 111, 116, 115, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 114, 101, 115, 101, 116, 95, 116, 104, 101, 109, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 114, 101, 115, 101, 116, 95, 116, 104, 101, 109, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 115, 101, 103, 109, 101, 110, 116, 95, 101, 110, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 103, 109, 101, 110, 116, 95, 101, 110, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 101, 116, 95, 113, 117, 97, 108, 105, 116, 121, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 113, 117, 97, 108, 105, 116, 121, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 115, 101, 103, 109, 101, 110, 116, 40, 116, 44, 101, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 115, 101, 103, 109, 101, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 41, 33, 61, 61, 48, 125, 115, 116, 97, 116, 105, 99, 32, 117, 110, 108, 111, 97, 100, 95, 102, 111, 110, 116, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 117, 110, 108, 111, 97, 100, 95, 102, 111, 110, 116, 40, 101, 44, 114, 41, 33, 61, 61, 48, 125, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 105, 100, 40, 41, 123, 108, 101, 116, 32, 116, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 105, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 44, 101, 59, 114, 101, 116, 117, 114, 110, 32, 116, 91, 48, 93, 33, 61, 61, 48, 38, 38, 40, 101, 61, 109, 40, 116, 91, 48, 93, 44, 116, 91, 49, 93, 41, 46, 115, 108, 105, 99, 101, 40, 41, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 116, 91, 48, 93, 44, 116, 91, 49, 93, 42, 49, 44, 49, 41, 41, 44, 101, 125, 97, 117, 100, 105, 111, 95, 118, 111, 108, 117, 109, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 97, 117, 100, 105, 111, 95, 118, 111, 108, 117, 109, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 95, 97, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 95, 97, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 95, 98, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 95, 98, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 95, 103, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 95, 103, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 95, 114, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 95, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 99, 108, 101, 97, 114, 95, 109, 97, 114, 107, 101, 114, 40, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 99, 108, 101, 97, 114, 95, 109, 97, 114, 107, 101, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 101, 109, 105, 116, 95, 111, 110, 95, 108, 111, 111, 112, 40, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 101, 109, 105, 116, 95, 111, 110, 95, 108, 111, 111, 112, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 103, 101, 116, 95, 115, 108, 111, 116, 95, 105, 100, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 103, 101, 116, 95, 115, 108, 111, 116, 95, 105, 100, 115, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 103, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 44, 111, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 103, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 44, 105, 59, 114, 101, 116, 117, 114, 110, 32, 111, 91, 48, 93, 33, 61, 61, 48, 38, 38, 40, 105, 61, 109, 40, 111, 91, 48, 93, 44, 111, 91, 49, 93, 41, 46, 115, 108, 105, 99, 101, 40, 41, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 111, 91, 48, 93, 44, 111, 91, 49, 93, 42, 49, 44, 49, 41, 41, 44, 105, 125, 109, 97, 114, 107, 101, 114, 95, 110, 97, 109, 101, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 109, 97, 114, 107, 101, 114, 95, 110, 97, 109, 101, 115, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 101, 116, 95, 97, 117, 116, 111, 112, 108, 97, 121, 40, 116, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 97, 117, 116, 111, 112, 108, 97, 121, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 125, 115, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 111, 61, 95, 44, 105, 61, 112, 40, 101, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 99, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 114, 44, 111, 44, 105, 44, 99, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 118, 105, 101, 119, 112, 111, 114, 116, 40, 116, 44, 101, 44, 114, 44, 111, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 118, 105, 101, 119, 112, 111, 114, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 44, 114, 44, 111, 41, 33, 61, 61, 48, 125, 116, 111, 116, 97, 108, 95, 102, 114, 97, 109, 101, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 116, 111, 116, 97, 108, 95, 102, 114, 97, 109, 101, 115, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 99, 108, 101, 97, 114, 95, 115, 101, 103, 109, 101, 110, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 99, 108, 101, 97, 114, 95, 115, 101, 103, 109, 101, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 99, 117, 114, 114, 101, 110, 116, 95, 102, 114, 97, 109, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 99, 117, 114, 114, 101, 110, 116, 95, 102, 114, 97, 109, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 103, 101, 116, 95, 115, 108, 111, 116, 95, 116, 121, 112, 101, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 44, 111, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 103, 101, 116, 95, 115, 108, 111, 116, 95, 116, 121, 112, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 44, 105, 59, 114, 101, 116, 117, 114, 110, 32, 111, 91, 48, 93, 33, 61, 61, 48, 38, 38, 40, 105, 61, 109, 40, 111, 91, 48, 93, 44, 111, 91, 49, 93, 41, 46, 115, 108, 105, 99, 101, 40, 41, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 111, 91, 48, 93, 44, 111, 91, 49, 93, 42, 49, 44, 49, 41, 41, 44, 105, 125, 103, 101, 116, 95, 115, 108, 111, 116, 115, 95, 115, 116, 114, 40, 41, 123, 108, 101, 116, 32, 116, 44, 101, 59, 116, 114, 121, 123, 108, 101, 116, 32, 114, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 103, 101, 116, 95, 115, 108, 111, 116, 115, 95, 115, 116, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 61, 114, 91, 48, 93, 44, 101, 61, 114, 91, 49, 93, 44, 109, 40, 114, 91, 48, 93, 44, 114, 91, 49, 93, 41, 125, 102, 105, 110, 97, 108, 108, 121, 123, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 116, 44, 101, 44, 49, 41, 125, 125, 103, 101, 116, 95, 116, 114, 97, 110, 115, 102, 111, 114, 109, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 103, 101, 116, 95, 116, 114, 97, 110, 115, 102, 111, 114, 109, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 101, 103, 109, 101, 110, 116, 95, 115, 116, 97, 114, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 103, 109, 101, 110, 116, 95, 115, 116, 97, 114, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 101, 116, 95, 115, 108, 111, 116, 115, 95, 115, 116, 114, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 115, 108, 111, 116, 115, 95, 115, 116, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 116, 101, 120, 116, 95, 115, 108, 111, 116, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 111, 61, 95, 44, 105, 61, 112, 40, 101, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 99, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 116, 101, 120, 116, 95, 115, 108, 111, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 114, 44, 111, 44, 105, 44, 99, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 116, 114, 97, 110, 115, 102, 111, 114, 109, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 117, 116, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 116, 114, 97, 110, 115, 102, 111, 114, 109, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 109, 95, 103, 101, 116, 95, 105, 110, 112, 117, 116, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 103, 101, 116, 95, 105, 110, 112, 117, 116, 115, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 109, 95, 112, 111, 108, 108, 95, 101, 118, 101, 110, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 112, 111, 108, 108, 95, 101, 118, 101, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 109, 95, 112, 111, 115, 116, 95, 99, 108, 105, 99, 107, 40, 116, 44, 101, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 112, 111, 115, 116, 95, 99, 108, 105, 99, 107, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 41, 125, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 115, 105, 122, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 115, 105, 122, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 99, 117, 114, 114, 101, 110, 116, 95, 109, 97, 114, 107, 101, 114, 40, 41, 123, 108, 101, 116, 32, 116, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 99, 117, 114, 114, 101, 110, 116, 95, 109, 97, 114, 107, 101, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 44, 101, 59, 114, 101, 116, 117, 114, 110, 32, 116, 91, 48, 93, 33, 61, 61, 48, 38, 38, 40, 101, 61, 109, 40, 116, 91, 48, 93, 44, 116, 91, 49, 93, 41, 46, 115, 108, 105, 99, 101, 40, 41, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 116, 91, 48, 93, 44, 116, 91, 49, 93, 42, 49, 44, 49, 41, 41, 44, 101, 125, 108, 97, 121, 111, 117, 116, 95, 97, 108, 105, 103, 110, 95, 120, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 108, 97, 121, 111, 117, 116, 95, 97, 108, 105, 103, 110, 95, 120, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 108, 97, 121, 111, 117, 116, 95, 97, 108, 105, 103, 110, 95, 121, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 108, 97, 121, 111, 117, 116, 95, 97, 108, 105, 103, 110, 95, 121, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 108, 111, 97, 100, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 108, 111, 97, 100, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 108, 111, 111, 112, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 108, 111, 111, 112, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 40, 116, 44, 101, 44, 114, 44, 111, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 44, 114, 44, 111, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 99, 111, 108, 111, 114, 95, 115, 108, 111, 116, 40, 116, 44, 101, 44, 114, 44, 111, 41, 123, 108, 101, 116, 32, 105, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 99, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 99, 111, 108, 111, 114, 95, 115, 108, 111, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 105, 44, 99, 44, 101, 44, 114, 44, 111, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 116, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 125, 115, 101, 116, 95, 116, 104, 101, 109, 101, 95, 100, 97, 116, 97, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 116, 104, 101, 109, 101, 95, 100, 97, 116, 97, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 109, 95, 114, 101, 115, 101, 116, 95, 105, 110, 112, 117, 116, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 114, 101, 115, 101, 116, 95, 105, 110, 112, 117, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 125, 109, 97, 110, 105, 102, 101, 115, 116, 95, 115, 116, 114, 105, 110, 103, 40, 41, 123, 108, 101, 116, 32, 116, 44, 101, 59, 116, 114, 121, 123, 108, 101, 116, 32, 114, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 109, 97, 110, 105, 102, 101, 115, 116, 95, 115, 116, 114, 105, 110, 103, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 61, 114, 91, 48, 93, 44, 101, 61, 114, 91, 49, 93, 44, 109, 40, 114, 91, 48, 93, 44, 114, 91, 49, 93, 41, 125, 102, 105, 110, 97, 108, 108, 121, 123, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 116, 44, 101, 44, 49, 41, 125, 125, 115, 101, 116, 95, 115, 99, 97, 108, 97, 114, 95, 115, 108, 111, 116, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 111, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 115, 99, 97, 108, 97, 114, 95, 115, 108, 111, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 114, 44, 111, 44, 101, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 118, 101, 99, 116, 111, 114, 95, 115, 108, 111, 116, 40, 116, 44, 101, 44, 114, 41, 123, 108, 101, 116, 32, 111, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 105, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 118, 101, 99, 116, 111, 114, 95, 115, 108, 111, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 111, 44, 105, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 101, 116, 117, 112, 95, 115, 119, 95, 116, 97, 114, 103, 101, 116, 40, 116, 44, 101, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 117, 112, 95, 115, 119, 95, 116, 97, 114, 103, 101, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 41, 33, 61, 61, 48, 125, 103, 101, 116, 95, 112, 105, 120, 101, 108, 95, 98, 117, 102, 102, 101, 114, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 103, 101, 116, 95, 112, 105, 120, 101, 108, 95, 98, 117, 102, 102, 101, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 101, 116, 95, 97, 117, 100, 105, 111, 95, 118, 111, 108, 117, 109, 101, 40, 116, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 97, 117, 100, 105, 111, 95, 118, 111, 108, 117, 109, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 125, 115, 109, 95, 99, 117, 114, 114, 101, 110, 116, 95, 115, 116, 97, 116, 101, 40, 41, 123, 108, 101, 116, 32, 116, 44, 101, 59, 116, 114, 121, 123, 108, 101, 116, 32, 114, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 99, 117, 114, 114, 101, 110, 116, 95, 115, 116, 97, 116, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 61, 114, 91, 48, 93, 44, 101, 61, 114, 91, 49, 93, 44, 109, 40, 114, 91, 48, 93, 44, 114, 91, 49, 93, 41, 125, 102, 105, 110, 97, 108, 108, 121, 123, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 116, 44, 101, 44, 49, 41, 125, 125, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 105, 100, 40, 41, 123, 108, 101, 116, 32, 116, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 105, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 44, 101, 59, 114, 101, 116, 117, 114, 110, 32, 116, 91, 48, 93, 33, 61, 61, 48, 38, 38, 40, 101, 61, 109, 40, 116, 91, 48, 93, 44, 116, 91, 49, 93, 41, 46, 115, 108, 105, 99, 101, 40, 41, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 116, 91, 48, 93, 44, 116, 91, 49, 93, 42, 49, 44, 49, 41, 41, 44, 101, 125, 103, 101, 116, 95, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 44, 111, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 103, 101, 116, 95, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 44, 105, 59, 114, 101, 116, 117, 114, 110, 32, 111, 91, 48, 93, 33, 61, 61, 48, 38, 38, 40, 105, 61, 109, 40, 111, 91, 48, 93, 44, 111, 91, 49, 93, 41, 46, 115, 108, 105, 99, 101, 40, 41, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 111, 91, 48, 93, 44, 111, 91, 49, 93, 42, 49, 44, 49, 41, 41, 44, 105, 125, 115, 101, 116, 95, 112, 111, 115, 105, 116, 105, 111, 110, 95, 115, 108, 111, 116, 40, 116, 44, 101, 44, 114, 41, 123, 108, 101, 116, 32, 111, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 105, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 112, 111, 115, 105, 116, 105, 111, 110, 95, 115, 108, 111, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 111, 44, 105, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 99, 117, 114, 114, 101, 110, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 99, 117, 114, 114, 101, 110, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 62, 62, 62, 48, 125, 115, 109, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 95, 115, 101, 116, 117, 112, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 95, 115, 101, 116, 117, 112, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 117, 112, 40, 116, 44, 101, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 117, 112, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 41, 125, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 108, 111, 97, 100, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 108, 111, 97, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 108, 111, 97, 100, 95, 100, 111, 116, 108, 111, 116, 116, 105, 101, 95, 100, 97, 116, 97, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 86, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 108, 111, 97, 100, 95, 100, 111, 116, 108, 111, 116, 116, 105, 101, 95, 100, 97, 116, 97, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 109, 95, 103, 101, 116, 95, 115, 116, 114, 105, 110, 103, 95, 105, 110, 112, 117, 116, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 44, 111, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 103, 101, 116, 95, 115, 116, 114, 105, 110, 103, 95, 105, 110, 112, 117, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 44, 105, 59, 114, 101, 116, 117, 114, 110, 32, 111, 91, 48, 93, 33, 61, 61, 48, 38, 38, 40, 105, 61, 109, 40, 111, 91, 48, 93, 44, 111, 91, 49, 93, 41, 46, 115, 108, 105, 99, 101, 40, 41, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 111, 91, 48, 93, 44, 111, 91, 49, 93, 42, 49, 44, 49, 41, 41, 44, 105, 125, 115, 109, 95, 115, 101, 116, 95, 115, 116, 114, 105, 110, 103, 95, 105, 110, 112, 117, 116, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 111, 61, 95, 44, 105, 61, 112, 40, 101, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 99, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 115, 101, 116, 95, 115, 116, 114, 105, 110, 103, 95, 105, 110, 112, 117, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 114, 44, 111, 44, 105, 44, 99, 41, 33, 61, 61, 48, 125, 115, 109, 95, 103, 101, 116, 95, 98, 111, 111, 108, 101, 97, 110, 95, 105, 110, 112, 117, 116, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 44, 111, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 103, 101, 116, 95, 98, 111, 111, 108, 101, 97, 110, 95, 105, 110, 112, 117, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 61, 61, 61, 49, 54, 55, 55, 55, 50, 49, 53, 63, 118, 111, 105, 100, 32, 48, 58, 111, 33, 61, 61, 48, 125, 115, 109, 95, 103, 101, 116, 95, 110, 117, 109, 101, 114, 105, 99, 95, 105, 110, 112, 117, 116, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 44, 111, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 103, 101, 116, 95, 110, 117, 109, 101, 114, 105, 99, 95, 105, 110, 112, 117, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 61, 61, 61, 52, 50, 57, 52, 57, 54, 55, 50, 57, 55, 63, 118, 111, 105, 100, 32, 48, 58, 111, 125, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 100, 111, 119, 110, 40, 116, 44, 101, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 100, 111, 119, 110, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 41, 125, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 101, 120, 105, 116, 40, 116, 44, 101, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 101, 120, 105, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 41, 125, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 109, 111, 118, 101, 40, 116, 44, 101, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 109, 111, 118, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 41, 125, 115, 109, 95, 115, 101, 116, 95, 98, 111, 111, 108, 101, 97, 110, 95, 105, 110, 112, 117, 116, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 111, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 115, 101, 116, 95, 98, 111, 111, 108, 101, 97, 110, 95, 105, 110, 112, 117, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 114, 44, 111, 44, 101, 41, 33, 61, 61, 48, 125, 115, 109, 95, 115, 101, 116, 95, 110, 117, 109, 101, 114, 105, 99, 95, 105, 110, 112, 117, 116, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 111, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 115, 101, 116, 95, 110, 117, 109, 101, 114, 105, 99, 95, 105, 110, 112, 117, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 114, 44, 111, 44, 101, 41, 33, 61, 61, 48, 125, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 117, 110, 108, 111, 97, 100, 40, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 117, 110, 108, 111, 97, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 101, 110, 116, 101, 114, 40, 116, 44, 101, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 101, 110, 116, 101, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 101, 41, 125, 108, 111, 97, 100, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 102, 114, 111, 109, 95, 105, 100, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 108, 111, 97, 100, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 102, 114, 111, 109, 95, 105, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 109, 95, 112, 111, 108, 108, 95, 105, 110, 116, 101, 114, 110, 97, 108, 95, 101, 118, 101, 110, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 112, 111, 108, 108, 95, 105, 110, 116, 101, 114, 110, 97, 108, 95, 101, 118, 101, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 117, 115, 101, 95, 102, 114, 97, 109, 101, 95, 105, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 117, 115, 101, 95, 102, 114, 97, 109, 101, 95, 105, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 114, 101, 115, 101, 116, 95, 99, 117, 114, 114, 101, 110, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 114, 101, 115, 101, 116, 95, 99, 117, 114, 114, 101, 110, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 109, 95, 111, 118, 101, 114, 114, 105, 100, 101, 95, 99, 117, 114, 114, 101, 110, 116, 95, 115, 116, 97, 116, 101, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 111, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 111, 118, 101, 114, 114, 105, 100, 101, 95, 99, 117, 114, 114, 101, 110, 116, 95, 115, 116, 97, 116, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 114, 44, 111, 44, 101, 41, 33, 61, 61, 48, 125, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 108, 111, 97, 100, 95, 102, 114, 111, 109, 95, 105, 100, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 108, 111, 97, 100, 95, 102, 114, 111, 109, 95, 105, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 117, 115, 101, 95, 102, 114, 97, 109, 101, 95, 105, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 116, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 117, 115, 101, 95, 102, 114, 97, 109, 101, 95, 105, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 125, 99, 111, 110, 115, 116, 114, 117, 99, 116, 111, 114, 40, 41, 123, 108, 101, 116, 32, 116, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 110, 101, 119, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 61, 116, 62, 62, 62, 48, 44, 90, 46, 114, 101, 103, 105, 115, 116, 101, 114, 40, 116, 104, 105, 115, 44, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 104, 105, 115, 41, 44, 116, 104, 105, 115, 125, 109, 111, 100, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 109, 111, 100, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 112, 108, 97, 121, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 112, 108, 97, 121, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 115, 116, 111, 112, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 116, 111, 112, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 116, 105, 99, 107, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 116, 105, 99, 107, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 33, 61, 61, 48, 125, 112, 97, 117, 115, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 112, 97, 117, 115, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 115, 112, 101, 101, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 112, 101, 101, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 119, 105, 100, 116, 104, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 119, 105, 100, 116, 104, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 62, 62, 62, 48, 125, 104, 101, 105, 103, 104, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 104, 101, 105, 103, 104, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 62, 62, 62, 48, 125, 114, 101, 110, 100, 101, 114, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 114, 101, 110, 100, 101, 114, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 109, 97, 114, 107, 101, 114, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 109, 97, 114, 107, 101, 114, 115, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 109, 95, 102, 105, 114, 101, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 102, 105, 114, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 109, 95, 115, 116, 111, 112, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 115, 116, 111, 112, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 115, 109, 95, 116, 105, 99, 107, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 116, 105, 99, 107, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 33, 61, 61, 48, 125, 97, 117, 116, 111, 112, 108, 97, 121, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 97, 117, 116, 111, 112, 108, 97, 121, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 100, 117, 114, 97, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 100, 117, 114, 97, 116, 105, 111, 110, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 125, 115, 101, 116, 95, 108, 111, 111, 112, 40, 116, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 108, 111, 111, 112, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 125, 115, 101, 116, 95, 109, 111, 100, 101, 40, 116, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 109, 111, 100, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 125, 115, 109, 95, 115, 116, 97, 114, 116, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 109, 116, 40, 101, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 111, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 115, 116, 97, 114, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 44, 114, 44, 111, 41, 33, 61, 61, 48, 125, 116, 104, 101, 109, 101, 95, 105, 100, 40, 41, 123, 108, 101, 116, 32, 116, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 116, 104, 101, 109, 101, 95, 105, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 44, 101, 59, 114, 101, 116, 117, 114, 110, 32, 116, 91, 48, 93, 33, 61, 61, 48, 38, 38, 40, 101, 61, 109, 40, 116, 91, 48, 93, 44, 116, 91, 49, 93, 41, 46, 115, 108, 105, 99, 101, 40, 41, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 116, 91, 48, 93, 44, 116, 91, 49, 93, 42, 49, 44, 49, 41, 41, 44, 101, 125, 105, 115, 95, 108, 111, 97, 100, 101, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 105, 115, 95, 108, 111, 97, 100, 101, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 105, 115, 95, 112, 97, 117, 115, 101, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 105, 115, 95, 112, 97, 117, 115, 101, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 33, 61, 61, 48, 125, 108, 111, 97, 100, 95, 102, 111, 110, 116, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 111, 61, 95, 44, 105, 61, 86, 40, 101, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 99, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 108, 111, 97, 100, 95, 102, 111, 110, 116, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 114, 44, 111, 44, 105, 44, 99, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 102, 114, 97, 109, 101, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 102, 114, 97, 109, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 33, 61, 61, 48, 125, 115, 101, 116, 95, 115, 112, 101, 101, 100, 40, 116, 41, 123, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 115, 112, 101, 101, 100, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 116, 41, 125, 115, 101, 116, 95, 116, 104, 101, 109, 101, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 112, 40, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 114, 61, 95, 59, 114, 101, 116, 117, 114, 110, 32, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 101, 116, 95, 116, 104, 101, 109, 101, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 44, 101, 44, 114, 41, 33, 61, 61, 48, 125, 115, 109, 95, 115, 116, 97, 116, 117, 115, 40, 41, 123, 108, 101, 116, 32, 116, 44, 101, 59, 116, 114, 121, 123, 108, 101, 116, 32, 114, 61, 115, 46, 100, 111, 116, 108, 111, 116, 116, 105, 101, 112, 108, 97, 121, 101, 114, 119, 97, 115, 109, 95, 115, 109, 95, 115, 116, 97, 116, 117, 115, 40, 116, 104, 105, 115, 46, 95, 95, 119, 98, 103, 95, 112, 116, 114, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 61, 114, 91, 48, 93, 44, 101, 61, 114, 91, 49, 93, 44, 109, 40, 114, 91, 48, 93, 44, 114, 91, 49, 93, 41, 125, 102, 105, 110, 97, 108, 108, 121, 123, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 116, 44, 101, 44, 49, 41, 125, 125, 125, 59, 97, 115, 121, 110, 99, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 102, 116, 40, 110, 44, 116, 41, 123, 105, 102, 40, 116, 121, 112, 101, 111, 102, 32, 82, 101, 115, 112, 111, 110, 115, 101, 61, 61, 34, 102, 117, 110, 99, 116, 105, 111, 110, 34, 38, 38, 110, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 82, 101, 115, 112, 111, 110, 115, 101, 41, 123, 105, 102, 40, 116, 121, 112, 101, 111, 102, 32, 87, 101, 98, 65, 115, 115, 101, 109, 98, 108, 121, 46, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 101, 83, 116, 114, 101, 97, 109, 105, 110, 103, 61, 61, 34, 102, 117, 110, 99, 116, 105, 111, 110, 34, 41, 116, 114, 121, 123, 114, 101, 116, 117, 114, 110, 32, 97, 119, 97, 105, 116, 32, 87, 101, 98, 65, 115, 115, 101, 109, 98, 108, 121, 46, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 101, 83, 116, 114, 101, 97, 109, 105, 110, 103, 40, 110, 44, 116, 41, 125, 99, 97, 116, 99, 104, 40, 114, 41, 123, 105, 102, 40, 110, 46, 104, 101, 97, 100, 101, 114, 115, 46, 103, 101, 116, 40, 34, 67, 111, 110, 116, 101, 110, 116, 45, 84, 121, 112, 101, 34, 41, 33, 61, 34, 97, 112, 112, 108, 105, 99, 97, 116, 105, 111, 110, 47, 119, 97, 115, 109, 34, 41, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 34, 96, 87, 101, 98, 65, 115, 115, 101, 109, 98, 108, 121, 46, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 101, 83, 116, 114, 101, 97, 109, 105, 110, 103, 96, 32, 102, 97, 105, 108, 101, 100, 32, 98, 101, 99, 97, 117, 115, 101, 32, 121, 111, 117, 114, 32, 115, 101, 114, 118, 101, 114, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 115, 101, 114, 118, 101, 32, 87, 97, 115, 109, 32, 119, 105, 116, 104, 32, 96, 97, 112, 112, 108, 105, 99, 97, 116, 105, 111, 110, 47, 119, 97, 115, 109, 96, 32, 77, 73, 77, 69, 32, 116, 121, 112, 101, 46, 32, 70, 97, 108, 108, 105, 110, 103, 32, 98, 97, 99, 107, 32, 116, 111, 32, 96, 87, 101, 98, 65, 115, 115, 101, 109, 98, 108, 121, 46, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 101, 96, 32, 119, 104, 105, 99, 104, 32, 105, 115, 32, 115, 108, 111, 119, 101, 114, 46, 32, 79, 114, 105, 103, 105, 110, 97, 108, 32, 101, 114, 114, 111, 114, 58, 92, 110, 34, 44, 114, 41, 59, 101, 108, 115, 101, 32, 116, 104, 114, 111, 119, 32, 114, 125, 108, 101, 116, 32, 101, 61, 97, 119, 97, 105, 116, 32, 110, 46, 97, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 97, 119, 97, 105, 116, 32, 87, 101, 98, 65, 115, 115, 101, 109, 98, 108, 121, 46, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 101, 40, 101, 44, 116, 41, 125, 101, 108, 115, 101, 123, 108, 101, 116, 32, 101, 61, 97, 119, 97, 105, 116, 32, 87, 101, 98, 65, 115, 115, 101, 109, 98, 108, 121, 46, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 101, 40, 110, 44, 116, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 87, 101, 98, 65, 115, 115, 101, 109, 98, 108, 121, 46, 73, 110, 115, 116, 97, 110, 99, 101, 63, 123, 105, 110, 115, 116, 97, 110, 99, 101, 58, 101, 44, 109, 111, 100, 117, 108, 101, 58, 110, 125, 58, 101, 125, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 103, 116, 40, 41, 123, 108, 101, 116, 32, 110, 61, 123, 125, 59, 114, 101, 116, 117, 114, 110, 32, 110, 46, 119, 98, 103, 61, 123, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 98, 117, 102, 102, 101, 114, 95, 54, 48, 57, 99, 99, 51, 101, 101, 101, 53, 49, 101, 100, 49, 53, 56, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 46, 98, 117, 102, 102, 101, 114, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 101, 114, 114, 111, 114, 95, 55, 53, 51, 52, 98, 56, 101, 57, 97, 51, 54, 102, 49, 97, 98, 52, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 44, 111, 59, 116, 114, 121, 123, 114, 61, 116, 44, 111, 61, 101, 44, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 109, 40, 116, 44, 101, 41, 41, 125, 102, 105, 110, 97, 108, 108, 121, 123, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 102, 114, 101, 101, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 40, 114, 44, 111, 44, 49, 41, 125, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 110, 101, 119, 95, 52, 48, 53, 101, 50, 50, 102, 51, 57, 48, 53, 55, 54, 99, 101, 50, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 110, 101, 119, 32, 79, 98, 106, 101, 99, 116, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 110, 101, 119, 95, 55, 56, 102, 101, 98, 49, 48, 56, 98, 54, 52, 55, 50, 55, 49, 51, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 110, 101, 119, 32, 65, 114, 114, 97, 121, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 110, 101, 119, 95, 56, 97, 54, 102, 50, 51, 56, 97, 54, 101, 99, 101, 56, 54, 101, 97, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 110, 101, 119, 119, 105, 116, 104, 98, 121, 116, 101, 111, 102, 102, 115, 101, 116, 97, 110, 100, 108, 101, 110, 103, 116, 104, 95, 100, 57, 55, 101, 54, 51, 55, 101, 98, 101, 49, 52, 53, 97, 57, 97, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 44, 101, 44, 114, 41, 123, 114, 101, 116, 117, 114, 110, 32, 110, 101, 119, 32, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 40, 116, 44, 101, 62, 62, 62, 48, 44, 114, 62, 62, 62, 48, 41, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 110, 101, 119, 119, 105, 116, 104, 108, 101, 110, 103, 116, 104, 95, 53, 97, 53, 101, 102, 101, 51, 49, 51, 99, 102, 100, 53, 57, 102, 49, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 110, 101, 119, 32, 70, 108, 111, 97, 116, 51, 50, 65, 114, 114, 97, 121, 40, 116, 62, 62, 62, 48, 41, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 112, 117, 115, 104, 95, 55, 51, 55, 99, 102, 99, 56, 99, 49, 52, 51, 50, 99, 50, 99, 54, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 44, 101, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 46, 112, 117, 115, 104, 40, 101, 41, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 115, 101, 116, 95, 98, 98, 56, 99, 101, 99, 102, 54, 97, 54, 50, 98, 57, 102, 52, 54, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 100, 116, 40, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 44, 101, 44, 114, 41, 123, 114, 101, 116, 117, 114, 110, 32, 82, 101, 102, 108, 101, 99, 116, 46, 115, 101, 116, 40, 116, 44, 101, 44, 114, 41, 125, 44, 97, 114, 103, 117, 109, 101, 110, 116, 115, 41, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 115, 101, 116, 105, 110, 100, 101, 120, 95, 52, 101, 55, 51, 97, 102, 100, 99, 100, 57, 98, 98, 57, 53, 99, 100, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 44, 101, 44, 114, 41, 123, 116, 91, 101, 62, 62, 62, 48, 93, 61, 114, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 103, 95, 115, 116, 97, 99, 107, 95, 48, 101, 100, 55, 53, 100, 54, 56, 53, 55, 53, 98, 48, 102, 51, 99, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 101, 46, 115, 116, 97, 99, 107, 44, 111, 61, 112, 40, 114, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 105, 61, 95, 59, 73, 40, 41, 46, 115, 101, 116, 73, 110, 116, 51, 50, 40, 116, 43, 52, 44, 105, 44, 33, 48, 41, 44, 73, 40, 41, 46, 115, 101, 116, 73, 110, 116, 51, 50, 40, 116, 43, 48, 44, 111, 44, 33, 48, 41, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 105, 110, 105, 116, 95, 101, 120, 116, 101, 114, 110, 114, 101, 102, 95, 116, 97, 98, 108, 101, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 123, 108, 101, 116, 32, 116, 61, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 101, 120, 112, 111, 114, 116, 95, 51, 44, 101, 61, 116, 46, 103, 114, 111, 119, 40, 52, 41, 59, 116, 46, 115, 101, 116, 40, 48, 44, 118, 111, 105, 100, 32, 48, 41, 44, 116, 46, 115, 101, 116, 40, 101, 43, 48, 44, 118, 111, 105, 100, 32, 48, 41, 44, 116, 46, 115, 101, 116, 40, 101, 43, 49, 44, 110, 117, 108, 108, 41, 44, 116, 46, 115, 101, 116, 40, 101, 43, 50, 44, 33, 48, 41, 44, 116, 46, 115, 101, 116, 40, 101, 43, 51, 44, 33, 49, 41, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 101, 109, 111, 114, 121, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 46, 109, 101, 109, 111, 114, 121, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 110, 117, 109, 98, 101, 114, 95, 110, 101, 119, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 115, 116, 114, 105, 110, 103, 95, 103, 101, 116, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 101, 44, 111, 61, 116, 121, 112, 101, 111, 102, 32, 114, 61, 61, 34, 115, 116, 114, 105, 110, 103, 34, 63, 114, 58, 118, 111, 105, 100, 32, 48, 59, 118, 97, 114, 32, 105, 61, 112, 116, 40, 111, 41, 63, 48, 58, 112, 40, 111, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 109, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 114, 101, 97, 108, 108, 111, 99, 95, 99, 111, 109, 109, 97, 110, 100, 95, 101, 120, 112, 111, 114, 116, 41, 44, 99, 61, 95, 59, 73, 40, 41, 46, 115, 101, 116, 73, 110, 116, 51, 50, 40, 116, 43, 52, 44, 99, 44, 33, 48, 41, 44, 73, 40, 41, 46, 115, 101, 116, 73, 110, 116, 51, 50, 40, 116, 43, 48, 44, 105, 44, 33, 48, 41, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 115, 116, 114, 105, 110, 103, 95, 110, 101, 119, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 44, 101, 41, 123, 114, 101, 116, 117, 114, 110, 32, 109, 40, 116, 44, 101, 41, 125, 44, 110, 46, 119, 98, 103, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 116, 104, 114, 111, 119, 61, 102, 117, 110, 99, 116, 105, 111, 110, 40, 116, 44, 101, 41, 123, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 109, 40, 116, 44, 101, 41, 41, 125, 44, 110, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 118, 116, 40, 110, 44, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 115, 61, 110, 46, 101, 120, 112, 111, 114, 116, 115, 44, 101, 116, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 119, 97, 115, 109, 95, 109, 111, 100, 117, 108, 101, 61, 116, 44, 69, 61, 110, 117, 108, 108, 44, 120, 61, 110, 117, 108, 108, 44, 76, 61, 110, 117, 108, 108, 44, 115, 46, 95, 95, 119, 98, 105, 110, 100, 103, 101, 110, 95, 115, 116, 97, 114, 116, 40, 41, 44, 115, 125, 97, 115, 121, 110, 99, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 101, 116, 40, 110, 41, 123, 105, 102, 40, 115, 33, 61, 61, 118, 111, 105, 100, 32, 48, 41, 114, 101, 116, 117, 114, 110, 32, 115, 59, 105, 102, 40, 116, 121, 112, 101, 111, 102, 32, 110, 60, 34, 117, 34, 38, 38, 40, 79, 98, 106, 101, 99, 116, 46, 103, 101, 116, 80, 114, 111, 116, 111, 116, 121, 112, 101, 79, 102, 40, 110, 41, 61, 61, 61, 79, 98, 106, 101, 99, 116, 46, 112, 114, 111, 116, 111, 116, 121, 112, 101, 63, 123, 109, 111, 100, 117, 108, 101, 95, 111, 114, 95, 112, 97, 116, 104, 58, 110, 125, 61, 110, 58, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 34, 117, 115, 105, 110, 103, 32, 100, 101, 112, 114, 101, 99, 97, 116, 101, 100, 32, 112, 97, 114, 97, 109, 101, 116, 101, 114, 115, 32, 102, 111, 114, 32, 116, 104, 101, 32, 105, 110, 105, 116, 105, 97, 108, 105, 122, 97, 116, 105, 111, 110, 32, 102, 117, 110, 99, 116, 105, 111, 110, 59, 32, 112, 97, 115, 115, 32, 97, 32, 115, 105, 110, 103, 108, 101, 32, 111, 98, 106, 101, 99, 116, 32, 105, 110, 115, 116, 101, 97, 100, 34, 41, 41, 44, 116, 121, 112, 101, 111, 102, 32, 110, 62, 34, 117, 34, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 34, 87, 65, 83, 77, 32, 109, 111, 100, 117, 108, 101, 32, 85, 82, 76, 32, 109, 117, 115, 116, 32, 98, 101, 32, 112, 114, 111, 118, 105, 100, 101, 100, 32, 118, 105, 97, 32, 68, 111, 116, 76, 111, 116, 116, 105, 101, 87, 97, 115, 109, 76, 111, 97, 100, 101, 114, 32, 111, 114, 32, 115, 101, 116, 87, 97, 115, 109, 85, 114, 108, 40, 41, 46, 34, 41, 59, 108, 101, 116, 32, 116, 61, 103, 116, 40, 41, 59, 40, 116, 121, 112, 101, 111, 102, 32, 110, 61, 61, 34, 115, 116, 114, 105, 110, 103, 34, 124, 124, 116, 121, 112, 101, 111, 102, 32, 82, 101, 113, 117, 101, 115, 116, 61, 61, 34, 102, 117, 110, 99, 116, 105, 111, 110, 34, 38, 38, 110, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 82, 101, 113, 117, 101, 115, 116, 124, 124, 116, 121, 112, 101, 111, 102, 32, 85, 82, 76, 61, 61, 34, 102, 117, 110, 99, 116, 105, 111, 110, 34, 38, 38, 110, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 85, 82, 76, 41, 38, 38, 40, 110, 61, 102, 101, 116, 99, 104, 40, 110, 41, 41, 59, 108, 101, 116, 123, 105, 110, 115, 116, 97, 110, 99, 101, 58, 101, 44, 109, 111, 100, 117, 108, 101, 58, 114, 125, 61, 97, 119, 97, 105, 116, 32, 102, 116, 40, 97, 119, 97, 105, 116, 32, 110, 44, 116, 41, 59, 114, 101, 116, 117, 114, 110, 32, 118, 116, 40, 101, 44, 114, 41, 125, 118, 97, 114, 32, 110, 116, 61, 101, 116, 59, 118, 97, 114, 32, 79, 61, 99, 108, 97, 115, 115, 123, 99, 111, 110, 115, 116, 114, 117, 99, 116, 111, 114, 40, 41, 123, 108, 40, 116, 104, 105, 115, 44, 34, 95, 101, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 34, 44, 110, 101, 119, 32, 77, 97, 112, 41, 125, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 46, 103, 101, 116, 40, 116, 41, 59, 114, 124, 124, 40, 114, 61, 110, 101, 119, 32, 83, 101, 116, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 46, 115, 101, 116, 40, 116, 44, 114, 41, 41, 44, 114, 46, 97, 100, 100, 40, 101, 41, 125, 114, 101, 109, 111, 118, 101, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 46, 103, 101, 116, 40, 116, 41, 59, 114, 38, 38, 40, 101, 63, 40, 114, 46, 100, 101, 108, 101, 116, 101, 40, 101, 41, 44, 114, 46, 115, 105, 122, 101, 61, 61, 61, 48, 38, 38, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 46, 100, 101, 108, 101, 116, 101, 40, 116, 41, 41, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 46, 100, 101, 108, 101, 116, 101, 40, 116, 41, 41, 125, 100, 105, 115, 112, 97, 116, 99, 104, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 46, 103, 101, 116, 40, 116, 46, 116, 121, 112, 101, 41, 63, 46, 102, 111, 114, 69, 97, 99, 104, 40, 114, 61, 62, 114, 40, 116, 41, 41, 125, 114, 101, 109, 111, 118, 101, 65, 108, 108, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 123, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 46, 99, 108, 101, 97, 114, 40, 41, 125, 125, 59, 118, 97, 114, 32, 102, 61, 99, 108, 97, 115, 115, 32, 102, 123, 115, 116, 97, 116, 105, 99, 32, 95, 105, 110, 105, 116, 105, 97, 108, 105, 122, 101, 79, 98, 115, 101, 114, 118, 101, 114, 40, 41, 123, 105, 102, 40, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 32, 116, 61, 101, 61, 62, 123, 101, 46, 102, 111, 114, 69, 97, 99, 104, 40, 114, 61, 62, 123, 108, 101, 116, 32, 111, 61, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 103, 101, 116, 40, 114, 46, 116, 97, 114, 103, 101, 116, 41, 59, 111, 38, 38, 40, 114, 46, 105, 115, 73, 110, 116, 101, 114, 115, 101, 99, 116, 105, 110, 103, 63, 111, 46, 117, 110, 102, 114, 101, 101, 122, 101, 40, 41, 58, 111, 46, 102, 114, 101, 101, 122, 101, 40, 41, 41, 125, 41, 125, 59, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 61, 110, 101, 119, 32, 73, 110, 116, 101, 114, 115, 101, 99, 116, 105, 111, 110, 79, 98, 115, 101, 114, 118, 101, 114, 40, 116, 44, 123, 116, 104, 114, 101, 115, 104, 111, 108, 100, 58, 48, 125, 41, 125, 115, 116, 97, 116, 105, 99, 32, 111, 98, 115, 101, 114, 118, 101, 40, 116, 44, 101, 41, 123, 102, 46, 95, 105, 110, 105, 116, 105, 97, 108, 105, 122, 101, 79, 98, 115, 101, 114, 118, 101, 114, 40, 41, 44, 33, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 104, 97, 115, 40, 116, 41, 38, 38, 40, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 115, 101, 116, 40, 116, 44, 101, 41, 44, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 63, 46, 111, 98, 115, 101, 114, 118, 101, 40, 116, 41, 41, 125, 115, 116, 97, 116, 105, 99, 32, 117, 110, 111, 98, 115, 101, 114, 118, 101, 40, 116, 41, 123, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 63, 46, 117, 110, 111, 98, 115, 101, 114, 118, 101, 40, 116, 41, 44, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 100, 101, 108, 101, 116, 101, 40, 116, 41, 44, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 115, 105, 122, 101, 61, 61, 61, 48, 38, 38, 40, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 63, 46, 100, 105, 115, 99, 111, 110, 110, 101, 99, 116, 40, 41, 44, 102, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 61, 110, 117, 108, 108, 41, 125, 125, 59, 108, 40, 102, 44, 34, 95, 111, 98, 115, 101, 114, 118, 101, 114, 34, 44, 110, 117, 108, 108, 41, 44, 108, 40, 102, 44, 34, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 34, 44, 110, 101, 119, 32, 77, 97, 112, 41, 59, 118, 97, 114, 32, 98, 61, 102, 59, 118, 97, 114, 32, 117, 61, 99, 108, 97, 115, 115, 32, 117, 123, 115, 116, 97, 116, 105, 99, 32, 95, 105, 110, 105, 116, 105, 97, 108, 105, 122, 101, 79, 98, 115, 101, 114, 118, 101, 114, 40, 41, 123, 105, 102, 40, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 32, 116, 61, 101, 61, 62, 123, 101, 46, 102, 111, 114, 69, 97, 99, 104, 40, 114, 61, 62, 123, 108, 101, 116, 32, 111, 61, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 103, 101, 116, 40, 114, 46, 116, 97, 114, 103, 101, 116, 41, 59, 105, 102, 40, 33, 111, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 91, 105, 44, 99, 93, 61, 111, 59, 99, 108, 101, 97, 114, 84, 105, 109, 101, 111, 117, 116, 40, 99, 41, 59, 108, 101, 116, 32, 100, 61, 115, 101, 116, 84, 105, 109, 101, 111, 117, 116, 40, 40, 41, 61, 62, 123, 105, 46, 114, 101, 115, 105, 122, 101, 40, 41, 125, 44, 49, 48, 48, 41, 59, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 115, 101, 116, 40, 114, 46, 116, 97, 114, 103, 101, 116, 44, 91, 105, 44, 100, 93, 41, 125, 41, 125, 59, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 61, 110, 101, 119, 32, 82, 101, 115, 105, 122, 101, 79, 98, 115, 101, 114, 118, 101, 114, 40, 116, 41, 125, 115, 116, 97, 116, 105, 99, 32, 111, 98, 115, 101, 114, 118, 101, 40, 116, 44, 101, 41, 123, 117, 46, 95, 105, 110, 105, 116, 105, 97, 108, 105, 122, 101, 79, 98, 115, 101, 114, 118, 101, 114, 40, 41, 44, 33, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 104, 97, 115, 40, 116, 41, 38, 38, 40, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 115, 101, 116, 40, 116, 44, 91, 101, 44, 48, 93, 41, 44, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 63, 46, 111, 98, 115, 101, 114, 118, 101, 40, 116, 41, 41, 125, 115, 116, 97, 116, 105, 99, 32, 117, 110, 111, 98, 115, 101, 114, 118, 101, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 101, 41, 123, 108, 101, 116, 32, 114, 61, 101, 91, 49, 93, 59, 114, 38, 38, 99, 108, 101, 97, 114, 84, 105, 109, 101, 111, 117, 116, 40, 114, 41, 125, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 63, 46, 117, 110, 111, 98, 115, 101, 114, 118, 101, 40, 116, 41, 44, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 100, 101, 108, 101, 116, 101, 40, 116, 41, 44, 33, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 46, 115, 105, 122, 101, 38, 38, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 38, 38, 40, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 46, 100, 105, 115, 99, 111, 110, 110, 101, 99, 116, 40, 41, 44, 117, 46, 95, 111, 98, 115, 101, 114, 118, 101, 114, 61, 110, 117, 108, 108, 41, 125, 125, 59, 108, 40, 117, 44, 34, 95, 111, 98, 115, 101, 114, 118, 101, 114, 34, 44, 110, 117, 108, 108, 41, 44, 108, 40, 117, 44, 34, 95, 111, 98, 115, 101, 114, 118, 101, 100, 67, 97, 110, 118, 97, 115, 101, 115, 34, 44, 110, 101, 119, 32, 77, 97, 112, 41, 59, 118, 97, 114, 32, 121, 61, 117, 59, 102, 117, 110, 99, 116, 105, 111, 110, 32, 119, 116, 40, 110, 41, 123, 114, 101, 116, 117, 114, 110, 47, 94, 35, 40, 91, 92, 100, 97, 45, 102, 93, 123, 54, 125, 124, 91, 92, 100, 97, 45, 102, 93, 123, 56, 125, 41, 36, 47, 105, 117, 46, 116, 101, 115, 116, 40, 110, 41, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 115, 116, 40, 110, 41, 123, 105, 102, 40, 33, 119, 116, 40, 110, 41, 41, 114, 101, 116, 117, 114, 110, 91, 48, 44, 48, 44, 48, 44, 48, 93, 59, 108, 101, 116, 32, 116, 61, 110, 46, 114, 101, 112, 108, 97, 99, 101, 40, 34, 35, 34, 44, 34, 34, 41, 59, 116, 61, 116, 46, 108, 101, 110, 103, 116, 104, 61, 61, 61, 54, 63, 96, 36, 123, 116, 125, 102, 102, 96, 58, 116, 59, 108, 101, 116, 32, 101, 61, 112, 97, 114, 115, 101, 73, 110, 116, 40, 116, 46, 115, 108, 105, 99, 101, 40, 48, 44, 50, 41, 44, 49, 54, 41, 47, 50, 53, 53, 44, 114, 61, 112, 97, 114, 115, 101, 73, 110, 116, 40, 116, 46, 115, 108, 105, 99, 101, 40, 50, 44, 52, 41, 44, 49, 54, 41, 47, 50, 53, 53, 44, 111, 61, 112, 97, 114, 115, 101, 73, 110, 116, 40, 116, 46, 115, 108, 105, 99, 101, 40, 52, 44, 54, 41, 44, 49, 54, 41, 47, 50, 53, 53, 44, 105, 61, 112, 97, 114, 115, 101, 73, 110, 116, 40, 116, 46, 115, 108, 105, 99, 101, 40, 54, 44, 56, 41, 44, 49, 54, 41, 47, 50, 53, 53, 59, 114, 101, 116, 117, 114, 110, 91, 101, 44, 114, 44, 111, 44, 105, 93, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 78, 40, 110, 41, 123, 105, 102, 40, 110, 46, 98, 121, 116, 101, 76, 101, 110, 103, 116, 104, 60, 52, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 116, 61, 110, 101, 119, 32, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 40, 110, 46, 115, 108, 105, 99, 101, 40, 48, 44, 80, 46, 98, 121, 116, 101, 76, 101, 110, 103, 116, 104, 41, 41, 59, 102, 111, 114, 40, 108, 101, 116, 32, 101, 61, 48, 59, 101, 60, 80, 46, 108, 101, 110, 103, 116, 104, 59, 101, 43, 61, 49, 41, 105, 102, 40, 80, 91, 101, 93, 33, 61, 61, 116, 91, 101, 93, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 114, 101, 116, 117, 114, 110, 33, 48, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 114, 116, 40, 110, 41, 123, 114, 101, 116, 117, 114, 110, 32, 75, 46, 101, 118, 101, 114, 121, 40, 116, 61, 62, 79, 98, 106, 101, 99, 116, 46, 104, 97, 115, 79, 119, 110, 40, 110, 44, 116, 41, 41, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 85, 40, 110, 41, 123, 105, 102, 40, 116, 121, 112, 101, 111, 102, 32, 110, 61, 61, 34, 115, 116, 114, 105, 110, 103, 34, 41, 116, 114, 121, 123, 114, 101, 116, 117, 114, 110, 32, 114, 116, 40, 74, 83, 79, 78, 46, 112, 97, 114, 115, 101, 40, 110, 41, 41, 125, 99, 97, 116, 99, 104, 123, 114, 101, 116, 117, 114, 110, 33, 49, 125, 101, 108, 115, 101, 32, 114, 101, 116, 117, 114, 110, 32, 114, 116, 40, 110, 41, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 87, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 49, 43, 40, 40, 103, 63, 119, 105, 110, 100, 111, 119, 46, 100, 101, 118, 105, 99, 101, 80, 105, 120, 101, 108, 82, 97, 116, 105, 111, 58, 49, 41, 45, 49, 41, 42, 89, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 82, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 103, 101, 116, 66, 111, 117, 110, 100, 105, 110, 103, 67, 108, 105, 101, 110, 116, 82, 101, 99, 116, 40, 41, 44, 101, 61, 119, 105, 110, 100, 111, 119, 46, 105, 110, 110, 101, 114, 72, 101, 105, 103, 104, 116, 124, 124, 100, 111, 99, 117, 109, 101, 110, 116, 46, 100, 111, 99, 117, 109, 101, 110, 116, 69, 108, 101, 109, 101, 110, 116, 46, 99, 108, 105, 101, 110, 116, 72, 101, 105, 103, 104, 116, 44, 114, 61, 119, 105, 110, 100, 111, 119, 46, 105, 110, 110, 101, 114, 87, 105, 100, 116, 104, 124, 124, 100, 111, 99, 117, 109, 101, 110, 116, 46, 100, 111, 99, 117, 109, 101, 110, 116, 69, 108, 101, 109, 101, 110, 116, 46, 99, 108, 105, 101, 110, 116, 87, 105, 100, 116, 104, 59, 114, 101, 116, 117, 114, 110, 33, 40, 116, 46, 98, 111, 116, 116, 111, 109, 60, 48, 124, 124, 116, 46, 116, 111, 112, 62, 101, 124, 124, 116, 46, 114, 105, 103, 104, 116, 60, 48, 124, 124, 116, 46, 108, 101, 102, 116, 62, 114, 41, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 77, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 116, 97, 114, 103, 101, 116, 59, 105, 102, 40, 116, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 41, 123, 108, 101, 116, 32, 101, 61, 116, 46, 103, 101, 116, 66, 111, 117, 110, 100, 105, 110, 103, 67, 108, 105, 101, 110, 116, 82, 101, 99, 116, 40, 41, 59, 105, 102, 40, 101, 46, 119, 105, 100, 116, 104, 61, 61, 61, 48, 124, 124, 101, 46, 104, 101, 105, 103, 104, 116, 61, 61, 61, 48, 124, 124, 116, 46, 119, 105, 100, 116, 104, 61, 61, 61, 48, 124, 124, 116, 46, 104, 101, 105, 103, 104, 116, 61, 61, 61, 48, 41, 114, 101, 116, 117, 114, 110, 32, 110, 117, 108, 108, 59, 108, 101, 116, 32, 114, 61, 116, 46, 119, 105, 100, 116, 104, 47, 101, 46, 119, 105, 100, 116, 104, 44, 111, 61, 116, 46, 104, 101, 105, 103, 104, 116, 47, 101, 46, 104, 101, 105, 103, 104, 116, 44, 105, 61, 40, 110, 46, 99, 108, 105, 101, 110, 116, 88, 45, 101, 46, 108, 101, 102, 116, 41, 42, 114, 44, 99, 61, 40, 110, 46, 99, 108, 105, 101, 110, 116, 89, 45, 101, 46, 116, 111, 112, 41, 42, 111, 59, 114, 101, 116, 117, 114, 110, 33, 78, 117, 109, 98, 101, 114, 46, 105, 115, 70, 105, 110, 105, 116, 101, 40, 105, 41, 124, 124, 33, 78, 117, 109, 98, 101, 114, 46, 105, 115, 70, 105, 110, 105, 116, 101, 40, 99, 41, 124, 124, 78, 117, 109, 98, 101, 114, 46, 105, 115, 78, 97, 78, 40, 105, 41, 124, 124, 78, 117, 109, 98, 101, 114, 46, 105, 115, 78, 97, 78, 40, 99, 41, 63, 110, 117, 108, 108, 58, 123, 120, 58, 105, 44, 121, 58, 99, 125, 125, 114, 101, 116, 117, 114, 110, 32, 110, 117, 108, 108, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 111, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 114, 101, 112, 108, 97, 99, 101, 40, 34, 79, 112, 101, 110, 85, 114, 108, 58, 32, 34, 44, 34, 34, 41, 44, 101, 61, 116, 46, 105, 110, 100, 101, 120, 79, 102, 40, 34, 32, 124, 32, 84, 97, 114, 103, 101, 116, 58, 32, 34, 41, 44, 114, 44, 111, 59, 101, 61, 61, 61, 45, 49, 63, 40, 114, 61, 116, 44, 111, 61, 34, 95, 98, 108, 97, 110, 107, 34, 41, 58, 40, 114, 61, 116, 46, 115, 117, 98, 115, 116, 114, 105, 110, 103, 40, 48, 44, 101, 41, 44, 111, 61, 116, 46, 115, 117, 98, 115, 116, 114, 105, 110, 103, 40, 101, 43, 49, 49, 41, 41, 44, 119, 105, 110, 100, 111, 119, 46, 111, 112, 101, 110, 40, 114, 44, 111, 41, 125, 102, 117, 110, 99, 116, 105, 111, 110, 32, 105, 116, 40, 110, 44, 116, 44, 101, 41, 123, 108, 101, 116, 32, 114, 61, 110, 117, 108, 108, 44, 111, 61, 116, 59, 97, 115, 121, 110, 99, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 105, 40, 100, 41, 123, 97, 119, 97, 105, 116, 32, 110, 40, 123, 109, 111, 100, 117, 108, 101, 95, 111, 114, 95, 112, 97, 116, 104, 58, 100, 125, 41, 125, 97, 115, 121, 110, 99, 32, 102, 117, 110, 99, 116, 105, 111, 110, 32, 99, 40, 100, 41, 123, 108, 101, 116, 32, 104, 61, 97, 119, 97, 105, 116, 32, 102, 101, 116, 99, 104, 40, 100, 41, 59, 105, 102, 40, 33, 104, 46, 111, 107, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 102, 101, 116, 99, 104, 32, 36, 123, 100, 125, 32, 114, 101, 115, 112, 111, 110, 100, 101, 100, 32, 119, 105, 116, 104, 32, 36, 123, 104, 46, 115, 116, 97, 116, 117, 115, 125, 32, 36, 123, 104, 46, 115, 116, 97, 116, 117, 115, 84, 101, 120, 116, 125, 96, 41, 59, 108, 101, 116, 32, 107, 61, 97, 119, 97, 105, 116, 32, 104, 46, 97, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 41, 59, 97, 119, 97, 105, 116, 32, 110, 40, 123, 109, 111, 100, 117, 108, 101, 95, 111, 114, 95, 112, 97, 116, 104, 58, 107, 125, 41, 125, 114, 101, 116, 117, 114, 110, 123, 108, 111, 97, 100, 40, 41, 123, 105, 102, 40, 33, 114, 41, 123, 108, 101, 116, 32, 100, 61, 111, 44, 104, 61, 101, 59, 114, 61, 40, 97, 115, 121, 110, 99, 40, 41, 61, 62, 123, 108, 101, 116, 32, 107, 44, 106, 59, 116, 114, 121, 123, 97, 119, 97, 105, 116, 32, 105, 40, 100, 41, 59, 114, 101, 116, 117, 114, 110, 125, 99, 97, 116, 99, 104, 40, 118, 41, 123, 107, 61, 118, 44, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 96, 80, 114, 105, 109, 97, 114, 121, 32, 87, 65, 83, 77, 32, 108, 111, 97, 100, 32, 102, 97, 105, 108, 101, 100, 32, 102, 114, 111, 109, 32, 36, 123, 100, 125, 58, 32, 36, 123, 118, 46, 109, 101, 115, 115, 97, 103, 101, 125, 96, 41, 44, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 96, 65, 116, 116, 101, 109, 112, 116, 105, 110, 103, 32, 116, 111, 32, 108, 111, 97, 100, 32, 87, 65, 83, 77, 32, 102, 114, 111, 109, 32, 98, 97, 99, 107, 117, 112, 32, 85, 82, 76, 58, 32, 36, 123, 104, 125, 96, 41, 125, 116, 114, 121, 123, 97, 119, 97, 105, 116, 32, 105, 40, 104, 41, 59, 114, 101, 116, 117, 114, 110, 125, 99, 97, 116, 99, 104, 40, 118, 41, 123, 106, 61, 118, 44, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 96, 66, 97, 99, 107, 117, 112, 32, 87, 65, 83, 77, 32, 108, 111, 97, 100, 32, 102, 97, 105, 108, 101, 100, 32, 102, 114, 111, 109, 32, 36, 123, 104, 125, 58, 32, 36, 123, 118, 46, 109, 101, 115, 115, 97, 103, 101, 125, 96, 41, 125, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 34, 82, 101, 116, 114, 121, 105, 110, 103, 32, 87, 65, 83, 77, 32, 108, 111, 97, 100, 32, 119, 105, 116, 104, 32, 98, 117, 102, 102, 101, 114, 101, 100, 32, 105, 110, 115, 116, 97, 110, 116, 105, 97, 116, 105, 111, 110, 34, 41, 59, 116, 114, 121, 123, 97, 119, 97, 105, 116, 32, 99, 40, 100, 41, 59, 114, 101, 116, 117, 114, 110, 125, 99, 97, 116, 99, 104, 40, 118, 41, 123, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 96, 66, 117, 102, 102, 101, 114, 101, 100, 32, 87, 65, 83, 77, 32, 108, 111, 97, 100, 32, 102, 114, 111, 109, 32, 36, 123, 100, 125, 32, 102, 97, 105, 108, 101, 100, 58, 32, 36, 123, 118, 46, 109, 101, 115, 115, 97, 103, 101, 125, 96, 41, 125, 116, 114, 121, 123, 97, 119, 97, 105, 116, 32, 99, 40, 104, 41, 59, 114, 101, 116, 117, 114, 110, 125, 99, 97, 116, 99, 104, 40, 118, 41, 123, 116, 104, 114, 111, 119, 32, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 96, 80, 114, 105, 109, 97, 114, 121, 32, 87, 65, 83, 77, 32, 85, 82, 76, 32, 102, 97, 105, 108, 101, 100, 58, 32, 36, 123, 107, 46, 109, 101, 115, 115, 97, 103, 101, 125, 96, 41, 44, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 96, 66, 97, 99, 107, 117, 112, 32, 87, 65, 83, 77, 32, 85, 82, 76, 32, 102, 97, 105, 108, 101, 100, 58, 32, 36, 123, 106, 46, 109, 101, 115, 115, 97, 103, 101, 125, 96, 41, 44, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 96, 66, 117, 102, 102, 101, 114, 101, 100, 32, 102, 97, 108, 108, 98, 97, 99, 107, 32, 102, 97, 105, 108, 101, 100, 58, 32, 36, 123, 118, 46, 109, 101, 115, 115, 97, 103, 101, 125, 96, 41, 44, 114, 61, 110, 117, 108, 108, 44, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 34, 87, 65, 83, 77, 32, 108, 111, 97, 100, 105, 110, 103, 32, 102, 97, 105, 108, 101, 100, 32, 102, 114, 111, 109, 32, 97, 108, 108, 32, 115, 111, 117, 114, 99, 101, 115, 46, 34, 41, 125, 125, 41, 40, 41, 125, 114, 101, 116, 117, 114, 110, 32, 114, 125, 44, 115, 101, 116, 87, 97, 115, 109, 85, 114, 108, 40, 100, 41, 123, 100, 33, 61, 61, 111, 38, 38, 40, 111, 61, 100, 44, 114, 61, 110, 117, 108, 108, 41, 125, 125, 125, 118, 97, 114, 32, 71, 61, 105, 116, 40, 110, 116, 44, 96, 104, 116, 116, 112, 115, 58, 47, 47, 99, 100, 110, 46, 106, 115, 100, 101, 108, 105, 118, 114, 46, 110, 101, 116, 47, 110, 112, 109, 47, 36, 123, 122, 125, 64, 36, 123, 36, 125, 47, 100, 105, 115, 116, 47, 100, 111, 116, 108, 111, 116, 116, 105, 101, 45, 112, 108, 97, 121, 101, 114, 46, 119, 97, 115, 109, 96, 44, 96, 104, 116, 116, 112, 115, 58, 47, 47, 117, 110, 112, 107, 103, 46, 99, 111, 109, 47, 36, 123, 122, 125, 64, 36, 123, 36, 125, 47, 100, 105, 115, 116, 47, 100, 111, 116, 108, 111, 116, 116, 105, 101, 45, 112, 108, 97, 121, 101, 114, 46, 119, 97, 115, 109, 96, 41, 44, 72, 61, 110, 61, 62, 123, 115, 119, 105, 116, 99, 104, 40, 110, 41, 123, 99, 97, 115, 101, 34, 114, 101, 118, 101, 114, 115, 101, 34, 58, 114, 101, 116, 117, 114, 110, 32, 119, 46, 82, 101, 118, 101, 114, 115, 101, 59, 99, 97, 115, 101, 34, 98, 111, 117, 110, 99, 101, 34, 58, 114, 101, 116, 117, 114, 110, 32, 119, 46, 66, 111, 117, 110, 99, 101, 59, 99, 97, 115, 101, 34, 114, 101, 118, 101, 114, 115, 101, 45, 98, 111, 117, 110, 99, 101, 34, 58, 114, 101, 116, 117, 114, 110, 32, 119, 46, 82, 101, 118, 101, 114, 115, 101, 66, 111, 117, 110, 99, 101, 59, 100, 101, 102, 97, 117, 108, 116, 58, 114, 101, 116, 117, 114, 110, 32, 119, 46, 70, 111, 114, 119, 97, 114, 100, 125, 125, 44, 97, 116, 61, 110, 61, 62, 123, 115, 119, 105, 116, 99, 104, 40, 110, 41, 123, 99, 97, 115, 101, 32, 119, 46, 82, 101, 118, 101, 114, 115, 101, 58, 114, 101, 116, 117, 114, 110, 34, 114, 101, 118, 101, 114, 115, 101, 34, 59, 99, 97, 115, 101, 32, 119, 46, 66, 111, 117, 110, 99, 101, 58, 114, 101, 116, 117, 114, 110, 34, 98, 111, 117, 110, 99, 101, 34, 59, 99, 97, 115, 101, 32, 119, 46, 82, 101, 118, 101, 114, 115, 101, 66, 111, 117, 110, 99, 101, 58, 114, 101, 116, 117, 114, 110, 34, 114, 101, 118, 101, 114, 115, 101, 45, 98, 111, 117, 110, 99, 101, 34, 59, 100, 101, 102, 97, 117, 108, 116, 58, 114, 101, 116, 117, 114, 110, 34, 102, 111, 114, 119, 97, 114, 100, 34, 125, 125, 44, 98, 116, 61, 110, 61, 62, 123, 115, 119, 105, 116, 99, 104, 40, 110, 41, 123, 99, 97, 115, 101, 34, 99, 111, 110, 116, 97, 105, 110, 34, 58, 114, 101, 116, 117, 114, 110, 34, 99, 111, 110, 116, 97, 105, 110, 34, 59, 99, 97, 115, 101, 34, 99, 111, 118, 101, 114, 34, 58, 114, 101, 116, 117, 114, 110, 34, 99, 111, 118, 101, 114, 34, 59, 99, 97, 115, 101, 34, 102, 105, 108, 108, 34, 58, 114, 101, 116, 117, 114, 110, 34, 102, 105, 108, 108, 34, 59, 99, 97, 115, 101, 34, 102, 105, 116, 45, 104, 101, 105, 103, 104, 116, 34, 58, 114, 101, 116, 117, 114, 110, 34, 102, 105, 116, 45, 104, 101, 105, 103, 104, 116, 34, 59, 99, 97, 115, 101, 34, 102, 105, 116, 45, 119, 105, 100, 116, 104, 34, 58, 114, 101, 116, 117, 114, 110, 34, 102, 105, 116, 45, 119, 105, 100, 116, 104, 34, 59, 99, 97, 115, 101, 34, 110, 111, 110, 101, 34, 58, 114, 101, 116, 117, 114, 110, 34, 110, 111, 110, 101, 34, 59, 100, 101, 102, 97, 117, 108, 116, 58, 114, 101, 116, 117, 114, 110, 34, 99, 111, 110, 116, 97, 105, 110, 34, 125, 125, 44, 67, 61, 99, 108, 97, 115, 115, 123, 99, 111, 110, 115, 116, 114, 117, 99, 116, 111, 114, 40, 116, 41, 123, 108, 40, 116, 104, 105, 115, 44, 34, 95, 99, 97, 110, 118, 97, 115, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 112, 101, 110, 100, 105, 110, 103, 76, 111, 97, 100, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 99, 111, 110, 116, 101, 120, 116, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 34, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 73, 100, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 102, 114, 97, 109, 101, 77, 97, 110, 97, 103, 101, 114, 34, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 98, 111, 117, 110, 100, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 34, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 100, 34, 44, 34, 34, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 111, 110, 102, 105, 103, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 34, 44, 33, 49, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 34, 44, 123, 125, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 105, 115, 70, 114, 111, 122, 101, 110, 34, 44, 33, 49, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 108, 97, 115, 116, 70, 114, 97, 109, 101, 84, 105, 109, 101, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 98, 111, 117, 110, 100, 79, 110, 67, 108, 105, 99, 107, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 85, 112, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 76, 101, 97, 118, 101, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 98, 117, 102, 102, 101, 114, 77, 105, 115, 109, 97, 116, 99, 104, 67, 111, 117, 110, 116, 34, 44, 48, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 108, 97, 115, 116, 69, 120, 112, 101, 99, 116, 101, 100, 66, 117, 102, 102, 101, 114, 83, 105, 122, 101, 34, 44, 48, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 66, 117, 102, 102, 101, 114, 34, 44, 110, 117, 108, 108, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 66, 121, 116, 101, 79, 102, 102, 115, 101, 116, 34, 44, 48, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 109, 97, 114, 107, 101, 114, 34, 44, 34, 34, 41, 59, 108, 40, 116, 104, 105, 115, 44, 34, 95, 115, 101, 103, 109, 101, 110, 116, 34, 44, 110, 117, 108, 108, 41, 59, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 61, 116, 46, 99, 97, 110, 118, 97, 115, 63, 63, 110, 117, 108, 108, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 61, 110, 101, 119, 32, 79, 44, 116, 104, 105, 115, 46, 95, 102, 114, 97, 109, 101, 77, 97, 110, 97, 103, 101, 114, 61, 110, 101, 119, 32, 84, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 61, 116, 104, 105, 115, 46, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 46, 98, 105, 110, 100, 40, 116, 104, 105, 115, 41, 44, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 61, 123, 46, 46, 46, 116, 46, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 44, 100, 101, 118, 105, 99, 101, 80, 105, 120, 101, 108, 82, 97, 116, 105, 111, 58, 116, 46, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 63, 46, 100, 101, 118, 105, 99, 101, 80, 105, 120, 101, 108, 82, 97, 116, 105, 111, 124, 124, 87, 40, 41, 44, 102, 114, 101, 101, 122, 101, 79, 110, 79, 102, 102, 115, 99, 114, 101, 101, 110, 58, 116, 46, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 63, 46, 102, 114, 101, 101, 122, 101, 79, 110, 79, 102, 102, 115, 99, 114, 101, 101, 110, 63, 63, 33, 48, 125, 44, 116, 104, 105, 115, 46, 95, 105, 110, 105, 116, 87, 97, 115, 109, 40, 41, 46, 116, 104, 101, 110, 40, 40, 41, 61, 62, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 116, 104, 105, 115, 46, 95, 99, 114, 101, 97, 116, 101, 67, 111, 114, 101, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 97, 117, 116, 111, 112, 108, 97, 121, 40, 116, 46, 97, 117, 116, 111, 112, 108, 97, 121, 63, 63, 33, 49, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 108, 111, 111, 112, 40, 116, 46, 108, 111, 111, 112, 63, 63, 33, 49, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 116, 46, 108, 111, 111, 112, 67, 111, 117, 110, 116, 63, 63, 48, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 109, 111, 100, 101, 40, 72, 40, 116, 46, 109, 111, 100, 101, 63, 63, 34, 102, 111, 114, 119, 97, 114, 100, 34, 41, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 112, 101, 101, 100, 40, 116, 46, 115, 112, 101, 101, 100, 63, 63, 49, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 117, 115, 101, 95, 102, 114, 97, 109, 101, 95, 105, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 116, 46, 117, 115, 101, 70, 114, 97, 109, 101, 73, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 63, 63, 33, 48, 41, 44, 116, 46, 115, 101, 103, 109, 101, 110, 116, 38, 38, 116, 46, 115, 101, 103, 109, 101, 110, 116, 46, 108, 101, 110, 103, 116, 104, 61, 61, 61, 50, 38, 38, 40, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 61, 91, 116, 46, 115, 101, 103, 109, 101, 110, 116, 91, 48, 93, 44, 116, 46, 115, 101, 103, 109, 101, 110, 116, 91, 49, 93, 93, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 101, 103, 109, 101, 110, 116, 40, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 91, 48, 93, 44, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 91, 49, 93, 41, 41, 44, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 61, 116, 46, 109, 97, 114, 107, 101, 114, 63, 63, 34, 34, 44, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 109, 97, 114, 107, 101, 114, 40, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 108, 97, 121, 111, 117, 116, 40, 116, 46, 108, 97, 121, 111, 117, 116, 63, 46, 102, 105, 116, 63, 63, 34, 99, 111, 110, 116, 97, 105, 110, 34, 44, 116, 46, 108, 97, 121, 111, 117, 116, 63, 46, 97, 108, 105, 103, 110, 63, 46, 91, 48, 93, 63, 63, 46, 53, 44, 116, 46, 108, 97, 121, 111, 117, 116, 63, 46, 97, 108, 105, 103, 110, 63, 46, 91, 49, 93, 63, 63, 46, 53, 41, 44, 116, 104, 105, 115, 46, 95, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 100, 61, 116, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 100, 63, 63, 34, 34, 44, 116, 104, 105, 115, 46, 95, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 111, 110, 102, 105, 103, 61, 116, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 111, 110, 102, 105, 103, 63, 63, 110, 117, 108, 108, 44, 116, 104, 105, 115, 46, 95, 111, 110, 67, 111, 114, 101, 67, 114, 101, 97, 116, 101, 100, 40, 41, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 114, 101, 97, 100, 121, 34, 125, 41, 44, 116, 46, 100, 97, 116, 97, 63, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 63, 116, 104, 105, 115, 46, 95, 108, 111, 97, 100, 70, 114, 111, 109, 68, 97, 116, 97, 40, 116, 46, 100, 97, 116, 97, 41, 58, 116, 104, 105, 115, 46, 95, 112, 101, 110, 100, 105, 110, 103, 76, 111, 97, 100, 61, 123, 100, 97, 116, 97, 58, 116, 46, 100, 97, 116, 97, 125, 58, 116, 46, 115, 114, 99, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 63, 116, 104, 105, 115, 46, 95, 108, 111, 97, 100, 70, 114, 111, 109, 83, 114, 99, 40, 116, 46, 115, 114, 99, 41, 58, 116, 104, 105, 115, 46, 95, 112, 101, 110, 100, 105, 110, 103, 76, 111, 97, 100, 61, 123, 115, 114, 99, 58, 116, 46, 115, 114, 99, 125, 41, 44, 116, 46, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 38, 38, 116, 104, 105, 115, 46, 115, 101, 116, 66, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 40, 116, 46, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 41, 125, 41, 46, 99, 97, 116, 99, 104, 40, 101, 61, 62, 123, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 34, 91, 100, 111, 116, 108, 111, 116, 116, 105, 101, 45, 119, 101, 98, 93, 32, 73, 110, 105, 116, 105, 97, 108, 105, 122, 97, 116, 105, 111, 110, 32, 102, 97, 105, 108, 101, 100, 58, 34, 44, 101, 41, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 108, 111, 97, 100, 69, 114, 114, 111, 114, 34, 44, 101, 114, 114, 111, 114, 58, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 70, 97, 105, 108, 101, 100, 32, 116, 111, 32, 108, 111, 97, 100, 32, 119, 97, 115, 109, 32, 109, 111, 100, 117, 108, 101, 58, 32, 36, 123, 101, 125, 96, 41, 125, 41, 125, 41, 125, 97, 115, 121, 110, 99, 32, 95, 105, 110, 105, 116, 87, 97, 115, 109, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 71, 46, 108, 111, 97, 100, 40, 41, 125, 95, 99, 114, 101, 97, 116, 101, 67, 111, 114, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 110, 101, 119, 32, 70, 125, 95, 111, 110, 67, 111, 114, 101, 67, 114, 101, 97, 116, 101, 100, 40, 41, 123, 125, 95, 115, 101, 116, 117, 112, 84, 97, 114, 103, 101, 116, 40, 116, 44, 101, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 117, 112, 95, 115, 119, 95, 116, 97, 114, 103, 101, 116, 40, 116, 44, 101, 41, 58, 33, 49, 125, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 123, 115, 107, 105, 112, 70, 114, 97, 109, 101, 58, 116, 61, 33, 49, 125, 61, 123, 125, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 32, 101, 59, 102, 111, 114, 40, 59, 40, 101, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 112, 111, 108, 108, 95, 101, 118, 101, 110, 116, 40, 41, 41, 33, 61, 61, 110, 117, 108, 108, 38, 38, 101, 33, 61, 61, 118, 111, 105, 100, 32, 48, 59, 41, 123, 108, 101, 116, 32, 114, 61, 101, 59, 115, 119, 105, 116, 99, 104, 40, 114, 46, 116, 121, 112, 101, 41, 123, 99, 97, 115, 101, 34, 76, 111, 97, 100, 34, 58, 115, 101, 116, 84, 105, 109, 101, 111, 117, 116, 40, 40, 41, 61, 62, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 108, 111, 97, 100, 34, 125, 41, 44, 48, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 76, 111, 97, 100, 69, 114, 114, 111, 114, 34, 58, 115, 101, 116, 84, 105, 109, 101, 111, 117, 116, 40, 40, 41, 61, 62, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 108, 111, 97, 100, 69, 114, 114, 111, 114, 34, 44, 101, 114, 114, 111, 114, 58, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 34, 102, 97, 105, 108, 101, 100, 32, 116, 111, 32, 108, 111, 97, 100, 34, 41, 125, 41, 44, 48, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 80, 108, 97, 121, 34, 58, 113, 117, 101, 117, 101, 77, 105, 99, 114, 111, 116, 97, 115, 107, 40, 40, 41, 61, 62, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 112, 108, 97, 121, 34, 125, 41, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 80, 97, 117, 115, 101, 34, 58, 113, 117, 101, 117, 101, 77, 105, 99, 114, 111, 116, 97, 115, 107, 40, 40, 41, 61, 62, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 112, 97, 117, 115, 101, 34, 125, 41, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 83, 116, 111, 112, 34, 58, 113, 117, 101, 117, 101, 77, 105, 99, 114, 111, 116, 97, 115, 107, 40, 40, 41, 61, 62, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 111, 112, 34, 125, 41, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 70, 114, 97, 109, 101, 34, 58, 116, 124, 124, 113, 117, 101, 117, 101, 77, 105, 99, 114, 111, 116, 97, 115, 107, 40, 40, 41, 61, 62, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 102, 114, 97, 109, 101, 34, 44, 99, 117, 114, 114, 101, 110, 116, 70, 114, 97, 109, 101, 58, 114, 46, 102, 114, 97, 109, 101, 78, 111, 63, 63, 48, 125, 41, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 82, 101, 110, 100, 101, 114, 34, 58, 116, 124, 124, 113, 117, 101, 117, 101, 77, 105, 99, 114, 111, 116, 97, 115, 107, 40, 40, 41, 61, 62, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 114, 101, 110, 100, 101, 114, 34, 44, 99, 117, 114, 114, 101, 110, 116, 70, 114, 97, 109, 101, 58, 114, 46, 102, 114, 97, 109, 101, 78, 111, 63, 63, 48, 125, 41, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 76, 111, 111, 112, 34, 58, 113, 117, 101, 117, 101, 77, 105, 99, 114, 111, 116, 97, 115, 107, 40, 40, 41, 61, 62, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 108, 111, 111, 112, 34, 44, 108, 111, 111, 112, 67, 111, 117, 110, 116, 58, 114, 46, 108, 111, 111, 112, 67, 111, 117, 110, 116, 63, 63, 48, 125, 41, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 67, 111, 109, 112, 108, 101, 116, 101, 34, 58, 113, 117, 101, 117, 101, 77, 105, 99, 114, 111, 116, 97, 115, 107, 40, 40, 41, 61, 62, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 99, 111, 109, 112, 108, 101, 116, 101, 34, 125, 41, 41, 59, 98, 114, 101, 97, 107, 59, 100, 101, 102, 97, 117, 108, 116, 58, 98, 114, 101, 97, 107, 125, 125, 125, 95, 100, 114, 97, 105, 110, 83, 109, 69, 118, 101, 110, 116, 115, 40, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 32, 116, 59, 102, 111, 114, 40, 59, 40, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 109, 95, 112, 111, 108, 108, 95, 101, 118, 101, 110, 116, 40, 41, 41, 33, 61, 61, 110, 117, 108, 108, 38, 38, 116, 33, 61, 61, 118, 111, 105, 100, 32, 48, 59, 41, 123, 108, 101, 116, 32, 114, 61, 116, 59, 115, 119, 105, 116, 99, 104, 40, 114, 46, 116, 121, 112, 101, 41, 123, 99, 97, 115, 101, 34, 83, 116, 97, 114, 116, 34, 58, 113, 117, 101, 117, 101, 77, 105, 99, 114, 111, 116, 97, 115, 107, 40, 40, 41, 61, 62, 123, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 61, 33, 48, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 114, 116, 34, 125, 41, 44, 116, 104, 105, 115, 46, 95, 115, 116, 97, 114, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 83, 116, 111, 112, 34, 58, 113, 117, 101, 117, 101, 77, 105, 99, 114, 111, 116, 97, 115, 107, 40, 40, 41, 61, 62, 123, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 61, 33, 49, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 111, 112, 34, 125, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 105, 115, 95, 112, 108, 97, 121, 105, 110, 103, 40, 41, 124, 124, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 67, 117, 115, 116, 111, 109, 69, 118, 101, 110, 116, 34, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 117, 115, 116, 111, 109, 69, 118, 101, 110, 116, 34, 44, 101, 118, 101, 110, 116, 78, 97, 109, 101, 58, 114, 46, 109, 101, 115, 115, 97, 103, 101, 63, 63, 34, 34, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 67, 104, 97, 110, 103, 101, 34, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 34, 44, 105, 110, 112, 117, 116, 78, 97, 109, 101, 58, 114, 46, 110, 97, 109, 101, 63, 63, 34, 34, 44, 110, 101, 119, 86, 97, 108, 117, 101, 58, 114, 46, 110, 101, 119, 86, 97, 108, 117, 101, 44, 111, 108, 100, 86, 97, 108, 117, 101, 58, 114, 46, 111, 108, 100, 86, 97, 108, 117, 101, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 67, 104, 97, 110, 103, 101, 34, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 34, 44, 105, 110, 112, 117, 116, 78, 97, 109, 101, 58, 114, 46, 110, 97, 109, 101, 63, 63, 34, 34, 44, 110, 101, 119, 86, 97, 108, 117, 101, 58, 114, 46, 110, 101, 119, 86, 97, 108, 117, 101, 44, 111, 108, 100, 86, 97, 108, 117, 101, 58, 114, 46, 111, 108, 100, 86, 97, 108, 117, 101, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 67, 104, 97, 110, 103, 101, 34, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 34, 44, 105, 110, 112, 117, 116, 78, 97, 109, 101, 58, 114, 46, 110, 97, 109, 101, 63, 63, 34, 34, 44, 110, 101, 119, 86, 97, 108, 117, 101, 58, 114, 46, 110, 101, 119, 86, 97, 108, 117, 101, 44, 111, 108, 100, 86, 97, 108, 117, 101, 58, 114, 46, 111, 108, 100, 86, 97, 108, 117, 101, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 73, 110, 112, 117, 116, 70, 105, 114, 101, 100, 34, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 110, 112, 117, 116, 70, 105, 114, 101, 100, 34, 44, 105, 110, 112, 117, 116, 78, 97, 109, 101, 58, 114, 46, 110, 97, 109, 101, 63, 63, 34, 34, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 84, 114, 97, 110, 115, 105, 116, 105, 111, 110, 34, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 84, 114, 97, 110, 115, 105, 116, 105, 111, 110, 34, 44, 102, 114, 111, 109, 83, 116, 97, 116, 101, 58, 114, 46, 112, 114, 101, 118, 105, 111, 117, 115, 83, 116, 97, 116, 101, 63, 63, 34, 34, 44, 116, 111, 83, 116, 97, 116, 101, 58, 114, 46, 110, 101, 119, 83, 116, 97, 116, 101, 63, 63, 34, 34, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 83, 116, 97, 116, 101, 69, 110, 116, 101, 114, 101, 100, 34, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 116, 101, 69, 110, 116, 101, 114, 101, 100, 34, 44, 115, 116, 97, 116, 101, 58, 114, 46, 115, 116, 97, 116, 101, 63, 63, 34, 34, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 83, 116, 97, 116, 101, 69, 120, 105, 116, 34, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 116, 101, 69, 120, 105, 116, 34, 44, 115, 116, 97, 116, 101, 58, 114, 46, 115, 116, 97, 116, 101, 63, 63, 34, 34, 125, 41, 59, 98, 114, 101, 97, 107, 59, 99, 97, 115, 101, 34, 69, 114, 114, 111, 114, 34, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 69, 114, 114, 111, 114, 34, 44, 101, 114, 114, 111, 114, 58, 114, 46, 109, 101, 115, 115, 97, 103, 101, 63, 63, 34, 34, 125, 41, 59, 98, 114, 101, 97, 107, 59, 100, 101, 102, 97, 117, 108, 116, 58, 98, 114, 101, 97, 107, 125, 125, 108, 101, 116, 32, 101, 59, 102, 111, 114, 40, 59, 40, 101, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 109, 95, 112, 111, 108, 108, 95, 105, 110, 116, 101, 114, 110, 97, 108, 95, 101, 118, 101, 110, 116, 40, 41, 41, 33, 61, 61, 110, 117, 108, 108, 38, 38, 101, 33, 61, 61, 118, 111, 105, 100, 32, 48, 59, 41, 123, 108, 101, 116, 32, 114, 61, 101, 59, 105, 102, 40, 114, 46, 116, 121, 112, 101, 61, 61, 61, 34, 77, 101, 115, 115, 97, 103, 101, 34, 41, 123, 108, 101, 116, 32, 111, 61, 114, 46, 109, 101, 115, 115, 97, 103, 101, 63, 63, 34, 34, 59, 103, 38, 38, 111, 46, 115, 116, 97, 114, 116, 115, 87, 105, 116, 104, 40, 34, 79, 112, 101, 110, 85, 114, 108, 58, 32, 34, 41, 63, 111, 116, 40, 111, 41, 58, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 110, 116, 101, 114, 110, 97, 108, 77, 101, 115, 115, 97, 103, 101, 34, 44, 109, 101, 115, 115, 97, 103, 101, 58, 111, 125, 41, 125, 125, 125, 95, 100, 105, 115, 112, 97, 116, 99, 104, 69, 114, 114, 111, 114, 40, 116, 41, 123, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 116, 41, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 108, 111, 97, 100, 69, 114, 114, 111, 114, 34, 44, 101, 114, 114, 111, 114, 58, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 116, 41, 125, 41, 125, 97, 115, 121, 110, 99, 32, 95, 102, 101, 116, 99, 104, 68, 97, 116, 97, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 97, 119, 97, 105, 116, 32, 102, 101, 116, 99, 104, 40, 116, 41, 59, 105, 102, 40, 33, 101, 46, 111, 107, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 70, 97, 105, 108, 101, 100, 32, 116, 111, 32, 102, 101, 116, 99, 104, 32, 97, 110, 105, 109, 97, 116, 105, 111, 110, 32, 100, 97, 116, 97, 32, 102, 114, 111, 109, 32, 85, 82, 76, 58, 32, 36, 123, 116, 125, 46, 32, 36, 123, 101, 46, 115, 116, 97, 116, 117, 115, 125, 58, 32, 36, 123, 101, 46, 115, 116, 97, 116, 117, 115, 84, 101, 120, 116, 125, 96, 41, 59, 108, 101, 116, 32, 114, 61, 97, 119, 97, 105, 116, 32, 101, 46, 97, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 78, 40, 114, 41, 63, 114, 58, 110, 101, 119, 32, 84, 101, 120, 116, 68, 101, 99, 111, 100, 101, 114, 40, 41, 46, 100, 101, 99, 111, 100, 101, 40, 114, 41, 125, 95, 108, 111, 97, 100, 70, 114, 111, 109, 68, 97, 116, 97, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 59, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 123, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 34, 91, 100, 111, 116, 108, 111, 116, 116, 105, 101, 45, 119, 101, 98, 93, 32, 67, 97, 110, 110, 111, 116, 32, 108, 111, 97, 100, 32, 97, 110, 105, 109, 97, 116, 105, 111, 110, 32, 119, 105, 116, 104, 111, 117, 116, 32, 99, 97, 110, 118, 97, 115, 46, 32, 67, 97, 108, 108, 32, 115, 101, 116, 67, 97, 110, 118, 97, 115, 40, 41, 32, 102, 105, 114, 115, 116, 46, 34, 41, 59, 114, 101, 116, 117, 114, 110, 125, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 119, 105, 100, 116, 104, 44, 114, 61, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 104, 101, 105, 103, 104, 116, 59, 116, 104, 105, 115, 46, 95, 115, 101, 116, 117, 112, 84, 97, 114, 103, 101, 116, 40, 101, 44, 114, 41, 59, 108, 101, 116, 32, 111, 61, 33, 49, 59, 105, 102, 40, 116, 121, 112, 101, 111, 102, 32, 116, 61, 61, 34, 115, 116, 114, 105, 110, 103, 34, 41, 123, 105, 102, 40, 33, 85, 40, 116, 41, 41, 123, 116, 104, 105, 115, 46, 95, 100, 105, 115, 112, 97, 116, 99, 104, 69, 114, 114, 111, 114, 40, 34, 73, 110, 118, 97, 108, 105, 100, 32, 76, 111, 116, 116, 105, 101, 32, 74, 83, 79, 78, 32, 115, 116, 114, 105, 110, 103, 58, 32, 84, 104, 101, 32, 112, 114, 111, 118, 105, 100, 101, 100, 32, 115, 116, 114, 105, 110, 103, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 99, 111, 110, 102, 111, 114, 109, 32, 116, 111, 32, 116, 104, 101, 32, 76, 111, 116, 116, 105, 101, 32, 74, 83, 79, 78, 32, 102, 111, 114, 109, 97, 116, 46, 34, 41, 59, 114, 101, 116, 117, 114, 110, 125, 111, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 108, 111, 97, 100, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 40, 116, 41, 125, 101, 108, 115, 101, 32, 105, 102, 40, 116, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 41, 123, 105, 102, 40, 33, 78, 40, 116, 41, 41, 123, 116, 104, 105, 115, 46, 95, 100, 105, 115, 112, 97, 116, 99, 104, 69, 114, 114, 111, 114, 40, 34, 73, 110, 118, 97, 108, 105, 100, 32, 100, 111, 116, 76, 111, 116, 116, 105, 101, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 58, 32, 84, 104, 101, 32, 112, 114, 111, 118, 105, 100, 101, 100, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 99, 111, 110, 102, 111, 114, 109, 32, 116, 111, 32, 116, 104, 101, 32, 100, 111, 116, 76, 111, 116, 116, 105, 101, 32, 102, 111, 114, 109, 97, 116, 46, 34, 41, 59, 114, 101, 116, 117, 114, 110, 125, 111, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 108, 111, 97, 100, 95, 100, 111, 116, 108, 111, 116, 116, 105, 101, 95, 100, 97, 116, 97, 40, 110, 101, 119, 32, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 40, 116, 41, 41, 125, 101, 108, 115, 101, 32, 105, 102, 40, 116, 121, 112, 101, 111, 102, 32, 116, 61, 61, 34, 111, 98, 106, 101, 99, 116, 34, 41, 123, 105, 102, 40, 33, 85, 40, 116, 41, 41, 123, 116, 104, 105, 115, 46, 95, 100, 105, 115, 112, 97, 116, 99, 104, 69, 114, 114, 111, 114, 40, 34, 73, 110, 118, 97, 108, 105, 100, 32, 76, 111, 116, 116, 105, 101, 32, 74, 83, 79, 78, 32, 111, 98, 106, 101, 99, 116, 58, 32, 84, 104, 101, 32, 112, 114, 111, 118, 105, 100, 101, 100, 32, 111, 98, 106, 101, 99, 116, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 99, 111, 110, 102, 111, 114, 109, 32, 116, 111, 32, 116, 104, 101, 32, 76, 111, 116, 116, 105, 101, 32, 74, 83, 79, 78, 32, 102, 111, 114, 109, 97, 116, 46, 34, 41, 59, 114, 101, 116, 117, 114, 110, 125, 111, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 108, 111, 97, 100, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 40, 74, 83, 79, 78, 46, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 116, 41, 41, 125, 101, 108, 115, 101, 123, 116, 104, 105, 115, 46, 95, 100, 105, 115, 112, 97, 116, 99, 104, 69, 114, 114, 111, 114, 40, 96, 85, 110, 115, 117, 112, 112, 111, 114, 116, 101, 100, 32, 100, 97, 116, 97, 32, 116, 121, 112, 101, 32, 102, 111, 114, 32, 97, 110, 105, 109, 97, 116, 105, 111, 110, 32, 100, 97, 116, 97, 46, 32, 69, 120, 112, 101, 99, 116, 101, 100, 58, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 45, 32, 115, 116, 114, 105, 110, 103, 32, 40, 76, 111, 116, 116, 105, 101, 32, 74, 83, 79, 78, 41, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 45, 32, 65, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 32, 40, 100, 111, 116, 76, 111, 116, 116, 105, 101, 41, 44, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 45, 32, 111, 98, 106, 101, 99, 116, 32, 40, 76, 111, 116, 116, 105, 101, 32, 74, 83, 79, 78, 41, 46, 10, 32, 32, 32, 32, 32, 32, 32, 32, 32, 32, 82, 101, 99, 101, 105, 118, 101, 100, 58, 32, 36, 123, 116, 121, 112, 101, 111, 102, 32, 116, 125, 96, 41, 59, 114, 101, 116, 117, 114, 110, 125, 105, 102, 40, 111, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 113, 117, 97, 108, 105, 116, 121, 33, 61, 61, 118, 111, 105, 100, 32, 48, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 113, 117, 97, 108, 105, 116, 121, 40, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 113, 117, 97, 108, 105, 116, 121, 41, 44, 103, 38, 38, 116, 104, 105, 115, 46, 114, 101, 115, 105, 122, 101, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 123, 115, 107, 105, 112, 70, 114, 97, 109, 101, 58, 33, 33, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 124, 124, 33, 33, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 125, 41, 44, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 109, 97, 114, 107, 101, 114, 40, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 41, 44, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 101, 103, 109, 101, 110, 116, 40, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 91, 48, 93, 44, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 91, 49, 93, 41, 59, 108, 101, 116, 32, 105, 61, 97, 116, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 109, 111, 100, 101, 40, 41, 41, 44, 99, 61, 105, 61, 61, 61, 34, 114, 101, 118, 101, 114, 115, 101, 34, 124, 124, 105, 61, 61, 61, 34, 114, 101, 118, 101, 114, 115, 101, 45, 98, 111, 117, 110, 99, 101, 34, 63, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 91, 49, 93, 58, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 91, 48, 93, 59, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 102, 114, 97, 109, 101, 40, 99, 41, 125, 115, 101, 116, 84, 105, 109, 101, 111, 117, 116, 40, 40, 41, 61, 62, 123, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 102, 114, 97, 109, 101, 34, 44, 99, 117, 114, 114, 101, 110, 116, 70, 114, 97, 109, 101, 58, 116, 104, 105, 115, 46, 99, 117, 114, 114, 101, 110, 116, 70, 114, 97, 109, 101, 125, 41, 125, 44, 48, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 116, 104, 105, 115, 46, 95, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 100, 63, 116, 104, 105, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 111, 97, 100, 40, 116, 104, 105, 115, 46, 95, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 100, 41, 38, 38, 116, 104, 105, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 114, 116, 40, 41, 38, 38, 116, 104, 105, 115, 46, 95, 115, 116, 97, 114, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 58, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 105, 115, 95, 112, 108, 97, 121, 105, 110, 103, 40, 41, 38, 38, 116, 104, 105, 115, 46, 95, 115, 116, 97, 114, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 44, 103, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 38, 38, 40, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 102, 114, 101, 101, 122, 101, 79, 110, 79, 102, 102, 115, 99, 114, 101, 101, 110, 38, 38, 40, 98, 46, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 44, 116, 104, 105, 115, 41, 44, 82, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 124, 124, 116, 104, 105, 115, 46, 102, 114, 101, 101, 122, 101, 40, 41, 41, 44, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 97, 117, 116, 111, 82, 101, 115, 105, 122, 101, 38, 38, 121, 46, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 44, 116, 104, 105, 115, 41, 41, 125, 101, 108, 115, 101, 32, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 41, 125, 95, 108, 111, 97, 100, 70, 114, 111, 109, 83, 114, 99, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 102, 101, 116, 99, 104, 68, 97, 116, 97, 40, 116, 41, 46, 116, 104, 101, 110, 40, 101, 61, 62, 116, 104, 105, 115, 46, 95, 108, 111, 97, 100, 70, 114, 111, 109, 68, 97, 116, 97, 40, 101, 41, 41, 46, 99, 97, 116, 99, 104, 40, 101, 61, 62, 116, 104, 105, 115, 46, 95, 100, 105, 115, 112, 97, 116, 99, 104, 69, 114, 114, 111, 114, 40, 96, 70, 97, 105, 108, 101, 100, 32, 116, 111, 32, 108, 111, 97, 100, 32, 97, 110, 105, 109, 97, 116, 105, 111, 110, 32, 100, 97, 116, 97, 32, 102, 114, 111, 109, 32, 85, 82, 76, 58, 32, 36, 123, 116, 125, 46, 32, 36, 123, 101, 125, 96, 41, 41, 125, 103, 101, 116, 32, 98, 117, 102, 102, 101, 114, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 103, 101, 116, 95, 112, 105, 120, 101, 108, 95, 98, 117, 102, 102, 101, 114, 40, 41, 58, 110, 117, 108, 108, 125, 103, 101, 116, 32, 97, 99, 116, 105, 118, 101, 65, 110, 105, 109, 97, 116, 105, 111, 110, 73, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 105, 100, 40, 41, 63, 63, 118, 111, 105, 100, 32, 48, 125, 103, 101, 116, 32, 97, 99, 116, 105, 118, 101, 84, 104, 101, 109, 101, 73, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 116, 104, 101, 109, 101, 95, 105, 100, 40, 41, 63, 63, 118, 111, 105, 100, 32, 48, 125, 103, 101, 116, 32, 108, 97, 121, 111, 117, 116, 40, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 123, 97, 108, 105, 103, 110, 58, 91, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 108, 97, 121, 111, 117, 116, 95, 97, 108, 105, 103, 110, 95, 120, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 108, 97, 121, 111, 117, 116, 95, 97, 108, 105, 103, 110, 95, 121, 40, 41, 93, 44, 102, 105, 116, 58, 98, 116, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 108, 97, 121, 111, 117, 116, 95, 102, 105, 116, 40, 41, 41, 125, 125, 103, 101, 116, 32, 109, 97, 114, 107, 101, 114, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 99, 117, 114, 114, 101, 110, 116, 95, 109, 97, 114, 107, 101, 114, 40, 41, 63, 63, 34, 34, 125, 103, 101, 116, 32, 109, 97, 110, 105, 102, 101, 115, 116, 40, 41, 123, 116, 114, 121, 123, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 109, 97, 110, 105, 102, 101, 115, 116, 95, 115, 116, 114, 105, 110, 103, 40, 41, 59, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 124, 124, 33, 116, 41, 114, 101, 116, 117, 114, 110, 32, 110, 117, 108, 108, 59, 108, 101, 116, 32, 101, 61, 74, 83, 79, 78, 46, 112, 97, 114, 115, 101, 40, 116, 41, 59, 114, 101, 116, 117, 114, 110, 32, 79, 98, 106, 101, 99, 116, 46, 107, 101, 121, 115, 40, 101, 41, 46, 108, 101, 110, 103, 116, 104, 61, 61, 61, 48, 63, 110, 117, 108, 108, 58, 101, 125, 99, 97, 116, 99, 104, 123, 114, 101, 116, 117, 114, 110, 32, 110, 117, 108, 108, 125, 125, 103, 101, 116, 32, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 125, 103, 101, 116, 32, 115, 101, 103, 109, 101, 110, 116, 40, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 91, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 103, 109, 101, 110, 116, 95, 115, 116, 97, 114, 116, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 103, 109, 101, 110, 116, 95, 101, 110, 100, 40, 41, 93, 125, 103, 101, 116, 32, 108, 111, 111, 112, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 108, 111, 111, 112, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 40, 41, 63, 63, 33, 49, 125, 103, 101, 116, 32, 109, 111, 100, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 97, 116, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 109, 111, 100, 101, 40, 41, 41, 58, 34, 102, 111, 114, 119, 97, 114, 100, 34, 125, 103, 101, 116, 32, 105, 115, 70, 114, 111, 122, 101, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 105, 115, 70, 114, 111, 122, 101, 110, 125, 103, 101, 116, 32, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 125, 103, 101, 116, 32, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 63, 63, 34, 34, 125, 103, 101, 116, 32, 97, 117, 116, 111, 112, 108, 97, 121, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 97, 117, 116, 111, 112, 108, 97, 121, 40, 41, 63, 63, 33, 49, 125, 103, 101, 116, 32, 117, 115, 101, 70, 114, 97, 109, 101, 73, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 117, 115, 101, 95, 102, 114, 97, 109, 101, 95, 105, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 41, 63, 63, 33, 49, 125, 103, 101, 116, 32, 115, 112, 101, 101, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 112, 101, 101, 100, 40, 41, 63, 63, 48, 125, 103, 101, 116, 32, 105, 115, 82, 101, 97, 100, 121, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 125, 103, 101, 116, 32, 105, 115, 76, 111, 97, 100, 101, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 105, 115, 95, 108, 111, 97, 100, 101, 100, 40, 41, 63, 63, 33, 49, 125, 103, 101, 116, 32, 105, 115, 80, 108, 97, 121, 105, 110, 103, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 105, 115, 95, 112, 108, 97, 121, 105, 110, 103, 40, 41, 63, 63, 33, 49, 125, 103, 101, 116, 32, 105, 115, 80, 97, 117, 115, 101, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 105, 115, 95, 112, 97, 117, 115, 101, 100, 40, 41, 63, 63, 33, 49, 125, 103, 101, 116, 32, 105, 115, 83, 116, 111, 112, 112, 101, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 105, 115, 95, 115, 116, 111, 112, 112, 101, 100, 40, 41, 63, 63, 33, 49, 125, 103, 101, 116, 32, 99, 117, 114, 114, 101, 110, 116, 70, 114, 97, 109, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 77, 97, 116, 104, 46, 114, 111, 117, 110, 100, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 99, 117, 114, 114, 101, 110, 116, 95, 102, 114, 97, 109, 101, 40, 41, 42, 49, 48, 48, 41, 47, 49, 48, 48, 58, 48, 125, 103, 101, 116, 32, 108, 111, 111, 112, 67, 111, 117, 110, 116, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 99, 117, 114, 114, 101, 110, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 41, 63, 63, 48, 125, 103, 101, 116, 32, 116, 111, 116, 97, 108, 70, 114, 97, 109, 101, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 116, 111, 116, 97, 108, 95, 102, 114, 97, 109, 101, 115, 40, 41, 63, 63, 48, 125, 103, 101, 116, 32, 100, 117, 114, 97, 116, 105, 111, 110, 40, 41, 123, 114, 101, 116, 117, 114, 110, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 100, 117, 114, 97, 116, 105, 111, 110, 40, 41, 63, 63, 48, 41, 47, 49, 101, 51, 125, 103, 101, 116, 32, 99, 97, 110, 118, 97, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 125, 108, 111, 97, 100, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 40, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 44, 116, 104, 105, 115, 46, 95, 99, 108, 101, 97, 110, 117, 112, 67, 97, 110, 118, 97, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 105, 115, 70, 114, 111, 122, 101, 110, 61, 33, 49, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 97, 117, 116, 111, 112, 108, 97, 121, 40, 116, 46, 97, 117, 116, 111, 112, 108, 97, 121, 63, 63, 33, 49, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 108, 111, 111, 112, 40, 116, 46, 108, 111, 111, 112, 63, 63, 33, 49, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 116, 46, 108, 111, 111, 112, 67, 111, 117, 110, 116, 63, 63, 48, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 109, 111, 100, 101, 40, 72, 40, 116, 46, 109, 111, 100, 101, 63, 63, 34, 102, 111, 114, 119, 97, 114, 100, 34, 41, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 112, 101, 101, 100, 40, 116, 46, 115, 112, 101, 101, 100, 63, 63, 49, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 117, 115, 101, 95, 102, 114, 97, 109, 101, 95, 105, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 116, 46, 117, 115, 101, 70, 114, 97, 109, 101, 73, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 63, 63, 33, 48, 41, 44, 116, 46, 115, 101, 103, 109, 101, 110, 116, 38, 38, 116, 46, 115, 101, 103, 109, 101, 110, 116, 46, 108, 101, 110, 103, 116, 104, 61, 61, 61, 50, 63, 40, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 61, 91, 116, 46, 115, 101, 103, 109, 101, 110, 116, 91, 48, 93, 44, 116, 46, 115, 101, 103, 109, 101, 110, 116, 91, 49, 93, 93, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 101, 103, 109, 101, 110, 116, 40, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 91, 48, 93, 44, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 91, 49, 93, 41, 41, 58, 40, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 61, 110, 117, 108, 108, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 99, 108, 101, 97, 114, 95, 115, 101, 103, 109, 101, 110, 116, 40, 41, 41, 44, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 61, 116, 46, 109, 97, 114, 107, 101, 114, 63, 63, 34, 34, 44, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 63, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 109, 97, 114, 107, 101, 114, 40, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 41, 58, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 99, 108, 101, 97, 114, 95, 109, 97, 114, 107, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 108, 97, 121, 111, 117, 116, 40, 116, 46, 108, 97, 121, 111, 117, 116, 63, 46, 102, 105, 116, 63, 63, 34, 99, 111, 110, 116, 97, 105, 110, 34, 44, 116, 46, 108, 97, 121, 111, 117, 116, 63, 46, 97, 108, 105, 103, 110, 63, 46, 91, 48, 93, 63, 63, 46, 53, 44, 116, 46, 108, 97, 121, 111, 117, 116, 63, 46, 97, 108, 105, 103, 110, 63, 46, 91, 49, 93, 63, 63, 46, 53, 41, 44, 116, 46, 100, 97, 116, 97, 63, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 63, 116, 104, 105, 115, 46, 95, 108, 111, 97, 100, 70, 114, 111, 109, 68, 97, 116, 97, 40, 116, 46, 100, 97, 116, 97, 41, 58, 116, 104, 105, 115, 46, 95, 112, 101, 110, 100, 105, 110, 103, 76, 111, 97, 100, 61, 123, 100, 97, 116, 97, 58, 116, 46, 100, 97, 116, 97, 125, 58, 116, 46, 115, 114, 99, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 63, 116, 104, 105, 115, 46, 95, 108, 111, 97, 100, 70, 114, 111, 109, 83, 114, 99, 40, 116, 46, 115, 114, 99, 41, 58, 116, 104, 105, 115, 46, 95, 112, 101, 110, 100, 105, 110, 103, 76, 111, 97, 100, 61, 123, 115, 114, 99, 58, 116, 46, 115, 114, 99, 125, 41, 44, 116, 46, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 38, 38, 116, 104, 105, 115, 46, 115, 101, 116, 66, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 40, 116, 46, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 41, 41, 125, 95, 100, 114, 97, 119, 40, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 124, 124, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 61, 61, 61, 110, 117, 108, 108, 124, 124, 40, 33, 116, 104, 105, 115, 46, 95, 99, 111, 110, 116, 101, 120, 116, 38, 38, 34, 103, 101, 116, 67, 111, 110, 116, 101, 120, 116, 34, 105, 110, 32, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 38, 38, 116, 121, 112, 101, 111, 102, 32, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 103, 101, 116, 67, 111, 110, 116, 101, 120, 116, 61, 61, 34, 102, 117, 110, 99, 116, 105, 111, 110, 34, 38, 38, 40, 116, 121, 112, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 60, 34, 117, 34, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 124, 124, 116, 121, 112, 101, 111, 102, 32, 79, 102, 102, 115, 99, 114, 101, 101, 110, 67, 97, 110, 118, 97, 115, 60, 34, 117, 34, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 79, 102, 102, 115, 99, 114, 101, 101, 110, 67, 97, 110, 118, 97, 115, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 111, 110, 116, 101, 120, 116, 61, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 103, 101, 116, 67, 111, 110, 116, 101, 120, 116, 40, 34, 50, 100, 34, 41, 41, 44, 33, 116, 104, 105, 115, 46, 95, 99, 111, 110, 116, 101, 120, 116, 41, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 103, 101, 116, 95, 112, 105, 120, 101, 108, 95, 98, 117, 102, 102, 101, 114, 40, 41, 44, 101, 61, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 119, 105, 100, 116, 104, 44, 114, 61, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 104, 101, 105, 103, 104, 116, 44, 111, 61, 101, 42, 114, 42, 88, 59, 105, 102, 40, 116, 46, 98, 121, 116, 101, 76, 101, 110, 103, 116, 104, 33, 61, 61, 111, 41, 123, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 69, 120, 112, 101, 99, 116, 101, 100, 66, 117, 102, 102, 101, 114, 83, 105, 122, 101, 61, 61, 61, 111, 63, 116, 104, 105, 115, 46, 95, 98, 117, 102, 102, 101, 114, 77, 105, 115, 109, 97, 116, 99, 104, 67, 111, 117, 110, 116, 43, 61, 49, 58, 40, 116, 104, 105, 115, 46, 95, 98, 117, 102, 102, 101, 114, 77, 105, 115, 109, 97, 116, 99, 104, 67, 111, 117, 110, 116, 61, 49, 44, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 69, 120, 112, 101, 99, 116, 101, 100, 66, 117, 102, 102, 101, 114, 83, 105, 122, 101, 61, 111, 41, 44, 116, 104, 105, 115, 46, 95, 98, 117, 102, 102, 101, 114, 77, 105, 115, 109, 97, 116, 99, 104, 67, 111, 117, 110, 116, 61, 61, 61, 49, 48, 38, 38, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 96, 91, 100, 111, 116, 108, 111, 116, 116, 105, 101, 45, 119, 101, 98, 93, 32, 80, 101, 114, 115, 105, 115, 116, 101, 110, 116, 32, 98, 117, 102, 102, 101, 114, 32, 115, 105, 122, 101, 32, 109, 105, 115, 109, 97, 116, 99, 104, 32, 100, 101, 116, 101, 99, 116, 101, 100, 46, 32, 69, 120, 112, 101, 99, 116, 101, 100, 32, 36, 123, 111, 125, 32, 98, 121, 116, 101, 115, 32, 102, 111, 114, 32, 99, 97, 110, 118, 97, 115, 32, 36, 123, 101, 125, 120, 36, 123, 114, 125, 44, 32, 98, 117, 116, 32, 103, 111, 116, 32, 36, 123, 116, 46, 98, 121, 116, 101, 76, 101, 110, 103, 116, 104, 125, 32, 98, 121, 116, 101, 115, 46, 32, 84, 104, 105, 115, 32, 109, 97, 121, 32, 105, 110, 100, 105, 99, 97, 116, 101, 32, 97, 32, 87, 65, 83, 77, 32, 109, 101, 109, 111, 114, 121, 32, 97, 108, 108, 111, 99, 97, 116, 105, 111, 110, 32, 105, 115, 115, 117, 101, 32, 111, 114, 32, 105, 110, 118, 97, 108, 105, 100, 32, 99, 97, 110, 118, 97, 115, 32, 100, 105, 109, 101, 110, 115, 105, 111, 110, 115, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 125, 116, 104, 105, 115, 46, 95, 98, 117, 102, 102, 101, 114, 77, 105, 115, 109, 97, 116, 99, 104, 67, 111, 117, 110, 116, 61, 48, 44, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 69, 120, 112, 101, 99, 116, 101, 100, 66, 117, 102, 102, 101, 114, 83, 105, 122, 101, 61, 111, 59, 108, 101, 116, 32, 105, 61, 116, 104, 105, 115, 46, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 59, 105, 102, 40, 33, 40, 105, 33, 61, 61, 110, 117, 108, 108, 38, 38, 105, 46, 119, 105, 100, 116, 104, 61, 61, 61, 101, 38, 38, 105, 46, 104, 101, 105, 103, 104, 116, 61, 61, 61, 114, 38, 38, 105, 46, 100, 97, 116, 97, 46, 98, 121, 116, 101, 76, 101, 110, 103, 116, 104, 61, 61, 61, 111, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 66, 117, 102, 102, 101, 114, 61, 61, 61, 116, 46, 98, 117, 102, 102, 101, 114, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 66, 121, 116, 101, 79, 102, 102, 115, 101, 116, 61, 61, 61, 116, 46, 98, 121, 116, 101, 79, 102, 102, 115, 101, 116, 41, 41, 123, 105, 102, 40, 116, 121, 112, 101, 111, 102, 32, 73, 109, 97, 103, 101, 68, 97, 116, 97, 62, 34, 117, 34, 41, 116, 104, 105, 115, 46, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 61, 116, 104, 105, 115, 46, 95, 99, 111, 110, 116, 101, 120, 116, 46, 99, 114, 101, 97, 116, 101, 73, 109, 97, 103, 101, 68, 97, 116, 97, 40, 101, 44, 114, 41, 59, 101, 108, 115, 101, 123, 108, 101, 116, 32, 100, 61, 110, 101, 119, 32, 85, 105, 110, 116, 56, 67, 108, 97, 109, 112, 101, 100, 65, 114, 114, 97, 121, 40, 116, 46, 98, 117, 102, 102, 101, 114, 44, 116, 46, 98, 121, 116, 101, 79, 102, 102, 115, 101, 116, 44, 116, 46, 98, 121, 116, 101, 76, 101, 110, 103, 116, 104, 41, 59, 116, 104, 105, 115, 46, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 61, 110, 101, 119, 32, 73, 109, 97, 103, 101, 68, 97, 116, 97, 40, 100, 44, 101, 44, 114, 41, 125, 116, 104, 105, 115, 46, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 66, 117, 102, 102, 101, 114, 61, 116, 46, 98, 117, 102, 102, 101, 114, 44, 116, 104, 105, 115, 46, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 66, 121, 116, 101, 79, 102, 102, 115, 101, 116, 61, 116, 46, 98, 121, 116, 101, 79, 102, 102, 115, 101, 116, 125, 105, 102, 40, 116, 121, 112, 101, 111, 102, 32, 73, 109, 97, 103, 101, 68, 97, 116, 97, 62, 34, 117, 34, 41, 123, 108, 101, 116, 32, 100, 61, 110, 101, 119, 32, 85, 105, 110, 116, 56, 67, 108, 97, 109, 112, 101, 100, 65, 114, 114, 97, 121, 40, 116, 46, 98, 117, 102, 102, 101, 114, 44, 116, 46, 98, 121, 116, 101, 79, 102, 102, 115, 101, 116, 44, 116, 46, 98, 121, 116, 101, 76, 101, 110, 103, 116, 104, 41, 59, 116, 104, 105, 115, 46, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 46, 100, 97, 116, 97, 46, 115, 101, 116, 40, 100, 41, 125, 116, 104, 105, 115, 46, 95, 99, 111, 110, 116, 101, 120, 116, 46, 112, 117, 116, 73, 109, 97, 103, 101, 68, 97, 116, 97, 40, 116, 104, 105, 115, 46, 95, 99, 97, 99, 104, 101, 100, 73, 109, 97, 103, 101, 68, 97, 116, 97, 44, 48, 44, 48, 41, 125, 95, 99, 108, 101, 97, 110, 117, 112, 67, 97, 110, 118, 97, 115, 40, 41, 123, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 38, 38, 103, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 38, 38, 40, 98, 46, 117, 110, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 44, 121, 46, 117, 110, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 44, 116, 104, 105, 115, 46, 95, 99, 108, 101, 97, 110, 117, 112, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 41, 125, 95, 105, 110, 105, 116, 105, 97, 108, 105, 122, 101, 67, 97, 110, 118, 97, 115, 40, 41, 123, 116, 104, 105, 115, 46, 95, 115, 101, 116, 117, 112, 82, 101, 110, 100, 101, 114, 101, 114, 79, 110, 67, 97, 110, 118, 97, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 38, 38, 103, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 38, 38, 116, 104, 105, 115, 46, 105, 115, 76, 111, 97, 100, 101, 100, 38, 38, 40, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 102, 114, 101, 101, 122, 101, 79, 110, 79, 102, 102, 115, 99, 114, 101, 101, 110, 38, 38, 40, 98, 46, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 44, 116, 104, 105, 115, 41, 44, 82, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 124, 124, 116, 104, 105, 115, 46, 102, 114, 101, 101, 122, 101, 40, 41, 41, 44, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 97, 117, 116, 111, 82, 101, 115, 105, 122, 101, 38, 38, 121, 46, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 44, 116, 104, 105, 115, 41, 44, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 38, 38, 116, 104, 105, 115, 46, 95, 115, 101, 116, 117, 112, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 38, 38, 116, 104, 105, 115, 46, 105, 115, 76, 111, 97, 100, 101, 100, 38, 38, 116, 104, 105, 115, 46, 95, 115, 101, 116, 117, 112, 84, 97, 114, 103, 101, 116, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 119, 105, 100, 116, 104, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 104, 101, 105, 103, 104, 116, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 41, 125, 95, 115, 101, 116, 117, 112, 82, 101, 110, 100, 101, 114, 101, 114, 79, 110, 67, 97, 110, 118, 97, 115, 40, 41, 123, 116, 104, 105, 115, 46, 95, 99, 111, 110, 116, 101, 120, 116, 61, 110, 117, 108, 108, 125, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 123, 116, 104, 105, 115, 46, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 73, 100, 33, 61, 61, 110, 117, 108, 108, 38, 38, 40, 116, 104, 105, 115, 46, 95, 102, 114, 97, 109, 101, 77, 97, 110, 97, 103, 101, 114, 46, 99, 97, 110, 99, 101, 108, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 104, 105, 115, 46, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 73, 100, 41, 44, 116, 104, 105, 115, 46, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 73, 100, 61, 110, 117, 108, 108, 41, 44, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 70, 114, 97, 109, 101, 84, 105, 109, 101, 61, 110, 117, 108, 108, 125, 95, 115, 116, 97, 114, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 123, 116, 104, 105, 115, 46, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 73, 100, 61, 61, 61, 110, 117, 108, 108, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 38, 38, 33, 116, 104, 105, 115, 46, 95, 105, 115, 70, 114, 111, 122, 101, 110, 38, 38, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 105, 115, 95, 112, 108, 97, 121, 105, 110, 103, 40, 41, 124, 124, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 73, 100, 61, 116, 104, 105, 115, 46, 95, 102, 114, 97, 109, 101, 77, 97, 110, 97, 103, 101, 114, 46, 114, 101, 113, 117, 101, 115, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 41, 41, 125, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 123, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 59, 114, 101, 116, 117, 114, 110, 125, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 105, 115, 95, 112, 108, 97, 121, 105, 110, 103, 40, 41, 38, 38, 33, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 41, 123, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 59, 114, 101, 116, 117, 114, 110, 125, 116, 114, 121, 123, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 70, 114, 97, 109, 101, 84, 105, 109, 101, 33, 61, 61, 110, 117, 108, 108, 63, 116, 45, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 70, 114, 97, 109, 101, 84, 105, 109, 101, 58, 48, 59, 116, 104, 105, 115, 46, 95, 108, 97, 115, 116, 70, 114, 97, 109, 101, 84, 105, 109, 101, 61, 116, 59, 108, 101, 116, 32, 114, 61, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 63, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 109, 95, 116, 105, 99, 107, 40, 101, 41, 58, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 116, 105, 99, 107, 40, 101, 41, 59, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 63, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 83, 109, 69, 118, 101, 110, 116, 115, 40, 41, 58, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 41, 44, 114, 38, 38, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 116, 104, 105, 115, 46, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 73, 100, 61, 116, 104, 105, 115, 46, 95, 102, 114, 97, 109, 101, 77, 97, 110, 97, 103, 101, 114, 46, 114, 101, 113, 117, 101, 115, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 40, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 41, 125, 99, 97, 116, 99, 104, 40, 101, 41, 123, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 34, 69, 114, 114, 111, 114, 32, 105, 110, 32, 97, 110, 105, 109, 97, 116, 105, 111, 110, 32, 102, 114, 97, 109, 101, 58, 34, 44, 101, 41, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 114, 101, 110, 100, 101, 114, 69, 114, 114, 111, 114, 34, 44, 101, 114, 114, 111, 114, 58, 101, 125, 41, 44, 101, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 87, 101, 98, 65, 115, 115, 101, 109, 98, 108, 121, 46, 82, 117, 110, 116, 105, 109, 101, 69, 114, 114, 111, 114, 38, 38, 116, 104, 105, 115, 46, 100, 101, 115, 116, 114, 111, 121, 40, 41, 125, 125, 112, 108, 97, 121, 40, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 124, 124, 33, 116, 104, 105, 115, 46, 105, 115, 76, 111, 97, 100, 101, 100, 41, 114, 101, 116, 117, 114, 110, 59, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 112, 108, 97, 121, 40, 41, 59, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 41, 44, 40, 116, 124, 124, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 105, 115, 95, 112, 108, 97, 121, 105, 110, 103, 40, 41, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 105, 115, 70, 114, 111, 122, 101, 110, 61, 33, 49, 44, 116, 104, 105, 115, 46, 95, 115, 116, 97, 114, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 38, 38, 103, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 38, 38, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 102, 114, 101, 101, 122, 101, 79, 110, 79, 102, 102, 115, 99, 114, 101, 101, 110, 38, 38, 33, 82, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 38, 38, 116, 104, 105, 115, 46, 102, 114, 101, 101, 122, 101, 40, 41, 125, 112, 97, 117, 115, 101, 40, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 112, 97, 117, 115, 101, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 41, 125, 115, 116, 111, 112, 40, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 116, 111, 112, 40, 41, 59, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 44, 116, 38, 38, 40, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 102, 114, 97, 109, 101, 34, 44, 99, 117, 114, 114, 101, 110, 116, 70, 114, 97, 109, 101, 58, 116, 104, 105, 115, 46, 99, 117, 114, 114, 101, 110, 116, 70, 114, 97, 109, 101, 125, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 41, 125, 115, 101, 116, 70, 114, 97, 109, 101, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 59, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 102, 114, 97, 109, 101, 40, 116, 41, 41, 123, 108, 101, 116, 32, 114, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 59, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 41, 44, 114, 38, 38, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 125, 125, 115, 101, 116, 83, 112, 101, 101, 100, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 112, 101, 101, 100, 40, 116, 41, 125, 115, 101, 116, 66, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 41, 123, 105, 102, 40, 103, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 41, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 115, 116, 121, 108, 101, 46, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 61, 116, 59, 101, 108, 115, 101, 123, 108, 101, 116, 91, 101, 44, 114, 44, 111, 44, 105, 93, 61, 115, 116, 40, 116, 41, 59, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 40, 101, 44, 114, 44, 111, 44, 105, 41, 125, 116, 104, 105, 115, 46, 95, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 61, 116, 125, 125, 115, 101, 116, 76, 111, 111, 112, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 108, 111, 111, 112, 40, 116, 41, 125, 115, 101, 116, 76, 111, 111, 112, 67, 111, 117, 110, 116, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 108, 111, 111, 112, 95, 99, 111, 117, 110, 116, 40, 116, 41, 125, 115, 101, 116, 85, 115, 101, 70, 114, 97, 109, 101, 73, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 117, 115, 101, 95, 102, 114, 97, 109, 101, 95, 105, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 116, 41, 125, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 116, 44, 101, 41, 123, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 116, 44, 101, 41, 125, 114, 101, 109, 111, 118, 101, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 116, 44, 101, 41, 123, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 114, 101, 109, 111, 118, 101, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 116, 44, 101, 41, 125, 100, 101, 115, 116, 114, 111, 121, 40, 41, 123, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 44, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 61, 33, 49, 44, 116, 104, 105, 115, 46, 95, 99, 108, 101, 97, 110, 117, 112, 67, 97, 110, 118, 97, 115, 40, 41, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 59, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 110, 117, 108, 108, 44, 116, 104, 105, 115, 46, 95, 99, 111, 110, 116, 101, 120, 116, 61, 110, 117, 108, 108, 44, 116, 41, 116, 114, 121, 123, 116, 46, 102, 114, 101, 101, 40, 41, 125, 99, 97, 116, 99, 104, 40, 101, 41, 123, 99, 111, 110, 115, 111, 108, 101, 46, 119, 97, 114, 110, 40, 34, 91, 100, 111, 116, 108, 111, 116, 116, 105, 101, 45, 119, 101, 98, 93, 32, 69, 114, 114, 111, 114, 32, 102, 114, 101, 101, 105, 110, 103, 32, 119, 97, 115, 109, 32, 99, 111, 114, 101, 32, 100, 117, 114, 105, 110, 103, 32, 100, 101, 115, 116, 114, 111, 121, 58, 34, 44, 101, 41, 125, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 100, 101, 115, 116, 114, 111, 121, 34, 125, 41, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 114, 101, 109, 111, 118, 101, 65, 108, 108, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 99, 108, 101, 97, 110, 117, 112, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 125, 102, 114, 101, 101, 122, 101, 40, 41, 123, 116, 104, 105, 115, 46, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 73, 100, 33, 61, 61, 110, 117, 108, 108, 38, 38, 40, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 44, 116, 104, 105, 115, 46, 95, 105, 115, 70, 114, 111, 122, 101, 110, 61, 33, 48, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 102, 114, 101, 101, 122, 101, 34, 125, 41, 41, 125, 117, 110, 102, 114, 101, 101, 122, 101, 40, 41, 123, 116, 104, 105, 115, 46, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 70, 114, 97, 109, 101, 73, 100, 61, 61, 61, 110, 117, 108, 108, 38, 38, 40, 116, 104, 105, 115, 46, 95, 105, 115, 70, 114, 111, 122, 101, 110, 61, 33, 49, 44, 116, 104, 105, 115, 46, 95, 101, 118, 101, 110, 116, 77, 97, 110, 97, 103, 101, 114, 46, 100, 105, 115, 112, 97, 116, 99, 104, 40, 123, 116, 121, 112, 101, 58, 34, 117, 110, 102, 114, 101, 101, 122, 101, 34, 125, 41, 44, 116, 104, 105, 115, 46, 95, 115, 116, 97, 114, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 41, 125, 114, 101, 115, 105, 122, 101, 40, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 124, 124, 33, 116, 104, 105, 115, 46, 105, 115, 76, 111, 97, 100, 101, 100, 124, 124, 33, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 114, 101, 116, 117, 114, 110, 59, 105, 102, 40, 103, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 41, 123, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 100, 101, 118, 105, 99, 101, 80, 105, 120, 101, 108, 82, 97, 116, 105, 111, 124, 124, 119, 105, 110, 100, 111, 119, 46, 100, 101, 118, 105, 99, 101, 80, 105, 120, 101, 108, 82, 97, 116, 105, 111, 124, 124, 49, 44, 123, 104, 101, 105, 103, 104, 116, 58, 114, 44, 119, 105, 100, 116, 104, 58, 111, 125, 61, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 103, 101, 116, 66, 111, 117, 110, 100, 105, 110, 103, 67, 108, 105, 101, 110, 116, 82, 101, 99, 116, 40, 41, 59, 114, 33, 61, 61, 48, 38, 38, 111, 33, 61, 61, 48, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 119, 105, 100, 116, 104, 61, 111, 42, 101, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 104, 101, 105, 103, 104, 116, 61, 114, 42, 101, 41, 125, 116, 104, 105, 115, 46, 95, 115, 101, 116, 117, 112, 84, 97, 114, 103, 101, 116, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 119, 105, 100, 116, 104, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 104, 101, 105, 103, 104, 116, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 41, 125, 115, 101, 116, 67, 97, 110, 118, 97, 115, 40, 116, 41, 123, 105, 102, 40, 33, 40, 33, 116, 124, 124, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 61, 61, 61, 116, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 38, 38, 116, 104, 105, 115, 46, 95, 99, 108, 101, 97, 110, 117, 112, 67, 97, 110, 118, 97, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 61, 116, 44, 116, 104, 105, 115, 46, 95, 105, 110, 105, 116, 105, 97, 108, 105, 122, 101, 67, 97, 110, 118, 97, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 112, 101, 110, 100, 105, 110, 103, 76, 111, 97, 100, 41, 41, 123, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 112, 101, 110, 100, 105, 110, 103, 76, 111, 97, 100, 59, 116, 104, 105, 115, 46, 95, 112, 101, 110, 100, 105, 110, 103, 76, 111, 97, 100, 61, 110, 117, 108, 108, 44, 101, 46, 100, 97, 116, 97, 63, 116, 104, 105, 115, 46, 95, 108, 111, 97, 100, 70, 114, 111, 109, 68, 97, 116, 97, 40, 101, 46, 100, 97, 116, 97, 41, 58, 101, 46, 115, 114, 99, 38, 38, 116, 104, 105, 115, 46, 95, 108, 111, 97, 100, 70, 114, 111, 109, 83, 114, 99, 40, 101, 46, 115, 114, 99, 41, 125, 125, 115, 101, 116, 84, 114, 97, 110, 115, 102, 111, 114, 109, 40, 116, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 116, 114, 97, 110, 115, 102, 111, 114, 109, 40, 110, 101, 119, 32, 70, 108, 111, 97, 116, 51, 50, 65, 114, 114, 97, 121, 40, 116, 41, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 38, 38, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 101, 125, 103, 101, 116, 84, 114, 97, 110, 115, 102, 111, 114, 109, 40, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 103, 101, 116, 95, 116, 114, 97, 110, 115, 102, 111, 114, 109, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 65, 114, 114, 97, 121, 46, 102, 114, 111, 109, 40, 116, 41, 125, 115, 101, 116, 83, 101, 103, 109, 101, 110, 116, 40, 116, 44, 101, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 40, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 61, 91, 116, 44, 101, 93, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 101, 103, 109, 101, 110, 116, 40, 116, 44, 101, 41, 41, 125, 114, 101, 115, 101, 116, 83, 101, 103, 109, 101, 110, 116, 40, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 40, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 61, 110, 117, 108, 108, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 99, 108, 101, 97, 114, 95, 115, 101, 103, 109, 101, 110, 116, 40, 41, 41, 125, 115, 101, 116, 77, 111, 100, 101, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 109, 111, 100, 101, 40, 72, 40, 116, 41, 41, 125, 115, 101, 116, 82, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 40, 116, 41, 123, 108, 101, 116, 123, 100, 101, 118, 105, 99, 101, 80, 105, 120, 101, 108, 82, 97, 116, 105, 111, 58, 101, 44, 102, 114, 101, 101, 122, 101, 79, 110, 79, 102, 102, 115, 99, 114, 101, 101, 110, 58, 114, 44, 113, 117, 97, 108, 105, 116, 121, 58, 111, 44, 46, 46, 46, 105, 125, 61, 116, 59, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 61, 123, 46, 46, 46, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 44, 46, 46, 46, 105, 44, 100, 101, 118, 105, 99, 101, 80, 105, 120, 101, 108, 82, 97, 116, 105, 111, 58, 101, 124, 124, 87, 40, 41, 44, 102, 114, 101, 101, 122, 101, 79, 110, 79, 102, 102, 115, 99, 114, 101, 101, 110, 58, 114, 63, 63, 33, 48, 44, 46, 46, 46, 111, 33, 61, 61, 118, 111, 105, 100, 32, 48, 38, 38, 123, 113, 117, 97, 108, 105, 116, 121, 58, 111, 125, 125, 44, 111, 33, 61, 61, 118, 111, 105, 100, 32, 48, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 113, 117, 97, 108, 105, 116, 121, 40, 111, 41, 44, 103, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 38, 38, 40, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 97, 117, 116, 111, 82, 101, 115, 105, 122, 101, 63, 121, 46, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 44, 116, 104, 105, 115, 41, 58, 121, 46, 117, 110, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 44, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 102, 114, 101, 101, 122, 101, 79, 110, 79, 102, 102, 115, 99, 114, 101, 101, 110, 63, 40, 98, 46, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 44, 116, 104, 105, 115, 41, 44, 82, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 124, 124, 116, 104, 105, 115, 46, 102, 114, 101, 101, 122, 101, 40, 41, 41, 58, 40, 98, 46, 117, 110, 111, 98, 115, 101, 114, 118, 101, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 44, 116, 104, 105, 115, 46, 95, 105, 115, 70, 114, 111, 122, 101, 110, 38, 38, 116, 104, 105, 115, 46, 117, 110, 102, 114, 101, 101, 122, 101, 40, 41, 41, 41, 125, 108, 111, 97, 100, 65, 110, 105, 109, 97, 116, 105, 111, 110, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 124, 124, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 105, 100, 40, 41, 61, 61, 61, 116, 124, 124, 33, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 41, 114, 101, 116, 117, 114, 110, 59, 116, 104, 105, 115, 46, 95, 115, 101, 116, 117, 112, 84, 97, 114, 103, 101, 116, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 119, 105, 100, 116, 104, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 104, 101, 105, 103, 104, 116, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 108, 111, 97, 100, 95, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 102, 114, 111, 109, 95, 105, 100, 40, 116, 41, 63, 40, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 113, 117, 97, 108, 105, 116, 121, 33, 61, 61, 118, 111, 105, 100, 32, 48, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 113, 117, 97, 108, 105, 116, 121, 40, 116, 104, 105, 115, 46, 95, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 46, 113, 117, 97, 108, 105, 116, 121, 41, 44, 116, 104, 105, 115, 46, 114, 101, 115, 105, 122, 101, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 80, 108, 97, 121, 101, 114, 69, 118, 101, 110, 116, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 41, 58, 116, 104, 105, 115, 46, 95, 100, 105, 115, 112, 97, 116, 99, 104, 69, 114, 114, 111, 114, 40, 96, 70, 97, 105, 108, 101, 100, 32, 116, 111, 32, 108, 111, 97, 100, 32, 97, 110, 105, 109, 97, 116, 105, 111, 110, 32, 119, 105, 116, 104, 32, 105, 100, 58, 32, 36, 123, 116, 125, 96, 41, 125, 115, 101, 116, 77, 97, 114, 107, 101, 114, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 59, 116, 104, 105, 115, 46, 109, 97, 114, 107, 101, 114, 115, 40, 41, 46, 115, 111, 109, 101, 40, 111, 61, 62, 111, 46, 110, 97, 109, 101, 61, 61, 61, 116, 41, 63, 40, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 61, 116, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 109, 97, 114, 107, 101, 114, 40, 116, 41, 41, 58, 40, 116, 104, 105, 115, 46, 95, 109, 97, 114, 107, 101, 114, 61, 34, 34, 44, 116, 104, 105, 115, 46, 95, 115, 101, 103, 109, 101, 110, 116, 61, 110, 117, 108, 108, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 99, 108, 101, 97, 114, 95, 109, 97, 114, 107, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 99, 108, 101, 97, 114, 95, 115, 101, 103, 109, 101, 110, 116, 40, 41, 41, 125, 109, 97, 114, 107, 101, 114, 115, 40, 41, 123, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 109, 97, 114, 107, 101, 114, 115, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 38, 38, 65, 114, 114, 97, 121, 46, 105, 115, 65, 114, 114, 97, 121, 40, 116, 41, 63, 116, 58, 91, 93, 125, 115, 101, 116, 84, 104, 101, 109, 101, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 116, 104, 101, 109, 101, 40, 116, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 38, 38, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 41, 44, 101, 125, 114, 101, 115, 101, 116, 84, 104, 101, 109, 101, 40, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 115, 101, 116, 95, 116, 104, 101, 109, 101, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 38, 38, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 41, 44, 116, 125, 115, 101, 116, 84, 104, 101, 109, 101, 68, 97, 116, 97, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 101, 61, 116, 121, 112, 101, 111, 102, 32, 116, 61, 61, 34, 115, 116, 114, 105, 110, 103, 34, 63, 116, 58, 74, 83, 79, 78, 46, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 116, 41, 44, 114, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 116, 104, 101, 109, 101, 95, 100, 97, 116, 97, 40, 101, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 38, 38, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 41, 44, 114, 125, 115, 101, 116, 83, 108, 111, 116, 115, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 108, 111, 116, 115, 95, 115, 116, 114, 40, 74, 83, 79, 78, 46, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 116, 41, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 41, 125, 95, 105, 115, 75, 101, 121, 102, 114, 97, 109, 101, 65, 114, 114, 97, 121, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 65, 114, 114, 97, 121, 46, 105, 115, 65, 114, 114, 97, 121, 40, 116, 41, 38, 38, 116, 46, 108, 101, 110, 103, 116, 104, 62, 48, 38, 38, 116, 121, 112, 101, 111, 102, 32, 116, 91, 48, 93, 61, 61, 34, 111, 98, 106, 101, 99, 116, 34, 38, 38, 116, 91, 48, 93, 33, 61, 61, 110, 117, 108, 108, 38, 38, 34, 116, 34, 105, 110, 32, 116, 91, 48, 93, 38, 38, 34, 115, 34, 105, 110, 32, 116, 91, 48, 93, 125, 103, 101, 116, 83, 108, 111, 116, 73, 100, 115, 40, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 91, 93, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 103, 101, 116, 95, 115, 108, 111, 116, 95, 105, 100, 115, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 65, 114, 114, 97, 121, 46, 105, 115, 65, 114, 114, 97, 121, 40, 116, 41, 63, 116, 58, 91, 93, 125, 103, 101, 116, 83, 108, 111, 116, 84, 121, 112, 101, 40, 116, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 103, 101, 116, 95, 115, 108, 111, 116, 95, 116, 121, 112, 101, 40, 116, 41, 59, 105, 102, 40, 101, 41, 114, 101, 116, 117, 114, 110, 32, 101, 125, 103, 101, 116, 83, 108, 111, 116, 40, 116, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 59, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 103, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 41, 59, 105, 102, 40, 101, 41, 116, 114, 121, 123, 114, 101, 116, 117, 114, 110, 32, 74, 83, 79, 78, 46, 112, 97, 114, 115, 101, 40, 101, 41, 125, 99, 97, 116, 99, 104, 123, 114, 101, 116, 117, 114, 110, 125, 125, 103, 101, 116, 83, 108, 111, 116, 115, 40, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 123, 125, 59, 116, 114, 121, 123, 114, 101, 116, 117, 114, 110, 32, 74, 83, 79, 78, 46, 112, 97, 114, 115, 101, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 103, 101, 116, 95, 115, 108, 111, 116, 115, 95, 115, 116, 114, 40, 41, 41, 125, 99, 97, 116, 99, 104, 123, 114, 101, 116, 117, 114, 110, 123, 125, 125, 125, 115, 101, 116, 67, 111, 108, 111, 114, 83, 108, 111, 116, 40, 116, 44, 101, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 114, 61, 116, 104, 105, 115, 46, 95, 105, 115, 75, 101, 121, 102, 114, 97, 109, 101, 65, 114, 114, 97, 121, 40, 101, 41, 44, 111, 61, 74, 83, 79, 78, 46, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 123, 97, 58, 114, 63, 49, 58, 48, 44, 107, 58, 101, 125, 41, 44, 105, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 44, 111, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 105, 125, 115, 101, 116, 83, 99, 97, 108, 97, 114, 83, 108, 111, 116, 40, 116, 44, 101, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 111, 61, 74, 83, 79, 78, 46, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 123, 97, 58, 116, 121, 112, 101, 111, 102, 32, 101, 33, 61, 34, 110, 117, 109, 98, 101, 114, 34, 63, 49, 58, 48, 44, 107, 58, 101, 125, 41, 44, 105, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 44, 111, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 105, 125, 115, 101, 116, 86, 101, 99, 116, 111, 114, 83, 108, 111, 116, 40, 116, 44, 101, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 114, 61, 116, 104, 105, 115, 46, 95, 105, 115, 75, 101, 121, 102, 114, 97, 109, 101, 65, 114, 114, 97, 121, 40, 101, 41, 44, 111, 61, 74, 83, 79, 78, 46, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 123, 97, 58, 114, 63, 49, 58, 48, 44, 107, 58, 101, 125, 41, 44, 105, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 44, 111, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 105, 125, 115, 101, 116, 71, 114, 97, 100, 105, 101, 110, 116, 83, 108, 111, 116, 40, 116, 44, 101, 44, 114, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 111, 61, 116, 104, 105, 115, 46, 95, 105, 115, 75, 101, 121, 102, 114, 97, 109, 101, 65, 114, 114, 97, 121, 40, 101, 41, 44, 105, 61, 74, 83, 79, 78, 46, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 123, 107, 58, 123, 97, 58, 111, 63, 49, 58, 48, 44, 107, 58, 101, 125, 44, 112, 58, 114, 125, 41, 44, 99, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 44, 105, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 99, 125, 115, 101, 116, 84, 101, 120, 116, 83, 108, 111, 116, 40, 116, 44, 101, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 114, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 103, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 41, 44, 111, 61, 101, 59, 105, 102, 40, 114, 41, 123, 108, 101, 116, 32, 100, 61, 74, 83, 79, 78, 46, 112, 97, 114, 115, 101, 40, 114, 41, 59, 105, 102, 40, 100, 38, 38, 34, 107, 34, 105, 110, 32, 100, 38, 38, 65, 114, 114, 97, 121, 46, 105, 115, 65, 114, 114, 97, 121, 40, 100, 46, 107, 41, 41, 123, 108, 101, 116, 32, 104, 61, 100, 46, 107, 91, 48, 93, 59, 34, 115, 34, 105, 110, 32, 104, 38, 38, 116, 121, 112, 101, 111, 102, 32, 104, 46, 115, 61, 61, 34, 111, 98, 106, 101, 99, 116, 34, 38, 38, 40, 111, 61, 123, 46, 46, 46, 104, 46, 115, 44, 46, 46, 46, 101, 125, 41, 125, 125, 108, 101, 116, 32, 105, 61, 74, 83, 79, 78, 46, 115, 116, 114, 105, 110, 103, 105, 102, 121, 40, 123, 97, 58, 48, 44, 107, 58, 91, 123, 116, 58, 48, 44, 115, 58, 111, 125, 93, 125, 41, 44, 99, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 115, 108, 111, 116, 95, 115, 116, 114, 40, 116, 44, 105, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 99, 125, 114, 101, 115, 101, 116, 83, 108, 111, 116, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 115, 101, 116, 95, 115, 108, 111, 116, 40, 116, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 101, 125, 99, 108, 101, 97, 114, 83, 108, 111, 116, 40, 116, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 101, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 99, 108, 101, 97, 114, 95, 115, 108, 111, 116, 40, 116, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 101, 125, 114, 101, 115, 101, 116, 83, 108, 111, 116, 115, 40, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 115, 101, 116, 95, 115, 108, 111, 116, 115, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 116, 125, 99, 108, 101, 97, 114, 83, 108, 111, 116, 115, 40, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 99, 108, 101, 97, 114, 95, 115, 108, 111, 116, 115, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 114, 101, 110, 100, 101, 114, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 114, 97, 119, 40, 41, 44, 116, 125, 115, 101, 116, 76, 97, 121, 111, 117, 116, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 108, 97, 121, 111, 117, 116, 40, 116, 46, 102, 105, 116, 63, 63, 34, 99, 111, 110, 116, 97, 105, 110, 34, 44, 116, 46, 97, 108, 105, 103, 110, 63, 46, 91, 48, 93, 63, 63, 46, 53, 44, 116, 46, 97, 108, 105, 103, 110, 63, 46, 91, 49, 93, 63, 63, 46, 53, 41, 125, 115, 101, 116, 86, 105, 101, 119, 112, 111, 114, 116, 40, 116, 44, 101, 44, 114, 44, 111, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 63, 33, 49, 58, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 101, 116, 95, 118, 105, 101, 119, 112, 111, 114, 116, 40, 116, 44, 101, 44, 114, 44, 111, 41, 125, 115, 116, 97, 116, 105, 99, 32, 115, 101, 116, 87, 97, 115, 109, 85, 114, 108, 40, 116, 41, 123, 71, 46, 115, 101, 116, 87, 97, 115, 109, 85, 114, 108, 40, 116, 41, 125, 115, 116, 97, 116, 105, 99, 32, 97, 115, 121, 110, 99, 32, 114, 101, 103, 105, 115, 116, 101, 114, 70, 111, 110, 116, 40, 116, 44, 101, 41, 123, 116, 114, 121, 123, 97, 119, 97, 105, 116, 32, 71, 46, 108, 111, 97, 100, 40, 41, 59, 108, 101, 116, 32, 114, 59, 105, 102, 40, 116, 121, 112, 101, 111, 102, 32, 101, 61, 61, 34, 115, 116, 114, 105, 110, 103, 34, 41, 123, 108, 101, 116, 32, 105, 61, 97, 119, 97, 105, 116, 32, 102, 101, 116, 99, 104, 40, 101, 41, 59, 105, 102, 40, 33, 105, 46, 111, 107, 41, 114, 101, 116, 117, 114, 110, 32, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 96, 70, 97, 105, 108, 101, 100, 32, 116, 111, 32, 102, 101, 116, 99, 104, 32, 102, 111, 110, 116, 32, 102, 114, 111, 109, 32, 85, 82, 76, 58, 32, 36, 123, 101, 125, 46, 32, 83, 116, 97, 116, 117, 115, 58, 32, 36, 123, 105, 46, 115, 116, 97, 116, 117, 115, 125, 96, 41, 44, 33, 49, 59, 114, 61, 110, 101, 119, 32, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 40, 97, 119, 97, 105, 116, 32, 105, 46, 97, 114, 114, 97, 121, 66, 117, 102, 102, 101, 114, 40, 41, 41, 125, 101, 108, 115, 101, 32, 101, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 63, 114, 61, 101, 58, 114, 61, 110, 101, 119, 32, 85, 105, 110, 116, 56, 65, 114, 114, 97, 121, 40, 101, 41, 59, 108, 101, 116, 32, 111, 61, 116, 116, 40, 116, 44, 114, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 124, 124, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 96, 70, 97, 105, 108, 101, 100, 32, 116, 111, 32, 114, 101, 103, 105, 115, 116, 101, 114, 32, 102, 111, 110, 116, 32, 34, 36, 123, 116, 125, 34, 46, 32, 70, 111, 110, 116, 32, 100, 97, 116, 97, 32, 109, 97, 121, 32, 98, 101, 32, 105, 110, 118, 97, 108, 105, 100, 46, 96, 41, 44, 111, 125, 99, 97, 116, 99, 104, 40, 114, 41, 123, 114, 101, 116, 117, 114, 110, 32, 99, 111, 110, 115, 111, 108, 101, 46, 101, 114, 114, 111, 114, 40, 96, 69, 114, 114, 111, 114, 32, 114, 101, 103, 105, 115, 116, 101, 114, 105, 110, 103, 32, 102, 111, 110, 116, 32, 34, 36, 123, 116, 125, 34, 58, 96, 44, 114, 41, 44, 33, 49, 125, 125, 97, 110, 105, 109, 97, 116, 105, 111, 110, 83, 105, 122, 101, 40, 41, 123, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 97, 110, 105, 109, 97, 116, 105, 111, 110, 95, 115, 105, 122, 101, 40, 41, 59, 114, 101, 116, 117, 114, 110, 123, 119, 105, 100, 116, 104, 58, 116, 63, 46, 91, 48, 93, 63, 63, 48, 44, 104, 101, 105, 103, 104, 116, 58, 116, 63, 46, 91, 49, 93, 63, 63, 48, 125, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 111, 97, 100, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 108, 111, 97, 100, 95, 102, 114, 111, 109, 95, 105, 100, 40, 116, 41, 58, 33, 49, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 111, 97, 100, 68, 97, 116, 97, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 108, 111, 97, 100, 40, 116, 41, 58, 33, 49, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 67, 111, 110, 102, 105, 103, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 111, 110, 102, 105, 103, 61, 116, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 114, 116, 40, 41, 123, 105, 102, 40, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 61, 61, 61, 110, 117, 108, 108, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 109, 95, 115, 116, 97, 114, 116, 40, 116, 104, 105, 115, 46, 95, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 111, 110, 102, 105, 103, 63, 46, 111, 112, 101, 110, 85, 114, 108, 80, 111, 108, 105, 99, 121, 63, 46, 114, 101, 113, 117, 105, 114, 101, 85, 115, 101, 114, 73, 110, 116, 101, 114, 97, 99, 116, 105, 111, 110, 63, 63, 33, 48, 44, 116, 104, 105, 115, 46, 95, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 111, 110, 102, 105, 103, 63, 46, 111, 112, 101, 110, 85, 114, 108, 80, 111, 108, 105, 99, 121, 63, 46, 119, 104, 105, 116, 101, 108, 105, 115, 116, 63, 63, 91, 93, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 83, 109, 69, 118, 101, 110, 116, 115, 40, 41, 44, 116, 38, 38, 40, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 61, 33, 48, 44, 116, 104, 105, 115, 46, 95, 115, 101, 116, 117, 112, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 115, 116, 97, 114, 116, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 41, 44, 116, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 111, 112, 40, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 33, 49, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 109, 95, 115, 116, 111, 112, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 114, 97, 105, 110, 83, 109, 69, 118, 101, 110, 116, 115, 40, 41, 44, 116, 38, 38, 40, 116, 104, 105, 115, 46, 95, 105, 115, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 82, 117, 110, 110, 105, 110, 103, 61, 33, 49, 44, 116, 104, 105, 115, 46, 95, 99, 108, 101, 97, 110, 117, 112, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 44, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 105, 115, 95, 112, 108, 97, 121, 105, 110, 103, 40, 41, 124, 124, 116, 104, 105, 115, 46, 95, 115, 116, 111, 112, 65, 110, 105, 109, 97, 116, 105, 111, 110, 76, 111, 111, 112, 40, 41, 41, 44, 116, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 83, 116, 97, 116, 117, 115, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 115, 116, 97, 116, 117, 115, 40, 41, 63, 63, 34, 34, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 67, 117, 114, 114, 101, 110, 116, 83, 116, 97, 116, 101, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 99, 117, 114, 114, 101, 110, 116, 95, 115, 116, 97, 116, 101, 40, 41, 63, 63, 34, 34, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 65, 99, 116, 105, 118, 101, 73, 100, 40, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 95, 105, 100, 40, 41, 63, 63, 34, 34, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 79, 118, 101, 114, 114, 105, 100, 101, 83, 116, 97, 116, 101, 40, 116, 44, 101, 61, 33, 49, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 111, 118, 101, 114, 114, 105, 100, 101, 95, 99, 117, 114, 114, 101, 110, 116, 95, 115, 116, 97, 116, 101, 40, 116, 44, 101, 41, 63, 63, 33, 49, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 103, 101, 116, 95, 115, 116, 97, 116, 101, 95, 109, 97, 99, 104, 105, 110, 101, 40, 116, 41, 63, 63, 34, 34, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 91, 93, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 109, 95, 102, 114, 97, 109, 101, 119, 111, 114, 107, 95, 115, 101, 116, 117, 112, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 65, 114, 114, 97, 121, 46, 105, 115, 65, 114, 114, 97, 121, 40, 116, 41, 63, 116, 58, 91, 93, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 40, 116, 44, 101, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 115, 101, 116, 95, 98, 111, 111, 108, 101, 97, 110, 95, 105, 110, 112, 117, 116, 40, 116, 44, 101, 41, 63, 63, 33, 49, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 40, 116, 44, 101, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 115, 101, 116, 95, 110, 117, 109, 101, 114, 105, 99, 95, 105, 110, 112, 117, 116, 40, 116, 44, 101, 41, 63, 63, 33, 49, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 40, 116, 44, 101, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 115, 101, 116, 95, 115, 116, 114, 105, 110, 103, 95, 105, 110, 112, 117, 116, 40, 116, 44, 101, 41, 63, 63, 33, 49, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 103, 101, 116, 95, 98, 111, 111, 108, 101, 97, 110, 95, 105, 110, 112, 117, 116, 40, 116, 41, 63, 63, 118, 111, 105, 100, 32, 48, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 103, 101, 116, 95, 110, 117, 109, 101, 114, 105, 99, 95, 105, 110, 112, 117, 116, 40, 116, 41, 63, 63, 118, 111, 105, 100, 32, 48, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 40, 116, 41, 123, 114, 101, 116, 117, 114, 110, 32, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 103, 101, 116, 95, 115, 116, 114, 105, 110, 103, 95, 105, 110, 112, 117, 116, 40, 116, 41, 63, 63, 118, 111, 105, 100, 32, 48, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 73, 110, 112, 117, 116, 115, 40, 41, 123, 105, 102, 40, 33, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 41, 114, 101, 116, 117, 114, 110, 91, 93, 59, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 46, 115, 109, 95, 103, 101, 116, 95, 105, 110, 112, 117, 116, 115, 40, 41, 59, 114, 101, 116, 117, 114, 110, 32, 65, 114, 114, 97, 121, 46, 105, 115, 65, 114, 114, 97, 121, 40, 116, 41, 63, 116, 58, 91, 93, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 70, 105, 114, 101, 69, 118, 101, 110, 116, 40, 116, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 102, 105, 114, 101, 40, 116, 41, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 67, 108, 105, 99, 107, 69, 118, 101, 110, 116, 40, 116, 44, 101, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 112, 111, 115, 116, 95, 99, 108, 105, 99, 107, 40, 116, 44, 101, 41, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 85, 112, 69, 118, 101, 110, 116, 40, 116, 44, 101, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 117, 112, 40, 116, 44, 101, 41, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 69, 118, 101, 110, 116, 40, 116, 44, 101, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 100, 111, 119, 110, 40, 116, 44, 101, 41, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 69, 118, 101, 110, 116, 40, 116, 44, 101, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 109, 111, 118, 101, 40, 116, 44, 101, 41, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 69, 118, 101, 110, 116, 40, 116, 44, 101, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 101, 110, 116, 101, 114, 40, 116, 44, 101, 41, 125, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 69, 120, 105, 116, 69, 118, 101, 110, 116, 40, 116, 44, 101, 41, 123, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 63, 46, 115, 109, 95, 112, 111, 115, 116, 95, 112, 111, 105, 110, 116, 101, 114, 95, 101, 120, 105, 116, 40, 116, 44, 101, 41, 125, 95, 111, 110, 67, 108, 105, 99, 107, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 77, 40, 116, 41, 59, 101, 38, 38, 116, 104, 105, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 67, 108, 105, 99, 107, 69, 118, 101, 110, 116, 40, 101, 46, 120, 44, 101, 46, 121, 41, 125, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 85, 112, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 77, 40, 116, 41, 59, 101, 38, 38, 116, 104, 105, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 85, 112, 69, 118, 101, 110, 116, 40, 101, 46, 120, 44, 101, 46, 121, 41, 125, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 77, 40, 116, 41, 59, 101, 38, 38, 116, 104, 105, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 69, 118, 101, 110, 116, 40, 101, 46, 120, 44, 101, 46, 121, 41, 125, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 77, 40, 116, 41, 59, 101, 38, 38, 116, 104, 105, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 69, 118, 101, 110, 116, 40, 101, 46, 120, 44, 101, 46, 121, 41, 125, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 77, 40, 116, 41, 59, 101, 38, 38, 116, 104, 105, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 69, 118, 101, 110, 116, 40, 101, 46, 120, 44, 101, 46, 121, 41, 125, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 76, 101, 97, 118, 101, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 77, 40, 116, 41, 59, 101, 38, 38, 116, 104, 105, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 69, 120, 105, 116, 69, 118, 101, 110, 116, 40, 101, 46, 120, 44, 101, 46, 121, 41, 125, 95, 115, 101, 116, 117, 112, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 123, 105, 102, 40, 103, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 38, 38, 116, 104, 105, 115, 46, 95, 100, 111, 116, 76, 111, 116, 116, 105, 101, 67, 111, 114, 101, 33, 61, 61, 110, 117, 108, 108, 38, 38, 116, 104, 105, 115, 46, 105, 115, 76, 111, 97, 100, 101, 100, 41, 123, 108, 101, 116, 32, 116, 61, 116, 104, 105, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 59, 116, 104, 105, 115, 46, 95, 99, 108, 101, 97, 110, 117, 112, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 44, 116, 46, 105, 110, 99, 108, 117, 100, 101, 115, 40, 34, 67, 108, 105, 99, 107, 34, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 67, 108, 105, 99, 107, 61, 116, 104, 105, 115, 46, 95, 111, 110, 67, 108, 105, 99, 107, 46, 98, 105, 110, 100, 40, 116, 104, 105, 115, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 99, 108, 105, 99, 107, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 67, 108, 105, 99, 107, 41, 41, 44, 116, 46, 105, 110, 99, 108, 117, 100, 101, 115, 40, 34, 80, 111, 105, 110, 116, 101, 114, 85, 112, 34, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 85, 112, 61, 116, 104, 105, 115, 46, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 85, 112, 46, 98, 105, 110, 100, 40, 116, 104, 105, 115, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 117, 112, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 85, 112, 41, 41, 44, 116, 46, 105, 110, 99, 108, 117, 100, 101, 115, 40, 34, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 34, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 61, 116, 104, 105, 115, 46, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 46, 98, 105, 110, 100, 40, 116, 104, 105, 115, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 100, 111, 119, 110, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 41, 41, 44, 116, 46, 105, 110, 99, 108, 117, 100, 101, 115, 40, 34, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 34, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 61, 116, 104, 105, 115, 46, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 46, 98, 105, 110, 100, 40, 116, 104, 105, 115, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 109, 111, 118, 101, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 41, 41, 44, 116, 46, 105, 110, 99, 108, 117, 100, 101, 115, 40, 34, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 34, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 61, 116, 104, 105, 115, 46, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 46, 98, 105, 110, 100, 40, 116, 104, 105, 115, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 101, 110, 116, 101, 114, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 41, 41, 44, 116, 46, 105, 110, 99, 108, 117, 100, 101, 115, 40, 34, 80, 111, 105, 110, 116, 101, 114, 69, 120, 105, 116, 34, 41, 38, 38, 40, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 76, 101, 97, 118, 101, 61, 116, 104, 105, 115, 46, 95, 111, 110, 80, 111, 105, 110, 116, 101, 114, 76, 101, 97, 118, 101, 46, 98, 105, 110, 100, 40, 116, 104, 105, 115, 41, 44, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 108, 101, 97, 118, 101, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 76, 101, 97, 118, 101, 41, 41, 125, 125, 95, 99, 108, 101, 97, 110, 117, 112, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 123, 103, 38, 38, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 32, 105, 110, 115, 116, 97, 110, 99, 101, 111, 102, 32, 72, 84, 77, 76, 67, 97, 110, 118, 97, 115, 69, 108, 101, 109, 101, 110, 116, 38, 38, 40, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 67, 108, 105, 99, 107, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 114, 101, 109, 111, 118, 101, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 99, 108, 105, 99, 107, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 67, 108, 105, 99, 107, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 67, 108, 105, 99, 107, 61, 110, 117, 108, 108, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 85, 112, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 114, 101, 109, 111, 118, 101, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 117, 112, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 85, 112, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 85, 112, 61, 110, 117, 108, 108, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 114, 101, 109, 111, 118, 101, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 100, 111, 119, 110, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 61, 110, 117, 108, 108, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 114, 101, 109, 111, 118, 101, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 109, 111, 118, 101, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 61, 110, 117, 108, 108, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 114, 101, 109, 111, 118, 101, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 101, 110, 116, 101, 114, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 61, 110, 117, 108, 108, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 76, 101, 97, 118, 101, 38, 38, 40, 116, 104, 105, 115, 46, 95, 99, 97, 110, 118, 97, 115, 46, 114, 101, 109, 111, 118, 101, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 34, 112, 111, 105, 110, 116, 101, 114, 108, 101, 97, 118, 101, 34, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 76, 101, 97, 118, 101, 41, 44, 116, 104, 105, 115, 46, 95, 98, 111, 117, 110, 100, 79, 110, 80, 111, 105, 110, 116, 101, 114, 76, 101, 97, 118, 101, 61, 110, 117, 108, 108, 41, 41, 125, 125, 59, 118, 97, 114, 32, 97, 61, 110, 101, 119, 32, 77, 97, 112, 44, 121, 116, 61, 123, 114, 101, 97, 100, 121, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 101, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 82, 101, 97, 100, 121, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 101, 41, 125, 44, 99, 111, 109, 112, 108, 101, 116, 101, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 101, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 67, 111, 109, 112, 108, 101, 116, 101, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 101, 41, 125, 44, 108, 111, 97, 100, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 76, 111, 97, 100, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 108, 111, 97, 100, 69, 114, 114, 111, 114, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 76, 111, 97, 100, 69, 114, 114, 111, 114, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 114, 101, 110, 100, 101, 114, 69, 114, 114, 111, 114, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 82, 101, 110, 100, 101, 114, 69, 114, 114, 111, 114, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 108, 111, 111, 112, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 76, 111, 111, 112, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 112, 108, 97, 121, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 80, 108, 97, 121, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 112, 97, 117, 115, 101, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 80, 97, 117, 115, 101, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 111, 112, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 111, 112, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 102, 114, 97, 109, 101, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 70, 114, 97, 109, 101, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 114, 101, 110, 100, 101, 114, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 82, 101, 110, 100, 101, 114, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 102, 114, 101, 101, 122, 101, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 70, 114, 101, 101, 122, 101, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 117, 110, 102, 114, 101, 101, 122, 101, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 85, 110, 102, 114, 101, 101, 122, 101, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 100, 101, 115, 116, 114, 111, 121, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 68, 101, 115, 116, 114, 111, 121, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 114, 116, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 114, 116, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 111, 112, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 111, 112, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 84, 114, 97, 110, 115, 105, 116, 105, 111, 110, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 84, 114, 97, 110, 115, 105, 116, 105, 111, 110, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 116, 101, 69, 110, 116, 101, 114, 101, 100, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 116, 101, 69, 110, 116, 101, 114, 101, 100, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 116, 101, 69, 120, 105, 116, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 116, 101, 69, 120, 105, 116, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 117, 115, 116, 111, 109, 69, 118, 101, 110, 116, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 117, 115, 116, 111, 109, 69, 118, 101, 110, 116, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 69, 114, 114, 111, 114, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 69, 114, 114, 111, 114, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 110, 112, 117, 116, 70, 105, 114, 101, 100, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 110, 112, 117, 116, 70, 105, 114, 101, 100, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 110, 116, 101, 114, 110, 97, 108, 77, 101, 115, 115, 97, 103, 101, 58, 110, 61, 62, 116, 61, 62, 123, 108, 101, 116, 32, 114, 61, 123, 105, 100, 58, 34, 34, 44, 109, 101, 116, 104, 111, 100, 58, 34, 111, 110, 83, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 110, 116, 101, 114, 110, 97, 108, 77, 101, 115, 115, 97, 103, 101, 34, 44, 114, 101, 115, 117, 108, 116, 58, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 110, 44, 101, 118, 101, 110, 116, 58, 116, 125, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 114, 41, 125, 125, 44, 74, 61, 123, 115, 101, 116, 84, 114, 97, 110, 115, 102, 111, 114, 109, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 101, 116, 84, 114, 97, 110, 115, 102, 111, 114, 109, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 116, 114, 97, 110, 115, 102, 111, 114, 109, 41, 125, 44, 103, 101, 116, 84, 114, 97, 110, 115, 102, 111, 114, 109, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 103, 101, 116, 84, 114, 97, 110, 115, 102, 111, 114, 109, 40, 41, 125, 44, 103, 101, 116, 68, 111, 116, 76, 111, 116, 116, 105, 101, 73, 110, 115, 116, 97, 110, 99, 101, 83, 116, 97, 116, 101, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 123, 115, 116, 97, 116, 101, 58, 123, 108, 111, 111, 112, 67, 111, 117, 110, 116, 58, 101, 46, 108, 111, 111, 112, 67, 111, 117, 110, 116, 44, 105, 115, 76, 111, 97, 100, 101, 100, 58, 101, 46, 105, 115, 76, 111, 97, 100, 101, 100, 44, 105, 115, 80, 97, 117, 115, 101, 100, 58, 101, 46, 105, 115, 80, 97, 117, 115, 101, 100, 44, 105, 115, 80, 108, 97, 121, 105, 110, 103, 58, 101, 46, 105, 115, 80, 108, 97, 121, 105, 110, 103, 44, 105, 115, 83, 116, 111, 112, 112, 101, 100, 58, 101, 46, 105, 115, 83, 116, 111, 112, 112, 101, 100, 44, 105, 115, 70, 114, 111, 122, 101, 110, 58, 101, 46, 105, 115, 70, 114, 111, 122, 101, 110, 44, 108, 111, 111, 112, 58, 101, 46, 108, 111, 111, 112, 44, 109, 111, 100, 101, 58, 101, 46, 109, 111, 100, 101, 44, 115, 112, 101, 101, 100, 58, 101, 46, 115, 112, 101, 101, 100, 44, 99, 117, 114, 114, 101, 110, 116, 70, 114, 97, 109, 101, 58, 101, 46, 99, 117, 114, 114, 101, 110, 116, 70, 114, 97, 109, 101, 44, 116, 111, 116, 97, 108, 70, 114, 97, 109, 101, 115, 58, 101, 46, 116, 111, 116, 97, 108, 70, 114, 97, 109, 101, 115, 44, 100, 117, 114, 97, 116, 105, 111, 110, 58, 101, 46, 100, 117, 114, 97, 116, 105, 111, 110, 44, 117, 115, 101, 70, 114, 97, 109, 101, 73, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 58, 101, 46, 117, 115, 101, 70, 114, 97, 109, 101, 73, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 44, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 58, 101, 46, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 44, 109, 97, 114, 107, 101, 114, 58, 101, 46, 109, 97, 114, 107, 101, 114, 44, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 58, 101, 46, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 44, 109, 97, 114, 107, 101, 114, 115, 58, 101, 46, 109, 97, 114, 107, 101, 114, 115, 40, 41, 44, 97, 99, 116, 105, 118, 101, 65, 110, 105, 109, 97, 116, 105, 111, 110, 73, 100, 58, 101, 46, 97, 99, 116, 105, 118, 101, 65, 110, 105, 109, 97, 116, 105, 111, 110, 73, 100, 44, 97, 99, 116, 105, 118, 101, 84, 104, 101, 109, 101, 73, 100, 58, 101, 46, 97, 99, 116, 105, 118, 101, 84, 104, 101, 109, 101, 73, 100, 44, 97, 117, 116, 111, 112, 108, 97, 121, 58, 101, 46, 97, 117, 116, 111, 112, 108, 97, 121, 44, 115, 101, 103, 109, 101, 110, 116, 58, 101, 46, 115, 101, 103, 109, 101, 110, 116, 44, 108, 97, 121, 111, 117, 116, 58, 101, 46, 108, 97, 121, 111, 117, 116, 44, 105, 115, 82, 101, 97, 100, 121, 58, 101, 46, 105, 115, 82, 101, 97, 100, 121, 44, 109, 97, 110, 105, 102, 101, 115, 116, 58, 101, 46, 109, 97, 110, 105, 102, 101, 115, 116, 125, 125, 125, 44, 115, 101, 116, 76, 97, 121, 111, 117, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 108, 97, 121, 111, 117, 116, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 76, 97, 121, 111, 117, 116, 40, 101, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 76, 105, 115, 116, 101, 110, 101, 114, 115, 40, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 114, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 114, 116, 40, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 111, 112, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 111, 112, 40, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 111, 97, 100, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 100, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 111, 97, 100, 40, 101, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 111, 97, 100, 68, 97, 116, 97, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 68, 97, 116, 97, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 76, 111, 97, 100, 68, 97, 116, 97, 40, 101, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 67, 108, 105, 99, 107, 69, 118, 101, 110, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 120, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 121, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 67, 108, 105, 99, 107, 69, 118, 101, 110, 116, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 85, 112, 69, 118, 101, 110, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 120, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 121, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 85, 112, 69, 118, 101, 110, 116, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 69, 118, 101, 110, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 120, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 121, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 68, 111, 119, 110, 69, 118, 101, 110, 116, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 69, 118, 101, 110, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 120, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 121, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 77, 111, 118, 101, 69, 118, 101, 110, 116, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 69, 118, 101, 110, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 120, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 121, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 69, 110, 116, 101, 114, 69, 118, 101, 110, 116, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 69, 120, 105, 116, 69, 118, 101, 110, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 120, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 121, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 80, 111, 115, 116, 80, 111, 105, 110, 116, 101, 114, 69, 120, 105, 116, 69, 118, 101, 110, 116, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 110, 97, 109, 101, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 118, 97, 108, 117, 101, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 110, 97, 109, 101, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 118, 97, 108, 117, 101, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 67, 111, 110, 102, 105, 103, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 99, 111, 110, 102, 105, 103, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 67, 111, 110, 102, 105, 103, 40, 101, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 110, 97, 109, 101, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 118, 97, 108, 117, 101, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 101, 116, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 110, 97, 109, 101, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 40, 101, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 110, 97, 109, 101, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 40, 101, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 110, 97, 109, 101, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 40, 101, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 73, 110, 112, 117, 116, 115, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 73, 110, 112, 117, 116, 115, 40, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 70, 105, 114, 101, 69, 118, 101, 110, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 110, 97, 109, 101, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 70, 105, 114, 101, 69, 118, 101, 110, 116, 40, 101, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 83, 116, 97, 116, 117, 115, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 83, 116, 97, 116, 117, 115, 40, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 67, 117, 114, 114, 101, 110, 116, 83, 116, 97, 116, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 67, 117, 114, 114, 101, 110, 116, 83, 116, 97, 116, 101, 40, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 65, 99, 116, 105, 118, 101, 73, 100, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 65, 99, 116, 105, 118, 101, 73, 100, 40, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 79, 118, 101, 114, 114, 105, 100, 101, 83, 116, 97, 116, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 116, 97, 116, 101, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 109, 109, 101, 100, 105, 97, 116, 101, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 111, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 79, 118, 101, 114, 114, 105, 100, 101, 83, 116, 97, 116, 101, 40, 101, 44, 114, 41, 125, 44, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 100, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 46, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 71, 101, 116, 40, 101, 41, 125, 44, 99, 114, 101, 97, 116, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 99, 111, 110, 102, 105, 103, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 119, 105, 100, 116, 104, 44, 111, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 104, 101, 105, 103, 104, 116, 59, 105, 102, 40, 97, 46, 104, 97, 115, 40, 116, 41, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 97, 108, 114, 101, 97, 100, 121, 32, 101, 120, 105, 115, 116, 115, 46, 96, 41, 59, 108, 101, 116, 32, 105, 61, 110, 101, 119, 32, 67, 40, 101, 41, 59, 114, 101, 116, 117, 114, 110, 32, 105, 46, 99, 97, 110, 118, 97, 115, 38, 38, 40, 105, 46, 99, 97, 110, 118, 97, 115, 46, 104, 101, 105, 103, 104, 116, 61, 111, 44, 105, 46, 99, 97, 110, 118, 97, 115, 46, 119, 105, 100, 116, 104, 61, 114, 41, 44, 97, 46, 115, 101, 116, 40, 116, 44, 105, 41, 44, 91, 34, 99, 111, 109, 112, 108, 101, 116, 101, 34, 44, 34, 102, 114, 97, 109, 101, 34, 44, 34, 108, 111, 97, 100, 34, 44, 34, 108, 111, 97, 100, 69, 114, 114, 111, 114, 34, 44, 34, 114, 101, 110, 100, 101, 114, 69, 114, 114, 111, 114, 34, 44, 34, 108, 111, 111, 112, 34, 44, 34, 112, 97, 117, 115, 101, 34, 44, 34, 112, 108, 97, 121, 34, 44, 34, 115, 116, 111, 112, 34, 44, 34, 100, 101, 115, 116, 114, 111, 121, 34, 44, 34, 102, 114, 101, 101, 122, 101, 34, 44, 34, 117, 110, 102, 114, 101, 101, 122, 101, 34, 44, 34, 114, 101, 110, 100, 101, 114, 34, 44, 34, 114, 101, 97, 100, 121, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 114, 116, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 111, 112, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 84, 114, 97, 110, 115, 105, 116, 105, 111, 110, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 116, 101, 69, 110, 116, 101, 114, 101, 100, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 97, 116, 101, 69, 120, 105, 116, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 67, 117, 115, 116, 111, 109, 69, 118, 101, 110, 116, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 69, 114, 114, 111, 114, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 66, 111, 111, 108, 101, 97, 110, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 78, 117, 109, 101, 114, 105, 99, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 83, 116, 114, 105, 110, 103, 73, 110, 112, 117, 116, 86, 97, 108, 117, 101, 67, 104, 97, 110, 103, 101, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 110, 112, 117, 116, 70, 105, 114, 101, 100, 34, 44, 34, 115, 116, 97, 116, 101, 77, 97, 99, 104, 105, 110, 101, 73, 110, 116, 101, 114, 110, 97, 108, 77, 101, 115, 115, 97, 103, 101, 34, 93, 46, 102, 111, 114, 69, 97, 99, 104, 40, 100, 61, 62, 123, 105, 46, 97, 100, 100, 69, 118, 101, 110, 116, 76, 105, 115, 116, 101, 110, 101, 114, 40, 100, 44, 121, 116, 91, 100, 93, 40, 116, 41, 41, 125, 41, 44, 123, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 58, 116, 125, 125, 44, 100, 101, 115, 116, 114, 111, 121, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 101, 38, 38, 40, 101, 46, 100, 101, 115, 116, 114, 111, 121, 40, 41, 44, 97, 46, 100, 101, 108, 101, 116, 101, 40, 116, 41, 41, 125, 44, 102, 114, 101, 101, 122, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 101, 46, 102, 114, 101, 101, 122, 101, 40, 41, 125, 44, 108, 111, 97, 100, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 99, 111, 110, 102, 105, 103, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 108, 111, 97, 100, 40, 101, 41, 125, 44, 108, 111, 97, 100, 65, 110, 105, 109, 97, 116, 105, 111, 110, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 97, 110, 105, 109, 97, 116, 105, 111, 110, 73, 100, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 108, 111, 97, 100, 65, 110, 105, 109, 97, 116, 105, 111, 110, 40, 101, 41, 125, 44, 115, 101, 116, 84, 104, 101, 109, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 116, 104, 101, 109, 101, 73, 100, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 46, 115, 101, 116, 84, 104, 101, 109, 101, 40, 101, 41, 125, 44, 115, 101, 116, 84, 104, 101, 109, 101, 68, 97, 116, 97, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 116, 104, 101, 109, 101, 68, 97, 116, 97, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 114, 46, 115, 101, 116, 84, 104, 101, 109, 101, 68, 97, 116, 97, 40, 101, 41, 125, 44, 112, 97, 117, 115, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 112, 97, 117, 115, 101, 40, 41, 125, 44, 112, 108, 97, 121, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 112, 108, 97, 121, 40, 41, 125, 44, 114, 101, 103, 105, 115, 116, 101, 114, 70, 111, 110, 116, 58, 97, 115, 121, 110, 99, 32, 110, 61, 62, 123, 108, 101, 116, 123, 102, 111, 110, 116, 78, 97, 109, 101, 58, 116, 44, 102, 111, 110, 116, 83, 111, 117, 114, 99, 101, 58, 101, 125, 61, 110, 46, 112, 97, 114, 97, 109, 115, 59, 114, 101, 116, 117, 114, 110, 32, 67, 46, 114, 101, 103, 105, 115, 116, 101, 114, 70, 111, 110, 116, 40, 116, 44, 101, 41, 125, 44, 114, 101, 115, 105, 122, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 119, 105, 100, 116, 104, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 104, 101, 105, 103, 104, 116, 44, 111, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 111, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 111, 46, 99, 97, 110, 118, 97, 115, 38, 38, 40, 111, 46, 99, 97, 110, 118, 97, 115, 46, 104, 101, 105, 103, 104, 116, 61, 114, 44, 111, 46, 99, 97, 110, 118, 97, 115, 46, 119, 105, 100, 116, 104, 61, 101, 41, 44, 111, 46, 114, 101, 115, 105, 122, 101, 40, 41, 125, 44, 115, 101, 116, 66, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 98, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 66, 97, 99, 107, 103, 114, 111, 117, 110, 100, 67, 111, 108, 111, 114, 40, 101, 41, 125, 44, 115, 101, 116, 83, 108, 111, 116, 115, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 101, 46, 115, 101, 116, 83, 108, 111, 116, 115, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 115, 41, 125, 44, 103, 101, 116, 83, 108, 111, 116, 73, 100, 115, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 103, 101, 116, 83, 108, 111, 116, 73, 100, 115, 40, 41, 125, 44, 103, 101, 116, 83, 108, 111, 116, 84, 121, 112, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 103, 101, 116, 83, 108, 111, 116, 84, 121, 112, 101, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 73, 100, 41, 125, 44, 103, 101, 116, 83, 108, 111, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 103, 101, 116, 83, 108, 111, 116, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 73, 100, 41, 125, 44, 103, 101, 116, 83, 108, 111, 116, 115, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 103, 101, 116, 83, 108, 111, 116, 115, 40, 41, 125, 44, 115, 101, 116, 67, 111, 108, 111, 114, 83, 108, 111, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 101, 116, 67, 111, 108, 111, 114, 83, 108, 111, 116, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 73, 100, 44, 110, 46, 112, 97, 114, 97, 109, 115, 46, 118, 97, 108, 117, 101, 41, 125, 44, 115, 101, 116, 83, 99, 97, 108, 97, 114, 83, 108, 111, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 101, 116, 83, 99, 97, 108, 97, 114, 83, 108, 111, 116, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 73, 100, 44, 110, 46, 112, 97, 114, 97, 109, 115, 46, 118, 97, 108, 117, 101, 41, 125, 44, 115, 101, 116, 86, 101, 99, 116, 111, 114, 83, 108, 111, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 101, 116, 86, 101, 99, 116, 111, 114, 83, 108, 111, 116, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 73, 100, 44, 110, 46, 112, 97, 114, 97, 109, 115, 46, 118, 97, 108, 117, 101, 41, 125, 44, 115, 101, 116, 71, 114, 97, 100, 105, 101, 110, 116, 83, 108, 111, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 101, 116, 71, 114, 97, 100, 105, 101, 110, 116, 83, 108, 111, 116, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 73, 100, 44, 110, 46, 112, 97, 114, 97, 109, 115, 46, 118, 97, 108, 117, 101, 44, 110, 46, 112, 97, 114, 97, 109, 115, 46, 99, 111, 108, 111, 114, 83, 116, 111, 112, 67, 111, 117, 110, 116, 41, 125, 44, 115, 101, 116, 84, 101, 120, 116, 83, 108, 111, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 115, 101, 116, 84, 101, 120, 116, 83, 108, 111, 116, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 73, 100, 44, 110, 46, 112, 97, 114, 97, 109, 115, 46, 118, 97, 108, 117, 101, 41, 125, 44, 114, 101, 115, 101, 116, 83, 108, 111, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 114, 101, 115, 101, 116, 83, 108, 111, 116, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 73, 100, 41, 125, 44, 99, 108, 101, 97, 114, 83, 108, 111, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 99, 108, 101, 97, 114, 83, 108, 111, 116, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 108, 111, 116, 73, 100, 41, 125, 44, 114, 101, 115, 101, 116, 83, 108, 111, 116, 115, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 114, 101, 115, 101, 116, 83, 108, 111, 116, 115, 40, 41, 125, 44, 99, 108, 101, 97, 114, 83, 108, 111, 116, 115, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 101, 46, 99, 108, 101, 97, 114, 83, 108, 111, 116, 115, 40, 41, 125, 44, 115, 101, 116, 70, 114, 97, 109, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 102, 114, 97, 109, 101, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 70, 114, 97, 109, 101, 40, 101, 41, 125, 44, 115, 101, 116, 77, 111, 100, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 109, 111, 100, 101, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 77, 111, 100, 101, 40, 101, 41, 125, 44, 115, 101, 116, 82, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 114, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 82, 101, 110, 100, 101, 114, 67, 111, 110, 102, 105, 103, 40, 101, 41, 125, 44, 115, 101, 116, 83, 101, 103, 109, 101, 110, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 101, 103, 109, 101, 110, 116, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 83, 101, 103, 109, 101, 110, 116, 40, 101, 91, 48, 93, 44, 101, 91, 49, 93, 41, 125, 44, 114, 101, 115, 101, 116, 83, 101, 103, 109, 101, 110, 116, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 101, 46, 114, 101, 115, 101, 116, 83, 101, 103, 109, 101, 110, 116, 40, 41, 125, 44, 115, 101, 116, 83, 112, 101, 101, 100, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 115, 112, 101, 101, 100, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 83, 112, 101, 101, 100, 40, 101, 41, 125, 44, 115, 101, 116, 85, 115, 101, 70, 114, 97, 109, 101, 73, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 117, 115, 101, 70, 114, 97, 109, 101, 73, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 85, 115, 101, 70, 114, 97, 109, 101, 73, 110, 116, 101, 114, 112, 111, 108, 97, 116, 105, 111, 110, 40, 101, 41, 125, 44, 115, 101, 116, 87, 97, 115, 109, 85, 114, 108, 58, 110, 61, 62, 123, 67, 46, 115, 101, 116, 87, 97, 115, 109, 85, 114, 108, 40, 110, 46, 112, 97, 114, 97, 109, 115, 46, 117, 114, 108, 41, 125, 44, 115, 116, 111, 112, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 101, 46, 115, 116, 111, 112, 40, 41, 125, 44, 117, 110, 102, 114, 101, 101, 122, 101, 58, 110, 61, 62, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 101, 46, 117, 110, 102, 114, 101, 101, 122, 101, 40, 41, 125, 44, 115, 101, 116, 86, 105, 101, 119, 112, 111, 114, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 120, 44, 114, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 121, 44, 111, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 119, 105, 100, 116, 104, 44, 105, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 104, 101, 105, 103, 104, 116, 44, 99, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 99, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 101, 116, 117, 114, 110, 32, 99, 46, 115, 101, 116, 86, 105, 101, 119, 112, 111, 114, 116, 40, 101, 44, 114, 44, 111, 44, 105, 41, 125, 44, 97, 110, 105, 109, 97, 116, 105, 111, 110, 83, 105, 122, 101, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 101, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 108, 101, 116, 123, 104, 101, 105, 103, 104, 116, 58, 114, 44, 119, 105, 100, 116, 104, 58, 111, 125, 61, 101, 46, 97, 110, 105, 109, 97, 116, 105, 111, 110, 83, 105, 122, 101, 40, 41, 59, 114, 101, 116, 117, 114, 110, 123, 104, 101, 105, 103, 104, 116, 58, 114, 44, 119, 105, 100, 116, 104, 58, 111, 125, 125, 44, 115, 101, 116, 77, 97, 114, 107, 101, 114, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 109, 97, 114, 107, 101, 114, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 77, 97, 114, 107, 101, 114, 40, 101, 41, 125, 44, 115, 101, 116, 76, 111, 111, 112, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 108, 111, 111, 112, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 76, 111, 111, 112, 40, 101, 41, 125, 44, 115, 101, 116, 76, 111, 111, 112, 67, 111, 117, 110, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 105, 110, 115, 116, 97, 110, 99, 101, 73, 100, 44, 101, 61, 110, 46, 112, 97, 114, 97, 109, 115, 46, 108, 111, 111, 112, 67, 111, 117, 110, 116, 44, 114, 61, 97, 46, 103, 101, 116, 40, 116, 41, 59, 105, 102, 40, 33, 114, 41, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 73, 110, 115, 116, 97, 110, 99, 101, 32, 119, 105, 116, 104, 32, 105, 100, 32, 36, 123, 116, 125, 32, 100, 111, 101, 115, 32, 110, 111, 116, 32, 101, 120, 105, 115, 116, 46, 96, 41, 59, 114, 46, 115, 101, 116, 76, 111, 111, 112, 67, 111, 117, 110, 116, 40, 101, 41, 125, 125, 59, 102, 117, 110, 99, 116, 105, 111, 110, 32, 69, 116, 40, 110, 41, 123, 108, 101, 116, 32, 116, 61, 110, 46, 109, 101, 116, 104, 111, 100, 59, 105, 102, 40, 79, 98, 106, 101, 99, 116, 46, 104, 97, 115, 79, 119, 110, 40, 74, 44, 116, 41, 38, 38, 116, 121, 112, 101, 111, 102, 32, 74, 91, 116, 93, 61, 61, 34, 102, 117, 110, 99, 116, 105, 111, 110, 34, 41, 114, 101, 116, 117, 114, 110, 32, 74, 91, 116, 93, 40, 110, 41, 59, 116, 104, 114, 111, 119, 32, 110, 101, 119, 32, 69, 114, 114, 111, 114, 40, 96, 77, 101, 116, 104, 111, 100, 32, 36, 123, 83, 116, 114, 105, 110, 103, 40, 116, 41, 125, 32, 105, 115, 32, 110, 111, 116, 32, 105, 109, 112, 108, 101, 109, 101, 110, 116, 101, 100, 32, 105, 110, 32, 99, 111, 109, 109, 97, 110, 100, 115, 46, 96, 41, 125, 115, 101, 108, 102, 46, 111, 110, 109, 101, 115, 115, 97, 103, 101, 61, 97, 115, 121, 110, 99, 32, 110, 61, 62, 123, 116, 114, 121, 123, 108, 101, 116, 32, 116, 61, 97, 119, 97, 105, 116, 32, 69, 116, 40, 110, 46, 100, 97, 116, 97, 41, 44, 101, 61, 123, 105, 100, 58, 110, 46, 100, 97, 116, 97, 46, 105, 100, 44, 109, 101, 116, 104, 111, 100, 58, 110, 46, 100, 97, 116, 97, 46, 109, 101, 116, 104, 111, 100, 44, 114, 101, 115, 117, 108, 116, 58, 116, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 101, 41, 125, 99, 97, 116, 99, 104, 40, 116, 41, 123, 108, 101, 116, 32, 101, 61, 123, 105, 100, 58, 110, 46, 100, 97, 116, 97, 46, 105, 100, 44, 109, 101, 116, 104, 111, 100, 58, 110, 46, 100, 97, 116, 97, 46, 109, 101, 116, 104, 111, 100, 44, 101, 114, 114, 111, 114, 58, 116, 46, 109, 101, 115, 115, 97, 103, 101, 125, 59, 115, 101, 108, 102, 46, 112, 111, 115, 116, 77, 101, 115, 115, 97, 103, 101, 40, 101, 41, 125, 125, 59, 118, 97, 114, 32, 77, 116, 61, 34, 34, 44, 89, 116, 61, 77, 116, 59, 125, 41, 40, 41, 59, 10])], { type: "application/javascript" }), e = URL.createObjectURL(t), n = new Worker(e);
2054
+ return URL.revokeObjectURL(e), n;
2055
+ }
2056
+ }, l4 = class {
2057
+ constructor() {
2058
+ c(this, "_workers", /* @__PURE__ */ new Map()), c(this, "_animationWorkerMap", /* @__PURE__ */ new Map()), c(this, "_eventHandlers", /* @__PURE__ */ new Map()), c(this, "_rpcHandlers", /* @__PURE__ */ new Map()), c(this, "_routeMessage", (t) => {
2059
+ let e = t.data;
2060
+ if (e.id) {
2061
+ let i = this._rpcHandlers.get(e.id);
2062
+ i && i(t);
2063
+ return;
2064
+ }
2065
+ let n = e.result?.instanceId;
2066
+ if (n) {
2067
+ let i = this._eventHandlers.get(n);
2068
+ i && i(t);
2069
+ }
2070
+ });
2071
+ }
2072
+ getWorker(t) {
2073
+ let e = this._workers.get(t);
2074
+ return e || (e = new _4(), e.addEventListener("message", this._routeMessage), this._workers.set(t, e)), e;
2075
+ }
2076
+ assignAnimationToWorker(t, e) {
2077
+ this._animationWorkerMap.set(t, e);
2078
+ }
2079
+ unassignAnimationFromWorker(t) {
2080
+ this._animationWorkerMap.delete(t);
2081
+ }
2082
+ sendMessage(t, e, n) {
2083
+ this.getWorker(t).postMessage(e, n || []);
2084
+ }
2085
+ broadcastMessage(t, e) {
2086
+ this._workers.forEach((n) => {
2087
+ n.postMessage(t, e || []);
2088
+ });
2089
+ }
2090
+ terminateWorker(t) {
2091
+ let e = this._workers.get(t);
2092
+ e && (e.removeEventListener("message", this._routeMessage), e.terminate(), this._workers.delete(t));
2093
+ }
2094
+ registerEventHandler(t, e) {
2095
+ this._eventHandlers.set(t, e);
2096
+ }
2097
+ unregisterEventHandler(t) {
2098
+ this._eventHandlers.delete(t);
2099
+ }
2100
+ registerRpcReplyHandler(t, e) {
2101
+ this._rpcHandlers.set(t, e);
2102
+ }
2103
+ unregisterRpcReplyHandler(t) {
2104
+ this._rpcHandlers.delete(t);
2105
+ }
2106
+ };
2107
+ function t0(t, e) {
2108
+ if (typeof HTMLCanvasElement < "u" && t instanceof HTMLCanvasElement) {
2109
+ let { height: n, width: i } = t.getBoundingClientRect();
2110
+ if (n !== 0 && i !== 0) return { width: i * e, height: n * e };
2111
+ }
2112
+ return { width: t.width, height: t.height };
2113
+ }
2114
+ function y1() {
2115
+ return Date.now().toString(36) + Math.random().toString(36).substr(2, 9);
2116
+ }
2117
+ var e0 = class x {
2118
+ constructor(e) {
2119
+ if (c(this, "_eventManager", new L0()), c(this, "_id", void 0), c(this, "_worker", void 0), c(this, "_canvas", void 0), c(this, "_dotLottieInstanceState", { loopCount: 0, markers: [], autoplay: !1, backgroundColor: "", currentFrame: 0, duration: 0, loop: !1, mode: "forward", segment: [0, 0], speed: 1, totalFrames: 0, isLoaded: !1, isPlaying: !1, isPaused: !1, isStopped: !0, isFrozen: !1, useFrameInterpolation: !1, renderConfig: { devicePixelRatio: H() }, activeAnimationId: "", activeThemeId: "", layout: void 0, marker: "", isReady: !1, manifest: null }), c(this, "_created", !1), c(this, "_boundOnClick", null), c(this, "_boundOnPointerUp", null), c(this, "_boundOnPointerDown", null), c(this, "_boundOnPointerMove", null), c(this, "_boundOnPointerEnter", null), c(this, "_boundOnPointerLeave", null), c(this, "_pendingConfig", null), e.canvas) {
2120
+ let r = typeof HTMLCanvasElement < "u" && e.canvas instanceof HTMLCanvasElement, a = typeof OffscreenCanvas < "u" && e.canvas instanceof OffscreenCanvas;
2121
+ if (!r && !a) throw Error("Worker-based DotLottie requires HTMLCanvasElement or OffscreenCanvas");
2122
+ }
2123
+ this._canvas = e.canvas ?? null, this._id = `dotlottie-${y1()}`;
2124
+ let n = e.workerId || "defaultWorker";
2125
+ this._worker = x._workerManager.getWorker(n), x._workerManager.assignAnimationToWorker(this._id, n), x._wasmUrl && this._sendMessage("setWasmUrl", { url: x._wasmUrl });
2126
+ let i = { ...e, renderConfig: { ...e.renderConfig, devicePixelRatio: e.renderConfig?.devicePixelRatio || H(), freezeOnOffscreen: e.renderConfig?.freezeOnOffscreen ?? !0 } };
2127
+ this._pendingConfig = i, this._canvas && (this._create(i), this._pendingConfig = null), x._workerManager.registerEventHandler(this._id, this._handleWorkerEvent.bind(this));
2128
+ }
2129
+ async _handleWorkerEvent(e) {
2130
+ let n = e.data;
2131
+ if (!n.id && (n.method === "onLoad" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event), I && this._canvas instanceof HTMLCanvasElement && (this._dotLottieInstanceState.renderConfig.freezeOnOffscreen && (A.observe(this._canvas, this), W(this._canvas) || await this.freeze()), this._dotLottieInstanceState.renderConfig.autoResize && D.observe(this._canvas, this))), n.method === "onComplete" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onDestroy" && n.result.instanceId === this._id && this._eventManager.dispatch(n.result.event), n.method === "onUnfreeze" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._dotLottieInstanceState.isFrozen = !1, this._eventManager.dispatch(n.result.event)), n.method === "onFrame" && n.result.instanceId === this._id && (this._dotLottieInstanceState.currentFrame = n.result.event.currentFrame, this._eventManager.dispatch(n.result.event)), n.method === "onRender" && n.result.instanceId === this._id && this._eventManager.dispatch(n.result.event), n.method === "onFreeze" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onPause" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onPlay" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStop" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onLoadError" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onRenderError" && n.result.instanceId === this._id && this._eventManager.dispatch(n.result.event), n.method === "onReady" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onLoop" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineStart" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._setupStateMachineListeners(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineStop" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._cleanupStateMachineListeners(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineTransition" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineStateEntered" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineStateExit" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineCustomEvent" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineError" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineBooleanInputValueChange" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineNumericInputValueChange" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineStringInputValueChange" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineInputFired" && n.result.instanceId === this._id && (await this._updateDotLottieInstanceState(), this._eventManager.dispatch(n.result.event)), n.method === "onStateMachineInternalMessage" && n.result.instanceId === this._id)) {
2132
+ await this._updateDotLottieInstanceState();
2133
+ let i = n.result.event;
2134
+ i.message.startsWith("OpenUrl: ") && C0(i.message);
2135
+ }
2136
+ }
2137
+ async _create(e) {
2138
+ if (!this._canvas) return;
2139
+ let n;
2140
+ n = this._canvas instanceof HTMLCanvasElement ? this._canvas.transferControlToOffscreen() : this._canvas;
2141
+ let { instanceId: i } = await this._sendMessage("create", { instanceId: this._id, config: { ...e, canvas: n }, ...t0(this._canvas, e.renderConfig?.devicePixelRatio || H()) }, [n]);
2142
+ if (i !== this._id) throw Error("Instance ID mismatch");
2143
+ this._created = !0, await this._updateDotLottieInstanceState();
2144
+ }
2145
+ get loopCount() {
2146
+ return this._dotLottieInstanceState.loopCount;
2147
+ }
2148
+ get isLoaded() {
2149
+ return this._dotLottieInstanceState.isLoaded;
2150
+ }
2151
+ get isPlaying() {
2152
+ return this._dotLottieInstanceState.isPlaying;
2153
+ }
2154
+ get isPaused() {
2155
+ return this._dotLottieInstanceState.isPaused;
2156
+ }
2157
+ get isStopped() {
2158
+ return this._dotLottieInstanceState.isStopped;
2159
+ }
2160
+ get currentFrame() {
2161
+ return this._dotLottieInstanceState.currentFrame;
2162
+ }
2163
+ get isFrozen() {
2164
+ return this._dotLottieInstanceState.isFrozen;
2165
+ }
2166
+ get totalFrames() {
2167
+ return this._dotLottieInstanceState.totalFrames;
2168
+ }
2169
+ get segment() {
2170
+ return this._dotLottieInstanceState.segment;
2171
+ }
2172
+ get speed() {
2173
+ return this._dotLottieInstanceState.speed;
2174
+ }
2175
+ get duration() {
2176
+ return this._dotLottieInstanceState.duration;
2177
+ }
2178
+ get isReady() {
2179
+ return this._dotLottieInstanceState.isReady;
2180
+ }
2181
+ get mode() {
2182
+ return this._dotLottieInstanceState.mode;
2183
+ }
2184
+ get canvas() {
2185
+ return this._canvas;
2186
+ }
2187
+ async setCanvas(e) {
2188
+ let n = typeof HTMLCanvasElement < "u" && e instanceof HTMLCanvasElement, i = typeof OffscreenCanvas < "u" && e instanceof OffscreenCanvas;
2189
+ if (!n && !i) throw Error("Worker-based DotLottie requires HTMLCanvasElement or OffscreenCanvas");
2190
+ if (this._canvas !== e) {
2191
+ if (this._created && this._canvas !== null) throw Error("Cannot change canvas after worker instance is already created with a different canvas.");
2192
+ this._canvas = e, !this._created && this._pendingConfig && (await this._create(this._pendingConfig), this._pendingConfig = null);
2193
+ }
2194
+ }
2195
+ get autoplay() {
2196
+ return this._dotLottieInstanceState.autoplay;
2197
+ }
2198
+ get backgroundColor() {
2199
+ return this._dotLottieInstanceState.backgroundColor;
2200
+ }
2201
+ get loop() {
2202
+ return this._dotLottieInstanceState.loop;
2203
+ }
2204
+ get useFrameInterpolation() {
2205
+ return this._dotLottieInstanceState.useFrameInterpolation;
2206
+ }
2207
+ get renderConfig() {
2208
+ return this._dotLottieInstanceState.renderConfig;
2209
+ }
2210
+ get manifest() {
2211
+ return this._dotLottieInstanceState.manifest;
2212
+ }
2213
+ get activeAnimationId() {
2214
+ return this._dotLottieInstanceState.activeAnimationId;
2215
+ }
2216
+ get marker() {
2217
+ return this._dotLottieInstanceState.marker;
2218
+ }
2219
+ get activeThemeId() {
2220
+ return this._dotLottieInstanceState.activeThemeId;
2221
+ }
2222
+ get layout() {
2223
+ return this._dotLottieInstanceState.layout;
2224
+ }
2225
+ async play() {
2226
+ this._created && (await this._sendMessage("play", { instanceId: this._id }), await this._updateDotLottieInstanceState(), I && this._canvas instanceof HTMLCanvasElement && this._dotLottieInstanceState.renderConfig.freezeOnOffscreen && !W(this._canvas) && await this.freeze());
2227
+ }
2228
+ async pause() {
2229
+ this._created && (await this._sendMessage("pause", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2230
+ }
2231
+ async stop() {
2232
+ this._created && (await this._sendMessage("stop", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2233
+ }
2234
+ async setSpeed(e) {
2235
+ this._created && (await this._sendMessage("setSpeed", { instanceId: this._id, speed: e }), await this._updateDotLottieInstanceState());
2236
+ }
2237
+ async setMode(e) {
2238
+ this._created && (await this._sendMessage("setMode", { instanceId: this._id, mode: e }), await this._updateDotLottieInstanceState());
2239
+ }
2240
+ async setFrame(e) {
2241
+ this._created && (await this._sendMessage("setFrame", { frame: e, instanceId: this._id }), await this._updateDotLottieInstanceState());
2242
+ }
2243
+ async setSegment(e, n) {
2244
+ this._created && (await this._sendMessage("setSegment", { instanceId: this._id, segment: [e, n] }), await this._updateDotLottieInstanceState());
2245
+ }
2246
+ async resetSegment() {
2247
+ this._created && (await this._sendMessage("resetSegment", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2248
+ }
2249
+ async setRenderConfig(e) {
2250
+ if (!this._created) return;
2251
+ let { devicePixelRatio: n, freezeOnOffscreen: i, quality: r, ...a } = e;
2252
+ await this._sendMessage("setRenderConfig", { instanceId: this._id, renderConfig: { ...this._dotLottieInstanceState.renderConfig, ...a, devicePixelRatio: n || H(), freezeOnOffscreen: i ?? !0, ...r !== void 0 && { quality: r } } }), await this._updateDotLottieInstanceState(), I && this._canvas instanceof HTMLCanvasElement && (this._dotLottieInstanceState.renderConfig.autoResize ? D.observe(this._canvas, this) : D.unobserve(this._canvas), this._dotLottieInstanceState.renderConfig.freezeOnOffscreen ? (A.observe(this._canvas, this), W(this._canvas) || await this.freeze()) : (A.unobserve(this._canvas), this._dotLottieInstanceState.isFrozen && await this.unfreeze()));
2253
+ }
2254
+ async setUseFrameInterpolation(e) {
2255
+ this._created && (await this._sendMessage("setUseFrameInterpolation", { instanceId: this._id, useFrameInterpolation: e }), await this._updateDotLottieInstanceState());
2256
+ }
2257
+ async setTheme(e) {
2258
+ if (!this._created) return !1;
2259
+ let n = this._sendMessage("setTheme", { instanceId: this._id, themeId: e });
2260
+ return await this._updateDotLottieInstanceState(), n;
2261
+ }
2262
+ async load(e) {
2263
+ if (!this._created) {
2264
+ this._pendingConfig && (this._pendingConfig = { ...this._pendingConfig, ...e });
2265
+ return;
2266
+ }
2267
+ await this._sendMessage("load", { config: e, instanceId: this._id }), await this._updateDotLottieInstanceState();
2268
+ }
2269
+ async setLoop(e) {
2270
+ this._created && (await this._sendMessage("setLoop", { instanceId: this._id, loop: e }), await this._updateDotLottieInstanceState());
2271
+ }
2272
+ async setLoopCount(e) {
2273
+ this._created && (await this._sendMessage("setLoopCount", { instanceId: this._id, loopCount: e }), await this._updateDotLottieInstanceState());
2274
+ }
2275
+ async resize() {
2276
+ if (!this._created || !this._canvas) return;
2277
+ let { height: e, width: n } = t0(this._canvas, this._dotLottieInstanceState.renderConfig.devicePixelRatio || H());
2278
+ await this._sendMessage("resize", { height: e, instanceId: this._id, width: n }), await this._updateDotLottieInstanceState();
2279
+ }
2280
+ async destroy() {
2281
+ this._created && (this._created = !1, await this._sendMessage("destroy", { instanceId: this._id }), this._cleanupStateMachineListeners(), x._workerManager.unregisterEventHandler(this._id), x._workerManager.unassignAnimationFromWorker(this._id), this._eventManager.removeAllEventListeners(), I && this._canvas instanceof HTMLCanvasElement && (A.unobserve(this._canvas), D.unobserve(this._canvas)));
2282
+ }
2283
+ async freeze() {
2284
+ this._created && (await this._sendMessage("freeze", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2285
+ }
2286
+ async unfreeze() {
2287
+ this._created && (await this._sendMessage("unfreeze", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2288
+ }
2289
+ async setBackgroundColor(e) {
2290
+ this._created && (await this._sendMessage("setBackgroundColor", { instanceId: this._id, backgroundColor: e }), await this._updateDotLottieInstanceState());
2291
+ }
2292
+ async loadAnimation(e) {
2293
+ this._created && (await this._sendMessage("loadAnimation", { animationId: e, instanceId: this._id }), await this._updateDotLottieInstanceState());
2294
+ }
2295
+ async setLayout(e) {
2296
+ this._created && (await this._sendMessage("setLayout", { instanceId: this._id, layout: e }), await this._updateDotLottieInstanceState());
2297
+ }
2298
+ async setSlots(e) {
2299
+ this._created && await this._sendMessage("setSlots", { instanceId: this._id, slots: e });
2300
+ }
2301
+ async getSlotIds() {
2302
+ return this._created ? this._sendMessage("getSlotIds", { instanceId: this._id }) : [];
2303
+ }
2304
+ async getSlotType(e) {
2305
+ if (this._created) return this._sendMessage("getSlotType", { instanceId: this._id, slotId: e });
2306
+ }
2307
+ async getSlot(e) {
2308
+ if (this._created) return this._sendMessage("getSlot", { instanceId: this._id, slotId: e });
2309
+ }
2310
+ async getSlots() {
2311
+ return this._created ? this._sendMessage("getSlots", { instanceId: this._id }) : {};
2312
+ }
2313
+ async setColorSlot(e, n) {
2314
+ return this._created ? this._sendMessage("setColorSlot", { instanceId: this._id, slotId: e, value: n }) : !1;
2315
+ }
2316
+ async setScalarSlot(e, n) {
2317
+ return this._created ? this._sendMessage("setScalarSlot", { instanceId: this._id, slotId: e, value: n }) : !1;
2318
+ }
2319
+ async setVectorSlot(e, n) {
2320
+ return this._created ? this._sendMessage("setVectorSlot", { instanceId: this._id, slotId: e, value: n }) : !1;
2321
+ }
2322
+ async setGradientSlot(e, n, i) {
2323
+ return this._created ? this._sendMessage("setGradientSlot", { instanceId: this._id, slotId: e, value: n, colorStopCount: i }) : !1;
2324
+ }
2325
+ async setTextSlot(e, n) {
2326
+ return this._created ? this._sendMessage("setTextSlot", { instanceId: this._id, slotId: e, value: n }) : !1;
2327
+ }
2328
+ async resetSlot(e) {
2329
+ return this._created ? this._sendMessage("resetSlot", { instanceId: this._id, slotId: e }) : !1;
2330
+ }
2331
+ async clearSlot(e) {
2332
+ return this._created ? this._sendMessage("clearSlot", { instanceId: this._id, slotId: e }) : !1;
2333
+ }
2334
+ async resetSlots() {
2335
+ return this._created ? this._sendMessage("resetSlots", { instanceId: this._id }) : !1;
2336
+ }
2337
+ async clearSlots() {
2338
+ return this._created ? this._sendMessage("clearSlots", { instanceId: this._id }) : !1;
2339
+ }
2340
+ async _updateDotLottieInstanceState() {
2341
+ if (!this._created) return;
2342
+ let e = await this._sendMessage("getDotLottieInstanceState", { instanceId: this._id });
2343
+ this._dotLottieInstanceState = e.state;
2344
+ }
2345
+ markers() {
2346
+ return this._dotLottieInstanceState.markers;
2347
+ }
2348
+ async setMarker(e) {
2349
+ this._created && (await this._sendMessage("setMarker", { instanceId: this._id, marker: e }), await this._updateDotLottieInstanceState());
2350
+ }
2351
+ async setThemeData(e) {
2352
+ if (!this._created) return !1;
2353
+ let n = await this._sendMessage("setThemeData", { instanceId: this._id, themeData: e });
2354
+ return await this._updateDotLottieInstanceState(), n;
2355
+ }
2356
+ async setViewport(e, n, i, r) {
2357
+ return this._created ? this._sendMessage("setViewport", { x: e, y: n, width: i, height: r, instanceId: this._id }) : !1;
2358
+ }
2359
+ async animationSize() {
2360
+ return this._created ? this._sendMessage("animationSize", { instanceId: this._id }) : { height: 0, width: 0 };
2361
+ }
2362
+ async setTransform(e) {
2363
+ return this._created ? this._sendMessage("setTransform", { instanceId: this._id, transform: e }) : !1;
2364
+ }
2365
+ async getTransform() {
2366
+ if (this._created) return this._sendMessage("getTransform", { instanceId: this._id });
2367
+ }
2368
+ async _sendMessage(e, n, i) {
2369
+ let r = { id: `dotlottie-request-${y1()}`, method: e, params: n };
2370
+ return new Promise((a, o) => {
2371
+ x._workerManager.registerRpcReplyHandler(r.id, (l) => {
2372
+ x._workerManager.unregisterRpcReplyHandler(r.id);
2373
+ let h = l.data;
2374
+ h.error ? o(Error(`Failed to execute method ${e}: ${h.error}`)) : a(h.result);
2375
+ }), this._worker.postMessage(r, i || []);
2376
+ });
2377
+ }
2378
+ addEventListener(e, n) {
2379
+ this._eventManager.addEventListener(e, n);
2380
+ }
2381
+ removeEventListener(e, n) {
2382
+ this._eventManager.removeEventListener(e, n);
2383
+ }
2384
+ static setWasmUrl(e) {
2385
+ x._wasmUrl = e;
2386
+ }
2387
+ static async registerFont(e, n) {
2388
+ try {
2389
+ let i = y1();
2390
+ return x._workerManager.broadcastMessage({ id: i, method: "registerFont", params: { fontName: e, fontSource: n } }), !0;
2391
+ } catch (i) {
2392
+ return console.error(`Error broadcasting registerFont for "${e}":`, i), !1;
2393
+ }
2394
+ }
2395
+ async stateMachineLoad(e) {
2396
+ if (!this._created) return !1;
2397
+ let n = await this._sendMessage("stateMachineLoad", { instanceId: this._id, stateMachineId: e });
2398
+ return await this._updateDotLottieInstanceState(), n;
2399
+ }
2400
+ async stateMachineLoadData(e) {
2401
+ if (!this._created) return !1;
2402
+ let n = await this._sendMessage("stateMachineLoadData", { instanceId: this._id, stateMachineData: e });
2403
+ return await this._updateDotLottieInstanceState(), n;
2404
+ }
2405
+ async stateMachineStart() {
2406
+ if (!this._created) return !1;
2407
+ let e = await this._sendMessage("stateMachineStart", { instanceId: this._id });
2408
+ return e && (this._setupStateMachineListeners(), await this._updateDotLottieInstanceState()), e;
2409
+ }
2410
+ async stateMachineStop() {
2411
+ return this._created ? (this._cleanupStateMachineListeners(), this._sendMessage("stateMachineStop", { instanceId: this._id })) : !1;
2412
+ }
2413
+ async stateMachineSetNumericInput(e, n) {
2414
+ return this._created ? this._sendMessage("stateMachineSetNumericInput", { instanceId: this._id, name: e, value: n }) : !1;
2415
+ }
2416
+ async stateMachineSetBooleanInput(e, n) {
2417
+ return this._created ? this._sendMessage("stateMachineSetBooleanInput", { instanceId: this._id, name: e, value: n }) : !1;
2418
+ }
2419
+ async stateMachineSetConfig(e) {
2420
+ this._created && this._sendMessage("stateMachineSetConfig", { instanceId: this._id, config: e });
2421
+ }
2422
+ async stateMachineSetStringInput(e, n) {
2423
+ return this._created ? this._sendMessage("stateMachineSetStringInput", { instanceId: this._id, name: e, value: n }) : !1;
2424
+ }
2425
+ async stateMachineGetNumericInput(e) {
2426
+ if (this._created) return this._sendMessage("stateMachineGetNumericInput", { instanceId: this._id, name: e });
2427
+ }
2428
+ async stateMachineGetBooleanInput(e) {
2429
+ if (this._created) return this._sendMessage("stateMachineGetBooleanInput", { instanceId: this._id, name: e });
2430
+ }
2431
+ async stateMachineGetStringInput(e) {
2432
+ if (this._created) return this._sendMessage("stateMachineGetStringInput", { instanceId: this._id, name: e });
2433
+ }
2434
+ async stateMachineGetInputs() {
2435
+ if (this._created) return this._sendMessage("stateMachineGetInputs", { instanceId: this._id });
2436
+ }
2437
+ async stateMachineFireEvent(e) {
2438
+ this._created && this._sendMessage("stateMachineFireEvent", { instanceId: this._id, name: e });
2439
+ }
2440
+ async stateMachineGetStatus() {
2441
+ return this._created ? this._sendMessage("stateMachineGetStatus", { instanceId: this._id }) : "";
2442
+ }
2443
+ async stateMachineGetCurrentState() {
2444
+ return this._created ? this._sendMessage("stateMachineGetCurrentState", { instanceId: this._id }) : "";
2445
+ }
2446
+ async stateMachineGetActiveId() {
2447
+ return this._created ? this._sendMessage("stateMachineGetActiveId", { instanceId: this._id }) : "";
2448
+ }
2449
+ async stateMachineOverrideState(e, n = !1) {
2450
+ return this._created ? this._sendMessage("stateMachineOverrideState", { instanceId: this._id, state: e, immediate: n }) : !1;
2451
+ }
2452
+ async stateMachineGet(e) {
2453
+ return this._created ? this._sendMessage("stateMachineGet", { instanceId: this._id, stateMachineId: e }) : "";
2454
+ }
2455
+ async stateMachineGetListeners() {
2456
+ return this._created ? this._sendMessage("stateMachineGetListeners", { instanceId: this._id }) : [];
2457
+ }
2458
+ async stateMachinePostClickEvent(e, n) {
2459
+ if (this._created) return this._sendMessage("stateMachinePostClickEvent", { instanceId: this._id, x: e, y: n });
2460
+ }
2461
+ async stateMachinePostPointerUpEvent(e, n) {
2462
+ if (this._created) return this._sendMessage("stateMachinePostPointerUpEvent", { instanceId: this._id, x: e, y: n });
2463
+ }
2464
+ async stateMachinePostPointerDownEvent(e, n) {
2465
+ if (this._created) return this._sendMessage("stateMachinePostPointerDownEvent", { instanceId: this._id, x: e, y: n });
2466
+ }
2467
+ async stateMachinePostPointerMoveEvent(e, n) {
2468
+ if (this._created) return this._sendMessage("stateMachinePostPointerMoveEvent", { instanceId: this._id, x: e, y: n });
2469
+ }
2470
+ async stateMachinePostPointerEnterEvent(e, n) {
2471
+ if (this._created) return this._sendMessage("stateMachinePostPointerEnterEvent", { instanceId: this._id, x: e, y: n });
2472
+ }
2473
+ async stateMachinePostPointerExitEvent(e, n) {
2474
+ if (this._created) return this._sendMessage("stateMachinePostPointerExitEvent", { instanceId: this._id, x: e, y: n });
2475
+ }
2476
+ _onClick(e) {
2477
+ let n = P(e);
2478
+ n && this._sendMessage("stateMachinePostClickEvent", { instanceId: this._id, x: n.x, y: n.y });
2479
+ }
2480
+ _onPointerUp(e) {
2481
+ let n = P(e);
2482
+ n && this._sendMessage("stateMachinePostPointerUpEvent", { instanceId: this._id, x: n.x, y: n.y });
2483
+ }
2484
+ _onPointerDown(e) {
2485
+ let n = P(e);
2486
+ n && this._sendMessage("stateMachinePostPointerDownEvent", { instanceId: this._id, x: n.x, y: n.y });
2487
+ }
2488
+ _onPointerMove(e) {
2489
+ let n = P(e);
2490
+ n && this._sendMessage("stateMachinePostPointerMoveEvent", { instanceId: this._id, x: n.x, y: n.y });
2491
+ }
2492
+ _onPointerEnter(e) {
2493
+ let n = P(e);
2494
+ n && this._sendMessage("stateMachinePostPointerEnterEvent", { instanceId: this._id, x: n.x, y: n.y });
2495
+ }
2496
+ _onPointerLeave(e) {
2497
+ let n = P(e);
2498
+ n && this._sendMessage("stateMachinePostPointerExitEvent", { instanceId: this._id, x: n.x, y: n.y });
2499
+ }
2500
+ async _setupStateMachineListeners() {
2501
+ if (I && this._canvas instanceof HTMLCanvasElement && this.isLoaded) {
2502
+ let e = await this._sendMessage("stateMachineGetListeners", { instanceId: this._id });
2503
+ if (e.length === 0) return;
2504
+ this._cleanupStateMachineListeners(), e.includes("Click") && (this._boundOnClick = this._onClick.bind(this), this._canvas.addEventListener("click", this._boundOnClick)), e.includes("PointerUp") && (this._boundOnPointerUp = this._onPointerUp.bind(this), this._canvas.addEventListener("pointerup", this._boundOnPointerUp)), e.includes("PointerDown") && (this._boundOnPointerDown = this._onPointerDown.bind(this), this._canvas.addEventListener("pointerdown", this._boundOnPointerDown)), e.includes("PointerMove") && (this._boundOnPointerMove = this._onPointerMove.bind(this), this._canvas.addEventListener("pointermove", this._boundOnPointerMove)), e.includes("PointerEnter") && (this._boundOnPointerEnter = this._onPointerEnter.bind(this), this._canvas.addEventListener("pointerenter", this._boundOnPointerEnter)), e.includes("PointerExit") && (this._boundOnPointerLeave = this._onPointerLeave.bind(this), this._canvas.addEventListener("pointerleave", this._boundOnPointerLeave));
2505
+ }
2506
+ }
2507
+ _cleanupStateMachineListeners() {
2508
+ I && this._canvas instanceof HTMLCanvasElement && (this._boundOnClick && (this._canvas.removeEventListener("click", this._boundOnClick), this._boundOnClick = null), this._boundOnPointerUp && (this._canvas.removeEventListener("pointerup", this._boundOnPointerUp), this._boundOnPointerUp = null), this._boundOnPointerDown && (this._canvas.removeEventListener("pointerdown", this._boundOnPointerDown), this._boundOnPointerDown = null), this._boundOnPointerMove && (this._canvas.removeEventListener("pointermove", this._boundOnPointerMove), this._boundOnPointerMove = null), this._boundOnPointerEnter && (this._canvas.removeEventListener("pointerenter", this._boundOnPointerEnter), this._boundOnPointerEnter = null), this._boundOnPointerLeave && (this._canvas.removeEventListener("pointerleave", this._boundOnPointerLeave), this._boundOnPointerLeave = null));
2509
+ }
2510
+ };
2511
+ c(e0, "_workerManager", new l4()), c(e0, "_wasmUrl", "");
2512
+ const b4 = (t, e = !1) => typeof t == "boolean" ? t : typeof t == "string" ? t === "true" || t === "" : e, d4 = "11.5.0", y4 = {
2513
+ version: d4
2514
+ };
2515
+ export {
2516
+ g4 as A,
2517
+ E0 as H,
2518
+ c4 as I,
2519
+ u4 as J,
2520
+ z as S,
2521
+ D0 as T,
2522
+ q as _,
2523
+ w4 as a,
2524
+ m4 as d,
2525
+ b4 as g,
2526
+ p1 as k,
2527
+ v as l,
2528
+ y4 as p,
2529
+ v4 as r,
2530
+ M0 as t,
2531
+ p4 as u,
2532
+ l1 as x,
2533
+ f4 as y
2534
+ };
2535
+ //# sourceMappingURL=package-BmVbDNny.js.map