@internationalized/number 3.5.2-nightly.4552 → 3.5.2-nightly.4558

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/import.mjs CHANGED
@@ -1,169 +1,5 @@
1
- /*
2
- * Copyright 2020 Adobe. All rights reserved.
3
- * This file is licensed to you under the Apache License, Version 2.0 (the "License");
4
- * you may not use this file except in compliance with the License. You may obtain a copy
5
- * of the License at http://www.apache.org/licenses/LICENSE-2.0
6
- *
7
- * Unless required by applicable law or agreed to in writing, software distributed under
8
- * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
9
- * OF ANY KIND, either express or implied. See the License for the specific language
10
- * governing permissions and limitations under the License.
11
- */ /*
12
- * Copyright 2020 Adobe. All rights reserved.
13
- * This file is licensed to you under the Apache License, Version 2.0 (the "License");
14
- * you may not use this file except in compliance with the License. You may obtain a copy
15
- * of the License at http://www.apache.org/licenses/LICENSE-2.0
16
- *
17
- * Unless required by applicable law or agreed to in writing, software distributed under
18
- * the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR REPRESENTATIONS
19
- * OF ANY KIND, either express or implied. See the License for the specific language
20
- * governing permissions and limitations under the License.
21
- */ let $488c6ddbf4ef74c2$var$formatterCache = new Map();
22
- let $488c6ddbf4ef74c2$var$supportsSignDisplay = false;
23
- try {
24
- // @ts-ignore
25
- $488c6ddbf4ef74c2$var$supportsSignDisplay = new Intl.NumberFormat("de-DE", {
26
- signDisplay: "exceptZero"
27
- }).resolvedOptions().signDisplay === "exceptZero";
28
- // eslint-disable-next-line no-empty
29
- } catch (e) {}
30
- let $488c6ddbf4ef74c2$var$supportsUnit = false;
31
- try {
32
- // @ts-ignore
33
- $488c6ddbf4ef74c2$var$supportsUnit = new Intl.NumberFormat("de-DE", {
34
- style: "unit",
35
- unit: "degree"
36
- }).resolvedOptions().style === "unit";
37
- // eslint-disable-next-line no-empty
38
- } catch (e) {}
39
- // Polyfill for units since Safari doesn't support them yet. See https://bugs.webkit.org/show_bug.cgi?id=215438.
40
- // Currently only polyfilling the unit degree in narrow format for ColorSlider in our supported locales.
41
- // Values were determined by switching to each locale manually in Chrome.
42
- const $488c6ddbf4ef74c2$var$UNITS = {
43
- degree: {
44
- narrow: {
45
- default: "\xb0",
46
- "ja-JP": " \u5EA6",
47
- "zh-TW": "\u5EA6",
48
- "sl-SI": " \xb0"
49
- }
50
- }
51
- };
52
- class $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5 {
53
- /** Formats a number value as a string, according to the locale and options provided to the constructor. */ format(value) {
54
- let res = "";
55
- if (!$488c6ddbf4ef74c2$var$supportsSignDisplay && this.options.signDisplay != null) res = $488c6ddbf4ef74c2$export$711b50b3c525e0f2(this.numberFormatter, this.options.signDisplay, value);
56
- else res = this.numberFormatter.format(value);
57
- if (this.options.style === "unit" && !$488c6ddbf4ef74c2$var$supportsUnit) {
58
- var _UNITS_unit;
59
- let { unit: unit, unitDisplay: unitDisplay = "short", locale: locale } = this.resolvedOptions();
60
- if (!unit) return res;
61
- let values = (_UNITS_unit = $488c6ddbf4ef74c2$var$UNITS[unit]) === null || _UNITS_unit === void 0 ? void 0 : _UNITS_unit[unitDisplay];
62
- res += values[locale] || values.default;
63
- }
64
- return res;
65
- }
66
- /** Formats a number to an array of parts such as separators, digits, punctuation, and more. */ formatToParts(value) {
67
- // TODO: implement signDisplay for formatToParts
68
- // @ts-ignore
69
- return this.numberFormatter.formatToParts(value);
70
- }
71
- /** Formats a number range as a string. */ formatRange(start, end) {
72
- // @ts-ignore
73
- if (typeof this.numberFormatter.formatRange === "function") // @ts-ignore
74
- return this.numberFormatter.formatRange(start, end);
75
- if (end < start) throw new RangeError("End date must be >= start date");
76
- // Very basic fallback for old browsers.
77
- return `${this.format(start)} \u{2013} ${this.format(end)}`;
78
- }
79
- /** Formats a number range as an array of parts. */ formatRangeToParts(start, end) {
80
- // @ts-ignore
81
- if (typeof this.numberFormatter.formatRangeToParts === "function") // @ts-ignore
82
- return this.numberFormatter.formatRangeToParts(start, end);
83
- if (end < start) throw new RangeError("End date must be >= start date");
84
- let startParts = this.numberFormatter.formatToParts(start);
85
- let endParts = this.numberFormatter.formatToParts(end);
86
- return [
87
- ...startParts.map((p)=>({
88
- ...p,
89
- source: "startRange"
90
- })),
91
- {
92
- type: "literal",
93
- value: " \u2013 ",
94
- source: "shared"
95
- },
96
- ...endParts.map((p)=>({
97
- ...p,
98
- source: "endRange"
99
- }))
100
- ];
101
- }
102
- /** Returns the resolved formatting options based on the values passed to the constructor. */ resolvedOptions() {
103
- let options = this.numberFormatter.resolvedOptions();
104
- if (!$488c6ddbf4ef74c2$var$supportsSignDisplay && this.options.signDisplay != null) options = {
105
- ...options,
106
- signDisplay: this.options.signDisplay
107
- };
108
- if (!$488c6ddbf4ef74c2$var$supportsUnit && this.options.style === "unit") options = {
109
- ...options,
110
- style: "unit",
111
- unit: this.options.unit,
112
- unitDisplay: this.options.unitDisplay
113
- };
114
- return options;
115
- }
116
- constructor(locale, options = {}){
117
- this.numberFormatter = $488c6ddbf4ef74c2$var$getCachedNumberFormatter(locale, options);
118
- this.options = options;
119
- }
120
- }
121
- function $488c6ddbf4ef74c2$var$getCachedNumberFormatter(locale, options = {}) {
122
- let { numberingSystem: numberingSystem } = options;
123
- if (numberingSystem && locale.includes("-nu-")) {
124
- if (!locale.includes("-u-")) locale += "-u-";
125
- locale += `-nu-${numberingSystem}`;
126
- }
127
- if (options.style === "unit" && !$488c6ddbf4ef74c2$var$supportsUnit) {
128
- var _UNITS_unit;
129
- let { unit: unit, unitDisplay: unitDisplay = "short" } = options;
130
- if (!unit) throw new Error('unit option must be provided with style: "unit"');
131
- if (!((_UNITS_unit = $488c6ddbf4ef74c2$var$UNITS[unit]) === null || _UNITS_unit === void 0 ? void 0 : _UNITS_unit[unitDisplay])) throw new Error(`Unsupported unit ${unit} with unitDisplay = ${unitDisplay}`);
132
- options = {
133
- ...options,
134
- style: "decimal"
135
- };
136
- }
137
- let cacheKey = locale + (options ? Object.entries(options).sort((a, b)=>a[0] < b[0] ? -1 : 1).join() : "");
138
- if ($488c6ddbf4ef74c2$var$formatterCache.has(cacheKey)) return $488c6ddbf4ef74c2$var$formatterCache.get(cacheKey);
139
- let numberFormatter = new Intl.NumberFormat(locale, options);
140
- $488c6ddbf4ef74c2$var$formatterCache.set(cacheKey, numberFormatter);
141
- return numberFormatter;
142
- }
143
- function $488c6ddbf4ef74c2$export$711b50b3c525e0f2(numberFormat, signDisplay, num) {
144
- if (signDisplay === "auto") return numberFormat.format(num);
145
- else if (signDisplay === "never") return numberFormat.format(Math.abs(num));
146
- else {
147
- let needsPositiveSign = false;
148
- if (signDisplay === "always") needsPositiveSign = num > 0 || Object.is(num, 0);
149
- else if (signDisplay === "exceptZero") {
150
- if (Object.is(num, -0) || Object.is(num, 0)) num = Math.abs(num);
151
- else needsPositiveSign = num > 0;
152
- }
153
- if (needsPositiveSign) {
154
- let negative = numberFormat.format(-num);
155
- let noSign = numberFormat.format(num);
156
- // ignore RTL/LTR marker character
157
- let minus = negative.replace(noSign, "").replace(/\u200e|\u061C/, "");
158
- if ([
159
- ...minus
160
- ].length !== 1) console.warn("@react-aria/i18n polyfill for NumberFormat signDisplay: Unsupported case");
161
- let positive = negative.replace(noSign, "!!!").replace(minus, "+").replace("!!!", noSign);
162
- return positive;
163
- } else return numberFormat.format(num);
164
- }
165
- }
166
-
1
+ import {NumberFormatter as $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5} from "./NumberFormatter.mjs";
2
+ import {NumberParser as $6c7bd7858deea686$export$cd11ab140839f11d} from "./NumberParser.mjs";
167
3
 
