@smileid/web-components 11.4.5 → 11.6.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 (132) hide show
  1. package/dist/esm/DocumentCaptureScreens-DjSTdVP-.js +5398 -0
  2. package/dist/esm/DocumentCaptureScreens-DjSTdVP-.js.map +1 -0
  3. package/dist/esm/{Navigation-Bb7MPLE8.js → Navigation-6DH3vF4-.js} +28 -22
  4. package/dist/esm/Navigation-6DH3vF4-.js.map +1 -0
  5. package/dist/esm/{PoweredBySmileId-CxbaihMu.js → PoweredBySmileId-DoKwoPUd.js} +424 -6
  6. package/dist/esm/PoweredBySmileId-DoKwoPUd.js.map +1 -0
  7. package/dist/esm/SelfieCaptureScreens-CtX-4Tco.js +11470 -0
  8. package/dist/esm/SelfieCaptureScreens-CtX-4Tco.js.map +1 -0
  9. package/dist/esm/combobox.js +1 -1
  10. package/dist/esm/document.js +1 -1
  11. package/dist/esm/end-user-consent.js +713 -2
  12. package/dist/esm/end-user-consent.js.map +1 -1
  13. package/dist/esm/index-BqyuTk9f.js +1366 -0
  14. package/dist/esm/{index-C4RTMbgw.js.map → index-BqyuTk9f.js.map} +1 -1
  15. package/dist/esm/localisation.js +1 -1
  16. package/dist/esm/main.js +14 -14
  17. package/dist/esm/navigation.js +1 -1
  18. package/dist/esm/package-CjZI-cNQ.js +2540 -0
  19. package/dist/esm/package-CjZI-cNQ.js.map +1 -0
  20. package/dist/esm/selfie.js +1 -1
  21. package/dist/esm/smart-camera-web.js +81 -37
  22. package/dist/esm/smart-camera-web.js.map +1 -1
  23. package/dist/esm/totp-consent.js +731 -2
  24. package/dist/esm/totp-consent.js.map +1 -1
  25. package/dist/esm/validate.js +31 -0
  26. package/dist/esm/validate.js.map +1 -0
  27. package/dist/smart-camera-web.js +1513 -383
  28. package/dist/smart-camera-web.js.map +1 -1
  29. package/dist/types/main.d.ts +18 -1
  30. package/dist/types/validate.d.ts +21 -0
  31. package/lib/components/document/src/DocumentCaptureScreens.js +97 -18
  32. package/lib/components/document/src/assets/lottie.d.ts +12 -0
  33. package/lib/components/document/src/assets/svg-inline.d.ts +8 -0
  34. package/lib/components/document/src/document-auto-capture/DocumentAutoCapture.stories.js +75 -0
  35. package/lib/components/document/src/document-auto-capture/DocumentAutoCapture.tsx +1458 -0
  36. package/lib/components/document/src/document-auto-capture/README.md +73 -0
  37. package/lib/components/document/src/document-auto-capture/assets/Greenbook_Shimmer.svg +42 -0
  38. package/lib/components/document/src/document-auto-capture/assets/ID_Back_Shimmer.svg +8 -0
  39. package/lib/components/document/src/document-auto-capture/assets/ID_Front_Shimmer.svg +20 -0
  40. package/lib/components/document/src/document-auto-capture/assets/Passport-Shimmer.svg +143 -0
  41. package/lib/components/document/src/document-auto-capture/assets/shimmers.ts +21 -0
  42. package/lib/components/document/src/document-auto-capture/assets/svg-raw.d.ts +4 -0
  43. package/lib/components/document/src/document-auto-capture/components/CaptureButton.tsx +122 -0
  44. package/lib/components/document/src/document-auto-capture/components/Overlay.tsx +167 -0
  45. package/lib/components/document/src/document-auto-capture/components/TuningPanel.tsx +856 -0
  46. package/lib/components/document/src/document-auto-capture/constants/captureLayout.ts +58 -0
  47. package/lib/components/document/src/document-auto-capture/detection/cvErrorRecovery.ts +40 -0
  48. package/lib/components/document/src/document-auto-capture/detection/documentAspect.ts +20 -0
  49. package/lib/components/document/src/document-auto-capture/detection/qualityScoring.ts +35 -0
  50. package/lib/components/document/src/document-auto-capture/detection/seamRejection.ts +209 -0
  51. package/lib/components/document/src/document-auto-capture/detection/synthesisTiming.ts +10 -0
  52. package/lib/components/document/src/document-auto-capture/hooks/useCamera.ts +117 -0
  53. package/lib/components/document/src/document-auto-capture/hooks/useCardDetection.ts +3059 -0
  54. package/lib/components/document/src/document-auto-capture/index.ts +4 -0
  55. package/lib/components/document/src/document-auto-capture/theme.ts +40 -0
  56. package/lib/components/document/src/document-auto-capture/utils/debug.ts +25 -0
  57. package/lib/components/document/src/document-auto-capture/utils/opencvLoader.ts +86 -0
  58. package/lib/components/document/src/document-capture-instructions/DocumentCaptureInstructions.tsx +327 -244
  59. package/lib/components/document/src/document-capture-review/DocumentCaptureReview.js +153 -189
  60. package/lib/components/document/src/document-capture-submission/DocumentCaptureSubmission.tsx +432 -0
  61. package/lib/components/document/src/document-capture-submission/index.js +3 -0
  62. package/lib/components/navigation/src/Navigation.js +27 -8
  63. package/lib/components/selfie/README.md +13 -0
  64. package/lib/components/selfie/src/SelfieCaptureScreens.js +56 -8
  65. package/lib/components/selfie/src/enhanced-smartselfie-capture/EnhancedSmartSelfieCapture.tsx +684 -0
  66. package/lib/components/selfie/src/enhanced-smartselfie-capture/EnhancedSmartSelfieConsent.tsx +71 -0
  67. package/lib/components/selfie/src/enhanced-smartselfie-capture/EnhancedSmartSelfieSubmission.tsx +181 -0
  68. package/lib/components/selfie/src/enhanced-smartselfie-capture/OvalProgress.tsx +87 -0
  69. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/Icon.svg +8 -0
  70. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/accessories.svg +77 -0
  71. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/active_liveness_animation.lottie +0 -0
  72. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/device.svg +12 -0
  73. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/device_orientation.lottie +0 -0
  74. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/good.svg +52 -0
  75. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/id-card.svg +9 -0
  76. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/illustrations.tsx +852 -0
  77. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/instructions-img.svg +3 -0
  78. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/multiple-faces.svg +69 -0
  79. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/person.svg +6 -0
  80. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/phone.svg +8 -0
  81. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/poor-lighting.svg +53 -0
  82. package/lib/components/selfie/src/enhanced-smartselfie-capture/assets/too_dark_animation.lottie +0 -0
  83. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/ActiveLivenessOverlay.tsx +226 -0
  84. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/AlertDisplay.tsx +38 -0
  85. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/BackNavigation.tsx +45 -0
  86. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/CameraPreview.tsx +96 -0
  87. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/CaptureControls.tsx +97 -0
  88. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/CaptureGuidelines.tsx +374 -0
  89. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/ConsentView.tsx +460 -0
  90. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/SubmissionView.tsx +426 -0
  91. package/lib/components/selfie/src/enhanced-smartselfie-capture/components/index.ts +3 -0
  92. package/lib/components/selfie/src/enhanced-smartselfie-capture/constants.ts +23 -0
  93. package/lib/components/selfie/src/enhanced-smartselfie-capture/hooks/index.ts +2 -0
  94. package/lib/components/selfie/src/enhanced-smartselfie-capture/hooks/useCamera.ts +238 -0
  95. package/lib/components/selfie/src/enhanced-smartselfie-capture/hooks/useFaceCapture.ts +1075 -0
  96. package/lib/components/selfie/src/enhanced-smartselfie-capture/index.ts +1 -0
  97. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/alertMessages.ts +20 -0
  98. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/canvas.ts +108 -0
  99. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/faceDetection.ts +545 -0
  100. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/imageCapture.ts +66 -0
  101. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/imageQuality.ts +151 -0
  102. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/index.ts +5 -0
  103. package/lib/components/selfie/src/enhanced-smartselfie-capture/utils/mediapipeManager.ts +215 -0
  104. package/lib/components/selfie/src/selfie-capture-wrapper/SelfieCaptureWrapper.tsx +24 -1
  105. package/lib/components/selfie/src/smartselfie-capture/SmartSelfieCapture.tsx +2 -2
  106. package/lib/components/selfie/src/smartselfie-capture/hooks/useFaceCapture.ts +15 -7
  107. package/lib/components/selfie/src/smartselfie-capture/utils/canvas.ts +4 -6
  108. package/lib/components/signature-pad/package.json +1 -1
  109. package/lib/components/smart-camera-web/src/README.md +11 -0
  110. package/lib/components/smart-camera-web/src/SmartCameraWeb.js +89 -8
  111. package/lib/components/totp-consent/src/TotpConsent.js +1 -1
  112. package/lib/domain/localisation/index.js +2 -2
  113. package/package.json +9 -5
  114. package/dist/esm/DocumentCaptureScreens-D2G0NOQr.js +0 -4147
  115. package/dist/esm/DocumentCaptureScreens-D2G0NOQr.js.map +0 -1
  116. package/dist/esm/EndUserConsent-uHfA3txP.js +0 -717
  117. package/dist/esm/EndUserConsent-uHfA3txP.js.map +0 -1
  118. package/dist/esm/Navigation-Bb7MPLE8.js.map +0 -1
  119. package/dist/esm/PoweredBySmileId-CxbaihMu.js.map +0 -1
  120. package/dist/esm/SelfieCaptureScreens-Dr7VzON7.js +0 -7651
  121. package/dist/esm/SelfieCaptureScreens-Dr7VzON7.js.map +0 -1
  122. package/dist/esm/TotpConsent-Depzg0ti.js +0 -734
  123. package/dist/esm/TotpConsent-Depzg0ti.js.map +0 -1
  124. package/dist/esm/index-C4RTMbgw.js +0 -1360
  125. package/dist/esm/package-D6YrpMcO.js +0 -565
  126. package/dist/esm/package-D6YrpMcO.js.map +0 -1
  127. package/dist/esm/styles-BTEClL7R.js +0 -419
  128. package/dist/esm/styles-BTEClL7R.js.map +0 -1
  129. /package/lib/components/document/src/assets/lottie/{taking photo of green book passport.lottie → greenbook.lottie} +0 -0
  130. /package/lib/components/document/src/assets/lottie/{taking photo of ID FLIP 2D.lottie → id-card-flip.lottie} +0 -0
  131. /package/lib/components/document/src/assets/lottie/{taking photo of ID.lottie → id-card.lottie} +0 -0
  132. /package/lib/components/document/src/assets/lottie/{taking photo of passport 2.lottie → passport.lottie} +0 -0
