@profoundlogic/codermake 3.0.1 → 3.1.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.
package/README.md CHANGED
@@ -240,6 +240,9 @@ codermake [options] [targets...]
240
240
  - `--debug` - Enable debug output
241
241
  - `--print-rules` - Print preprocessed rules and exit
242
242
  - `--print-makefile` - Generate standalone Makefile for debugging
243
+ - `--list-targets[=FORMAT]` - Report which targets a build would affect, without
244
+ building anything. `FORMAT` is `text` (default), `json` or `tsv`. Remote builds
245
+ only (not available when running on IBM i)
243
246
  - `--license-show` - Show license status
244
247
  - `--license-set=<key>` - Install a license key
245
248
 
@@ -277,6 +280,85 @@ codermake clean
277
280
  codermake --print-rules
278
281
  ```
279
282
 
283
+ ## Listing Affected Targets
284
+
285
+ `--list-targets` reports the objects a build would create or replace — the ones
286
+ whose source changed, plus everything that depends on them — without compiling
287
+ anything and without connecting to the IBM i.
288
+
289
+ ```bash
290
+ codermake --list-targets
291
+ ```
292
+
293
+ ```text
294
+ 3 targets affected (dependency order)
295
+
296
+ TARGET LIBRARY OBJECT TYPE SOURCE TGTRLS REASON
297
+ LIBB/srvb.module APPLIBB srvb *module LIBB/qrpglesrc/srvb.rpgle changed
298
+ LIBB/srvb.srvpgm APPLIBB srvb *srvpgm LIBB/srvb.module dependent
299
+ LIBA/crossbnd.pgm APPLIBA crossbnd *pgm LIBA/crossbnd.module dependent
300
+ ```
301
+
302
+ `REASON` says why each object is in the list: `changed` (one of its own sources
303
+ is newer), `dependent` (only because something it depends on is being rebuilt),
304
+ or `missing` (the object does not exist yet). `TGTRLS` is blank unless the project
305
+ sets a target release *and* the object's compile command accepts one, as above.
306
+
307
+ All three output formats carry the same seven fields in the same order, always —
308
+ the columns never move or disappear.
309
+
310
+ The answer is make's own out-of-date determination, so it is exactly what a build
311
+ from this checkout would do.
312
+
313
+ **Remote builds only.** `--list-targets` is available when building from a
314
+ Unix-like host (Linux, macOS), where codermake tracks build state as touch
315
+ markers under `build/`. Running codermake locally on IBM i there are no markers —
316
+ the build targets are the objects themselves, which `codermake -t` cannot
317
+ baseline — so the option is refused there with an explanation.
318
+
319
+ The comparison being against those local markers rather than the IBM i objects is
320
+ what lets the answer come back immediately with no connection. The flip side is
321
+ that the markers describe what *this* checkout has built: if an object is deleted
322
+ on the IBM i by hand, or a second checkout builds into the same library, the
323
+ markers do not know, and neither listing nor a build will notice.
324
+
325
+ Two more consequences worth knowing:
326
+
327
+ - **List before you build.** After a successful build everything is up to date,
328
+ so the list is empty. Listing again afterwards is a cheap way to confirm that
329
+ everything intended was built.
330
+ - **Listing changes nothing.** No object is created, no marker is touched, no
331
+ compile listing is discarded. Running it twice gives the same answer.
332
+
333
+ ### Machine-readable output
334
+
335
+ `--list-targets=tsv` prints one record per line with no header, and
336
+ `--list-targets=json` prints a JSON document. Both carry the same seven fields
337
+ in this order:
338
+
339
+ | Field | Example | Notes |
340
+ |---|---|---|
341
+ | `target` | `LIBA/app.pgm` | Can be passed straight back to `codermake` as a target |
342
+ | `library` | `APPLIBA` | The IBM i library this invocation builds it into |
343
+ | `object` | `app` | Bare object name, as written in `Rules.mk` |
344
+ | `type` | `*pgm` | `*pgm`, `*module`, `*srvpgm`, `*file`, `*menu`, `*msgf`, `*bnddir` |
345
+ | `source` | `LIBA/qrpglesrc/app.rpgle` | The primary input; for bound objects, the object it is built from |
346
+ | `targetRelease` | `V7R4M0` | From `.codermake/config.json`, where the compile command accepts `TGTRLS` |
347
+ | `reason` | `dependent` | `changed`, `dependent` or `missing` |
348
+
349
+ The first field is a name codermake accepts as a target argument, so a list can
350
+ be narrowed and fed back in — including with a different `CODERMAKE_LIBRARY_MAP`,
351
+ to build the same objects into staging libraries:
352
+
353
+ ```bash
354
+ codermake --list-targets=tsv > affected.tsv
355
+ codermake $(cut -f1 affected.tsv | tr '\n' ' ')
356
+ ```
357
+
358
+ The exit status is 0 whether or not anything is affected, so the output can be
359
+ piped unconditionally. `--list-targets` cannot be combined with `-t`, `-q` or
360
+ `clean`.
361
+
280
362
  ## Compile Options
281
363
 
282
364
  By default, codermake supplies a fixed set of parameters to each IBM i compile
package/dist/bin/index.js CHANGED
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- const _0xd3bcd8=_0x2677;(function(_0x153925,_0xae0950){const _0x4e2609=_0x2677,_0x2d1654=_0x153925();while(!![]){try{const _0x58805c=-parseInt(_0x4e2609(0x1f3))/0x1+-parseInt(_0x4e2609(0x1c2))/0x2+-parseInt(_0x4e2609(0x1ff))/0x3*(parseInt(_0x4e2609(0x1f6))/0x4)+parseInt(_0x4e2609(0x1da))/0x5+-parseInt(_0x4e2609(0x1aa))/0x6+-parseInt(_0x4e2609(0x213))/0x7+-parseInt(_0x4e2609(0x1c3))/0x8*(-parseInt(_0x4e2609(0x20e))/0x9);if(_0x58805c===_0xae0950)break;else _0x2d1654['push'](_0x2d1654['shift']());}catch(_0x58b847){_0x2d1654['push'](_0x2d1654['shift']());}}}(_0x57f0,0x5bfb9));import{fileURLToPath}from'url';import{dirname,join}from'path';const __filename=fileURLToPath(import.meta.url),__dirname=dirname(__filename);function _0x57f0(){const _0x46d8a2=['zw5KC1DPDgG','w2nVzgvYBwfRzv0Gv2fYBMLUzZOGrMfPBgvKihrVignSzwfUDxaGDgvTCcbKAxjLy3rVCNK6ia','w2nVzgvYBwfRzv0Gv2fYBMLUzZOGrMfPBgvKihrVignSB3nLifntscbJB25Uzwn0Aw9UoIa','ls10B3vJAa','Dg1WrgLY','u0Lhvevstq','w2nVzgvYBwfRzv0Gtg9HzgvKignVBxbPBguGB3b0Aw9UCYbMCM9Tia','uNvSzxmUBwS','DxnLCG','C3nOic1pigv4AxqGlw8Gq29UDhjVBfbHDgG9','nxWZFdb8mNW0Fde','BwvZC2fNzq','w2nVzgvYBwfRzv0Gv3jPDgLUzYbYDwXLCYb0BYa','ls1XDwvZDgLVBG','wvLZEhe','B3v0Chv0tw9Kzq','CMvSyxrPDMvqyxrO','mtGYmde2mgPlB1fWsq','s2HOEeW','pt09ieXPy2vUC2uGsw5MB3jTyxrPB24Gpt09','v2fYBMLUzZOG','DxrMoa','tgLJzw5ZzsbfCNjVCJOG','zxHWAxjHDgLVBKrHDgu','cMnVzgvYBwfRzsaTiej1AwXKihrVB2WGzM9YieLctsbPihbYB2PLy3rZcLzLCNnPB246ia','xgrPC3q','icbOzwXSB3iUCgDToIbOzwXSB3iUCNbNBguGAgvSBg9KlMzPBgu','w2nVzgvYBwfRzv0Gica','DMfSDwvZ','ic0+ia','C2XPy2u','sNPwDve','zxHPDa','C2HVD0HLBha','AvLos1m','w2nVzgvYBwfRzv0Gv2fYBMLUz3m6','ls12zxjZAw9U','l1j1BgvZlM1R','A2fkA0G','Aw5ZDgfSBgvKqxq','AgfZ','odyXntCWr0TZDhbN','mtC4mdq2mZjHAxvHCuK','qKr3swO','BwfW','DMvYC2LVBG','Bgjbtxm','lMvUDG','DMfSAwq','w2nVzgvYBwfRzv0Gv2fYBMLUzZOGrMfPBgvKihrVihjLywqGDgvTCcbKAxjLy3rVCNKGzM9YifntscbJBgvHBNvWoIa','rKjivgS','DvDgCMG','Dw5HBwu','y29UzMLN','rxHWzwn0zwqGBg9JyxrPB246ia','ls1WCMLUDc1YDwXLCW','CNvSzxm','rxjyueu','ls1QDxn0lxbYAw50','ls1OzwXW','sw5ZDgfSBcbHigXPy2vUC2uGD2L0AdO','C3vIC3rYAw5N','zgvIDwDqCMvMAxG','tM8GBgLJzw5ZzsbPBNn0ywXSzwq','w2nVzgvYBwfRzv0Grgv0zwn0Aw5NihbSyxrMB3jTlI4U','mtG3mJeXme9XDfr3tW','DgfYz2v0twfWCgLUzW','CgXHDgzVCM0','uNDsyNa','w2nVzgvYBwfRzv0Gq2XLyw5PBMCGDxaGDgvTCcbKAxjLy3rVCNK6ia','CgfYC2u','lcbZA2LWCgLUzYbtu0GGy2XLyw51Ca','AND3D3a','s2v5oIa','AM9PBG','AMjlqLG','ChvZAa','iYbuyxjNzxrZ','w2nVzgvYBwfRzv0GuhjLChjVy2vZC2LUzYbYDwXLCY4UlG','wgDHtge','w2nVzgvYBwfRzv0Gv3jPDgLUzYb0yxjNzxrZihrVia','w2nVzgvYBwfRzv0GugXHDgzVCM06ia','EvbKAhG','C2HVD1zLCNnPB24','iYbqCMvWCM9JzxnZzwqGCNvSzxm','sw5ZDgfSBgvKoIa','ic0G','C2HVCNq','w2nVzgvYBwfRzv0GrgLZy292zxjPBMCGuNvSzxmUBwSGzMLSzxmUlI4','ls1SAwnLBNnLlxnLDa','nZuXnZi4EeHsteTv','Cgf0Aa','AgHty08','otyZmZjvz01Mwxi','BwfWCgLUz0zPBgu','BgvUz3rO','C3bSAxq','wgnxq1C','tM9Kzs5QCYa','CMvJDxjZAxzL','ChjPBNrsDwXLCW','w2nVzgvYBwfRzv0Gv3jPDgLUzYbJB21WAwXLig9WDgLVBNmGDg8G','mJfpsfDMAee','ChrIChq','C2LUz2XL','zM9Yy2u','BM9dB2XVCG','DgfYz2v0CW','ChjPBNrnywTLzMLSzq','ls1YzwnVBG','A3nVANi','CNvSzxngAwXL','zw50CMLLCW','CvjMzLe','BgLJzw5Zzq','tg9JyxrPB246ia','tgLJzw5Zzq','ouDhyxLTCW','EurYvxe','u0Lhsu5u','sfHksei','sMngshK','mZK4mtuWmNb2ELvWrq','DMjwzeu','w2nVzgvYBwfRzv0GicbgB3vUzdOG','w2nVzgvYBwfRzv0','svvLEvy','C3rHCNrZv2L0Aa','y29KzxjTywTLihzLCNnPB24G','ls1Kzwj1zW','C3nOs2v5','B25Jzq','BgLJzw5ZzvnOB3C','tgLJzw5ZzsbPBNn0ywXSzwqGC3vJy2vZC2z1BgX5','C3rHy2S','Aw5JBhvKzxm','vg5rEwC','zw52AxjVBM1LBNqGDMfYAwfIBgu','zgvIDwC','w2nVzgvYBwfRzv0Gu2TPChbPBMCGu1niig1HC3rLCIaOBM8TzxHLy3v0zsbTB2rLigrLDgvJDgvKkq','BwfRzufYz3m','yxjNDG','A2v5','AwDUB3jL','D2fYBMLUz3m','BgLJzw5ZzvnLDa','De1qzgK','w2nVzgvYBwfRzv0GicbmAwjYyxj5ig1HCdOG','D2fYBG','w2nVzgvYBwfRzv0Gt3v0Chv0ig1Vzgu6ig11BhrPlwXPyNjHCNK','q3jLyxrLigeGuNvSzxmUBwSGzMLSzsbPBIb5B3vYihnVDxjJzsbKAxjLy3rVCNKGDg8GzgvMAw5Ligj1AwXKihj1BgvZlG','DwrPtu0','rxjYB3i6ia','DKDqvgK','zg90zw52','w2nVzgvYBwfRzv0GuMvJzwL2zwqG','lcbJBgvHBMLUzYb1Cc4UlG','ls1KCNKTCNvU','Bg9N','weTnzNK','zxjYB3i','w2nVzgvYBwfRzv0Gv2fYBMLUzZOGq291BgqGBM90ihbYzs1LC3rHyMXPC2GGu1niig1HC3rLCJOG','vgzKBw0','yLbeDeK','zMLSDgvY','qwHqy1O','l2rPC3q','CgfJA2fNzs5QC29U','tMPbsNm','CMvTB3zLtgLZDgvUzxi','v3nHEva','AuXytwK','C2L6zq','ls1SAwnLBNnLlxnLDd0'];_0x57f0=function(){return _0x46d8a2;};return _0x57f0();}let projectRoot=dirname(__dirname);(projectRoot['endsWith'](_0xd3bcd8(0x191))||projectRoot['endsWith'](_0xd3bcd8(0x1b2)))&&(projectRoot=dirname(projectRoot));try{const dotenv=await import(_0xd3bcd8(0x233));dotenv['default'][_0xd3bcd8(0x1ce)]({'path':join(projectRoot,_0xd3bcd8(0x1c8))});}catch{}import{detectPlatform,resolveLibraryConfiguration}from'../lib/platform.js';import{discoverRules}from'../lib/discovery.js';import{preprocessRules}from'../lib/preprocessor.js';import{writeRules,writeConfigMk}from'../lib/writer.js';import{resolveCompileOptions,CompileConfigError}from'../lib/config.js';import{executeMake,getPackageDir}from'../lib/executor.js';import{generateStandaloneMakefile}from'../lib/makefile-generator.js';import{readFileSync,rmSync,readdirSync}from'fs';import{execSync}from'child_process';import{validateLicense,getLicensePath,saveLicenseFile,loadLicenseFile,maskLicenseKey,validateLicenseKey}from'../lib/license.js';import{establishSSHMaster}from'../lib/ssh.js';function getVersion(){const _0xcc51b1=_0xd3bcd8,_0x4af060={'vbVdE':function(_0x129881,_0x1a5f6f){return _0x129881(_0x1a5f6f);},'jwwwp':_0xcc51b1(0x191),'iLXMi':function(_0x29f339,_0xa5ad49){return _0x29f339(_0xa5ad49);},'jbKBX':_0xcc51b1(0x192),'vosov':_0xcc51b1(0x1ae)},_0x370a22=_0x4af060[_0xcc51b1(0x214)](fileURLToPath,import.meta.url);let _0x34b183=_0x4af060[_0xcc51b1(0x214)](dirname,dirname(_0x370a22));(_0x34b183['endsWith'](_0x4af060[_0xcc51b1(0x1e1)])||_0x34b183[_0xcc51b1(0x199)](_0xcc51b1(0x1b2)))&&(_0x34b183=_0x4af060[_0xcc51b1(0x196)](dirname,_0x34b183));const _0x450f0d=JSON[_0xcc51b1(0x1df)](readFileSync(join(_0x34b183,_0x4af060[_0xcc51b1(0x1e4)]),_0x4af060['vosov']));return _0x450f0d[_0xcc51b1(0x1c6)];}function showHelp(){const _0x13f72d=_0xd3bcd8,_0x54fab5={'KhhxL':function(_0x4a07f2){return _0x4a07f2();}};console[_0x13f72d(0x237)](_0x13f72d(0x1b1)+_0x54fab5[_0x13f72d(0x1ab)](getVersion)+'\x0a\x0aUsage:\x0a\x20\x20codermake\x20[options]\x20[targets...]\x0a\x0aOptions:\x0a\x20\x20--debug\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Enable\x20debug\x20output\x0a\x20\x20--no-color\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Disable\x20colored\x20output\x0a\x20\x20--print-rules\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Print\x20preprocessed\x20rules\x20and\x20exit\x0a\x20\x20--print-makefile\x20\x20\x20\x20\x20\x20\x20\x20\x20Generate\x20standalone\x20Makefile\x20for\x20debugging\x0a\x20\x20--license-show\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Show\x20license\x20status\x0a\x20\x20--license-set=<key>\x20\x20\x20\x20\x20\x20Install\x20a\x20license\x20key\x0a\x20\x20--version\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Show\x20version\x0a\x20\x20--help\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Show\x20this\x20help\x0a\x0aAll\x20GNU\x20make\x20options\x20are\x20supported.\x20See\x20\x27man\x20make\x27\x20for\x20details.\x0a\x0aEnvironment\x20Variables:\x0a\x20\x20IBM\x20i\x20(local\x20build):\x0a\x20\x20\x20\x20BUILD_LIBRARY\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Output\x20library\x20name\x20(required)\x0a\x0a\x20\x20Unix-like\x20(remote\x20build):\x0a\x20\x20\x20\x20IBMI_BUILD_LIBRARY\x20\x20\x20\x20\x20Output\x20library\x20name\x20(required)\x0a\x20\x20\x20\x20IBMI_HOST\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20IBM\x20i\x20hostname\x20(required)\x0a\x20\x20\x20\x20IBMI_USER\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20SSH\x20user\x20(required)\x0a\x20\x20\x20\x20IBMI_KEY\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20SSH\x20private\x20key\x20path\x20(optional)\x0a\x0a\x20\x20License:\x0a\x20\x20\x20\x20CODERMAKE_LICENSE_PATH\x20Path\x20to\x20license\x20file\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20(default:\x20~/.codermake/license.json)\x0a\x0aExamples:\x0a\x20\x20codermake\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Build\x20all\x20targets\x0a\x20\x20codermake\x20hellor.pgm\x20\x20\x20\x20\x20\x20Build\x20specific\x20target\x0a\x20\x20codermake\x20-j4\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Build\x20with\x204\x20parallel\x20jobs\x0a\x20\x20codermake\x20clean\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Remove\x20build\x20artifacts\x0a\x20\x20codermake\x20-n\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Dry\x20run\x20(show\x20commands)\x0a\x20\x20codermake\x20--print-makefile\x20>\x20debug.mk\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Generate\x20standalone\x20Makefile\x0a');}function parseArgs(_0x4a9961){const _0x4f078c=_0xd3bcd8,_0x6a43be={};_0x6a43be[_0x4f078c(0x18e)]=_0x4f078c(0x1d4),_0x6a43be[_0x4f078c(0x1bb)]=function(_0x25d04c,_0x46c286){return _0x25d04c===_0x46c286;},_0x6a43be[_0x4f078c(0x195)]=function(_0x24a425,_0x218c39){return _0x24a425===_0x218c39;},_0x6a43be[_0x4f078c(0x1eb)]='--license-show',_0x6a43be[_0x4f078c(0x200)]=function(_0x1599d4,_0x13e6b8){return _0x1599d4+_0x13e6b8;},_0x6a43be['YYsxq']=_0x4f078c(0x198);const _0x16faed=_0x6a43be,_0x307c50={};_0x307c50[_0x4f078c(0x223)]=![],_0x307c50[_0x4f078c(0x203)]=![],_0x307c50[_0x4f078c(0x1fd)]=![],_0x307c50[_0x4f078c(0x205)]=![],_0x307c50[_0x4f078c(0x1ba)]=![],_0x307c50[_0x4f078c(0x1ec)]=![],_0x307c50[_0x4f078c(0x21d)]=![],_0x307c50['licenseSet']=null,_0x307c50[_0x4f078c(0x225)]=[];const _0x515c1d=_0x307c50;for(let _0x33d71a=0x0;_0x33d71a<_0x4a9961[_0x4f078c(0x1f8)];_0x33d71a++){const _0x9388ec=_0x4a9961[_0x33d71a];if(_0x9388ec===_0x16faed[_0x4f078c(0x18e)])_0x515c1d['showHelp']=!![];else{if(_0x9388ec===_0x4f078c(0x1bd))_0x515c1d[_0x4f078c(0x1ec)]=!![];else{if(_0x9388ec===_0x4f078c(0x21a))_0x515c1d[_0x4f078c(0x223)]=!![];else{if(_0x16faed[_0x4f078c(0x1bb)](_0x9388ec,'--no-color'))_0x515c1d[_0x4f078c(0x203)]=!![];else{if(_0x16faed[_0x4f078c(0x1bb)](_0x9388ec,_0x4f078c(0x1d0)))_0x515c1d[_0x4f078c(0x1fd)]=!![];else{if(_0x9388ec==='--print-makefile')_0x515c1d['printMakefile']=!![];else{if(_0x16faed[_0x4f078c(0x195)](_0x9388ec,_0x16faed[_0x4f078c(0x1eb)]))_0x515c1d[_0x4f078c(0x21d)]=!![];else{if(_0x9388ec===_0x4f078c(0x1f2)&&_0x16faed['ptbpt'](_0x33d71a,0x1)<_0x4a9961[_0x4f078c(0x1f8)])_0x515c1d[_0x4f078c(0x22a)]=_0x4a9961[++_0x33d71a];else _0x9388ec['startsWith'](_0x4f078c(0x198))?_0x515c1d[_0x4f078c(0x22a)]=_0x9388ec[_0x4f078c(0x1d6)](_0x16faed[_0x4f078c(0x1a7)][_0x4f078c(0x1f8)]):_0x515c1d[_0x4f078c(0x225)][_0x4f078c(0x1e5)](_0x9388ec);}}}}}}}}return _0x515c1d;}function _0x2677(_0xa82dce,_0x3d0b55){_0xa82dce=_0xa82dce-0x18b;const _0x57f059=_0x57f0();let _0x2677c0=_0x57f059[_0xa82dce];if(_0x2677['WLZDgF']===undefined){var _0x55526f=function(_0x10dd53){const _0x26b043='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x5cdb74='',_0x43b672='';for(let _0x434701=0x0,_0x352624,_0x1d93ed,_0x279d06=0x0;_0x1d93ed=_0x10dd53['charAt'](_0x279d06++);~_0x1d93ed&&(_0x352624=_0x434701%0x4?_0x352624*0x40+_0x1d93ed:_0x1d93ed,_0x434701++%0x4)?_0x5cdb74+=String['fromCharCode'](0xff&_0x352624>>(-0x2*_0x434701&0x6)):0x0){_0x1d93ed=_0x26b043['indexOf'](_0x1d93ed);}for(let _0x2beb45=0x0,_0x54acb3=_0x5cdb74['length'];_0x2beb45<_0x54acb3;_0x2beb45++){_0x43b672+='%'+('00'+_0x5cdb74['charCodeAt'](_0x2beb45)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x43b672);};_0x2677['OPCltK']=_0x55526f,_0x2677['RnqvOp']={},_0x2677['WLZDgF']=!![];}const _0x1f4367=_0x57f059[0x0],_0x35bf62=_0xa82dce+_0x1f4367,_0x3c7ab0=_0x2677['RnqvOp'][_0x35bf62];return!_0x3c7ab0?(_0x2677c0=_0x2677['OPCltK'](_0x2677c0),_0x2677['RnqvOp'][_0x35bf62]=_0x2677c0):_0x2677c0=_0x3c7ab0,_0x2677c0;}const MAKE_NO_EXECUTE_OPTIONS={'short':new Set(['n','q','t']),'long':new Set([_0xd3bcd8(0x1d3),_0xd3bcd8(0x236),_0xd3bcd8(0x206),_0xd3bcd8(0x1a6),_0xd3bcd8(0x19c)])};function shouldSkipSSHForMakeArgs(_0x394639){const _0x343d51=_0xd3bcd8;for(const _0x4729a4 of _0x394639){if(_0x4729a4['startsWith']('--')){const _0x40027a=_0x4729a4[_0x343d51(0x1f9)]('=')[0x0];if(MAKE_NO_EXECUTE_OPTIONS['long'][_0x343d51(0x1c1)](_0x40027a))return!![];}else{if(_0x4729a4['startsWith']('-')&&!_0x4729a4[_0x343d51(0x218)]('--')){const _0x5b0329=_0x4729a4['slice'](0x1);for(const _0x327a71 of _0x5b0329){if(MAKE_NO_EXECUTE_OPTIONS[_0x343d51(0x1f0)]['has'](_0x327a71))return!![];}}}}return![];}async function handleLicenseShow(){const _0xdae7bd=_0xd3bcd8,_0x59d5f5={'xcKdV':function(_0x423136,_0x3b39a6){return _0x423136(_0x3b39a6);},'JcFHy':'3|0|1|4|5|2','XKMfy':_0xdae7bd(0x1d8),'mpdYL':'\x20\x20codermake\x20--license-set=<key>','PXRpQ':_0xdae7bd(0x1ac),'fDgbn':function(_0x36331c,_0xb9663a){return _0x36331c(_0xb9663a);}},_0x22e8f1=getLicensePath(),_0x1e732c=await _0x59d5f5['xcKdV'](loadLicenseFile,_0x22e8f1);if(!_0x1e732c){const _0x3e947e=_0x59d5f5[_0xdae7bd(0x212)][_0xdae7bd(0x1f9)]('|');let _0xbd04cc=0x0;while(!![]){switch(_0x3e947e[_0xbd04cc++]){case'0':console['log'](_0xdae7bd(0x1cf)+_0x22e8f1);continue;case'1':console[_0xdae7bd(0x237)]('');continue;case'2':return;case'3':console[_0xdae7bd(0x237)](_0x59d5f5[_0xdae7bd(0x238)]);continue;case'4':console[_0xdae7bd(0x237)](_0xdae7bd(0x1d5));continue;case'5':console[_0xdae7bd(0x237)](_0x59d5f5['mpdYL']);continue;}break;}}console[_0xdae7bd(0x237)](_0x59d5f5['PXRpQ']),console[_0xdae7bd(0x237)](_0xdae7bd(0x1e2)+maskLicenseKey(_0x1e732c[_0xdae7bd(0x227)])),console[_0xdae7bd(0x237)](_0xdae7bd(0x1ee)+_0x1e732c[_0xdae7bd(0x1c0)]),console[_0xdae7bd(0x237)](_0xdae7bd(0x20c)+_0x22e8f1),console[_0xdae7bd(0x237)]('');const _0x5bf778=_0x59d5f5['fDgbn'](validateLicenseKey,_0x1e732c[_0xdae7bd(0x227)]);_0x5bf778['valid']?console[_0xdae7bd(0x237)]('Status:\x20Valid\x20(expires:\x20'+_0x5bf778[_0xdae7bd(0x1b0)]+')'):console['log']('Status:\x20'+_0x5bf778['code']+_0xdae7bd(0x1ef)+_0x5bf778[_0xdae7bd(0x1a4)]);}async function handleLicenseSet(_0x2c68ad){const _0x3a9c61=_0xd3bcd8,_0x2bbef6={'GYlcd':function(_0x19fb93,_0x1bfe4a,_0xab787c){return _0x19fb93(_0x1bfe4a,_0xab787c);}},_0x3bfa2e=getLicensePath();await _0x2bbef6['GYlcd'](saveLicenseFile,_0x3bfa2e,_0x2c68ad),console[_0x3a9c61(0x237)](_0x3a9c61(0x21e)),console[_0x3a9c61(0x237)](_0x3a9c61(0x20c)+_0x3bfa2e);}async function main(){const _0x478e16=_0xd3bcd8,_0x4882b1={'XcWCW':function(_0x323fd1,_0x2c6592){return _0x323fd1(_0x2c6592);},'AhPcZ':function(_0x2d8f60,_0x26b58f){return _0x2d8f60&&_0x26b58f;},'DhURW':function(_0x2a596e,_0x786aa,_0x401ae5){return _0x2a596e(_0x786aa,_0x401ae5);},'XgaLa':_0x478e16(0x228),'nzzsx':function(_0x309f25,_0x586139,_0x45b652){return _0x309f25(_0x586139,_0x45b652);},'yDrUq':function(_0x4d4bc1){return _0x4d4bc1();},'vOLiL':function(_0x1e6e78){return _0x1e6e78();},'Tfdmm':function(_0x214c9b){return _0x214c9b();},'IUeyV':_0x478e16(0x1d9),'BDwIj':function(_0x43b473){return _0x43b473();},'RwRbp':_0x478e16(0x22e),'lbAMs':'Warning:\x20No\x20Rules.mk\x20files\x20found\x20in\x20project.','udiMM':_0x478e16(0x22f),'uWFrh':'Example\x20(src/Rules.mk):','hhScO':function(_0xb2a578,_0x95c271,_0x36a5dc,_0x521369){return _0xb2a578(_0x95c271,_0x36a5dc,_0x521369);},'tbwlP':_0x478e16(0x1e7),'Pmupc':function(_0xdf6b4e,_0x273751,_0x1ab9d4,_0x275bd0,_0x1c85cf){return _0xdf6b4e(_0x273751,_0x1ab9d4,_0x275bd0,_0x1c85cf);},'TnQyg':_0x478e16(0x1bc),'NjAJs':_0x478e16(0x1ed),'ksojr':function(_0x4b8cce){return _0x4b8cce();},'FBHTk':function(_0x3408cc,_0x1e082a){return _0x3408cc instanceof _0x1e082a;},'XiSGx':function(_0x3ef033,_0x40baf4){return _0x3ef033>_0x40baf4;},'HXJHB':_0x478e16(0x224),'GZzYM':_0x478e16(0x216),'kaJkH':_0x478e16(0x210),'ErXPE':_0x478e16(0x19e),'KeuQq':'[codermake]\x20Generating\x20standalone\x20Makefile...','JzVuQ':function(_0x363acd,_0x16e43b,_0x310d48){return _0x363acd(_0x16e43b,_0x310d48);},'vGPTi':_0x478e16(0x1ae),'qRffQ':function(_0x241ff1){return _0x241ff1();},'tMPdi':_0x478e16(0x20b),'MifzZ':_0x478e16(0x222)};try{const _0x4962d9=process[_0x478e16(0x226)][_0x478e16(0x1b7)](0x2),_0x5a31ee=parseArgs(_0x4962d9);_0x5a31ee['showHelp']&&(_0x4882b1['vOLiL'](showHelp),process[_0x478e16(0x1b9)](0x0));_0x5a31ee[_0x478e16(0x1ec)]&&(console[_0x478e16(0x237)](_0x478e16(0x219)+_0x4882b1[_0x478e16(0x20f)](getVersion)),console[_0x478e16(0x237)](_0x478e16(0x1fb)+process['version']),process[_0x478e16(0x1b9)](0x0));_0x5a31ee[_0x478e16(0x21d)]&&(await _0x4882b1[_0x478e16(0x18d)](handleLicenseShow),process[_0x478e16(0x1b9)](0x0));_0x5a31ee[_0x478e16(0x22a)]&&(await _0x4882b1[_0x478e16(0x1fa)](handleLicenseSet,_0x5a31ee[_0x478e16(0x22a)]),process['exit'](0x0));const _0x54896b=await validateLicense();!_0x54896b[_0x478e16(0x1c9)]&&(console[_0x478e16(0x18b)](_0x478e16(0x1af)+_0x54896b[_0x478e16(0x1a4)]),process[_0x478e16(0x1b9)](0x4));process.env.CODERMAKE_DEBUG==='1'&&(_0x5a31ee[_0x478e16(0x223)]=!![]);_0x5a31ee[_0x478e16(0x223)]&&console[_0x478e16(0x237)](_0x4882b1[_0x478e16(0x217)]);const _0x1349e5=_0x4882b1[_0x478e16(0x1c4)](detectPlatform);_0x5a31ee[_0x478e16(0x223)]&&(console[_0x478e16(0x237)](_0x478e16(0x1ea)+_0x1349e5[_0x478e16(0x1dc)]+'\x20('+_0x1349e5[_0x478e16(0x1cd)]+')'),_0x1349e5[_0x478e16(0x1a8)]===_0x478e16(0x201)?console[_0x478e16(0x237)]('[codermake]\x20Output\x20mode:\x20single-library\x20('+_0x1349e5['library']+')'):console[_0x478e16(0x237)](_0x4882b1[_0x478e16(0x1dd)]));_0x5a31ee[_0x478e16(0x223)]&&console[_0x478e16(0x237)](_0x478e16(0x1f1));const {rulesFiles:_0x27201c,libraryDirs:_0x3b89df,buildableLibraryDirs:_0x5ad701}=discoverRules();if(_0x5a31ee[_0x478e16(0x223)]){_0x3b89df[_0x478e16(0x197)]>0x0&&console[_0x478e16(0x237)]('[codermake]\x20\x20\x20Multi-library\x20layout\x20detected:\x20'+[..._0x3b89df]['join'](',\x20'));for(const _0x4f93a7 of _0x27201c){console[_0x478e16(0x237)](_0x478e16(0x215)+_0x4f93a7[_0x478e16(0x1a9)]+_0x478e16(0x1be));}}_0x27201c['length']===0x0&&(console['warn'](_0x4882b1[_0x478e16(0x1c7)]),console['warn'](''),console[_0x478e16(0x22d)](_0x4882b1[_0x478e16(0x230)]),console[_0x478e16(0x22d)](''),console[_0x478e16(0x22d)](_0x4882b1[_0x478e16(0x1cc)]),console['warn'](_0x478e16(0x1b3)),process[_0x478e16(0x1b9)](0x0));const {libraryMap:_0x515e7,libraryList:_0x5e8f17}=_0x4882b1[_0x478e16(0x1f5)](resolveLibraryConfiguration,_0x1349e5,_0x3b89df,_0x5ad701);if(_0x5a31ee[_0x478e16(0x223)]&&_0x515e7[_0x478e16(0x197)]>0x0){const _0x338ce4=[..._0x515e7[_0x478e16(0x209)]()]['map'](([_0x1fe974,_0x1026b1])=>_0x1fe974+'='+_0x1026b1)[_0x478e16(0x1e3)]('\x20');console[_0x478e16(0x237)](_0x478e16(0x22c)+_0x338ce4),_0x5e8f17&&console[_0x478e16(0x237)]('[codermake]\x20\x20\x20Library\x20list:\x20'+_0x5e8f17[_0x478e16(0x1e3)]('\x20'));}_0x5a31ee[_0x478e16(0x223)]&&console[_0x478e16(0x237)](_0x4882b1['tbwlP']);const _0x821bb9=_0x4882b1['Pmupc'](preprocessRules,_0x27201c,_0x1349e5,_0x3b89df,_0x515e7);if(_0x5a31ee[_0x478e16(0x223)]&&_0x821bb9[_0x478e16(0x229)]['length']>0x0){console[_0x478e16(0x22d)](_0x4882b1[_0x478e16(0x221)]);for(const _0x48fa19 of _0x821bb9[_0x478e16(0x229)]){console[_0x478e16(0x22d)](_0x478e16(0x1b4)+_0x48fa19);}}if(_0x5a31ee[_0x478e16(0x1fd)]){const _0x32eacd=_0x478e16(0x1a3)['split']('|');let _0x186ba1=0x0;while(!![]){switch(_0x32eacd[_0x186ba1++]){case'0':console[_0x478e16(0x237)]('');continue;case'1':process[_0x478e16(0x1b9)](0x0);continue;case'2':console[_0x478e16(0x237)](_0x478e16(0x1e6));continue;case'3':console[_0x478e16(0x237)](_0x821bb9[_0x478e16(0x1d1)]['join']('\x0a'));continue;case'4':console[_0x478e16(0x237)]('TARGETS\x20:=\x20'+_0x821bb9[_0x478e16(0x204)]['join']('\x20'));continue;case'5':console[_0x478e16(0x237)](_0x4882b1[_0x478e16(0x193)]);continue;}break;}}let _0x35a79a=new Map();try{const _0x2f41ae=_0x4882b1[_0x478e16(0x207)](resolveCompileOptions);_0x35a79a=_0x2f41ae['vars'];for(const _0x12a0c9 of _0x2f41ae['warnings']){console[_0x478e16(0x22d)](_0x478e16(0x1ad)+_0x12a0c9);}_0x5a31ee['debug']&&_0x2f41ae[_0x478e16(0x1f4)]&&console['log'](_0x478e16(0x19f)+_0x2f41ae[_0x478e16(0x1f4)]);}catch(_0x2949a5){_0x4882b1[_0x478e16(0x1cb)](_0x2949a5,CompileConfigError)&&(console[_0x478e16(0x18b)](_0x2949a5['message']),process[_0x478e16(0x1b9)](0x1));throw _0x2949a5;}const _0x4d918e=writeRules(_0x821bb9[_0x478e16(0x1d1)],_0x821bb9[_0x478e16(0x204)],_0x821bb9[_0x478e16(0x1db)]),_0x2d3e63=_0x4d918e['tmpDir'];_0x5a31ee[_0x478e16(0x223)]&&(console['log'](_0x478e16(0x1a5)+_0x4d918e[_0x478e16(0x208)]),console[_0x478e16(0x237)](_0x478e16(0x1e9)+_0x4d918e['targetsFile']));const _0x864820=writeConfigMk(_0x2d3e63,_0x35a79a);_0x5a31ee[_0x478e16(0x223)]&&_0x864820&&console[_0x478e16(0x237)](_0x478e16(0x1fe)+_0x864820);_0x3b89df[_0x478e16(0x197)]>0x0&&(process.env.CODERMAKE_MULTI_LIBRARY='1',process.env.CODERMAKE_LIBRARY_DIRS=[..._0x3b89df][_0x478e16(0x1e3)]('\x20'));if(_0x4882b1['XiSGx'](_0x515e7[_0x478e16(0x197)],0x0)){const _0x43b2ed=[..._0x515e7['entries']()][_0x478e16(0x1c5)](([_0x1f45c8,_0x431729])=>_0x1f45c8+'='+_0x431729)[_0x478e16(0x1e3)]('\x20');process.env.CODERMAKE_RESOLVED_LIBRARY_MAP=_0x43b2ed,process.env.CODERMAKE_MAPPED_LIBRARIES=[..._0x515e7[_0x478e16(0x1b5)]()][_0x478e16(0x1e3)]('\x20');}const _0x27255b=process.env.CODERMAKE_SSH_CONTROL_DIR||_0x2d3e63,_0x442d74=_0x4882b1[_0x478e16(0x1fa)](shouldSkipSSHForMakeArgs,_0x5a31ee[_0x478e16(0x225)]);_0x442d74&&_0x5a31ee['debug']&&console[_0x478e16(0x237)](_0x4882b1[_0x478e16(0x211)]);if(!_0x442d74)try{const _0xb4081a={};_0xb4081a['host']=process.env.IBMI_HOST,_0xb4081a[_0x478e16(0x1a1)]=process.env.IBMI_USER,_0xb4081a[_0x478e16(0x21b)]=process.env.IBMI_KEY,_0xb4081a[_0x478e16(0x223)]=_0x5a31ee[_0x478e16(0x223)],_0xb4081a[_0x478e16(0x1d7)]=_0x4882b1['GZzYM'],await establishSSHMaster(_0x27255b,_0xb4081a);}catch(_0x4f9908){_0x5a31ee[_0x478e16(0x223)]&&console[_0x478e16(0x22d)](_0x478e16(0x18c)+_0x4f9908[_0x478e16(0x1a4)]);}const _0x3e863f=()=>{const _0x5ee655=_0x478e16,_0x2c4183=process.env.CODERMAKE_SSH_CONTROL_DIR;if(!_0x2c4183)try{const _0x3221e6=_0x4882b1[_0x5ee655(0x1fa)](readdirSync,_0x2d3e63)[_0x5ee655(0x18f)](_0x1585e3=>_0x1585e3[_0x5ee655(0x218)]('ssh-'));for(const _0x4ee649 of _0x3221e6){const _0x5158bb=join(_0x2d3e63,_0x4ee649);try{const _0x41ec75=process.env.IBMI_HOST,_0x4e5c26=process.env.IBMI_USER;_0x4882b1[_0x5ee655(0x190)](_0x41ec75,_0x4e5c26)&&_0x4882b1['DhURW'](execSync,_0x5ee655(0x1a2)+_0x5158bb+'\x20'+_0x4e5c26+'@'+_0x41ec75,{'stdio':_0x4882b1[_0x5ee655(0x1e8)],'timeout':0x2710});}catch(_0x12faf6){_0x5a31ee[_0x5ee655(0x223)]&&console['error'](_0x5ee655(0x19b)+_0x12faf6[_0x5ee655(0x1a4)]);}}}catch(_0x581f8f){_0x5a31ee['debug']&&console[_0x5ee655(0x18b)](_0x5ee655(0x1ca)+_0x581f8f[_0x5ee655(0x1a4)]);}else _0x5a31ee[_0x5ee655(0x223)]&&console[_0x5ee655(0x237)]('[codermake]\x20Using\x20external\x20SSH\x20socket\x20dir:\x20'+_0x2c4183+_0x5ee655(0x1e0));_0x5a31ee[_0x5ee655(0x223)]&&console[_0x5ee655(0x237)](_0x5ee655(0x1de)+_0x2d3e63);try{const _0x3381cf={};_0x3381cf[_0x5ee655(0x1fc)]=!![],_0x3381cf[_0x5ee655(0x202)]=!![],_0x4882b1['nzzsx'](rmSync,_0x2d3e63,_0x3381cf);}catch(_0x2c9a07){_0x5a31ee[_0x5ee655(0x223)]&&console[_0x5ee655(0x18b)](_0x5ee655(0x19a)+_0x2c9a07['message']);}},_0x3c753d=_0x542b0a=>{const _0x453847=_0x478e16;_0x5a31ee['debug']&&console[_0x453847(0x237)](_0x453847(0x234)+_0x542b0a+_0x453847(0x235)),_0x4882b1[_0x453847(0x20f)](_0x3e863f),process[_0x453847(0x1b9)](0x82);};process[_0x478e16(0x21c)](_0x4882b1[_0x478e16(0x1bf)],_0x3c753d),process['once'](_0x4882b1[_0x478e16(0x1d2)],_0x3c753d);let _0xe5229a=0x0;try{if(_0x5a31ee[_0x478e16(0x205)]){_0x5a31ee[_0x478e16(0x223)]&&console[_0x478e16(0x237)](_0x4882b1['KeuQq']);const _0x5ed82b=_0x4882b1[_0x478e16(0x1c4)](getPackageDir),_0x2a474c=generateStandaloneMakefile(_0x5ed82b,_0x2d3e63);console[_0x478e16(0x237)](_0x2a474c),_0xe5229a=0x0;}else{const _0x19f3be=JSON[_0x478e16(0x1df)](_0x4882b1[_0x478e16(0x1b8)](readFileSync,_0x4d918e[_0x478e16(0x1f7)],_0x4882b1[_0x478e16(0x232)])),_0xf580d8=_0x5a31ee['makeArgs'][_0x478e16(0x1c5)](_0x214e7d=>{const _0x555e06=_0x478e16;if(_0x19f3be[_0x214e7d])return _0x5a31ee['debug']&&console['log']('[codermake]\x20Expanding\x20target:\x20'+_0x214e7d+_0x555e06(0x1b6)+_0x19f3be[_0x214e7d]),_0x19f3be[_0x214e7d];return _0x214e7d;});_0x5a31ee[_0x478e16(0x223)]&&console[_0x478e16(0x237)]('[codermake]\x20Invoking\x20make...');const _0x212c31={};_0x212c31[_0x478e16(0x19d)]=_0x2d3e63,_0xe5229a=await executeMake(_0xf580d8,_0x212c31);}}finally{_0x4882b1[_0x478e16(0x20a)](_0x3e863f),process[_0x478e16(0x194)]('SIGINT',_0x3c753d),process[_0x478e16(0x194)](_0x478e16(0x19e),_0x3c753d);}process[_0x478e16(0x1b9)](_0xe5229a);}catch(_0x546263){if(_0x546263[_0x478e16(0x1a4)][_0x478e16(0x220)](_0x478e16(0x20d))||_0x546263[_0x478e16(0x1a4)][_0x478e16(0x220)](_0x4882b1[_0x478e16(0x22b)]))console[_0x478e16(0x18b)](_0x478e16(0x231)+_0x546263[_0x478e16(0x1a4)]),process[_0x478e16(0x1b9)](0x4);else{if(_0x546263[_0x478e16(0x1a4)][_0x478e16(0x220)](_0x4882b1['MifzZ']))console['error'](_0x478e16(0x231)+_0x546263['message']),process[_0x478e16(0x1b9)](0x2);else _0x546263[_0x478e16(0x1a4)][_0x478e16(0x220)](_0x478e16(0x1a0))?(console[_0x478e16(0x18b)]('Error:\x20'+_0x546263[_0x478e16(0x1a4)]),process[_0x478e16(0x1b9)](0x3)):(console['error']('Error:\x20'+_0x546263['message']),process.env.CODERMAKE_DEBUG==='1'&&console['error'](_0x546263[_0x478e16(0x21f)]),process[_0x478e16(0x1b9)](0x1));}}}main();
2
+ const _0x14e1d8=_0x5b09;(function(_0xb42511,_0x535acc){const _0x567a25=_0x5b09,_0x2eb350=_0xb42511();while(!![]){try{const _0x2f8da6=-parseInt(_0x567a25(0x1d3))/0x1+parseInt(_0x567a25(0x1bc))/0x2*(parseInt(_0x567a25(0x20c))/0x3)+-parseInt(_0x567a25(0x214))/0x4*(-parseInt(_0x567a25(0x19e))/0x5)+parseInt(_0x567a25(0x210))/0x6+-parseInt(_0x567a25(0x1cd))/0x7+parseInt(_0x567a25(0x1b7))/0x8+-parseInt(_0x567a25(0x1da))/0x9;if(_0x2f8da6===_0x535acc)break;else _0x2eb350['push'](_0x2eb350['shift']());}catch(_0x10f9e8){_0x2eb350['push'](_0x2eb350['shift']());}}}(_0x17ec,0xdac0e));import{fileURLToPath}from'url';import{dirname,join}from'path';const __filename=fileURLToPath(import.meta.url),__dirname=dirname(__filename);let projectRoot=dirname(__dirname);(projectRoot[_0x14e1d8(0x18e)]('/dist')||projectRoot[_0x14e1d8(0x18e)](_0x14e1d8(0x1ad)))&&(projectRoot=dirname(projectRoot));try{const dotenv=await import(_0x14e1d8(0x1a7));dotenv[_0x14e1d8(0x20a)][_0x14e1d8(0x1c4)]({'path':join(projectRoot,'.env')});}catch{}import{detectPlatform,resolveLibraryConfiguration}from'../lib/platform.js';import{discoverRules}from'../lib/discovery.js';import{preprocessRules}from'../lib/preprocessor.js';function _0x17ec(){const _0x374a87=['tvbxEe0','zw50CMLLCW','CgfYC2u','AurxyuO','w2nVzgvYBwfRzv0Gv3jPDgLUzYbJB21WAwXLig9WDgLVBNmGDg8G','y2fWDhvYzvn0zg91Da','cMnVzgvYBwfRzsaTiej1AwXKihrVB2WGzM9YieLctsbPihbYB2PLy3rZcLzLCNnPB246ia','wwLMy3i','mteXnxPruK5IDa','tgLJzw5ZzsbPBNn0ywXSzwqGC3vJy2vZC2z1BgX5','C3nOlq','ALP4wMO','BwfWCgLUz0zPBgu','zhj5C0u','AgHIuxi','yKHhz0C','ChjPBNrnywTLzMLSzq','zg90zw52','Dg1WrgLY','rxjYB3i6ia','Dgv4Da','sxqGAxmGyxzHAwXHyMXLigzVCIbYzw1VDguGyNvPBgrZigzYB20GysbvBML4lwXPA2uGAg9ZDcWGD2HLCMuGy29KzxjTywTL','sMriEeW','xgrPC3q','tM9Kzs5QCYa','iYbqCMvWCM9JzxnZzwqGCNvSzxm','AMzrA00','vMfSAwqGzM9YBwf0CZOG','t0HZEge','lwOX','BM9dB2XVCG','v2fYBMLUzZOGtM8GuNvSzxmUBwSGzMLSzxmGzM91BMqGAw4GChjVAMvJDc4','vefsr0vuuYa6psa','ndK1mJC0nfz0t2fWyG','Cgf0Aa','rxjYB3i6ic0TBgLZDc10yxjNzxrZigLZig5VDcbZDxbWB3j0zwqGD2HLBIbYDw5UAw5Nig9UieLctsbPlG','DMfYCW','C3rHCNrZv2L0Aa','mJe4mdjVBgnAthO','BwfRzufYz3m','tg9JyxrPB246ia','CNf3thC','q3jLyxrLigeGuNvSzxmUBwSGzMLSzsbPBIb5B3vYihnVDxjJzsbKAxjLy3rVCNKGDg8GzgvMAw5Ligj1AwXKihj1BgvZlG','Aw5ZDgfSBgvKqxq','w2nVzgvYBwfRzv0Gsw52B2TPBMCGBwfRzs4UlG','DMfSAwq','y29UzMLN','ls1KCNKTCNvU','y29Kzq','ChvZAa','C2HVD0HLBha','u3rHDhvZoIa','w2nVzgvYBwfRzv0GicbnDwX0As1SAwjYyxj5igXHEw91DcbKzxrLy3rLzdOG','u0Lhsu5u','CMvXDwLYzunVBM5Ly3rPB24','mtu2mtuXohfOy1fuDq','v2fYBMLUzZOG','uMTjtuG','BwvZC2fNzq','ls12zxjZAw9U','w2nVzgvYBwfRzv0GBwfRztOG','ndm3mdu1Agrur2rZ','u3rHDhvZoIbwywXPzcaOzxHWAxjLCZOG','w2nVzgvYBwfRzv0Gu2TPChbPBMCGu1niig1HC3rLCIaOBM8TzxHLy3v0zsbTB2rLigrLDgvJDgvKkq','ls1SAwnLBNnLlxnLDa','w2nVzgvYBwfRzv0Gica','zxjYB3i','mNWZFdz8mhW1Fdf8na','mtCYmJGYmdvlsfbqvM4','A3fhEuC','tfPzs04','rxjYB3i6ic0TBgLZDc10yxjNzxrZignHBM5VDcbIzsbJB21IAw5Lzcb3AxrOihrOzsaNy2XLyw4NihrHCMDLDc4','sgjXEue','C2HVD1zLCNnPB24','w2nVzgvYBwfRzv0Grgv0zwn0Aw5NihbSyxrMB3jTlI4U','ls1Kzwj1zW','u0Lhvevstq','D2fYBMLUz3m','uNP0tuC','AwjTAq','tfrZreW','w2nVzgvYBwfRzv0Gr2vUzxjHDgLUzYbZDgfUzgfSB25Lie1HA2vMAwXLlI4U','yxjNDG','w2nVzgvYBwfRzv0GicbgB3vUzdOG','ls1OzwXW','DMvYC2LVBG','tgLJzw5Zzq','Aw5JBhvKzxm','ls1UBY1JB2XVCG','C3vIC3rYAw5N','y2XLyw4','twHqthu','ls1SAwnLBNnLlxnLDd0','ls1QDxn0lxbYAw50','AMPgqvG','iYbuyxjNzxrZ','pt09ieXPy2vUC2uGsw5MB3jTyxrPB24Gpt09','DMfSDwvZ','DgfYz2v0CW','s3jRC20','ls1SAxn0lxrHCMDLDhm9','q2j4wwe','B25Jzq','A2v5','BgLJzw5Zzq','mhWYFdf8nhWZ','DgfYz2v0C0zPBgu','w2nVzgvYBwfRzv0GuhjLChjVy2vZC2LUzYbYDwXLCY4UlG','BwfW','AM9PBG','z21yreC','D2fYBG','w2nVzgvYBwfRzv0GrxHWyw5KAw5NihrHCMDLDdOG','uMn0ALG','zgvIDwC','A3P1tMy','zgvMyxvSDa','l2rPC3q','ndCXqw1kDNrf','CNvSzxngAwXL','w2nVzgvYBwfRzv0Gv3jPDgLUzYbYDwXLCYb0BYa','w2nVzgvYBwfRzv0GicbmAwjYyxj5igXPC3q6ia','nJq1ndi2t29AD3zm','CgXHDgzVCM0','wM1Nzxu','Ee9HAwG','mtG1mtzbC2TOsxG','Ce1zA3a','ls1YzwnVBG','AgfZ','zxHPDa','BgLJzw5ZzvnLDa','C3bSAxq','BgLJzw5ZzvnOB3C','rxHHBxbSzsaOC3jJl1j1BgvZlM1RktO','lcbJBgvHBMLUzYb1Cc4UlG','rxHWzwn0zwqGBg9JyxrPB246ia','CMvSyxrPDMvqyxrO','w2nVzgvYBwfRzv0Gv3jPDgLUzYb0yxjNzxrZihrVia','C2LUz2XL','DxrMoa','ls1XDwvZDgLVBG','tgLJzw5ZzsbfCNjVCJOG','w2nVzgvYBwfRzv0Gv2fYBMLUz3m6','Bevnuui','ChjPBNrsDwXLCW','CgfJA2fNzs5QC29U','B1nAruy','w2nVzgvYBwfRzv0Gv2fYBMLUzZOGq291BgqGBM90ihbYzs1LC3rHyMXPC2GGu1niig1HC3rLCJOG','CNvSzxm','qLrbB0C','whHjvhK','whHuwMW','DhjHy2TZigj1AwXKihn0yxrLigfZihrVDwnOig1HCMTLCNmGDw5KzxiGyNvPBgqVlIbpBIbjqK0GAsb0AguGyNvPBgqGDgfYz2v0CW','Bg9N','w2nVzgvYBwfRzv0GrgLZy292zxjPBMCGuNvSzxmUBwSGzMLSzxmUlI4','BgLZDfrHCMDLDhm','w2nVzgvYBwfRzv0Gv2fYBMLUzZOGrMfPBgvKihrVihjLywqGDgvTCcbKAxjLy3rVCNKGzM9YifntscbJBgvHBNvWoIa','sw5ZDgfSBgvKoIa','w2nVzgvYBwfRzv0Gt3v0Chv0ig1Vzgu6ig11BhrPlwXPyNjHCNK','C2L6zq','BgvUz3rO','tgDZz1y','w2nVzgvYBwfRzv0GicbmAwjYyxj5ig1HCdOG','C2XPy2u','lcbZA2LWCgLUzYbtu0GGy2XLyw51Ca','veTOvha','zw5KC1DPDgG','ls10B3vJAa','rxjYB3i6ic0TBgLZDc10yxjNzxrZignHBM5VDcbIzsbJB21IAw5Lzcb3AxrOicC','y2zRCfC','C0HJEMW','uwPivvu','sgjWEKu','zM9Yy2u'];_0x17ec=function(){return _0x374a87;};return _0x17ec();}import{writeRules,writeConfigMk}from'../lib/writer.js';import{resolveCompileOptions,CompileConfigError}from'../lib/config.js';function _0x5b09(_0x392046,_0xada487){_0x392046=_0x392046-0x178;const _0x17ec64=_0x17ec();let _0x5b0942=_0x17ec64[_0x392046];if(_0x5b09['iMOrCF']===undefined){var _0x4db3b6=function(_0x4d32a1){const _0x1d90fe='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x2badc3='',_0x1ead7c='';for(let _0x1a5a58=0x0,_0x3c04d5,_0xe7c691,_0x35cd83=0x0;_0xe7c691=_0x4d32a1['charAt'](_0x35cd83++);~_0xe7c691&&(_0x3c04d5=_0x1a5a58%0x4?_0x3c04d5*0x40+_0xe7c691:_0xe7c691,_0x1a5a58++%0x4)?_0x2badc3+=String['fromCharCode'](0xff&_0x3c04d5>>(-0x2*_0x1a5a58&0x6)):0x0){_0xe7c691=_0x1d90fe['indexOf'](_0xe7c691);}for(let _0x4ba197=0x0,_0x200b9a=_0x2badc3['length'];_0x4ba197<_0x200b9a;_0x4ba197++){_0x1ead7c+='%'+('00'+_0x2badc3['charCodeAt'](_0x4ba197)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x1ead7c);};_0x5b09['CDRcNY']=_0x4db3b6,_0x5b09['AxgAvh']={},_0x5b09['iMOrCF']=!![];}const _0x5aa3e8=_0x17ec64[0x0],_0x202292=_0x392046+_0x5aa3e8,_0xee6c85=_0x5b09['AxgAvh'][_0x202292];return!_0xee6c85?(_0x5b0942=_0x5b09['CDRcNY'](_0x5b0942),_0x5b09['AxgAvh'][_0x202292]=_0x5b0942):_0x5b0942=_0xee6c85,_0x5b0942;}import{executeMake,getPackageDir}from'../lib/executor.js';import{generateStandaloneMakefile}from'../lib/makefile-generator.js';import{readFileSync,rmSync,readdirSync}from'fs';import{execSync}from'child_process';import{validateLicense,getLicensePath,saveLicenseFile,loadLicenseFile,maskLicenseKey,validateLicenseKey}from'../lib/license.js';import{establishSSHMaster}from'../lib/ssh.js';import{LIST_FORMATS,formatRecords,isRecordLine,parseRecords}from'../lib/target-listing.js';function getVersion(){const _0x40418d=_0x14e1d8,_0x582f8c={'WGJuG':function(_0x2a1736,_0x11efa2){return _0x2a1736(_0x11efa2);},'nbSTF':function(_0x17b027,_0x5097cb,_0x3c0abd){return _0x17b027(_0x5097cb,_0x3c0abd);}},_0x45bdd6=fileURLToPath(import.meta.url);let _0x564c76=dirname(dirname(_0x45bdd6));(_0x564c76[_0x40418d(0x18e)](_0x40418d(0x20b))||_0x564c76[_0x40418d(0x18e)](_0x40418d(0x1ad)))&&(_0x564c76=_0x582f8c['WGJuG'](dirname,_0x564c76));const _0x517c62=JSON[_0x40418d(0x198)](_0x582f8c['nbSTF'](readFileSync,join(_0x564c76,_0x40418d(0x179)),_0x40418d(0x222)));return _0x517c62[_0x40418d(0x1eb)];}function showHelp(){const _0x20336e=_0x14e1d8,_0x4141de={'HbpzE':function(_0x53bdce){return _0x53bdce();}};console[_0x20336e(0x181)](_0x20336e(0x19c)+_0x4141de[_0x20336e(0x194)](getVersion)+'\x0a\x0aUsage:\x0a\x20\x20codermake\x20[options]\x20[targets...]\x0a\x0aOptions:\x0a\x20\x20--debug\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Enable\x20debug\x20output\x0a\x20\x20--no-color\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Disable\x20colored\x20output\x0a\x20\x20--print-rules\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Print\x20preprocessed\x20rules\x20and\x20exit\x0a\x20\x20--print-makefile\x20\x20\x20\x20\x20\x20\x20\x20\x20Generate\x20standalone\x20Makefile\x20for\x20debugging\x0a\x20\x20--list-targets[=FORMAT]\x20\x20Report\x20the\x20targets\x20a\x20build\x20would\x20affect,\x20in\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20dependency\x20order,\x20without\x20building\x20anything.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20FORMAT\x20is\x20text\x20(default),\x20json\x20or\x20tsv.\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Remote\x20builds\x20only\x20(not\x20available\x20on\x20IBM\x20i).\x0a\x20\x20--license-show\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Show\x20license\x20status\x0a\x20\x20--license-set=<key>\x20\x20\x20\x20\x20\x20Install\x20a\x20license\x20key\x0a\x20\x20--version\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Show\x20version\x0a\x20\x20--help\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Show\x20this\x20help\x0a\x0aAll\x20GNU\x20make\x20options\x20are\x20supported.\x20See\x20\x27man\x20make\x27\x20for\x20details.\x0a\x0aEnvironment\x20Variables:\x0a\x20\x20IBM\x20i\x20(local\x20build):\x0a\x20\x20\x20\x20BUILD_LIBRARY\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Output\x20library\x20name\x20(required)\x0a\x0a\x20\x20Unix-like\x20(remote\x20build):\x0a\x20\x20\x20\x20IBMI_BUILD_LIBRARY\x20\x20\x20\x20\x20Output\x20library\x20name\x20(required)\x0a\x20\x20\x20\x20IBMI_HOST\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20IBM\x20i\x20hostname\x20(required)\x0a\x20\x20\x20\x20IBMI_USER\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20SSH\x20user\x20(required)\x0a\x20\x20\x20\x20IBMI_KEY\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20SSH\x20private\x20key\x20path\x20(optional)\x0a\x0a\x20\x20License:\x0a\x20\x20\x20\x20CODERMAKE_LICENSE_PATH\x20Path\x20to\x20license\x20file\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20(default:\x20~/.codermake/license.json)\x0a\x0aExamples:\x0a\x20\x20codermake\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Build\x20all\x20targets\x0a\x20\x20codermake\x20hellor.pgm\x20\x20\x20\x20\x20\x20Build\x20specific\x20target\x0a\x20\x20codermake\x20-j4\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Build\x20with\x204\x20parallel\x20jobs\x0a\x20\x20codermake\x20clean\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Remove\x20build\x20artifacts\x0a\x20\x20codermake\x20-n\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Dry\x20run\x20(show\x20commands)\x0a\x20\x20codermake\x20--list-targets\x20\x20Show\x20what\x20a\x20build\x20would\x20affect\x0a\x20\x20codermake\x20--list-targets=tsv\x20>\x20affected.tsv\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Same,\x20for\x20another\x20tool\x20to\x20consume\x0a\x20\x20codermake\x20--print-makefile\x20>\x20debug.mk\x0a\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20Generate\x20standalone\x20Makefile\x0a');}function parseArgs(_0x502e41){const _0x1146aa=_0x14e1d8,_0x1d298b={};_0x1d298b[_0x1146aa(0x1f1)]=function(_0x535015,_0x314a22){return _0x535015===_0x314a22;},_0x1d298b['NbajT']=function(_0x4ef7d3,_0xd5fd60){return _0x4ef7d3===_0xd5fd60;},_0x1d298b['YdOFs']=_0x1146aa(0x1ee),_0x1d298b[_0x1146aa(0x19d)]='--print-rules',_0x1d298b[_0x1146aa(0x207)]='--list-targets',_0x1d298b[_0x1146aa(0x1dc)]=_0x1146aa(0x1aa),_0x1d298b[_0x1146aa(0x17e)]=_0x1146aa(0x1fa),_0x1d298b[_0x1146aa(0x1b2)]=function(_0x5b5ed1,_0x1e150a){return _0x5b5ed1===_0x1e150a;},_0x1d298b[_0x1146aa(0x1cf)]=_0x1146aa(0x1d6),_0x1d298b[_0x1146aa(0x199)]=function(_0x14d226,_0x353b2a){return _0x14d226<_0x353b2a;};const _0x40bd9c=_0x1d298b,_0x1da64f={};_0x1da64f['debug']=![],_0x1da64f['noColor']=![],_0x1da64f[_0x1146aa(0x178)]=![],_0x1da64f['printMakefile']=![],_0x1da64f[_0x1146aa(0x183)]=null,_0x1da64f['showHelp']=![],_0x1da64f[_0x1146aa(0x1df)]=![],_0x1da64f['licenseShow']=![],_0x1da64f[_0x1146aa(0x219)]=null,_0x1da64f['makeArgs']=[];const _0x1c90c1=_0x1da64f;for(let _0x1aac16=0x0;_0x1aac16<_0x502e41[_0x1146aa(0x188)];_0x1aac16++){const _0x1b661f=_0x502e41[_0x1aac16];if(_0x40bd9c['MhPLu'](_0x1b661f,_0x1146aa(0x1ea)))_0x1c90c1['showHelp']=!![];else{if(_0x40bd9c['MhPLu'](_0x1b661f,_0x1146aa(0x1d1)))_0x1c90c1[_0x1146aa(0x1df)]=!![];else{if(_0x40bd9c[_0x1146aa(0x1f1)](_0x1b661f,_0x1146aa(0x1e1)))_0x1c90c1[_0x1146aa(0x208)]=!![];else{if(_0x40bd9c['NbajT'](_0x1b661f,_0x40bd9c['YdOFs']))_0x1c90c1[_0x1146aa(0x1b4)]=!![];else{if(_0x1b661f===_0x40bd9c[_0x1146aa(0x19d)])_0x1c90c1[_0x1146aa(0x178)]=!![];else{if(_0x1b661f==='--print-makefile')_0x1c90c1[_0x1146aa(0x1a6)]=!![];else{if(_0x1b661f===_0x40bd9c[_0x1146aa(0x207)])_0x1c90c1[_0x1146aa(0x183)]=_0x40bd9c[_0x1146aa(0x1dc)];else{if(_0x1b661f['startsWith'](_0x40bd9c[_0x1146aa(0x17e)]))_0x1c90c1[_0x1146aa(0x183)]=_0x1b661f['substring'](_0x40bd9c['XxITy'][_0x1146aa(0x188)]);else{if(_0x1b661f==='--license-show')_0x1c90c1[_0x1146aa(0x21b)]=!![];else{if(_0x40bd9c['OHsxa'](_0x1b661f,_0x40bd9c[_0x1146aa(0x1cf)])&&_0x40bd9c[_0x1146aa(0x199)](_0x1aac16+0x1,_0x502e41[_0x1146aa(0x188)]))_0x1c90c1[_0x1146aa(0x219)]=_0x502e41[++_0x1aac16];else _0x1b661f[_0x1146aa(0x1bb)](_0x1146aa(0x1f2))?_0x1c90c1[_0x1146aa(0x219)]=_0x1b661f[_0x1146aa(0x1ef)](_0x1146aa(0x1f2)[_0x1146aa(0x188)]):_0x1c90c1[_0x1146aa(0x1bd)][_0x1146aa(0x1c7)](_0x1b661f);}}}}}}}}}}return _0x1c90c1;}const MAKE_NO_EXECUTE_OPTIONS={'short':new Set(['n','q','t']),'long':new Set([_0x14e1d8(0x1f3),_0x14e1d8(0x1c5),_0x14e1d8(0x216),_0x14e1d8(0x223),_0x14e1d8(0x18f)])},LIST_TARGETS_CONFLICTS={'short':new Set(['t','q']),'long':new Set([_0x14e1d8(0x18f),_0x14e1d8(0x223)])};function findMakeOption(_0x43c6c0,_0x4b2509){const _0x4c1d5a=_0x14e1d8;for(const _0x4a8ca1 of _0x43c6c0){if(_0x4a8ca1[_0x4c1d5a(0x1bb)]('--')){const _0x15b087=_0x4a8ca1[_0x4c1d5a(0x21a)]('=')[0x0];if(_0x4b2509['long'][_0x4c1d5a(0x217)](_0x15b087))return _0x4a8ca1;}else{if(_0x4a8ca1[_0x4c1d5a(0x1bb)]('-')&&!_0x4a8ca1[_0x4c1d5a(0x1bb)]('--')){const _0x1fe4d4=_0x4a8ca1[_0x4c1d5a(0x18b)](0x1);for(const _0xd41800 of _0x1fe4d4){if(_0x4b2509['short'][_0x4c1d5a(0x217)](_0xd41800))return _0x4a8ca1;}}}}return null;}function shouldSkipSSHForMakeArgs(_0x11cc0d){const _0x4c69e2=_0x14e1d8,_0x3aba32={'vWeRH':function(_0x4b5f9a,_0x1278c8){return _0x4b5f9a!==_0x1278c8;},'CbxYa':function(_0xea66b5,_0xbaeb67,_0xff7cf3){return _0xea66b5(_0xbaeb67,_0xff7cf3);}};return _0x3aba32['vWeRH'](_0x3aba32[_0x4c69e2(0x1fb)](findMakeOption,_0x11cc0d,MAKE_NO_EXECUTE_OPTIONS),null);}async function handleLicenseShow(){const _0x337067=_0x14e1d8,_0x755a12={'BVtbx':'No\x20license\x20installed','bjeOW':'Install\x20a\x20license\x20with:','jZxZj':_0x337067(0x1f6),'QjHUU':function(_0x3a76ef,_0x39b20c){return _0x3a76ef(_0x39b20c);}},_0x375eba=getLicensePath(),_0xdf2e17=await loadLicenseFile(_0x375eba);if(!_0xdf2e17){console['log'](_0x755a12['BVtbx']),console[_0x337067(0x181)](_0x337067(0x21e)+_0x375eba),console['log'](''),console[_0x337067(0x181)](_0x755a12['bjeOW']),console['log']('\x20\x20codermake\x20--license-set=<key>');return;}console[_0x337067(0x181)](_0x755a12[_0x337067(0x1a1)]),console[_0x337067(0x181)]('Key:\x20'+maskLicenseKey(_0xdf2e17[_0x337067(0x1fd)])),console[_0x337067(0x181)](_0x337067(0x185)+_0xdf2e17[_0x337067(0x1c1)]),console['log']('Location:\x20'+_0x375eba),console[_0x337067(0x181)]('');const _0x4cbd94=_0x755a12[_0x337067(0x193)](validateLicenseKey,_0xdf2e17[_0x337067(0x1fd)]);_0x4cbd94['valid']?console[_0x337067(0x181)](_0x337067(0x1d4)+_0x4cbd94['expirationDate']+')'):console[_0x337067(0x181)](_0x337067(0x1c9)+_0x4cbd94[_0x337067(0x1c6)]+'\x20-\x20'+_0x4cbd94['message']);}async function handleLicenseSet(_0x1da774){const _0x12f020=_0x14e1d8,_0x236747={'JdHxL':function(_0x142cc4){return _0x142cc4();},'LnSFV':function(_0x34f437,_0xc796b3,_0x36a8dd){return _0x34f437(_0xc796b3,_0x36a8dd);}},_0x289c15=_0x236747[_0x12f020(0x1ac)](getLicensePath);await _0x236747['LnSFV'](saveLicenseFile,_0x289c15,_0x1da774),console['log'](_0x12f020(0x19f)),console[_0x12f020(0x181)](_0x12f020(0x1be)+_0x289c15);}async function main(){const _0x498f38=_0x14e1d8,_0x3ef12c={'BTAoG':function(_0xb1ed73,_0xfcd005){return _0xb1ed73&&_0xfcd005;},'cfkpW':function(_0x46c13b,_0x1bd93b,_0x18bc30){return _0x46c13b(_0x1bd93b,_0x18bc30);},'lEMQB':'ignore','drysE':function(_0x2a1dc7,_0x3dba50){return _0x2a1dc7(_0x3dba50);},'kqGyG':function(_0x2785c0){return _0x2785c0();},'Zmgeu':function(_0x3c8a33,_0x3cdf56){return _0x3c8a33!==_0x3cdf56;},'sHczl':function(_0x8ed604,_0x335798,_0x36ef5c){return _0x8ed604(_0x335798,_0x36ef5c);},'yRaoy':_0x498f38(0x1f0),'LTsDL':'Listing\x20reports\x20what\x20a\x20build\x20would\x20create;\x20it\x20never\x20removes\x20anything.','hhbQr':function(_0x9274c2,_0x5e4a11){return _0x9274c2(_0x5e4a11);},'qMtFv':_0x498f38(0x1e0),'eGtxL':function(_0x3dd36c,_0x336f26){return _0x3dd36c(_0x336f26);},'pMYkp':function(_0x3d0bb3,_0x2f6564){return _0x3d0bb3!==_0x2f6564;},'RztMG':_0x498f38(0x1b9),'SdVWo':_0x498f38(0x180),'HbqyA':_0x498f38(0x221),'oSZEF':function(_0x16105a,_0x7c902f){return _0x16105a>_0x7c902f;},'gmXDG':function(_0x1d5f34,_0x2652a2){return _0x1d5f34===_0x2652a2;},'xOaih':_0x498f38(0x21c),'jfQkM':function(_0x941955,_0x141afa,_0x1d9311,_0x423ded){return _0x941955(_0x141afa,_0x1d9311,_0x423ded);},'rqwLw':_0x498f38(0x1af),'pWZgV':function(_0x131b2a,_0x514a1d){return _0x131b2a instanceof _0x514a1d;},'bHGgG':function(_0x4d8662,_0x308e3c,_0x1e7a72){return _0x4d8662(_0x308e3c,_0x1e7a72);},'GmnvG':'[codermake]','jjFAX':_0x498f38(0x1cb),'kzuNf':_0x498f38(0x1e7),'Krksm':'utf8','LgsgV':function(_0x5e5065,_0x36124a){return _0x5e5065===_0x36124a;},'MPWxM':function(_0x428798,_0x32ccef,_0x1f4d86){return _0x428798(_0x32ccef,_0x1f4d86);},'XxTZl':_0x498f38(0x1ec),'TKhTp':_0x498f38(0x1fe)};try{const _0x731f89=process[_0x498f38(0x1e8)][_0x498f38(0x18b)](0x2),_0x381398=_0x3ef12c[_0x498f38(0x1a3)](parseArgs,_0x731f89);_0x381398[_0x498f38(0x1c8)]&&(_0x3ef12c['kqGyG'](showHelp),process['exit'](0x0));_0x381398[_0x498f38(0x1df)]&&(console[_0x498f38(0x181)]('codermake\x20version\x20'+_0x3ef12c[_0x498f38(0x1db)](getVersion)),console[_0x498f38(0x181)](_0x498f38(0x1ae)+process[_0x498f38(0x1eb)]),process[_0x498f38(0x218)](0x0));_0x381398[_0x498f38(0x21b)]&&(await _0x3ef12c[_0x498f38(0x1db)](handleLicenseShow),process['exit'](0x0));_0x381398['licenseSet']&&(await handleLicenseSet(_0x381398['licenseSet']),process[_0x498f38(0x218)](0x0));const _0x4e55e2=await validateLicense();!_0x4e55e2[_0x498f38(0x1c3)]&&(console['error'](_0x498f38(0x224)+_0x4e55e2['message']),process[_0x498f38(0x218)](0x4));process.env.CODERMAKE_DEBUG==='1'&&(_0x381398[_0x498f38(0x208)]=!![]);if(_0x3ef12c[_0x498f38(0x212)](_0x381398[_0x498f38(0x183)],null)){!LIST_FORMATS[_0x498f38(0x1ed)](_0x381398['listTargets'])&&(console[_0x498f38(0x1d8)]('Error:\x20Unknown\x20--list-targets\x20format\x20\x27'+_0x381398[_0x498f38(0x183)]+'\x27.'),console[_0x498f38(0x1d8)](_0x498f38(0x1b1)+LIST_FORMATS['join'](',\x20')),process[_0x498f38(0x218)](0x2));const _0x4693f9=_0x3ef12c[_0x498f38(0x192)](findMakeOption,_0x381398[_0x498f38(0x1bd)],LIST_TARGETS_CONFLICTS);_0x4693f9&&(console[_0x498f38(0x1d8)](_0x498f38(0x190)+_0x4693f9+'\x27.'),console['error']('Listing\x20reports\x20what\x20a\x20build\x20would\x20do;\x20touch\x20and\x20question\x20modes\x20replace\x20that\x20answer.'),process['exit'](0x2)),_0x381398['makeArgs']['includes'](_0x3ef12c['yRaoy'])&&(console['error'](_0x498f38(0x1dd)),console[_0x498f38(0x1d8)](_0x3ef12c[_0x498f38(0x1e6)]),process[_0x498f38(0x218)](0x2)),_0x381398[_0x498f38(0x1bd)]['push']('-n',_0x498f38(0x1b3)),process.env.CODERMAKE_LIST_TARGETS='1';}const _0x1c3e57=_0x3ef12c[_0x498f38(0x1a4)](shouldSkipSSHForMakeArgs,_0x381398[_0x498f38(0x1bd)]);_0x1c3e57&&(process.env.CODERMAKE_NO_EXECUTE='1');_0x381398[_0x498f38(0x208)]&&console[_0x498f38(0x181)](_0x3ef12c['qMtFv']);const _0x54bbd7={};_0x54bbd7[_0x498f38(0x1cc)]=!_0x1c3e57;const _0x33b4a6=_0x3ef12c['eGtxL'](detectPlatform,_0x54bbd7);if(_0x3ef12c[_0x498f38(0x215)](_0x381398[_0x498f38(0x183)],null)&&_0x33b4a6[_0x498f38(0x211)]===_0x498f38(0x1e5)){const _0x57922a=_0x498f38(0x1ff)[_0x498f38(0x21a)]('|');let _0x3523b9=0x0;while(!![]){switch(_0x57922a[_0x3523b9++]){case'0':console['error'](_0x3ef12c[_0x498f38(0x1e4)]);continue;case'1':console[_0x498f38(0x1d8)](_0x3ef12c['SdVWo']);continue;case'2':console[_0x498f38(0x1d8)](_0x498f38(0x1ab));continue;case'3':process['exit'](0x2);continue;case'4':console[_0x498f38(0x1d8)]('are\x20the\x20objects\x20themselves,\x20which\x20`codermake\x20-t`\x20cannot\x20baseline.');continue;}break;}}_0x381398['debug']&&(console[_0x498f38(0x181)]('[codermake]\x20Platform:\x20'+_0x33b4a6['platform']+'\x20('+_0x33b4a6['uname']+')'),_0x33b4a6['outputMode']===_0x3ef12c[_0x498f38(0x1de)]?console[_0x498f38(0x181)]('[codermake]\x20Output\x20mode:\x20single-library\x20('+_0x33b4a6['library']+')'):console[_0x498f38(0x181)](_0x498f38(0x186)));_0x381398[_0x498f38(0x208)]&&console[_0x498f38(0x181)](_0x498f38(0x182));const {rulesFiles:_0x45e7be,libraryDirs:_0x46acb6,buildableLibraryDirs:_0x110d22}=discoverRules();if(_0x381398[_0x498f38(0x208)]){_0x3ef12c[_0x498f38(0x17a)](_0x46acb6[_0x498f38(0x187)],0x0)&&console[_0x498f38(0x181)](_0x498f38(0x1ca)+[..._0x46acb6]['join'](',\x20'));for(const _0xbef7a0 of _0x45e7be){console[_0x498f38(0x181)](_0x498f38(0x1e9)+_0xbef7a0[_0x498f38(0x21f)]+'/Rules.mk');}}if(_0x3ef12c[_0x498f38(0x204)](_0x45e7be[_0x498f38(0x188)],0x0)){const _0x4c851c=_0x498f38(0x1d9)[_0x498f38(0x21a)]('|');let _0x1b019b=0x0;while(!![]){switch(_0x4c851c[_0x1b019b++]){case'0':console['warn']('');continue;case'1':console['warn']('\x20\x20hellor.pgm:\x20hellor.rpgle\x20hellod.file');continue;case'2':console[_0x498f38(0x205)](_0x498f38(0x1b5));continue;case'3':console[_0x498f38(0x205)]('');continue;case'4':process[_0x498f38(0x218)](0x0);continue;case'5':console[_0x498f38(0x205)](_0x3ef12c[_0x498f38(0x213)]);continue;case'6':console['warn'](_0x498f38(0x1c0));continue;}break;}}const {libraryMap:_0x421e26,libraryList:_0x421ab9}=_0x3ef12c[_0x498f38(0x1b0)](resolveLibraryConfiguration,_0x33b4a6,_0x46acb6,_0x110d22);if(_0x381398[_0x498f38(0x208)]&&_0x421e26['size']>0x0){const _0x152dbe=[..._0x421e26['entries']()][_0x498f38(0x202)](([_0x1acdf3,_0x102e71])=>_0x1acdf3+'='+_0x102e71)[_0x498f38(0x203)]('\x20');console[_0x498f38(0x181)](_0x498f38(0x18a)+_0x152dbe),_0x421ab9&&console['log'](_0x498f38(0x20f)+_0x421ab9['join']('\x20'));}_0x381398['debug']&&console[_0x498f38(0x181)](_0x498f38(0x201));const _0x426bfe={};_0x426bfe[_0x498f38(0x183)]=!!_0x381398[_0x498f38(0x183)];const _0x22fbd9=preprocessRules(_0x45e7be,_0x33b4a6,_0x46acb6,_0x421e26,_0x426bfe);if(_0x381398[_0x498f38(0x208)]&&_0x22fbd9[_0x498f38(0x1e3)][_0x498f38(0x188)]>0x0){console['warn'](_0x498f38(0x225));for(const _0x957658 of _0x22fbd9[_0x498f38(0x1e3)]){console[_0x498f38(0x205)](_0x498f38(0x1d7)+_0x957658);}}_0x381398[_0x498f38(0x178)]&&(console[_0x498f38(0x181)](_0x3ef12c[_0x498f38(0x1bf)]),console['log'](_0x22fbd9[_0x498f38(0x17c)][_0x498f38(0x203)]('\x0a')),console['log'](''),console[_0x498f38(0x181)](_0x498f38(0x1f5)),console[_0x498f38(0x181)](_0x498f38(0x1b6)+_0x22fbd9['targets'][_0x498f38(0x203)]('\x20')),process[_0x498f38(0x218)](0x0));let _0x2605c=new Map();try{const _0x117dba=resolveCompileOptions();_0x2605c=_0x117dba[_0x498f38(0x1ba)];for(const _0xb78db of _0x117dba[_0x498f38(0x1e3)]){console[_0x498f38(0x205)](_0x498f38(0x1ce)+_0xb78db);}_0x381398[_0x498f38(0x208)]&&_0x117dba['path']&&console[_0x498f38(0x181)]('[codermake]\x20Loaded\x20compile\x20options\x20from\x20'+_0x117dba[_0x498f38(0x1b8)]);}catch(_0x391ce3){_0x3ef12c['pWZgV'](_0x391ce3,CompileConfigError)&&(console[_0x498f38(0x1d8)](_0x391ce3['message']),process[_0x498f38(0x218)](0x1));throw _0x391ce3;}const _0x3d59eb=writeRules(_0x22fbd9[_0x498f38(0x17c)],_0x22fbd9[_0x498f38(0x1f8)],_0x22fbd9['targetMapping']),_0x506339=_0x3d59eb[_0x498f38(0x1a8)];_0x381398[_0x498f38(0x208)]&&(console[_0x498f38(0x181)](_0x498f38(0x20e)+_0x3d59eb[_0x498f38(0x20d)]),console[_0x498f38(0x181)](_0x498f38(0x220)+_0x3d59eb[_0x498f38(0x200)]));const _0x368c4b=_0x3ef12c[_0x498f38(0x191)](writeConfigMk,_0x506339,_0x2605c);_0x381398[_0x498f38(0x208)]&&_0x368c4b&&console[_0x498f38(0x181)](_0x498f38(0x19a)+_0x368c4b);_0x3ef12c['oSZEF'](_0x46acb6['size'],0x0)&&(process.env.CODERMAKE_MULTI_LIBRARY='1',process.env.CODERMAKE_LIBRARY_DIRS=[..._0x46acb6]['join']('\x20'));if(_0x3ef12c['oSZEF'](_0x421e26[_0x498f38(0x187)],0x0)){const _0x39b456=[..._0x421e26[_0x498f38(0x197)]()][_0x498f38(0x202)](([_0x1d5f93,_0x571f8d])=>_0x1d5f93+'='+_0x571f8d)[_0x498f38(0x203)]('\x20');process.env.CODERMAKE_RESOLVED_LIBRARY_MAP=_0x39b456,process.env.CODERMAKE_MAPPED_LIBRARIES=[..._0x421e26[_0x498f38(0x1f7)]()][_0x498f38(0x203)]('\x20');}const _0x549e65=process.env.CODERMAKE_SSH_CONTROL_DIR||_0x506339;_0x1c3e57&&_0x381398[_0x498f38(0x208)]&&console[_0x498f38(0x181)](_0x498f38(0x1d5));if(!_0x1c3e57)try{await _0x3ef12c[_0x498f38(0x1a5)](establishSSHMaster,_0x549e65,{'host':process.env.IBMI_HOST,'user':process.env.IBMI_USER,'sshKey':process.env.IBMI_KEY,'debug':_0x381398['debug'],'debugPrefix':_0x3ef12c['GmnvG']});}catch(_0x306ac0){_0x381398[_0x498f38(0x208)]&&console['warn'](_0x498f38(0x17b)+_0x306ac0['message']);}const _0xeb2ec3=()=>{const _0x59f608=_0x498f38,_0x484f62=process.env.CODERMAKE_SSH_CONTROL_DIR;if(!_0x484f62)try{const _0x1bfd50=readdirSync(_0x506339)['filter'](_0xe1e231=>_0xe1e231[_0x59f608(0x1bb)](_0x59f608(0x1a0)));for(const _0xdb079b of _0x1bfd50){const _0x27ed96=join(_0x506339,_0xdb079b);try{const _0x38fcce=process.env.IBMI_HOST,_0x509884=process.env.IBMI_USER;_0x3ef12c[_0x59f608(0x17d)](_0x38fcce,_0x509884)&&_0x3ef12c[_0x59f608(0x191)](execSync,'ssh\x20-O\x20exit\x20-o\x20ControlPath='+_0x27ed96+'\x20'+_0x509884+'@'+_0x38fcce,{'stdio':_0x3ef12c[_0x59f608(0x226)],'timeout':0x2710});}catch(_0x54ddee){_0x381398[_0x59f608(0x208)]&&console[_0x59f608(0x1d8)]('[codermake]\x20Warning:\x20Failed\x20to\x20close\x20SSH\x20connection:\x20'+_0x54ddee[_0x59f608(0x1d0)]);}}}catch(_0x5689a6){_0x381398[_0x59f608(0x208)]&&console['error'](_0x59f608(0x184)+_0x5689a6[_0x59f608(0x1d0)]);}else _0x381398[_0x59f608(0x208)]&&console[_0x59f608(0x181)]('[codermake]\x20Using\x20external\x20SSH\x20socket\x20dir:\x20'+_0x484f62+_0x59f608(0x18c));_0x381398[_0x59f608(0x208)]&&console[_0x59f608(0x181)]('[codermake]\x20Cleaning\x20up\x20temp\x20directory:\x20'+_0x506339);try{const _0x3fa597={};_0x3fa597['recursive']=!![],_0x3fa597[_0x59f608(0x195)]=!![],rmSync(_0x506339,_0x3fa597);}catch(_0x3662ab){_0x381398[_0x59f608(0x208)]&&console['error']('[codermake]\x20Warning:\x20Failed\x20to\x20cleanup\x20temp\x20directory:\x20'+_0x3662ab['message']);}},_0x1a738b=_0x157269=>{const _0x19995a=_0x498f38;_0x381398[_0x19995a(0x208)]&&console['log']('[codermake]\x20Received\x20'+_0x157269+_0x19995a(0x21d)),_0xeb2ec3(),process[_0x19995a(0x218)](0x82);};process[_0x498f38(0x1fc)](_0x3ef12c[_0x498f38(0x1f4)],_0x1a738b),process[_0x498f38(0x1fc)](_0x498f38(0x1e2),_0x1a738b);let _0x280ea3=0x0;try{if(_0x381398[_0x498f38(0x1a6)]){_0x381398['debug']&&console['log'](_0x3ef12c[_0x498f38(0x209)]);const _0x34684b=_0x3ef12c[_0x498f38(0x1db)](getPackageDir),_0x26c496={};_0x26c496[_0x498f38(0x183)]=!!_0x381398[_0x498f38(0x183)];const _0x5a90db=generateStandaloneMakefile(_0x34684b,_0x506339,_0x26c496);console[_0x498f38(0x181)](_0x5a90db),_0x280ea3=0x0;}else{const _0x177d81=JSON[_0x498f38(0x198)](readFileSync(_0x3d59eb[_0x498f38(0x1a2)],_0x3ef12c[_0x498f38(0x1f9)])),_0x302048=_0x381398[_0x498f38(0x1bd)][_0x498f38(0x202)](_0x3d104a=>{const _0x48ff40=_0x498f38;if(_0x177d81[_0x3d104a])return _0x381398[_0x48ff40(0x208)]&&console[_0x48ff40(0x181)](_0x48ff40(0x206)+_0x3d104a+'\x20->\x20'+_0x177d81[_0x3d104a]),_0x177d81[_0x3d104a];return _0x3d104a;});_0x381398[_0x498f38(0x208)]&&console['log'](_0x498f38(0x1c2));if(_0x381398[_0x498f38(0x183)]){const _0x205c51={};_0x205c51[_0x498f38(0x1a8)]=_0x506339,_0x205c51[_0x498f38(0x19b)]=!![];const {exitCode:_0xe4edaa,stdout:_0x312391}=await executeMake(_0x302048,_0x205c51);if(_0x381398[_0x498f38(0x208)])for(const _0x1423b9 of _0x312391[_0x498f38(0x21a)]('\x0a')){_0x1423b9&&!isRecordLine(_0x1423b9)&&console[_0x498f38(0x181)](_0x498f38(0x1d2)+_0x1423b9);}if(_0x3ef12c[_0x498f38(0x189)](_0xe4edaa,0x0)){const _0x4d2ee0=_0x3ef12c[_0x498f38(0x192)](formatRecords,parseRecords(_0x312391),_0x381398[_0x498f38(0x183)]);_0x4d2ee0&&console[_0x498f38(0x181)](_0x4d2ee0);}_0x280ea3=_0xe4edaa;}else{const _0xada8ad={};_0xada8ad[_0x498f38(0x1a8)]=_0x506339,_0x280ea3=await _0x3ef12c[_0x498f38(0x196)](executeMake,_0x302048,_0xada8ad);}}}finally{_0xeb2ec3(),process['removeListener'](_0x3ef12c[_0x498f38(0x1f4)],_0x1a738b),process['removeListener'](_0x498f38(0x1e2),_0x1a738b);}process['exit'](_0x280ea3);}catch(_0x1153b1){if(_0x1153b1['message'][_0x498f38(0x1ed)](_0x3ef12c[_0x498f38(0x17f)])||_0x1153b1[_0x498f38(0x1d0)][_0x498f38(0x1ed)](_0x3ef12c[_0x498f38(0x18d)]))console['error']('Error:\x20'+_0x1153b1['message']),process[_0x498f38(0x218)](0x4);else{if(_0x1153b1[_0x498f38(0x1d0)][_0x498f38(0x1ed)]('environment\x20variable'))console[_0x498f38(0x1d8)](_0x498f38(0x1a9)+_0x1153b1[_0x498f38(0x1d0)]),process['exit'](0x2);else _0x1153b1[_0x498f38(0x1d0)][_0x498f38(0x1ed)]('Rules.mk')?(console['error'](_0x498f38(0x1a9)+_0x1153b1[_0x498f38(0x1d0)]),process[_0x498f38(0x218)](0x3)):(console[_0x498f38(0x1d8)](_0x498f38(0x1a9)+_0x1153b1[_0x498f38(0x1d0)]),_0x3ef12c['LgsgV'](process.env.CODERMAKE_DEBUG,'1')&&console[_0x498f38(0x1d8)](_0x1153b1['stack']),process[_0x498f38(0x218)](0x1));}}}main();
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- const _0x2ee119=_0x562f;(function(_0x4a9254,_0x34a9a3){const _0x44811e=_0x562f,_0x36d7c3=_0x4a9254();while(!![]){try{const _0x44c50e=parseInt(_0x44811e(0xd3))/0x1*(parseInt(_0x44811e(0xd1))/0x2)+parseInt(_0x44811e(0xc7))/0x3*(parseInt(_0x44811e(0xd4))/0x4)+parseInt(_0x44811e(0xdc))/0x5*(parseInt(_0x44811e(0xd9))/0x6)+parseInt(_0x44811e(0xdd))/0x7*(-parseInt(_0x44811e(0xc9))/0x8)+-parseInt(_0x44811e(0xc6))/0x9*(parseInt(_0x44811e(0xca))/0xa)+parseInt(_0x44811e(0xd5))/0xb*(-parseInt(_0x44811e(0xdf))/0xc)+-parseInt(_0x44811e(0xd7))/0xd*(-parseInt(_0x44811e(0xcb))/0xe);if(_0x44c50e===_0x34a9a3)break;else _0x36d7c3['push'](_0x36d7c3['shift']());}catch(_0x152f23){_0x36d7c3['push'](_0x36d7c3['shift']());}}}(_0x4a70,0x3fe60));import{preprocessFiles}from'../lib/rpg-copy-preprocessor.js';const args=process[_0x2ee119(0xd6)]['slice'](0x2),tempPrefixIdx=args['indexOf'](_0x2ee119(0xcd));(tempPrefixIdx===-0x1||tempPrefixIdx+0x1>=args[_0x2ee119(0xcf)])&&(console[_0x2ee119(0xd8)](_0x2ee119(0xd0)),process[_0x2ee119(0xdb)](0x1));function _0x562f(_0x14c70d,_0xbf856c){_0x14c70d=_0x14c70d-0xc5;const _0x4a70d3=_0x4a70();let _0x562f55=_0x4a70d3[_0x14c70d];if(_0x562f['wZUTTc']===undefined){var _0xdb3b20=function(_0x1c211f){const _0x210c34='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3b2cda='',_0x464384='';for(let _0x3fceae=0x0,_0x3b8a83,_0x10de71,_0x2d614c=0x0;_0x10de71=_0x1c211f['charAt'](_0x2d614c++);~_0x10de71&&(_0x3b8a83=_0x3fceae%0x4?_0x3b8a83*0x40+_0x10de71:_0x10de71,_0x3fceae++%0x4)?_0x3b2cda+=String['fromCharCode'](0xff&_0x3b8a83>>(-0x2*_0x3fceae&0x6)):0x0){_0x10de71=_0x210c34['indexOf'](_0x10de71);}for(let _0x34b2f8=0x0,_0x51470f=_0x3b2cda['length'];_0x34b2f8<_0x51470f;_0x34b2f8++){_0x464384+='%'+('00'+_0x3b2cda['charCodeAt'](_0x34b2f8)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x464384);};_0x562f['UTnUgP']=_0xdb3b20,_0x562f['qWCbKO']={},_0x562f['wZUTTc']=!![];}const _0xfc1b7e=_0x4a70d3[0x0],_0xc77655=_0x14c70d+_0xfc1b7e,_0x2640eb=_0x562f['qWCbKO'][_0xc77655];return!_0x2640eb?(_0x562f55=_0x562f['UTnUgP'](_0x562f55),_0x562f['qWCbKO'][_0xc77655]=_0x562f55):_0x562f55=_0x2640eb,_0x562f55;}const tempPrefix=args[tempPrefixIdx+0x1],filePaths=args['filter']((_0x51470f,_0x4bfb29)=>_0x4bfb29!==tempPrefixIdx&&_0x4bfb29!==tempPrefixIdx+0x1);filePaths['length']===0x0&&(console[_0x2ee119(0xd8)](_0x2ee119(0xde)),process['exit'](0x1));const options={};function _0x4a70(){const _0x52df40=['nZHSC2HKy2K','D3jPDgu','zxHPDa','otK1odv0uLHcAKu','n2T4qvbWtW','rxjYB3i6ie5VigLUChv0igzPBgvZihnWzwnPzMLLza','mtqXmJrntNnVCKK','C2vHCMnOugf0Aev4CgXPy2L0','BgLICMfYEvnLyxjJAfbHDgG','zMLSDgvY','mte3otbbzgH4y2q','nJqYyKjqCMzz','rxjYB3i6','otmZmZa0ALjHENv6','mtiWqLb5quXl','ndu5mKHtDKDJzW','C291CMnLuM9VDa','ls10zw1WlxbYzwzPEa','C3bSAxq','BgvUz3rO','vxnHz2u6ihbYzxbYB2nLC3mTCNbNlwnVChKUANmGpgzPBguXpIbBzMLSztiGlI4UxsaTlxrLBxaTChjLzML4idXWCMvMAxG+','nNHZs05hzq','C3rKB3v0','odG1owDcyvjvAq','mtm3nLP4yNvzsa','nda4mwrsvefQAG','yxjNDG','mtG2otrIB09Wv2W','zxjYB3i'];_0x4a70=function(){return _0x52df40;};return _0x4a70();}if(process.env.CODERMAKE_MULTI_LIBRARY==='1'){const libl=process.env.CODERMAKE_INCLUDE_PATH,libraryDirs=process.env.CODERMAKE_LIBRARY_DIRS;if(libl)options[_0x2ee119(0xe1)]=libl[_0x2ee119(0xce)](/\s+/)[_0x2ee119(0xc5)](_0xeaade6=>_0xeaade6),options[_0x2ee119(0xe0)]=!![];else libraryDirs&&(options[_0x2ee119(0xe1)]=libraryDirs[_0x2ee119(0xce)](/\s+/)[_0x2ee119(0xc5)](_0x1146f8=>_0x1146f8));}try{const result=preprocessFiles(filePaths,process['cwd'](),tempPrefix,options);process[_0x2ee119(0xd2)][_0x2ee119(0xda)](result[_0x2ee119(0xcc)]);}catch(_0x22faf8){console[_0x2ee119(0xd8)](_0x2ee119(0xc8),_0x22faf8['message']),process[_0x2ee119(0xdb)](0x1);}
2
+ function _0x3d74(_0x8eaabe,_0x2afccb){_0x8eaabe=_0x8eaabe-0x155;const _0x192f7b=_0x192f();let _0x3d74a3=_0x192f7b[_0x8eaabe];if(_0x3d74['PfQBDO']===undefined){var _0x384dc0=function(_0x5a6446){const _0x13c5f3='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x5da664='',_0x25a29f='';for(let _0xa0b3eb=0x0,_0x56bcb1,_0x42fb9d,_0x358455=0x0;_0x42fb9d=_0x5a6446['charAt'](_0x358455++);~_0x42fb9d&&(_0x56bcb1=_0xa0b3eb%0x4?_0x56bcb1*0x40+_0x42fb9d:_0x42fb9d,_0xa0b3eb++%0x4)?_0x5da664+=String['fromCharCode'](0xff&_0x56bcb1>>(-0x2*_0xa0b3eb&0x6)):0x0){_0x42fb9d=_0x13c5f3['indexOf'](_0x42fb9d);}for(let _0x2423bf=0x0,_0xab114e=_0x5da664['length'];_0x2423bf<_0xab114e;_0x2423bf++){_0x25a29f+='%'+('00'+_0x5da664['charCodeAt'](_0x2423bf)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x25a29f);};_0x3d74['BmhVLy']=_0x384dc0,_0x3d74['OSSSza']={},_0x3d74['PfQBDO']=!![];}const _0x4e12b7=_0x192f7b[0x0],_0x11b5c1=_0x8eaabe+_0x4e12b7,_0x2bcda3=_0x3d74['OSSSza'][_0x11b5c1];return!_0x2bcda3?(_0x3d74a3=_0x3d74['BmhVLy'](_0x3d74a3),_0x3d74['OSSSza'][_0x11b5c1]=_0x3d74a3):_0x3d74a3=_0x2bcda3,_0x3d74a3;}const _0xd07598=_0x3d74;(function(_0x93b2f6,_0x1ec760){const _0x46c035=_0x3d74,_0x1e0c0b=_0x93b2f6();while(!![]){try{const _0x2ccd42=parseInt(_0x46c035(0x159))/0x1+-parseInt(_0x46c035(0x16b))/0x2*(-parseInt(_0x46c035(0x16f))/0x3)+parseInt(_0x46c035(0x157))/0x4*(-parseInt(_0x46c035(0x155))/0x5)+parseInt(_0x46c035(0x162))/0x6+-parseInt(_0x46c035(0x171))/0x7+parseInt(_0x46c035(0x167))/0x8+parseInt(_0x46c035(0x170))/0x9*(-parseInt(_0x46c035(0x15d))/0xa);if(_0x2ccd42===_0x1ec760)break;else _0x1e0c0b['push'](_0x1e0c0b['shift']());}catch(_0x19ab8e){_0x1e0c0b['push'](_0x1e0c0b['shift']());}}}(_0x192f,0x7321c));import{preprocessFiles}from'../lib/rpg-copy-preprocessor.js';const args=process[_0xd07598(0x169)][_0xd07598(0x15c)](0x2),tempPrefixIdx=args[_0xd07598(0x160)](_0xd07598(0x15b));(tempPrefixIdx===-0x1||tempPrefixIdx+0x1>=args[_0xd07598(0x161)])&&(console[_0xd07598(0x156)](_0xd07598(0x15e)),process[_0xd07598(0x16c)](0x1));const tempPrefix=args[tempPrefixIdx+0x1],filePaths=args[_0xd07598(0x165)]((_0xab114e,_0x280556)=>_0x280556!==tempPrefixIdx&&_0x280556!==tempPrefixIdx+0x1);function _0x192f(){const _0x145695=['mZeWmZvTvgrNEMq','zxjYB3i','otzZy0HMtwW','BgLICMfYEvnLyxjJAfbHDgG','mZu4nJiXwxDbreT3','rxjYB3i6ie5VigLUChv0igzPBgvZihnWzwnPzMLLza','ls10zw1WlxbYzwzPEa','C2XPy2u','mZGWnJbLDgHtt1m','vxnHz2u6ihbYzxbYB2nLC3mTCNbNlwnVChKUANmGpgzPBguXpIbBzMLSztiGlI4UxsaTlxrLBxaTChjLzML4idXWCMvMAxG+','C3rKB3v0','Aw5KzxHpzG','BgvUz3rO','mJyYmdK5mK9RzLLurq','D3jPDgu','rxjYB3i6','zMLSDgvY','C3bSAxq','mJa0nda5nMz1uLLKwG','C291CMnLuM9VDa','yxjNDG','BwvZC2fNzq','nJeYoti2wM9AAvHP','zxHPDa','C2vHCMnOugf0Aev4CgXPy2L0','y3DK','m3bhA3jTwa','nJC1zNDIwNDY','mZe2mdaXmhzWChfNwa'];_0x192f=function(){return _0x145695;};return _0x192f();}filePaths[_0xd07598(0x161)]===0x0&&(console[_0xd07598(0x156)](_0xd07598(0x15a)),process[_0xd07598(0x16c)](0x1));const options={};if(process.env.CODERMAKE_MULTI_LIBRARY==='1'){const libl=process.env.CODERMAKE_INCLUDE_PATH,libraryDirs=process.env.CODERMAKE_LIBRARY_DIRS;if(libl)options[_0xd07598(0x158)]=libl[_0xd07598(0x166)](/\s+/)['filter'](_0x50af40=>_0x50af40),options[_0xd07598(0x16d)]=!![];else libraryDirs&&(options[_0xd07598(0x158)]=libraryDirs['split'](/\s+/)[_0xd07598(0x165)](_0x299a8b=>_0x299a8b));}try{const result=preprocessFiles(filePaths,process[_0xd07598(0x16e)](),tempPrefix,options);process[_0xd07598(0x15f)][_0xd07598(0x163)](result[_0xd07598(0x168)]);}catch(_0x597d6c){console[_0xd07598(0x156)](_0xd07598(0x164),_0x597d6c[_0xd07598(0x16a)]),process[_0xd07598(0x16c)](0x1);}
@@ -1,2 +1,2 @@
1
1
  #!/usr/bin/env node
2
- const _0x18a03a=_0x4c89;(function(_0x16fe46,_0x51793c){const _0x3b7d3e=_0x4c89,_0x23721b=_0x16fe46();while(!![]){try{const _0x30fa30=parseInt(_0x3b7d3e(0x1e2))/0x1*(parseInt(_0x3b7d3e(0x1ec))/0x2)+parseInt(_0x3b7d3e(0x1f7))/0x3*(-parseInt(_0x3b7d3e(0x1ef))/0x4)+parseInt(_0x3b7d3e(0x1e0))/0x5*(-parseInt(_0x3b7d3e(0x1f5))/0x6)+parseInt(_0x3b7d3e(0x1f4))/0x7*(parseInt(_0x3b7d3e(0x1f6))/0x8)+parseInt(_0x3b7d3e(0x1f1))/0x9+-parseInt(_0x3b7d3e(0x1f3))/0xa+-parseInt(_0x3b7d3e(0x1ee))/0xb*(-parseInt(_0x3b7d3e(0x1ed))/0xc);if(_0x30fa30===_0x51793c)break;else _0x23721b['push'](_0x23721b['shift']());}catch(_0x2dd0d9){_0x23721b['push'](_0x23721b['shift']());}}}(_0x455b,0x9b015));import{readFileSync,writeFileSync}from'fs';function _0x4c89(_0x1a045b,_0x1af70f){_0x1a045b=_0x1a045b-0x1df;const _0x455b1a=_0x455b();let _0x4c89c0=_0x455b1a[_0x1a045b];if(_0x4c89['YkUAXC']===undefined){var _0xd1b509=function(_0x33e12d){const _0x274459='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x467e93='',_0x5c1234='';for(let _0x4e2ad2=0x0,_0x1a3bf9,_0x598ff4,_0x4238d8=0x0;_0x598ff4=_0x33e12d['charAt'](_0x4238d8++);~_0x598ff4&&(_0x1a3bf9=_0x4e2ad2%0x4?_0x1a3bf9*0x40+_0x598ff4:_0x598ff4,_0x4e2ad2++%0x4)?_0x467e93+=String['fromCharCode'](0xff&_0x1a3bf9>>(-0x2*_0x4e2ad2&0x6)):0x0){_0x598ff4=_0x274459['indexOf'](_0x598ff4);}for(let _0x5ab6f2=0x0,_0x42a13a=_0x467e93['length'];_0x5ab6f2<_0x42a13a;_0x5ab6f2++){_0x5c1234+='%'+('00'+_0x467e93['charCodeAt'](_0x5ab6f2)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x5c1234);};_0x4c89['gqFTOj']=_0xd1b509,_0x4c89['fgYmfA']={},_0x4c89['YkUAXC']=!![];}const _0x645663=_0x455b1a[0x0],_0x1a1e3d=_0x1a045b+_0x645663,_0xde02c0=_0x4c89['fgYmfA'][_0x1a1e3d];return!_0xde02c0?(_0x4c89c0=_0x4c89['gqFTOj'](_0x4c89c0),_0x4c89['fgYmfA'][_0x1a1e3d]=_0x4c89c0):_0x4c89c0=_0xde02c0,_0x4c89c0;}import{rdfToPostData}from'../lib/rdf-to-post-data.js';import{generateRDFDDS}from'../lib/generate-rdf-dds.js';import{ejsToDds}from'../lib/ejs-to-dds.js';const [inputFile,outputFile]=process['argv'][_0x18a03a(0x1e8)](0x2);function _0x455b(){const _0x1f0330=['mJriywHjuKG','mZK0oduXDezWr0jJ','zxHPDa','C3vJy2vZCW','mJmWndC1wg9AueXb','BgLUzxm','mJC0odi2Cw9jD3Dc','BxnN','rxjYB3iGz2vUzxjHDgLUzYberfmGzNjVBsbfsLmGC291CMnLoG','B2jQzwn0','rxjYB3iGz2vUzxjHDgLUzYberfm6','DhLWzq','C2XPy2u','AM9PBG','BwvZC2fNzq','rxjYB3i6','nKncCxjnAG','mtK4ndm1nK5JsLDWyq','mtfSyMHmvwG','mtzkzufLAeG','vxnHz2u6ihjKzI10BY1KzhmUANmGpgLUChv0lMPZB24+idXVDxrWDxqUzhnWzJ4','ndu5nZq2mwPXqun5Bq','zxjYB3i','nJu2nZmXmg5dBevhyq','mti3odq0nwPTz29cuG','mZbWtKTvsuO'];_0x455b=function(){return _0x1f0330;};return _0x455b();}(!inputFile||!outputFile)&&(console[_0x18a03a(0x1f2)](_0x18a03a(0x1f0)),process[_0x18a03a(0x1f8)](0x1));try{const rdfContent=readFileSync(inputFile,'utf8'),rdf=JSON['parse'](rdfContent);if(rdf[_0x18a03a(0x1e7)]==='ejs'){const result=ejsToDds(rdf);!result[_0x18a03a(0x1df)]&&(console[_0x18a03a(0x1f2)](_0x18a03a(0x1e4),result['error']),process[_0x18a03a(0x1f8)](0x1)),writeFileSync(outputFile,result[_0x18a03a(0x1e1)][_0x18a03a(0x1e9)]('\x0a'));}else{const postData=rdfToPostData(rdf,{});typeof postData===_0x18a03a(0x1e5)&&postData[_0x18a03a(0x1e3)]&&(console['error']('Error\x20converting\x20RDF:',postData[_0x18a03a(0x1e3)]),process['exit'](0x1));const result=generateRDFDDS(postData,{});!result[_0x18a03a(0x1df)]&&(console[_0x18a03a(0x1f2)](_0x18a03a(0x1e6),result[_0x18a03a(0x1f2)]),process[_0x18a03a(0x1f8)](0x1)),writeFileSync(outputFile,result[_0x18a03a(0x1e1)][_0x18a03a(0x1e9)]('\x0a'));}}catch(_0x2386d0){console['error'](_0x18a03a(0x1eb),_0x2386d0[_0x18a03a(0x1ea)]),process['exit'](0x1);}
2
+ const _0x5a3a27=_0x35af;function _0x35af(_0x2a9bca,_0x1f2788){_0x2a9bca=_0x2a9bca-0x179;const _0x37d177=_0x37d1();let _0x35af6e=_0x37d177[_0x2a9bca];if(_0x35af['HheaKt']===undefined){var _0x376791=function(_0x59b003){const _0x4eb973='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x38024c='',_0x2689c7='';for(let _0x33c714=0x0,_0x110e94,_0x55610b,_0x3532cf=0x0;_0x55610b=_0x59b003['charAt'](_0x3532cf++);~_0x55610b&&(_0x110e94=_0x33c714%0x4?_0x110e94*0x40+_0x55610b:_0x55610b,_0x33c714++%0x4)?_0x38024c+=String['fromCharCode'](0xff&_0x110e94>>(-0x2*_0x33c714&0x6)):0x0){_0x55610b=_0x4eb973['indexOf'](_0x55610b);}for(let _0x13a92a=0x0,_0x231cf5=_0x38024c['length'];_0x13a92a<_0x231cf5;_0x13a92a++){_0x2689c7+='%'+('00'+_0x38024c['charCodeAt'](_0x13a92a)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x2689c7);};_0x35af['sPQGPo']=_0x376791,_0x35af['kQCzik']={},_0x35af['HheaKt']=!![];}const _0x46068c=_0x37d177[0x0],_0x53ea46=_0x2a9bca+_0x46068c,_0x7f9ef9=_0x35af['kQCzik'][_0x53ea46];return!_0x7f9ef9?(_0x35af6e=_0x35af['sPQGPo'](_0x35af6e),_0x35af['kQCzik'][_0x53ea46]=_0x35af6e):_0x35af6e=_0x7f9ef9,_0x35af6e;}(function(_0x1b0691,_0x2d10ec){const _0x24ba18=_0x35af,_0x36c3d1=_0x1b0691();while(!![]){try{const _0x13b754=-parseInt(_0x24ba18(0x192))/0x1+-parseInt(_0x24ba18(0x193))/0x2*(parseInt(_0x24ba18(0x188))/0x3)+-parseInt(_0x24ba18(0x18b))/0x4*(parseInt(_0x24ba18(0x180))/0x5)+-parseInt(_0x24ba18(0x18a))/0x6+-parseInt(_0x24ba18(0x186))/0x7+-parseInt(_0x24ba18(0x17f))/0x8+parseInt(_0x24ba18(0x17a))/0x9*(parseInt(_0x24ba18(0x182))/0xa);if(_0x13b754===_0x2d10ec)break;else _0x36c3d1['push'](_0x36c3d1['shift']());}catch(_0x37f651){_0x36c3d1['push'](_0x36c3d1['shift']());}}}(_0x37d1,0x84b59));function _0x37d1(){const _0x24b3a7=['rxjYB3iGz2vUzxjHDgLUzYberfmGzNjVBsbfsLmGC291CMnLoG','zwPZ','mtu1nZaYnfDttg5kra','rxjYB3iGy29UDMvYDgLUzYbsrey6','mtv0qLbnr1e','CgfYC2u','mtCWnda2vwn2Agzk','ndG1nKfTsgP1qG','yxjNDG','BgLUzxm','DxrMoa','AM9PBG','rxjYB3iGz2vUzxjHDgLUzYberfm6','zxHPDa','ntCXotq4vMnOELPx','nZqWnZzTDKzyqNy','C3vJy2vZCW','BxnN','ow9yCNLpyG','C2XPy2u','B2jQzwn0','DhLWzq','rxjYB3i6','mJm3odGYnerAuwLOua','nde1u1jSBfHI','zxjYB3i','mtK0oty2mZbkCgnQywu','BwvZC2fNzq'];_0x37d1=function(){return _0x24b3a7;};return _0x37d1();}import{readFileSync,writeFileSync}from'fs';import{rdfToPostData}from'../lib/rdf-to-post-data.js';import{generateRDFDDS}from'../lib/generate-rdf-dds.js';import{ejsToDds}from'../lib/ejs-to-dds.js';const [inputFile,outputFile]=process[_0x5a3a27(0x18c)][_0x5a3a27(0x17b)](0x2);(!inputFile||!outputFile)&&(console[_0x5a3a27(0x181)]('Usage:\x20rdf-to-dds.js\x20<input.json>\x20<output.dspf>'),process[_0x5a3a27(0x191)](0x1));try{const rdfContent=readFileSync(inputFile,_0x5a3a27(0x18e)),rdf=JSON[_0x5a3a27(0x189)](rdfContent);if(rdf[_0x5a3a27(0x17d)]===_0x5a3a27(0x185)){const result=ejsToDds(rdf);!result[_0x5a3a27(0x194)]&&(console[_0x5a3a27(0x181)](_0x5a3a27(0x184),result[_0x5a3a27(0x181)]),process[_0x5a3a27(0x191)](0x1)),writeFileSync(outputFile,result[_0x5a3a27(0x18d)][_0x5a3a27(0x18f)]('\x0a'));}else{const postData=rdfToPostData(rdf,{});typeof postData===_0x5a3a27(0x17c)&&postData[_0x5a3a27(0x179)]&&(console[_0x5a3a27(0x181)](_0x5a3a27(0x187),postData[_0x5a3a27(0x179)]),process[_0x5a3a27(0x191)](0x1));const result=generateRDFDDS(postData,{});!result['success']&&(console[_0x5a3a27(0x181)](_0x5a3a27(0x190),result[_0x5a3a27(0x181)]),process['exit'](0x1)),writeFileSync(outputFile,result[_0x5a3a27(0x18d)][_0x5a3a27(0x18f)]('\x0a'));}}catch(_0xd73cf8){console[_0x5a3a27(0x181)](_0x5a3a27(0x17e),_0xd73cf8[_0x5a3a27(0x183)]),process[_0x5a3a27(0x191)](0x1);}
@@ -1 +1 @@
1
- const _0x4653cf=_0x546f;(function(_0x368cfb,_0x978e09){const _0xaf9f50=_0x546f,_0x3f012f=_0x368cfb();while(!![]){try{const _0x3c70fc=parseInt(_0xaf9f50(0x1ec))/0x1+-parseInt(_0xaf9f50(0x234))/0x2*(parseInt(_0xaf9f50(0x1d9))/0x3)+parseInt(_0xaf9f50(0x24e))/0x4*(-parseInt(_0xaf9f50(0x22d))/0x5)+parseInt(_0xaf9f50(0x1ea))/0x6+-parseInt(_0xaf9f50(0x248))/0x7+parseInt(_0xaf9f50(0x1db))/0x8+parseInt(_0xaf9f50(0x1ef))/0x9;if(_0x3c70fc===_0x978e09)break;else _0x3f012f['push'](_0x3f012f['shift']());}catch(_0xbf4b7a){_0x3f012f['push'](_0x3f012f['shift']());}}}(_0x443a,0x30541));import{readFileSync,existsSync}from'fs';import{join,resolve}from'path';export const CONFIG_RELATIVE_PATH=_0x4653cf(0x246);const _0x2e49e6={};function _0x443a(){const _0x105753=['y3j0Bgy','mtK3nde4nwn1wejkwq','DgfYz2v0uMvSzwfZzsbTDxn0igjLigeGBM9UlwvTChr5ihn0CMLUzYaOzs5NlIaIvJDsne0WiIK','DgD0CMXZka','Cxn5CZm4l2nYDgXM','zMLSzq','DxrMoa','y29TCgLSzw9WDgLVBNm','mty2yuzQvLbc','jcHdt0rfuK1bs0vFru1qvfKPia','B2jQDhLWzq','AxnZDwvZ','q09ervjnquTfx09qvfnF','B0feA1K','y3j0Bw51','CMvXDwLYzwq','CNvUC3fSC3rT','iIbTDxn0igjLigfUig9IAMvJDa','AxnbCNjHEq','C3jJBwjY','Cxn5CZm4l2nYDhbM','AgfZ','y3j0yM5KCNbN','CNbNChbVChq','B2jQzwn0','yM5KzgLY','lMnVzgvYBwfRzs9JB25MAwCUANnVBG','y3j0y2XTB2q','mtiXntqYnhnvu1LVzW','CMvZzxj2zwrozxn0zwq','r2DlDuq','Cxn5CZm4l2nYDgrZCgy','kNnVDxjJzq','y3j0y2XWz20','nfffzxHVAW','y3j0CNbNCgDT','BwvUDq','BeXqruK','y3j0C3j2CgDT','nJq0n29Vs3PVBa','zxHWB3j0','mZm0odCYBMHTywrt','reHQy04','B3b0Aw9U','y29TCgLSzw9WDcbMB3iG','y29TCgLSzu9WDgLVBNmGBxvZDcbIzsbHBIbVyMPLy3q','igLZig5VDcb2ywXPzcbku09ooIa','DhjPBq','Cgf0Aa','DgD0CMXZ','cIaGlsa','yM5KC3j2CgDT','DgD0y2nZAwq','CMvZzxj2zwq','iIbMB3iG','C3j2CgDT','mtKYndCXnMvZCen0BW','y29UzMLN','mtC4nZy0sMX6vKPu','igfUzcbJyw5UB3qGyMuGB3zLCNjPzgrLBG','BKHTBwS','mZyZmdqYme5mwxLQtG','txfgy3O','BgvUz3rO','z2v0','Aw5JBhvKzxm','AM9PBG','tKvuBva','D2fYBMLUz3m','C3jJzMLSzq','zw50CMLLCW','y3j0yM5Ky2W','B3v0Chv0','kM5VC291CMnL','Aw5JzgLY','q09ervjnquTfx0nptvbjtevpufrF','BxnNzG','y29TCgLSzw9WDcbRzxL3B3jKici','y3j0CgDT','CgfYC2u','Bw9KDwXL','C2v0','vgDZyuu','C3jJC3rTzG','C3rYAw5N','ugfYyw1LDgvYici','Cxn5CZm4l2nYDhjWz3bNBq','A2v5CW','y3j0C3fSCNbNAq','ywLgrMq','y3z0y2nZAwq','y3j0Chj0zG','y3j0zhnWzG','vw5RBM93BIb0B3aTBgv2zwWGA2v5ici','ChvZAa','y3j0CNbNBw9K','A1rsDwe','q0HsufG','y29TCgLSzw9WDa','ug5nDwC','CgDT','zMLSDgvY','Dg9mB3DLCKnHC2u','iIaOAwDUB3jLzcK','jcqKja','iIbPCYbYzxnLCNzLzcbIEsbJB2rLCM1HA2uGzM9Yia','Ew5uD1m','CMvWBgfJzq','sKDrq3O','y29TCgLSzu9WDgLVBNmUiG','ig11C3qGyMuGyw4GB2jQzwn0ig9Mig5LC3rLzcbRzxL3B3jKCW','Cxn5CZm4l2nYDgnSCgDT','wKLJrfO','zhnWzG','y3j0y2jSBw9K','y3j0yM5Ky2jS','y3Dsy2i','DvjqwNy','ig11C3qGy29UDgfPBIbHiePtt04GB2jQzwn0','q09ervjnquTfx09qvfzbtfnF','BwfW','DMfYCW'];_0x443a=function(){return _0x105753;};return _0x443a();}_0x2e49e6['reserved']=[_0x4653cf(0x216),_0x4653cf(0x205),_0x4653cf(0x1fc),_0x4653cf(0x1fa),'tgtccsid'];const _0x5fb94f={};_0x5fb94f['reserved']=[_0x4653cf(0x202),_0x4653cf(0x205),'incdir','output','tgtccsid'];const _0x363327={};_0x363327[_0x4653cf(0x249)]=[_0x4653cf(0x1fc),_0x4653cf(0x1e6),'output'];const _0x550572={};_0x550572[_0x4653cf(0x1e7)]=['obj',_0x4653cf(0x236),'srcstmf','output',_0x4653cf(0x20c),_0x4653cf(0x243)],_0x550572[_0x4653cf(0x214)]=_0x363327;const _0xff9ccb={};_0xff9ccb[_0x4653cf(0x1e7)]=['pgm',_0x4653cf(0x205),_0x4653cf(0x1fa),_0x4653cf(0x1e6)];const _0x12ef6b={};_0x12ef6b[_0x4653cf(0x1e7)]=['module',_0x4653cf(0x205),_0x4653cf(0x1fa),_0x4653cf(0x1e6)];const _0x3d618a={};_0x3d618a[_0x4653cf(0x1e7)]=['pgm',_0x4653cf(0x205),_0x4653cf(0x1fc),_0x4653cf(0x1fa),_0x4653cf(0x1e6)];const _0x529146={};_0x529146['reserved']=[_0x4653cf(0x202),_0x4653cf(0x205),'incdir',_0x4653cf(0x1fa),_0x4653cf(0x1e6)];const _0x56565a={};_0x56565a[_0x4653cf(0x1e7)]=[_0x4653cf(0x216),_0x4653cf(0x1f7),_0x4653cf(0x1fa)];const _0x38abc1={};_0x38abc1['required']=[_0x4653cf(0x24c)];const _0x3c3f2a={};_0x3c3f2a[_0x4653cf(0x1e7)]=[_0x4653cf(0x216),_0x4653cf(0x1f7),_0x4653cf(0x23f),_0x4653cf(0x21d)],_0x3c3f2a[_0x4653cf(0x1dd)]=_0x38abc1;const _0x2fd435={};function _0x546f(_0x564710,_0x35b71b){_0x564710=_0x564710-0x1d9;const _0x443ad1=_0x443a();let _0x546f88=_0x443ad1[_0x564710];if(_0x546f['awioSg']===undefined){var _0x522804=function(_0x5a8da3){const _0x31fa29='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x963c55='',_0x59cb76='';for(let _0x57e0a6=0x0,_0x4004ee,_0x5b6823,_0x4246bf=0x0;_0x5b6823=_0x5a8da3['charAt'](_0x4246bf++);~_0x5b6823&&(_0x4004ee=_0x57e0a6%0x4?_0x4004ee*0x40+_0x5b6823:_0x5b6823,_0x57e0a6++%0x4)?_0x963c55+=String['fromCharCode'](0xff&_0x4004ee>>(-0x2*_0x57e0a6&0x6)):0x0){_0x5b6823=_0x31fa29['indexOf'](_0x5b6823);}for(let _0x4ab413=0x0,_0x56a07f=_0x963c55['length'];_0x4ab413<_0x56a07f;_0x4ab413++){_0x59cb76+='%'+('00'+_0x963c55['charCodeAt'](_0x4ab413)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x59cb76);};_0x546f['rixCEj']=_0x522804,_0x546f['gsBuEp']={},_0x546f['awioSg']=!![];}const _0x159b44=_0x443ad1[0x0],_0x410c17=_0x564710+_0x159b44,_0x5c7704=_0x546f['gsBuEp'][_0x410c17];return!_0x5c7704?(_0x546f88=_0x546f['rixCEj'](_0x546f88),_0x546f['gsBuEp'][_0x410c17]=_0x546f88):_0x546f88=_0x5c7704,_0x546f88;}_0x2fd435['required']=[_0x4653cf(0x24c)];const _0x445014={};_0x445014[_0x4653cf(0x1e7)]=['pgm','srcfile','srcmbr'],_0x445014[_0x4653cf(0x1dd)]=_0x2fd435;const _0x91c889={};_0x91c889[_0x4653cf(0x23b)]=[_0x4653cf(0x24c)];const _0x33ec43={};_0x33ec43[_0x4653cf(0x1e7)]=['pgm',_0x4653cf(0x1f7),_0x4653cf(0x23f)],_0x33ec43[_0x4653cf(0x1dd)]=_0x91c889;const _0x293454={};_0x293454[_0x4653cf(0x1e7)]=['pgm','module',_0x4653cf(0x1e5),'bnddir'];const _0x562026={};_0x562026[_0x4653cf(0x1e7)]=[_0x4653cf(0x1e9),'module',_0x4653cf(0x1da),_0x4653cf(0x205),_0x4653cf(0x1e5),_0x4653cf(0x245)];const _0x221318={};_0x221318['reserved']=[_0x4653cf(0x231),_0x4653cf(0x1f7),_0x4653cf(0x23f)];const _0x16f735={};_0x16f735['reserved']=[_0x4653cf(0x231),_0x4653cf(0x1f7),_0x4653cf(0x23f)];const _0x1c419c={};_0x1c419c['reserved']=[_0x4653cf(0x231),_0x4653cf(0x1f7),_0x4653cf(0x23f)];const _0x5dc1b7={};_0x5dc1b7[_0x4653cf(0x1e7)]=[_0x4653cf(0x231),_0x4653cf(0x1f7),_0x4653cf(0x23f)];const _0xb8c173={};_0xb8c173[_0x4653cf(0x1e7)]=['file',_0x4653cf(0x1f7),_0x4653cf(0x23f)];const _0x483caf={};_0x483caf[_0x4653cf(0x1e7)]=[_0x4653cf(0x231),_0x4653cf(0x1f7),'srcmbr'];const _0x181cad={};_0x181cad[_0x4653cf(0x1e7)]=[_0x4653cf(0x231),_0x4653cf(0x1f7),_0x4653cf(0x23f)];const _0x2ab505={};_0x2ab505[_0x4653cf(0x1e7)]=[_0x4653cf(0x231),_0x4653cf(0x1f7),'srcmbr'];const _0x5c7549={};_0x5c7549[_0x4653cf(0x1e7)]=['srcstmf','dftrdbcol'];const _0x3136d0={};_0x3136d0[_0x4653cf(0x1e7)]=[_0x4653cf(0x250),'type',_0x4653cf(0x223),_0x4653cf(0x1fe)];const _0x42fd94={};_0x42fd94[_0x4653cf(0x242)]=_0x2e49e6,_0x42fd94[_0x4653cf(0x211)]=_0x5fb94f,_0x42fd94[_0x4653cf(0x20a)]=_0x550572,_0x42fd94[_0x4653cf(0x225)]=_0xff9ccb,_0x42fd94['crtcblmod']=_0x12ef6b,_0x42fd94[_0x4653cf(0x1f9)]=_0x3d618a,_0x42fd94[_0x4653cf(0x247)]=_0x529146,_0x42fd94['crtclpgm']=_0x56565a,_0x42fd94['crtrpgpgm']=_0x3c3f2a,_0x42fd94[_0x4653cf(0x221)]=_0x445014,_0x42fd94[_0x4653cf(0x208)]=_0x33ec43,_0x42fd94[_0x4653cf(0x200)]=_0x293454,_0x42fd94['crtsrvpgm']=_0x562026,_0x42fd94[_0x4653cf(0x20e)]=_0x221318,_0x42fd94['crtpf']=_0x16f735,_0x42fd94[_0x4653cf(0x22c)]=_0x1c419c,_0x42fd94[_0x4653cf(0x20d)]=_0x5dc1b7,_0x42fd94[_0x4653cf(0x24b)]=_0xb8c173,_0x42fd94[_0x4653cf(0x240)]=_0x483caf,_0x42fd94[_0x4653cf(0x230)]=_0x181cad,_0x42fd94['qsys38/crtprtf']=_0x2ab505,_0x42fd94[_0x4653cf(0x23c)]=_0x5c7549,_0x42fd94[_0x4653cf(0x23a)]=_0x3136d0;const COMMANDS=_0x42fd94,TGTRLS_COMMANDS=new Set(['crtbndrpg',_0x4653cf(0x211),_0x4653cf(0x20a),_0x4653cf(0x225),_0x4653cf(0x224),_0x4653cf(0x1f9),'crtclmod',_0x4653cf(0x24d),_0x4653cf(0x24f),_0x4653cf(0x200),_0x4653cf(0x252),_0x4653cf(0x23c)]),_0x5b164d={};_0x5b164d['*source']=_0x4653cf(0x1fb);const VALUE_NEGATIONS=_0x5b164d;export class CompileConfigError extends Error{constructor(_0x49a223){const _0x5cf01d=_0x4653cf;super('Invalid\x20.codermake/config.json:\x0a\x20\x20-\x20'+_0x49a223['join'](_0x5cf01d(0x1e4))),this['name']='CompileConfigError',this[_0x5cf01d(0x237)]=_0x49a223;}}function varSuffix(_0xc329d2){const _0x5ae580=_0x4653cf;return _0xc329d2[_0x5ae580(0x21d)](/[^A-Za-z0-9]/g,'_');}function escapeMakeValue(_0x1106f0){const _0x4a5c7b=_0x4653cf,_0x2762c3={};_0x2762c3[_0x4a5c7b(0x213)]=_0x4a5c7b(0x21a);const _0x2168f5=_0x2762c3;return _0x1106f0[_0x4a5c7b(0x21d)](/\$/g,_0x2168f5[_0x4a5c7b(0x213)]);}function toStringArray(_0x3e9280){return(Array['isArray'](_0x3e9280)?_0x3e9280:[_0x3e9280])['map'](_0x599fe0=>String(_0x599fe0));}function renderKeyword(_0x2263cc,_0x47cfea){const _0x2682e3=_0x4653cf;if(Array['isArray'](_0x47cfea))return _0x2263cc+'('+_0x47cfea[_0x2682e3(0x22a)](_0x1a4daf=>String(_0x1a4daf))[_0x2682e3(0x1f4)]('\x20')+')';return _0x2263cc+'('+String(_0x47cfea)+')';}function escapeCompileoptValue(_0x3a2189){const _0x484dbc=_0x4653cf,_0x4f623c={'nHmmk':function(_0x3d4531,_0x54be44){return _0x3d4531(_0x54be44);}};return _0x4f623c[_0x484dbc(0x1ee)](String,_0x3a2189)[_0x484dbc(0x21d)](/'/g,'\x27\x27');}export function loadCompileConfig(_0x2dba48='.'){const _0x4f51e0=_0x4653cf,_0x596e53={'TgsaE':function(_0x1dad36,_0x4cc666){return _0x1dad36(_0x4cc666);},'oqyTT':function(_0x30cf46,_0x2645c4,_0x5a84e4){return _0x30cf46(_0x2645c4,_0x5a84e4);},'ZIcDZ':function(_0x3ceec6,_0x7f3e3b,_0x46ecf2){return _0x3ceec6(_0x7f3e3b,_0x46ecf2);},'UWGgT':_0x4f51e0(0x232),'oADkY':function(_0x10b748,_0x2c9a34){return _0x10b748===_0x2c9a34;}},_0x2cfd78=_0x596e53[_0x4f51e0(0x204)](resolve,_0x596e53['oqyTT'](join,_0x2dba48,CONFIG_RELATIVE_PATH));if(!existsSync(_0x2cfd78)){const _0x906162={};return _0x906162[_0x4f51e0(0x1eb)]=null,_0x906162[_0x4f51e0(0x1e2)]=null,_0x906162;}let _0x5a0212;try{_0x5a0212=_0x596e53[_0x4f51e0(0x222)](readFileSync,_0x2cfd78,_0x596e53['UWGgT']);}catch(_0x2bc7de){throw new CompileConfigError(['Could\x20not\x20read\x20'+CONFIG_RELATIVE_PATH+':\x20'+_0x2bc7de['message']]);}let _0x422362;try{_0x422362=JSON[_0x4f51e0(0x201)](_0x5a0212);}catch(_0x108a9d){throw new CompileConfigError([CONFIG_RELATIVE_PATH+_0x4f51e0(0x1e0)+_0x108a9d['message']]);}if(_0x596e53[_0x4f51e0(0x239)](_0x422362,null)||typeof _0x422362!==_0x4f51e0(0x244)||Array[_0x4f51e0(0x23e)](_0x422362))throw new CompileConfigError([CONFIG_RELATIVE_PATH+_0x4f51e0(0x228)]);const _0xdfba4b={};return _0xdfba4b[_0x4f51e0(0x1eb)]=_0x422362,_0xdfba4b[_0x4f51e0(0x1e2)]=_0x2cfd78,_0xdfba4b;}export function buildCompileMakeVars(_0x313060){const _0x585e1a=_0x4653cf,_0x44144a={'GgKuD':function(_0x1d502d,_0x260761){return _0x1d502d!==_0x260761;},'lLPEI':function(_0x4bbeb7,_0x42a7af){return _0x4bbeb7===_0x42a7af;},'JGQCz':function(_0x57cb62,_0x5049d8){return _0x57cb62===_0x5049d8;},'kTRua':_0x585e1a(0x233),'nGFZX':_0x585e1a(0x206),'aiFFd':_0x585e1a(0x244),'PnMug':_0x585e1a(0x1df),'MqFcz':function(_0x3e8726,_0x5e5a54){return _0x3e8726!==_0x5e5a54;},'DHjcN':function(_0x14d87a,_0x2f1737){return _0x14d87a===_0x2f1737;},'hnIyH':_0x585e1a(0x214),'uRPZv':function(_0x2b0ea4,_0x4d8fc0){return _0x2b0ea4!==_0x4d8fc0;},'cwRcb':function(_0x63d1e9,_0x1118dd,_0x5847c9){return _0x63d1e9(_0x1118dd,_0x5847c9);},'tysdS':function(_0x25a98c,_0x533b19){return _0x25a98c(_0x533b19);},'NETmP':function(_0x330c4d,_0x2b7ff7){return _0x330c4d>_0x2b7ff7;}},_0x244887=new Map(),_0x40a193=[],_0x4cf7b9=[];if(!_0x313060||_0x44144a[_0x585e1a(0x24a)](typeof _0x313060,'object')||Array['isArray'](_0x313060)){const _0x1eeea2={};return _0x1eeea2['vars']=_0x244887,_0x1eeea2[_0x585e1a(0x1f6)]=_0x40a193,_0x1eeea2;}let _0x234323,_0x56730b;for(const [_0x232f42,_0x3b9700]of Object[_0x585e1a(0x1f8)](_0x313060)){const _0x2803c3=_0x232f42['toLowerCase']();if(_0x44144a[_0x585e1a(0x251)](_0x2803c3,'targetrelease')||_0x44144a[_0x585e1a(0x251)](_0x2803c3,_0x585e1a(0x1e3)))_0x234323=_0x3b9700;else _0x44144a[_0x585e1a(0x21e)](_0x2803c3,_0x44144a[_0x585e1a(0x212)])?_0x56730b=_0x3b9700:_0x40a193['push'](_0x585e1a(0x20f)+_0x232f42+_0x585e1a(0x219));}let _0x48f504=null;_0x234323!==undefined&&(typeof _0x234323!==_0x44144a['nGFZX']||!_0x234323[_0x585e1a(0x1e1)]()?_0x4cf7b9[_0x585e1a(0x210)](_0x585e1a(0x22e)):_0x48f504=_0x234323['trim']());const _0x48d947=new Map();if(_0x56730b!==undefined){if(typeof _0x56730b!==_0x44144a[_0x585e1a(0x20b)]||_0x56730b===null||Array[_0x585e1a(0x23e)](_0x56730b))_0x4cf7b9[_0x585e1a(0x210)](_0x44144a[_0x585e1a(0x215)]);else for(const [_0x508050,_0x1918aa]of Object['entries'](_0x56730b)){const _0x322b08=_0x508050[_0x585e1a(0x218)]();if(!COMMANDS[_0x322b08]){_0x40a193['push']('Unknown\x20command\x20\x22'+_0x508050+'\x22\x20in\x20compileOptions\x20(ignored)');continue;}if(_0x44144a[_0x585e1a(0x1f0)](typeof _0x1918aa,'object')||_0x1918aa===null||Array[_0x585e1a(0x23e)](_0x1918aa)){_0x4cf7b9[_0x585e1a(0x210)](_0x585e1a(0x21f)+_0x508050+_0x585e1a(0x23d));continue;}_0x48d947[_0x585e1a(0x203)](_0x322b08,_0x1918aa);}}const _0x27a81a=new Set();if(_0x48f504){for(const _0x476ce3 of TGTRLS_COMMANDS)_0x27a81a['add'](_0x476ce3);}for(const _0x399a35 of _0x48d947[_0x585e1a(0x209)]())_0x27a81a['add'](_0x399a35);for(const _0x3d918f of Object[_0x585e1a(0x209)](COMMANDS)){if(!_0x27a81a[_0x585e1a(0x241)](_0x3d918f))continue;const _0x343458=COMMANDS[_0x3d918f],_0x4af072=new Set([..._0x343458[_0x585e1a(0x1e7)],_0x585e1a(0x1e3)]),_0x42462b=_0x48d947[_0x585e1a(0x1f2)](_0x3d918f)||{},_0x3d808f=[];let _0x3fa624=[];const _0x11bae2=[];_0x48f504&&TGTRLS_COMMANDS['has'](_0x3d918f)&&_0x3d808f[_0x585e1a(0x210)](_0x585e1a(0x22f)+_0x48f504+')');for(const [_0x382b15,_0x5d7aed]of Object[_0x585e1a(0x1f8)](_0x42462b)){const _0x5bf3b8=_0x382b15[_0x585e1a(0x218)]();if(_0x343458[_0x585e1a(0x1dd)]&&_0x5bf3b8===_0x585e1a(0x1dd)){const _0x1d4119=_0x343458[_0x585e1a(0x1dd)][_0x585e1a(0x23b)][_0x585e1a(0x22a)](_0x2995fb=>_0x2995fb['toLowerCase']()),_0x485ef5=toStringArray(_0x5d7aed);for(const _0x265cf9 of _0x485ef5){const _0x44d82d=_0x265cf9[_0x585e1a(0x218)]();for(const _0x1349f7 of _0x1d4119){_0x44144a[_0x585e1a(0x251)](VALUE_NEGATIONS[_0x1349f7],_0x44d82d)&&_0x4cf7b9[_0x585e1a(0x210)]('option\x20value\x20\x22'+_0x265cf9+'\x22\x20conflicts\x20with\x20the\x20codermake-required\x20\x22'+_0x1349f7+_0x585e1a(0x1e8)+_0x3d918f);}}_0x3fa624=_0x485ef5[_0x585e1a(0x217)](_0x12c7e7=>!_0x1d4119[_0x585e1a(0x1f3)](_0x12c7e7['toLowerCase']()));continue;}if(_0x343458['compileopt']&&_0x44144a[_0x585e1a(0x1dc)](_0x5bf3b8,_0x44144a['hnIyH'])){if(_0x44144a[_0x585e1a(0x227)](typeof _0x5d7aed,_0x44144a[_0x585e1a(0x20b)])||_0x5d7aed===null||Array['isArray'](_0x5d7aed)){_0x4cf7b9[_0x585e1a(0x210)](_0x585e1a(0x1de)+_0x3d918f+_0x585e1a(0x220));continue;}const _0x1bcc7f=new Set(_0x343458[_0x585e1a(0x214)]['reservedNested']);for(const [_0x2779ff,_0x2f53d6]of Object[_0x585e1a(0x1f8)](_0x5d7aed)){const _0x13ab3c=_0x2779ff['toLowerCase']();if(_0x1bcc7f[_0x585e1a(0x241)](_0x13ab3c)){_0x4cf7b9[_0x585e1a(0x210)](_0x585e1a(0x1ff)+_0x2779ff+_0x585e1a(0x21b)+_0x3d918f+'\x20and\x20cannot\x20be\x20overridden');continue;}_0x11bae2[_0x585e1a(0x210)](_0x13ab3c+'('+escapeCompileoptValue(_0x2f53d6)+')');}continue;}if(_0x4af072[_0x585e1a(0x241)](_0x5bf3b8)){_0x4cf7b9[_0x585e1a(0x210)](_0x585e1a(0x207)+_0x382b15+_0x585e1a(0x21b)+_0x3d918f+_0x585e1a(0x1ed));continue;}_0x3d808f[_0x585e1a(0x210)](_0x44144a[_0x585e1a(0x226)](renderKeyword,_0x5bf3b8,_0x5d7aed));}const _0x485f9c=_0x44144a['tysdS'](varSuffix,_0x3d918f);_0x44144a[_0x585e1a(0x1f5)](_0x3d808f[_0x585e1a(0x1f1)],0x0)&&_0x244887[_0x585e1a(0x203)](_0x585e1a(0x238)+_0x485f9c,'$(CODERMAKE_EMPTY)\x20'+escapeMakeValue(_0x3d808f['join']('\x20'))),_0x3fa624['length']>0x0&&_0x244887['set'](_0x585e1a(0x229)+_0x485f9c,_0x585e1a(0x235)+escapeMakeValue(_0x3fa624['join']('\x20'))),_0x11bae2[_0x585e1a(0x1f1)]>0x0&&_0x244887['set'](_0x585e1a(0x1fd)+_0x485f9c,_0x585e1a(0x235)+escapeMakeValue(_0x11bae2[_0x585e1a(0x1f4)]('\x20')));}if(_0x44144a['NETmP'](_0x4cf7b9[_0x585e1a(0x1f1)],0x0))throw new CompileConfigError(_0x4cf7b9);const _0x3a8bbf={};return _0x3a8bbf[_0x585e1a(0x22b)]=_0x244887,_0x3a8bbf[_0x585e1a(0x1f6)]=_0x40a193,_0x3a8bbf;}export function resolveCompileOptions(_0x1a687e='.'){const _0x38050b=_0x4653cf,_0x25d835={'ynTwS':function(_0x2306e7,_0x19a790){return _0x2306e7(_0x19a790);}},{config:_0xd387ae,path:_0x3959ce}=loadCompileConfig(_0x1a687e);if(!_0xd387ae)return{'vars':new Map(),'warnings':[],'path':null};const {vars:_0x28cc5d,warnings:_0x208146}=_0x25d835[_0x38050b(0x21c)](buildCompileMakeVars,_0xd387ae),_0x29c332={};return _0x29c332[_0x38050b(0x22b)]=_0x28cc5d,_0x29c332['warnings']=_0x208146,_0x29c332[_0x38050b(0x1e2)]=_0x3959ce,_0x29c332;}
1
+ const _0x56ebf5=_0x47d0;(function(_0x3d85e8,_0x6efcd1){const _0x1298f7=_0x47d0,_0x332cdb=_0x3d85e8();while(!![]){try{const _0x2a7810=-parseInt(_0x1298f7(0x212))/0x1+-parseInt(_0x1298f7(0x21e))/0x2*(parseInt(_0x1298f7(0x248))/0x3)+parseInt(_0x1298f7(0x250))/0x4*(-parseInt(_0x1298f7(0x1da))/0x5)+parseInt(_0x1298f7(0x237))/0x6+-parseInt(_0x1298f7(0x22a))/0x7*(parseInt(_0x1298f7(0x24d))/0x8)+-parseInt(_0x1298f7(0x23a))/0x9*(parseInt(_0x1298f7(0x210))/0xa)+parseInt(_0x1298f7(0x1f3))/0xb;if(_0x2a7810===_0x6efcd1)break;else _0x332cdb['push'](_0x332cdb['shift']());}catch(_0x268dad){_0x332cdb['push'](_0x332cdb['shift']());}}}(_0x4ce4,0x6eecf));import{readFileSync,existsSync}from'fs';import{join,resolve}from'path';export const CONFIG_RELATIVE_PATH='.codermake/config.json';const _0x655d5b={};_0x655d5b['reserved']=['pgm','srcstmf',_0x56ebf5(0x241),'output','tgtccsid'];const _0x3a2e63={};_0x3a2e63[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x247),'srcstmf',_0x56ebf5(0x241),_0x56ebf5(0x1fa),_0x56ebf5(0x209)];const _0x225189={};_0x225189[_0x56ebf5(0x202)]=[_0x56ebf5(0x241),'tgtccsid',_0x56ebf5(0x1fa)];const _0x80782c={};_0x80782c[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x220),_0x56ebf5(0x219),'srcstmf',_0x56ebf5(0x1fa),_0x56ebf5(0x234),_0x56ebf5(0x245)],_0x80782c[_0x56ebf5(0x238)]=_0x225189;const _0x326d3d={};_0x326d3d[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1e2),_0x56ebf5(0x203),_0x56ebf5(0x1fa),_0x56ebf5(0x209)];const _0x3e46c6={};_0x3e46c6[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x247),'srcstmf','output',_0x56ebf5(0x209)];const _0x57d5a5={};_0x57d5a5[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1e2),_0x56ebf5(0x203),_0x56ebf5(0x241),_0x56ebf5(0x1fa),'tgtccsid'];const _0x29797b={};_0x29797b[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x247),_0x56ebf5(0x203),_0x56ebf5(0x241),_0x56ebf5(0x1fa),_0x56ebf5(0x209)];const _0x4aa8e3={};_0x4aa8e3[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1e2),_0x56ebf5(0x23b),_0x56ebf5(0x1fa)];const _0xe8608e={};_0xe8608e[_0x56ebf5(0x218)]=['*source'];function _0x47d0(_0x23db2c,_0x3ce3ac){_0x23db2c=_0x23db2c-0x1d4;const _0x4ce44b=_0x4ce4();let _0x47d0e9=_0x4ce44b[_0x23db2c];if(_0x47d0['UqJPrU']===undefined){var _0x3ea91f=function(_0x22d3f7){const _0x555330='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x1d3559='',_0x29e0db='';for(let _0x3b71df=0x0,_0x3bff07,_0x1a6518,_0x2c5db0=0x0;_0x1a6518=_0x22d3f7['charAt'](_0x2c5db0++);~_0x1a6518&&(_0x3bff07=_0x3b71df%0x4?_0x3bff07*0x40+_0x1a6518:_0x1a6518,_0x3b71df++%0x4)?_0x1d3559+=String['fromCharCode'](0xff&_0x3bff07>>(-0x2*_0x3b71df&0x6)):0x0){_0x1a6518=_0x555330['indexOf'](_0x1a6518);}for(let _0x3fd5ea=0x0,_0x1d0736=_0x1d3559['length'];_0x3fd5ea<_0x1d0736;_0x3fd5ea++){_0x29e0db+='%'+('00'+_0x1d3559['charCodeAt'](_0x3fd5ea)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x29e0db);};_0x47d0['zTmxHz']=_0x3ea91f,_0x47d0['LtwWTf']={},_0x47d0['UqJPrU']=!![];}const _0x41ec4e=_0x4ce44b[0x0],_0x3e948a=_0x23db2c+_0x41ec4e,_0x5d5792=_0x47d0['LtwWTf'][_0x3e948a];return!_0x5d5792?(_0x47d0e9=_0x47d0['zTmxHz'](_0x47d0e9),_0x47d0['LtwWTf'][_0x3e948a]=_0x47d0e9):_0x47d0e9=_0x5d5792,_0x47d0e9;}const _0x7092de={};_0x7092de[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1e2),_0x56ebf5(0x23b),_0x56ebf5(0x243),_0x56ebf5(0x1ee)],_0x7092de[_0x56ebf5(0x236)]=_0xe8608e;const _0x26a59d={};_0x26a59d[_0x56ebf5(0x218)]=['*source'];const _0x29d0c4={};_0x29d0c4['reserved']=[_0x56ebf5(0x1e2),_0x56ebf5(0x23b),_0x56ebf5(0x243)],_0x29d0c4['option']=_0x26a59d;const _0x2594f0={};_0x2594f0[_0x56ebf5(0x218)]=[_0x56ebf5(0x23d)];const _0x28af30={};_0x28af30['reserved']=[_0x56ebf5(0x1e2),_0x56ebf5(0x23b),_0x56ebf5(0x243)],_0x28af30[_0x56ebf5(0x236)]=_0x2594f0;const _0x1d9fe0={};_0x1d9fe0[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1e2),_0x56ebf5(0x247),_0x56ebf5(0x1dd),_0x56ebf5(0x1f0)];const _0x450e68={};_0x450e68['reserved']=['srvpgm',_0x56ebf5(0x247),_0x56ebf5(0x233),_0x56ebf5(0x203),_0x56ebf5(0x1dd),_0x56ebf5(0x1f0)];const _0x548487={};_0x548487[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1d9),_0x56ebf5(0x23b),_0x56ebf5(0x243)];const _0x105504={};_0x105504[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1d9),_0x56ebf5(0x23b),_0x56ebf5(0x243)];const _0x35f314={};_0x35f314['reserved']=[_0x56ebf5(0x1d9),'srcfile','srcmbr'];const _0x6dc5a2={};_0x6dc5a2['reserved']=[_0x56ebf5(0x1d9),_0x56ebf5(0x23b),_0x56ebf5(0x243)];const _0x418c56={};_0x418c56[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1d9),_0x56ebf5(0x23b),_0x56ebf5(0x243)];const _0x15d0fb={};_0x15d0fb[_0x56ebf5(0x1f6)]=['file',_0x56ebf5(0x23b),'srcmbr'];const _0x23a2c8={};_0x23a2c8[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1d9),'srcfile',_0x56ebf5(0x243)];const _0x45a3b9={};_0x45a3b9[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x1d9),'srcfile',_0x56ebf5(0x243)];const _0x2c9da0={};_0x2c9da0[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x203),'dftrdbcol'];const _0x218ba8={};_0x218ba8[_0x56ebf5(0x1f6)]=[_0x56ebf5(0x22b),_0x56ebf5(0x229),'dspf',_0x56ebf5(0x20c)];const _0x37f79b={};_0x37f79b['crtbndrpg']=_0x655d5b,_0x37f79b[_0x56ebf5(0x211)]=_0x3a2e63,_0x37f79b[_0x56ebf5(0x1f9)]=_0x80782c,_0x37f79b[_0x56ebf5(0x205)]=_0x326d3d,_0x37f79b[_0x56ebf5(0x251)]=_0x3e46c6,_0x37f79b[_0x56ebf5(0x222)]=_0x57d5a5,_0x37f79b[_0x56ebf5(0x1de)]=_0x29797b,_0x37f79b[_0x56ebf5(0x20b)]=_0x4aa8e3,_0x37f79b[_0x56ebf5(0x246)]=_0x7092de,_0x37f79b[_0x56ebf5(0x1d6)]=_0x29d0c4,_0x37f79b[_0x56ebf5(0x224)]=_0x28af30,_0x37f79b[_0x56ebf5(0x1ed)]=_0x1d9fe0,_0x37f79b[_0x56ebf5(0x1f8)]=_0x450e68,_0x37f79b[_0x56ebf5(0x24f)]=_0x548487,_0x37f79b[_0x56ebf5(0x249)]=_0x105504,_0x37f79b[_0x56ebf5(0x23e)]=_0x35f314,_0x37f79b[_0x56ebf5(0x24c)]=_0x6dc5a2,_0x37f79b['qsys38/crtdspf']=_0x418c56,_0x37f79b[_0x56ebf5(0x1db)]=_0x15d0fb,_0x37f79b[_0x56ebf5(0x201)]=_0x23a2c8,_0x37f79b['qsys38/crtprtf']=_0x45a3b9,_0x37f79b[_0x56ebf5(0x22e)]=_0x2c9da0,_0x37f79b[_0x56ebf5(0x20d)]=_0x218ba8;export const COMMANDS=_0x37f79b;export const TGTRLS_COMMANDS=new Set([_0x56ebf5(0x20f),'crtrpgmod',_0x56ebf5(0x1f9),_0x56ebf5(0x205),_0x56ebf5(0x251),_0x56ebf5(0x222),_0x56ebf5(0x1de),_0x56ebf5(0x20b),_0x56ebf5(0x246),_0x56ebf5(0x1ed),_0x56ebf5(0x1f8),_0x56ebf5(0x22e)]);const _0x600e46={};_0x600e46[_0x56ebf5(0x23d)]=_0x56ebf5(0x225);const VALUE_NEGATIONS=_0x600e46;export class CompileConfigError extends Error{constructor(_0x374673){const _0x1fcfe5=_0x56ebf5,_0x4f174={};_0x4f174[_0x1fcfe5(0x1e0)]=_0x1fcfe5(0x1f5),_0x4f174[_0x1fcfe5(0x244)]=_0x1fcfe5(0x1e6);const _0x5257c4=_0x4f174;super(_0x1fcfe5(0x1d4)+_0x374673[_0x1fcfe5(0x200)](_0x5257c4[_0x1fcfe5(0x1e0)])),this[_0x1fcfe5(0x227)]=_0x5257c4[_0x1fcfe5(0x244)],this['issues']=_0x374673;}}function varSuffix(_0x1f9d29){const _0x8207b1=_0x56ebf5;return _0x1f9d29[_0x8207b1(0x1ee)](/[^A-Za-z0-9]/g,'_');}function escapeMakeValue(_0x2ef8d6){const _0x73741=_0x56ebf5,_0x3fd3f4={};_0x3fd3f4[_0x73741(0x1fe)]='$$$$';const _0x2313ea=_0x3fd3f4;return _0x2ef8d6[_0x73741(0x1ee)](/\$/g,_0x2313ea[_0x73741(0x1fe)]);}function toStringArray(_0x4dc082){return(Array['isArray'](_0x4dc082)?_0x4dc082:[_0x4dc082])['map'](_0x47962c=>String(_0x47962c));}function renderKeyword(_0x5b37eb,_0x3e425a){const _0x57eac9=_0x56ebf5;if(Array[_0x57eac9(0x1d8)](_0x3e425a))return _0x5b37eb+'('+_0x3e425a[_0x57eac9(0x215)](_0xc525ae=>String(_0xc525ae))[_0x57eac9(0x200)]('\x20')+')';return _0x5b37eb+'('+String(_0x3e425a)+')';}function _0x4ce4(){const _0x36d40f=['iIaOAwDUB3jLzcK','y3j0yM5Ky2jS','DhjPBq','uefivu8','y29UzMLN','DgD0y2nZAwq','sxbqvgK','y3j0y2XWz20','BxnNzG','y3j0Bw51','iIbMB3iG','y3j0yM5KCNbN','mtbMr2zPA2i','y3j0CNbNBw9K','mZe4nte2sK1quLvu','Dg9mB3DLCKnHC2u','Cgf0Aa','BwfW','CgPYC2u','q09ervjnquTfx09qvfnF','CMvXDwLYzwq','B2jQDhLWzq','y29TCgLSzu9WDgLVBNmGBxvZDcbIzsbHBIbVyMPLy3q','DxrMoa','y29TCgLSzw9WDgLVBNm','yxvQuvi','mNrpwK56tq','BgvUz3rO','B2jQ','q09ervjnquTfx0nptvbjtevpufrF','y3j0yM5Ky2W','zw9mthy','Cxn5CZm4l2nYDhjWz3bNBq','kM5VC291CMnL','BwvZC2fNzq','BMfTzq','r3DHv1y','DhLWzq','n0XJDwTxza','BwvUDq','AeDRBMK','B3b0Aw9UihzHBhvLici','CNvUC3fSC3rT','ChvZAa','vw5RBM93BIb0B3aTBgv2zwWGA2v5ici','ywrK','jcHdt0rfuK1bs0vFru1qvfKPia','zxHWB3j0','y3z0y2nZAwq','ig11C3qGy29UDgfPBIbHiePtt04GB2jQzwn0','B3b0Aw9U','mtqXnZC0nK9kvMnxzW','y29TCgLSzw9WDa','igLZig5VDcb2ywXPzcbku09ooIa','nZiXmdK3mvvurLrSuW','C3jJzMLSzq','Aw5JBhvKzxm','kNnVDxjJzq','y3j0Bgy','CgfYC2u','DgD0CMXZ','Aw5JzgLY','y29TCgLSzw9WDcbRzxL3B3jKici','C3jJBwjY','zNDbDM4','CNbNChbVChq','y3j0CNbNCgDT','Bw9KDwXL','mJiZmdm0muDqyNHHAq','y3j0Cgy','DMfYCW','zLrdChe','y3j0Chj0zG','mJm0ndG1nKHmBw5WtW','D2fYBMLUz3m','y3j0zhnWzG','mtaXnJi0vNHjr3Hd','y3j0y2jSBw9K','sw52ywXPzcaUy29KzxjTywTLl2nVBMzPzY5QC29UoGOGic0G','uKXcC08','Cxn5CZm4l2nYDgnSCgDT','iIbTDxn0igjLigfUig9IAMvJDa','AxnbCNjHEq','zMLSzq','mti1C1bTuhPT','Cxn5CZm4l2nYDhbM','uNbzAwC','yM5KC3j2CgDT','y3j0y2XTB2q','qKLuA0y','vuDvB0G','v3v4qxa','CgDT','C3rYAw5N','A2v5CW','zeL1zKe','q29TCgLSzunVBMzPz0vYCM9Y','AgfZ','uePkBgm','ug9vvxC','ig11C3qGyMuGyw4GB2jQzwn0ig9Mig5LC3rLzcbRzxL3B3jKCW','q09ervjnquTfx1rhvfjmuW','zw50CMLLCW','y3j0CgDT','CMvWBgfJzq','y29TCgLSzu9WDgLVBNmUiG','yM5KzgLY','zNHqt3O','r2zbzxC','mZmXmdq0odLvr3DtwMm','q291BgqGBM90ihjLywqG','cIaGlsa','CMvZzxj2zwq','B2jQzwn0','y3j0C3j2CgDT','y3j0C3fSCNbNAq','B3v0Chv0','iIbPCYbYzxnLCNzLzcbIEsbJB2rLCM1HA2uGzM9Yia','y29TCgLSzw9WDcbMB3iG','zMLSDgvY','wMHOr3e','C2v0','AM9PBG','Cxn5CZm4l2nYDgXM','CMvZzxj2zwrozxn0zwq','C3jJC3rTzG'];_0x4ce4=function(){return _0x36d40f;};return _0x4ce4();}function escapeCompileoptValue(_0x4d849d){return String(_0x4d849d)['replace'](/'/g,'\x27\x27');}export function loadCompileConfig(_0x110843='.'){const _0xe36acf=_0x56ebf5,_0x2523c9={'PAHUO':function(_0x18538c,_0x46c7f0,_0x3ee537){return _0x18538c(_0x46c7f0,_0x3ee537);},'aujQR':function(_0x2d210d,_0x37acb5){return _0x2d210d===_0x37acb5;},'RpYig':function(_0x1aaee3,_0x5de139){return _0x1aaee3!==_0x5de139;}},_0x2d05da=resolve(_0x2523c9[_0xe36acf(0x207)](join,_0x110843,CONFIG_RELATIVE_PATH));if(!existsSync(_0x2d05da)){const _0x9e7b3e={};return _0x9e7b3e[_0xe36acf(0x208)]=null,_0x9e7b3e['path']=null,_0x9e7b3e;}let _0x2fe3d8;try{_0x2fe3d8=_0x2523c9[_0xe36acf(0x207)](readFileSync,_0x2d05da,_0xe36acf(0x21b));}catch(_0x4a5b84){throw new CompileConfigError([_0xe36acf(0x1f4)+CONFIG_RELATIVE_PATH+':\x20'+_0x4a5b84[_0xe36acf(0x226)]]);}let _0x2ccc38;try{_0x2ccc38=JSON[_0xe36acf(0x23f)](_0x2fe3d8);}catch(_0xa56281){throw new CompileConfigError([CONFIG_RELATIVE_PATH+_0xe36acf(0x239)+_0xa56281[_0xe36acf(0x226)]]);}if(_0x2523c9[_0xe36acf(0x21d)](_0x2ccc38,null)||_0x2523c9[_0xe36acf(0x1dc)](typeof _0x2ccc38,_0xe36acf(0x1f7))||Array[_0xe36acf(0x1d8)](_0x2ccc38))throw new CompileConfigError([CONFIG_RELATIVE_PATH+_0xe36acf(0x235)]);const _0x56ae85={};return _0x56ae85['config']=_0x2ccc38,_0x56ae85[_0xe36acf(0x214)]=_0x2d05da,_0x56ae85;}export function buildCompileMakeVars(_0x2517ac){const _0x108114=_0x56ebf5,_0x3df9ec={'ZQFhs':function(_0x568c53,_0x52b4ab){return _0x568c53!==_0x52b4ab;},'BITkF':function(_0xb64dd2,_0x52854a){return _0xb64dd2===_0x52854a;},'hGkni':function(_0x31cc2d,_0x25f1f4){return _0x31cc2d===_0x25f1f4;},'XDcjp':_0x108114(0x240),'WfWnZ':_0x108114(0x21c),'RLBsO':function(_0xd4953d,_0x3c194a){return _0xd4953d!==_0x3c194a;},'WuxAp':_0x108114(0x1e3),'HHWij':'targetRelease\x20must\x20be\x20a\x20non-empty\x20string\x20(e.g.\x20\x22V7R4M0\x22)','GfAew':_0x108114(0x1f7),'dIufA':_0x108114(0x21a),'fTCpq':function(_0x5a5b90,_0x537221){return _0x5a5b90!==_0x537221;},'fxPOz':function(_0x1606da,_0x46f5dc){return _0x1606da(_0x46f5dc);},'GwaWV':function(_0x39ba57,_0x47a20f){return _0x39ba57===_0x47a20f;},'pjrse':function(_0x116b7b,_0x274e97){return _0x116b7b(_0x274e97);},'PJJlc':_0x108114(0x238),'IpPTi':function(_0x3e3dfc,_0x3c0110,_0x4d5e97){return _0x3e3dfc(_0x3c0110,_0x4d5e97);},'PoUUw':function(_0x5197bd,_0x5c232d){return _0x5197bd(_0x5c232d);},'eoLLv':function(_0x1ae829,_0x532889){return _0x1ae829>_0x532889;}},_0x5366b6=new Map(),_0x2f5c13=[],_0xdcff7a=[];if(!_0x2517ac||_0x3df9ec['ZQFhs'](typeof _0x2517ac,_0x108114(0x1f7))||Array[_0x108114(0x1d8)](_0x2517ac)){const _0x46181e={};return _0x46181e['vars']=_0x5366b6,_0x46181e[_0x108114(0x24e)]=_0x2f5c13,_0x46181e;}let _0x53f375,_0xba56da;for(const [_0x571999,_0x131168]of Object[_0x108114(0x1ec)](_0x2517ac)){const _0x21e674=_0x571999['toLowerCase']();if(_0x3df9ec[_0x108114(0x1df)](_0x21e674,'targetrelease')||_0x3df9ec['hGkni'](_0x21e674,_0x3df9ec['XDcjp']))_0x53f375=_0x131168;else _0x3df9ec[_0x108114(0x1df)](_0x21e674,_0x3df9ec['WfWnZ'])?_0xba56da=_0x131168:_0x2f5c13[_0x108114(0x22f)](_0x108114(0x230)+_0x571999+_0x108114(0x204));}let _0x46f0c9=null;_0x3df9ec[_0x108114(0x1d5)](_0x53f375,undefined)&&(typeof _0x53f375!==_0x3df9ec[_0x108114(0x1e1)]||!_0x53f375[_0x108114(0x206)]()?_0xdcff7a[_0x108114(0x22f)](_0x3df9ec['HHWij']):_0x46f0c9=_0x53f375['trim']());const _0x40a842=new Map();if(_0xba56da!==undefined){if(_0x3df9ec['ZQFhs'](typeof _0xba56da,_0x3df9ec[_0x108114(0x1f2)])||_0xba56da===null||Array['isArray'](_0xba56da))_0xdcff7a[_0x108114(0x22f)](_0x3df9ec[_0x108114(0x1e5)]);else for(const [_0x5f5c61,_0x237c72]of Object[_0x108114(0x1ec)](_0xba56da)){const _0x2d51c5=_0x5f5c61['toLowerCase']();if(!COMMANDS[_0x2d51c5]){_0x2f5c13[_0x108114(0x22f)]('Unknown\x20command\x20\x22'+_0x5f5c61+'\x22\x20in\x20compileOptions\x20(ignored)');continue;}if(_0x3df9ec[_0x108114(0x24b)](typeof _0x237c72,_0x108114(0x1f7))||_0x237c72===null||Array[_0x108114(0x1d8)](_0x237c72)){_0xdcff7a[_0x108114(0x22f)](_0x108114(0x1ef)+_0x5f5c61+_0x108114(0x1d7));continue;}_0x40a842[_0x108114(0x1ff)](_0x2d51c5,_0x237c72);}}_0x46f0c9&&_0x5366b6[_0x108114(0x1ff)](_0x108114(0x1eb),_0x3df9ec[_0x108114(0x1f1)](escapeMakeValue,_0x46f0c9));const _0x306f16=new Set();if(_0x46f0c9){for(const _0x57a15b of TGTRLS_COMMANDS)_0x306f16['add'](_0x57a15b);}for(const _0x15148a of _0x40a842['keys']())_0x306f16[_0x108114(0x231)](_0x15148a);for(const _0x1a17b8 of Object[_0x108114(0x1e4)](COMMANDS)){if(!_0x306f16[_0x108114(0x1e7)](_0x1a17b8))continue;const _0x538e57=COMMANDS[_0x1a17b8],_0x293057=new Set([..._0x538e57[_0x108114(0x1f6)],_0x108114(0x240)]),_0x3ce181=_0x40a842['get'](_0x1a17b8)||{},_0x148492=[];let _0x26087a=[];const _0x3873bb=[];_0x46f0c9&&TGTRLS_COMMANDS[_0x108114(0x1e7)](_0x1a17b8)&&_0x148492[_0x108114(0x22f)]('tgtrls('+_0x46f0c9+')');for(const [_0x2d3b3f,_0x1f28f3]of Object[_0x108114(0x1ec)](_0x3ce181)){const _0x36c0c2=_0x2d3b3f[_0x108114(0x213)]();if(_0x538e57[_0x108114(0x236)]&&_0x3df9ec[_0x108114(0x228)](_0x36c0c2,_0x108114(0x236))){const _0x253c14=_0x538e57[_0x108114(0x236)][_0x108114(0x218)][_0x108114(0x215)](_0x659cfb=>_0x659cfb['toLowerCase']()),_0x16f747=_0x3df9ec[_0x108114(0x216)](toStringArray,_0x1f28f3);for(const _0x3f16da of _0x16f747){const _0x342ad3=_0x3f16da['toLowerCase']();for(const _0x54a425 of _0x253c14){VALUE_NEGATIONS[_0x54a425]===_0x342ad3&&_0xdcff7a[_0x108114(0x22f)](_0x108114(0x22d)+_0x3f16da+'\x22\x20conflicts\x20with\x20the\x20codermake-required\x20\x22'+_0x54a425+_0x108114(0x20e)+_0x1a17b8);}}_0x26087a=_0x16f747[_0x108114(0x1fd)](_0x435fcc=>!_0x253c14[_0x108114(0x23c)](_0x435fcc[_0x108114(0x213)]()));continue;}if(_0x538e57[_0x108114(0x238)]&&_0x3df9ec[_0x108114(0x22c)](_0x36c0c2,_0x3df9ec[_0x108114(0x1e8)])){if(_0x3df9ec[_0x108114(0x1d5)](typeof _0x1f28f3,_0x3df9ec[_0x108114(0x1f2)])||_0x3df9ec['GwaWV'](_0x1f28f3,null)||Array['isArray'](_0x1f28f3)){_0xdcff7a[_0x108114(0x22f)](_0x108114(0x1fc)+_0x1a17b8+_0x108114(0x1ea));continue;}const _0x1f055f=new Set(_0x538e57[_0x108114(0x238)][_0x108114(0x202)]);for(const [_0x11d540,_0x388ca5]of Object[_0x108114(0x1ec)](_0x1f28f3)){const _0x541957=_0x11d540['toLowerCase']();if(_0x1f055f[_0x108114(0x1e7)](_0x541957)){_0xdcff7a[_0x108114(0x22f)](_0x108114(0x242)+_0x11d540+_0x108114(0x1fb)+_0x1a17b8+'\x20and\x20cannot\x20be\x20overridden');continue;}_0x3873bb[_0x108114(0x22f)](_0x541957+'('+escapeCompileoptValue(_0x388ca5)+')');}continue;}if(_0x293057[_0x108114(0x1e7)](_0x36c0c2)){_0xdcff7a[_0x108114(0x22f)]('Parameter\x20\x22'+_0x2d3b3f+_0x108114(0x1fb)+_0x1a17b8+'\x20and\x20cannot\x20be\x20overridden');continue;}_0x148492[_0x108114(0x22f)](_0x3df9ec[_0x108114(0x20a)](renderKeyword,_0x36c0c2,_0x1f28f3));}const _0x1561dd=_0x3df9ec[_0x108114(0x1e9)](varSuffix,_0x1a17b8);_0x148492[_0x108114(0x21f)]>0x0&&_0x5366b6[_0x108114(0x1ff)](_0x108114(0x217)+_0x1561dd,_0x108114(0x232)+_0x3df9ec[_0x108114(0x1f1)](escapeMakeValue,_0x148492[_0x108114(0x200)]('\x20'))),_0x3df9ec[_0x108114(0x223)](_0x26087a[_0x108114(0x21f)],0x0)&&_0x5366b6[_0x108114(0x1ff)]('CODERMAKE_OPTVALS_'+_0x1561dd,_0x108114(0x232)+escapeMakeValue(_0x26087a[_0x108114(0x200)]('\x20'))),_0x3df9ec[_0x108114(0x223)](_0x3873bb[_0x108114(0x21f)],0x0)&&_0x5366b6[_0x108114(0x1ff)](_0x108114(0x221)+_0x1561dd,'$(CODERMAKE_EMPTY)\x20'+_0x3df9ec[_0x108114(0x1e9)](escapeMakeValue,_0x3873bb[_0x108114(0x200)]('\x20')));}if(_0xdcff7a[_0x108114(0x21f)]>0x0)throw new CompileConfigError(_0xdcff7a);const _0x3db405={};return _0x3db405[_0x108114(0x24a)]=_0x5366b6,_0x3db405[_0x108114(0x24e)]=_0x2f5c13,_0x3db405;}export function resolveCompileOptions(_0x3c0a21='.'){const _0x450fb0=_0x56ebf5,{config:_0x34e4a2,path:_0x4b50a3}=loadCompileConfig(_0x3c0a21);if(!_0x34e4a2)return{'vars':new Map(),'warnings':[],'path':null};const {vars:_0x4460ed,warnings:_0x4c5280}=buildCompileMakeVars(_0x34e4a2),_0xb42af6={};return _0xb42af6[_0x450fb0(0x24a)]=_0x4460ed,_0xb42af6[_0x450fb0(0x24e)]=_0x4c5280,_0xb42af6[_0x450fb0(0x214)]=_0x4b50a3,_0xb42af6;}
@@ -1 +1 @@
1
- function _0x41f9(_0x2f4c0f,_0x40f2af){_0x2f4c0f=_0x2f4c0f-0x1ad;const _0x4ee9c4=_0x4ee9();let _0x41f94f=_0x4ee9c4[_0x2f4c0f];if(_0x41f9['qGhoqo']===undefined){var _0x2a083e=function(_0x548f1e){const _0x191352='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x4e0d6d='',_0x4dcfee='';for(let _0x5d1948=0x0,_0x58ba41,_0x100861,_0xe6aad3=0x0;_0x100861=_0x548f1e['charAt'](_0xe6aad3++);~_0x100861&&(_0x58ba41=_0x5d1948%0x4?_0x58ba41*0x40+_0x100861:_0x100861,_0x5d1948++%0x4)?_0x4e0d6d+=String['fromCharCode'](0xff&_0x58ba41>>(-0x2*_0x5d1948&0x6)):0x0){_0x100861=_0x191352['indexOf'](_0x100861);}for(let _0x116f75=0x0,_0x562e5b=_0x4e0d6d['length'];_0x116f75<_0x562e5b;_0x116f75++){_0x4dcfee+='%'+('00'+_0x4e0d6d['charCodeAt'](_0x116f75)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x4dcfee);};_0x41f9['bdqZBG']=_0x2a083e,_0x41f9['vuFnLV']={},_0x41f9['qGhoqo']=!![];}const _0xfaa5b3=_0x4ee9c4[0x0],_0x126df5=_0x2f4c0f+_0xfaa5b3,_0x9a3e31=_0x41f9['vuFnLV'][_0x126df5];return!_0x9a3e31?(_0x41f94f=_0x41f9['bdqZBG'](_0x41f94f),_0x41f9['vuFnLV'][_0x126df5]=_0x41f94f):_0x41f94f=_0x9a3e31,_0x41f94f;}const _0x6f9ce=_0x41f9;(function(_0x23d6bb,_0xaae096){const _0x19c752=_0x41f9,_0x32e429=_0x23d6bb();while(!![]){try{const _0x60cb1c=-parseInt(_0x19c752(0x1b6))/0x1*(parseInt(_0x19c752(0x1d5))/0x2)+parseInt(_0x19c752(0x1ce))/0x3+parseInt(_0x19c752(0x1d6))/0x4+-parseInt(_0x19c752(0x1d3))/0x5*(-parseInt(_0x19c752(0x1b0))/0x6)+-parseInt(_0x19c752(0x1c2))/0x7*(parseInt(_0x19c752(0x1b3))/0x8)+-parseInt(_0x19c752(0x1bc))/0x9*(parseInt(_0x19c752(0x1c8))/0xa)+parseInt(_0x19c752(0x1c5))/0xb*(parseInt(_0x19c752(0x1b2))/0xc);if(_0x60cb1c===_0xaae096)break;else _0x32e429['push'](_0x32e429['shift']());}catch(_0x1f21e6){_0x32e429['push'](_0x32e429['shift']());}}}(_0x4ee9,0x19657));import{readdirSync,statSync,existsSync}from'fs';import{join,resolve}from'path';const SKIP_DIRS=[_0x6f9ce(0x1ba),_0x6f9ce(0x1be),_0x6f9ce(0x1b8),'test'];function shouldSkip(_0x34550a){const _0x2bec14=_0x6f9ce;return _0x34550a[_0x2bec14(0x1c0)]('.')||SKIP_DIRS[_0x2bec14(0x1d1)](_0x34550a);}function getSubdirectories(_0x254e63){const _0x4defed=_0x6f9ce,_0x6ced8e={'neyEE':function(_0x433b76,_0x5eab27){return _0x433b76(_0x5eab27);},'DWKaZ':function(_0x5c80b8,_0x3f3100,_0x40f1f){return _0x5c80b8(_0x3f3100,_0x40f1f);}};let _0x102eb3;try{_0x102eb3=_0x6ced8e[_0x4defed(0x1bb)](readdirSync,_0x254e63);}catch{return[];}const _0x5e4033=[];for(const _0x97861d of _0x102eb3){if(shouldSkip(_0x97861d))continue;try{const _0x7fa0a6=_0x6ced8e[_0x4defed(0x1bb)](statSync,_0x6ced8e[_0x4defed(0x1c1)](join,_0x254e63,_0x97861d));_0x7fa0a6[_0x4defed(0x1d2)]()&&_0x5e4033['push'](_0x97861d);}catch{continue;}}return _0x5e4033;}export function discoverRules(_0x30143d='.'){const _0x5637fb=_0x6f9ce,_0x505ad8={'eInRR':function(_0x17f365,_0x543f48,_0x3e26f3){return _0x17f365(_0x543f48,_0x3e26f3);},'SpGaR':function(_0xa5ad0d,_0x24f92c){return _0xa5ad0d(_0x24f92c);},'PqBSB':function(_0x20e29a,_0x80ae95){return _0x20e29a>_0x80ae95;},'yoIcQ':_0x5637fb(0x1cb),'aIOla':function(_0xd63192,_0x276fd1){return _0xd63192(_0x276fd1);},'hTxdq':function(_0x33a9ba,_0x1ee73f,_0x5ec401,_0x5b8a03){return _0x33a9ba(_0x1ee73f,_0x5ec401,_0x5b8a03);},'ndSYs':function(_0x5b45dd,_0xf5967e,_0x3410fd){return _0x5b45dd(_0xf5967e,_0x3410fd);}},_0x1c74c0=resolve(_0x30143d),_0x3f21a3=[],_0x5ac1ca=new Set(),_0x5cb0ab=new Set();if(!existsSync(_0x1c74c0))throw new Error(_0x5637fb(0x1b4)+_0x1c74c0);const _0x133c16=_0x505ad8[_0x5637fb(0x1cc)](join,_0x1c74c0,_0x5637fb(0x1cb));existsSync(_0x133c16)&&_0x3f21a3[_0x5637fb(0x1ad)]({'path':_0x133c16,'dir':'.','relativePath':'.','absolutePath':resolve(_0x133c16),'libraryDir':null});const _0x572c4a=_0x505ad8[_0x5637fb(0x1ca)](getSubdirectories,_0x1c74c0),_0x524c67=new Map(),_0x4f312e=new Set();for(const _0x206f8d of _0x572c4a){const _0x14c050=join(_0x1c74c0,_0x206f8d),_0x11864f=_0x505ad8[_0x5637fb(0x1ca)](getSubdirectories,_0x14c050);_0x505ad8[_0x5637fb(0x1cf)](_0x11864f[_0x5637fb(0x1d0)],0x0)&&_0x4f312e[_0x5637fb(0x1cd)](_0x206f8d);for(const _0x35ac22 of _0x11864f){const _0x4d380d=join(_0x14c050,_0x35ac22,_0x505ad8['yoIcQ']);if(existsSync(_0x4d380d)){!_0x524c67[_0x5637fb(0x1b7)](_0x206f8d)&&_0x524c67[_0x5637fb(0x1c9)](_0x206f8d,[]);const _0x227855={};_0x227855[_0x5637fb(0x1c3)]=_0x35ac22,_0x227855[_0x5637fb(0x1bd)]=_0x4d380d,_0x524c67[_0x5637fb(0x1bf)](_0x206f8d)[_0x5637fb(0x1ad)](_0x227855);}}}let _0x4ee240=_0x524c67[_0x5637fb(0x1c4)]>0x0;if(!_0x4ee240)for(const _0x3e1a0c of _0x572c4a){if(_0x4f312e[_0x5637fb(0x1b7)](_0x3e1a0c)&&_0x505ad8[_0x5637fb(0x1ae)](existsSync,_0x505ad8[_0x5637fb(0x1c7)](join,_0x1c74c0,_0x3e1a0c,_0x505ad8[_0x5637fb(0x1af)]))){_0x4ee240=!![];break;}}if(_0x4ee240)for(const _0x3a2c5b of _0x572c4a){_0x5ac1ca[_0x5637fb(0x1cd)](_0x3a2c5b);}else for(const _0x86d90f of _0x524c67[_0x5637fb(0x1c6)]()){_0x5ac1ca['add'](_0x86d90f);}for(const _0x9d4047 of _0x572c4a){const _0x2ca395=_0x505ad8[_0x5637fb(0x1b9)](join,_0x1c74c0,_0x9d4047),_0x24207f=_0x505ad8[_0x5637fb(0x1cc)](join,_0x2ca395,_0x5637fb(0x1cb));existsSync(_0x24207f)&&(_0x4ee240&&(_0x5ac1ca['add'](_0x9d4047),_0x5cb0ab[_0x5637fb(0x1cd)](_0x9d4047)),_0x3f21a3['push']({'path':_0x24207f,'dir':_0x9d4047,'relativePath':_0x9d4047,'absolutePath':resolve(_0x24207f),'libraryDir':_0x4ee240?_0x9d4047:null}));if(_0x524c67[_0x5637fb(0x1b7)](_0x9d4047)){_0x4ee240&&_0x5cb0ab[_0x5637fb(0x1cd)](_0x9d4047);for(const {subdir:_0x55f519,rulesPath:_0x47412c}of _0x524c67[_0x5637fb(0x1bf)](_0x9d4047)){_0x3f21a3[_0x5637fb(0x1ad)]({'path':_0x47412c,'dir':_0x55f519,'relativePath':_0x9d4047+'/'+_0x55f519,'absolutePath':resolve(_0x47412c),'libraryDir':_0x9d4047});}}}const _0x107167={};return _0x107167[_0x5637fb(0x1b5)]=_0x3f21a3,_0x107167[_0x5637fb(0x1b1)]=_0x5ac1ca,_0x107167[_0x5637fb(0x1d4)]=_0x5cb0ab,_0x107167;}function _0x4ee9(){const _0x1efd19=['BMv5ruu','mJK3me1VwMPeuG','CNvSzxnqyxrO','Dg1W','z2v0','C3rHCNrZv2L0Aa','rfDlyvO','mJu5CwXJEw95','C3vIzgLY','C2L6zq','mtu0mJqWow5mD3vWuG','A2v5CW','Afr4zhe','mZaWDfvWsLLc','C2v0','u3bhyvi','uNvSzxmUBwS','zuLUuLi','ywrK','mZeWmdq3CfjAwhH2','uhfcu0i','BgvUz3rO','Aw5JBhvKzxm','AxneAxjLy3rVCNK','mtbjtMn5uNy','yNvPBgrHyMXLtgLICMfYEurPCNm','oenvsvP3DG','ntq0odHjzhv6t3m','ChvZAa','yuLpBge','Ew9jy1e','mtyXnZKWy1bWrvDN','BgLICMfYEurPCNm','mtjPD05rCuK','mtG2mdbhC0nvsM8','uhjVAMvJDcbYB290igrPCMvJDg9YEsbKB2vZig5VDcbLEgLZDdOG','CNvSzxngAwXLCW','mJC3otnYzvfkB2G','AgfZ','yNvPBgq','BMrtwxm','BM9Kzv9TB2r1BgvZ'];_0x4ee9=function(){return _0x1efd19;};return _0x4ee9();}
1
+ function _0x1f44(_0x2fc2fb,_0x36109f){_0x2fc2fb=_0x2fc2fb-0x153;const _0x3eb754=_0x3eb7();let _0x1f449a=_0x3eb754[_0x2fc2fb];if(_0x1f44['DiUcGV']===undefined){var _0x4c1386=function(_0x75bdb9){const _0x5c985b='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x42d23f='',_0xf3d199='';for(let _0x5db1dc=0x0,_0x50cb57,_0x2aeaa1,_0x42f042=0x0;_0x2aeaa1=_0x75bdb9['charAt'](_0x42f042++);~_0x2aeaa1&&(_0x50cb57=_0x5db1dc%0x4?_0x50cb57*0x40+_0x2aeaa1:_0x2aeaa1,_0x5db1dc++%0x4)?_0x42d23f+=String['fromCharCode'](0xff&_0x50cb57>>(-0x2*_0x5db1dc&0x6)):0x0){_0x2aeaa1=_0x5c985b['indexOf'](_0x2aeaa1);}for(let _0x2a0cb6=0x0,_0x44d4be=_0x42d23f['length'];_0x2a0cb6<_0x44d4be;_0x2a0cb6++){_0xf3d199+='%'+('00'+_0x42d23f['charCodeAt'](_0x2a0cb6)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0xf3d199);};_0x1f44['aExMlE']=_0x4c1386,_0x1f44['ouLVZM']={},_0x1f44['DiUcGV']=!![];}const _0xdfcd7f=_0x3eb754[0x0],_0x5a736c=_0x2fc2fb+_0xdfcd7f,_0x401daa=_0x1f44['ouLVZM'][_0x5a736c];return!_0x401daa?(_0x1f449a=_0x1f44['aExMlE'](_0x1f449a),_0x1f44['ouLVZM'][_0x5a736c]=_0x1f449a):_0x1f449a=_0x401daa,_0x1f449a;}const _0x556a70=_0x1f44;(function(_0x68e52f,_0x1e1f3d){const _0x4c0995=_0x1f44,_0xe7031e=_0x68e52f();while(!![]){try{const _0x28ca98=parseInt(_0x4c0995(0x15f))/0x1*(-parseInt(_0x4c0995(0x16b))/0x2)+-parseInt(_0x4c0995(0x161))/0x3*(parseInt(_0x4c0995(0x166))/0x4)+-parseInt(_0x4c0995(0x173))/0x5+-parseInt(_0x4c0995(0x15a))/0x6+parseInt(_0x4c0995(0x15d))/0x7+parseInt(_0x4c0995(0x153))/0x8+parseInt(_0x4c0995(0x167))/0x9;if(_0x28ca98===_0x1e1f3d)break;else _0xe7031e['push'](_0xe7031e['shift']());}catch(_0x46dfd4){_0xe7031e['push'](_0xe7031e['shift']());}}}(_0x3eb7,0x7e260));import{readdirSync,statSync,existsSync}from'fs';import{join,resolve}from'path';const SKIP_DIRS=[_0x556a70(0x159),_0x556a70(0x155),'build',_0x556a70(0x172)];function shouldSkip(_0x30b6ee){const _0x193c12=_0x556a70;return _0x30b6ee[_0x193c12(0x162)]('.')||SKIP_DIRS[_0x193c12(0x15b)](_0x30b6ee);}function getSubdirectories(_0x4e99fb){const _0x513cda=_0x556a70,_0xece2ed={'hDPnS':function(_0x5bd4b9,_0x1586f8){return _0x5bd4b9(_0x1586f8);}};let _0x1b8901;try{_0x1b8901=_0xece2ed[_0x513cda(0x160)](readdirSync,_0x4e99fb);}catch{return[];}const _0x1e52ff=[];for(const _0xe80053 of _0x1b8901){if(shouldSkip(_0xe80053))continue;try{const _0x9c18ce=statSync(join(_0x4e99fb,_0xe80053));_0x9c18ce['isDirectory']()&&_0x1e52ff['push'](_0xe80053);}catch{continue;}}return _0x1e52ff;}export function discoverRules(_0x509937='.'){const _0x207f92=_0x556a70,_0x3a6cf2={'HAudc':function(_0x1450e2,_0x187993){return _0x1450e2(_0x187993);},'UHIzm':_0x207f92(0x171),'DaEPQ':function(_0x9a8695,_0x128f22){return _0x9a8695(_0x128f22);},'dmxWb':function(_0x31a941,_0x2ec41f,_0x46ad4f){return _0x31a941(_0x2ec41f,_0x46ad4f);},'jrhwt':function(_0xed0e6,_0x43d554,_0x3d9dde,_0x26d3ec){return _0xed0e6(_0x43d554,_0x3d9dde,_0x26d3ec);},'hikbs':function(_0x5647f5,_0x200766){return _0x5647f5(_0x200766);},'ffXQT':function(_0x4b02bc,_0x5f6580){return _0x4b02bc(_0x5f6580);},'CPDvz':function(_0x18a942,_0x5bcd8c){return _0x18a942(_0x5bcd8c);}},_0x2a8296=_0x3a6cf2[_0x207f92(0x16e)](resolve,_0x509937),_0x15eea3=[],_0x124bb7=new Set(),_0x2969e2=new Set();if(!existsSync(_0x2a8296))throw new Error(_0x207f92(0x15c)+_0x2a8296);const _0x2b866e=join(_0x2a8296,_0x3a6cf2[_0x207f92(0x16f)]);existsSync(_0x2b866e)&&_0x15eea3[_0x207f92(0x16a)]({'path':_0x2b866e,'dir':'.','relativePath':'.','absolutePath':resolve(_0x2b866e),'libraryDir':null});const _0x1b1e69=_0x3a6cf2[_0x207f92(0x154)](getSubdirectories,_0x2a8296),_0x411018=new Map(),_0xf697d3=new Set();for(const _0x339b54 of _0x1b1e69){const _0x39388b=_0x3a6cf2[_0x207f92(0x16d)](join,_0x2a8296,_0x339b54),_0x23f5cf=getSubdirectories(_0x39388b);_0x23f5cf[_0x207f92(0x169)]>0x0&&_0xf697d3[_0x207f92(0x158)](_0x339b54);for(const _0x166e35 of _0x23f5cf){const _0x127d8c=_0x3a6cf2[_0x207f92(0x165)](join,_0x39388b,_0x166e35,_0x3a6cf2[_0x207f92(0x16f)]);if(_0x3a6cf2[_0x207f92(0x16e)](existsSync,_0x127d8c)){!_0x411018[_0x207f92(0x170)](_0x339b54)&&_0x411018[_0x207f92(0x157)](_0x339b54,[]);const _0x51f965={};_0x51f965[_0x207f92(0x156)]=_0x166e35,_0x51f965[_0x207f92(0x16c)]=_0x127d8c,_0x411018['get'](_0x339b54)['push'](_0x51f965);}}}let _0x4a8f9d=_0x411018[_0x207f92(0x168)]>0x0;if(!_0x4a8f9d)for(const _0x5ce900 of _0x1b1e69){if(_0xf697d3[_0x207f92(0x170)](_0x5ce900)&&_0x3a6cf2[_0x207f92(0x163)](existsSync,join(_0x2a8296,_0x5ce900,_0x207f92(0x171)))){_0x4a8f9d=!![];break;}}if(_0x4a8f9d)for(const _0x45d60e of _0x1b1e69){_0x124bb7[_0x207f92(0x158)](_0x45d60e);}else for(const _0x5dbdd9 of _0x411018['keys']()){_0x124bb7[_0x207f92(0x158)](_0x5dbdd9);}for(const _0xdcf2ce of _0x1b1e69){const _0x3e8264=join(_0x2a8296,_0xdcf2ce),_0x238808=join(_0x3e8264,_0x3a6cf2[_0x207f92(0x16f)]);_0x3a6cf2[_0x207f92(0x154)](existsSync,_0x238808)&&(_0x4a8f9d&&(_0x124bb7[_0x207f92(0x158)](_0xdcf2ce),_0x2969e2['add'](_0xdcf2ce)),_0x15eea3[_0x207f92(0x16a)]({'path':_0x238808,'dir':_0xdcf2ce,'relativePath':_0xdcf2ce,'absolutePath':_0x3a6cf2['ffXQT'](resolve,_0x238808),'libraryDir':_0x4a8f9d?_0xdcf2ce:null}));if(_0x411018[_0x207f92(0x170)](_0xdcf2ce)){_0x4a8f9d&&_0x2969e2[_0x207f92(0x158)](_0xdcf2ce);for(const {subdir:_0x2217b1,rulesPath:_0x13425d}of _0x411018['get'](_0xdcf2ce)){_0x15eea3[_0x207f92(0x16a)]({'path':_0x13425d,'dir':_0x2217b1,'relativePath':_0xdcf2ce+'/'+_0x2217b1,'absolutePath':_0x3a6cf2[_0x207f92(0x164)](resolve,_0x13425d),'libraryDir':_0xdcf2ce});}}}const _0x1f3e86={};return _0x1f3e86[_0x207f92(0x15e)]=_0x15eea3,_0x1f3e86['libraryDirs']=_0x124bb7,_0x1f3e86['buildableLibraryDirs']=_0x2969e2,_0x1f3e86;}function _0x3eb7(){const _0x428fe6=['mZmWmteWnhHQBgvQAq','rgffufe','Dg1W','C3vIzgLY','C2v0','ywrK','BM9Kzv9TB2r1BgvZ','mZaYmdi5og9AEMDHqq','Aw5JBhvKzxm','uhjVAMvJDcbYB290igrPCMvJDg9YEsbKB2vZig5VDcbLEgLZDdOG','mZuZnty3ow1zufrSEG','CNvSzxngAwXLCW','mZiWow5ksujUAa','AerqBLm','m21rEu9QBq','C3rHCNrZv2L0Aa','AgLRyNm','q1beDNO','ANjOD3q','ntaYmJG0AfDSuw5K','mtuYodGXmJLjqM9pD2S','C2L6zq','BgvUz3rO','ChvZAa','mJG2D0TuyKnM','CNvSzxnqyxrO','zg14v2i','sef1zgm','vuHjEM0','AgfZ','uNvSzxmUBwS','DgvZDa','nta1otm1nxfYvxD4sa'];_0x3eb7=function(){return _0x428fe6;};return _0x3eb7();}