168
4
  /*
169
5
  * Copyright 2020 Adobe. All rights reserved.
@@ -176,241 +12,6 @@ function $488c6ddbf4ef74c2$export$711b50b3c525e0f2(numberFormat, signDisplay, nu
176
12
  * OF ANY KIND, either express or implied. See the License for the specific language
177
13
  * governing permissions and limitations under the License.
178
14
  */
179
- const $6c7bd7858deea686$var$CURRENCY_SIGN_REGEX = new RegExp("^.*\\(.*\\).*$");
180
- const $6c7bd7858deea686$var$NUMBERING_SYSTEMS = [
181
- "latn",
182
- "arab",
183
- "hanidec"
184
- ];
185
- class $6c7bd7858deea686$export$cd11ab140839f11d {
186
- /**
187
- * Parses the given string to a number. Returns NaN if a valid number could not be parsed.
188
- */ parse(value) {
189
- return $6c7bd7858deea686$var$getNumberParserImpl(this.locale, this.options, value).parse(value);
190
- }
191
- /**
192
- * Returns whether the given string could potentially be a valid number. This should be used to
193
- * validate user input as the user types. If a `minValue` or `maxValue` is provided, the validity
194
- * of the minus/plus sign characters can be checked.
195
- */ isValidPartialNumber(value, minValue, maxValue) {
196
- return $6c7bd7858deea686$var$getNumberParserImpl(this.locale, this.options, value).isValidPartialNumber(value, minValue, maxValue);
197
- }
198
- /**
199
- * Returns a numbering system for which the given string is valid in the current locale.
200
- * If no numbering system could be detected, the default numbering system for the current
201
- * locale is returned.
202
- */ getNumberingSystem(value) {
203
- return $6c7bd7858deea686$var$getNumberParserImpl(this.locale, this.options, value).options.numberingSystem;
204
- }
205
- constructor(locale, options = {}){
206
- this.locale = locale;
207
- this.options = options;
208
- }
209
- }
210
- const $6c7bd7858deea686$var$numberParserCache = new Map();
211
- function $6c7bd7858deea686$var$getNumberParserImpl(locale, options, value) {
212
- // First try the default numbering system for the provided locale
213
- let defaultParser = $6c7bd7858deea686$var$getCachedNumberParser(locale, options);
214
- // If that doesn't match, and the locale doesn't include a hard coded numbering system,
215
- // try each of the other supported numbering systems until we find one that matches.
216
- if (!locale.includes("-nu-") && !defaultParser.isValidPartialNumber(value)) {
217
- for (let numberingSystem of $6c7bd7858deea686$var$NUMBERING_SYSTEMS)if (numberingSystem !== defaultParser.options.numberingSystem) {
218
- let parser = $6c7bd7858deea686$var$getCachedNumberParser(locale + (locale.includes("-u-") ? "-nu-" : "-u-nu-") + numberingSystem, options);
219
- if (parser.isValidPartialNumber(value)) return parser;
220
- }
221
- }
222
- return defaultParser;
223
- }
224
- function $6c7bd7858deea686$var$getCachedNumberParser(locale, options) {
225
- let cacheKey = locale + (options ? Object.entries(options).sort((a, b)=>a[0] < b[0] ? -1 : 1).join() : "");
226
- let parser = $6c7bd7858deea686$var$numberParserCache.get(cacheKey);
227
- if (!parser) {
228
- parser = new $6c7bd7858deea686$var$NumberParserImpl(locale, options);
229
- $6c7bd7858deea686$var$numberParserCache.set(cacheKey, parser);
230
- }
231
- return parser;
232
- }
233
- // The actual number parser implementation. Instances of this class are cached
234
- // based on the locale, options, and detected numbering system.
235
- class $6c7bd7858deea686$var$NumberParserImpl {
236
- parse(value) {
237
- // to parse the number, we need to remove anything that isn't actually part of the number, for example we want '-10.40' not '-10.40 USD'
238
- let fullySanitizedValue = this.sanitize(value);
239
- if (this.symbols.group) // Remove group characters, and replace decimal points and numerals with ASCII values.
240
- fullySanitizedValue = $6c7bd7858deea686$var$replaceAll(fullySanitizedValue, this.symbols.group, "");
241
- if (this.symbols.decimal) fullySanitizedValue = fullySanitizedValue.replace(this.symbols.decimal, ".");
242
- if (this.symbols.minusSign) fullySanitizedValue = fullySanitizedValue.replace(this.symbols.minusSign, "-");
243
- fullySanitizedValue = fullySanitizedValue.replace(this.symbols.numeral, this.symbols.index);
244
- if (this.options.style === "percent") {
245
- // javascript is bad at dividing by 100 and maintaining the same significant figures, so perform it on the string before parsing
246
- let isNegative = fullySanitizedValue.indexOf("-");
247
- fullySanitizedValue = fullySanitizedValue.replace("-", "");
248
- let index = fullySanitizedValue.indexOf(".");
249
- if (index === -1) index = fullySanitizedValue.length;
250
- fullySanitizedValue = fullySanitizedValue.replace(".", "");
251
- if (index - 2 === 0) fullySanitizedValue = `0.${fullySanitizedValue}`;
252
- else if (index - 2 === -1) fullySanitizedValue = `0.0${fullySanitizedValue}`;
253
- else if (index - 2 === -2) fullySanitizedValue = "0.00";
254
- else fullySanitizedValue = `${fullySanitizedValue.slice(0, index - 2)}.${fullySanitizedValue.slice(index - 2)}`;
255
- if (isNegative > -1) fullySanitizedValue = `-${fullySanitizedValue}`;
256
- }
257
- let newValue = fullySanitizedValue ? +fullySanitizedValue : NaN;
258
- if (isNaN(newValue)) return NaN;
259
- if (this.options.style === "percent") {
260
- // extra step for rounding percents to what our formatter would output
261
- let options = {
262
- ...this.options,
263
- style: "decimal",
264
- minimumFractionDigits: Math.min(this.options.minimumFractionDigits + 2, 20),
265
- maximumFractionDigits: Math.min(this.options.maximumFractionDigits + 2, 20)
266
- };
267
- return new $6c7bd7858deea686$export$cd11ab140839f11d(this.locale, options).parse(new (0, $488c6ddbf4ef74c2$export$cc77c4ff7e8673c5)(this.locale, options).format(newValue));
268
- }
269
- // accounting will always be stripped to a positive number, so if it's accounting and has a () around everything, then we need to make it negative again
270
- if (this.options.currencySign === "accounting" && $6c7bd7858deea686$var$CURRENCY_SIGN_REGEX.test(value)) newValue = -1 * newValue;
271
- return newValue;
272
- }
273
- sanitize(value) {
274
- // Remove literals and whitespace, which are allowed anywhere in the string
275
- value = value.replace(this.symbols.literals, "");
276
- // Replace the ASCII minus sign with the minus sign used in the current locale
277
- // so that both are allowed in case the user's keyboard doesn't have the locale's minus sign.
278
- if (this.symbols.minusSign) value = value.replace("-", this.symbols.minusSign);
279
- // In arab numeral system, their decimal character is 1643, but most keyboards don't type that
280
- // instead they use the , (44) character or apparently the (1548) character.
281
- if (this.options.numberingSystem === "arab") {
282
- if (this.symbols.decimal) {
283
- value = value.replace(",", this.symbols.decimal);
284
- value = value.replace(String.fromCharCode(1548), this.symbols.decimal);
285
- }
286
- if (this.symbols.group) value = $6c7bd7858deea686$var$replaceAll(value, ".", this.symbols.group);
287
- }
288
- // fr-FR group character is char code 8239, but that's not a key on the french keyboard,
289
- // so allow 'period' as a group char and replace it with a space
290
- if (this.options.locale === "fr-FR") value = $6c7bd7858deea686$var$replaceAll(value, ".", String.fromCharCode(8239));
291
- return value;
292
- }
293
- isValidPartialNumber(value, minValue = -Infinity, maxValue = Infinity) {
294
- value = this.sanitize(value);
295
- // Remove minus or plus sign, which must be at the start of the string.
296
- if (this.symbols.minusSign && value.startsWith(this.symbols.minusSign) && minValue < 0) value = value.slice(this.symbols.minusSign.length);
297
- else if (this.symbols.plusSign && value.startsWith(this.symbols.plusSign) && maxValue > 0) value = value.slice(this.symbols.plusSign.length);
298
- // Numbers cannot start with a group separator
299
- if (this.symbols.group && value.startsWith(this.symbols.group)) return false;
300
- // Numbers that can't have any decimal values fail if a decimal character is typed
301
- if (this.symbols.decimal && value.indexOf(this.symbols.decimal) > -1 && this.options.maximumFractionDigits === 0) return false;
302
- // Remove numerals, groups, and decimals
303
- if (this.symbols.group) value = $6c7bd7858deea686$var$replaceAll(value, this.symbols.group, "");
304
- value = value.replace(this.symbols.numeral, "");
305
- if (this.symbols.decimal) value = value.replace(this.symbols.decimal, "");
306
- // The number is valid if there are no remaining characters
307
- return value.length === 0;
308
- }
309
- constructor(locale, options = {}){
310
- this.locale = locale;
311
- this.formatter = new Intl.NumberFormat(locale, options);
312
- this.options = this.formatter.resolvedOptions();
313
- this.symbols = $6c7bd7858deea686$var$getSymbols(locale, this.formatter, this.options, options);
314
- var _this_options_minimumFractionDigits, _this_options_maximumFractionDigits;
315
- if (this.options.style === "percent" && (((_this_options_minimumFractionDigits = this.options.minimumFractionDigits) !== null && _this_options_minimumFractionDigits !== void 0 ? _this_options_minimumFractionDigits : 0) > 18 || ((_this_options_maximumFractionDigits = this.options.maximumFractionDigits) !== null && _this_options_maximumFractionDigits !== void 0 ? _this_options_maximumFractionDigits : 0) > 18)) console.warn("NumberParser cannot handle percentages with greater than 18 decimal places, please reduce the number in your options.");
316
- }
317
- }
318
- const $6c7bd7858deea686$var$nonLiteralParts = new Set([
319
- "decimal",
320
- "fraction",
321
- "integer",
322
- "minusSign",
323
- "plusSign",
324
- "group"
325
- ]);
326
- // This list is derived from https://www.unicode.org/cldr/charts/43/supplemental/language_plural_rules.html#comparison and includes
327
- // all unique numbers which we need to check in order to determine all the plural forms for a given locale.
328
- // See: https://github.com/adobe/react-spectrum/pull/5134/files#r1337037855 for used script
329
- const $6c7bd7858deea686$var$pluralNumbers = [
330
- 0,
331
- 4,
332
- 2,
333
- 1,
334
- 11,
335
- 20,
336
- 3,
337
- 7,
338
- 100,
339
- 21,
340
- 0.1,
341
- 1.1
342
- ];
343
- function $6c7bd7858deea686$var$getSymbols(locale, formatter, intlOptions, originalOptions) {
344
- var _allParts_find, _posAllParts_find, _decimalParts_find, _allParts_find1;
345
- // formatter needs access to all decimal places in order to generate the correct literal strings for the plural set
346
- let symbolFormatter = new Intl.NumberFormat(locale, {
347
- ...intlOptions,
348
- minimumSignificantDigits: 1,
349
- maximumSignificantDigits: 21
350
- });
351
- // Note: some locale's don't add a group symbol until there is a ten thousands place
352
- let allParts = symbolFormatter.formatToParts(-10000.111);
353
- let posAllParts = symbolFormatter.formatToParts(10000.111);
354
- let pluralParts = $6c7bd7858deea686$var$pluralNumbers.map((n)=>symbolFormatter.formatToParts(n));
355
- var _allParts_find_value;
356
- let minusSign = (_allParts_find_value = (_allParts_find = allParts.find((p)=>p.type === "minusSign")) === null || _allParts_find === void 0 ? void 0 : _allParts_find.value) !== null && _allParts_find_value !== void 0 ? _allParts_find_value : "-";
357
- let plusSign = (_posAllParts_find = posAllParts.find((p)=>p.type === "plusSign")) === null || _posAllParts_find === void 0 ? void 0 : _posAllParts_find.value;
358
- // Safari does not support the signDisplay option, but our number parser polyfills it.
359
- // If no plus sign was returned, but the original options contained signDisplay, default to the '+' character.
360
- // @ts-ignore
361
- if (!plusSign && ((originalOptions === null || originalOptions === void 0 ? void 0 : originalOptions.signDisplay) === "exceptZero" || (originalOptions === null || originalOptions === void 0 ? void 0 : originalOptions.signDisplay) === "always")) plusSign = "+";
362
- // If maximumSignificantDigits is 1 (the minimum) then we won't get decimal characters out of the above formatters
363
- // Percent also defaults to 0 fractionDigits, so we need to make a new one that isn't percent to get an accurate decimal
364
- let decimalParts = new Intl.NumberFormat(locale, {
365
- ...intlOptions,
366
- minimumFractionDigits: 2,
367
- maximumFractionDigits: 2
368
- }).formatToParts(0.001);
369
- let decimal = (_decimalParts_find = decimalParts.find((p)=>p.type === "decimal")) === null || _decimalParts_find === void 0 ? void 0 : _decimalParts_find.value;
370
- let group = (_allParts_find1 = allParts.find((p)=>p.type === "group")) === null || _allParts_find1 === void 0 ? void 0 : _allParts_find1.value;
371
- // this set is also for a regex, it's all literals that might be in the string we want to eventually parse that
372
- // don't contribute to the numerical value
373
- let allPartsLiterals = allParts.filter((p)=>!$6c7bd7858deea686$var$nonLiteralParts.has(p.type)).map((p)=>$6c7bd7858deea686$var$escapeRegex(p.value));
374
- let pluralPartsLiterals = pluralParts.flatMap((p)=>p.filter((p)=>!$6c7bd7858deea686$var$nonLiteralParts.has(p.type)).map((p)=>$6c7bd7858deea686$var$escapeRegex(p.value)));
375
- let sortedLiterals = [
376
- ...new Set([
377
- ...allPartsLiterals,
378
- ...pluralPartsLiterals
379
- ])
380
- ].sort((a, b)=>b.length - a.length);
381
- let literals = sortedLiterals.length === 0 ? new RegExp("[\\p{White_Space}]", "gu") : new RegExp(`${sortedLiterals.join("|")}|[\\p{White_Space}]`, "gu");
382
- // These are for replacing non-latn characters with the latn equivalent
383
- let numerals = [
384
- ...new Intl.NumberFormat(intlOptions.locale, {
385
- useGrouping: false
386
- }).format(9876543210)
387
- ].reverse();
388
- let indexes = new Map(numerals.map((d, i)=>[
389
- d,
390
- i
391
- ]));
392
- let numeral = new RegExp(`[${numerals.join("")}]`, "g");
393
- let index = (d)=>String(indexes.get(d));
394
- return {
395
- minusSign: minusSign,
396
- plusSign: plusSign,
397
- decimal: decimal,
398
- group: group,
399
- literals: literals,
400
- numeral: numeral,
401
- index: index
402
- };
403
- }
404
- function $6c7bd7858deea686$var$replaceAll(str, find, replace) {
405
- // @ts-ignore
406
- if (str.replaceAll) // @ts-ignore
407
- return str.replaceAll(find, replace);
408
- return str.split(find).join(replace);
409
- }
410
- function $6c7bd7858deea686$var$escapeRegex(string) {
411
- return string.replace(/[.*+?^${}()|[\]\\]/g, "\\$&");
412
- }
413
-
414
15
 
415
16
 
416
17