@@ -0,0 +1,2540 @@
1
+ import { t as Y } from "./index-BqyuTk9f.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 Y("camera.error.notAllowed");
68
+ case "AbortError":
69
+ return Y("camera.error.abort");
70
+ case "NotReadableError":
71
+ return Y("camera.error.notReadable");
72
+ case "NotFoundError":
73
+ return Y("camera.error.notFound");
74
+ case "TypeError":
75
+ return Y("camera.error.insecure");
76
+ default:
77
+ return e.message;
78
+ }
79
+ }
80
+ }
81
+ var s1, v, i0, M0, H, $1, s0, r0, a0, k1, C1, M1, n1 = {}, o0 = [], 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 x1(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 t1(t, o, i, r, null);
94
+ }
95
+ function t1(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 ?? ++i0, __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 _0(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 _0(t);
118
+ }
119
+ }
120
+ function T1(t) {
121
+ (!t.__d && (t.__d = !0) && H.push(t) && !c1.__r++ || $1 != v.debounceRendering) && (($1 = v.debounceRendering) || s0)(c1);
122
+ }
123
+ function c1() {
124
+ for (var t, e, n, i, r, a, o, l = 1; H.length; ) H.length > l && H.sort(r0), t = H.shift(), l = H.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), P1(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, h0(a, n, o), i.__e = i.__ = null, n.__e != r && _0(n)));
125
+ c1.__r = 0;
126
+ }
127
+ function l0(t, e, n, i, r, a, o, l, h, d, p) {
128
+ var _, g, m, C, O, M, w, b = i && i.__k || o0, T = e.length;
129
+ for (h = S0(n, e, b, h, T), _ = 0; _ < T; _++) (m = n.__k[_]) != null && (g = m.__i == -1 ? n1 : b[m.__i] || n1, m.__i = _, M = P1(t, m, g, r, a, o, l, h, d, p), C = m.__e, m.ref && g.ref != m.ref && (g.ref && O1(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 = d0(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 ? t1(null, o, null, null, null) : r1(o) ? t1(p1, { children: o }, null, null, null) : o.constructor === void 0 && o.__b > 0 ? t1(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)), u0(l, l));
136
+ return i;
137
+ }
138
+ function d0(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 = d0(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 R1(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 || R1(t.style, e, "");
171
+ if (n) for (e in n) i && n[e] == i[e] || R1(t.style, e, n[e]);
172
+ }
173
+ else if (e[0] == "o" && e[1] == "n") a = e != (e = e.replace(a0, "$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 = k1, t.addEventListener(e, a ? M1 : C1, a)) : t.removeEventListener(e, a ? M1 : C1, 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 z1(t) {
185
+ return function(e) {
186
+ if (this.l) {
187
+ var n = this.l[e.type + t];
188
+ if (e.t == null) e.t = k1++;
189
+ else if (e.t < n.u) return;
190
+ return n(v.event ? v.event(e) : e);
191
+ }
192
+ };
193
+ }
194
+ function P1(t, e, n, i, r, a, o, l, h, d) {
195
+ var p, _, g, m, C, O, M, w, b, T, R, a1, J, F1, o1, K, g1, 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, J = v.__r, F1 = 0, b) {
213
+ for (_.state = _.__s, _.__d = !1, J && J(e), p = _.render(_.props, _.state, _.context), o1 = 0; o1 < _._sb.length; o1++) _.__h.push(_._sb[o1]);
214
+ _._sb = [];
215
+ } else do
216
+ _.__d = !1, J && J(e), p = _.render(_.props, _.state, _.context), _.state = _.__s;
217
+ while (_.__d && ++F1 < 25);
218
+ _.state = _.__s, _.getChildContext != null && (i = $($({}, i), _.getChildContext())), b && !g && _.getSnapshotBeforeUpdate != null && (O = _.getSnapshotBeforeUpdate(m, C)), K = p, p != null && p.type === p1 && p.key == null && (K = c0(p.props.children)), l = l0(t, r1(K) ? K : [K], 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 (g1 = a.length; g1--; ) x1(a[g1]);
225
+ I1(e);
226
+ }
227
+ else e.__e = n.__e, e.__k = n.__k, G.then || I1(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 I1(t) {
234
+ t && t.__c && (t.__c.__e = !0), t && t.__k && t.__k.forEach(I1);
235
+ }
236
+ function h0(t, e, n) {
237
+ for (var i = 0; i < n.length; i++) O1(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 c0(t) {
249
+ return typeof t != "object" || t == null || t.__b && t.__b > 0 ? t : r1(t) ? t.map(c0) : $({}, 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 || n1, !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 = ""), l0(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--; ) x1(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 O1(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 u0(t, e, n) {
291
+ var i, r;
292
+ if (v.unmount && v.unmount(t), (i = t.ref) && (i.current && i.current != t.__e || O1(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] && u0(i[r], e, n || typeof t.type != "function");
301
+ n || x1(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 = [], P1(e, t = (!i && n || e).__k = q(p1, null, [t]), r || n1, n1, 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), h0(a, t, o);
309
+ }
310
+ function p0(t, e) {
311
+ m1(t, e, p0);
312
+ }
313
+ function m0(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), t1(t.type, l, i || t.key, r || t.ref, null);
317
+ }
318
+ s1 = o0.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
+ } }, i0 = 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), T1(this));
330
+ }, l1.prototype.forceUpdate = function(t) {
331
+ this.__v && (this.__e = !0, t && this.__h.push(t), T1(this));
332
+ }, l1.prototype.render = p1, H = [], s0 = typeof Promise == "function" ? Promise.prototype.then.bind(Promise.resolve()) : setTimeout, r0 = function(t, e) {
333
+ return t.__v.__b - e.__v.__b;
334
+ }, c1.__r = 0, a0 = /(PointerCapture)$|Capture$/i, k1 = 0, C1 = z1(!1), M1 = z1(!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 V, y, v1, U1, u1 = 0, f0 = [], L = v, H1 = L.__b, N1 = L.__r, B1 = L.diffed, W1 = L.__c, G1 = L.unmount, q1 = L.__;
345
+ function f1(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 = f1(V++, 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 = f1(V++, 3);
389
+ !L.__s && A1(n.__H, e) && (n.__ = t, n.u = e, y.__H.__h.push(n));
390
+ }
391
+ function g4(t, e) {
392
+ var n = f1(V++, 4);
393
+ !L.__s && A1(n.__H, e) && (n.__ = t, n.u = e, y.__h.push(n));
394
+ }
395
+ function v4(t) {
396
+ return u1 = 5, D0(function() {
397
+ return { current: t };
398
+ }, []);
399
+ }
400
+ function D0(t, e) {
401
+ var n = f1(V++, 7);
402
+ return A1(n.__H, e) && (n.__ = t(), n.__H = e, n.__h = t), n.__;
403
+ }
404
+ function F0() {
405
+ for (var t; t = f0.shift(); ) if (t.__P && t.__H) try {
406
+ t.__H.__h.forEach(d1), t.__H.__h.forEach(S1), t.__H.__h = [];
407
+ } catch (e) {
408
+ t.__H.__h = [], L.__e(e, t.__v);
409
+ }
410
+ }
411
+ L.__b = function(t) {
412
+ y = null, H1 && H1(t);
413
+ }, L.__ = function(t, e) {
414
+ t && e.__k && e.__k.__m && (t.__m = e.__k.__m), q1 && q1(t, e);
415
+ }, L.__r = function(t) {
416
+ N1 && N1(t), V = 0;
417
+ var e = (y = t.__c).__H;
418
+ e && (v1 === y ? (e.__h = [], y.__h = [], e.__.forEach(function(n) {
419
+ n.__N && (n.__ = n.__N), n.u = n.__N = void 0;
420
+ })) : (e.__h.forEach(d1), e.__h.forEach(S1), e.__h = [], V = 0)), v1 = y;
421
+ }, L.diffed = function(t) {
422
+ B1 && B1(t);
423
+ var e = t.__c;
424
+ e && e.__H && (e.__H.__h.length && (f0.push(e) !== 1 && U1 === L.requestAnimationFrame || ((U1 = L.requestAnimationFrame) || $0)(F0)), e.__H.__.forEach(function(n) {
425
+ n.u && (n.__H = n.u), n.u = void 0;
426
+ })), v1 = y = null;
427
+ }, L.__c = function(t, e) {
428
+ e.some(function(n) {
429
+ try {
430
+ n.__h.forEach(d1), n.__h = n.__h.filter(function(i) {
431
+ return !i.__ || S1(i);
432
+ });
433
+ } catch (i) {
434
+ e.some(function(r) {
435
+ r.__h && (r.__h = []);
436
+ }), e = [], L.__e(i, n.__v);
437
+ }
438
+ }), W1 && W1(t, e);
439
+ }, L.unmount = function(t) {
440
+ G1 && G1(t);
441
+ var e, n = t.__c;
442
+ n && n.__H && (n.__H.__.forEach(function(i) {
443
+ try {
444
+ d1(i);
445
+ } catch (r) {
446
+ e = r;
447
+ }
448
+ }), n.__H = void 0, e && L.__e(e, n.__v));
449
+ };
450
+ var j1 = typeof requestAnimationFrame == "function";
451
+ function $0(t) {
452
+ var e, n = function() {
453
+ clearTimeout(i), j1 && cancelAnimationFrame(e), setTimeout(t);
454
+ }, i = setTimeout(n, 35);
455
+ j1 && (e = requestAnimationFrame(n));
456
+ }
457
+ function d1(t) {
458
+ var e = y, n = t.__c;
459
+ typeof n == "function" && (t.__c = void 0, n()), y = e;
460
+ }
461
+ function S1(t) {
462
+ var e = y;
463
+ t.__c = t.__(), y = e;
464
+ }
465
+ function A1(t, e) {
466
+ return !t || t.length !== e.length || e.some(function(n, i) {
467
+ return n !== t[i];
468
+ });
469
+ }
470
+ function g0(t, e) {
471
+ return typeof e == "function" ? e(t) : e;
472
+ }
473
+ function D1() {
474
+ return (D1 = Object.assign ? Object.assign.bind() : function(t) {
475
+ for (var e = 1; e < arguments.length; e++) {
476
+ var n = arguments[e];
477
+ for (var i in n) Object.prototype.hasOwnProperty.call(n, i) && (t[i] = n[i]);
478
+ }
479
+ return t;
480
+ }).apply(this, arguments);
481
+ }
482
+ var T0 = ["context", "children"];
483
+ function R0(t) {
484
+ this.getChildContext = function() {
485
+ return t.context;
486
+ };
487
+ var e = t.children, n = (function(i, r) {
488
+ if (i == null) return {};
489
+ var a, o, l = {}, h = Object.keys(i);
490
+ for (o = 0; o < h.length; o++) r.indexOf(a = h[o]) >= 0 || (l[a] = i[a]);
491
+ return l;
492
+ })(t, T0);
493
+ return m0(e, n);
494
+ }
495
+ function z0() {
496
+ var t = new CustomEvent("_preact", { detail: {}, bubbles: !0, cancelable: !0 });
497
+ this.dispatchEvent(t), this._vdom = q(R0, D1({}, this._props, { context: t.detail.context }), (function e(n, i) {
498
+ if (n.nodeType === 3) return n.data;
499
+ if (n.nodeType !== 1) return null;
500
+ var r = [], a = {}, o = 0, l = n.attributes, h = n.childNodes;
501
+ for (o = l.length; o--; ) l[o].name !== "slot" && (a[l[o].name] = l[o].value, a[v0(l[o].name)] = l[o].value);
502
+ for (o = h.length; o--; ) {
503
+ var d = e(h[o], null), p = h[o].slot;
504
+ p ? a[p] = q(V1, { name: p }, d) : r[o] = d;
505
+ }
506
+ var _ = i ? q(V1, null, r) : r;
507
+ return q(i || n.nodeName.toLowerCase(), a, _);
508
+ })(this, this._vdomComponent)), (this.hasAttribute("hydrate") ? p0 : m1)(this._vdom, this._root);
509
+ }
510
+ function v0(t) {
511
+ return t.replace(/-(\w)/g, function(e, n) {
512
+ return n ? n.toUpperCase() : "";
513
+ });
514
+ }
515
+ function U0(t, e, n) {
516
+ if (this._vdom) {
517
+ var i = {};
518
+ i[t] = n = n ?? void 0, i[v0(t)] = n, this._vdom = m0(this._vdom, i), m1(this._vdom, this._root);
519
+ }
520
+ }
521
+ function H0() {
522
+ m1(this._vdom = null, this._root);
523
+ }
524
+ function V1(t, e) {
525
+ var n = this;
526
+ return q("slot", D1({}, t, { ref: function(i) {
527
+ i ? (n.ref = i, n._listener || (n._listener = function(r) {
528
+ r.stopPropagation(), r.detail.context = e;
529
+ }, i.addEventListener("_preact", n._listener))) : n.ref.removeEventListener("_preact", n._listener);
530
+ } }));
531
+ }
532
+ function w4(t, e, n, i) {
533
+ function r() {
534
+ var a = Reflect.construct(HTMLElement, [], r);
535
+ return a._vdomComponent = t, a._root = i && i.shadow ? a.attachShadow({ mode: i.mode || "open" }) : a, a;
536
+ }
537
+ return (r.prototype = Object.create(HTMLElement.prototype)).constructor = r, r.prototype.connectedCallback = z0, r.prototype.attributeChangedCallback = U0, r.prototype.disconnectedCallback = H0, n = n || t.observedAttributes || Object.keys(t.propTypes || {}), r.observedAttributes = n, n.forEach(function(a) {
538
+ Object.defineProperty(r.prototype, a, { get: function() {
539
+ return this._vdom.props[a];
540
+ }, set: function(o) {
541
+ this._vdom ? this.attributeChangedCallback(a, null, o) : (this._props || (this._props = {}), this._props[a] = o, this.connectedCallback());
542
+ var l = typeof o;
543
+ o != null && l !== "string" && l !== "boolean" && l !== "number" || this.setAttribute(a, o);
544
+ } });
545
+ }), customElements.define(e || t.tagName || t.displayName || t.name, r);
546
+ }
547
+ function i1(t) {
548
+ "@babel/helpers - typeof";
549
+ return i1 = typeof Symbol == "function" && typeof Symbol.iterator == "symbol" ? function(e) {
550
+ return typeof e;
551
+ } : function(e) {
552
+ return e && typeof Symbol == "function" && e.constructor === Symbol && e !== Symbol.prototype ? "symbol" : typeof e;
553
+ }, i1(t);
554
+ }
555
+ function N0(t, e) {
556
+ if (i1(t) != "object" || !t) return t;
557
+ var n = t[Symbol.toPrimitive];
558
+ if (n !== void 0) {
559
+ var i = n.call(t, e);
560
+ if (i1(i) != "object") return i;
561
+ throw TypeError("@@toPrimitive must return a primitive value.");
562
+ }
563
+ return (e === "string" ? String : Number)(t);
564
+ }
565
+ function B0(t) {
566
+ var e = N0(t, "string");
567
+ return i1(e) == "symbol" ? e : e + "";
568
+ }
569
+ function c(t, e, n) {
570
+ return (e = B0(e)) in t ? Object.defineProperty(t, e, { value: n, enumerable: !0, configurable: !0, writable: !0 }) : t[e] = n, t;
571
+ }
572
+ var W0 = class {
573
+ requestAnimationFrame(t) {
574
+ return requestAnimationFrame(t);
575
+ }
576
+ cancelAnimationFrame(t) {
577
+ cancelAnimationFrame(t);
578
+ }
579
+ }, G0 = class {
580
+ constructor() {
581
+ c(this, "_lastHandleId", 0), c(this, "_lastImmediate", null);
582
+ }
583
+ requestAnimationFrame(t) {
584
+ return this._lastHandleId >= 2 ** 53 - 1 && (this._lastHandleId = 0), this._lastHandleId += 1, this._lastImmediate = setImmediate(() => {
585
+ t(performance.now());
586
+ }), this._lastHandleId;
587
+ }
588
+ cancelAnimationFrame(t) {
589
+ this._lastImmediate && clearImmediate(this._lastImmediate);
590
+ }
591
+ }, q0 = class {
592
+ constructor() {
593
+ c(this, "_strategy", void 0), this._strategy = typeof requestAnimationFrame == "function" ? new W0() : new G0();
594
+ }
595
+ requestAnimationFrame(t) {
596
+ return this._strategy.requestAnimationFrame(t);
597
+ }
598
+ cancelAnimationFrame(t) {
599
+ this._strategy.cancelAnimationFrame(t);
600
+ }
601
+ };
602
+ const I = typeof window < "u" && window.document !== void 0, w1 = new Uint8Array([80, 75, 3, 4]), j0 = ["v", "ip", "op", "layers", "fr", "w", "h"], J1 = "0.72.1", K1 = "@lottiefiles/dotlottie-web";
603
+ let s;
604
+ const w0 = typeof TextDecoder < "u" ? new TextDecoder("utf-8", { ignoreBOM: !0, fatal: !0 }) : { decode: () => {
605
+ throw Error("TextDecoder not available");
606
+ } };
607
+ typeof TextDecoder < "u" && w0.decode();
608
+ let Q = null;
609
+ function e1() {
610
+ return (Q === null || Q.byteLength === 0) && (Q = new Uint8Array(s.memory.buffer)), Q;
611
+ }
612
+ function E(t, e) {
613
+ return t >>>= 0, w0.decode(e1().subarray(t, t + e));
614
+ }
615
+ function b0(t) {
616
+ let e = s.__externref_table_alloc_command_export();
617
+ return s.__wbindgen_export_3.set(e, t), e;
618
+ }
619
+ function V0(t, e) {
620
+ try {
621
+ return t.apply(this, e);
622
+ } catch (n) {
623
+ let i = b0(n);
624
+ s.__wbindgen_exn_store_command_export(i);
625
+ }
626
+ }
627
+ let u = 0;
628
+ const h1 = typeof TextEncoder < "u" ? new TextEncoder("utf-8") : { encode: () => {
629
+ throw Error("TextEncoder not available");
630
+ } }, J0 = typeof h1.encodeInto == "function" ? function(t, e) {
631
+ return h1.encodeInto(t, e);
632
+ } : function(t, e) {
633
+ let n = h1.encode(t);
634
+ return e.set(n), { read: t.length, written: n.length };
635
+ };
636
+ function f(t, e, n) {
637
+ if (n === void 0) {
638
+ let l = h1.encode(t), h = e(l.length, 1) >>> 0;
639
+ return e1().subarray(h, h + l.length).set(l), u = l.length, h;
640
+ }
641
+ let i = t.length, r = e(i, 1) >>> 0, a = e1(), o = 0;
642
+ for (; o < i; o++) {
643
+ let l = t.charCodeAt(o);
644
+ if (l > 127) break;
645
+ a[r + o] = l;
646
+ }
647
+ if (o !== i) {
648
+ o !== 0 && (t = t.slice(o)), r = n(r, i, i = o + t.length * 3, 1) >>> 0;
649
+ let l = e1().subarray(r + o, r + i), h = J0(t, l);
650
+ o += h.written, r = n(r, i, o, 1) >>> 0;
651
+ }
652
+ return u = o, r;
653
+ }
654
+ let U = null;
655
+ function X() {
656
+ return (U === null || U.buffer.detached === !0 || U.buffer.detached === void 0 && U.buffer !== s.memory.buffer) && (U = new DataView(s.memory.buffer)), U;
657
+ }
658
+ function K0(t) {
659
+ return t == null;
660
+ }
661
+ let Z = null;
662
+ function Y0() {
663
+ return (Z === null || Z.byteLength === 0) && (Z = new Float32Array(s.memory.buffer)), Z;
664
+ }
665
+ function Q0(t, e) {
666
+ let n = e(t.length * 4, 4) >>> 0;
667
+ return Y0().set(t, n / 4), u = t.length, n;
668
+ }
669
+ function E1(t, e) {
670
+ let n = e(t.length * 1, 1) >>> 0;
671
+ return e1().set(t, n / 1), u = t.length, n;
672
+ }
673
+ function X0(t, e) {
674
+ let n = e(t.length * 4, 4) >>> 0;
675
+ for (let i = 0; i < t.length; i++) {
676
+ let r = b0(t[i]);
677
+ X().setUint32(n + 4 * i, r, !0);
678
+ }
679
+ return u = t.length, n;
680
+ }
681
+ function Z0(t, e) {
682
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u, r = E1(e, s.__wbindgen_malloc_command_export), a = u;
683
+ return s.register_font(n, i, r, a) !== 0;
684
+ }
685
+ const B = Object.freeze({ Forward: 0, 0: "Forward", Reverse: 1, 1: "Reverse", Bounce: 2, 2: "Bounce", ReverseBounce: 3, 3: "ReverseBounce" }), Y1 = typeof FinalizationRegistry > "u" ? { register: () => {
686
+ }, unregister: () => {
687
+ } } : new FinalizationRegistry((t) => s.__wbg_dotlottieplayerwasm_free(t >>> 0, 1));
688
+ var t4 = class {
689
+ __destroy_into_raw() {
690
+ let t = this.__wbg_ptr;
691
+ return this.__wbg_ptr = 0, Y1.unregister(this), t;
692
+ }
693
+ free() {
694
+ let t = this.__destroy_into_raw();
695
+ s.__wbg_dotlottieplayerwasm_free(t, 0);
696
+ }
697
+ clear_slot(t) {
698
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
699
+ return s.dotlottieplayerwasm_clear_slot(this.__wbg_ptr, e, n) !== 0;
700
+ }
701
+ is_playing() {
702
+ return s.dotlottieplayerwasm_is_playing(this.__wbg_ptr) !== 0;
703
+ }
704
+ is_stopped() {
705
+ return s.dotlottieplayerwasm_is_stopped(this.__wbg_ptr) !== 0;
706
+ }
707
+ layout_fit() {
708
+ let t, e;
709
+ try {
710
+ let n = s.dotlottieplayerwasm_layout_fit(this.__wbg_ptr);
711
+ return t = n[0], e = n[1], E(n[0], n[1]);
712
+ } finally {
713
+ s.__wbindgen_free_command_export(t, e, 1);
714
+ }
715
+ }
716
+ loop_count() {
717
+ return s.dotlottieplayerwasm_loop_count(this.__wbg_ptr) >>> 0;
718
+ }
719
+ poll_event() {
720
+ return s.dotlottieplayerwasm_poll_event(this.__wbg_ptr);
721
+ }
722
+ reset_slot(t) {
723
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
724
+ return s.dotlottieplayerwasm_reset_slot(this.__wbg_ptr, e, n) !== 0;
725
+ }
726
+ set_layout(t, e, n) {
727
+ let i = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), r = u;
728
+ return s.dotlottieplayerwasm_set_layout(this.__wbg_ptr, i, r, e, n) !== 0;
729
+ }
730
+ set_marker(t) {
731
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
732
+ s.dotlottieplayerwasm_set_marker(this.__wbg_ptr, e, n);
733
+ }
734
+ clear_slots() {
735
+ return s.dotlottieplayerwasm_clear_slots(this.__wbg_ptr) !== 0;
736
+ }
737
+ is_complete() {
738
+ return s.dotlottieplayerwasm_is_complete(this.__wbg_ptr) !== 0;
739
+ }
740
+ is_tweening() {
741
+ return s.dotlottieplayerwasm_is_tweening(this.__wbg_ptr) !== 0;
742
+ }
743
+ reset_slots() {
744
+ return s.dotlottieplayerwasm_reset_slots(this.__wbg_ptr) !== 0;
745
+ }
746
+ reset_theme() {
747
+ return s.dotlottieplayerwasm_reset_theme(this.__wbg_ptr) !== 0;
748
+ }
749
+ segment_end() {
750
+ return s.dotlottieplayerwasm_segment_end(this.__wbg_ptr);
751
+ }
752
+ set_quality(t) {
753
+ return s.dotlottieplayerwasm_set_quality(this.__wbg_ptr, t) !== 0;
754
+ }
755
+ set_segment(t, e) {
756
+ return s.dotlottieplayerwasm_set_segment(this.__wbg_ptr, t, e) !== 0;
757
+ }
758
+ static unload_font(t) {
759
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
760
+ return s.dotlottieplayerwasm_unload_font(e, n) !== 0;
761
+ }
762
+ animation_id() {
763
+ let t = s.dotlottieplayerwasm_animation_id(this.__wbg_ptr), e;
764
+ return t[0] !== 0 && (e = E(t[0], t[1]).slice(), s.__wbindgen_free_command_export(t[0], t[1] * 1, 1)), e;
765
+ }
766
+ audio_volume() {
767
+ return s.dotlottieplayerwasm_audio_volume(this.__wbg_ptr);
768
+ }
769
+ background_a() {
770
+ return s.dotlottieplayerwasm_background_a(this.__wbg_ptr);
771
+ }
772
+ background_b() {
773
+ return s.dotlottieplayerwasm_background_b(this.__wbg_ptr);
774
+ }
775
+ background_g() {
776
+ return s.dotlottieplayerwasm_background_g(this.__wbg_ptr);
777
+ }
778
+ background_r() {
779
+ return s.dotlottieplayerwasm_background_r(this.__wbg_ptr);
780
+ }
781
+ clear_marker() {
782
+ s.dotlottieplayerwasm_clear_marker(this.__wbg_ptr);
783
+ }
784
+ emit_on_loop() {
785
+ s.dotlottieplayerwasm_emit_on_loop(this.__wbg_ptr);
786
+ }
787
+ get_slot_ids() {
788
+ return s.dotlottieplayerwasm_get_slot_ids(this.__wbg_ptr);
789
+ }
790
+ get_slot_str(t) {
791
+ 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;
792
+ return i[0] !== 0 && (r = E(i[0], i[1]).slice(), s.__wbindgen_free_command_export(i[0], i[1] * 1, 1)), r;
793
+ }
794
+ marker_names() {
795
+ return s.dotlottieplayerwasm_marker_names(this.__wbg_ptr);
796
+ }
797
+ set_autoplay(t) {
798
+ s.dotlottieplayerwasm_set_autoplay(this.__wbg_ptr, t);
799
+ }
800
+ set_slot_str(t, e) {
801
+ 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;
802
+ return s.dotlottieplayerwasm_set_slot_str(this.__wbg_ptr, n, i, r, a) !== 0;
803
+ }
804
+ set_viewport(t, e, n, i) {
805
+ return s.dotlottieplayerwasm_set_viewport(this.__wbg_ptr, t, e, n, i) !== 0;
806
+ }
807
+ total_frames() {
808
+ return s.dotlottieplayerwasm_total_frames(this.__wbg_ptr);
809
+ }
810
+ clear_segment() {
811
+ return s.dotlottieplayerwasm_clear_segment(this.__wbg_ptr) !== 0;
812
+ }
813
+ current_frame() {
814
+ return s.dotlottieplayerwasm_current_frame(this.__wbg_ptr);
815
+ }
816
+ get_slot_type(t) {
817
+ 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;
818
+ return i[0] !== 0 && (r = E(i[0], i[1]).slice(), s.__wbindgen_free_command_export(i[0], i[1] * 1, 1)), r;
819
+ }
820
+ get_slots_str() {
821
+ let t, e;
822
+ try {
823
+ let n = s.dotlottieplayerwasm_get_slots_str(this.__wbg_ptr);
824
+ return t = n[0], e = n[1], E(n[0], n[1]);
825
+ } finally {
826
+ s.__wbindgen_free_command_export(t, e, 1);
827
+ }
828
+ }
829
+ get_transform() {
830
+ return s.dotlottieplayerwasm_get_transform(this.__wbg_ptr);
831
+ }
832
+ segment_start() {
833
+ return s.dotlottieplayerwasm_segment_start(this.__wbg_ptr);
834
+ }
835
+ set_slots_str(t) {
836
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
837
+ return s.dotlottieplayerwasm_set_slots_str(this.__wbg_ptr, e, n) !== 0;
838
+ }
839
+ set_text_slot(t, e) {
840
+ 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;
841
+ return s.dotlottieplayerwasm_set_text_slot(this.__wbg_ptr, n, i, r, a) !== 0;
842
+ }
843
+ set_transform(t) {
844
+ let e = Q0(t, s.__wbindgen_malloc_command_export), n = u;
845
+ return s.dotlottieplayerwasm_set_transform(this.__wbg_ptr, e, n) !== 0;
846
+ }
847
+ sm_get_inputs() {
848
+ return s.dotlottieplayerwasm_sm_get_inputs(this.__wbg_ptr);
849
+ }
850
+ sm_poll_event() {
851
+ return s.dotlottieplayerwasm_sm_poll_event(this.__wbg_ptr);
852
+ }
853
+ sm_post_click(t, e) {
854
+ s.dotlottieplayerwasm_sm_post_click(this.__wbg_ptr, t, e);
855
+ }
856
+ animation_size() {
857
+ return s.dotlottieplayerwasm_animation_size(this.__wbg_ptr);
858
+ }
859
+ current_marker() {
860
+ let t = s.dotlottieplayerwasm_current_marker(this.__wbg_ptr), e;
861
+ return t[0] !== 0 && (e = E(t[0], t[1]).slice(), s.__wbindgen_free_command_export(t[0], t[1] * 1, 1)), e;
862
+ }
863
+ layout_align_x() {
864
+ return s.dotlottieplayerwasm_layout_align_x(this.__wbg_ptr);
865
+ }
866
+ layout_align_y() {
867
+ return s.dotlottieplayerwasm_layout_align_y(this.__wbg_ptr);
868
+ }
869
+ load_animation(t) {
870
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
871
+ return s.dotlottieplayerwasm_load_animation(this.__wbg_ptr, e, n) !== 0;
872
+ }
873
+ loop_animation() {
874
+ return s.dotlottieplayerwasm_loop_animation(this.__wbg_ptr) !== 0;
875
+ }
876
+ set_background(t, e, n, i) {
877
+ return s.dotlottieplayerwasm_set_background(this.__wbg_ptr, t, e, n, i) !== 0;
878
+ }
879
+ set_color_slot(t, e, n, i) {
880
+ let r = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), a = u;
881
+ return s.dotlottieplayerwasm_set_color_slot(this.__wbg_ptr, r, a, e, n, i) !== 0;
882
+ }
883
+ set_loop_count(t) {
884
+ s.dotlottieplayerwasm_set_loop_count(this.__wbg_ptr, t);
885
+ }
886
+ set_theme_data(t) {
887
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
888
+ return s.dotlottieplayerwasm_set_theme_data(this.__wbg_ptr, e, n) !== 0;
889
+ }
890
+ sm_reset_input(t) {
891
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
892
+ s.dotlottieplayerwasm_sm_reset_input(this.__wbg_ptr, e, n);
893
+ }
894
+ manifest_string() {
895
+ let t, e;
896
+ try {
897
+ let n = s.dotlottieplayerwasm_manifest_string(this.__wbg_ptr);
898
+ return t = n[0], e = n[1], E(n[0], n[1]);
899
+ } finally {
900
+ s.__wbindgen_free_command_export(t, e, 1);
901
+ }
902
+ }
903
+ set_scalar_slot(t, e) {
904
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u;
905
+ return s.dotlottieplayerwasm_set_scalar_slot(this.__wbg_ptr, n, i, e) !== 0;
906
+ }
907
+ set_vector_slot(t, e, n) {
908
+ let i = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), r = u;
909
+ return s.dotlottieplayerwasm_set_vector_slot(this.__wbg_ptr, i, r, e, n) !== 0;
910
+ }
911
+ setup_sw_target(t, e) {
912
+ return s.dotlottieplayerwasm_setup_sw_target(this.__wbg_ptr, t, e) !== 0;
913
+ }
914
+ get_pixel_buffer() {
915
+ return s.dotlottieplayerwasm_get_pixel_buffer(this.__wbg_ptr);
916
+ }
917
+ set_audio_volume(t) {
918
+ s.dotlottieplayerwasm_set_audio_volume(this.__wbg_ptr, t);
919
+ }
920
+ sm_current_state() {
921
+ let t, e;
922
+ try {
923
+ let n = s.dotlottieplayerwasm_sm_current_state(this.__wbg_ptr);
924
+ return t = n[0], e = n[1], E(n[0], n[1]);
925
+ } finally {
926
+ s.__wbindgen_free_command_export(t, e, 1);
927
+ }
928
+ }
929
+ state_machine_id() {
930
+ let t = s.dotlottieplayerwasm_state_machine_id(this.__wbg_ptr), e;
931
+ return t[0] !== 0 && (e = E(t[0], t[1]).slice(), s.__wbindgen_free_command_export(t[0], t[1] * 1, 1)), e;
932
+ }
933
+ get_state_machine(t) {
934
+ 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;
935
+ return i[0] !== 0 && (r = E(i[0], i[1]).slice(), s.__wbindgen_free_command_export(i[0], i[1] * 1, 1)), r;
936
+ }
937
+ set_position_slot(t, e, n) {
938
+ let i = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), r = u;
939
+ return s.dotlottieplayerwasm_set_position_slot(this.__wbg_ptr, i, r, e, n) !== 0;
940
+ }
941
+ current_loop_count() {
942
+ return s.dotlottieplayerwasm_current_loop_count(this.__wbg_ptr) >>> 0;
943
+ }
944
+ sm_framework_setup() {
945
+ return s.dotlottieplayerwasm_sm_framework_setup(this.__wbg_ptr);
946
+ }
947
+ sm_post_pointer_up(t, e) {
948
+ s.dotlottieplayerwasm_sm_post_pointer_up(this.__wbg_ptr, t, e);
949
+ }
950
+ state_machine_load(t) {
951
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
952
+ return s.dotlottieplayerwasm_state_machine_load(this.__wbg_ptr, e, n) !== 0;
953
+ }
954
+ load_dotlottie_data(t) {
955
+ let e = E1(t, s.__wbindgen_malloc_command_export), n = u;
956
+ return s.dotlottieplayerwasm_load_dotlottie_data(this.__wbg_ptr, e, n) !== 0;
957
+ }
958
+ sm_get_string_input(t) {
959
+ 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;
960
+ return i[0] !== 0 && (r = E(i[0], i[1]).slice(), s.__wbindgen_free_command_export(i[0], i[1] * 1, 1)), r;
961
+ }
962
+ sm_set_string_input(t, e) {
963
+ 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;
964
+ return s.dotlottieplayerwasm_sm_set_string_input(this.__wbg_ptr, n, i, r, a) !== 0;
965
+ }
966
+ sm_get_boolean_input(t) {
967
+ 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);
968
+ return i === 16777215 ? void 0 : i !== 0;
969
+ }
970
+ sm_get_numeric_input(t) {
971
+ 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);
972
+ return i === 4294967297 ? void 0 : i;
973
+ }
974
+ sm_post_pointer_down(t, e) {
975
+ s.dotlottieplayerwasm_sm_post_pointer_down(this.__wbg_ptr, t, e);
976
+ }
977
+ sm_post_pointer_exit(t, e) {
978
+ s.dotlottieplayerwasm_sm_post_pointer_exit(this.__wbg_ptr, t, e);
979
+ }
980
+ sm_post_pointer_move(t, e) {
981
+ s.dotlottieplayerwasm_sm_post_pointer_move(this.__wbg_ptr, t, e);
982
+ }
983
+ sm_set_boolean_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_boolean_input(this.__wbg_ptr, n, i, e) !== 0;
986
+ }
987
+ sm_set_numeric_input(t, e) {
988
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u;
989
+ return s.dotlottieplayerwasm_sm_set_numeric_input(this.__wbg_ptr, n, i, e) !== 0;
990
+ }
991
+ state_machine_unload() {
992
+ s.dotlottieplayerwasm_state_machine_unload(this.__wbg_ptr);
993
+ }
994
+ sm_post_pointer_enter(t, e) {
995
+ s.dotlottieplayerwasm_sm_post_pointer_enter(this.__wbg_ptr, t, e);
996
+ }
997
+ load_animation_from_id(t) {
998
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
999
+ return s.dotlottieplayerwasm_load_animation_from_id(this.__wbg_ptr, e, n) !== 0;
1000
+ }
1001
+ sm_poll_internal_event() {
1002
+ return s.dotlottieplayerwasm_sm_poll_internal_event(this.__wbg_ptr);
1003
+ }
1004
+ use_frame_interpolation() {
1005
+ return s.dotlottieplayerwasm_use_frame_interpolation(this.__wbg_ptr) !== 0;
1006
+ }
1007
+ reset_current_loop_count() {
1008
+ s.dotlottieplayerwasm_reset_current_loop_count(this.__wbg_ptr);
1009
+ }
1010
+ sm_override_current_state(t, e) {
1011
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u;
1012
+ return s.dotlottieplayerwasm_sm_override_current_state(this.__wbg_ptr, n, i, e) !== 0;
1013
+ }
1014
+ state_machine_load_from_id(t) {
1015
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
1016
+ return s.dotlottieplayerwasm_state_machine_load_from_id(this.__wbg_ptr, e, n) !== 0;
1017
+ }
1018
+ set_use_frame_interpolation(t) {
1019
+ s.dotlottieplayerwasm_set_use_frame_interpolation(this.__wbg_ptr, t);
1020
+ }
1021
+ constructor() {
1022
+ let t = s.dotlottieplayerwasm_new();
1023
+ return this.__wbg_ptr = t >>> 0, Y1.register(this, this.__wbg_ptr, this), this;
1024
+ }
1025
+ mode() {
1026
+ return s.dotlottieplayerwasm_mode(this.__wbg_ptr);
1027
+ }
1028
+ play() {
1029
+ return s.dotlottieplayerwasm_play(this.__wbg_ptr) !== 0;
1030
+ }
1031
+ stop() {
1032
+ return s.dotlottieplayerwasm_stop(this.__wbg_ptr) !== 0;
1033
+ }
1034
+ tick(t) {
1035
+ return s.dotlottieplayerwasm_tick(this.__wbg_ptr, t) !== 0;
1036
+ }
1037
+ pause() {
1038
+ return s.dotlottieplayerwasm_pause(this.__wbg_ptr) !== 0;
1039
+ }
1040
+ speed() {
1041
+ return s.dotlottieplayerwasm_speed(this.__wbg_ptr);
1042
+ }
1043
+ width() {
1044
+ return s.dotlottieplayerwasm_width(this.__wbg_ptr) >>> 0;
1045
+ }
1046
+ height() {
1047
+ return s.dotlottieplayerwasm_height(this.__wbg_ptr) >>> 0;
1048
+ }
1049
+ render() {
1050
+ return s.dotlottieplayerwasm_render(this.__wbg_ptr) !== 0;
1051
+ }
1052
+ markers() {
1053
+ return s.dotlottieplayerwasm_markers(this.__wbg_ptr);
1054
+ }
1055
+ sm_fire(t) {
1056
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
1057
+ return s.dotlottieplayerwasm_sm_fire(this.__wbg_ptr, e, n) !== 0;
1058
+ }
1059
+ sm_stop() {
1060
+ return s.dotlottieplayerwasm_sm_stop(this.__wbg_ptr) !== 0;
1061
+ }
1062
+ sm_tick(t) {
1063
+ return s.dotlottieplayerwasm_sm_tick(this.__wbg_ptr, t) !== 0;
1064
+ }
1065
+ autoplay() {
1066
+ return s.dotlottieplayerwasm_autoplay(this.__wbg_ptr) !== 0;
1067
+ }
1068
+ duration() {
1069
+ return s.dotlottieplayerwasm_duration(this.__wbg_ptr);
1070
+ }
1071
+ set_loop(t) {
1072
+ s.dotlottieplayerwasm_set_loop(this.__wbg_ptr, t);
1073
+ }
1074
+ set_mode(t) {
1075
+ s.dotlottieplayerwasm_set_mode(this.__wbg_ptr, t);
1076
+ }
1077
+ sm_start(t, e) {
1078
+ let n = X0(e, s.__wbindgen_malloc_command_export), i = u;
1079
+ return s.dotlottieplayerwasm_sm_start(this.__wbg_ptr, t, n, i) !== 0;
1080
+ }
1081
+ theme_id() {
1082
+ let t = s.dotlottieplayerwasm_theme_id(this.__wbg_ptr), e;
1083
+ return t[0] !== 0 && (e = E(t[0], t[1]).slice(), s.__wbindgen_free_command_export(t[0], t[1] * 1, 1)), e;
1084
+ }
1085
+ is_loaded() {
1086
+ return s.dotlottieplayerwasm_is_loaded(this.__wbg_ptr) !== 0;
1087
+ }
1088
+ is_paused() {
1089
+ return s.dotlottieplayerwasm_is_paused(this.__wbg_ptr) !== 0;
1090
+ }
1091
+ load_font(t, e) {
1092
+ let n = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), i = u, r = E1(e, s.__wbindgen_malloc_command_export), a = u;
1093
+ return s.dotlottieplayerwasm_load_font(this.__wbg_ptr, n, i, r, a) !== 0;
1094
+ }
1095
+ set_frame(t) {
1096
+ return s.dotlottieplayerwasm_set_frame(this.__wbg_ptr, t) !== 0;
1097
+ }
1098
+ set_speed(t) {
1099
+ s.dotlottieplayerwasm_set_speed(this.__wbg_ptr, t);
1100
+ }
1101
+ set_theme(t) {
1102
+ let e = f(t, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), n = u;
1103
+ return s.dotlottieplayerwasm_set_theme(this.__wbg_ptr, e, n) !== 0;
1104
+ }
1105
+ sm_status() {
1106
+ let t, e;
1107
+ try {
1108
+ let n = s.dotlottieplayerwasm_sm_status(this.__wbg_ptr);
1109
+ return t = n[0], e = n[1], E(n[0], n[1]);
1110
+ } finally {
1111
+ s.__wbindgen_free_command_export(t, e, 1);
1112
+ }
1113
+ }
1114
+ };
1115
+ async function e4(t, e) {
1116
+ if (typeof Response == "function" && t instanceof Response) {
1117
+ if (typeof WebAssembly.instantiateStreaming == "function") try {
1118
+ return await WebAssembly.instantiateStreaming(t, e);
1119
+ } catch (i) {
1120
+ 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);
1121
+ else throw i;
1122
+ }
1123
+ let n = await t.arrayBuffer();
1124
+ return await WebAssembly.instantiate(n, e);
1125
+ } else {
1126
+ let n = await WebAssembly.instantiate(t, e);
1127
+ return n instanceof WebAssembly.Instance ? { instance: n, module: t } : n;
1128
+ }
1129
+ }
1130
+ function n4() {
1131
+ let t = {};
1132
+ return t.wbg = {}, t.wbg.__wbg_buffer_609cc3eee51ed158 = function(e) {
1133
+ return e.buffer;
1134
+ }, t.wbg.__wbg_error_7534b8e9a36f1ab4 = function(e, n) {
1135
+ let i, r;
1136
+ try {
1137
+ i = e, r = n, console.error(E(e, n));
1138
+ } finally {
1139
+ s.__wbindgen_free_command_export(i, r, 1);
1140
+ }
1141
+ }, t.wbg.__wbg_new_405e22f390576ce2 = function() {
1142
+ return {};
1143
+ }, t.wbg.__wbg_new_78feb108b6472713 = function() {
1144
+ return [];
1145
+ }, t.wbg.__wbg_new_8a6f238a6ece86ea = function() {
1146
+ return Error();
1147
+ }, t.wbg.__wbg_newwithbyteoffsetandlength_d97e637ebe145a9a = function(e, n, i) {
1148
+ return new Uint8Array(e, n >>> 0, i >>> 0);
1149
+ }, t.wbg.__wbg_newwithlength_5a5efe313cfd59f1 = function(e) {
1150
+ return new Float32Array(e >>> 0);
1151
+ }, t.wbg.__wbg_push_737cfc8c1432c2c6 = function(e, n) {
1152
+ return e.push(n);
1153
+ }, t.wbg.__wbg_set_bb8cecf6a62b9f46 = function() {
1154
+ return V0(function(e, n, i) {
1155
+ return Reflect.set(e, n, i);
1156
+ }, arguments);
1157
+ }, t.wbg.__wbg_setindex_4e73afdcd9bb95cd = function(e, n, i) {
1158
+ e[n >>> 0] = i;
1159
+ }, t.wbg.__wbg_stack_0ed75d68575b0f3c = function(e, n) {
1160
+ let i = n.stack, r = f(i, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), a = u;
1161
+ X().setInt32(e + 4, a, !0), X().setInt32(e + 0, r, !0);
1162
+ }, t.wbg.__wbindgen_init_externref_table = function() {
1163
+ let e = s.__wbindgen_export_3, n = e.grow(4);
1164
+ 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);
1165
+ }, t.wbg.__wbindgen_memory = function() {
1166
+ return s.memory;
1167
+ }, t.wbg.__wbindgen_number_new = function(e) {
1168
+ return e;
1169
+ }, t.wbg.__wbindgen_string_get = function(e, n) {
1170
+ let i = n, r = typeof i == "string" ? i : void 0;
1171
+ var a = K0(r) ? 0 : f(r, s.__wbindgen_malloc_command_export, s.__wbindgen_realloc_command_export), o = u;
1172
+ X().setInt32(e + 4, o, !0), X().setInt32(e + 0, a, !0);
1173
+ }, t.wbg.__wbindgen_string_new = function(e, n) {
1174
+ return E(e, n);
1175
+ }, t.wbg.__wbindgen_throw = function(e, n) {
1176
+ throw Error(E(e, n));
1177
+ }, t;
1178
+ }
1179
+ function i4(t, e) {
1180
+ return s = t.exports, y0.__wbindgen_wasm_module = e, U = null, Z = null, Q = null, s.__wbindgen_start(), s;
1181
+ }
1182
+ async function y0(t) {
1183
+ if (s !== void 0) return s;
1184
+ 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().");
1185
+ let e = n4();
1186
+ (typeof t == "string" || typeof Request == "function" && t instanceof Request || typeof URL == "function" && t instanceof URL) && (t = fetch(t));
1187
+ let { instance: n, module: i } = await e4(await t, e);
1188
+ return i4(n, i);
1189
+ }
1190
+ var L0 = class {
1191
+ constructor() {
1192
+ c(this, "_eventListeners", /* @__PURE__ */ new Map());
1193
+ }
1194
+ addEventListener(t, e) {
1195
+ let n = this._eventListeners.get(t);
1196
+ n || (n = /* @__PURE__ */ new Set(), this._eventListeners.set(t, n)), n.add(e);
1197
+ }
1198
+ removeEventListener(t, e) {
1199
+ let n = this._eventListeners.get(t);
1200
+ n && (e ? (n.delete(e), n.size === 0 && this._eventListeners.delete(t)) : this._eventListeners.delete(t));
1201
+ }
1202
+ dispatch(t) {
1203
+ this._eventListeners.get(t.type)?.forEach((e) => e(t));
1204
+ }
1205
+ removeAllEventListeners() {
1206
+ this._eventListeners.clear();
1207
+ }
1208
+ }, A = class k {
1209
+ static _initializeObserver() {
1210
+ k._observer || (k._observer = new IntersectionObserver((e) => {
1211
+ e.forEach((n) => {
1212
+ let i = k._observedCanvases.get(n.target);
1213
+ i && (n.isIntersecting ? i.unfreeze() : i.freeze());
1214
+ });
1215
+ }, { threshold: 0 }));
1216
+ }
1217
+ static observe(e, n) {
1218
+ k._initializeObserver(), !k._observedCanvases.has(e) && (k._observedCanvases.set(e, n), k._observer?.observe(e));
1219
+ }
1220
+ static unobserve(e) {
1221
+ k._observer?.unobserve(e), k._observedCanvases.delete(e), k._observedCanvases.size === 0 && (k._observer?.disconnect(), k._observer = null);
1222
+ }
1223
+ };
1224
+ c(A, "_observer", null), c(A, "_observedCanvases", /* @__PURE__ */ new Map());
1225
+ var D = class S {
1226
+ static _initializeObserver() {
1227
+ S._observer || (S._observer = new ResizeObserver((e) => {
1228
+ e.forEach((n) => {
1229
+ let i = S._observedCanvases.get(n.target);
1230
+ if (!i) return;
1231
+ let [r, a] = i;
1232
+ clearTimeout(a);
1233
+ let o = setTimeout(() => {
1234
+ r.resize();
1235
+ }, 100);
1236
+ S._observedCanvases.set(n.target, [r, o]);
1237
+ });
1238
+ }));
1239
+ }
1240
+ static observe(e, n) {
1241
+ S._initializeObserver(), !S._observedCanvases.has(e) && (S._observedCanvases.set(e, [n, 0]), S._observer?.observe(e));
1242
+ }
1243
+ static unobserve(e) {
1244
+ let n = S._observedCanvases.get(e);
1245
+ if (n) {
1246
+ let i = n[1];
1247
+ i && clearTimeout(i);
1248
+ }
1249
+ S._observer?.unobserve(e), S._observedCanvases.delete(e), !S._observedCanvases.size && S._observer && (S._observer.disconnect(), S._observer = null);
1250
+ }
1251
+ };
1252
+ c(D, "_observer", null), c(D, "_observedCanvases", /* @__PURE__ */ new Map());
1253
+ function s4(t) {
1254
+ return /^#([\da-f]{6}|[\da-f]{8})$/iu.test(t);
1255
+ }
1256
+ function r4(t) {
1257
+ if (!s4(t)) return [0, 0, 0, 0];
1258
+ let e = t.replace("#", "");
1259
+ 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];
1260
+ }
1261
+ function Q1(t) {
1262
+ if (t.byteLength < 4) return !1;
1263
+ let e = new Uint8Array(t.slice(0, w1.byteLength));
1264
+ for (let n = 0; n < w1.length; n += 1) if (w1[n] !== e[n]) return !1;
1265
+ return !0;
1266
+ }
1267
+ function X1(t) {
1268
+ return j0.every((e) => Object.hasOwn(t, e));
1269
+ }
1270
+ function Z1(t) {
1271
+ if (typeof t == "string") try {
1272
+ return X1(JSON.parse(t));
1273
+ } catch {
1274
+ return !1;
1275
+ }
1276
+ else return X1(t);
1277
+ }
1278
+ function N() {
1279
+ return 1 + ((I ? window.devicePixelRatio : 1) - 1) * 0.75;
1280
+ }
1281
+ function W(t) {
1282
+ let e = t.getBoundingClientRect(), n = window.innerHeight || document.documentElement.clientHeight, i = window.innerWidth || document.documentElement.clientWidth;
1283
+ return !(e.bottom < 0 || e.top > n || e.right < 0 || e.left > i);
1284
+ }
1285
+ function P(t) {
1286
+ let e = t.target;
1287
+ if (e instanceof HTMLCanvasElement) {
1288
+ let n = e.getBoundingClientRect();
1289
+ if (n.width === 0 || n.height === 0 || e.width === 0 || e.height === 0) return null;
1290
+ let i = e.width / n.width, r = e.height / n.height, a = (t.clientX - n.left) * i, o = (t.clientY - n.top) * r;
1291
+ return !Number.isFinite(a) || !Number.isFinite(o) || Number.isNaN(a) || Number.isNaN(o) ? null : { x: a, y: o };
1292
+ }
1293
+ return null;
1294
+ }
1295
+ function C0(t) {
1296
+ let e = t.replace("OpenUrl: ", ""), n = e.indexOf(" | Target: "), i, r;
1297
+ n === -1 ? (i = e, r = "_blank") : (i = e.substring(0, n), r = e.substring(n + 11)), window.open(i, r);
1298
+ }
1299
+ function a4(t, e, n) {
1300
+ let i = null, r = e;
1301
+ async function a(l) {
1302
+ await t({ module_or_path: l });
1303
+ }
1304
+ async function o(l) {
1305
+ let h = await fetch(l);
1306
+ if (!h.ok) throw Error(`fetch ${l} responded with ${h.status} ${h.statusText}`);
1307
+ await t({ module_or_path: await h.arrayBuffer() });
1308
+ }
1309
+ return { load() {
1310
+ if (!i) {
1311
+ let l = r, h = n;
1312
+ i = (async () => {
1313
+ let d, p;
1314
+ try {
1315
+ await a(l);
1316
+ return;
1317
+ } catch (_) {
1318
+ d = _, console.warn(`Primary WASM load failed from ${l}: ${_.message}`), console.warn(`Attempting to load WASM from backup URL: ${h}`);
1319
+ }
1320
+ try {
1321
+ await a(h);
1322
+ return;
1323
+ } catch (_) {
1324
+ p = _, console.warn(`Backup WASM load failed from ${h}: ${_.message}`);
1325
+ }
1326
+ console.warn("Retrying WASM load with buffered instantiation");
1327
+ try {
1328
+ await o(l);
1329
+ return;
1330
+ } catch (_) {
1331
+ console.warn(`Buffered WASM load from ${l} failed: ${_.message}`);
1332
+ }
1333
+ try {
1334
+ await o(h);
1335
+ return;
1336
+ } catch (_) {
1337
+ 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.");
1338
+ }
1339
+ })();
1340
+ }
1341
+ return i;
1342
+ }, setWasmUrl(l) {
1343
+ l !== r && (r = l, i = null);
1344
+ } };
1345
+ }
1346
+ const b1 = a4(y0, `https://cdn.jsdelivr.net/npm/${K1}@${J1}/dist/dotlottie-player.wasm`, `https://unpkg.com/${K1}@${J1}/dist/dotlottie-player.wasm`), y1 = (t) => {
1347
+ switch (t) {
1348
+ case "reverse":
1349
+ return B.Reverse;
1350
+ case "bounce":
1351
+ return B.Bounce;
1352
+ case "reverse-bounce":
1353
+ return B.ReverseBounce;
1354
+ default:
1355
+ return B.Forward;
1356
+ }
1357
+ }, t0 = (t) => {
1358
+ switch (t) {
1359
+ case B.Reverse:
1360
+ return "reverse";
1361
+ case B.Bounce:
1362
+ return "bounce";
1363
+ case B.ReverseBounce:
1364
+ return "reverse-bounce";
1365
+ default:
1366
+ return "forward";
1367
+ }
1368
+ }, o4 = (t) => {
1369
+ switch (t) {
1370
+ case "contain":
1371
+ return "contain";
1372
+ case "cover":
1373
+ return "cover";
1374
+ case "fill":
1375
+ return "fill";
1376
+ case "fit-height":
1377
+ return "fit-height";
1378
+ case "fit-width":
1379
+ return "fit-width";
1380
+ case "none":
1381
+ return "none";
1382
+ default:
1383
+ return "contain";
1384
+ }
1385
+ };
1386
+ var b4 = class {
1387
+ constructor(t) {
1388
+ 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 || N(), freezeOnOffscreen: t.renderConfig?.freezeOnOffscreen ?? !0 }, this._initWasm().then(() => {
1389
+ 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(y1(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);
1390
+ }).catch((e) => {
1391
+ console.error("[dotlottie-web] Initialization failed:", e), this._eventManager.dispatch({ type: "loadError", error: Error(`Failed to load wasm module: ${e}`) });
1392
+ });
1393
+ }
1394
+ async _initWasm() {
1395
+ return b1.load();
1396
+ }
1397
+ _createCore() {
1398
+ return new t4();
1399
+ }
1400
+ _onCoreCreated() {
1401
+ }
1402
+ _setupTarget(t, e) {
1403
+ return this._dotLottieCore ? this._dotLottieCore.setup_sw_target(t, e) : !1;
1404
+ }
1405
+ _drainPlayerEvents({ skipFrame: t = !1 } = {}) {
1406
+ if (!this._dotLottieCore) return;
1407
+ let e;
1408
+ for (; (e = this._dotLottieCore.poll_event()) != null; ) {
1409
+ let n = e;
1410
+ switch (n.type) {
1411
+ case "Load":
1412
+ setTimeout(() => this._eventManager.dispatch({ type: "load" }), 0);
1413
+ break;
1414
+ case "LoadError":
1415
+ setTimeout(() => this._eventManager.dispatch({ type: "loadError", error: Error("failed to load") }), 0);
1416
+ break;
1417
+ case "Play":
1418
+ queueMicrotask(() => this._eventManager.dispatch({ type: "play" }));
1419
+ break;
1420
+ case "Pause":
1421
+ queueMicrotask(() => this._eventManager.dispatch({ type: "pause" }));
1422
+ break;
1423
+ case "Stop":
1424
+ queueMicrotask(() => this._eventManager.dispatch({ type: "stop" }));
1425
+ break;
1426
+ case "Frame":
1427
+ t || queueMicrotask(() => this._eventManager.dispatch({ type: "frame", currentFrame: n.frameNo ?? 0 }));
1428
+ break;
1429
+ case "Render":
1430
+ t || queueMicrotask(() => this._eventManager.dispatch({ type: "render", currentFrame: n.frameNo ?? 0 }));
1431
+ break;
1432
+ case "Loop":
1433
+ queueMicrotask(() => this._eventManager.dispatch({ type: "loop", loopCount: n.loopCount ?? 0 }));
1434
+ break;
1435
+ case "Complete":
1436
+ queueMicrotask(() => this._eventManager.dispatch({ type: "complete" }));
1437
+ break;
1438
+ }
1439
+ }
1440
+ }
1441
+ _drainSmEvents() {
1442
+ if (!this._dotLottieCore) return;
1443
+ let t;
1444
+ for (; (t = this._dotLottieCore.sm_poll_event()) != null; ) {
1445
+ let n = t;
1446
+ switch (n.type) {
1447
+ case "Start":
1448
+ queueMicrotask(() => {
1449
+ this._isStateMachineRunning = !0, this._eventManager.dispatch({ type: "stateMachineStart" }), this._startAnimationLoop();
1450
+ });
1451
+ break;
1452
+ case "Stop":
1453
+ queueMicrotask(() => {
1454
+ this._isStateMachineRunning = !1, this._eventManager.dispatch({ type: "stateMachineStop" }), this._dotLottieCore?.is_playing() || this._stopAnimationLoop();
1455
+ });
1456
+ break;
1457
+ case "CustomEvent":
1458
+ this._eventManager.dispatch({ type: "stateMachineCustomEvent", eventName: n.message ?? "" });
1459
+ break;
1460
+ case "BooleanInputChange":
1461
+ this._eventManager.dispatch({ type: "stateMachineBooleanInputValueChange", inputName: n.name ?? "", newValue: n.newValue, oldValue: n.oldValue });
1462
+ break;
1463
+ case "NumericInputChange":
1464
+ this._eventManager.dispatch({ type: "stateMachineNumericInputValueChange", inputName: n.name ?? "", newValue: n.newValue, oldValue: n.oldValue });
1465
+ break;
1466
+ case "StringInputChange":
1467
+ this._eventManager.dispatch({ type: "stateMachineStringInputValueChange", inputName: n.name ?? "", newValue: n.newValue, oldValue: n.oldValue });
1468
+ break;
1469
+ case "InputFired":
1470
+ this._eventManager.dispatch({ type: "stateMachineInputFired", inputName: n.name ?? "" });
1471
+ break;
1472
+ case "Transition":
1473
+ this._eventManager.dispatch({ type: "stateMachineTransition", fromState: n.previousState ?? "", toState: n.newState ?? "" });
1474
+ break;
1475
+ case "StateEntered":
1476
+ this._eventManager.dispatch({ type: "stateMachineStateEntered", state: n.state ?? "" });
1477
+ break;
1478
+ case "StateExit":
1479
+ this._eventManager.dispatch({ type: "stateMachineStateExit", state: n.state ?? "" });
1480
+ break;
1481
+ case "Error":
1482
+ this._eventManager.dispatch({ type: "stateMachineError", error: n.message ?? "" });
1483
+ break;
1484
+ }
1485
+ }
1486
+ let e;
1487
+ for (; (e = this._dotLottieCore.sm_poll_internal_event()) != null; ) {
1488
+ let n = e;
1489
+ if (n.type === "Message") {
1490
+ let i = n.message ?? "";
1491
+ I && i.startsWith("OpenUrl: ") ? C0(i) : this._eventManager.dispatch({ type: "stateMachineInternalMessage", message: i });
1492
+ }
1493
+ }
1494
+ }
1495
+ _dispatchError(t) {
1496
+ console.error(t), this._eventManager.dispatch({ type: "loadError", error: Error(t) });
1497
+ }
1498
+ async _fetchData(t) {
1499
+ let e = await fetch(t);
1500
+ if (!e.ok) throw Error(`Failed to fetch animation data from URL: ${t}. ${e.status}: ${e.statusText}`);
1501
+ let n = await e.arrayBuffer();
1502
+ return Q1(n) ? n : new TextDecoder().decode(n);
1503
+ }
1504
+ _loadFromData(t) {
1505
+ if (this._dotLottieCore === null) return;
1506
+ if (!this._canvas) {
1507
+ console.warn("[dotlottie-web] Cannot load animation without canvas. Call setCanvas() first.");
1508
+ return;
1509
+ }
1510
+ let e = this._canvas.width, n = this._canvas.height;
1511
+ this._setupTarget(e, n);
1512
+ let i = !1;
1513
+ if (typeof t == "string") {
1514
+ if (!Z1(t)) {
1515
+ this._dispatchError("Invalid Lottie JSON string: The provided string does not conform to the Lottie JSON format.");
1516
+ return;
1517
+ }
1518
+ i = this._dotLottieCore.load_animation(t);
1519
+ } else if (t instanceof ArrayBuffer) {
1520
+ if (!Q1(t)) {
1521
+ this._dispatchError("Invalid dotLottie ArrayBuffer: The provided ArrayBuffer does not conform to the dotLottie format.");
1522
+ return;
1523
+ }
1524
+ i = this._dotLottieCore.load_dotlottie_data(new Uint8Array(t));
1525
+ } else if (typeof t == "object") {
1526
+ if (!Z1(t)) {
1527
+ this._dispatchError("Invalid Lottie JSON object: The provided object does not conform to the Lottie JSON format.");
1528
+ return;
1529
+ }
1530
+ i = this._dotLottieCore.load_animation(JSON.stringify(t));
1531
+ } else {
1532
+ this._dispatchError(`Unsupported data type for animation data. Expected:
1533
+ - string (Lottie JSON),
1534
+ - ArrayBuffer (dotLottie),
1535
+ - object (Lottie JSON).
1536
+ Received: ${typeof t}`);
1537
+ return;
1538
+ }
1539
+ if (i) {
1540
+ 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) {
1541
+ this._dotLottieCore.set_segment(this._segment[0], this._segment[1]);
1542
+ let r = t0(this._dotLottieCore.mode()), a = r === "reverse" || r === "reverse-bounce" ? this._segment[1] : this._segment[0];
1543
+ this._dotLottieCore.set_frame(a);
1544
+ }
1545
+ setTimeout(() => {
1546
+ this._eventManager.dispatch({ type: "frame", currentFrame: this.currentFrame });
1547
+ }, 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));
1548
+ } else this._drainPlayerEvents();
1549
+ }
1550
+ _loadFromSrc(t) {
1551
+ this._fetchData(t).then((e) => this._loadFromData(e)).catch((e) => this._dispatchError(`Failed to load animation data from URL: ${t}. ${e}`));
1552
+ }
1553
+ get buffer() {
1554
+ return this._dotLottieCore ? this._dotLottieCore.get_pixel_buffer() : null;
1555
+ }
1556
+ get activeAnimationId() {
1557
+ return this._dotLottieCore?.animation_id() ?? void 0;
1558
+ }
1559
+ get activeThemeId() {
1560
+ return this._dotLottieCore?.theme_id() ?? void 0;
1561
+ }
1562
+ get layout() {
1563
+ if (this._dotLottieCore) return { align: [this._dotLottieCore.layout_align_x(), this._dotLottieCore.layout_align_y()], fit: o4(this._dotLottieCore.layout_fit()) };
1564
+ }
1565
+ get marker() {
1566
+ return this._dotLottieCore?.current_marker() ?? "";
1567
+ }
1568
+ get manifest() {
1569
+ try {
1570
+ let t = this._dotLottieCore?.manifest_string();
1571
+ if (this._dotLottieCore === null || !t) return null;
1572
+ let e = JSON.parse(t);
1573
+ return Object.keys(e).length === 0 ? null : e;
1574
+ } catch {
1575
+ return null;
1576
+ }
1577
+ }
1578
+ get renderConfig() {
1579
+ return this._renderConfig;
1580
+ }
1581
+ get segment() {
1582
+ if (this._dotLottieCore) return [this._dotLottieCore.segment_start(), this._dotLottieCore.segment_end()];
1583
+ }
1584
+ get loop() {
1585
+ return this._dotLottieCore?.loop_animation() ?? !1;
1586
+ }
1587
+ get mode() {
1588
+ return this._dotLottieCore ? t0(this._dotLottieCore.mode()) : "forward";
1589
+ }
1590
+ get isFrozen() {
1591
+ return this._isFrozen;
1592
+ }
1593
+ get isStateMachineRunning() {
1594
+ return this._isStateMachineRunning;
1595
+ }
1596
+ get backgroundColor() {
1597
+ return this._backgroundColor ?? "";
1598
+ }
1599
+ get autoplay() {
1600
+ return this._dotLottieCore?.autoplay() ?? !1;
1601
+ }
1602
+ get useFrameInterpolation() {
1603
+ return this._dotLottieCore?.use_frame_interpolation() ?? !1;
1604
+ }
1605
+ get speed() {
1606
+ return this._dotLottieCore?.speed() ?? 0;
1607
+ }
1608
+ get isReady() {
1609
+ return this._dotLottieCore !== null;
1610
+ }
1611
+ get isLoaded() {
1612
+ return this._dotLottieCore?.is_loaded() ?? !1;
1613
+ }
1614
+ get isPlaying() {
1615
+ return this._dotLottieCore?.is_playing() ?? !1;
1616
+ }
1617
+ get isPaused() {
1618
+ return this._dotLottieCore?.is_paused() ?? !1;
1619
+ }
1620
+ get isStopped() {
1621
+ return this._dotLottieCore?.is_stopped() ?? !1;
1622
+ }
1623
+ get currentFrame() {
1624
+ return this._dotLottieCore ? Math.round(this._dotLottieCore.current_frame() * 100) / 100 : 0;
1625
+ }
1626
+ get loopCount() {
1627
+ return this._dotLottieCore?.current_loop_count() ?? 0;
1628
+ }
1629
+ get totalFrames() {
1630
+ return this._dotLottieCore?.total_frames() ?? 0;
1631
+ }
1632
+ get duration() {
1633
+ return (this._dotLottieCore?.duration() ?? 0) / 1e3;
1634
+ }
1635
+ get canvas() {
1636
+ return this._canvas;
1637
+ }
1638
+ load(t) {
1639
+ 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(y1(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));
1640
+ }
1641
+ _draw() {
1642
+ 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;
1643
+ let t = this._dotLottieCore.get_pixel_buffer(), e = this._canvas.width, n = this._canvas.height, i = e * n * 4;
1644
+ if (t.byteLength !== i) {
1645
+ 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.`);
1646
+ return;
1647
+ }
1648
+ this._bufferMismatchCount = 0, this._lastExpectedBufferSize = i;
1649
+ let r = this._cachedImageData;
1650
+ if (!(r !== null && r.width === e && r.height === n && r.data.byteLength === i && this._cachedImageDataBuffer === t.buffer && this._cachedImageDataByteOffset === t.byteOffset)) {
1651
+ if (typeof ImageData > "u") this._cachedImageData = this._context.createImageData(e, n);
1652
+ else {
1653
+ let a = new Uint8ClampedArray(t.buffer, t.byteOffset, t.byteLength);
1654
+ this._cachedImageData = new ImageData(a, e, n);
1655
+ }
1656
+ this._cachedImageDataBuffer = t.buffer, this._cachedImageDataByteOffset = t.byteOffset;
1657
+ }
1658
+ if (typeof ImageData > "u") {
1659
+ let a = new Uint8ClampedArray(t.buffer, t.byteOffset, t.byteLength);
1660
+ this._cachedImageData.data.set(a);
1661
+ }
1662
+ this._context.putImageData(this._cachedImageData, 0, 0);
1663
+ }
1664
+ _cleanupCanvas() {
1665
+ this._canvas && I && this._canvas instanceof HTMLCanvasElement && (A.unobserve(this._canvas), D.unobserve(this._canvas), this._cleanupStateMachineListeners());
1666
+ }
1667
+ _initializeCanvas() {
1668
+ 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());
1669
+ }
1670
+ _setupRendererOnCanvas() {
1671
+ this._context = null;
1672
+ }
1673
+ _stopAnimationLoop() {
1674
+ this._animationFrameId !== null && (this._frameManager.cancelAnimationFrame(this._animationFrameId), this._animationFrameId = null), this._lastFrameTime = null;
1675
+ }
1676
+ _startAnimationLoop() {
1677
+ this._animationFrameId === null && this._dotLottieCore && !this._isFrozen && (this._dotLottieCore.is_playing() || this._isStateMachineRunning) && (this._animationFrameId = this._frameManager.requestAnimationFrame(this._boundAnimationLoop));
1678
+ }
1679
+ _animationLoop(t) {
1680
+ if (this._dotLottieCore === null) {
1681
+ this._stopAnimationLoop();
1682
+ return;
1683
+ }
1684
+ if (!this._dotLottieCore.is_playing() && !this._isStateMachineRunning) {
1685
+ this._stopAnimationLoop();
1686
+ return;
1687
+ }
1688
+ try {
1689
+ let e = this._lastFrameTime === null ? 0 : t - this._lastFrameTime;
1690
+ this._lastFrameTime = t;
1691
+ let n = this._isStateMachineRunning ? this._dotLottieCore.sm_tick(e) : this._dotLottieCore.tick(e);
1692
+ this._isStateMachineRunning ? this._drainSmEvents() : this._drainPlayerEvents(), n && this._draw(), this._animationFrameId = this._frameManager.requestAnimationFrame(this._boundAnimationLoop);
1693
+ } catch (e) {
1694
+ console.error("Error in animation frame:", e), this._eventManager.dispatch({ type: "renderError", error: e }), e instanceof WebAssembly.RuntimeError && this.destroy();
1695
+ }
1696
+ }
1697
+ play() {
1698
+ if (this._dotLottieCore === null || !this.isLoaded) return;
1699
+ this._stopAnimationLoop();
1700
+ let t = this._dotLottieCore.play();
1701
+ 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();
1702
+ }
1703
+ pause() {
1704
+ this._dotLottieCore !== null && (this._dotLottieCore.pause(), this._drainPlayerEvents(), this._stopAnimationLoop());
1705
+ }
1706
+ stop() {
1707
+ if (this._dotLottieCore === null) return;
1708
+ let t = this._dotLottieCore.stop();
1709
+ this._drainPlayerEvents(), this._stopAnimationLoop(), t && (this._eventManager.dispatch({ type: "frame", currentFrame: this.currentFrame }), this._dotLottieCore.render(), this._draw());
1710
+ }
1711
+ setFrame(t) {
1712
+ if (this._dotLottieCore !== null && this._dotLottieCore.set_frame(t)) {
1713
+ let e = this._dotLottieCore.render();
1714
+ this._drainPlayerEvents(), e && this._draw();
1715
+ }
1716
+ }
1717
+ setSpeed(t) {
1718
+ this._dotLottieCore !== null && this._dotLottieCore.set_speed(t);
1719
+ }
1720
+ setBackgroundColor(t) {
1721
+ if (this._dotLottieCore !== null) {
1722
+ if (I && this._canvas instanceof HTMLCanvasElement) this._canvas.style.backgroundColor = t;
1723
+ else {
1724
+ let [e, n, i, r] = r4(t);
1725
+ this._dotLottieCore.set_background(e, n, i, r);
1726
+ }
1727
+ this._backgroundColor = t;
1728
+ }
1729
+ }
1730
+ setLoop(t) {
1731
+ this._dotLottieCore !== null && this._dotLottieCore.set_loop(t);
1732
+ }
1733
+ setLoopCount(t) {
1734
+ this._dotLottieCore !== null && this._dotLottieCore.set_loop_count(t);
1735
+ }
1736
+ setUseFrameInterpolation(t) {
1737
+ this._dotLottieCore !== null && this._dotLottieCore.set_use_frame_interpolation(t);
1738
+ }
1739
+ addEventListener(t, e) {
1740
+ this._eventManager.addEventListener(t, e);
1741
+ }
1742
+ removeEventListener(t, e) {
1743
+ this._eventManager.removeEventListener(t, e);
1744
+ }
1745
+ destroy() {
1746
+ this._stopAnimationLoop(), this._isStateMachineRunning = !1, this._cleanupCanvas();
1747
+ let t = this._dotLottieCore;
1748
+ if (this._dotLottieCore = null, this._context = null, t) try {
1749
+ t.free();
1750
+ } catch (e) {
1751
+ console.warn("[dotlottie-web] Error freeing wasm core during destroy:", e);
1752
+ }
1753
+ this._eventManager.dispatch({ type: "destroy" }), this._eventManager.removeAllEventListeners(), this._cleanupStateMachineListeners();
1754
+ }
1755
+ freeze() {
1756
+ this._animationFrameId !== null && (this._stopAnimationLoop(), this._isFrozen = !0, this._eventManager.dispatch({ type: "freeze" }));
1757
+ }
1758
+ unfreeze() {
1759
+ this._animationFrameId === null && (this._isFrozen = !1, this._eventManager.dispatch({ type: "unfreeze" }), this._startAnimationLoop());
1760
+ }
1761
+ resize() {
1762
+ if (!(!this._dotLottieCore || !this.isLoaded || !this._canvas)) {
1763
+ if (I && this._canvas instanceof HTMLCanvasElement) {
1764
+ let t = this._renderConfig.devicePixelRatio || window.devicePixelRatio || 1, { height: e, width: n } = this._canvas.getBoundingClientRect();
1765
+ e !== 0 && n !== 0 && (this._canvas.width = n * t, this._canvas.height = e * t);
1766
+ }
1767
+ this._setupTarget(this._canvas.width, this._canvas.height) && (this._dotLottieCore.render(), this._draw());
1768
+ }
1769
+ }
1770
+ setCanvas(t) {
1771
+ if (!(!t || this._canvas === t) && (this._canvas && this._cleanupCanvas(), this._canvas = t, this._initializeCanvas(), this._pendingLoad)) {
1772
+ let e = this._pendingLoad;
1773
+ this._pendingLoad = null, e.data ? this._loadFromData(e.data) : e.src && this._loadFromSrc(e.src);
1774
+ }
1775
+ }
1776
+ setTransform(t) {
1777
+ if (!this._dotLottieCore) return !1;
1778
+ let e = this._dotLottieCore.set_transform(new Float32Array(t));
1779
+ return e && this._dotLottieCore.render() && this._draw(), e;
1780
+ }
1781
+ getTransform() {
1782
+ if (!this._dotLottieCore) return;
1783
+ let t = this._dotLottieCore.get_transform();
1784
+ return Array.from(t);
1785
+ }
1786
+ setSegment(t, e) {
1787
+ this._dotLottieCore !== null && (this._segment = [t, e], this._dotLottieCore.set_segment(t, e));
1788
+ }
1789
+ resetSegment() {
1790
+ this._dotLottieCore !== null && (this._segment = null, this._dotLottieCore.clear_segment());
1791
+ }
1792
+ setMode(t) {
1793
+ this._dotLottieCore !== null && this._dotLottieCore.set_mode(y1(t));
1794
+ }
1795
+ setRenderConfig(t) {
1796
+ let { devicePixelRatio: e, freezeOnOffscreen: n, quality: i, ...r } = t;
1797
+ this._renderConfig = { ...this._renderConfig, ...r, devicePixelRatio: e || N(), 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()));
1798
+ }
1799
+ loadAnimation(t) {
1800
+ 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}`));
1801
+ }
1802
+ setMarker(t) {
1803
+ 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()));
1804
+ }
1805
+ markers() {
1806
+ let t = this._dotLottieCore?.markers();
1807
+ return t && Array.isArray(t) ? t : [];
1808
+ }
1809
+ setTheme(t) {
1810
+ if (this._dotLottieCore === null) return !1;
1811
+ let e = this._dotLottieCore.set_theme(t);
1812
+ return e && (this._dotLottieCore.render(), this._draw()), e;
1813
+ }
1814
+ resetTheme() {
1815
+ if (this._dotLottieCore === null) return !1;
1816
+ let t = this._dotLottieCore.reset_theme();
1817
+ return t && (this._dotLottieCore.render(), this._draw()), t;
1818
+ }
1819
+ setThemeData(t) {
1820
+ if (this._dotLottieCore === null) return !1;
1821
+ let e = typeof t == "string" ? t : JSON.stringify(t), n = this._dotLottieCore.set_theme_data(e);
1822
+ return n && (this._dotLottieCore.render(), this._draw()), n;
1823
+ }
1824
+ setSlots(t) {
1825
+ this._dotLottieCore !== null && this._dotLottieCore.set_slots_str(JSON.stringify(t)) && (this._dotLottieCore.render(), this._draw());
1826
+ }
1827
+ _isKeyframeArray(t) {
1828
+ return Array.isArray(t) && t.length > 0 && typeof t[0] == "object" && t[0] !== null && "t" in t[0] && "s" in t[0];
1829
+ }
1830
+ getSlotIds() {
1831
+ if (!this._dotLottieCore) return [];
1832
+ let t = this._dotLottieCore.get_slot_ids();
1833
+ return Array.isArray(t) ? t : [];
1834
+ }
1835
+ getSlotType(t) {
1836
+ if (!this._dotLottieCore) return;
1837
+ let e = this._dotLottieCore.get_slot_type(t);
1838
+ if (e) return e;
1839
+ }
1840
+ getSlot(t) {
1841
+ if (!this._dotLottieCore) return;
1842
+ let e = this._dotLottieCore.get_slot_str(t);
1843
+ if (e) try {
1844
+ return JSON.parse(e);
1845
+ } catch {
1846
+ return;
1847
+ }
1848
+ }
1849
+ getSlots() {
1850
+ if (!this._dotLottieCore) return {};
1851
+ try {
1852
+ return JSON.parse(this._dotLottieCore.get_slots_str());
1853
+ } catch {
1854
+ return {};
1855
+ }
1856
+ }
1857
+ setColorSlot(t, e) {
1858
+ if (this._dotLottieCore === null) return !1;
1859
+ let n = this._isKeyframeArray(e), i = JSON.stringify({ a: +!!n, k: e }), r = this._dotLottieCore.set_slot_str(t, i);
1860
+ return this._dotLottieCore.render(), this._draw(), r;
1861
+ }
1862
+ setScalarSlot(t, e) {
1863
+ if (this._dotLottieCore === null) return !1;
1864
+ let n = JSON.stringify({ a: typeof e == "number" ? 0 : 1, k: e }), i = this._dotLottieCore.set_slot_str(t, n);
1865
+ return this._dotLottieCore.render(), this._draw(), i;
1866
+ }
1867
+ setVectorSlot(t, e) {
1868
+ if (this._dotLottieCore === null) return !1;
1869
+ let n = this._isKeyframeArray(e), i = JSON.stringify({ a: +!!n, k: e }), r = this._dotLottieCore.set_slot_str(t, i);
1870
+ return this._dotLottieCore.render(), this._draw(), r;
1871
+ }
1872
+ setGradientSlot(t, e, n) {
1873
+ if (this._dotLottieCore === null) return !1;
1874
+ let i = this._isKeyframeArray(e), r = JSON.stringify({ k: { a: +!!i, k: e }, p: n }), a = this._dotLottieCore.set_slot_str(t, r);
1875
+ return this._dotLottieCore.render(), this._draw(), a;
1876
+ }
1877
+ setTextSlot(t, e) {
1878
+ if (this._dotLottieCore === null) return !1;
1879
+ let n = this._dotLottieCore.get_slot_str(t), i = e;
1880
+ if (n) {
1881
+ let o = JSON.parse(n);
1882
+ if (o && "k" in o && Array.isArray(o.k)) {
1883
+ let l = o.k[0];
1884
+ "s" in l && typeof l.s == "object" && (i = { ...l.s, ...e });
1885
+ }
1886
+ }
1887
+ let r = JSON.stringify({ a: 0, k: [{ t: 0, s: i }] }), a = this._dotLottieCore.set_slot_str(t, r);
1888
+ return this._dotLottieCore.render(), this._draw(), a;
1889
+ }
1890
+ resetSlot(t) {
1891
+ if (this._dotLottieCore === null) return !1;
1892
+ let e = this._dotLottieCore.reset_slot(t);
1893
+ return this._dotLottieCore.render(), this._draw(), e;
1894
+ }
1895
+ clearSlot(t) {
1896
+ if (this._dotLottieCore === null) return !1;
1897
+ let e = this._dotLottieCore.clear_slot(t);
1898
+ return this._dotLottieCore.render(), this._draw(), e;
1899
+ }
1900
+ resetSlots() {
1901
+ if (this._dotLottieCore === null) return !1;
1902
+ let t = this._dotLottieCore.reset_slots();
1903
+ return this._dotLottieCore.render(), this._draw(), t;
1904
+ }
1905
+ clearSlots() {
1906
+ if (this._dotLottieCore === null) return !1;
1907
+ let t = this._dotLottieCore.clear_slots();
1908
+ return this._dotLottieCore.render(), this._draw(), t;
1909
+ }
1910
+ setLayout(t) {
1911
+ this._dotLottieCore !== null && this._dotLottieCore.set_layout(t.fit ?? "contain", t.align?.[0] ?? 0.5, t.align?.[1] ?? 0.5);
1912
+ }
1913
+ setViewport(t, e, n, i) {
1914
+ return this._dotLottieCore === null ? !1 : this._dotLottieCore.set_viewport(t, e, n, i);
1915
+ }
1916
+ static setWasmUrl(t) {
1917
+ b1.setWasmUrl(t);
1918
+ }
1919
+ static async registerFont(t, e) {
1920
+ try {
1921
+ await b1.load();
1922
+ let n;
1923
+ if (typeof e == "string") {
1924
+ let r = await fetch(e);
1925
+ if (!r.ok) return console.error(`Failed to fetch font from URL: ${e}. Status: ${r.status}`), !1;
1926
+ n = new Uint8Array(await r.arrayBuffer());
1927
+ } else n = e instanceof Uint8Array ? e : new Uint8Array(e);
1928
+ let i = Z0(t, n);
1929
+ return i || console.error(`Failed to register font "${t}". Font data may be invalid.`), i;
1930
+ } catch (n) {
1931
+ return console.error(`Error registering font "${t}":`, n), !1;
1932
+ }
1933
+ }
1934
+ animationSize() {
1935
+ let t = this._dotLottieCore?.animation_size();
1936
+ return { width: t?.[0] ?? 0, height: t?.[1] ?? 0 };
1937
+ }
1938
+ stateMachineLoad(t) {
1939
+ return this._dotLottieCore ? this._dotLottieCore.state_machine_load_from_id(t) : !1;
1940
+ }
1941
+ stateMachineLoadData(t) {
1942
+ return this._dotLottieCore ? this._dotLottieCore.state_machine_load(t) : !1;
1943
+ }
1944
+ stateMachineSetConfig(t) {
1945
+ this._stateMachineConfig = t;
1946
+ }
1947
+ stateMachineStart() {
1948
+ if (this._dotLottieCore === null) return !1;
1949
+ let t = this._dotLottieCore.sm_start(this._stateMachineConfig?.openUrlPolicy?.requireUserInteraction ?? !0, this._stateMachineConfig?.openUrlPolicy?.whitelist ?? []);
1950
+ return this._drainSmEvents(), t && (this._isStateMachineRunning = !0, this._setupStateMachineListeners(), this._startAnimationLoop()), t;
1951
+ }
1952
+ stateMachineStop() {
1953
+ if (!this._dotLottieCore) return !1;
1954
+ let t = this._dotLottieCore.sm_stop();
1955
+ return this._drainSmEvents(), t && (this._isStateMachineRunning = !1, this._cleanupStateMachineListeners(), this._dotLottieCore.is_playing() || this._stopAnimationLoop()), t;
1956
+ }
1957
+ stateMachineGetStatus() {
1958
+ return this._dotLottieCore?.sm_status() ?? "";
1959
+ }
1960
+ stateMachineGetCurrentState() {
1961
+ return this._dotLottieCore?.sm_current_state() ?? "";
1962
+ }
1963
+ stateMachineGetActiveId() {
1964
+ return this._dotLottieCore?.state_machine_id() ?? "";
1965
+ }
1966
+ stateMachineOverrideState(t, e = !1) {
1967
+ return this._dotLottieCore?.sm_override_current_state(t, e) ?? !1;
1968
+ }
1969
+ stateMachineGet(t) {
1970
+ return this._dotLottieCore?.get_state_machine(t) ?? "";
1971
+ }
1972
+ stateMachineGetListeners() {
1973
+ if (!this._dotLottieCore) return [];
1974
+ let t = this._dotLottieCore.sm_framework_setup();
1975
+ return Array.isArray(t) ? t : [];
1976
+ }
1977
+ stateMachineSetBooleanInput(t, e) {
1978
+ return this._dotLottieCore?.sm_set_boolean_input(t, e) ?? !1;
1979
+ }
1980
+ stateMachineSetNumericInput(t, e) {
1981
+ return this._dotLottieCore?.sm_set_numeric_input(t, e) ?? !1;
1982
+ }
1983
+ stateMachineSetStringInput(t, e) {
1984
+ return this._dotLottieCore?.sm_set_string_input(t, e) ?? !1;
1985
+ }
1986
+ stateMachineGetBooleanInput(t) {
1987
+ return this._dotLottieCore?.sm_get_boolean_input(t) ?? void 0;
1988
+ }
1989
+ stateMachineGetNumericInput(t) {
1990
+ return this._dotLottieCore?.sm_get_numeric_input(t) ?? void 0;
1991
+ }
1992
+ stateMachineGetStringInput(t) {
1993
+ return this._dotLottieCore?.sm_get_string_input(t) ?? void 0;
1994
+ }
1995
+ stateMachineGetInputs() {
1996
+ if (!this._dotLottieCore) return [];
1997
+ let t = this._dotLottieCore.sm_get_inputs();
1998
+ return Array.isArray(t) ? t : [];
1999
+ }
2000
+ stateMachineFireEvent(t) {
2001
+ this._dotLottieCore?.sm_fire(t);
2002
+ }
2003
+ stateMachinePostClickEvent(t, e) {
2004
+ this._dotLottieCore?.sm_post_click(t, e);
2005
+ }
2006
+ stateMachinePostPointerUpEvent(t, e) {
2007
+ this._dotLottieCore?.sm_post_pointer_up(t, e);
2008
+ }
2009
+ stateMachinePostPointerDownEvent(t, e) {
2010
+ this._dotLottieCore?.sm_post_pointer_down(t, e);
2011
+ }
2012
+ stateMachinePostPointerMoveEvent(t, e) {
2013
+ this._dotLottieCore?.sm_post_pointer_move(t, e);
2014
+ }
2015
+ stateMachinePostPointerEnterEvent(t, e) {
2016
+ this._dotLottieCore?.sm_post_pointer_enter(t, e);
2017
+ }
2018
+ stateMachinePostPointerExitEvent(t, e) {
2019
+ this._dotLottieCore?.sm_post_pointer_exit(t, e);
2020
+ }
2021
+ _onClick(t) {
2022
+ let e = P(t);
2023
+ e && this.stateMachinePostClickEvent(e.x, e.y);
2024
+ }
2025
+ _onPointerUp(t) {
2026
+ let e = P(t);
2027
+ e && this.stateMachinePostPointerUpEvent(e.x, e.y);
2028
+ }
2029
+ _onPointerDown(t) {
2030
+ let e = P(t);
2031
+ e && this.stateMachinePostPointerDownEvent(e.x, e.y);
2032
+ }
2033
+ _onPointerMove(t) {
2034
+ let e = P(t);
2035
+ e && this.stateMachinePostPointerMoveEvent(e.x, e.y);
2036
+ }
2037
+ _onPointerEnter(t) {
2038
+ let e = P(t);
2039
+ e && this.stateMachinePostPointerEnterEvent(e.x, e.y);
2040
+ }
2041
+ _onPointerLeave(t) {
2042
+ let e = P(t);
2043
+ e && this.stateMachinePostPointerExitEvent(e.x, e.y);
2044
+ }
2045
+ _setupStateMachineListeners() {
2046
+ if (I && this._canvas instanceof HTMLCanvasElement && this._dotLottieCore !== null && this.isLoaded) {
2047
+ let t = this.stateMachineGetListeners();
2048
+ 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));
2049
+ }
2050
+ }
2051
+ _cleanupStateMachineListeners() {
2052
+ 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));
2053
+ }
2054
+ }, _4 = class {
2055
+ constructor() {
2056
+ if (typeof Worker > "u") throw Error("Worker is not supported in this environment.");
2057
+ 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);
2058
+ return URL.revokeObjectURL(e), n;
2059
+ }
2060
+ }, l4 = class {
2061
+ constructor() {
2062
+ 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) => {
2063
+ let e = t.data;
2064
+ if (e.id) {
2065
+ let i = this._rpcHandlers.get(e.id);
2066
+ i && i(t);
2067
+ return;
2068
+ }
2069
+ let n = e.result?.instanceId;
2070
+ if (n) {
2071
+ let i = this._eventHandlers.get(n);
2072
+ i && i(t);
2073
+ }
2074
+ });
2075
+ }
2076
+ getWorker(t) {
2077
+ let e = this._workers.get(t);
2078
+ return e || (e = new _4(), e.addEventListener("message", this._routeMessage), this._workers.set(t, e)), e;
2079
+ }
2080
+ assignAnimationToWorker(t, e) {
2081
+ this._animationWorkerMap.set(t, e);
2082
+ }
2083
+ unassignAnimationFromWorker(t) {
2084
+ this._animationWorkerMap.delete(t);
2085
+ }
2086
+ sendMessage(t, e, n) {
2087
+ this.getWorker(t).postMessage(e, n || []);
2088
+ }
2089
+ broadcastMessage(t, e) {
2090
+ this._workers.forEach((n) => {
2091
+ n.postMessage(t, e || []);
2092
+ });
2093
+ }
2094
+ terminateWorker(t) {
2095
+ let e = this._workers.get(t);
2096
+ e && (e.removeEventListener("message", this._routeMessage), e.terminate(), this._workers.delete(t));
2097
+ }
2098
+ registerEventHandler(t, e) {
2099
+ this._eventHandlers.set(t, e);
2100
+ }
2101
+ unregisterEventHandler(t) {
2102
+ this._eventHandlers.delete(t);
2103
+ }
2104
+ registerRpcReplyHandler(t, e) {
2105
+ this._rpcHandlers.set(t, e);
2106
+ }
2107
+ unregisterRpcReplyHandler(t) {
2108
+ this._rpcHandlers.delete(t);
2109
+ }
2110
+ };
2111
+ function e0(t, e) {
2112
+ if (typeof HTMLCanvasElement < "u" && t instanceof HTMLCanvasElement) {
2113
+ let { height: n, width: i } = t.getBoundingClientRect();
2114
+ if (n !== 0 && i !== 0) return { width: i * e, height: n * e };
2115
+ }
2116
+ return { width: t.width, height: t.height };
2117
+ }
2118
+ function L1() {
2119
+ return Date.now().toString(36) + Math.random().toString(36).substr(2, 9);
2120
+ }
2121
+ var n0 = class x {
2122
+ constructor(e) {
2123
+ 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: N() }, 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) {
2124
+ let r = typeof HTMLCanvasElement < "u" && e.canvas instanceof HTMLCanvasElement, a = typeof OffscreenCanvas < "u" && e.canvas instanceof OffscreenCanvas;
2125
+ if (!r && !a) throw Error("Worker-based DotLottie requires HTMLCanvasElement or OffscreenCanvas");
2126
+ }
2127
+ this._canvas = e.canvas ?? null, this._id = `dotlottie-${L1()}`;
2128
+ let n = e.workerId || "defaultWorker";
2129
+ this._worker = x._workerManager.getWorker(n), x._workerManager.assignAnimationToWorker(this._id, n), x._wasmUrl && this._sendMessage("setWasmUrl", { url: x._wasmUrl });
2130
+ let i = { ...e, renderConfig: { ...e.renderConfig, devicePixelRatio: e.renderConfig?.devicePixelRatio || N(), freezeOnOffscreen: e.renderConfig?.freezeOnOffscreen ?? !0 } };
2131
+ this._pendingConfig = i, this._canvas && (this._create(i), this._pendingConfig = null), x._workerManager.registerEventHandler(this._id, this._handleWorkerEvent.bind(this));
2132
+ }
2133
+ async _handleWorkerEvent(e) {
2134
+ let n = e.data;
2135
+ 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)) {
2136
+ await this._updateDotLottieInstanceState();
2137
+ let i = n.result.event;
2138
+ i.message.startsWith("OpenUrl: ") && C0(i.message);
2139
+ }
2140
+ }
2141
+ async _create(e) {
2142
+ if (!this._canvas) return;
2143
+ let n;
2144
+ n = this._canvas instanceof HTMLCanvasElement ? this._canvas.transferControlToOffscreen() : this._canvas;
2145
+ let { instanceId: i } = await this._sendMessage("create", { instanceId: this._id, config: { ...e, canvas: n }, ...e0(this._canvas, e.renderConfig?.devicePixelRatio || N()) }, [n]);
2146
+ if (i !== this._id) throw Error("Instance ID mismatch");
2147
+ this._created = !0, await this._updateDotLottieInstanceState();
2148
+ }
2149
+ get loopCount() {
2150
+ return this._dotLottieInstanceState.loopCount;
2151
+ }
2152
+ get isLoaded() {
2153
+ return this._dotLottieInstanceState.isLoaded;
2154
+ }
2155
+ get isPlaying() {
2156
+ return this._dotLottieInstanceState.isPlaying;
2157
+ }
2158
+ get isPaused() {
2159
+ return this._dotLottieInstanceState.isPaused;
2160
+ }
2161
+ get isStopped() {
2162
+ return this._dotLottieInstanceState.isStopped;
2163
+ }
2164
+ get currentFrame() {
2165
+ return this._dotLottieInstanceState.currentFrame;
2166
+ }
2167
+ get isFrozen() {
2168
+ return this._dotLottieInstanceState.isFrozen;
2169
+ }
2170
+ get totalFrames() {
2171
+ return this._dotLottieInstanceState.totalFrames;
2172
+ }
2173
+ get segment() {
2174
+ return this._dotLottieInstanceState.segment;
2175
+ }
2176
+ get speed() {
2177
+ return this._dotLottieInstanceState.speed;
2178
+ }
2179
+ get duration() {
2180
+ return this._dotLottieInstanceState.duration;
2181
+ }
2182
+ get isReady() {
2183
+ return this._dotLottieInstanceState.isReady;
2184
+ }
2185
+ get mode() {
2186
+ return this._dotLottieInstanceState.mode;
2187
+ }
2188
+ get canvas() {
2189
+ return this._canvas;
2190
+ }
2191
+ async setCanvas(e) {
2192
+ let n = typeof HTMLCanvasElement < "u" && e instanceof HTMLCanvasElement, i = typeof OffscreenCanvas < "u" && e instanceof OffscreenCanvas;
2193
+ if (!n && !i) throw Error("Worker-based DotLottie requires HTMLCanvasElement or OffscreenCanvas");
2194
+ if (this._canvas !== e) {
2195
+ if (this._created && this._canvas !== null) throw Error("Cannot change canvas after worker instance is already created with a different canvas.");
2196
+ this._canvas = e, !this._created && this._pendingConfig && (await this._create(this._pendingConfig), this._pendingConfig = null);
2197
+ }
2198
+ }
2199
+ get autoplay() {
2200
+ return this._dotLottieInstanceState.autoplay;
2201
+ }
2202
+ get backgroundColor() {
2203
+ return this._dotLottieInstanceState.backgroundColor;
2204
+ }
2205
+ get loop() {
2206
+ return this._dotLottieInstanceState.loop;
2207
+ }
2208
+ get useFrameInterpolation() {
2209
+ return this._dotLottieInstanceState.useFrameInterpolation;
2210
+ }
2211
+ get renderConfig() {
2212
+ return this._dotLottieInstanceState.renderConfig;
2213
+ }
2214
+ get manifest() {
2215
+ return this._dotLottieInstanceState.manifest;
2216
+ }
2217
+ get activeAnimationId() {
2218
+ return this._dotLottieInstanceState.activeAnimationId;
2219
+ }
2220
+ get marker() {
2221
+ return this._dotLottieInstanceState.marker;
2222
+ }
2223
+ get activeThemeId() {
2224
+ return this._dotLottieInstanceState.activeThemeId;
2225
+ }
2226
+ get layout() {
2227
+ return this._dotLottieInstanceState.layout;
2228
+ }
2229
+ async play() {
2230
+ 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());
2231
+ }
2232
+ async pause() {
2233
+ this._created && (await this._sendMessage("pause", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2234
+ }
2235
+ async stop() {
2236
+ this._created && (await this._sendMessage("stop", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2237
+ }
2238
+ async setSpeed(e) {
2239
+ this._created && (await this._sendMessage("setSpeed", { instanceId: this._id, speed: e }), await this._updateDotLottieInstanceState());
2240
+ }
2241
+ async setMode(e) {
2242
+ this._created && (await this._sendMessage("setMode", { instanceId: this._id, mode: e }), await this._updateDotLottieInstanceState());
2243
+ }
2244
+ async setFrame(e) {
2245
+ this._created && (await this._sendMessage("setFrame", { frame: e, instanceId: this._id }), await this._updateDotLottieInstanceState());
2246
+ }
2247
+ async setSegment(e, n) {
2248
+ this._created && (await this._sendMessage("setSegment", { instanceId: this._id, segment: [e, n] }), await this._updateDotLottieInstanceState());
2249
+ }
2250
+ async resetSegment() {
2251
+ this._created && (await this._sendMessage("resetSegment", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2252
+ }
2253
+ async setRenderConfig(e) {
2254
+ if (!this._created) return;
2255
+ let { devicePixelRatio: n, freezeOnOffscreen: i, quality: r, ...a } = e;
2256
+ await this._sendMessage("setRenderConfig", { instanceId: this._id, renderConfig: { ...this._dotLottieInstanceState.renderConfig, ...a, devicePixelRatio: n || N(), 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()));
2257
+ }
2258
+ async setUseFrameInterpolation(e) {
2259
+ this._created && (await this._sendMessage("setUseFrameInterpolation", { instanceId: this._id, useFrameInterpolation: e }), await this._updateDotLottieInstanceState());
2260
+ }
2261
+ async setTheme(e) {
2262
+ if (!this._created) return !1;
2263
+ let n = this._sendMessage("setTheme", { instanceId: this._id, themeId: e });
2264
+ return await this._updateDotLottieInstanceState(), n;
2265
+ }
2266
+ async load(e) {
2267
+ if (!this._created) {
2268
+ this._pendingConfig && (this._pendingConfig = { ...this._pendingConfig, ...e });
2269
+ return;
2270
+ }
2271
+ await this._sendMessage("load", { config: e, instanceId: this._id }), await this._updateDotLottieInstanceState();
2272
+ }
2273
+ async setLoop(e) {
2274
+ this._created && (await this._sendMessage("setLoop", { instanceId: this._id, loop: e }), await this._updateDotLottieInstanceState());
2275
+ }
2276
+ async setLoopCount(e) {
2277
+ this._created && (await this._sendMessage("setLoopCount", { instanceId: this._id, loopCount: e }), await this._updateDotLottieInstanceState());
2278
+ }
2279
+ async resize() {
2280
+ if (!this._created || !this._canvas) return;
2281
+ let { height: e, width: n } = e0(this._canvas, this._dotLottieInstanceState.renderConfig.devicePixelRatio || N());
2282
+ await this._sendMessage("resize", { height: e, instanceId: this._id, width: n }), await this._updateDotLottieInstanceState();
2283
+ }
2284
+ async destroy() {
2285
+ 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)));
2286
+ }
2287
+ async freeze() {
2288
+ this._created && (await this._sendMessage("freeze", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2289
+ }
2290
+ async unfreeze() {
2291
+ this._created && (await this._sendMessage("unfreeze", { instanceId: this._id }), await this._updateDotLottieInstanceState());
2292
+ }
2293
+ async setBackgroundColor(e) {
2294
+ this._created && (await this._sendMessage("setBackgroundColor", { instanceId: this._id, backgroundColor: e }), await this._updateDotLottieInstanceState());
2295
+ }
2296
+ async loadAnimation(e) {
2297
+ this._created && (await this._sendMessage("loadAnimation", { animationId: e, instanceId: this._id }), await this._updateDotLottieInstanceState());
2298
+ }
2299
+ async setLayout(e) {
2300
+ this._created && (await this._sendMessage("setLayout", { instanceId: this._id, layout: e }), await this._updateDotLottieInstanceState());
2301
+ }
2302
+ async setSlots(e) {
2303
+ this._created && await this._sendMessage("setSlots", { instanceId: this._id, slots: e });
2304
+ }
2305
+ async getSlotIds() {
2306
+ return this._created ? this._sendMessage("getSlotIds", { instanceId: this._id }) : [];
2307
+ }
2308
+ async getSlotType(e) {
2309
+ if (this._created) return this._sendMessage("getSlotType", { instanceId: this._id, slotId: e });
2310
+ }
2311
+ async getSlot(e) {
2312
+ if (this._created) return this._sendMessage("getSlot", { instanceId: this._id, slotId: e });
2313
+ }
2314
+ async getSlots() {
2315
+ return this._created ? this._sendMessage("getSlots", { instanceId: this._id }) : {};
2316
+ }
2317
+ async setColorSlot(e, n) {
2318
+ return this._created ? this._sendMessage("setColorSlot", { instanceId: this._id, slotId: e, value: n }) : !1;
2319
+ }
2320
+ async setScalarSlot(e, n) {
2321
+ return this._created ? this._sendMessage("setScalarSlot", { instanceId: this._id, slotId: e, value: n }) : !1;
2322
+ }
2323
+ async setVectorSlot(e, n) {
2324
+ return this._created ? this._sendMessage("setVectorSlot", { instanceId: this._id, slotId: e, value: n }) : !1;
2325
+ }
2326
+ async setGradientSlot(e, n, i) {
2327
+ return this._created ? this._sendMessage("setGradientSlot", { instanceId: this._id, slotId: e, value: n, colorStopCount: i }) : !1;
2328
+ }
2329
+ async setTextSlot(e, n) {
2330
+ return this._created ? this._sendMessage("setTextSlot", { instanceId: this._id, slotId: e, value: n }) : !1;
2331
+ }
2332
+ async resetSlot(e) {
2333
+ return this._created ? this._sendMessage("resetSlot", { instanceId: this._id, slotId: e }) : !1;
2334
+ }
2335
+ async clearSlot(e) {
2336
+ return this._created ? this._sendMessage("clearSlot", { instanceId: this._id, slotId: e }) : !1;
2337
+ }
2338
+ async resetSlots() {
2339
+ return this._created ? this._sendMessage("resetSlots", { instanceId: this._id }) : !1;
2340
+ }
2341
+ async clearSlots() {
2342
+ return this._created ? this._sendMessage("clearSlots", { instanceId: this._id }) : !1;
2343
+ }
2344
+ async _updateDotLottieInstanceState() {
2345
+ if (!this._created) return;
2346
+ let e = await this._sendMessage("getDotLottieInstanceState", { instanceId: this._id });
2347
+ this._dotLottieInstanceState = e.state;
2348
+ }
2349
+ markers() {
2350
+ return this._dotLottieInstanceState.markers;
2351
+ }
2352
+ async setMarker(e) {
2353
+ this._created && (await this._sendMessage("setMarker", { instanceId: this._id, marker: e }), await this._updateDotLottieInstanceState());
2354
+ }
2355
+ async setThemeData(e) {
2356
+ if (!this._created) return !1;
2357
+ let n = await this._sendMessage("setThemeData", { instanceId: this._id, themeData: e });
2358
+ return await this._updateDotLottieInstanceState(), n;
2359
+ }
2360
+ async setViewport(e, n, i, r) {
2361
+ return this._created ? this._sendMessage("setViewport", { x: e, y: n, width: i, height: r, instanceId: this._id }) : !1;
2362
+ }
2363
+ async animationSize() {
2364
+ return this._created ? this._sendMessage("animationSize", { instanceId: this._id }) : { height: 0, width: 0 };
2365
+ }
2366
+ async setTransform(e) {
2367
+ return this._created ? this._sendMessage("setTransform", { instanceId: this._id, transform: e }) : !1;
2368
+ }
2369
+ async getTransform() {
2370
+ if (this._created) return this._sendMessage("getTransform", { instanceId: this._id });
2371
+ }
2372
+ async _sendMessage(e, n, i) {
2373
+ let r = { id: `dotlottie-request-${L1()}`, method: e, params: n };
2374
+ return new Promise((a, o) => {
2375
+ x._workerManager.registerRpcReplyHandler(r.id, (l) => {
2376
+ x._workerManager.unregisterRpcReplyHandler(r.id);
2377
+ let h = l.data;
2378
+ h.error ? o(Error(`Failed to execute method ${e}: ${h.error}`)) : a(h.result);
2379
+ }), this._worker.postMessage(r, i || []);
2380
+ });
2381
+ }
2382
+ addEventListener(e, n) {
2383
+ this._eventManager.addEventListener(e, n);
2384
+ }
2385
+ removeEventListener(e, n) {
2386
+ this._eventManager.removeEventListener(e, n);
2387
+ }
2388
+ static setWasmUrl(e) {
2389
+ x._wasmUrl = e;
2390
+ }
2391
+ static async registerFont(e, n) {
2392
+ try {
2393
+ let i = L1();
2394
+ return x._workerManager.broadcastMessage({ id: i, method: "registerFont", params: { fontName: e, fontSource: n } }), !0;
2395
+ } catch (i) {
2396
+ return console.error(`Error broadcasting registerFont for "${e}":`, i), !1;
2397
+ }
2398
+ }
2399
+ async stateMachineLoad(e) {
2400
+ if (!this._created) return !1;
2401
+ let n = await this._sendMessage("stateMachineLoad", { instanceId: this._id, stateMachineId: e });
2402
+ return await this._updateDotLottieInstanceState(), n;
2403
+ }
2404
+ async stateMachineLoadData(e) {
2405
+ if (!this._created) return !1;
2406
+ let n = await this._sendMessage("stateMachineLoadData", { instanceId: this._id, stateMachineData: e });
2407
+ return await this._updateDotLottieInstanceState(), n;
2408
+ }
2409
+ async stateMachineStart() {
2410
+ if (!this._created) return !1;
2411
+ let e = await this._sendMessage("stateMachineStart", { instanceId: this._id });
2412
+ return e && (this._setupStateMachineListeners(), await this._updateDotLottieInstanceState()), e;
2413
+ }
2414
+ async stateMachineStop() {
2415
+ return this._created ? (this._cleanupStateMachineListeners(), this._sendMessage("stateMachineStop", { instanceId: this._id })) : !1;
2416
+ }
2417
+ async stateMachineSetNumericInput(e, n) {
2418
+ return this._created ? this._sendMessage("stateMachineSetNumericInput", { instanceId: this._id, name: e, value: n }) : !1;
2419
+ }
2420
+ async stateMachineSetBooleanInput(e, n) {
2421
+ return this._created ? this._sendMessage("stateMachineSetBooleanInput", { instanceId: this._id, name: e, value: n }) : !1;
2422
+ }
2423
+ async stateMachineSetConfig(e) {
2424
+ this._created && this._sendMessage("stateMachineSetConfig", { instanceId: this._id, config: e });
2425
+ }
2426
+ async stateMachineSetStringInput(e, n) {
2427
+ return this._created ? this._sendMessage("stateMachineSetStringInput", { instanceId: this._id, name: e, value: n }) : !1;
2428
+ }
2429
+ async stateMachineGetNumericInput(e) {
2430
+ if (this._created) return this._sendMessage("stateMachineGetNumericInput", { instanceId: this._id, name: e });
2431
+ }
2432
+ async stateMachineGetBooleanInput(e) {
2433
+ if (this._created) return this._sendMessage("stateMachineGetBooleanInput", { instanceId: this._id, name: e });
2434
+ }
2435
+ async stateMachineGetStringInput(e) {
2436
+ if (this._created) return this._sendMessage("stateMachineGetStringInput", { instanceId: this._id, name: e });
2437
+ }
2438
+ async stateMachineGetInputs() {
2439
+ if (this._created) return this._sendMessage("stateMachineGetInputs", { instanceId: this._id });
2440
+ }
2441
+ async stateMachineFireEvent(e) {
2442
+ this._created && this._sendMessage("stateMachineFireEvent", { instanceId: this._id, name: e });
2443
+ }
2444
+ async stateMachineGetStatus() {
2445
+ return this._created ? this._sendMessage("stateMachineGetStatus", { instanceId: this._id }) : "";
2446
+ }
2447
+ async stateMachineGetCurrentState() {
2448
+ return this._created ? this._sendMessage("stateMachineGetCurrentState", { instanceId: this._id }) : "";
2449
+ }
2450
+ async stateMachineGetActiveId() {
2451
+ return this._created ? this._sendMessage("stateMachineGetActiveId", { instanceId: this._id }) : "";
2452
+ }
2453
+ async stateMachineOverrideState(e, n = !1) {
2454
+ return this._created ? this._sendMessage("stateMachineOverrideState", { instanceId: this._id, state: e, immediate: n }) : !1;
2455
+ }
2456
+ async stateMachineGet(e) {
2457
+ return this._created ? this._sendMessage("stateMachineGet", { instanceId: this._id, stateMachineId: e }) : "";
2458
+ }
2459
+ async stateMachineGetListeners() {
2460
+ return this._created ? this._sendMessage("stateMachineGetListeners", { instanceId: this._id }) : [];
2461
+ }
2462
+ async stateMachinePostClickEvent(e, n) {
2463
+ if (this._created) return this._sendMessage("stateMachinePostClickEvent", { instanceId: this._id, x: e, y: n });
2464
+ }
2465
+ async stateMachinePostPointerUpEvent(e, n) {
2466
+ if (this._created) return this._sendMessage("stateMachinePostPointerUpEvent", { instanceId: this._id, x: e, y: n });
2467
+ }
2468
+ async stateMachinePostPointerDownEvent(e, n) {
2469
+ if (this._created) return this._sendMessage("stateMachinePostPointerDownEvent", { instanceId: this._id, x: e, y: n });
2470
+ }
2471
+ async stateMachinePostPointerMoveEvent(e, n) {
2472
+ if (this._created) return this._sendMessage("stateMachinePostPointerMoveEvent", { instanceId: this._id, x: e, y: n });
2473
+ }
2474
+ async stateMachinePostPointerEnterEvent(e, n) {
2475
+ if (this._created) return this._sendMessage("stateMachinePostPointerEnterEvent", { instanceId: this._id, x: e, y: n });
2476
+ }
2477
+ async stateMachinePostPointerExitEvent(e, n) {
2478
+ if (this._created) return this._sendMessage("stateMachinePostPointerExitEvent", { instanceId: this._id, x: e, y: n });
2479
+ }
2480
+ _onClick(e) {
2481
+ let n = P(e);
2482
+ n && this._sendMessage("stateMachinePostClickEvent", { instanceId: this._id, x: n.x, y: n.y });
2483
+ }
2484
+ _onPointerUp(e) {
2485
+ let n = P(e);
2486
+ n && this._sendMessage("stateMachinePostPointerUpEvent", { instanceId: this._id, x: n.x, y: n.y });
2487
+ }
2488
+ _onPointerDown(e) {
2489
+ let n = P(e);
2490
+ n && this._sendMessage("stateMachinePostPointerDownEvent", { instanceId: this._id, x: n.x, y: n.y });
2491
+ }
2492
+ _onPointerMove(e) {
2493
+ let n = P(e);
2494
+ n && this._sendMessage("stateMachinePostPointerMoveEvent", { instanceId: this._id, x: n.x, y: n.y });
2495
+ }
2496
+ _onPointerEnter(e) {
2497
+ let n = P(e);
2498
+ n && this._sendMessage("stateMachinePostPointerEnterEvent", { instanceId: this._id, x: n.x, y: n.y });
2499
+ }
2500
+ _onPointerLeave(e) {
2501
+ let n = P(e);
2502
+ n && this._sendMessage("stateMachinePostPointerExitEvent", { instanceId: this._id, x: n.x, y: n.y });
2503
+ }
2504
+ async _setupStateMachineListeners() {
2505
+ if (I && this._canvas instanceof HTMLCanvasElement && this.isLoaded) {
2506
+ let e = await this._sendMessage("stateMachineGetListeners", { instanceId: this._id });
2507
+ if (e.length === 0) return;
2508
+ 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));
2509
+ }
2510
+ }
2511
+ _cleanupStateMachineListeners() {
2512
+ 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));
2513
+ }
2514
+ };
2515
+ c(n0, "_workerManager", new l4()), c(n0, "_wasmUrl", "");
2516
+ const y4 = (t, e = !1) => typeof t == "boolean" ? t : typeof t == "string" ? t === "true" || t === "" : e, d4 = "11.6.0", L4 = {
2517
+ version: d4
2518
+ };
2519
+ export {
2520
+ v4 as A,
2521
+ E0 as H,
2522
+ c4 as I,
2523
+ u4 as J,
2524
+ z as S,
2525
+ D0 as T,
2526
+ g4 as _,
2527
+ b4 as a,
2528
+ q as b,
2529
+ m4 as d,
2530
+ y4 as g,
2531
+ p1 as k,
2532
+ v as l,
2533
+ L4 as p,
2534
+ w4 as r,
2535
+ M0 as t,
2536
+ p4 as u,
2537
+ l1 as x,
2538
+ f4 as y
2539
+ };
2540
+ //# sourceMappingURL=package-CjZI-cNQ.js.map