@reliverse/relinka 1.1.7 → 1.1.8
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-npm/components/anykey/index.js +57 -77
- package/dist-npm/components/block/block.js +48 -61
- package/dist-npm/components/checkbox/index.js +178 -211
- package/dist-npm/components/confirm/confirm-main.js +85 -122
- package/dist-npm/components/confirm/confirm-three.js +24 -27
- package/dist-npm/components/confirm/index.js +36 -45
- package/dist-npm/components/core/Separator.js +15 -17
- package/dist-npm/components/core/create-prompt.js +101 -124
- package/dist-npm/components/core/errors.js +19 -15
- package/dist-npm/components/core/hook-engine.js +91 -120
- package/dist-npm/components/core/index.js +12 -12
- package/dist-npm/components/core/key.js +16 -6
- package/dist-npm/components/core/lines.js +45 -54
- package/dist-npm/components/core/make-theme.js +21 -30
- package/dist-npm/components/core/position.js +27 -23
- package/dist-npm/components/core/promise-polyfill.js +11 -14
- package/dist-npm/components/core/screen-manager.js +59 -74
- package/dist-npm/components/core/theme.js +22 -32
- package/dist-npm/components/core/use-effect.js +9 -15
- package/dist-npm/components/core/use-keypress.js +19 -23
- package/dist-npm/components/core/use-memo.js +10 -16
- package/dist-npm/components/core/use-pagination.js +33 -32
- package/dist-npm/components/core/use-prefix.js +40 -38
- package/dist-npm/components/core/use-ref.js +2 -5
- package/dist-npm/components/core/use-state.js +15 -23
- package/dist-npm/components/core/useKeyPress.js +14 -17
- package/dist-npm/components/core/usePromptState.js +8 -14
- package/dist-npm/components/core/utils.js +7 -16
- package/dist-npm/components/date/date.js +173 -204
- package/dist-npm/components/editor/index.js +71 -92
- package/dist-npm/components/expand/index.js +96 -124
- package/dist-npm/components/figures/index.js +283 -294
- package/dist-npm/components/input/index.js +61 -87
- package/dist-npm/components/input/text-main.js +97 -124
- package/dist-npm/components/input/text.js +24 -28
- package/dist-npm/components/instance/basic.js +17 -25
- package/dist-npm/components/instance/browser.js +14 -18
- package/dist-npm/components/instance/reporter/basic.js +46 -65
- package/dist-npm/components/instance/reporter/browser.js +44 -47
- package/dist-npm/components/instance/reporter/fancy.js +83 -96
- package/dist-npm/components/instance/shared.js +2 -2
- package/dist-npm/components/mono/mono.js +52 -62
- package/dist-npm/components/mono/monoTwo.js +35 -49
- package/dist-npm/components/multiselect/group-multiselect.js +55 -71
- package/dist-npm/components/multiselect/multi-select-two.js +97 -130
- package/dist-npm/components/multiselect/multi-select.js +43 -49
- package/dist-npm/components/multiselect/multiselect-main.d.ts +1 -0
- package/dist-npm/components/multiselect/multiselect-main.js +158 -145
- package/dist-npm/components/multiselect/num-multi-select.js +97 -130
- package/dist-npm/components/multiselect/num-multiselect-main.js +24 -35
- package/dist-npm/components/next-steps/next-steps.js +23 -25
- package/dist-npm/components/number/index.js +78 -112
- package/dist-npm/components/number/number-main.js +95 -2
- package/dist-npm/components/password/index.js +54 -73
- package/dist-npm/components/password/password-main.js +119 -2
- package/dist-npm/components/password/password-three.js +26 -30
- package/dist-npm/components/progressbar/ProgressBar.js +45 -64
- package/dist-npm/components/progressbar/helper.js +33 -40
- package/dist-npm/components/progressbar/index.js +1 -1
- package/dist-npm/components/prompts/create.js +29 -44
- package/dist-npm/components/prompts/index.d.ts +1 -0
- package/dist-npm/components/prompts/index.js +46 -45
- package/dist-npm/components/prompts/prompt.js +211 -260
- package/dist-npm/components/prompts/promptTwo.js +561 -605
- package/dist-npm/components/prompts/relinka.js +237 -295
- package/dist-npm/components/range/range.js +247 -294
- package/dist-npm/components/rawlist/index.js +87 -107
- package/dist-npm/components/results/results.js +31 -37
- package/dist-npm/components/search/index.js +148 -193
- package/dist-npm/components/select/index.js +148 -186
- package/dist-npm/components/select/num-select-main.js +27 -27
- package/dist-npm/components/select/num-select.js +124 -5
- package/dist-npm/components/select/select-key.js +24 -25
- package/dist-npm/components/select/select-main.d.ts +1 -0
- package/dist-npm/components/select/select-main.js +143 -133
- package/dist-npm/components/select/select-three.js +32 -36
- package/dist-npm/components/select/select-two.js +94 -87
- package/dist-npm/components/spinner/index.js +107 -136
- package/dist-npm/components/st-end/end.js +34 -26
- package/dist-npm/components/st-end/start.js +29 -15
- package/dist-npm/components/toggle/index.js +113 -137
- package/dist-npm/components/visual/animate/animate.js +53 -10
- package/dist-npm/components/visual/ascii-art/ascii-art.js +12 -1
- package/dist-npm/main.js +1 -0
- package/dist-npm/testing/index.js +58 -83
- package/dist-npm/types/general.d.ts +1 -1
- package/dist-npm/types/general.js +0 -1
- package/dist-npm/types/index.js +2 -3
- package/dist-npm/types/keypress.js +35 -36
- package/dist-npm/types/readline.js +0 -1
- package/dist-npm/types/relinka.js +0 -1
- package/dist-npm/types/utils.js +0 -1
- package/dist-npm/utils/box.js +135 -137
- package/dist-npm/utils/color.js +65 -74
- package/dist-npm/utils/colorize.js +124 -156
- package/dist-npm/utils/component.js +532 -657
- package/dist-npm/utils/constants.js +64 -63
- package/dist-npm/utils/core.js +2 -3
- package/dist-npm/utils/decoder.js +244 -223
- package/dist-npm/utils/error.js +4 -9
- package/dist-npm/utils/errors.js +14 -4
- package/dist-npm/utils/format.js +19 -24
- package/dist-npm/utils/keypress.js +316 -414
- package/dist-npm/utils/log.js +11 -15
- package/dist-npm/utils/mapping.js +45 -52
- package/dist-npm/utils/messages.js +196 -183
- package/dist-npm/utils/platforms.js +16 -20
- package/dist-npm/utils/prompt-tmp.js +235 -286
- package/dist-npm/utils/prompt-two.js +235 -286
- package/dist-npm/utils/readline.js +5 -7
- package/dist-npm/utils/skeleton.js +130 -170
- package/dist-npm/utils/stream.js +2 -2
- package/dist-npm/utils/string.js +44 -58
- package/dist-npm/utils/terminal.js +23 -34
- package/dist-npm/utils/tree.js +30 -41
- package/dist-npm/utils/types.js +0 -1
- package/dist-npm/utils/utils.js +8 -8
- package/dist-npm/utils/variants.js +36 -44
- package/package.json +14 -14
- package/dist-npm/mod.js +0 -2
- /package/dist-npm/{mod.d.ts → main.d.ts} +0 -0
package/dist-npm/utils/color.js
CHANGED
|
@@ -1,93 +1,84 @@
|
|
|
1
|
-
import * as tty from
|
|
2
|
-
import process from 'node:process';
|
|
3
|
-
|
|
4
|
-
const isUndefined = (a) => typeof a === 'undefined';
|
|
5
|
-
|
|
1
|
+
import * as tty from "node:tty";
|
|
6
2
|
const {
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
} =
|
|
11
|
-
|
|
12
|
-
const
|
|
13
|
-
const
|
|
14
|
-
const
|
|
15
|
-
const isDumbTerminal = env.TERM === 'dumb';
|
|
3
|
+
env = {},
|
|
4
|
+
argv = [],
|
|
5
|
+
platform = ""
|
|
6
|
+
} = typeof process === "undefined" ? {} : process;
|
|
7
|
+
const isDisabled = "NO_COLOR" in env || argv.includes("--no-color");
|
|
8
|
+
const isForced = "FORCE_COLOR" in env || argv.includes("--color");
|
|
9
|
+
const isWindows = platform === "win32";
|
|
10
|
+
const isDumbTerminal = env.TERM === "dumb";
|
|
16
11
|
const isCompatibleTerminal = tty?.isatty && tty.isatty(1) && env.TERM && !isDumbTerminal;
|
|
17
|
-
const isCI =
|
|
12
|
+
const isCI = "CI" in env && ("GITHUB_ACTIONS" in env || "GITLAB_CI" in env || "CIRCLECI" in env);
|
|
18
13
|
const isColorSupported = !isDisabled && (isForced || isWindows && !isDumbTerminal || isCompatibleTerminal || isCI);
|
|
19
|
-
|
|
20
14
|
function replaceClose(index, string, close, replace, head = string.slice(0, Math.max(0, index)) + replace, tail = string.slice(Math.max(0, index + close.length)), next = tail.indexOf(close)) {
|
|
21
|
-
|
|
15
|
+
return head + (next < 0 ? tail : replaceClose(next, tail, close, replace));
|
|
22
16
|
}
|
|
23
|
-
|
|
24
17
|
function clearBleed(index, string, open, close, replace) {
|
|
25
|
-
|
|
18
|
+
return index < 0 ? open + string + close : open + replaceClose(index, string, close, replace) + close;
|
|
26
19
|
}
|
|
27
|
-
|
|
28
20
|
function filterEmpty(open, close, replace = open, at = open.length + 1) {
|
|
29
|
-
|
|
21
|
+
return (string) => string || !(string === "" || string === void 0) ? clearBleed(
|
|
22
|
+
("" + string).indexOf(close, at),
|
|
23
|
+
string,
|
|
24
|
+
open,
|
|
25
|
+
close,
|
|
26
|
+
replace
|
|
27
|
+
) : "";
|
|
30
28
|
}
|
|
31
|
-
|
|
32
29
|
function init(open, close, replace) {
|
|
33
|
-
|
|
30
|
+
return filterEmpty(`\x1B[${open}m`, `\x1B[${close}m`, replace);
|
|
34
31
|
}
|
|
35
|
-
|
|
36
32
|
const colorDefs = {
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
33
|
+
reset: init(0, 0),
|
|
34
|
+
bold: init(1, 22, "\x1B[22m\x1B[1m"),
|
|
35
|
+
dim: init(2, 22, "\x1B[22m\x1B[2m"),
|
|
36
|
+
italic: init(3, 23),
|
|
37
|
+
underline: init(4, 24),
|
|
38
|
+
inverse: init(7, 27),
|
|
39
|
+
hidden: init(8, 28),
|
|
40
|
+
strikethrough: init(9, 29),
|
|
41
|
+
black: init(30, 39),
|
|
42
|
+
red: init(31, 39),
|
|
43
|
+
green: init(32, 39),
|
|
44
|
+
yellow: init(33, 39),
|
|
45
|
+
blue: init(34, 39),
|
|
46
|
+
magenta: init(35, 39),
|
|
47
|
+
cyan: init(36, 39),
|
|
48
|
+
white: init(37, 39),
|
|
49
|
+
gray: init(90, 39),
|
|
50
|
+
bgBlack: init(40, 49),
|
|
51
|
+
bgRed: init(41, 49),
|
|
52
|
+
bgGreen: init(42, 49),
|
|
53
|
+
bgYellow: init(43, 49),
|
|
54
|
+
bgBlue: init(44, 49),
|
|
55
|
+
bgMagenta: init(45, 49),
|
|
56
|
+
bgCyan: init(46, 49),
|
|
57
|
+
bgWhite: init(47, 49),
|
|
58
|
+
blackBright: init(90, 39),
|
|
59
|
+
redBright: init(91, 39),
|
|
60
|
+
greenBright: init(92, 39),
|
|
61
|
+
yellowBright: init(93, 39),
|
|
62
|
+
blueBright: init(94, 39),
|
|
63
|
+
magentaBright: init(95, 39),
|
|
64
|
+
cyanBright: init(96, 39),
|
|
65
|
+
whiteBright: init(97, 39),
|
|
66
|
+
bgBlackBright: init(100, 49),
|
|
67
|
+
bgRedBright: init(101, 49),
|
|
68
|
+
bgGreenBright: init(102, 49),
|
|
69
|
+
bgYellowBright: init(103, 49),
|
|
70
|
+
bgBlueBright: init(104, 49),
|
|
71
|
+
bgMagentaBright: init(105, 49),
|
|
72
|
+
bgCyanBright: init(106, 49),
|
|
73
|
+
bgWhiteBright: init(107, 49)
|
|
78
74
|
};
|
|
79
|
-
|
|
80
75
|
function createColors(useColor = isColorSupported) {
|
|
81
|
-
|
|
82
|
-
.keys(colorDefs)
|
|
83
|
-
.map((key) => [key, String]));
|
|
76
|
+
return useColor ? colorDefs : Object.fromEntries(Object.keys(colorDefs).map((key) => [key, String]));
|
|
84
77
|
}
|
|
85
|
-
|
|
86
78
|
export const colors = createColors();
|
|
87
|
-
export function getColor(color, fallback =
|
|
88
|
-
|
|
79
|
+
export function getColor(color, fallback = "reset") {
|
|
80
|
+
return colors[color] || colors[fallback];
|
|
89
81
|
}
|
|
90
|
-
|
|
91
82
|
export function colorize(color, text) {
|
|
92
|
-
|
|
83
|
+
return getColor(color)(text);
|
|
93
84
|
}
|
|
@@ -1,162 +1,130 @@
|
|
|
1
1
|
import gradient, {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
} from
|
|
2
|
+
cristal,
|
|
3
|
+
mind,
|
|
4
|
+
passion,
|
|
5
|
+
rainbow,
|
|
6
|
+
vice
|
|
7
|
+
} from "gradient-string";
|
|
8
8
|
import {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
} from
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
case
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
case
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
case
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
case
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
case
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
])(result);
|
|
96
|
-
break;
|
|
97
|
-
|
|
98
|
-
case 'rainbowGradient':
|
|
99
|
-
result = rainbow(result);
|
|
100
|
-
break;
|
|
101
|
-
|
|
102
|
-
case 'cristalGradient':
|
|
103
|
-
result = cristal(result);
|
|
104
|
-
break;
|
|
105
|
-
|
|
106
|
-
case 'mindGradient':
|
|
107
|
-
result = mind(result);
|
|
108
|
-
break;
|
|
109
|
-
|
|
110
|
-
case 'passionGradient':
|
|
111
|
-
result = passion(result);
|
|
112
|
-
break;
|
|
113
|
-
|
|
114
|
-
case 'viceGradient':
|
|
115
|
-
result = vice(result);
|
|
116
|
-
break;
|
|
117
|
-
|
|
118
|
-
case 'none':
|
|
119
|
-
break;
|
|
120
|
-
|
|
9
|
+
red,
|
|
10
|
+
inverse,
|
|
11
|
+
dim,
|
|
12
|
+
black,
|
|
13
|
+
green,
|
|
14
|
+
yellow,
|
|
15
|
+
blue,
|
|
16
|
+
magenta,
|
|
17
|
+
cyan,
|
|
18
|
+
cyanBright,
|
|
19
|
+
bgCyan,
|
|
20
|
+
bgCyanBright,
|
|
21
|
+
white,
|
|
22
|
+
gray,
|
|
23
|
+
underline,
|
|
24
|
+
bold,
|
|
25
|
+
strikethrough,
|
|
26
|
+
italic
|
|
27
|
+
} from "picocolors";
|
|
28
|
+
export function colorize(text, colorName, typography) {
|
|
29
|
+
let result = text;
|
|
30
|
+
switch (colorName) {
|
|
31
|
+
case "inverse":
|
|
32
|
+
result = inverse(` ${result} `);
|
|
33
|
+
break;
|
|
34
|
+
case "dim":
|
|
35
|
+
result = dim(result);
|
|
36
|
+
break;
|
|
37
|
+
case "black":
|
|
38
|
+
result = black(result);
|
|
39
|
+
break;
|
|
40
|
+
case "red":
|
|
41
|
+
result = red(result);
|
|
42
|
+
break;
|
|
43
|
+
case "green":
|
|
44
|
+
result = green(result);
|
|
45
|
+
break;
|
|
46
|
+
case "yellow":
|
|
47
|
+
result = yellow(result);
|
|
48
|
+
break;
|
|
49
|
+
case "blue":
|
|
50
|
+
result = blue(result);
|
|
51
|
+
break;
|
|
52
|
+
case "magenta":
|
|
53
|
+
result = magenta(result);
|
|
54
|
+
break;
|
|
55
|
+
case "cyan":
|
|
56
|
+
result = cyan(result);
|
|
57
|
+
break;
|
|
58
|
+
case "cyanBright":
|
|
59
|
+
result = cyanBright(result);
|
|
60
|
+
break;
|
|
61
|
+
case "bgCyan":
|
|
62
|
+
result = bgCyan(` ${result} `);
|
|
63
|
+
break;
|
|
64
|
+
case "bgCyanBright":
|
|
65
|
+
result = bgCyanBright(` ${result} `);
|
|
66
|
+
break;
|
|
67
|
+
case "white":
|
|
68
|
+
result = white(result);
|
|
69
|
+
break;
|
|
70
|
+
case "gray":
|
|
71
|
+
result = gray(result);
|
|
72
|
+
break;
|
|
73
|
+
case "gradientGradient":
|
|
74
|
+
result = gradient(["red", "yellow", "green", "cyan", "blue", "magenta"])(
|
|
75
|
+
result
|
|
76
|
+
);
|
|
77
|
+
break;
|
|
78
|
+
case "rainbowGradient":
|
|
79
|
+
result = rainbow(result);
|
|
80
|
+
break;
|
|
81
|
+
case "cristalGradient":
|
|
82
|
+
result = cristal(result);
|
|
83
|
+
break;
|
|
84
|
+
case "mindGradient":
|
|
85
|
+
result = mind(result);
|
|
86
|
+
break;
|
|
87
|
+
case "passionGradient":
|
|
88
|
+
result = passion(result);
|
|
89
|
+
break;
|
|
90
|
+
case "viceGradient":
|
|
91
|
+
result = vice(result);
|
|
92
|
+
break;
|
|
93
|
+
case "none":
|
|
94
|
+
break;
|
|
121
95
|
default:
|
|
96
|
+
break;
|
|
97
|
+
}
|
|
98
|
+
const gradientColors = [
|
|
99
|
+
"gradientGradient",
|
|
100
|
+
"cristalGradient",
|
|
101
|
+
"mindGradient",
|
|
102
|
+
"passionGradient",
|
|
103
|
+
"rainbowGradient",
|
|
104
|
+
"viceGradient"
|
|
105
|
+
];
|
|
106
|
+
if (gradientColors.includes(colorName ?? "") && typography) {
|
|
107
|
+
throw new Error(
|
|
108
|
+
"[colorize] Cannot apply typography to gradient color.\n\u2502 Use regular colorize()'s color or remove typography."
|
|
109
|
+
);
|
|
110
|
+
}
|
|
111
|
+
if (!gradientColors.includes(colorName ?? "") && typography) {
|
|
112
|
+
switch (typography) {
|
|
113
|
+
case "bold":
|
|
114
|
+
result = bold(result);
|
|
115
|
+
break;
|
|
116
|
+
case "strikethrough":
|
|
117
|
+
result = strikethrough(result);
|
|
118
|
+
break;
|
|
119
|
+
case "underline":
|
|
120
|
+
result = underline(result);
|
|
121
|
+
break;
|
|
122
|
+
case "italic":
|
|
123
|
+
result = italic(result);
|
|
124
|
+
break;
|
|
125
|
+
default:
|
|
122
126
|
break;
|
|
123
127
|
}
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
'gradientGradient',
|
|
127
|
-
'cristalGradient',
|
|
128
|
-
'mindGradient',
|
|
129
|
-
'passionGradient',
|
|
130
|
-
'rainbowGradient',
|
|
131
|
-
'viceGradient',
|
|
132
|
-
];
|
|
133
|
-
|
|
134
|
-
if (gradientColors.includes(colorName ?? '') && typography) {
|
|
135
|
-
throw Error(`[colorize] Cannot apply typography to gradient color.\n│ Use regular colorize()'s color or remove typography.`);
|
|
136
|
-
}
|
|
137
|
-
|
|
138
|
-
if (!gradientColors.includes(colorName ?? '') && typography) {
|
|
139
|
-
switch(typography) {
|
|
140
|
-
case 'bold':
|
|
141
|
-
result = bold(result);
|
|
142
|
-
break;
|
|
143
|
-
|
|
144
|
-
case 'strikethrough':
|
|
145
|
-
result = strikethrough(result);
|
|
146
|
-
break;
|
|
147
|
-
|
|
148
|
-
case 'underline':
|
|
149
|
-
result = underline(result);
|
|
150
|
-
break;
|
|
151
|
-
|
|
152
|
-
case 'italic':
|
|
153
|
-
result = italic(result);
|
|
154
|
-
break;
|
|
155
|
-
|
|
156
|
-
default:
|
|
157
|
-
break;
|
|
158
|
-
}
|
|
159
|
-
}
|
|
160
|
-
|
|
161
|
-
return result;
|
|
128
|
+
}
|
|
129
|
+
return result;
|
|
162
130
|
}
|