@profoundlogic/codermake 3.1.0 → 3.1.2
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 +41 -0
- package/dist/bin/index.js +1 -1
- package/dist/bin/preprocess-rpg-copy.js +1 -1
- package/dist/bin/rdf-to-dds.js +1 -1
- package/dist/lib/config.js +1 -1
- package/dist/lib/discovery.js +1 -1
- package/dist/lib/ejs-to-dds.js +1 -1
- package/dist/lib/ent.js +1 -0
- package/dist/lib/executor.js +1 -1
- package/dist/lib/flv.js +1 -0
- package/dist/lib/generate-rdf-dds.js +1 -1
- package/dist/lib/license.js +1 -1
- package/dist/lib/makefile-generator.js +1 -1
- package/dist/lib/platform.js +1 -1
- package/dist/lib/preprocessor.js +1 -1
- package/dist/lib/rdf-to-post-data.js +1 -1
- package/dist/lib/rpg-copy-preprocessor.js +1 -1
- package/dist/lib/ssh.js +1 -1
- package/dist/lib/target-listing.js +1 -1
- package/dist/lib/writer.js +1 -1
- package/package.json +3 -2
- package/skills/codermake/SKILL.md +31 -0
package/README.md
CHANGED
|
@@ -73,6 +73,12 @@ codermake
|
|
|
73
73
|
target: prerequisites
|
|
74
74
|
```
|
|
75
75
|
|
|
76
|
+
The **first normal prerequisite is the source** that creates the object, and it
|
|
77
|
+
is what selects the compile command codermake runs. Every normal prerequisite
|
|
78
|
+
after it is a dependency: it forces a rebuild when it changes but never changes
|
|
79
|
+
the command. Order-only prerequisites (after `|`) do neither — they only have to
|
|
80
|
+
exist first.
|
|
81
|
+
|
|
76
82
|
### Supported File Types
|
|
77
83
|
|
|
78
84
|
**Output Objects:**
|
|
@@ -170,6 +176,41 @@ mathpgm.pgm: mathmod.module
|
|
|
170
176
|
helloprt.file: helloprt.prtf
|
|
171
177
|
```
|
|
172
178
|
|
|
179
|
+
**File Objects That Depend on Other Files:**
|
|
180
|
+
|
|
181
|
+
IBM i `*FILE` objects frequently depend on other files, and on more than one of
|
|
182
|
+
them: a logical file is based on one or more physical files, and a file of any
|
|
183
|
+
type can take its field definitions from a field reference physical file (DDS
|
|
184
|
+
`REF`/`REFFLD`). List the dependency's **source** as a normal prerequisite so
|
|
185
|
+
the dependent file is recompiled when that source changes, and the dependency's
|
|
186
|
+
**file object** as an order-only prerequisite so it exists on IBM i at compile
|
|
187
|
+
time:
|
|
188
|
+
|
|
189
|
+
```makefile
|
|
190
|
+
# Field reference physical file
|
|
191
|
+
fldref.file: fldref.pf
|
|
192
|
+
|
|
193
|
+
# Physical file whose fields come from the field reference file (REF)
|
|
194
|
+
custp.file: custp.pf fldref.pf | fldref.file
|
|
195
|
+
ordp.file: ordp.pf fldref.pf | fldref.file
|
|
196
|
+
|
|
197
|
+
# Logical file over a physical file
|
|
198
|
+
custl.file: custl.lf custp.pf | custp.file
|
|
199
|
+
|
|
200
|
+
# Join logical file over two physical files
|
|
201
|
+
custjoin.file: custjoin.lf custp.pf ordp.pf | custp.file ordp.file
|
|
202
|
+
|
|
203
|
+
# Display file with field references to two physical files (REF and REFFLD)
|
|
204
|
+
custd.file: custd.dspf fldref.pf ordp.pf | fldref.file ordp.file
|
|
205
|
+
|
|
206
|
+
# SQL view over a DDS physical file in another source directory
|
|
207
|
+
custvw.file: custvw.view.sql qddssrc/custp.pf | custp.file
|
|
208
|
+
```
|
|
209
|
+
|
|
210
|
+
Because the first prerequisite is the source, `custl.file` compiles with
|
|
211
|
+
`CRTLF` even though the rule also lists a `.pf` — the physical file's DDS is a
|
|
212
|
+
dependency, not the source.
|
|
213
|
+
|
|
173
214
|
**System/38 Compatible DDS:**
|
|
174
215
|
```makefile
|
|
175
216
|
# .pf38/.lf38/.dspf38/.prtf38 use dedicated recipes that call the QSYS38
|
package/dist/bin/index.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
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();
|
|
2
|
+
const _0x2a0e84=_0x4fa0;(function(_0x44fda4,_0x2bea29){const _0x3a58b9=_0x4fa0,_0x42f7bc=_0x44fda4();while(!![]){try{const _0x29d210=parseInt(_0x3a58b9(0x146))/0x1*(-parseInt(_0x3a58b9(0xf8))/0x2)+parseInt(_0x3a58b9(0xef))/0x3*(-parseInt(_0x3a58b9(0x18f))/0x4)+parseInt(_0x3a58b9(0xfe))/0x5*(parseInt(_0x3a58b9(0xde))/0x6)+-parseInt(_0x3a58b9(0x19e))/0x7+-parseInt(_0x3a58b9(0xec))/0x8*(-parseInt(_0x3a58b9(0x105))/0x9)+parseInt(_0x3a58b9(0x11f))/0xa+parseInt(_0x3a58b9(0x13b))/0xb*(parseInt(_0x3a58b9(0x100))/0xc);if(_0x29d210===_0x2bea29)break;else _0x42f7bc['push'](_0x42f7bc['shift']());}catch(_0x483457){_0x42f7bc['push'](_0x42f7bc['shift']());}}}(_0x5890,0x30df6));import{fileURLToPath}from'url';import{dirname,join}from'path';const __filename=fileURLToPath(import.meta.url),__dirname=dirname(__filename);let projectRoot=dirname(__dirname);(projectRoot[_0x2a0e84(0x18a)]('/dist')||projectRoot[_0x2a0e84(0x18a)]('\x5cdist'))&&(projectRoot=dirname(projectRoot));function _0x5890(){const _0x339774=['ic0G','DhjHy2TZigj1AwXKihn0yxrLigfZihrVDwnOig1HCMTLCNmGDw5KzxiGyNvPBgqVlIbpBIbjqK0GAsb0AguGyNvPBgqGDgfYz2v0CW','zLbZq2e','Du9hAfa','w2nVzgvYBwfRzv0Gv3jPDgLUzYbJB21WAwXLig9WDgLVBNmGDg8G','AxbTuei','Evr4txu','otC4mtz0DuLwvu0','u3rHDhvZoIa','sKH3BxG','mJa0wwD3Duz5','lcbZA2LWCgLUzYbtu0GGy2XLyw51Ca','icbOzwXSB3iUCgDToIbOzwXSB3iUCNbNBguGAgvSBg9KlMzPBgu','rxjYB3i6ia','w2nVzgvYBwfRzv0Gu2TPChbPBMCGu1niig1HC3rLCIaOBM8TzxHLy3v0zsbTB2rLigrLDgvJDgvKkq','wgfXtMi','rxHHBxbSzsaOC3jJl1j1BgvZlM1RktO','q1Hsywm','v2fYBMLUzZOGtM8GuNvSzxmUBwSGzMLSzxmGzM91BMqGAw4GChjVAMvJDc4','mtu2mte0A2rxEMXX','ls10B3vJAa','u0Lhsu5u','Cgf0Aa','BwfWCgLUz0zPBgu','BvzpvLi','mZbPrMLhvLC','Dg9ju09tDhjPBMC','ndm4mtGXmLvdt0DXsW','Bg9N','B25Jzq','CMvTB3zLtgLZDgvUzxi','pt09ieXPy2vUC2uGsw5MB3jTyxrPB24Gpt09','mJCWCuLRyufR','rej2BMO','DgfYz2v0CW','tgLZDgLUzYbYzxbVCNrZihDOyxqGysbIDwLSzcb3B3vSzcbKBZSGDg91y2GGyw5Kihf1zxn0Aw9Uig1VzgvZihjLCgXHy2uGDgHHDcbHBNn3zxiU','ChjPBNrnywTLzMLSzq','w2nVzgvYBwfRzv0Gv2fYBMLUzZOGrMfPBgvKihrVignSB3nLifntscbJB25Uzwn0Aw9UoIa','sw5ZDgfSBgvKoIa','C2XPy2u','w2nVzgvYBwfRzv0GicbmAwjYyxj5ig1HCdOG','t295zgm','w2nVzgvYBwfRzv0Gica','CMvJDxjZAxzL','y29Kzq','zgvMyxvSDa','BgLJzw5Zzq','DgvYBq','D2fYBMLUz3m','D1bwquS','ic0+ia','wffmq08','Bw5RvhO','Dw5HBwu','ls1SAxn0lxrHCMDLDhm','zxHPDa','CgfYC2u','Be9cBw4','otq3nZqWqMv5u21y','w2nVzgvYBwfRzv0Gt3v0Chv0ig1Vzgu6ig11BhrPlwXPyNjHCNK','w2nVzgvYBwfRzv0GicbgB3vUzdOG','rxjYB3i6ic0TBgLZDc10yxjNzxrZigLZig5VDcbZDxbWB3j0zwqGD2HLBIbYDw5UAw5Nig9UieLctsbPlG','w2nVzgvYBwfRzv0GvxnPBMCGzxH0zxjUywWGu1niihnVy2TLDcbKAxi6ia','wwPWrNC','zg90zw52','EhbHtu4','wKngz2O','ls1YzwnVBG','m3WYFdr8mhW1Fde','CMvSyxrPDMvqyxrO','sw5ZDgfSBcbHigXPy2vUC2uGD2L0AdO','w2nVzgvYBwfRzv0Gq2XLyw5PBMCGDxaGDgvTCcbKAxjLy3rVCNK6ia','CgXHDgzVCM0','yxjKBLO','s1bjDuC','rNvwtgK','ls1Kzwj1zW','AMfTAxi','Bhzjteu','tgLJzw5ZzsbPBNn0ywXSzwqGC3vJy2vZC2z1BgX5','zM9Yy2u','q3jLyxrLigeGuNvSzxmUBwSGzMLSzsbPBIb5B3vYihnVDxjJzsbKAxjLy3rVCNKGDg8GzgvMAw5Ligj1AwXKihj1BgvZlG','iYbuyxjNzxrZ','Dw5TyxrJAgvKuNvSzxm','zw50CMLLCW','EKHOC0u','mtfpENDdvKy','Bg9UzW','ChvZAa','icbJB2rLCM1HA2uGls1SAwnLBNnLlxnLDd08A2v5pG','AM9PBG','w2nVzgvYBwfRzv0GuhjLChjVy2vZC2LUzYbYDwXLCY4UlG','zxHWAxjLCW','lwOX','vhzWwfe','ls1SAxn0lxrHCMDLDhm9','u0Lhvevstq','ngLYyuvfrG','CMzyDu0','C2L6zq','w2nVzgvYBwfRzv0Gt3v0Chv0ig1Vzgu6ihnPBMDSzs1SAwjYyxj5icG','DMfSAwq','veHhvLK','zxHWAxjHDgLVBKrHDgu','y2XLyw4','C2LUz2XL','C2HVD1zLCNnPB24','ls1XDwvZDgLVBG','w2nVzgvYBwfRzv0Gv3jPDgLUzYbYDwXLCYb0BYa','BwvZC2fNzq','BgLJzw5ZzvnOB3C','w2nVzgvYBwfRzv0GicbnDwX0As1SAwjYyxj5igXHEw91DcbKzxrLy3rLzdOG','zw52AxjVBM1LBNqGDMfYAwfIBgu','tgLZDgLUzYbYzxbVCNrZihDOyxqGysbIDwLSzcb3B3vSzcbJCMvHDgu7igL0ig5LDMvYihjLBw92zxmGyw55DgHPBMCU','zMzgyLK','AhnpuKu','tgLJzw5Zzq','BgLZDfrHCMDLDhm','ls1QDxn0lxbYAw50','w2nVzgvYBwfRzv0Gv2fYBMLUzZOGrMfPBgvKihrVignSzwfUDxaGDgvTCcbKAxjLy3rVCNK6ia','ChjPBNrsDwXLCW','vMfSAwqGzM9YBwf0CZOG','w2nVzgvYBwfRzv0Gsw52B2TPBMCGBwfRzs4UlG','zxjYB3i','l1j1BgvZlM1R','y29UzMLN','yMvgwuu','CNbZvMO','DxnLCG','yxjLihrOzsbVyMPLy3rZihrOzw1ZzwX2zxmSihDOAwnOigbJB2rLCM1HA2uGlxrGignHBM5VDcbIyxnLBgLUzs4','D2n5Dw0','zgnAsNm','uxfKvvq','Aw5JBhvKzxm','kg5VienVzgvYrMXVDYbLBNrPDgXLBwvUDcbMB3iGy29KzxjTywTLiokaLcbZAg93Aw5NihrOzsbZDgfUzgfSB25LigXPy2vUC2uGyMvSB3CP','w2nVzgvYBwfRzv0Gv3jPDgLUzYb0yxjNzxrZihrVia','w2nVzgvYBwfRzv0Grgv0zwn0Aw5NihbSyxrMB3jTlI4U','uNvSzxmUBwS','BM9dB2XVCG','C3rHy2S','u291CMnLoIbdB2rLCKzSB3CGC2vYDMvYigvUDgL0BgvTzw50icHdt0rfuKzmt1DFru5ukq','BwfW','CgncCKy','w2nVzgvYBwfRzv0Gv2fYBMLUzZOGq291BgqGBM90ihbYzs1LC3rHyMXPC2GGu1niig1HC3rLCJOG','ls1UBY1JB2XVCG','AhnuzeW','sxqGAxmGyxzHAwXHyMXLigzVCIbYzw1VDguGyNvPBgrZigzYB20GysbvBML4lwXPA2uGAg9ZDcWGD2HLCMuGy29KzxjTywTL','DxrMoa','l2rPC3q','v2fYBMLUzZOG','C2HVD0HLBha','ls1WCMLUDc1TywTLzMLSzq','B3v0Chv0tw9Kzq','Bw9KDwXL','zgvIDwC','B1b4D2W','ls1OzwXW','CMvXDwLYzunVBM5Ly3rPB24','A2v5','AwDUB3jL','D2fYBG','BgvUz3rO','AgfZ','Dgv4Da','lcbJBgvHBMLUzYb1Cc4UlG','zw5KC1DPDgG','wuLou2u','rxjYB3i6ic0TBgLZDc10yxjNzxrZignHBM5VDcbIzsbJB21IAw5Lzcb3AxrOihrOzsaNy2XLyw4NihrHCMDLDc4','u2Horgq','tw9KDwXLCZOG','ntGXnKPLtKnNuW','C3bSAxq','CuLfvve','DMfSDwvZ','BwfRzufYz3m','rxHWzwn0zwqGBg9JyxrPB246ia','Bg1Ur1a','tNLdt0O','zgvIDwDqCMvMAxG','CNvSzxngAwXL','xgrPC3q','Ag9ZDa','w2nVzgvYBwfRzv0GugXHDgzVCM06ia','C3rHCNrZv2L0Aa','tw9KDwXLoIa','mJa3nZe4n21by2rOrG','ugvTtwK','zMLSDgvY','rg1VB3u','w2nVzgvYBwfRzv0GicbmAwjYyxj5igXPC3q6ia','u3rHDhvZoIbwywXPzcaOzxHWAxjLCZOG','tM9Kzs5QCYa','Dg1WrgLY','Aw5ZDgfSBgvKqxq','DMvYC2LVBG','q3LjDfO','AuzSwxG','D1Ppzhq','CNvSzxm','ls1SAwnLBNnLlxnLDd0','odeYodHsq1z5t0G','yxjNDG','tg9JyxrPB246ia','ls1KCNKTCNvU','Dhj6yw0','CgfJA2fNzs5QC29U','BgLJzw5ZzvnLDa'];_0x5890=function(){return _0x339774;};return _0x5890();}try{const dotenv=await import(_0x2a0e84(0x125));dotenv[_0x2a0e84(0x112)][_0x2a0e84(0x162)]({'path':join(projectRoot,'.env')});}catch{}import{detectPlatform,resolveLibraryConfiguration}from'../lib/platform.js';function _0x4fa0(_0x19958a,_0x39ee8e){_0x19958a=_0x19958a-0xd7;const _0x589089=_0x5890();let _0x4fa098=_0x589089[_0x19958a];if(_0x4fa0['YaNMlX']===undefined){var _0x64aa93=function(_0x5a3a83){const _0x27d80a='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x58f313='',_0x5e26d8='';for(let _0x5150cd=0x0,_0x36a82d,_0x9f2c02,_0x5b2d90=0x0;_0x9f2c02=_0x5a3a83['charAt'](_0x5b2d90++);~_0x9f2c02&&(_0x36a82d=_0x5150cd%0x4?_0x36a82d*0x40+_0x9f2c02:_0x9f2c02,_0x5150cd++%0x4)?_0x58f313+=String['fromCharCode'](0xff&_0x36a82d>>(-0x2*_0x5150cd&0x6)):0x0){_0x9f2c02=_0x27d80a['indexOf'](_0x9f2c02);}for(let _0x581ef9=0x0,_0x14c048=_0x58f313['length'];_0x581ef9<_0x14c048;_0x581ef9++){_0x5e26d8+='%'+('00'+_0x58f313['charCodeAt'](_0x581ef9)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x5e26d8);};_0x4fa0['MmMFkR']=_0x64aa93,_0x4fa0['FzNTxk']={},_0x4fa0['YaNMlX']=!![];}const _0x18137c=_0x589089[0x0],_0x4c0069=_0x19958a+_0x18137c,_0x33e61a=_0x4fa0['FzNTxk'][_0x4c0069];return!_0x33e61a?(_0x4fa098=_0x4fa0['MmMFkR'](_0x4fa098),_0x4fa0['FzNTxk'][_0x4c0069]=_0x4fa098):_0x4fa098=_0x33e61a,_0x4fa098;}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{entitlementInfo}from'../lib/ent.js';import{establishSSHMaster}from'../lib/ssh.js';import{LIST_FORMATS,formatRecords,isRecordLine,parseRecords}from'../lib/target-listing.js';function getVersion(){const _0x10e31b=_0x2a0e84,_0x4ef98f={'ipmPB':function(_0x3ad19e,_0xa38fd9){return _0x3ad19e(_0xa38fd9);}},_0x201e48=_0x4ef98f['ipmPB'](fileURLToPath,import.meta.url);let _0x4ca928=dirname(_0x4ef98f[_0x10e31b(0xea)](dirname,_0x201e48));(_0x4ca928['endsWith'](_0x10e31b(0x179))||_0x4ca928['endsWith'](_0x10e31b(0x199)))&&(_0x4ca928=_0x4ef98f[_0x10e31b(0xea)](dirname,_0x4ca928));const _0x1cce14=JSON[_0x10e31b(0x11d)](readFileSync(join(_0x4ca928,_0x10e31b(0xe3)),_0x10e31b(0x178)));return _0x1cce14[_0x10e31b(0xd8)];}function showHelp(){const _0x3ef01f=_0x2a0e84;console[_0x3ef01f(0x101)]('\x0acodermake\x20-\x20Build\x20tool\x20for\x20IBM\x20i\x20projects\x0aVersion:\x20'+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(_0x2cbc8b){const _0x2d4e75=_0x2a0e84,_0x10cbd0={};_0x10cbd0[_0x2d4e75(0xf4)]=_0x2d4e75(0x181),_0x10cbd0['ardnZ']=function(_0x44828d,_0x3f6be2){return _0x44828d===_0x3f6be2;},_0x10cbd0[_0x2d4e75(0x167)]=_0x2d4e75(0x175),_0x10cbd0[_0x2d4e75(0xe2)]='--print-rules',_0x10cbd0['zHhsE']=function(_0x4b8f6a,_0x6a3cf3){return _0x4b8f6a===_0x6a3cf3;},_0x10cbd0['jamir']=_0x2d4e75(0x188),_0x10cbd0[_0x2d4e75(0x164)]=_0x2d4e75(0x144),_0x10cbd0[_0x2d4e75(0xdb)]='--license-show',_0x10cbd0[_0x2d4e75(0x127)]=function(_0x20b11a,_0xf6d007){return _0x20b11a<_0xf6d007;},_0x10cbd0[_0x2d4e75(0x180)]=_0x2d4e75(0xdd);const _0x35656b=_0x10cbd0,_0x4f3f73={};_0x4f3f73[_0x2d4e75(0x17f)]=![],_0x4f3f73['noColor']=![],_0x4f3f73[_0x2d4e75(0x15d)]=![],_0x4f3f73[_0x2d4e75(0x109)]=![],_0x4f3f73['listTargets']=null,_0x4f3f73['showHelp']=![],_0x4f3f73[_0x2d4e75(0x14f)]=![],_0x4f3f73['licenseShow']=![],_0x4f3f73[_0x2d4e75(0xe4)]=null,_0x4f3f73['makeArgs']=[];const _0x2633b6=_0x4f3f73;for(let _0x5938d3=0x0;_0x5938d3<_0x2cbc8b[_0x2d4e75(0x186)];_0x5938d3++){const _0x4fe32b=_0x2cbc8b[_0x5938d3];if(_0x4fe32b===_0x35656b['XaqNb'])_0x2633b6[_0x2d4e75(0x17b)]=!![];else{if(_0x4fe32b==='--version')_0x2633b6['showVersion']=!![];else{if(_0x35656b[_0x2d4e75(0x12e)](_0x4fe32b,_0x2d4e75(0x131)))_0x2633b6[_0x2d4e75(0x17f)]=!![];else{if(_0x4fe32b===_0x35656b[_0x2d4e75(0x167)])_0x2633b6[_0x2d4e75(0x16f)]=!![];else{if(_0x35656b[_0x2d4e75(0x12e)](_0x4fe32b,_0x35656b[_0x2d4e75(0xe2)]))_0x2633b6['printRules']=!![];else{if(_0x35656b[_0x2d4e75(0x13a)](_0x4fe32b,_0x2d4e75(0x17c)))_0x2633b6[_0x2d4e75(0x109)]=!![];else{if(_0x35656b['ardnZ'](_0x4fe32b,_0x2d4e75(0x11b)))_0x2633b6[_0x2d4e75(0x15a)]=_0x35656b[_0x2d4e75(0x132)];else{if(_0x4fe32b[_0x2d4e75(0x19c)](_0x2d4e75(0x144)))_0x2633b6['listTargets']=_0x4fe32b['substring'](_0x35656b[_0x2d4e75(0x164)]['length']);else{if(_0x4fe32b===_0x35656b[_0x2d4e75(0xdb)])_0x2633b6[_0x2d4e75(0x153)]=!![];else{if(_0x4fe32b==='--license-set'&&_0x35656b[_0x2d4e75(0x127)](_0x5938d3+0x1,_0x2cbc8b[_0x2d4e75(0x186)]))_0x2633b6[_0x2d4e75(0xe4)]=_0x2cbc8b[++_0x5938d3];else _0x4fe32b[_0x2d4e75(0x19c)](_0x35656b[_0x2d4e75(0x180)])?_0x2633b6[_0x2d4e75(0xe4)]=_0x4fe32b['substring'](_0x35656b[_0x2d4e75(0x180)]['length']):_0x2633b6[_0x2d4e75(0x193)][_0x2d4e75(0x13d)](_0x4fe32b);}}}}}}}}}}return _0x2633b6;}const MAKE_NO_EXECUTE_OPTIONS={'short':new Set(['n','q','t']),'long':new Set([_0x2a0e84(0x15b),_0x2a0e84(0xe1),_0x2a0e84(0x128),_0x2a0e84(0x150),_0x2a0e84(0xf9)])},LIST_TARGETS_CONFLICTS={'short':new Set(['t','q']),'long':new Set([_0x2a0e84(0xf9),_0x2a0e84(0x150)])};function findMakeOption(_0x4628a8,_0x25f9f2){const _0x4842a5=_0x2a0e84;for(const _0x13d686 of _0x4628a8){if(_0x13d686[_0x4842a5(0x19c)]('--')){const _0x4b3b93=_0x13d686[_0x4842a5(0x190)]('=')[0x0];if(_0x25f9f2[_0x4842a5(0x13c)][_0x4842a5(0x187)](_0x4b3b93))return _0x13d686;}else{if(_0x13d686[_0x4842a5(0x19c)]('-')&&!_0x13d686['startsWith']('--')){const _0x35f6fe=_0x13d686[_0x4842a5(0x10c)](0x1);for(const _0x4b3dff of _0x35f6fe){if(_0x25f9f2['short'][_0x4842a5(0x187)](_0x4b3dff))return _0x13d686;}}}}return null;}function shouldSkipSSHForMakeArgs(_0x486cb0){const _0x549a5e=_0x2a0e84,_0x5348ad={};_0x5348ad[_0x549a5e(0x163)]=function(_0xfb239e,_0x288f78){return _0xfb239e!==_0x288f78;};const _0x26b7d0=_0x5348ad;return _0x26b7d0['beFYE'](findMakeOption(_0x486cb0,MAKE_NO_EXECUTE_OPTIONS),null);}async function handleLicenseShow(){const _0x86b2ae=_0x2a0e84,_0x8fc8c5={'rCwKj':_0x86b2ae(0x171),'lOBmn':'unknown','pcBrF':function(_0x142c4f){return _0x142c4f();},'qIEUQ':'No\x20license\x20installed','CXRac':function(_0xb349cd,_0x4403ca){return _0xb349cd(_0x4403ca);}},_0x2f90fe=entitlementInfo();if(_0x2f90fe){console['log'](_0x86b2ae(0x104)),console[_0x86b2ae(0x101)](_0x8fc8c5['rCwKj']);if(_0x2f90fe[_0x86b2ae(0x14a)]){const _0x59febb=_0x2f90fe[_0x86b2ae(0x141)]?',\x20expires\x20'+_0x2f90fe[_0x86b2ae(0x141)][_0x86b2ae(0xff)]():'';console[_0x86b2ae(0x101)](_0x86b2ae(0x19d)+_0x2f90fe[_0x86b2ae(0x17e)]+'\x20('+(_0x2f90fe[_0x86b2ae(0x114)]||_0x8fc8c5[_0x86b2ae(0x11e)])+_0x59febb+')'),console[_0x86b2ae(0x101)](_0x86b2ae(0x18e)+_0x2f90fe['modules'][_0x86b2ae(0x13f)](',\x20')),console[_0x86b2ae(0x101)]('Status:\x20Valid');return;}console[_0x86b2ae(0x101)](_0x86b2ae(0xed)+_0x2f90fe[_0x86b2ae(0x111)]+_0x86b2ae(0xe5)+_0x2f90fe[_0x86b2ae(0x152)]),console['log'](_0x86b2ae(0x16b)),console[_0x86b2ae(0x101)]('');}const _0x310fb=_0x8fc8c5[_0x86b2ae(0x173)](getLicensePath),_0x18b106=await loadLicenseFile(_0x310fb);if(!_0x18b106){console[_0x86b2ae(0x101)](_0x8fc8c5[_0x86b2ae(0x191)]),console[_0x86b2ae(0x101)](_0x86b2ae(0x194)+_0x310fb),console[_0x86b2ae(0x101)](''),console[_0x86b2ae(0x101)](_0x86b2ae(0x12b)),console[_0x86b2ae(0x101)](_0x86b2ae(0x13e));return;}console[_0x86b2ae(0x101)]('===\x20License\x20Information\x20==='),console[_0x86b2ae(0x101)]('Key:\x20'+_0x8fc8c5[_0x86b2ae(0xf6)](maskLicenseKey,_0x18b106[_0x86b2ae(0x183)])),console['log'](_0x86b2ae(0x10b)+_0x18b106[_0x86b2ae(0xd7)]),console[_0x86b2ae(0x101)]('Location:\x20'+_0x310fb),console[_0x86b2ae(0x101)]('');const _0x336a1f=validateLicenseKey(_0x18b106[_0x86b2ae(0x183)]);_0x336a1f[_0x86b2ae(0x14a)]?console[_0x86b2ae(0x101)](_0x86b2ae(0x1a3)+_0x336a1f[_0x86b2ae(0x14c)]+')'):console[_0x86b2ae(0x101)](_0x86b2ae(0xed)+_0x336a1f[_0x86b2ae(0x111)]+_0x86b2ae(0xe5)+_0x336a1f[_0x86b2ae(0x152)]);}async function handleLicenseSet(_0x307121){const _0x7cf49c=_0x2a0e84,_0x58c36f={'uITJg':function(_0x249c4c){return _0x249c4c();},'Ulepk':function(_0x23997a,_0x5f059f,_0x5f4eec){return _0x23997a(_0x5f059f,_0x5f4eec);},'DBvnj':_0x7cf49c(0x134)},_0x1e153c=_0x58c36f['uITJg'](getLicensePath);await _0x58c36f['Ulepk'](saveLicenseFile,_0x1e153c,_0x307121),console['log'](_0x58c36f[_0x7cf49c(0x106)]),console[_0x7cf49c(0x101)](_0x7cf49c(0xe0)+_0x1e153c);}async function main(){const _0x326964=_0x2a0e84,_0x71f625={'wPVAK':function(_0x161fd8,_0xb0b5f5){return _0x161fd8(_0xb0b5f5);},'yTxMu':function(_0x3eaa92,_0x379f2d,_0x526355){return _0x3eaa92(_0x379f2d,_0x526355);},'YjpFw':_0x326964(0x184),'FuVLi':function(_0x542760){return _0x542760();},'lvILE':function(_0x33a36e){return _0x33a36e();},'rfXuM':function(_0x2a41e0,_0x487fc3){return _0x2a41e0(_0x487fc3);},'izehF':function(_0x4d351b,_0xfccc25){return _0x4d351b!==_0xfccc25;},'mvtrR':_0x326964(0x18c),'mVOVR':_0x326964(0x142),'PemMi':_0x326964(0x16d),'mnkTz':function(_0x5acbd2,_0x45e975){return _0x5acbd2(_0x45e975);},'KPIuG':function(_0x386e69,_0x92a5cf){return _0x386e69===_0x92a5cf;},'hsORE':_0x326964(0x122),'QqdUT':_0x326964(0x177),'YINSe':function(_0x27a9bc,_0x20773c){return _0x27a9bc===_0x20773c;},'Ooydc':_0x326964(0xf7),'JHwmx':function(_0xf5732,_0x108818,_0x241098,_0xd946eb){return _0xf5732(_0x108818,_0x241098,_0xd946eb);},'ffFbY':function(_0x1c3880,_0x1b87ab){return _0x1c3880>_0x1b87ab;},'fPsCa':_0x326964(0x140),'iFlYx':function(_0xa74bff,_0x25060b,_0x201dfd,_0x35b381,_0x2f5462,_0x53894a){return _0xa74bff(_0x25060b,_0x201dfd,_0x35b381,_0x2f5462,_0x53894a);},'hsTdL':function(_0x3df8ee,_0x3d045d){return _0x3df8ee>_0x3d045d;},'THGVY':'[codermake]\x20Warnings:','lmnGP':'Error:\x20No\x20recipe\x20match\x20for\x20the\x20following\x20targets:','TvpXQ':_0x326964(0x129),'uOGhP':_0x326964(0x137),'ShNDd':'#\x20Preprocessed\x20rules','xFpza':function(_0x983898,_0x211a57){return _0x983898 instanceof _0x211a57;},'DTSNF':_0x326964(0xfa),'dcZJs':'[codermake]\x20Generating\x20standalone\x20Makefile...','NyCOJ':function(_0x11fede,_0x88eee5,_0x3aeb05,_0xd24c25){return _0x11fede(_0x88eee5,_0x3aeb05,_0xd24c25);},'vwbbr':_0x326964(0x15f),'XQLCO':function(_0x4a0c71,_0x30ccbe,_0x144fa7){return _0x4a0c71(_0x30ccbe,_0x144fa7);},'xpaMN':function(_0x10821e,_0x36009e){return _0x10821e(_0x36009e);},'Dmoou':function(_0x39a827,_0x41b50a,_0x40138){return _0x39a827(_0x41b50a,_0x40138);},'CyItZ':_0x326964(0x16e)};try{const _0x4dadaa=process[_0x326964(0xdf)][_0x326964(0x10c)](0x2),_0x5c29c4=parseArgs(_0x4dadaa);_0x5c29c4[_0x326964(0x17b)]&&(showHelp(),process['exit'](0x0));_0x5c29c4[_0x326964(0x14f)]&&(console['log']('codermake\x20version\x20'+_0x71f625[_0x326964(0x130)](getVersion)),console[_0x326964(0x101)](_0x326964(0x1a4)+process[_0x326964(0xd8)]),process[_0x326964(0x11c)](0x0));_0x5c29c4['licenseShow']&&(await _0x71f625[_0x326964(0x133)](handleLicenseShow),process[_0x326964(0x11c)](0x0));_0x5c29c4['licenseSet']&&(await _0x71f625[_0x326964(0x147)](handleLicenseSet,_0x5c29c4[_0x326964(0xe4)]),process[_0x326964(0x11c)](0x0));const _0x5c056f=await validateLicense();!_0x5c056f[_0x326964(0x14a)]&&(console['error']('License\x20Error:\x20'+_0x5c056f['message']),process[_0x326964(0x11c)](0x4));process.env.CODERMAKE_DEBUG==='1'&&(_0x5c29c4[_0x326964(0x17f)]=!![]);if(_0x71f625['izehF'](_0x5c29c4[_0x326964(0x15a)],null)){!LIST_FORMATS[_0x326964(0x16a)](_0x5c29c4[_0x326964(0x15a)])&&(console['error']('Error:\x20Unknown\x20--list-targets\x20format\x20\x27'+_0x5c29c4[_0x326964(0x15a)]+'\x27.'),console['error'](_0x326964(0x15e)+LIST_FORMATS['join'](',\x20')),process['exit'](0x2));const _0x29b68a=findMakeOption(_0x5c29c4[_0x326964(0x193)],LIST_TARGETS_CONFLICTS);_0x29b68a&&(console['error']('Error:\x20--list-targets\x20cannot\x20be\x20combined\x20with\x20\x27'+_0x29b68a+'\x27.'),console[_0x326964(0x160)](_0x326964(0x108)),process[_0x326964(0x11c)](0x2)),_0x5c29c4[_0x326964(0x193)]['includes'](_0x326964(0x14d))&&(console[_0x326964(0x160)](_0x71f625['mvtrR']),console[_0x326964(0x160)](_0x326964(0x156)),process[_0x326964(0x11c)](0x2)),_0x5c29c4[_0x326964(0x193)][_0x326964(0x13d)]('-n',_0x71f625[_0x326964(0xfd)]),process.env.CODERMAKE_LIST_TARGETS='1';}const _0x2a885f=_0x71f625[_0x326964(0x116)](shouldSkipSSHForMakeArgs,_0x5c29c4[_0x326964(0x193)]);_0x2a885f&&(process.env.CODERMAKE_NO_EXECUTE='1');_0x5c29c4[_0x326964(0x17f)]&&console['log'](_0x71f625[_0x326964(0x19f)]);const _0x23a034={};_0x23a034[_0x326964(0x182)]=!_0x2a885f;const _0x1b4e5a=_0x71f625[_0x326964(0x119)](detectPlatform,_0x23a034);_0x5c29c4[_0x326964(0x15a)]!==null&&_0x71f625[_0x326964(0x12f)](_0x1b4e5a['platform'],'ibmi')&&(console[_0x326964(0x160)](_0x71f625[_0x326964(0x158)]),console[_0x326964(0x160)](_0x71f625[_0x326964(0x169)]),console[_0x326964(0x160)](_0x326964(0xe6)),console[_0x326964(0x160)](_0x326964(0x166)),process[_0x326964(0x11c)](0x2));_0x5c29c4[_0x326964(0x17f)]&&(console['log'](_0x326964(0x19b)+_0x1b4e5a[_0x326964(0x12d)]+'\x20('+_0x1b4e5a[_0x326964(0x11a)]+')'),_0x71f625[_0x326964(0x18b)](_0x1b4e5a[_0x326964(0x17d)],_0x326964(0x14e))?console[_0x326964(0x101)](_0x326964(0x149)+_0x1b4e5a['library']+')'):console[_0x326964(0x101)](_0x326964(0x120)));_0x5c29c4['debug']&&console['log']('[codermake]\x20Discovering\x20Rules.mk\x20files...');const {rulesFiles:_0xd659e3,libraryDirs:_0x5e81f4,buildableLibraryDirs:_0x5cb58e}=discoverRules();if(_0x5c29c4[_0x326964(0x17f)]){_0x5e81f4['size']>0x0&&console[_0x326964(0x101)](_0x326964(0x154)+[..._0x5e81f4][_0x326964(0x13f)](',\x20'));for(const _0x17e1a0 of _0xd659e3){console[_0x326964(0x101)](_0x326964(0x121)+_0x17e1a0[_0x326964(0x12a)]+_0x326964(0x161));}}_0xd659e3[_0x326964(0x186)]===0x0&&(console['warn'](_0x71f625[_0x326964(0x10e)]),console[_0x326964(0x185)](''),console['warn'](_0x326964(0x136)),console[_0x326964(0x185)](''),console[_0x326964(0x185)](_0x326964(0xf5)),console[_0x326964(0x185)](_0x326964(0xf1)),process[_0x326964(0x11c)](0x0));const {libraryMap:_0x234df8,libraryList:_0x1756e9}=_0x71f625['JHwmx'](resolveLibraryConfiguration,_0x1b4e5a,_0x5e81f4,_0x5cb58e);if(_0x5c29c4['debug']&&_0x71f625[_0x326964(0x157)](_0x234df8[_0x326964(0x148)],0x0)){const _0x2e4eb6=[..._0x234df8[_0x326964(0x139)]()][_0x326964(0x172)](([_0x2cafd7,_0x5024e6])=>_0x2cafd7+'='+_0x5024e6)[_0x326964(0x13f)]('\x20');console[_0x326964(0x101)](_0x326964(0x10d)+_0x2e4eb6),_0x1756e9&&console[_0x326964(0x101)](_0x326964(0x1a2)+_0x1756e9[_0x326964(0x13f)]('\x20'));}_0x5c29c4[_0x326964(0x17f)]&&console[_0x326964(0x101)](_0x71f625[_0x326964(0xe7)]);const _0x15b262={};_0x15b262[_0x326964(0x15a)]=!!_0x5c29c4[_0x326964(0x15a)];const _0x395f20=_0x71f625[_0x326964(0xda)](preprocessRules,_0xd659e3,_0x1b4e5a,_0x5e81f4,_0x234df8,_0x15b262);if(_0x5c29c4[_0x326964(0x17f)]&&_0x71f625[_0x326964(0x176)](_0x395f20[_0x326964(0x115)]['length'],0x0)){console[_0x326964(0x185)](_0x71f625[_0x326964(0x14b)]);for(const _0x15e61f of _0x395f20['warnings']){console[_0x326964(0x185)](_0x326964(0x10f)+_0x15e61f);}}if(_0x71f625[_0x326964(0x176)](_0x395f20['unmatchedRules'][_0x326964(0x186)],0x0)){console[_0x326964(0x160)](_0x71f625[_0x326964(0x195)]);for(const {target:_0x4c0c5d,rulesFile:_0x13f711,line:_0x488387}of _0x395f20[_0x326964(0x138)]){console['error']('\x20\x20'+_0x13f711+':'+_0x488387+':\x20'+_0x4c0c5d);}process[_0x326964(0x11c)](0x1);}if(_0x5c29c4['printRules']){const _0x26075f=_0x71f625[_0x326964(0x143)]['split']('|');let _0x4bd998=0x0;while(!![]){switch(_0x26075f[_0x4bd998++]){case'0':console[_0x326964(0x101)](_0x71f625[_0x326964(0xe8)]);continue;case'1':process[_0x326964(0x11c)](0x0);continue;case'2':console[_0x326964(0x101)](_0x395f20[_0x326964(0xdc)][_0x326964(0x13f)]('\x0a'));continue;case'3':console['log'](_0x71f625[_0x326964(0x18d)]);continue;case'4':console[_0x326964(0x101)]('');continue;case'5':console['log']('TARGETS\x20:=\x20'+_0x395f20[_0x326964(0x107)]['join']('\x20'));continue;}break;}}let _0x224e21=new Map();try{const _0x23915b=_0x71f625[_0x326964(0x130)](resolveCompileOptions);_0x224e21=_0x23915b['vars'];for(const _0x418041 of _0x23915b[_0x326964(0x115)]){console[_0x326964(0x185)](_0x326964(0x17a)+_0x418041);}_0x5c29c4['debug']&&_0x23915b[_0x326964(0xfb)]&&console['log']('[codermake]\x20Loaded\x20compile\x20options\x20from\x20'+_0x23915b[_0x326964(0xfb)]);}catch(_0x1295ef){_0x71f625['xFpza'](_0x1295ef,CompileConfigError)&&(console[_0x326964(0x160)](_0x1295ef[_0x326964(0x152)]),process[_0x326964(0x11c)](0x1));throw _0x1295ef;}const _0x1bb7b9=_0x71f625[_0x326964(0xee)](writeRules,_0x395f20['rules'],_0x395f20[_0x326964(0x107)],_0x395f20['targetMapping']),_0x25dfaf=_0x1bb7b9['tmpDir'];_0x5c29c4[_0x326964(0x17f)]&&(console[_0x326964(0x101)](_0x326964(0x151)+_0x1bb7b9[_0x326964(0x198)]),console[_0x326964(0x101)](_0x326964(0x16c)+_0x1bb7b9['targetsFile']));const _0x11cfeb=_0x71f625[_0x326964(0xeb)](writeConfigMk,_0x25dfaf,_0x224e21);_0x5c29c4['debug']&&_0x11cfeb&&console[_0x326964(0x101)](_0x326964(0xe9)+_0x11cfeb);_0x5e81f4[_0x326964(0x148)]>0x0&&(process.env.CODERMAKE_MULTI_LIBRARY='1',process.env.CODERMAKE_LIBRARY_DIRS=[..._0x5e81f4][_0x326964(0x13f)]('\x20'));if(_0x71f625[_0x326964(0x157)](_0x234df8[_0x326964(0x148)],0x0)){const _0x46cbc9=[..._0x234df8[_0x326964(0x139)]()][_0x326964(0x172)](([_0x1426d1,_0x2c1a76])=>_0x1426d1+'='+_0x2c1a76)[_0x326964(0x13f)]('\x20');process.env.CODERMAKE_RESOLVED_LIBRARY_MAP=_0x46cbc9,process.env.CODERMAKE_MAPPED_LIBRARIES=[..._0x234df8[_0x326964(0x192)]()][_0x326964(0x13f)]('\x20');}const _0xda7929=process.env.CODERMAKE_SSH_CONTROL_DIR||_0x25dfaf;_0x2a885f&&_0x5c29c4['debug']&&console[_0x326964(0x101)](_0x326964(0xf3));if(!_0x2a885f)try{const _0x25393f={};_0x25393f[_0x326964(0x19a)]=process.env.IBMI_HOST,_0x25393f[_0x326964(0x165)]=process.env.IBMI_USER,_0x25393f['sshKey']=process.env.IBMI_KEY,_0x25393f[_0x326964(0x17f)]=_0x5c29c4[_0x326964(0x17f)],_0x25393f[_0x326964(0x197)]='[codermake]',await establishSSHMaster(_0xda7929,_0x25393f);}catch(_0x38a129){_0x5c29c4[_0x326964(0x17f)]&&console[_0x326964(0x185)](_0x326964(0x174)+_0x38a129[_0x326964(0x152)]);}const _0x2f4c4c=()=>{const _0x1cf27c=_0x326964,_0x3489e9=process.env.CODERMAKE_SSH_CONTROL_DIR;if(!_0x3489e9)try{const _0x28ed9a=_0x71f625['wPVAK'](readdirSync,_0x25dfaf)[_0x1cf27c(0x1a0)](_0x52ff9d=>_0x52ff9d[_0x1cf27c(0x19c)]('ssh-'));for(const _0x12ffd2 of _0x28ed9a){const _0x391b95=join(_0x25dfaf,_0x12ffd2);try{const _0x325c24=process.env.IBMI_HOST,_0x192aa3=process.env.IBMI_USER;_0x325c24&&_0x192aa3&&_0x71f625['yTxMu'](execSync,'ssh\x20-O\x20exit\x20-o\x20ControlPath='+_0x391b95+'\x20'+_0x192aa3+'@'+_0x325c24,{'stdio':_0x71f625[_0x1cf27c(0x124)],'timeout':0x2710});}catch(_0x48ed34){_0x5c29c4[_0x1cf27c(0x17f)]&&console[_0x1cf27c(0x160)](_0x1cf27c(0x10a)+_0x48ed34[_0x1cf27c(0x152)]);}}}catch(_0x213696){_0x5c29c4[_0x1cf27c(0x17f)]&&console[_0x1cf27c(0x160)]('[codermake]\x20Warning:\x20Failed\x20to\x20read\x20temp\x20directory\x20for\x20SSH\x20cleanup:\x20'+_0x213696['message']);}else _0x5c29c4[_0x1cf27c(0x17f)]&&console[_0x1cf27c(0x101)](_0x1cf27c(0x123)+_0x3489e9+_0x1cf27c(0xf0));_0x5c29c4[_0x1cf27c(0x17f)]&&console[_0x1cf27c(0x101)](_0x1cf27c(0x12c)+_0x25dfaf);try{const _0xa481f6={};_0xa481f6[_0x1cf27c(0x110)]=!![],_0xa481f6[_0x1cf27c(0x135)]=!![],_0x71f625['yTxMu'](rmSync,_0x25dfaf,_0xa481f6);}catch(_0x4f0054){_0x5c29c4[_0x1cf27c(0x17f)]&&console[_0x1cf27c(0x160)](_0x1cf27c(0x15c)+_0x4f0054[_0x1cf27c(0x152)]);}},_0x3362ab=_0x3a75bf=>{const _0x372b4d=_0x326964;_0x5c29c4[_0x372b4d(0x17f)]&&console[_0x372b4d(0x101)]('[codermake]\x20Received\x20'+_0x3a75bf+_0x372b4d(0x189)),_0x71f625[_0x372b4d(0x130)](_0x2f4c4c),process[_0x372b4d(0x11c)](0x82);};process[_0x326964(0x102)](_0x71f625['DTSNF'],_0x3362ab),process[_0x326964(0x102)](_0x326964(0x145),_0x3362ab);let _0x22c692=0x0;try{if(_0x5c29c4[_0x326964(0x109)]){_0x5c29c4[_0x326964(0x17f)]&&console[_0x326964(0x101)](_0x71f625[_0x326964(0x168)]);const _0x4ee536=_0x71f625[_0x326964(0x133)](getPackageDir),_0x3b93f1={};_0x3b93f1[_0x326964(0x15a)]=!!_0x5c29c4[_0x326964(0x15a)];const _0x2c888c=_0x71f625[_0x326964(0x196)](generateStandaloneMakefile,_0x4ee536,_0x25dfaf,_0x3b93f1);console[_0x326964(0x101)](_0x2c888c),_0x22c692=0x0;}else{const _0x2f42ca=JSON['parse'](_0x71f625[_0x326964(0xeb)](readFileSync,_0x1bb7b9[_0x326964(0xfc)],'utf8')),_0x4b3537=_0x5c29c4[_0x326964(0x193)]['map'](_0x16f46b=>{const _0x4c9253=_0x326964;if(_0x2f42ca[_0x16f46b])return _0x5c29c4['debug']&&console['log']('[codermake]\x20Expanding\x20target:\x20'+_0x16f46b+_0x4c9253(0x117)+_0x2f42ca[_0x16f46b]),_0x2f42ca[_0x16f46b];return _0x16f46b;});_0x5c29c4[_0x326964(0x17f)]&&console[_0x326964(0x101)](_0x71f625['vwbbr']);if(_0x5c29c4[_0x326964(0x15a)]){const _0x555395={};_0x555395['tmpDir']=_0x25dfaf,_0x555395['captureStdout']=!![];const {exitCode:_0x14ea2c,stdout:_0x5243bf}=await _0x71f625[_0x326964(0x118)](executeMake,_0x4b3537,_0x555395);if(_0x5c29c4[_0x326964(0x17f)])for(const _0x173b11 of _0x5243bf[_0x326964(0x190)]('\x0a')){_0x173b11&&!isRecordLine(_0x173b11)&&console[_0x326964(0x101)]('[codermake]\x20make:\x20'+_0x173b11);}if(_0x14ea2c===0x0){const _0x466de2=formatRecords(_0x71f625[_0x326964(0x126)](parseRecords,_0x5243bf),_0x5c29c4[_0x326964(0x15a)]);_0x466de2&&console[_0x326964(0x101)](_0x466de2);}_0x22c692=_0x14ea2c;}else{const _0x5b6dbb={};_0x5b6dbb[_0x326964(0x1a5)]=_0x25dfaf,_0x22c692=await _0x71f625[_0x326964(0x1a1)](executeMake,_0x4b3537,_0x5b6dbb);}}}finally{_0x71f625[_0x326964(0x130)](_0x2f4c4c),process[_0x326964(0x103)]('SIGINT',_0x3362ab),process[_0x326964(0x103)](_0x326964(0x145),_0x3362ab);}process[_0x326964(0x11c)](_0x22c692);}catch(_0xac1278){if(_0xac1278[_0x326964(0x152)][_0x326964(0x16a)](_0x326964(0x159))||_0xac1278[_0x326964(0x152)][_0x326964(0x16a)](_0x326964(0x113)))console[_0x326964(0x160)](_0x326964(0xf2)+_0xac1278['message']),process[_0x326964(0x11c)](0x4);else{if(_0xac1278[_0x326964(0x152)]['includes'](_0x326964(0x155)))console[_0x326964(0x160)]('Error:\x20'+_0xac1278['message']),process[_0x326964(0x11c)](0x2);else _0xac1278[_0x326964(0x152)][_0x326964(0x16a)](_0x71f625[_0x326964(0xd9)])?(console[_0x326964(0x160)]('Error:\x20'+_0xac1278[_0x326964(0x152)]),process[_0x326964(0x11c)](0x3)):(console['error']('Error:\x20'+_0xac1278['message']),process.env.CODERMAKE_DEBUG==='1'&&console[_0x326964(0x160)](_0xac1278[_0x326964(0x170)]),process[_0x326964(0x11c)](0x1));}}}main();
|
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
function
|
|
2
|
+
const _0x1aa62e=_0x2a13;(function(_0x18996a,_0x1f5a1c){const _0x3b8e88=_0x2a13,_0x54b05d=_0x18996a();while(!![]){try{const _0x149778=parseInt(_0x3b8e88(0x1ad))/0x1+parseInt(_0x3b8e88(0x19b))/0x2*(parseInt(_0x3b8e88(0x19a))/0x3)+parseInt(_0x3b8e88(0x1b2))/0x4*(parseInt(_0x3b8e88(0x1ae))/0x5)+parseInt(_0x3b8e88(0x1af))/0x6*(-parseInt(_0x3b8e88(0x1b1))/0x7)+-parseInt(_0x3b8e88(0x1ac))/0x8+parseInt(_0x3b8e88(0x1a5))/0x9+parseInt(_0x3b8e88(0x1a0))/0xa;if(_0x149778===_0x1f5a1c)break;else _0x54b05d['push'](_0x54b05d['shift']());}catch(_0x27fabd){_0x54b05d['push'](_0x54b05d['shift']());}}}(_0x4b5b,0x69833));function _0x2a13(_0x31bedf,_0x24e1f3){_0x31bedf=_0x31bedf-0x199;const _0x4b5bd7=_0x4b5b();let _0x2a13ff=_0x4b5bd7[_0x31bedf];if(_0x2a13['VEtRZX']===undefined){var _0x3c3ec7=function(_0x5de059){const _0x219fe3='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x3d1173='',_0x1170f5='';for(let _0x28e88e=0x0,_0x16d80d,_0x281d66,_0x3e73dd=0x0;_0x281d66=_0x5de059['charAt'](_0x3e73dd++);~_0x281d66&&(_0x16d80d=_0x28e88e%0x4?_0x16d80d*0x40+_0x281d66:_0x281d66,_0x28e88e++%0x4)?_0x3d1173+=String['fromCharCode'](0xff&_0x16d80d>>(-0x2*_0x28e88e&0x6)):0x0){_0x281d66=_0x219fe3['indexOf'](_0x281d66);}for(let _0x314909=0x0,_0x3ed931=_0x3d1173['length'];_0x314909<_0x3ed931;_0x314909++){_0x1170f5+='%'+('00'+_0x3d1173['charCodeAt'](_0x314909)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x1170f5);};_0x2a13['iHJBym']=_0x3c3ec7,_0x2a13['VsOLeH']={},_0x2a13['VEtRZX']=!![];}const _0x22bcc3=_0x4b5bd7[0x0],_0x3af2c3=_0x31bedf+_0x22bcc3,_0x55618d=_0x2a13['VsOLeH'][_0x3af2c3];return!_0x55618d?(_0x2a13ff=_0x2a13['iHJBym'](_0x2a13ff),_0x2a13['VsOLeH'][_0x3af2c3]=_0x2a13ff):_0x2a13ff=_0x55618d,_0x2a13ff;}import{preprocessFiles}from'../lib/rpg-copy-preprocessor.js';const args=process[_0x1aa62e(0x1b0)][_0x1aa62e(0x19e)](0x2),tempPrefixIdx=args[_0x1aa62e(0x1a4)](_0x1aa62e(0x1a2));function _0x4b5b(){const _0x5c0e9c=['mtiZntG4B2zjBLfK','yxjNDG','mtr1ywXst2q','mtz2zuz1veW','BgvUz3rO','otbPB2HXvKC','mteWnJjsELvWwwK','zxjYB3i','BwvZC2fNzq','C2XPy2u','C291CMnLuM9VDa','odGXmtyWCKfLBNHQ','zxHPDa','ls10zw1WlxbYzwzPEa','BgLICMfYEvnLyxjJAfbHDgG','Aw5KzxHpzG','mZC4nJKWm0jZuKTRAG','y3DK','vxnHz2u6ihbYzxbYB2nLC3mTCNbNlwnVChKUANmGpgzPBguXpIbBzMLSztiGlI4UxsaTlxrLBxaTChjLzML4idXWCMvMAxG+','C3rKB3v0','C3bSAxq','C2vHCMnOugf0Aev4CgXPy2L0','zMLSDgvY','nJa1odm2ohrcr0jiEa','mtKXmJi2s0rdEer2','ndu1nZKWq2T4uufK'];_0x4b5b=function(){return _0x5c0e9c;};return _0x4b5b();}(tempPrefixIdx===-0x1||tempPrefixIdx+0x1>=args[_0x1aa62e(0x199)])&&(console[_0x1aa62e(0x19c)](_0x1aa62e(0x1a7)),process[_0x1aa62e(0x1a1)](0x1));const tempPrefix=args[tempPrefixIdx+0x1],filePaths=args[_0x1aa62e(0x1ab)]((_0x3ed931,_0x470229)=>_0x470229!==tempPrefixIdx&&_0x470229!==tempPrefixIdx+0x1);filePaths[_0x1aa62e(0x199)]===0x0&&(console[_0x1aa62e(0x19c)]('Error:\x20No\x20input\x20files\x20specified'),process[_0x1aa62e(0x1a1)](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[_0x1aa62e(0x1a3)]=libl[_0x1aa62e(0x1a9)](/\s+/)[_0x1aa62e(0x1ab)](_0x301a89=>_0x301a89),options[_0x1aa62e(0x1aa)]=!![];else libraryDirs&&(options[_0x1aa62e(0x1a3)]=libraryDirs['split'](/\s+/)[_0x1aa62e(0x1ab)](_0xa2826c=>_0xa2826c));}try{const result=preprocessFiles(filePaths,process[_0x1aa62e(0x1a6)](),tempPrefix,options);process[_0x1aa62e(0x1a8)]['write'](result[_0x1aa62e(0x19f)]);}catch(_0x43ab87){console[_0x1aa62e(0x19c)]('Error:',_0x43ab87[_0x1aa62e(0x19d)]),process[_0x1aa62e(0x1a1)](0x1);}
|
package/dist/bin/rdf-to-dds.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
|
-
const
|
|
2
|
+
const _0x1d01d0=_0x5af7;(function(_0x1ab553,_0x4e53f5){const _0x4bd2e2=_0x5af7,_0xeb6ca9=_0x1ab553();while(!![]){try{const _0x5e002c=-parseInt(_0x4bd2e2(0x145))/0x1*(parseInt(_0x4bd2e2(0x148))/0x2)+parseInt(_0x4bd2e2(0x159))/0x3*(-parseInt(_0x4bd2e2(0x144))/0x4)+-parseInt(_0x4bd2e2(0x142))/0x5+parseInt(_0x4bd2e2(0x146))/0x6*(parseInt(_0x4bd2e2(0x15a))/0x7)+-parseInt(_0x4bd2e2(0x14c))/0x8+parseInt(_0x4bd2e2(0x15b))/0x9*(-parseInt(_0x4bd2e2(0x14f))/0xa)+-parseInt(_0x4bd2e2(0x147))/0xb*(-parseInt(_0x4bd2e2(0x141))/0xc);if(_0x5e002c===_0x4e53f5)break;else _0xeb6ca9['push'](_0xeb6ca9['shift']());}catch(_0x48fc7d){_0xeb6ca9['push'](_0xeb6ca9['shift']());}}}(_0x29bb,0x4d981));import{readFileSync,writeFileSync}from'fs';import{rdfToPostData}from'../lib/rdf-to-post-data.js';import{generateRDFDDS}from'../lib/generate-rdf-dds.js';function _0x29bb(){const _0x557828=['ng9cC2juCW','mtqZouf3tLLcwq','nZq4nZrvwwTkEuq','mJuXmJCZD2LfsK5y','nfDcsNH0yW','DhLWzq','BgLUzxm','C3vJy2vZCW','mJmWntG0ogTmwunJyW','AM9PBG','vxnHz2u6ihjKzI10BY1KzhmUANmGpgLUChv0lMPZB24+idXVDxrWDxqUzhnWzJ4','mtyZmeTdwe9Puq','yxjNDG','BwvZC2fNzq','BxnN','rxjYB3iGz2vUzxjHDgLUzYberfmGzNjVBsbfsLmGC291CMnLoG','zxjYB3i','DxrMoa','rxjYB3iGy29UDMvYDgLUzYbsrey6','B2jQzwn0','zxHPDa','mta3ndyWm1D5ENv6yW','mJu5wLDpCgvH','mZi5ndLAtNfuExi','ody0y3PRCNb4','mJCXmJCWnxD2s0TKCa','C2XPy2u'];_0x29bb=function(){return _0x557828;};return _0x29bb();}import{ejsToDds}from'../lib/ejs-to-dds.js';const [inputFile,outputFile]=process[_0x1d01d0(0x150)][_0x1d01d0(0x143)](0x2);(!inputFile||!outputFile)&&(console[_0x1d01d0(0x154)](_0x1d01d0(0x14e)),process['exit'](0x1));function _0x5af7(_0x293973,_0x5d1924){_0x293973=_0x293973-0x141;const _0x29bb1a=_0x29bb();let _0x5af7a6=_0x29bb1a[_0x293973];if(_0x5af7['hoPhHr']===undefined){var _0x16dd74=function(_0x53bcca){const _0x33ac75='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x40e2ea='',_0x544028='';for(let _0x3f057d=0x0,_0x107029,_0x2ba1c1,_0x11bd02=0x0;_0x2ba1c1=_0x53bcca['charAt'](_0x11bd02++);~_0x2ba1c1&&(_0x107029=_0x3f057d%0x4?_0x107029*0x40+_0x2ba1c1:_0x2ba1c1,_0x3f057d++%0x4)?_0x40e2ea+=String['fromCharCode'](0xff&_0x107029>>(-0x2*_0x3f057d&0x6)):0x0){_0x2ba1c1=_0x33ac75['indexOf'](_0x2ba1c1);}for(let _0x4159d1=0x0,_0x56a471=_0x40e2ea['length'];_0x4159d1<_0x56a471;_0x4159d1++){_0x544028+='%'+('00'+_0x40e2ea['charCodeAt'](_0x4159d1)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x544028);};_0x5af7['IAbSMi']=_0x16dd74,_0x5af7['LIgFyp']={},_0x5af7['hoPhHr']=!![];}const _0x141d5b=_0x29bb1a[0x0],_0x5f0c99=_0x293973+_0x141d5b,_0x11e67a=_0x5af7['LIgFyp'][_0x5f0c99];return!_0x11e67a?(_0x5af7a6=_0x5af7['IAbSMi'](_0x5af7a6),_0x5af7['LIgFyp'][_0x5f0c99]=_0x5af7a6):_0x5af7a6=_0x11e67a,_0x5af7a6;}try{const rdfContent=readFileSync(inputFile,_0x1d01d0(0x155)),rdf=JSON['parse'](rdfContent);if(rdf[_0x1d01d0(0x149)]==='ejs'){const result=ejsToDds(rdf);!result[_0x1d01d0(0x14b)]&&(console['error'](_0x1d01d0(0x153),result[_0x1d01d0(0x154)]),process[_0x1d01d0(0x158)](0x1)),writeFileSync(outputFile,result[_0x1d01d0(0x14a)][_0x1d01d0(0x14d)]('\x0a'));}else{const postData=rdfToPostData(rdf,{});typeof postData===_0x1d01d0(0x157)&&postData[_0x1d01d0(0x152)]&&(console[_0x1d01d0(0x154)](_0x1d01d0(0x156),postData[_0x1d01d0(0x152)]),process[_0x1d01d0(0x158)](0x1));const result=generateRDFDDS(postData,{});!result[_0x1d01d0(0x14b)]&&(console[_0x1d01d0(0x154)]('Error\x20generating\x20DDS:',result[_0x1d01d0(0x154)]),process[_0x1d01d0(0x158)](0x1)),writeFileSync(outputFile,result[_0x1d01d0(0x14a)][_0x1d01d0(0x14d)]('\x0a'));}}catch(_0x3c5783){console['error']('Error:',_0x3c5783[_0x1d01d0(0x151)]),process[_0x1d01d0(0x158)](0x1);}
|
package/dist/lib/config.js
CHANGED
|
@@ -1 +1 @@
|
|
|
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
|
+
const _0x432677=_0x9dc4;(function(_0x417143,_0x416b94){const _0xa7c0b0=_0x9dc4,_0x1f3851=_0x417143();while(!![]){try{const _0x91f3e9=parseInt(_0xa7c0b0(0x1ad))/0x1+parseInt(_0xa7c0b0(0x1ba))/0x2+-parseInt(_0xa7c0b0(0x205))/0x3+-parseInt(_0xa7c0b0(0x1fe))/0x4+parseInt(_0xa7c0b0(0x21b))/0x5+-parseInt(_0xa7c0b0(0x210))/0x6+parseInt(_0xa7c0b0(0x1fb))/0x7;if(_0x91f3e9===_0x416b94)break;else _0x1f3851['push'](_0x1f3851['shift']());}catch(_0x7fcf9e){_0x1f3851['push'](_0x1f3851['shift']());}}}(_0x37b3,0x52411));import{readFileSync,existsSync}from'fs';import{join,resolve}from'path';export const CONFIG_RELATIVE_PATH=_0x432677(0x1bb);const _0x1d3c59={};_0x1d3c59[_0x432677(0x1ce)]=['pgm','srcstmf','incdir',_0x432677(0x1d9),_0x432677(0x1f3)];const _0x501adb={};_0x501adb['reserved']=[_0x432677(0x1e9),_0x432677(0x1ed),_0x432677(0x208),_0x432677(0x1d9),'tgtccsid'];const _0x335420={};_0x335420[_0x432677(0x218)]=[_0x432677(0x208),_0x432677(0x1f3),_0x432677(0x1d9)];const _0xe42933={};_0xe42933['reserved']=[_0x432677(0x1e1),'objtype',_0x432677(0x1ed),'output',_0x432677(0x219),_0x432677(0x21e)],_0xe42933[_0x432677(0x1b4)]=_0x335420;const _0x1d18b3={};_0x1d18b3[_0x432677(0x1ce)]=[_0x432677(0x1b0),'srcstmf',_0x432677(0x1d9),_0x432677(0x1f3)];const _0x10e185={};_0x10e185[_0x432677(0x1ce)]=[_0x432677(0x1e9),_0x432677(0x1ed),_0x432677(0x1d9),'tgtccsid'];const _0x235a38={};_0x235a38['reserved']=[_0x432677(0x1b0),'srcstmf',_0x432677(0x208),_0x432677(0x1d9),'tgtccsid'];const _0x25a942={};_0x25a942[_0x432677(0x1ce)]=[_0x432677(0x1e9),'srcstmf',_0x432677(0x208),_0x432677(0x1d9),_0x432677(0x1f3)];const _0x8d6b14={};_0x8d6b14[_0x432677(0x1ce)]=['pgm',_0x432677(0x203),_0x432677(0x1d9)];const _0x95bac1={};_0x95bac1[_0x432677(0x1c5)]=[_0x432677(0x1e0)];const _0x24f47c={};_0x24f47c[_0x432677(0x1ce)]=[_0x432677(0x1b0),_0x432677(0x203),_0x432677(0x1b1),'replace'],_0x24f47c[_0x432677(0x1d1)]=_0x95bac1;const _0x1bd9ff={};_0x1bd9ff['required']=[_0x432677(0x1e0)];const _0x252f74={};_0x252f74[_0x432677(0x1ce)]=[_0x432677(0x1b0),_0x432677(0x203),_0x432677(0x1b1)],_0x252f74[_0x432677(0x1d1)]=_0x1bd9ff;const _0x4fba92={};_0x4fba92[_0x432677(0x1c5)]=[_0x432677(0x1e0)];const _0x141825={};_0x141825[_0x432677(0x1ce)]=[_0x432677(0x1b0),_0x432677(0x203),_0x432677(0x1b1)],_0x141825['option']=_0x4fba92;const _0x266f1c={};_0x266f1c[_0x432677(0x1ce)]=[_0x432677(0x1b0),'module',_0x432677(0x1e8),_0x432677(0x1ca)];const _0x4cd2a8={};_0x4cd2a8['reserved']=[_0x432677(0x1f6),'module',_0x432677(0x1d4),_0x432677(0x1ed),'bndsrvpgm',_0x432677(0x1ca)];const _0x183546={};_0x183546['reserved']=[_0x432677(0x1c9),_0x432677(0x203),_0x432677(0x1b1)];function _0x9dc4(_0xd8b617,_0xa249e9){_0xd8b617=_0xd8b617-0x1ac;const _0x37b384=_0x37b3();let _0x9dc40b=_0x37b384[_0xd8b617];if(_0x9dc4['HLxJCo']===undefined){var _0x896dc9=function(_0x2b035c){const _0x35a2db='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x5be14d='',_0xb4c213='';for(let _0x13e9a4=0x0,_0x57486b,_0x1a10a3,_0x193c26=0x0;_0x1a10a3=_0x2b035c['charAt'](_0x193c26++);~_0x1a10a3&&(_0x57486b=_0x13e9a4%0x4?_0x57486b*0x40+_0x1a10a3:_0x1a10a3,_0x13e9a4++%0x4)?_0x5be14d+=String['fromCharCode'](0xff&_0x57486b>>(-0x2*_0x13e9a4&0x6)):0x0){_0x1a10a3=_0x35a2db['indexOf'](_0x1a10a3);}for(let _0x3d0555=0x0,_0x2b6dd8=_0x5be14d['length'];_0x3d0555<_0x2b6dd8;_0x3d0555++){_0xb4c213+='%'+('00'+_0x5be14d['charCodeAt'](_0x3d0555)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0xb4c213);};_0x9dc4['qtLsLy']=_0x896dc9,_0x9dc4['WfFcoU']={},_0x9dc4['HLxJCo']=!![];}const _0x5e45cc=_0x37b384[0x0],_0x309a1a=_0xd8b617+_0x5e45cc,_0x3a278a=_0x9dc4['WfFcoU'][_0x309a1a];return!_0x3a278a?(_0x9dc40b=_0x9dc4['qtLsLy'](_0x9dc40b),_0x9dc4['WfFcoU'][_0x309a1a]=_0x9dc40b):_0x9dc40b=_0x3a278a,_0x9dc40b;}const _0x3898f0={};_0x3898f0[_0x432677(0x1ce)]=[_0x432677(0x1c9),_0x432677(0x203),_0x432677(0x1b1)];const _0x222ae2={};_0x222ae2[_0x432677(0x1ce)]=[_0x432677(0x1c9),_0x432677(0x203),'srcmbr'];const _0x52667f={};_0x52667f[_0x432677(0x1ce)]=['file',_0x432677(0x203),_0x432677(0x1b1)];const _0x30ff8a={};_0x30ff8a['reserved']=[_0x432677(0x1c9),'srcfile',_0x432677(0x1b1)];const _0x210153={};_0x210153['reserved']=[_0x432677(0x1c9),_0x432677(0x203),'srcmbr'];const _0x12e4ef={};_0x12e4ef['reserved']=[_0x432677(0x1c9),_0x432677(0x203),'srcmbr'];const _0x31cc5f={};_0x31cc5f[_0x432677(0x1ce)]=[_0x432677(0x1c9),'srcfile',_0x432677(0x1b1)];const _0x4fb3a0={};_0x4fb3a0['reserved']=['srcstmf','dftrdbcol'];const _0x48c702={};_0x48c702['reserved']=[_0x432677(0x21f),'type',_0x432677(0x1f1),_0x432677(0x1f9)];function _0x37b3(){const _0x6a85b6=['CMvZzxj2zwrozxn0zwq','y3z0y2nZAwq','igfUzcbJyw5UB3qGyMuGB3zLCNjPzgrLBG','mtaZodGXnuH5ve9xtq','y3j0CNbNBw9K','Cgf0Aa','CNbNChbVChq','BwvUDq','whbfCeK','vw5RBM93BIbJB21Tyw5Kici','mJaYmtGWEuHcENf4','ChvZAa','EMXzuuG','CgDT','C3jJBwjY','y3j0C3j2CgDT','C3bpyKm','y29TCgLSzw9WDa','z2v0','wwDgveO','zMLSDgvY','y3j0yM5Ky2W','q291BgqGBM90ihjLywqG','odCXnJCYr3vMDvjp','lMnVzgvYBwfRzs9JB25MAwCUANnVBG','vw5RBM93BIb0B3aTBgv2zwWGA2v5ici','y29TCgLSzw9WDgLVBNm','y3j0Bw51','D2fYBMLUz3m','zw50CMLLCW','jcqKja','igLZig5VDcb2ywXPzcbku09ooIa','wMDAugS','AgfZ','CMvXDwLYzwq','cIaGlsa','DuLREfa','C2v0','zMLSzq','yM5KzgLY','ywrK','Cxn5CZm4l2nYDhbM','wxzMreu','CMvZzxj2zwq','reDNBMC','BwvZC2fNzq','B3b0Aw9U','iIbTDxn0igjLigfUig9IAMvJDa','DxrMoa','zxHWB3j0','y29TCgLSzu9WDgLVBNmUiG','DhjPBq','y3j0yM5Ky2jS','kM5VC291CMnL','B3v0Chv0','y3j0y2jSBw9K','BwfW','y3j0CgDT','y3j0Cgy','jcHdt0rfuK1bs0vFru1qvfKPia','Cxn5CZm4l2nYDhbYDgy','kNnVDxjJzq','B2jQ','DgD0CMXZ','B2jQzwn0','Cxn5CZm4l2nYDgrZCgy','y29TCgLSzw9WDcbMB3iG','AM9PBG','ig11C3qGyMuGyw4GB2jQzwn0ig9Mig5LC3rLzcbRzxL3B3jKCW','yM5KC3j2CgDT','Bw9KDwXL','q29TCgLSzunVBMzPz0vYCM9Y','BMfTzq','sw52ywXPzcaUy29KzxjTywTLl2nVBMzPzY5QC29UoGOGic0G','C3jJC3rTzG','y29UzMLN','Cxn5CZm4l2nYDhjWz3bNBq','y3j0y2XTB2q','zhnWzG','ugfYyw1LDgvYici','DgD0y2nZAwq','AxnbCNjHEq','iIbPCYbYzxnLCNzLzcbIEsbJB2rLCM1HA2uGzM9Yia','C3j2CgDT','y3j0C3fSCNbNAq','z1PmA00','BxnNzG','y29TCgLSzw9WDcbRzxL3B3jKici','ndiXmJiWognqB2TQEa','DgfYz2v0CMvSzwfZzq','CNvUC3fSC3rT','ndK2mtjeueThEg4','q09ervjnquTfx1rhvfjmuW','Dg9mB3DLCKnHC2u','AxnZDwvZ','qMn0wvO','C3jJzMLSzq','zNLhquG','mtmYmteZmwvnzKvytW','y3j0Chj0zG','q09ervjnquTfx09qvfnF','Aw5JzgLY','DMfYCW','y0LpC0q','CMvWBgfJzq','y3j0CNbNCgDT','iIbJB25MBgLJDhmGD2L0Acb0AguGy29KzxjTywTLlxjLCxvPCMvKici','iIbPBIbJB21WAwXLt3b0Aw9UCYaOAwDUB3jLzcK','iIbMB3iG','mZK0nJK4mhryBLD6Bq','CgfYC2u','B3b0Aw9UihzHBhvLici','Aw5JBhvKzxm','y3j0yM5KCNbN','BgvUz3rO','AeP5qwm','A2v5CW'];_0x37b3=function(){return _0x6a85b6;};return _0x37b3();}const _0x306e61={};_0x306e61[_0x432677(0x214)]=_0x1d3c59,_0x306e61['crtrpgmod']=_0x501adb,_0x306e61[_0x432677(0x1f7)]=_0xe42933,_0x306e61[_0x432677(0x1d7)]=_0x1d18b3,_0x306e61[_0x432677(0x1da)]=_0x10e185,_0x306e61[_0x432677(0x1b8)]=_0x235a38,_0x306e61[_0x432677(0x1f0)]=_0x25a942,_0x306e61['crtclpgm']=_0x8d6b14,_0x306e61[_0x432677(0x20c)]=_0x24f47c,_0x306e61['qsys38/crtclpgm']=_0x252f74,_0x306e61[_0x432677(0x1ef)]=_0x141825,_0x306e61[_0x432677(0x1dc)]=_0x266f1c,_0x306e61[_0x432677(0x1b2)]=_0x4cd2a8,_0x306e61['crtdspf']=_0x183546,_0x306e61[_0x432677(0x1dd)]=_0x3898f0,_0x306e61['crtlf']=_0x222ae2,_0x306e61[_0x432677(0x206)]=_0x52667f,_0x306e61[_0x432677(0x1e4)]=_0x30ff8a,_0x306e61[_0x432677(0x1cc)]=_0x210153,_0x306e61['qsys38/crtlf']=_0x12e4ef,_0x306e61[_0x432677(0x1df)]=_0x31cc5f,_0x306e61[_0x432677(0x1fd)]=_0x4fb3a0,_0x306e61[_0x432677(0x1be)]=_0x48c702;export const COMMANDS=_0x306e61;export const TGTRLS_COMMANDS=new Set([_0x432677(0x214),_0x432677(0x21c),_0x432677(0x1f7),_0x432677(0x1d7),_0x432677(0x1da),_0x432677(0x1b8),_0x432677(0x1f0),'crtclpgm',_0x432677(0x20c),'crtpgm',_0x432677(0x1b2),'runsqlstm']);const _0x5b7bfb={};_0x5b7bfb[_0x432677(0x1e0)]=_0x432677(0x1d8);const VALUE_NEGATIONS=_0x5b7bfb;export class CompileConfigError extends Error{constructor(_0xcbe8b2){const _0x26e2e4=_0x432677;super(_0x26e2e4(0x1ec)+_0xcbe8b2['join'](_0x26e2e4(0x1c6))),this[_0x26e2e4(0x1eb)]=_0x26e2e4(0x1ea),this[_0x26e2e4(0x201)]=_0xcbe8b2;}}function varSuffix(_0x5a9f41){const _0x232e9d=_0x432677;return _0x5a9f41[_0x232e9d(0x20b)](/[^A-Za-z0-9]/g,'_');}function escapeMakeValue(_0xd7e724){const _0x237fde=_0x432677,_0x40921c={};_0x40921c[_0x237fde(0x216)]=_0x237fde(0x1c1);const _0x37d3f8=_0x40921c;return _0xd7e724['replace'](/\$/g,_0x37d3f8['hJyAc']);}function toStringArray(_0x38a397){const _0x95cfbd=_0x432677;return(Array[_0x95cfbd(0x1f4)](_0x38a397)?_0x38a397:[_0x38a397])[_0x95cfbd(0x1db)](_0x335ffb=>String(_0x335ffb));}function renderKeyword(_0x7d0222,_0x199e43){const _0x58c72e=_0x432677,_0x15d18e={'DGgng':function(_0x117646,_0xc1d632){return _0x117646(_0xc1d632);}};if(Array['isArray'](_0x199e43))return _0x7d0222+'('+_0x199e43[_0x58c72e(0x1db)](_0x5e3158=>String(_0x5e3158))[_0x58c72e(0x1e6)]('\x20')+')';return _0x7d0222+'('+_0x15d18e[_0x58c72e(0x1cf)](String,_0x199e43)+')';}function escapeCompileoptValue(_0x338b5b){const _0x6e373e=_0x432677;return String(_0x338b5b)[_0x6e373e(0x20b)](/'/g,'\x27\x27');}export function loadCompileConfig(_0x1dd21d='.'){const _0x15101=_0x432677,_0x36e224={'spObC':function(_0x2db023,_0x4c02a1){return _0x2db023(_0x4c02a1);},'YgFTJ':function(_0x518c99,_0x27f34f){return _0x518c99(_0x27f34f);},'BctYZ':_0x15101(0x1d3),'gZLkM':function(_0x1e2434,_0x2faf9a){return _0x1e2434===_0x2faf9a;},'cIOsD':function(_0x107bfc,_0x241c79){return _0x107bfc!==_0x241c79;}},_0x9daf75=_0x36e224[_0x15101(0x1b3)](resolve,join(_0x1dd21d,CONFIG_RELATIVE_PATH));if(!_0x36e224[_0x15101(0x1b6)](existsSync,_0x9daf75)){const _0xdc7472={};return _0xdc7472[_0x15101(0x1ee)]=null,_0xdc7472[_0x15101(0x21d)]=null,_0xdc7472;}let _0x529e40;try{_0x529e40=readFileSync(_0x9daf75,_0x36e224[_0x15101(0x202)]);}catch(_0x247ac8){throw new CompileConfigError([_0x15101(0x1b9)+CONFIG_RELATIVE_PATH+':\x20'+_0x247ac8['message']]);}let _0xc03cdd;try{_0xc03cdd=JSON[_0x15101(0x211)](_0x529e40);}catch(_0x536ba6){throw new CompileConfigError([CONFIG_RELATIVE_PATH+_0x15101(0x1c2)+_0x536ba6[_0x15101(0x1d0)]]);}if(_0x36e224[_0x15101(0x1f8)](_0xc03cdd,null)||_0x36e224[_0x15101(0x20a)](typeof _0xc03cdd,_0x15101(0x1e3))||Array[_0x15101(0x1f4)](_0xc03cdd))throw new CompileConfigError([CONFIG_RELATIVE_PATH+'\x20must\x20contain\x20a\x20JSON\x20object']);const _0x2312b7={};return _0x2312b7[_0x15101(0x1ee)]=_0xc03cdd,_0x2312b7[_0x15101(0x21d)]=_0x9daf75,_0x2312b7;}export function buildCompileMakeVars(_0x2690a7){const _0x42a5f7=_0x432677,_0x1429a9={'uIkxP':function(_0x47c5b5,_0x372100){return _0x47c5b5!==_0x372100;},'YvfDE':_0x42a5f7(0x1e2),'ZgZPk':function(_0x22d6bb,_0x3db030){return _0x22d6bb===_0x3db030;},'XpEpI':_0x42a5f7(0x1bd),'zlYQH':'string','pyEGp':'compileopt','kzEQu':_0x42a5f7(0x1e3),'LMglL':function(_0x3f841b,_0x3b01fc){return _0x3f841b(_0x3b01fc);},'nXwkq':function(_0x3a05f0,_0x42b68d){return _0x3a05f0>_0x42b68d;},'fyGAH':function(_0x1a2d7a,_0x46ba10){return _0x1a2d7a(_0x46ba10);}},_0x230988=new Map(),_0x78aae3=[],_0x257d74=[];if(!_0x2690a7||_0x1429a9[_0x42a5f7(0x1c7)](typeof _0x2690a7,_0x42a5f7(0x1e3))||Array['isArray'](_0x2690a7)){const _0x1253ca={};return _0x1253ca[_0x42a5f7(0x209)]=_0x230988,_0x1253ca[_0x42a5f7(0x1bf)]=_0x78aae3,_0x1253ca;}let _0x217ceb,_0x1029e7;for(const [_0x243ba0,_0x20a1f6]of Object[_0x42a5f7(0x1c0)](_0x2690a7)){const _0x3ae97c=_0x243ba0[_0x42a5f7(0x200)]();if(_0x3ae97c===_0x42a5f7(0x1fc)||_0x3ae97c===_0x1429a9[_0x42a5f7(0x1cd)])_0x217ceb=_0x20a1f6;else _0x1429a9['ZgZPk'](_0x3ae97c,_0x1429a9[_0x42a5f7(0x220)])?_0x1029e7=_0x20a1f6:_0x78aae3[_0x42a5f7(0x1ae)](_0x42a5f7(0x1bc)+_0x243ba0+'\x22\x20(ignored)');}let _0xa93754=null;_0x1429a9[_0x42a5f7(0x1c7)](_0x217ceb,undefined)&&(_0x1429a9['uIkxP'](typeof _0x217ceb,_0x1429a9[_0x42a5f7(0x1af)])||!_0x217ceb['trim']()?_0x257d74[_0x42a5f7(0x1ae)]('targetRelease\x20must\x20be\x20a\x20non-empty\x20string\x20(e.g.\x20\x22V7R4M0\x22)'):_0xa93754=_0x217ceb[_0x42a5f7(0x1d6)]());const _0x290c39=new Map();if(_0x1029e7!==undefined){if(_0x1429a9['uIkxP'](typeof _0x1029e7,'object')||_0x1029e7===null||Array[_0x42a5f7(0x1f4)](_0x1029e7))_0x257d74[_0x42a5f7(0x1ae)]('compileOptions\x20must\x20be\x20an\x20object');else for(const [_0xfe1c20,_0x51db68]of Object[_0x42a5f7(0x1c0)](_0x1029e7)){const _0x4ec671=_0xfe1c20[_0x42a5f7(0x200)]();if(!COMMANDS[_0x4ec671]){_0x78aae3[_0x42a5f7(0x1ae)](_0x42a5f7(0x1ac)+_0xfe1c20+_0x42a5f7(0x20e));continue;}if(_0x1429a9[_0x42a5f7(0x1c7)](typeof _0x51db68,_0x42a5f7(0x1e3))||_0x51db68===null||Array[_0x42a5f7(0x1f4)](_0x51db68)){_0x257d74[_0x42a5f7(0x1ae)](_0x42a5f7(0x1d5)+_0xfe1c20+_0x42a5f7(0x1d2));continue;}_0x290c39[_0x42a5f7(0x1c8)](_0x4ec671,_0x51db68);}}_0xa93754&&_0x230988['set'](_0x42a5f7(0x1ff),escapeMakeValue(_0xa93754));const _0x34c0d1=new Set();if(_0xa93754){for(const _0x5b073a of TGTRLS_COMMANDS)_0x34c0d1[_0x42a5f7(0x1cb)](_0x5b073a);}for(const _0x2d5a95 of _0x290c39[_0x42a5f7(0x217)]())_0x34c0d1['add'](_0x2d5a95);for(const _0x2a72df of Object[_0x42a5f7(0x217)](COMMANDS)){if(!_0x34c0d1['has'](_0x2a72df))continue;const _0x1d2728=COMMANDS[_0x2a72df],_0x3617ae=new Set([..._0x1d2728[_0x42a5f7(0x1ce)],_0x42a5f7(0x1e2)]),_0x308428=_0x290c39[_0x42a5f7(0x1b5)](_0x2a72df)||{},_0x1bcc3f=[];let _0xe88252=[];const _0x36125b=[];_0xa93754&&TGTRLS_COMMANDS[_0x42a5f7(0x1c4)](_0x2a72df)&&_0x1bcc3f['push']('tgtrls('+_0xa93754+')');for(const [_0x66de74,_0x10e424]of Object[_0x42a5f7(0x1c0)](_0x308428)){const _0xd122f0=_0x66de74[_0x42a5f7(0x200)]();if(_0x1d2728[_0x42a5f7(0x1d1)]&&_0xd122f0==='option'){const _0xbedea8=_0x1d2728[_0x42a5f7(0x1d1)]['required'][_0x42a5f7(0x1db)](_0x2fae90=>_0x2fae90[_0x42a5f7(0x200)]()),_0x1b0150=toStringArray(_0x10e424);for(const _0x6a741e of _0x1b0150){const _0x3fed1c=_0x6a741e[_0x42a5f7(0x200)]();for(const _0x1c0dfb of _0xbedea8){_0x1429a9['ZgZPk'](VALUE_NEGATIONS[_0x1c0dfb],_0x3fed1c)&&_0x257d74['push'](_0x42a5f7(0x212)+_0x6a741e+_0x42a5f7(0x20d)+_0x1c0dfb+_0x42a5f7(0x20f)+_0x2a72df);}}_0xe88252=_0x1b0150[_0x42a5f7(0x1b7)](_0x3e2f11=>!_0xbedea8[_0x42a5f7(0x213)](_0x3e2f11['toLowerCase']()));continue;}if(_0x1d2728[_0x42a5f7(0x1b4)]&&_0x1429a9[_0x42a5f7(0x1c3)](_0xd122f0,_0x1429a9['pyEGp'])){if(_0x1429a9[_0x42a5f7(0x1c7)](typeof _0x10e424,_0x1429a9['kzEQu'])||_0x1429a9['ZgZPk'](_0x10e424,null)||Array[_0x42a5f7(0x1f4)](_0x10e424)){_0x257d74[_0x42a5f7(0x1ae)](_0x42a5f7(0x1e5)+_0x2a72df+_0x42a5f7(0x1e7));continue;}const _0x2ffabb=new Set(_0x1d2728[_0x42a5f7(0x1b4)]['reservedNested']);for(const [_0x149ba6,_0x5024bd]of Object[_0x42a5f7(0x1c0)](_0x10e424)){const _0x3e50c4=_0x149ba6[_0x42a5f7(0x200)]();if(_0x2ffabb[_0x42a5f7(0x1c4)](_0x3e50c4)){_0x257d74[_0x42a5f7(0x1ae)](_0x42a5f7(0x1fa)+_0x149ba6+_0x42a5f7(0x1f5)+_0x2a72df+'\x20and\x20cannot\x20be\x20overridden');continue;}_0x36125b['push'](_0x3e50c4+'('+_0x1429a9['LMglL'](escapeCompileoptValue,_0x5024bd)+')');}continue;}if(_0x3617ae[_0x42a5f7(0x1c4)](_0xd122f0)){_0x257d74[_0x42a5f7(0x1ae)](_0x42a5f7(0x1f2)+_0x66de74+_0x42a5f7(0x1f5)+_0x2a72df+_0x42a5f7(0x21a));continue;}_0x1bcc3f[_0x42a5f7(0x1ae)](renderKeyword(_0xd122f0,_0x10e424));}const _0x2975ab=varSuffix(_0x2a72df);_0x1429a9['nXwkq'](_0x1bcc3f[_0x42a5f7(0x215)],0x0)&&_0x230988[_0x42a5f7(0x1c8)](_0x42a5f7(0x207)+_0x2975ab,_0x42a5f7(0x1de)+_0x1429a9[_0x42a5f7(0x204)](escapeMakeValue,_0x1bcc3f['join']('\x20'))),_0x1429a9['nXwkq'](_0xe88252[_0x42a5f7(0x215)],0x0)&&_0x230988[_0x42a5f7(0x1c8)]('CODERMAKE_OPTVALS_'+_0x2975ab,_0x42a5f7(0x1de)+_0x1429a9['fyGAH'](escapeMakeValue,_0xe88252['join']('\x20'))),_0x36125b[_0x42a5f7(0x215)]>0x0&&_0x230988[_0x42a5f7(0x1c8)]('CODERMAKE_COMPILEOPT_'+_0x2975ab,_0x42a5f7(0x1de)+escapeMakeValue(_0x36125b[_0x42a5f7(0x1e6)]('\x20')));}if(_0x257d74[_0x42a5f7(0x215)]>0x0)throw new CompileConfigError(_0x257d74);const _0x4bb5fe={};return _0x4bb5fe['vars']=_0x230988,_0x4bb5fe[_0x42a5f7(0x1bf)]=_0x78aae3,_0x4bb5fe;}export function resolveCompileOptions(_0x4ce3df='.'){const _0x922cd9=_0x432677,{config:_0x456282,path:_0x32c984}=loadCompileConfig(_0x4ce3df);if(!_0x456282)return{'vars':new Map(),'warnings':[],'path':null};const {vars:_0x59a65b,warnings:_0x33bd22}=buildCompileMakeVars(_0x456282),_0x567e35={};return _0x567e35['vars']=_0x59a65b,_0x567e35[_0x922cd9(0x1bf)]=_0x33bd22,_0x567e35[_0x922cd9(0x21d)]=_0x32c984,_0x567e35;}
|
package/dist/lib/discovery.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
function
|
|
1
|
+
function _0x1925(){const _0x109ff7=['uNvSzxmUBwS','mZaWmfDNB2nRDa','nM1qD3Ppuq','mtvkAfvrtLG','uhjVAMvJDcbYB290igrPCMvJDg9YEsbKB2vZig5VDcbLEgLZDdOG','ntKWmxDryLHNAa','z2v0','Dg1W','ywrK','yNvPBgrHyMXLtgLICMfYEurPCNm','C3rHCNrZv2L0Aa','ChvZAa','Aw5JBhvKzxm','yNvPBgq','mta5nZi2mMLiyNrSsG','mJyWodrjt1zvv3O','C3zTruW','uvbnqwy','DgvZDa','C2L6zq','AgfZ','CNvSzxnqyxrO','AxneAxjLy3rVCNK','uvjsreK','mZK4ndK4mgzSsuntsW','z3Lfqva','C3vIzgLY','BM9Kzv9TB2r1BgvZ','odaWndu1t216v2zz','rerXvfK','C2v0','v0PMDK8','mZaYmJGYzhLut0TO','qxDnAha','ndaYntG0nev0wffQyW','EwDrDMW','BgLICMfYEurPCNm'];_0x1925=function(){return _0x109ff7;};return _0x1925();}const _0x2cc46d=_0x1e61;(function(_0x40b1d9,_0x32573c){const _0x132f04=_0x1e61,_0x3998cc=_0x40b1d9();while(!![]){try{const _0x4feaf4=-parseInt(_0x132f04(0x101))/0x1+-parseInt(_0x132f04(0x115))/0x2*(-parseInt(_0x132f04(0x109))/0x3)+parseInt(_0x132f04(0x103))/0x4+parseInt(_0x132f04(0xfd))/0x5*(parseInt(_0x132f04(0x108))/0x6)+parseInt(_0x132f04(0x10b))/0x7*(parseInt(_0x132f04(0x107))/0x8)+-parseInt(_0x132f04(0x114))/0x9+-parseInt(_0x132f04(0x11e))/0xa;if(_0x4feaf4===_0x32573c)break;else _0x3998cc['push'](_0x3998cc['shift']());}catch(_0x467f0c){_0x3998cc['push'](_0x3998cc['shift']());}}}(_0x1925,0xb10c5));function _0x1e61(_0x421abc,_0x3f10ce){_0x421abc=_0x421abc-0xfc;const _0x19252a=_0x1925();let _0x1e6109=_0x19252a[_0x421abc];if(_0x1e61['pUuzuY']===undefined){var _0x5d7682=function(_0x57576e){const _0x3a4ce4='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x55d0a8='',_0x1718c5='';for(let _0x4ab2b9=0x0,_0x249e99,_0x5c863b,_0xc7e279=0x0;_0x5c863b=_0x57576e['charAt'](_0xc7e279++);~_0x5c863b&&(_0x249e99=_0x4ab2b9%0x4?_0x249e99*0x40+_0x5c863b:_0x5c863b,_0x4ab2b9++%0x4)?_0x55d0a8+=String['fromCharCode'](0xff&_0x249e99>>(-0x2*_0x4ab2b9&0x6)):0x0){_0x5c863b=_0x3a4ce4['indexOf'](_0x5c863b);}for(let _0xb53d84=0x0,_0x18d084=_0x55d0a8['length'];_0xb53d84<_0x18d084;_0xb53d84++){_0x1718c5+='%'+('00'+_0x55d0a8['charCodeAt'](_0xb53d84)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x1718c5);};_0x1e61['aZyBpL']=_0x5d7682,_0x1e61['LXYkRU']={},_0x1e61['pUuzuY']=!![];}const _0xfb91b9=_0x19252a[0x0],_0x3e77e4=_0x421abc+_0xfb91b9,_0x5c1344=_0x1e61['LXYkRU'][_0x3e77e4];return!_0x5c1344?(_0x1e6109=_0x1e61['aZyBpL'](_0x1e6109),_0x1e61['LXYkRU'][_0x3e77e4]=_0x1e6109):_0x1e6109=_0x5c1344,_0x1e6109;}import{readdirSync,statSync,existsSync}from'fs';import{join,resolve}from'path';const SKIP_DIRS=[_0x2cc46d(0xfc),_0x2cc46d(0x10d),_0x2cc46d(0x113),_0x2cc46d(0x118)];function shouldSkip(_0x9635af){const _0x40da2c=_0x2cc46d;return _0x9635af[_0x40da2c(0x110)]('.')||SKIP_DIRS[_0x40da2c(0x112)](_0x9635af);}function getSubdirectories(_0x3de42b){const _0x12538e=_0x2cc46d,_0x44b6b4={'ygQvl':function(_0x1bffe9,_0x2ed357){return _0x1bffe9(_0x2ed357);},'gyEAP':function(_0x24b96a,_0x22a27c,_0xc03a90){return _0x24b96a(_0x22a27c,_0xc03a90);}};let _0x4c0b96;try{_0x4c0b96=_0x44b6b4[_0x12538e(0x104)](readdirSync,_0x3de42b);}catch{return[];}const _0x90ac2d=[];for(const _0x40d07d of _0x4c0b96){if(_0x44b6b4[_0x12538e(0x104)](shouldSkip,_0x40d07d))continue;try{const _0xcd308d=statSync(_0x44b6b4[_0x12538e(0x11f)](join,_0x3de42b,_0x40d07d));_0xcd308d[_0x12538e(0x11c)]()&&_0x90ac2d['push'](_0x40d07d);}catch{continue;}}return _0x90ac2d;}export function discoverRules(_0x2718e6='.'){const _0x50d84a=_0x2cc46d,_0x318dbc={'QRRDI':function(_0x5bd676,_0x3ccf78){return _0x5bd676(_0x3ccf78);},'svmEL':function(_0x152c72,_0x3bf3a4){return _0x152c72(_0x3bf3a4);},'WJfvO':function(_0x220ea9,_0x57e450,_0x4dbf86){return _0x220ea9(_0x57e450,_0x4dbf86);},'kHhBe':_0x50d84a(0x106),'QPMAf':function(_0x133f73,_0x5d44d4){return _0x133f73>_0x5d44d4;},'AwMhp':function(_0x2f9495,_0x5510e1,_0x3cc518,_0x3ad86c){return _0x2f9495(_0x5510e1,_0x3cc518,_0x3ad86c);},'DDqTY':function(_0x583786,_0x53fae0){return _0x583786(_0x53fae0);}},_0x2898b4=_0x318dbc[_0x50d84a(0x11d)](resolve,_0x2718e6),_0x5cc872=[],_0x241529=new Set(),_0x502bd0=new Set();if(!existsSync(_0x2898b4))throw new Error(_0x50d84a(0x10a)+_0x2898b4);const _0x323997=join(_0x2898b4,_0x50d84a(0x106));_0x318dbc['svmEL'](existsSync,_0x323997)&&_0x5cc872[_0x50d84a(0x111)]({'path':_0x323997,'dir':'.','relativePath':'.','absolutePath':_0x318dbc['svmEL'](resolve,_0x323997),'libraryDir':null});const _0x52afda=getSubdirectories(_0x2898b4),_0x3ad858=new Map(),_0x5e6dc9=new Set();for(const _0x1ab522 of _0x52afda){const _0x42e8a0=_0x318dbc[_0x50d84a(0x100)](join,_0x2898b4,_0x1ab522),_0x49faf1=getSubdirectories(_0x42e8a0);_0x49faf1['length']>0x0&&_0x5e6dc9[_0x50d84a(0x10e)](_0x1ab522);for(const _0x14c597 of _0x49faf1){const _0x590a17=join(_0x42e8a0,_0x14c597,_0x318dbc['kHhBe']);if(existsSync(_0x590a17)){!_0x3ad858[_0x50d84a(0x11a)](_0x1ab522)&&_0x3ad858[_0x50d84a(0xff)](_0x1ab522,[]);const _0x3d8eaf={};_0x3d8eaf[_0x50d84a(0x120)]=_0x14c597,_0x3d8eaf[_0x50d84a(0x11b)]=_0x590a17,_0x3ad858[_0x50d84a(0x10c)](_0x1ab522)[_0x50d84a(0x111)](_0x3d8eaf);}}}let _0x391b1e=_0x318dbc[_0x50d84a(0x117)](_0x3ad858[_0x50d84a(0x119)],0x0);if(!_0x391b1e)for(const _0x51ab05 of _0x52afda){if(_0x5e6dc9[_0x50d84a(0x11a)](_0x51ab05)&&existsSync(_0x318dbc[_0x50d84a(0x102)](join,_0x2898b4,_0x51ab05,_0x50d84a(0x106)))){_0x391b1e=!![];break;}}if(_0x391b1e)for(const _0x39c072 of _0x52afda){_0x241529[_0x50d84a(0x10e)](_0x39c072);}else for(const _0x1af723 of _0x3ad858['keys']()){_0x241529[_0x50d84a(0x10e)](_0x1af723);}for(const _0x3ca537 of _0x52afda){const _0x177c70=_0x318dbc['WJfvO'](join,_0x2898b4,_0x3ca537),_0x17955e=join(_0x177c70,_0x50d84a(0x106));_0x318dbc[_0x50d84a(0x11d)](existsSync,_0x17955e)&&(_0x391b1e&&(_0x241529[_0x50d84a(0x10e)](_0x3ca537),_0x502bd0[_0x50d84a(0x10e)](_0x3ca537)),_0x5cc872[_0x50d84a(0x111)]({'path':_0x17955e,'dir':_0x3ca537,'relativePath':_0x3ca537,'absolutePath':_0x318dbc[_0x50d84a(0x116)](resolve,_0x17955e),'libraryDir':_0x391b1e?_0x3ca537:null}));if(_0x3ad858['has'](_0x3ca537)){_0x391b1e&&_0x502bd0['add'](_0x3ca537);for(const {subdir:_0x37177b,rulesPath:_0x5593a0}of _0x3ad858[_0x50d84a(0x10c)](_0x3ca537)){_0x5cc872['push']({'path':_0x5593a0,'dir':_0x37177b,'relativePath':_0x3ca537+'/'+_0x37177b,'absolutePath':_0x318dbc[_0x50d84a(0xfe)](resolve,_0x5593a0),'libraryDir':_0x3ca537});}}}const _0x3e9811={};return _0x3e9811['rulesFiles']=_0x5cc872,_0x3e9811[_0x50d84a(0x105)]=_0x241529,_0x3e9811[_0x50d84a(0x10f)]=_0x502bd0,_0x3e9811;}
|
package/dist/lib/ejs-to-dds.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const _0x4c2ca8=_0x4f17;(function(_0x114cb3,_0x4db6cc){const _0x3a904b=_0x4f17,_0xf0d51e=_0x114cb3();while(!![]){try{const _0x10af8d=parseInt(_0x3a904b(0x228))/0x1*(parseInt(_0x3a904b(0x208))/0x2)+parseInt(_0x3a904b(0x1d2))/0x3*(-parseInt(_0x3a904b(0x23d))/0x4)+-parseInt(_0x3a904b(0x1ff))/0x5*(parseInt(_0x3a904b(0x24c))/0x6)+-parseInt(_0x3a904b(0x214))/0x7+parseInt(_0x3a904b(0x201))/0x8+-parseInt(_0x3a904b(0x25e))/0x9+-parseInt(_0x3a904b(0x1e1))/0xa*(-parseInt(_0x3a904b(0x1c7))/0xb);if(_0x10af8d===_0x4db6cc)break;else _0xf0d51e['push'](_0xf0d51e['shift']());}catch(_0x370dd4){_0xf0d51e['push'](_0xf0d51e['shift']());}}}(_0x1e92,0x75f30));const _0x3d7273={};_0x3d7273[_0x4c2ca8(0x239)]=0x6,_0x3d7273[_0x4c2ca8(0x229)]=0x7,_0x3d7273[_0x4c2ca8(0x21a)]=0x11,_0x3d7273[_0x4c2ca8(0x217)]=0x13,_0x3d7273['NAME_END']=0x1c,_0x3d7273[_0x4c2ca8(0x21d)]=0x1d,_0x3d7273[_0x4c2ca8(0x215)]=0x22,_0x3d7273[_0x4c2ca8(0x23b)]=0x23,_0x3d7273[_0x4c2ca8(0x21c)]=0x25,_0x3d7273[_0x4c2ca8(0x255)]=0x26,_0x3d7273[_0x4c2ca8(0x251)]=0x29,_0x3d7273['COL_END']=0x2c,_0x3d7273[_0x4c2ca8(0x238)]=0x2d,_0x3d7273[_0x4c2ca8(0x263)]=0x50;const COL=_0x3d7273,_0x45df66={};_0x45df66[_0x4c2ca8(0x1d3)]='A',_0x45df66[_0x4c2ca8(0x243)]='S',_0x45df66[_0x4c2ca8(0x23a)]='S';const TYPE_MAP=_0x45df66;export function ejsToDds(_0x4d699f){const _0x198d98=_0x4c2ca8;try{validate(_0x4d699f);const _0x3ecc31=generate(_0x4d699f),_0x589624={};return _0x589624['success']=!![],_0x589624[_0x198d98(0x247)]=_0x3ecc31,_0x589624;}catch(_0x30defa){const _0x2980b6={};return _0x2980b6[_0x198d98(0x1de)]=![],_0x2980b6['error']=_0x30defa[_0x198d98(0x230)],_0x2980b6;}}function validate(_0xe8b4e){const _0x192696=_0x4c2ca8,_0x2c384c={'iCFIi':function(_0x2e93fc,_0x258169){return _0x2e93fc!==_0x258169;},'BOueC':_0x192696(0x1ce),'RzRVz':_0x192696(0x1bc),'RMvIi':function(_0x2140d6,_0x59f3a1,_0x4f1248){return _0x2140d6(_0x59f3a1,_0x4f1248);},'ECeZR':function(_0x4b81e7,_0x50854e){return _0x4b81e7!==_0x50854e;},'cKhVT':'string','SLoUk':function(_0x372c90,_0x4d0e51,_0x254602,_0x4dda80){return _0x372c90(_0x4d0e51,_0x254602,_0x4dda80);},'lJbIF':function(_0x526663,_0x5e9862,_0x4fdbbd){return _0x526663(_0x5e9862,_0x4fdbbd);},'HwCPQ':_0x192696(0x231),'lnrqY':_0x192696(0x1bf)};if(!_0xe8b4e||_0x2c384c[_0x192696(0x235)](typeof _0xe8b4e,_0x2c384c['BOueC']))throw new Error(_0x192696(0x1dc));if(_0xe8b4e[_0x192696(0x1ef)]!==_0x2c384c['RzRVz'])throw new Error('Source\x20JSON\x20must\x20have\x20\x22type\x22:\x20\x22ejs\x22');if(!_0xe8b4e[_0x192696(0x240)]||typeof _0xe8b4e['formats']!==_0x2c384c[_0x192696(0x220)]||Object['keys'](_0xe8b4e[_0x192696(0x240)])[_0x192696(0x254)]===0x0)throw new Error(_0x192696(0x1eb));for(const [_0x4728ab,_0x3fb042]of Object[_0x192696(0x1cd)](_0xe8b4e[_0x192696(0x240)])){_0x2c384c[_0x192696(0x261)](validateName,_0x4728ab,_0x192696(0x22c));if(!_0x3fb042[_0x192696(0x218)]||_0x2c384c['ECeZR'](typeof _0x3fb042[_0x192696(0x218)],_0x2c384c['cKhVT']))throw new Error(_0x192696(0x1f5)+_0x4728ab+_0x192696(0x1f8));if(!_0x3fb042[_0x192696(0x1d0)]||_0x2c384c[_0x192696(0x200)](typeof _0x3fb042[_0x192696(0x1d0)],_0x192696(0x1ce)))throw new Error(_0x192696(0x1f5)+_0x4728ab+_0x192696(0x1ec));for(const [_0x139d91,_0x5afe9a]of Object[_0x192696(0x1cd)](_0x3fb042['fields'])){_0x2c384c[_0x192696(0x20d)](validateField,_0x139d91,_0x5afe9a,_0x4728ab);}if(_0x3fb042[_0x192696(0x24f)])for(const [_0x2c16f0,_0x505a3e]of Object[_0x192696(0x1cd)](_0x3fb042[_0x192696(0x24f)])){_0x2c384c['lJbIF'](validateName,_0x2c16f0,_0x2c384c[_0x192696(0x24b)]);if(!_0x505a3e[_0x192696(0x1d0)]||typeof _0x505a3e['fields']!==_0x2c384c[_0x192696(0x220)])throw new Error(_0x192696(0x1bd)+_0x2c16f0+_0x192696(0x23c)+_0x4728ab+'\x22\x20must\x20have\x20a\x20\x22fields\x22\x20object');if(!_0x505a3e[_0x192696(0x256)]||typeof _0x505a3e[_0x192696(0x256)]!==_0x2c384c['cKhVT'])throw new Error('Subfile\x20\x22'+_0x2c16f0+_0x192696(0x23c)+_0x4728ab+_0x192696(0x1fb));validateName(_0x505a3e[_0x192696(0x256)],_0x2c384c[_0x192696(0x20a)]);for(const [_0x28b7fe,_0x42c665]of Object[_0x192696(0x1cd)](_0x505a3e[_0x192696(0x1d0)])){_0x2c384c[_0x192696(0x20d)](validateField,_0x28b7fe,_0x42c665,_0x4728ab+'.'+_0x2c16f0);}}}}function validateName(_0x23dfc0,_0x345bb2,_0x2b853d=0xa){const _0x4cf726=_0x4c2ca8,_0x41c6c8={};_0x41c6c8['HCmna']=function(_0x95cdcb,_0x4eac94){return _0x95cdcb!==_0x4eac94;},_0x41c6c8[_0x4cf726(0x250)]=_0x4cf726(0x1c4);const _0x45fb78=_0x41c6c8;if(!_0x23dfc0||_0x45fb78[_0x4cf726(0x1e2)](typeof _0x23dfc0,_0x45fb78['srxXL']))throw new Error(_0x345bb2+_0x4cf726(0x207));if(_0x23dfc0[_0x4cf726(0x254)]>_0x2b853d)throw new Error(_0x345bb2+_0x4cf726(0x1f4)+_0x23dfc0+'\x22\x20exceeds\x20'+_0x2b853d+_0x4cf726(0x257));if(!/^[a-zA-Z_$#@][a-zA-Z0-9_$#@]*$/[_0x4cf726(0x249)](_0x23dfc0))throw new Error(_0x345bb2+_0x4cf726(0x1f4)+_0x23dfc0+'\x22\x20contains\x20invalid\x20characters');}function validateField(_0x4d925b,_0xfa875e,_0x1db714){const _0x503d0b=_0x4c2ca8,_0x1963e9={'JsWnh':function(_0xad2b18,_0x3dba79){return _0xad2b18+_0x3dba79;},'ZDdvS':_0x503d0b(0x205),'asEiB':function(_0x15bb72,_0x5020f4){return _0x15bb72!==_0x5020f4;},'ZSfwc':_0x503d0b(0x244),'JkukT':function(_0x4b522e,_0x3e0377){return _0x4b522e<_0x3e0377;},'CultP':_0x503d0b(0x1d3),'KQJXM':function(_0x5d0698,_0x298d59,_0x1fd608,_0x2fbe3f){return _0x5d0698(_0x298d59,_0x1fd608,_0x2fbe3f);}},_0x42e4a8=_0x503d0b(0x1f0)[_0x503d0b(0x260)]('|');let _0x8bf10f=0x0;while(!![]){switch(_0x42e4a8[_0x8bf10f++]){case'0':if(!_0xfa875e||typeof _0xfa875e!==_0x503d0b(0x1ce))throw new Error(_0x503d0b(0x1fd)+_0x4d925b+_0x503d0b(0x223)+_0x1db714+_0x503d0b(0x25c));continue;case'1':if(!TYPE_MAP[_0xfa875e[_0x503d0b(0x1ef)]])throw new Error(_0x1963e9[_0x503d0b(0x22a)](_0x1963e9[_0x503d0b(0x22a)](_0x1963e9['JsWnh'](_0x503d0b(0x1fd)+_0x4d925b,_0x503d0b(0x223))+_0x1db714,'\x22\x20has\x20invalid\x20type\x20\x22')+_0xfa875e['type']+_0x1963e9['ZDdvS'],Object[_0x503d0b(0x1f9)](TYPE_MAP)['join'](',\x20')));continue;case'2':if(_0x1963e9[_0x503d0b(0x1d4)](_0xfa875e['decimals'],undefined)){if(_0x1963e9[_0x503d0b(0x1d4)](typeof _0xfa875e[_0x503d0b(0x1fe)],_0x1963e9['ZSfwc'])||_0x1963e9['JkukT'](_0xfa875e['decimals'],0x0))throw new Error(_0x503d0b(0x1fd)+_0x4d925b+_0x503d0b(0x223)+_0x1db714+_0x503d0b(0x206));if(_0xfa875e['type']===_0x1963e9[_0x503d0b(0x245)])throw new Error('Field\x20\x22'+_0x4d925b+_0x503d0b(0x223)+_0x1db714+_0x503d0b(0x23e));}continue;case'3':if(typeof _0xfa875e[_0x503d0b(0x254)]!==_0x503d0b(0x244)||_0xfa875e['length']<0x1)throw new Error(_0x503d0b(0x1fd)+_0x4d925b+_0x503d0b(0x223)+_0x1db714+_0x503d0b(0x202));continue;case'4':_0x1963e9['KQJXM'](validateName,_0x4d925b,_0x503d0b(0x1fd)+_0x4d925b+_0x503d0b(0x223)+_0x1db714+'\x22',0x32);continue;}break;}}function generateShortName(_0xf8770c,_0x37e2ac){const _0x39170d=_0x4c2ca8,_0x438f57={};_0x438f57[_0x39170d(0x227)]=function(_0x19e3e5,_0xfa6aff){return _0x19e3e5<=_0xfa6aff;},_0x438f57[_0x39170d(0x1ea)]=function(_0x201004,_0x115e5e){return _0x201004+_0x115e5e;};const _0x5907aa=_0x438f57,_0x1de447=_0xf8770c[_0x39170d(0x241)]();if(_0x1de447['length']<=0xa)return _0x37e2ac[_0x39170d(0x25b)](_0x1de447),_0x1de447;const _0x30558c=_0x1de447['substring'](0x0,0x6);for(let _0x1a5ba6=0x1;_0x5907aa['dTcDd'](_0x1a5ba6,0x270f);_0x1a5ba6++){const _0x21f1f2=String(_0x1a5ba6)[_0x39170d(0x1c0)](0x4,'0'),_0x2b8326=_0x5907aa['kPwmT'](_0x30558c,_0x21f1f2);if(!_0x37e2ac[_0x39170d(0x1bb)](_0x2b8326))return _0x37e2ac[_0x39170d(0x25b)](_0x2b8326),_0x2b8326;}throw new Error('Cannot\x20generate\x20unique\x20short\x20name\x20for\x20field\x20\x22'+_0xf8770c+'\x22');}function generate(_0x4a2d52){const _0x271289=_0x4c2ca8,_0x1ddeb4=[],_0x5a3332=new Set(),_0x53838e={};_0x53838e[_0x271289(0x262)]=0x1;const _0x492f2d=_0x53838e,_0x573e39={};_0x573e39[_0x271289(0x1e4)]='INDARA',_0x1ddeb4[_0x271289(0x253)](ddsLine(_0x573e39));for(const [_0x1784cb,_0xb9d7b9]of Object[_0x271289(0x1cd)](_0x4a2d52[_0x271289(0x240)])){const _0x42aecf=_0x1784cb['toUpperCase']();if(_0xb9d7b9[_0x271289(0x24f)])for(const [_0x688b82,_0x4023b6]of Object[_0x271289(0x1cd)](_0xb9d7b9['subfiles'])){const _0x28a44b=_0x688b82[_0x271289(0x241)]();generateSubfileFormat(_0x1ddeb4,_0x28a44b,_0x4023b6,_0x5a3332);}generateControlFormat(_0x1ddeb4,_0x42aecf,_0xb9d7b9,_0x5a3332,_0x492f2d);}return _0x1ddeb4;}function generateSubfileFormat(_0x4e6d88,_0xe8713a,_0x623ee5,_0x2f0b8f){const _0x3a7458=_0x4c2ca8,_0x1b0098={'UqAjP':function(_0x56997d,_0x22c3fa){return _0x56997d(_0x22c3fa);},'oANEx':function(_0x4c99b2,_0x225c61){return _0x4c99b2(_0x225c61);},'EIbZV':function(_0x571fab,_0x309ec5,_0x21aa8e){return _0x571fab(_0x309ec5,_0x21aa8e);},'PgbGQ':function(_0x562df0,_0x222c8b,_0x4fd53b,_0x1bf407){return _0x562df0(_0x222c8b,_0x4fd53b,_0x1bf407);},'DxXwE':function(_0x318e40,_0x21d13d){return _0x318e40>_0x21d13d;}},_0x4d6bf8={};_0x4d6bf8['type']='R',_0x4d6bf8[_0x3a7458(0x1d9)]=_0xe8713a,_0x4d6bf8['keywords']=_0x3a7458(0x1fc),_0x4e6d88[_0x3a7458(0x253)](_0x1b0098[_0x3a7458(0x22d)](ddsLine,_0x4d6bf8));const _0x165049={};_0x165049[_0x3a7458(0x1d9)]=_0x3a7458(0x20f),_0x165049[_0x3a7458(0x254)]=0x1,_0x165049[_0x3a7458(0x203)]='A',_0x165049[_0x3a7458(0x242)]='O',_0x165049['row']=0x2,_0x165049[_0x3a7458(0x1c1)]=0x2,_0x4e6d88[_0x3a7458(0x253)](_0x1b0098[_0x3a7458(0x248)](ddsLine,_0x165049));for(const [_0x366a2f,_0x1f0cec]of Object['entries'](_0x623ee5[_0x3a7458(0x1d0)])){const _0x540a7a=_0x366a2f[_0x3a7458(0x241)](),_0x1f11ac=_0x1b0098[_0x3a7458(0x1da)](generateShortName,_0x366a2f,_0x2f0b8f);_0x4e6d88[_0x3a7458(0x253)](_0x1b0098[_0x3a7458(0x1f2)](ddsFieldLine,_0x1f11ac,_0x1f0cec,_0x1b0098[_0x3a7458(0x237)](_0x540a7a[_0x3a7458(0x254)],0xa)?_0x540a7a:null));}}function generateControlFormat(_0x10daf6,_0x416a70,_0x15611c,_0x4d4d2d,_0x21f97b){const _0x5363ce=_0x4c2ca8,_0x14586f={'upfyg':function(_0x62c413,_0x2f8f92){return _0x62c413(_0x2f8f92);},'RliCV':_0x5363ce(0x204),'oPGcy':_0x5363ce(0x1ee),'RRJOh':_0x5363ce(0x226),'DlMNd':function(_0x5df436,_0x3e39db){return _0x5df436(_0x3e39db);},'Tckso':'OVERLAY','voemJ':function(_0x2b664b,_0x4a1f5d,_0x1d77af,_0x5b9e94){return _0x2b664b(_0x4a1f5d,_0x1d77af,_0x5b9e94);},'VXXFA':_0x5363ce(0x1d3),'qBKTN':function(_0xcbb4d0,_0x5a4fed){return _0xcbb4d0>_0x5a4fed;},'gqatq':function(_0xddc718,_0x2ac694,_0x1b23a1){return _0xddc718(_0x2ac694,_0x1b23a1);},'jGbVt':function(_0xe7c32f,_0x4d8ee9,_0x57fa11){return _0xe7c32f(_0x4d8ee9,_0x57fa11);},'VdHai':function(_0x35d071,_0x32064a,_0x394026){return _0x35d071(_0x32064a,_0x394026);}},_0x4dc424=_0x15611c[_0x5363ce(0x24f)]&&Object[_0x5363ce(0x1f9)](_0x15611c[_0x5363ce(0x24f)])['length']>0x0;if(_0x4dc424)for(const [_0x2969cd]of Object[_0x5363ce(0x1cd)](_0x15611c[_0x5363ce(0x24f)])){const _0x3f3a5b=_0x2969cd[_0x5363ce(0x241)](),_0x4e1504=_0x5363ce(0x224)+_0x14586f['upfyg'](String,_0x21f97b[_0x5363ce(0x262)])[_0x5363ce(0x1c0)](0x3,'0');_0x21f97b[_0x5363ce(0x262)]++;const _0x204679={};_0x204679[_0x5363ce(0x1ef)]='R',_0x204679[_0x5363ce(0x1d9)]=_0x4e1504,_0x204679[_0x5363ce(0x1e4)]='SFLCTL('+_0x3f3a5b+')',_0x10daf6['push'](ddsLine(_0x204679));const _0x455070={};_0x455070[_0x5363ce(0x1e4)]=_0x14586f[_0x5363ce(0x1c9)],_0x10daf6['push'](ddsLine(_0x455070)),_0x10daf6['push'](_0x14586f[_0x5363ce(0x1c2)](ddsLine,{'keywords':_0x14586f['oPGcy']})),_0x10daf6[_0x5363ce(0x253)](_0x14586f[_0x5363ce(0x1c2)](ddsLine,{'keywords':_0x14586f[_0x5363ce(0x1e8)]}));const _0x1ec17a=_0x5363ce(0x1db)+_0x416a70;writeHtmlKeywords(_0x10daf6,_0x1ec17a);}const _0x5c49f0={};_0x5c49f0[_0x5363ce(0x1ef)]='R',_0x5c49f0[_0x5363ce(0x1d9)]=_0x416a70,_0x10daf6[_0x5363ce(0x253)](_0x14586f[_0x5363ce(0x1e9)](ddsLine,_0x5c49f0)),_0x10daf6[_0x5363ce(0x253)](_0x14586f[_0x5363ce(0x1e9)](ddsLine,{'keywords':_0x14586f[_0x5363ce(0x21e)]}));const _0x1502f5={};_0x1502f5['name']=_0x5363ce(0x20f),_0x1502f5[_0x5363ce(0x254)]=0x1,_0x1502f5[_0x5363ce(0x203)]='A',_0x1502f5[_0x5363ce(0x242)]='O',_0x1502f5[_0x5363ce(0x1f1)]=0x1,_0x1502f5[_0x5363ce(0x1c1)]=0x2,_0x10daf6[_0x5363ce(0x253)](ddsLine(_0x1502f5));for(const [_0x5dc948,_0x107f0b]of Object[_0x5363ce(0x1cd)](_0x15611c[_0x5363ce(0x1d0)])){const _0x10a83c=_0x5dc948[_0x5363ce(0x241)](),_0x3c51c5=generateShortName(_0x5dc948,_0x4d4d2d);_0x10daf6[_0x5363ce(0x253)](_0x14586f[_0x5363ce(0x233)](ddsFieldLine,_0x3c51c5,_0x107f0b,_0x10a83c[_0x5363ce(0x254)]>0xa?_0x10a83c:null));}if(_0x4dc424)for(const _0x2cb6f0 of Object[_0x5363ce(0x1d8)](_0x15611c[_0x5363ce(0x24f)])){const _0x30bcdf=_0x2cb6f0['clear'][_0x5363ce(0x241)]();if(!_0x15611c[_0x5363ce(0x1d0)][_0x2cb6f0['clear']]&&!_0x15611c[_0x5363ce(0x1d0)][_0x2cb6f0[_0x5363ce(0x256)]['toUpperCase']()]){const _0x44d867=generateShortName(_0x2cb6f0[_0x5363ce(0x256)],_0x4d4d2d);_0x10daf6[_0x5363ce(0x253)](_0x14586f['voemJ'](ddsFieldLine,_0x44d867,{'type':_0x14586f[_0x5363ce(0x216)],'length':0x1},_0x14586f[_0x5363ce(0x246)](_0x30bcdf['length'],0xa)?_0x30bcdf:null));}}const _0x5f0d6f=_0x14586f[_0x5363ce(0x1e3)](buildServerMetaData,_0x416a70,_0x15611c);writeHtmlKeywords(_0x10daf6,_0x5f0d6f);const _0x1b76e3=_0x14586f[_0x5363ce(0x23f)](buildClientMetaData,_0x416a70,_0x15611c);_0x14586f[_0x5363ce(0x1d6)](writeHtmlKeywords,_0x10daf6,_0x1b76e3);}function buildServerMetaData(_0x316fe7,_0xcb8e44){const _0x166781=_0x4c2ca8,_0x4e02ca={'deGxB':_0x166781(0x1f6),'jkthb':function(_0x3c3dd5,_0xc25fa1){return _0x3c3dd5(_0xc25fa1);},'tYbJg':function(_0x3834e8,_0x497624,_0x4dd060){return _0x3834e8(_0x497624,_0x4dd060);},'hogkw':'SFLDSP','irPQr':function(_0x302af2,_0x1d3327,_0x354218,_0x46b99b){return _0x302af2(_0x1d3327,_0x354218,_0x46b99b);},'GNIXs':'SFLDSPCTL','BWGej':function(_0x11591e,_0x18469c,_0x14abe9,_0x5a22cb,_0x379c3d,_0x1f337e){return _0x11591e(_0x18469c,_0x14abe9,_0x5a22cb,_0x379c3d,_0x1f337e);},'AMtlr':_0x166781(0x212),'KMajE':function(_0xf542a8,_0x3bfe14,_0x21abdd,_0x588e52){return _0xf542a8(_0x3bfe14,_0x21abdd,_0x588e52);},'HeYvh':_0x166781(0x22b),'wEZYt':_0x166781(0x22f),'urjvW':function(_0x544455,_0x31aff4){return _0x544455+_0x31aff4;},'WxaMY':function(_0x56737d,_0x3f3ee7){return _0x56737d+_0x3f3ee7;},'xGikn':_0x166781(0x1ca)},_0xe88f69=_0xcb8e44[_0x166781(0x24f)]&&Object['keys'](_0xcb8e44[_0x166781(0x24f)])['length']>0x0;if(_0xe88f69){let _0x1a0595=_0x4e02ca['deGxB'];const _0x238853=Object[_0x166781(0x1cd)](_0xcb8e44[_0x166781(0x24f)]);_0x1a0595+=_0x4e02ca['jkthb'](padNum,_0x238853[_0x166781(0x254)]);for(const [_0x115211,_0x895ab0]of _0x238853){const _0x388679=_0x115211[_0x166781(0x241)]();_0x1a0595+=_0x4e02ca[_0x166781(0x258)](padStr,_0x388679,0xa);const _0x270261=_0x895ab0[_0x166781(0x256)][_0x166781(0x241)](),_0x1229b8=[];_0x1229b8[_0x166781(0x253)](buildKeyMeta('R',_0x4e02ca[_0x166781(0x232)],[])),_0x1229b8[_0x166781(0x253)](_0x4e02ca['irPQr'](buildKeyMeta,'R',_0x4e02ca[_0x166781(0x25f)],[])),_0x1229b8[_0x166781(0x253)](_0x4e02ca['BWGej'](buildKeyMeta,'R',_0x4e02ca[_0x166781(0x1d5)],[],'F',_0x270261));const _0x4b0cdf={};_0x4b0cdf['type']='C',_0x4b0cdf['value']='40',_0x1229b8[_0x166781(0x253)](_0x4e02ca[_0x166781(0x1e5)](buildKeyMeta,'R',_0x166781(0x210),[_0x4b0cdf])),_0x1229b8['push'](_0x4e02ca[_0x166781(0x1e5)](buildKeyMeta,'R','SFLSIZ',[{'type':'C','value':_0x4e02ca[_0x166781(0x1fa)]}])),_0x1a0595+=_0x4e02ca[_0x166781(0x236)](padNum,_0x1229b8[_0x166781(0x254)]),_0x1a0595+=_0x1229b8[_0x166781(0x21f)](''),_0x1a0595+=padNum(0x0);}const _0x52cd99=[];return _0x52cd99['push'](buildKeyMeta('R',_0x4e02ca['wEZYt'],[])),_0x1a0595+=padNum(_0x52cd99[_0x166781(0x254)]),_0x1a0595+=_0x52cd99[_0x166781(0x21f)](''),_0x166781(0x20c)+_0x1a0595;}else return _0x4e02ca['urjvW'](_0x4e02ca['WxaMY']('QPUI',_0x4e02ca[_0x166781(0x20e)]),_0x4e02ca[_0x166781(0x236)](padNum,0x0));}function buildKeyMeta(_0x3d65e4,_0xb2dd6a,_0x7c3efe,_0xfb90ce,_0x25f7d5){const _0x3ae951=_0x4c2ca8,_0xdcd1f={'lChbJ':function(_0x7114c0,_0x27eba1,_0xbfbb20){return _0x7114c0(_0x27eba1,_0xbfbb20);},'aMlZZ':function(_0x54bf6c,_0x51b4d6){return _0x54bf6c===_0x51b4d6;},'pOoVL':function(_0x21ecc8,_0x358404){return _0x21ecc8(_0x358404);},'Esrwb':function(_0x2a8b6d,_0x28692a,_0x8e77be){return _0x2a8b6d(_0x28692a,_0x8e77be);},'xtzaZ':function(_0x5ea773,_0x1af4bb){return _0x5ea773||_0x1af4bb;}};let _0x333a5f=_0x3d65e4;_0x3d65e4==='F'&&(_0x333a5f+=_0xdcd1f[_0x3ae951(0x24d)](padStr,'',0xa));_0x333a5f+=padStr(_0xb2dd6a,0xa),_0x333a5f+=padNum(_0x7c3efe[_0x3ae951(0x254)]);for(const _0xb8ea40 of _0x7c3efe){_0x333a5f+=_0xb8ea40['type'],_0xdcd1f[_0x3ae951(0x22e)](_0xb8ea40[_0x3ae951(0x1ef)],'C')?(_0x333a5f+=_0xdcd1f[_0x3ae951(0x211)](padNum,_0xb8ea40[_0x3ae951(0x262)]['length']),_0x333a5f+=_0xb8ea40[_0x3ae951(0x262)]):_0x333a5f+=_0xdcd1f[_0x3ae951(0x1d1)](padStr,_0xb8ea40['value'],0xa);}_0x333a5f+=_0xdcd1f[_0x3ae951(0x1c8)](_0xfb90ce,'\x20');if(_0xdcd1f[_0x3ae951(0x22e)](_0xfb90ce,'F')&&_0x25f7d5)_0x333a5f+=padStr(_0x25f7d5,0xa);else{if(_0xfb90ce==='E'&&_0x25f7d5){_0x333a5f+=padNum(_0x25f7d5[_0x3ae951(0x254)]);for(const _0x995e32 of _0x25f7d5){_0x333a5f+=padNum(_0x995e32[_0x3ae951(0x254)]),_0x333a5f+=_0x995e32;}}}return _0x333a5f;}function _0x1e92(){const _0x5e50d2=['rgXntMq','A1b3Bvq','u291CMnLiePtt04GBxvZDcbOyxzLigeGBM9UlwvTChr5icjMB3jTyxrZiIbVyMPLy3q','iIbTDxn0igHHDMuGysaIzMLLBgrZiIbVyMPLy3q','vvzWExC','u0zmuefhkdaWmdeP','DhLWzq','nhWWFdf8m3WY','CM93','ugDIr1e','BefgAKm','ig5HBwuGiG','rM9YBwf0ici','q1rm','Avr2t0y','iIbTDxn0igHHDMuGysaIDgvTCgXHDguIihbHDgG','A2v5CW','sgvzDMG','iIbTDxn0igHHDMuGysaIy2XLyxiIigzPzwXKig5HBwu','u0zm','rMLLBgqGiG','zgvJAw1HBhm','nZG5nxL2r2jQDq','runLwLi','nJu2mJG1nMnrqvDtzG','iIbTDxn0igHHDMuGysbWB3nPDgL2zsbUDw1LCMLJicjSzw5NDgGI','zgf0yvr5Cgu','u0zmu0LAkdaWmdeP','iI4GtxvZDcbIzsbVBMuGB2y6ia','iIbOyxmGAw52ywXPzcaIzgvJAw1HBhmIihzHBhvL','ig5HBwuGBxvZDcbIzsbHig5VBI1LBxb0EsbZDhjPBMC','nKXps2jkCq','zwPZignZCW','Bg5YCvK','vMrqrhO','uvbvsq','u0XVvwS','EeDPA24','uvbvstaWmdaWmq','u0zmuefh','Ce9VvKW','u0zmq0Xs','DhjPBuvUza','ndK3oti0n1ncB2j2ua','tevor1rix0vora','vLHyrKe','tKfnrv9tvefsva','DgvTCgXHDgu','C3rYAw5NAwz5','vfLqrq','y3nZ','revdx1bpu19ftKq','uKvg','vgnRC28','AM9PBG','qK91zum','quXjqvmO','C3vIC3rYAw5N','iIbPBIaI','uvngtenuta','yLvRrw4','u0zmrfnq','zfrJrgq','mJa3ndDZthjQyMS','q09orf9jtKq','sNnxBMG','otK5oq','rM9YBwf0','vxfbALa','yu1SwLO','t1zfuKXbwq','BwvZC2fNzq','u3vIzMLSzq','Ag9NA3C','DM9LBuO','AxrLBxm','AungswK','AMT0Agi','rhHyD0u','s0vzv09srfm','rK9stv9uwvbf','CgfJA2vK','refuqv9uwvbf','iIbPBIbMB3jTyxqGiG','odeYtvftwLrZ','iJOGiMrLy2LTywXZiIbPCYbUB3qGDMfSAwqGzM9Yihr5CguGiMnOyxiI','AKDIvNq','zM9YBwf0CW','Dg9vChbLCKnHC2u','DxnHz2u','EM9Uzwq','BNvTyMvY','q3vSDfa','Cujlve4','BgLUzxm','B0forxG','DgvZDa','uvrIELK','shDdufe','mZu1ofrOqwz4EG','BenOyKO','EgDLwhG','C3vIzMLSzxm','C3j4weW','uK9xx0vora','zwPZihrLBxbSyxrL','ChvZAa','BgvUz3rO','vvnbr0u','y2XLyxi','ignOyxjHy3rLCIbTyxHPBxvT','DfLIsMC','yvHSD3a','Dg9tDhjPBMC','ywrK','iIbTDxn0igjLigfUig9IAMvJDa','y29UzeLUza','nJe5mdKYmgDQy2zhAG','r05jwhm','C3bSAxq','uK12swK','DMfSDwu','teLorv9xsurusa','AgfZ','zwPZ','u3vIzMLSzsaI','B1fHreu','q2XLyxiGzMLLBgq','CgfKu3rHCNq','y29S','DxbMEwC','zeHkBvi','C3rYAw5N','DLHtvNq','D3fPA0G','ndK2mJC0ouHVu1jPDa','Ehr6yvO','uMXPq1y','uKvd','r3vSuee','DhDjrLu','zw50CMLLCW','B2jQzwn0','twPTvgO','zMLLBgrZ','rxnYD2i','ndCYnuTRCg1ZrW','y2HHCG','yxnfAui','qu10Bhi','vMriywK','EM9YDum','DMfSDwvZ','BMfTzq','ruLIwLy','uvbvsvngta','u291CMnLiePtt04GBxvZDcbIzsbHBIbVyMPLy3q','B1Pivum','C3vJy2vZCW','q09mx0vora','CgfKrw5K','ntbdzfnIrhe','senTBMe','z3fHDhe','A2v5D29Yzhm','s01HAKu','CMvJB3jKigzVCM1HDcbUyw1L','z0v5qM8','uLjkt2G'];_0x1e92=function(){return _0x5e50d2;};return _0x1e92();}function buildClientMetaData(_0x30270e,_0x98ced8){const _0x38fae3=_0x4c2ca8,_0x4e68f0={};_0x4e68f0[_0x38fae3(0x1f7)]=function(_0x2058fe,_0x546bc7){return _0x2058fe>_0x546bc7;},_0x4e68f0['wqikH']='ejs\x20js';const _0x58f0a1=_0x4e68f0,_0x5441ac={};_0x5441ac[_0x38fae3(0x1e6)]=_0x30270e,_0x5441ac[_0x38fae3(0x1bc)]=!![],_0x5441ac[_0x38fae3(0x252)]=_0x98ced8[_0x38fae3(0x218)];const _0x5253a5=_0x5441ac;_0x98ced8[_0x38fae3(0x21b)]&&_0x58f0a1[_0x38fae3(0x1f7)](_0x98ced8[_0x38fae3(0x21b)][_0x38fae3(0x254)],0x0)&&(_0x5253a5[_0x38fae3(0x209)]=_0x98ced8['css']);_0x98ced8['js']&&_0x98ced8['js']['length']>0x0&&(_0x5253a5[_0x58f0a1[_0x38fae3(0x1c6)]]=_0x98ced8['js']);const _0x3b85c1={};return _0x3b85c1['screen']=_0x5253a5,_0x3b85c1[_0x38fae3(0x234)]=[],JSON[_0x38fae3(0x219)](_0x3b85c1);}function writeHtmlKeywords(_0x402c05,_0x26784b){const _0x462cc4=_0x4c2ca8,_0x19572d={'QTbzY':function(_0x16fd2b,_0x1e2451){return _0x16fd2b+_0x1e2451;},'lAFjC':function(_0x53dee0,_0x1ec92a){return _0x53dee0+_0x1ec92a;},'oQaDE':function(_0x1f4daa,_0x539815){return _0x1f4daa-_0x539815;},'GulPA':function(_0x10b6c3,_0x1f7ffa){return _0x10b6c3+_0x1f7ffa;},'bUkEn':function(_0x4fa913,_0x5398b8){return _0x4fa913+_0x5398b8;},'MjmTj':function(_0x21619f,_0x35c454){return _0x21619f(_0x35c454);},'twIFU':function(_0x5206b4,_0x3d7dee){return _0x5206b4+_0x3d7dee;}},_0x4e472d=0x24,_0x4b1810='HTML(\x27',_0x4f11dc='\x27)',_0x499f47='-',_0x102f71=_0x19572d[_0x462cc4(0x24a)](_0x4b1810[_0x462cc4(0x254)],_0x26784b['length'])+_0x4f11dc[_0x462cc4(0x254)]<=_0x4e472d;if(_0x102f71){const _0x2ef159=_0x19572d[_0x462cc4(0x1f3)](_0x19572d[_0x462cc4(0x1f3)](_0x4b1810,_0x26784b),_0x4f11dc),_0x17c3f2={};_0x17c3f2[_0x462cc4(0x1f1)]=0x1,_0x17c3f2[_0x462cc4(0x1c1)]=0x2,_0x17c3f2[_0x462cc4(0x1e4)]=_0x2ef159,_0x402c05[_0x462cc4(0x253)](ddsLine(_0x17c3f2));return;}const _0x2ec50e=_0x19572d[_0x462cc4(0x1be)](_0x4e472d-_0x4b1810[_0x462cc4(0x254)],_0x499f47[_0x462cc4(0x254)]),_0x4c74c6=_0x4e472d-_0x499f47[_0x462cc4(0x254)];let _0xc74481=0x0;const _0x4f9d9b=_0x26784b[_0x462cc4(0x222)](_0xc74481,_0x19572d[_0x462cc4(0x1cb)](_0xc74481,_0x2ec50e));_0xc74481+=_0x2ec50e;const _0x242e84=_0x19572d[_0x462cc4(0x1cb)](_0x19572d[_0x462cc4(0x1f3)](_0x4b1810,_0x4f9d9b),_0x499f47),_0x1168c0={};_0x1168c0[_0x462cc4(0x1f1)]=0x1,_0x1168c0[_0x462cc4(0x1c1)]=0x2,_0x1168c0[_0x462cc4(0x1e4)]=_0x242e84,_0x402c05[_0x462cc4(0x253)](ddsLine(_0x1168c0));let _0x3f3d9f=![];while(_0xc74481<_0x26784b[_0x462cc4(0x254)]){const _0x5429bd=_0x26784b['length']-_0xc74481,_0x11720d=_0x5429bd+_0x4f11dc[_0x462cc4(0x254)]<=_0x4e472d;if(_0x11720d){const _0x176ad0=_0x26784b[_0x462cc4(0x222)](_0xc74481),_0x388174=_0x19572d[_0x462cc4(0x225)](_0x176ad0,_0x4f11dc),_0x51dfdc={};_0x51dfdc[_0x462cc4(0x1e4)]=_0x388174,_0x402c05[_0x462cc4(0x253)](ddsLine(_0x51dfdc)),_0xc74481=_0x26784b[_0x462cc4(0x254)],_0x3f3d9f=!![];}else{const _0x3478d8=_0x26784b[_0x462cc4(0x222)](_0xc74481,_0x19572d['GulPA'](_0xc74481,_0x4c74c6));_0xc74481+=_0x4c74c6,_0x402c05['push'](_0x19572d[_0x462cc4(0x1cf)](ddsLine,{'keywords':_0x19572d[_0x462cc4(0x1cc)](_0x3478d8,_0x499f47)}));}}if(!_0x3f3d9f){const _0x5afb6a={};_0x5afb6a[_0x462cc4(0x1e4)]=_0x4f11dc,_0x402c05['push'](ddsLine(_0x5afb6a));}}function ddsLine(_0x234e91={}){const _0x3c0275=_0x4c2ca8,_0x52c461={};_0x52c461['VdPDz']=function(_0x46a226,_0x775d8f){return _0x46a226<_0x775d8f;},_0x52c461['nTvSH']=function(_0x227197,_0x5e2950){return _0x227197===_0x5e2950;},_0x52c461[_0x3c0275(0x24e)]=function(_0x2efc23,_0x5d330a){return _0x2efc23-_0x5d330a;},_0x52c461['vXSVt']=function(_0x3c8afd,_0x2378af){return _0x3c8afd<_0x2378af;},_0x52c461[_0x3c0275(0x1c3)]=function(_0x46e036,_0x3c0bc8){return _0x46e036+_0x3c0bc8;},_0x52c461['hLxYL']=function(_0x454574,_0x319744){return _0x454574!==_0x319744;},_0x52c461[_0x3c0275(0x1d7)]=function(_0xb1d481,_0x34b18d){return _0xb1d481+_0x34b18d;},_0x52c461[_0x3c0275(0x1dd)]=function(_0x2b9f67,_0x2f05d9){return _0x2b9f67-_0x2f05d9;},_0x52c461[_0x3c0275(0x1ed)]=function(_0x30cd5d,_0x47c9d8){return _0x30cd5d-_0x47c9d8;},_0x52c461['gEyBo']=function(_0x364525,_0x135d8b){return _0x364525!==_0x135d8b;};const _0x3c1c00=_0x52c461,_0xa63023=new Array(COL[_0x3c0275(0x263)])['fill']('\x20');_0xa63023[COL[_0x3c0275(0x239)]-0x1]='A';if(_0x234e91[_0x3c0275(0x25d)]){const _0x3ee344=_0x234e91[_0x3c0275(0x25d)];for(let _0x3a8069=0x0;_0x3a8069<_0x3ee344['length']&&_0x3c1c00[_0x3c0275(0x20b)](_0x3a8069,0xa);_0x3a8069++){_0xa63023[COL[_0x3c0275(0x229)]-0x1+_0x3a8069]=_0x3ee344[_0x3a8069];}}_0x3c1c00['nTvSH'](_0x234e91[_0x3c0275(0x1ef)],'R')&&(_0xa63023[_0x3c1c00[_0x3c0275(0x24e)](COL[_0x3c0275(0x21a)],0x1)]='R');if(_0x234e91[_0x3c0275(0x1d9)]){const _0x203cd7=_0x234e91[_0x3c0275(0x1d9)]['substring'](0x0,0xa);for(let _0x159b88=0x0;_0x3c1c00[_0x3c0275(0x1c5)](_0x159b88,_0x203cd7[_0x3c0275(0x254)]);_0x159b88++){_0xa63023[_0x3c1c00[_0x3c0275(0x1c3)](COL['NAME_START']-0x1,_0x159b88)]=_0x203cd7[_0x159b88];}}if(_0x3c1c00['hLxYL'](_0x234e91['length'],undefined)){const _0x1c6f9e=_0x234e91[_0x3c0275(0x254)]['toString'](),_0x3daab0=COL[_0x3c0275(0x215)]-_0x1c6f9e[_0x3c0275(0x254)];for(let _0xa0f54e=0x0;_0xa0f54e<_0x1c6f9e[_0x3c0275(0x254)];_0xa0f54e++){_0xa63023[_0x3c1c00['zoruC'](_0x3daab0,_0xa0f54e)]=_0x1c6f9e[_0xa0f54e];}}_0x234e91['dataType']&&(_0xa63023[COL[_0x3c0275(0x23b)]-0x1]=_0x234e91[_0x3c0275(0x203)]);if(_0x234e91[_0x3c0275(0x1fe)]!==undefined){const _0x5cbb36=_0x234e91[_0x3c0275(0x1fe)]['toString'](),_0x3c1bb0=_0x3c1c00[_0x3c0275(0x1dd)](COL[_0x3c0275(0x21c)],_0x5cbb36[_0x3c0275(0x254)]);for(let _0x2dedc0=0x0;_0x2dedc0<_0x5cbb36[_0x3c0275(0x254)];_0x2dedc0++){_0xa63023[_0x3c1bb0+_0x2dedc0]=_0x5cbb36[_0x2dedc0];}}_0x234e91[_0x3c0275(0x242)]&&(_0xa63023[_0x3c1c00[_0x3c0275(0x1ed)](COL[_0x3c0275(0x255)],0x1)]=_0x234e91['usage']);if(_0x3c1c00[_0x3c0275(0x1e7)](_0x234e91[_0x3c0275(0x1f1)],undefined)){const _0x3b7188=_0x234e91[_0x3c0275(0x1f1)]['toString'](),_0x47aee5=COL['ROW_END']-_0x3b7188['length'];for(let _0x4b850a=0x0;_0x3c1c00['vXSVt'](_0x4b850a,_0x3b7188['length']);_0x4b850a++){_0xa63023[_0x47aee5+_0x4b850a]=_0x3b7188[_0x4b850a];}}if(_0x3c1c00['gEyBo'](_0x234e91[_0x3c0275(0x1c1)],undefined)){const _0x1c6e08=_0x234e91[_0x3c0275(0x1c1)][_0x3c0275(0x25a)](),_0x149c35=COL[_0x3c0275(0x1df)]-_0x1c6e08[_0x3c0275(0x254)];for(let _0x831e9d=0x0;_0x3c1c00[_0x3c0275(0x1c5)](_0x831e9d,_0x1c6e08['length']);_0x831e9d++){_0xa63023[_0x149c35+_0x831e9d]=_0x1c6e08[_0x831e9d];}}if(_0x234e91['keywords']){const _0x10ac65=_0x234e91[_0x3c0275(0x1e4)][_0x3c0275(0x222)](0x0,COL[_0x3c0275(0x263)]-COL[_0x3c0275(0x238)]+0x1);for(let _0xdf11e9=0x0;_0xdf11e9<_0x10ac65[_0x3c0275(0x254)];_0xdf11e9++){_0xa63023[COL['KEYWORDS']-0x1+_0xdf11e9]=_0x10ac65[_0xdf11e9];}}return _0xa63023[_0x3c0275(0x21f)]('')[_0x3c0275(0x213)]();}function _0x4f17(_0x1187d7,_0x22d5ef){_0x1187d7=_0x1187d7-0x1bb;const _0x1e9270=_0x1e92();let _0x4f17cb=_0x1e9270[_0x1187d7];if(_0x4f17['oYiATI']===undefined){var _0x2e82ea=function(_0x3a76ed){const _0x192411='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x23f063='',_0x4fdcd9='';for(let _0x35a4b8=0x0,_0x510e79,_0xd2b206,_0x30d053=0x0;_0xd2b206=_0x3a76ed['charAt'](_0x30d053++);~_0xd2b206&&(_0x510e79=_0x35a4b8%0x4?_0x510e79*0x40+_0xd2b206:_0xd2b206,_0x35a4b8++%0x4)?_0x23f063+=String['fromCharCode'](0xff&_0x510e79>>(-0x2*_0x35a4b8&0x6)):0x0){_0xd2b206=_0x192411['indexOf'](_0xd2b206);}for(let _0x58313c=0x0,_0x19e2b5=_0x23f063['length'];_0x58313c<_0x19e2b5;_0x58313c++){_0x4fdcd9+='%'+('00'+_0x23f063['charCodeAt'](_0x58313c)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x4fdcd9);};_0x4f17['inVOpU']=_0x2e82ea,_0x4f17['UdNxQV']={},_0x4f17['oYiATI']=!![];}const _0x14c25e=_0x1e9270[0x0],_0x2a0c50=_0x1187d7+_0x14c25e,_0xcd2296=_0x4f17['UdNxQV'][_0x2a0c50];return!_0xcd2296?(_0x4f17cb=_0x4f17['inVOpU'](_0x4f17cb),_0x4f17['UdNxQV'][_0x2a0c50]=_0x4f17cb):_0x4f17cb=_0xcd2296,_0x4f17cb;}function ddsFieldLine(_0x2af596,_0xdb3f63,_0x38e1ed){const _0x5b2a24=_0x4c2ca8,_0x355418={};_0x355418[_0x5b2a24(0x259)]='char';const _0xc5e4f6=_0x355418,_0x4bfbb8=TYPE_MAP[_0xdb3f63[_0x5b2a24(0x1ef)]],_0x5f3ee3=_0xdb3f63[_0x5b2a24(0x1ef)]!==_0xc5e4f6[_0x5b2a24(0x259)]?_0xdb3f63['decimals']||0x0:undefined,_0x4fb213=_0x38e1ed?_0x5b2a24(0x221)+_0x38e1ed+')':undefined,_0x4c1d04={};return _0x4c1d04[_0x5b2a24(0x1d9)]=_0x2af596,_0x4c1d04[_0x5b2a24(0x254)]=_0xdb3f63[_0x5b2a24(0x254)],_0x4c1d04[_0x5b2a24(0x203)]=_0x4bfbb8,_0x4c1d04[_0x5b2a24(0x1fe)]=_0x5f3ee3,_0x4c1d04[_0x5b2a24(0x242)]='H',_0x4c1d04['keywords']=_0x4fb213,ddsLine(_0x4c1d04);}function padNum(_0x203428){const _0x50f757=_0x4c2ca8;return _0x203428[_0x50f757(0x25a)]()[_0x50f757(0x1e0)](0x5);}function padStr(_0x2104fb,_0x1cdff5){const _0x18d060=_0x4c2ca8;return(_0x2104fb||'')[_0x18d060(0x1e0)](_0x1cdff5);}
|
|
1
|
+
'use strict';const _0x1e6932=_0x49b0;(function(_0x45bc07,_0x47bb4a){const _0x17143a=_0x49b0,_0x6ce1aa=_0x45bc07();while(!![]){try{const _0x3ad4a9=-parseInt(_0x17143a(0x100))/0x1+parseInt(_0x17143a(0x17e))/0x2+parseInt(_0x17143a(0xe3))/0x3+parseInt(_0x17143a(0x131))/0x4*(-parseInt(_0x17143a(0x13d))/0x5)+parseInt(_0x17143a(0x134))/0x6+-parseInt(_0x17143a(0x13e))/0x7+parseInt(_0x17143a(0x157))/0x8;if(_0x3ad4a9===_0x47bb4a)break;else _0x6ce1aa['push'](_0x6ce1aa['shift']());}catch(_0x4dc2e8){_0x6ce1aa['push'](_0x6ce1aa['shift']());}}}(_0x4dcd,0x5a6f1));const _0x1f2468={};function _0x49b0(_0x4ac783,_0x38ed46){_0x4ac783=_0x4ac783-0xe2;const _0x4dcd1a=_0x4dcd();let _0x49b04a=_0x4dcd1a[_0x4ac783];if(_0x49b0['osEPNt']===undefined){var _0x5e301d=function(_0x14d2ee){const _0x5eff19='abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789+/=';let _0x13b1a9='',_0x1c7a5d='';for(let _0xf55b37=0x0,_0x17eb2d,_0x5e9e78,_0x477c1a=0x0;_0x5e9e78=_0x14d2ee['charAt'](_0x477c1a++);~_0x5e9e78&&(_0x17eb2d=_0xf55b37%0x4?_0x17eb2d*0x40+_0x5e9e78:_0x5e9e78,_0xf55b37++%0x4)?_0x13b1a9+=String['fromCharCode'](0xff&_0x17eb2d>>(-0x2*_0xf55b37&0x6)):0x0){_0x5e9e78=_0x5eff19['indexOf'](_0x5e9e78);}for(let _0x2b78fe=0x0,_0x509e2e=_0x13b1a9['length'];_0x2b78fe<_0x509e2e;_0x2b78fe++){_0x1c7a5d+='%'+('00'+_0x13b1a9['charCodeAt'](_0x2b78fe)['toString'](0x10))['slice'](-0x2);}return decodeURIComponent(_0x1c7a5d);};_0x49b0['OrzSjo']=_0x5e301d,_0x49b0['nnaphb']={},_0x49b0['osEPNt']=!![];}const _0x5b8128=_0x4dcd1a[0x0],_0x52c8d8=_0x4ac783+_0x5b8128,_0x55236f=_0x49b0['nnaphb'][_0x52c8d8];return!_0x55236f?(_0x49b04a=_0x49b0['OrzSjo'](_0x49b04a),_0x49b0['nnaphb'][_0x52c8d8]=_0x49b04a):_0x49b04a=_0x55236f,_0x49b04a;}_0x1f2468[_0x1e6932(0x18b)]=0x6,_0x1f2468[_0x1e6932(0x15b)]=0x7,_0x1f2468['TYPE']=0x11,_0x1f2468[_0x1e6932(0x158)]=0x13,_0x1f2468[_0x1e6932(0x124)]=0x1c,_0x1f2468[_0x1e6932(0x138)]=0x1d,_0x1f2468[_0x1e6932(0x183)]=0x22,_0x1f2468[_0x1e6932(0x11f)]=0x23,_0x1f2468['DEC_POS_END']=0x25,_0x1f2468[_0x1e6932(0x121)]=0x26,_0x1f2468[_0x1e6932(0x150)]=0x29,_0x1f2468[_0x1e6932(0x15a)]=0x2c,_0x1f2468[_0x1e6932(0x172)]=0x2d,_0x1f2468[_0x1e6932(0x102)]=0x50;const COL=_0x1f2468,_0x1d4ce3={};_0x1d4ce3[_0x1e6932(0x143)]='A',_0x1d4ce3[_0x1e6932(0x169)]='S',_0x1d4ce3[_0x1e6932(0x149)]='S';const TYPE_MAP=_0x1d4ce3;export function ejsToDds(_0x3d4601){const _0x4e5edb=_0x1e6932,_0x15e21d={'akkeT':function(_0x5e0464,_0x3b6587){return _0x5e0464(_0x3b6587);}};try{validate(_0x3d4601);const _0x18b8bf=_0x15e21d['akkeT'](generate,_0x3d4601),_0x349e65={};return _0x349e65[_0x4e5edb(0x108)]=!![],_0x349e65[_0x4e5edb(0x160)]=_0x18b8bf,_0x349e65;}catch(_0xea550a){const _0x4c4267={};return _0x4c4267['success']=![],_0x4c4267[_0x4e5edb(0x17d)]=_0xea550a[_0x4e5edb(0x163)],_0x4c4267;}}function validate(_0x3d23d5){const _0x18813b=_0x1e6932,_0x3b260a={};_0x3b260a[_0x18813b(0x170)]=_0x18813b(0x177),_0x3b260a[_0x18813b(0x11e)]=function(_0x512b93,_0x502a13){return _0x512b93!==_0x502a13;},_0x3b260a[_0x18813b(0x16c)]=_0x18813b(0xf6),_0x3b260a['OSheK']=function(_0x170bf5,_0x286084){return _0x170bf5===_0x286084;},_0x3b260a[_0x18813b(0x117)]='Source\x20JSON\x20must\x20have\x20a\x20non-empty\x20\x22formats\x22\x20object',_0x3b260a[_0x18813b(0x168)]=_0x18813b(0x118),_0x3b260a[_0x18813b(0x179)]='Subfile',_0x3b260a[_0x18813b(0x16d)]=_0x18813b(0x153),_0x3b260a['QuzUF']=_0x18813b(0xf3);const _0x4df50a=_0x3b260a;if(!_0x3d23d5||typeof _0x3d23d5!=='object')throw new Error(_0x4df50a['wavaQ']);if(_0x4df50a[_0x18813b(0x11e)](_0x3d23d5[_0x18813b(0xe8)],_0x4df50a[_0x18813b(0x16c)]))throw new Error(_0x18813b(0x13c));if(!_0x3d23d5[_0x18813b(0x187)]||typeof _0x3d23d5[_0x18813b(0x187)]!==_0x18813b(0x118)||_0x4df50a[_0x18813b(0xf4)](Object[_0x18813b(0xf1)](_0x3d23d5[_0x18813b(0x187)])[_0x18813b(0x173)],0x0))throw new Error(_0x4df50a[_0x18813b(0x117)]);for(const [_0x328c6f,_0x506ad5]of Object[_0x18813b(0xf2)](_0x3d23d5[_0x18813b(0x187)])){validateName(_0x328c6f,'Format');if(!_0x506ad5[_0x18813b(0x159)]||typeof _0x506ad5[_0x18813b(0x159)]!==_0x18813b(0x153))throw new Error('Format\x20\x22'+_0x328c6f+_0x18813b(0x176));if(!_0x506ad5[_0x18813b(0x13b)]||_0x4df50a['usDDo'](typeof _0x506ad5[_0x18813b(0x13b)],_0x4df50a['cJEXa']))throw new Error('Format\x20\x22'+_0x328c6f+_0x18813b(0x15e));for(const [_0x19125e,_0x52d690]of Object['entries'](_0x506ad5[_0x18813b(0x13b)])){validateField(_0x19125e,_0x52d690,_0x328c6f);}if(_0x506ad5[_0x18813b(0x12f)])for(const [_0x4207f3,_0x15e013]of Object[_0x18813b(0xf2)](_0x506ad5[_0x18813b(0x12f)])){validateName(_0x4207f3,_0x4df50a[_0x18813b(0x179)]);if(!_0x15e013[_0x18813b(0x13b)]||_0x4df50a['usDDo'](typeof _0x15e013['fields'],_0x18813b(0x118)))throw new Error(_0x18813b(0x164)+_0x4207f3+'\x22\x20in\x20format\x20\x22'+_0x328c6f+_0x18813b(0x15e));if(!_0x15e013[_0x18813b(0x10e)]||typeof _0x15e013[_0x18813b(0x10e)]!==_0x4df50a[_0x18813b(0x16d)])throw new Error(_0x18813b(0x164)+_0x4207f3+_0x18813b(0x181)+_0x328c6f+'\x22\x20must\x20have\x20a\x20\x22clear\x22\x20field\x20name');validateName(_0x15e013[_0x18813b(0x10e)],_0x4df50a['QuzUF']);for(const [_0x568dbc,_0x5d552e]of Object['entries'](_0x15e013['fields'])){validateField(_0x568dbc,_0x5d552e,_0x328c6f+'.'+_0x4207f3);}}}}function validateName(_0x4110e8,_0x149c43,_0x2d9fe1=0xa){const _0x140f8d=_0x1e6932;if(!_0x4110e8||typeof _0x4110e8!=='string')throw new Error(_0x149c43+_0x140f8d(0x136));if(_0x4110e8[_0x140f8d(0x173)]>_0x2d9fe1)throw new Error(_0x149c43+_0x140f8d(0x16e)+_0x4110e8+_0x140f8d(0xfe)+_0x2d9fe1+_0x140f8d(0x15d));if(!/^[a-zA-Z_$#@][a-zA-Z0-9_$#@]*$/['test'](_0x4110e8))throw new Error(_0x149c43+_0x140f8d(0x16e)+_0x4110e8+_0x140f8d(0xef));}function validateField(_0x203638,_0x2b3d17,_0xf6891f){const _0x4f0aa6=_0x1e6932,_0xe9a688={'hbznx':_0x4f0aa6(0xfd),'aAIWy':_0x4f0aa6(0x103),'hBKyf':_0x4f0aa6(0x113),'RsDgc':'\x22.\x20Must\x20be\x20one\x20of:\x20','ZgXmN':function(_0x4c91aa,_0x362ff2){return _0x4c91aa!==_0x362ff2;},'AgSsq':function(_0x53c076,_0x36c083){return _0x53c076<_0x36c083;},'UhBZS':'char','AktdJ':function(_0x4344b7,_0x386127,_0x4f3498,_0x4ca3f8){return _0x4344b7(_0x386127,_0x4f3498,_0x4ca3f8);}},_0x38fbe6=_0xe9a688[_0x4f0aa6(0xe2)][_0x4f0aa6(0x109)]('|');let _0x277446=0x0;while(!![]){switch(_0x38fbe6[_0x277446++]){case'0':if(!_0x2b3d17||typeof _0x2b3d17!=='object')throw new Error(_0x4f0aa6(0x16a)+_0x203638+_0x4f0aa6(0x103)+_0xf6891f+_0x4f0aa6(0x120));continue;case'1':if(!TYPE_MAP[_0x2b3d17[_0x4f0aa6(0xe8)]])throw new Error(_0x4f0aa6(0x16a)+_0x203638+_0xe9a688[_0x4f0aa6(0xfc)]+_0xf6891f+_0xe9a688['hBKyf']+_0x2b3d17[_0x4f0aa6(0xe8)]+_0xe9a688[_0x4f0aa6(0x14e)]+Object[_0x4f0aa6(0xf1)](TYPE_MAP)[_0x4f0aa6(0x10f)](',\x20'));continue;case'2':if(typeof _0x2b3d17[_0x4f0aa6(0x173)]!==_0x4f0aa6(0x135)||_0x2b3d17[_0x4f0aa6(0x173)]<0x1)throw new Error('Field\x20\x22'+_0x203638+_0x4f0aa6(0x103)+_0xf6891f+'\x22\x20must\x20have\x20a\x20positive\x20numeric\x20\x22length\x22');continue;case'3':if(_0xe9a688[_0x4f0aa6(0xec)](_0x2b3d17[_0x4f0aa6(0x140)],undefined)){if(typeof _0x2b3d17['decimals']!=='number'||_0xe9a688[_0x4f0aa6(0x174)](_0x2b3d17['decimals'],0x0))throw new Error('Field\x20\x22'+_0x203638+'\x22\x20in\x20\x22'+_0xf6891f+_0x4f0aa6(0x165));if(_0x2b3d17[_0x4f0aa6(0xe8)]===_0xe9a688['UhBZS'])throw new Error('Field\x20\x22'+_0x203638+_0x4f0aa6(0x103)+_0xf6891f+_0x4f0aa6(0x11b));}continue;case'4':_0xe9a688['AktdJ'](validateName,_0x203638,_0x4f0aa6(0x16a)+_0x203638+_0x4f0aa6(0x103)+_0xf6891f+'\x22',0x32);continue;}break;}}function generateShortName(_0x4d9af1,_0xbc1651){const _0x59767c=_0x1e6932,_0x5e2d2b={};_0x5e2d2b['qmzXL']=function(_0x6bf087,_0xfa4ab){return _0x6bf087<=_0xfa4ab;},_0x5e2d2b[_0x59767c(0x139)]=function(_0x1e1bb9,_0x436fbe){return _0x1e1bb9+_0x436fbe;};const _0x283ca7=_0x5e2d2b,_0x244e35=_0x4d9af1[_0x59767c(0x14a)]();if(_0x283ca7[_0x59767c(0x123)](_0x244e35['length'],0xa))return _0xbc1651[_0x59767c(0xea)](_0x244e35),_0x244e35;const _0x152898=_0x244e35[_0x59767c(0x107)](0x0,0x6);for(let _0x515277=0x1;_0x515277<=0x270f;_0x515277++){const _0x368d64=String(_0x515277)['padStart'](0x4,'0'),_0x1e8f56=_0x283ca7[_0x59767c(0x139)](_0x152898,_0x368d64);if(!_0xbc1651[_0x59767c(0x171)](_0x1e8f56))return _0xbc1651[_0x59767c(0xea)](_0x1e8f56),_0x1e8f56;}throw new Error(_0x59767c(0x178)+_0x4d9af1+'\x22');}function generate(_0x526829){const _0x19de84=_0x1e6932,_0x414394={'aFrJF':function(_0x1f10df,_0x42998b){return _0x1f10df(_0x42998b);},'oaCcp':_0x19de84(0x186),'EUtmA':function(_0x1473ad,_0x2f54ab,_0x47904b,_0x1ddd68,_0xe32e61,_0x354b61){return _0x1473ad(_0x2f54ab,_0x47904b,_0x1ddd68,_0xe32e61,_0x354b61);}},_0x5d59a6=[],_0x59f6b2=new Set(),_0x22b4e1={};_0x22b4e1[_0x19de84(0xeb)]=0x1;const _0x43af17=_0x22b4e1;_0x5d59a6[_0x19de84(0x16b)](_0x414394[_0x19de84(0x17a)](ddsLine,{'keywords':_0x414394[_0x19de84(0x184)]}));for(const [_0x48cd08,_0x1d5eca]of Object[_0x19de84(0xf2)](_0x526829[_0x19de84(0x187)])){const _0x4d3aec=_0x48cd08[_0x19de84(0x14a)]();if(_0x1d5eca[_0x19de84(0x12f)])for(const [_0x15f7c0,_0x30f061]of Object[_0x19de84(0xf2)](_0x1d5eca['subfiles'])){const _0x15ff40=_0x15f7c0['toUpperCase']();generateSubfileFormat(_0x5d59a6,_0x15ff40,_0x30f061,_0x59f6b2);}_0x414394[_0x19de84(0x148)](generateControlFormat,_0x5d59a6,_0x4d3aec,_0x1d5eca,_0x59f6b2,_0x43af17);}return _0x5d59a6;}function generateSubfileFormat(_0x37ff54,_0x32993c,_0xb9b5fd,_0x4327b8){const _0x3ad431=_0x1e6932,_0x2673eb={'rQuwm':function(_0x2630dc,_0x10c475){return _0x2630dc(_0x10c475);},'NubJh':_0x3ad431(0x167),'LwyLo':_0x3ad431(0x15c),'PSNjX':function(_0x2fc19a,_0x85112,_0x3d4d26){return _0x2fc19a(_0x85112,_0x3d4d26);},'DmcAR':function(_0x5d149b,_0x3d0e02){return _0x5d149b>_0x3d0e02;}};_0x37ff54['push'](_0x2673eb[_0x3ad431(0x112)](ddsLine,{'type':'R','name':_0x32993c,'keywords':_0x2673eb[_0x3ad431(0x105)]})),_0x37ff54[_0x3ad431(0x16b)](_0x2673eb[_0x3ad431(0x112)](ddsLine,{'name':_0x2673eb[_0x3ad431(0x147)],'length':0x1,'dataType':'A','usage':'O','row':0x2,'col':0x2}));for(const [_0x5097db,_0x31565d]of Object[_0x3ad431(0xf2)](_0xb9b5fd[_0x3ad431(0x13b)])){const _0x31c14a=_0x5097db['toUpperCase'](),_0x27c09a=_0x2673eb[_0x3ad431(0x11a)](generateShortName,_0x5097db,_0x4327b8);_0x37ff54['push'](ddsFieldLine(_0x27c09a,_0x31565d,_0x2673eb['DmcAR'](_0x31c14a[_0x3ad431(0x173)],0xa)?_0x31c14a:null));}}function generateControlFormat(_0x3af934,_0xb63caa,_0x261624,_0x2b1c63,_0x2abb13){const _0x5ba469=_0x1e6932,_0x411269={'wUwKT':function(_0x59b9db,_0x46fde3){return _0x59b9db(_0x46fde3);},'kQORY':function(_0x587c29,_0x4a1b20){return _0x587c29(_0x4a1b20);},'aTFCk':_0x5ba469(0x11c),'TOhSi':function(_0x1d806f,_0x29ab45){return _0x1d806f(_0x29ab45);},'zZadB':_0x5ba469(0x15c),'alubn':function(_0x2466be,_0x219836,_0x2c631b,_0x4aad44){return _0x2466be(_0x219836,_0x2c631b,_0x4aad44);},'USdlD':function(_0x6fd07a,_0x31878a){return _0x6fd07a>_0x31878a;},'PckGf':function(_0x3a34fc,_0x234426,_0x242c46,_0x561f99){return _0x3a34fc(_0x234426,_0x242c46,_0x561f99);},'qaLrd':function(_0x2fc61b,_0x348272,_0x1593a8){return _0x2fc61b(_0x348272,_0x1593a8);}},_0x680817=_0x261624[_0x5ba469(0x12f)]&&Object['keys'](_0x261624[_0x5ba469(0x12f)])[_0x5ba469(0x173)]>0x0;if(_0x680817)for(const [_0x4a6c80]of Object[_0x5ba469(0xf2)](_0x261624[_0x5ba469(0x12f)])){const _0x359500=_0x4a6c80[_0x5ba469(0x14a)](),_0x9b5393=_0x5ba469(0x15f)+String(_0x2abb13[_0x5ba469(0xeb)])[_0x5ba469(0x13a)](0x3,'0');_0x2abb13[_0x5ba469(0xeb)]++;const _0xb66796={};_0xb66796[_0x5ba469(0xe8)]='R',_0xb66796['name']=_0x9b5393,_0xb66796[_0x5ba469(0x152)]=_0x5ba469(0x12d)+_0x359500+')',_0x3af934[_0x5ba469(0x16b)](ddsLine(_0xb66796));const _0x3842be={};_0x3842be[_0x5ba469(0x152)]=_0x5ba469(0x12b),_0x3af934[_0x5ba469(0x16b)](ddsLine(_0x3842be));const _0x5f591d={};_0x5f591d[_0x5ba469(0x152)]=_0x5ba469(0x17c),_0x3af934[_0x5ba469(0x16b)](_0x411269[_0x5ba469(0x142)](ddsLine,_0x5f591d)),_0x3af934[_0x5ba469(0x16b)](_0x411269[_0x5ba469(0xe9)](ddsLine,{'keywords':_0x411269['aTFCk']}));const _0x3e7fde='QPUISFL'+_0xb63caa;writeHtmlKeywords(_0x3af934,_0x3e7fde);}const _0x950586={};_0x950586[_0x5ba469(0xe8)]='R',_0x950586['name']=_0xb63caa,_0x3af934[_0x5ba469(0x16b)](ddsLine(_0x950586));const _0x1f7ef7={};_0x1f7ef7[_0x5ba469(0x152)]=_0x5ba469(0x10d),_0x3af934[_0x5ba469(0x16b)](_0x411269['kQORY'](ddsLine,_0x1f7ef7)),_0x3af934[_0x5ba469(0x16b)](_0x411269[_0x5ba469(0x14b)](ddsLine,{'name':_0x411269[_0x5ba469(0x144)],'length':0x1,'dataType':'A','usage':'O','row':0x1,'col':0x2}));for(const [_0x4f970e,_0x17193e]of Object['entries'](_0x261624[_0x5ba469(0x13b)])){const _0x1a2b3f=_0x4f970e[_0x5ba469(0x14a)](),_0x374e91=generateShortName(_0x4f970e,_0x2b1c63);_0x3af934[_0x5ba469(0x16b)](_0x411269[_0x5ba469(0xee)](ddsFieldLine,_0x374e91,_0x17193e,_0x411269[_0x5ba469(0x175)](_0x1a2b3f[_0x5ba469(0x173)],0xa)?_0x1a2b3f:null));}if(_0x680817)for(const _0x21bb0d of Object[_0x5ba469(0x141)](_0x261624[_0x5ba469(0x12f)])){const _0x59a9a7=_0x21bb0d[_0x5ba469(0x10e)][_0x5ba469(0x14a)]();if(!_0x261624[_0x5ba469(0x13b)][_0x21bb0d[_0x5ba469(0x10e)]]&&!_0x261624[_0x5ba469(0x13b)][_0x21bb0d[_0x5ba469(0x10e)][_0x5ba469(0x14a)]()]){const _0xfd2a2d=generateShortName(_0x21bb0d[_0x5ba469(0x10e)],_0x2b1c63),_0x3a8924={};_0x3a8924[_0x5ba469(0xe8)]=_0x5ba469(0x143),_0x3a8924[_0x5ba469(0x173)]=0x1,_0x3af934[_0x5ba469(0x16b)](_0x411269[_0x5ba469(0x119)](ddsFieldLine,_0xfd2a2d,_0x3a8924,_0x59a9a7[_0x5ba469(0x173)]>0xa?_0x59a9a7:null));}}const _0x5727aa=_0x411269[_0x5ba469(0x185)](buildServerMetaData,_0xb63caa,_0x261624);_0x411269[_0x5ba469(0x185)](writeHtmlKeywords,_0x3af934,_0x5727aa);const _0x5f3d94=buildClientMetaData(_0xb63caa,_0x261624);writeHtmlKeywords(_0x3af934,_0x5f3d94);}function buildServerMetaData(_0x4c6b14,_0x3d8411){const _0x1fd2d3=_0x1e6932,_0x5cf0ab={'VkAgc':function(_0x24420c,_0x21f6e7,_0x12f052){return _0x24420c(_0x21f6e7,_0x12f052);},'ciCde':function(_0x5229a2,_0x25b400,_0x3308b3,_0x216af1){return _0x5229a2(_0x25b400,_0x3308b3,_0x216af1);},'DLRVm':'SFLDSP','SkAbI':'SFLDSPCTL','areTb':function(_0x3caecf,_0x5bf9a0,_0x5da437,_0x5961c6,_0x3f6066,_0x1abeb6){return _0x3caecf(_0x5bf9a0,_0x5da437,_0x5961c6,_0x3f6066,_0x1abeb6);},'QznnJ':function(_0x95e644,_0x42f9e9,_0x1f12e0,_0x43a391){return _0x95e644(_0x42f9e9,_0x1f12e0,_0x43a391);},'UuAOj':_0x1fd2d3(0x115),'hBIzJ':function(_0x613751,_0x41055c,_0x422480,_0x391c8b){return _0x613751(_0x41055c,_0x422480,_0x391c8b);},'jHykO':_0x1fd2d3(0xf9),'XqQDE':function(_0x54fa20,_0x4752c0,_0x2e413b,_0x4c2b91){return _0x54fa20(_0x4752c0,_0x2e413b,_0x4c2b91);},'OItOs':function(_0x21dc55,_0x54d6be){return _0x21dc55(_0x54d6be);},'CWaqx':function(_0x4d262f,_0x36b8bd){return _0x4d262f+_0x36b8bd;},'librp':'QPUI','zaUjB':_0x1fd2d3(0xff)},_0xfd4b17=_0x3d8411[_0x1fd2d3(0x12f)]&&Object[_0x1fd2d3(0xf1)](_0x3d8411['subfiles'])[_0x1fd2d3(0x173)]>0x0;if(_0xfd4b17){let _0x3e7fa1=_0x1fd2d3(0x146);const _0x48a0b6=Object[_0x1fd2d3(0xf2)](_0x3d8411[_0x1fd2d3(0x12f)]);_0x3e7fa1+=padNum(_0x48a0b6['length']);for(const [_0x1704e4,_0x55a124]of _0x48a0b6){const _0x4781b9=_0x1704e4[_0x1fd2d3(0x14a)]();_0x3e7fa1+=_0x5cf0ab['VkAgc'](padStr,_0x4781b9,0xa);const _0x235621=_0x55a124[_0x1fd2d3(0x10e)][_0x1fd2d3(0x14a)](),_0x1f5b7a=[];_0x1f5b7a[_0x1fd2d3(0x16b)](_0x5cf0ab[_0x1fd2d3(0x116)](buildKeyMeta,'R',_0x5cf0ab[_0x1fd2d3(0x155)],[])),_0x1f5b7a[_0x1fd2d3(0x16b)](_0x5cf0ab[_0x1fd2d3(0x116)](buildKeyMeta,'R',_0x5cf0ab[_0x1fd2d3(0x11d)],[])),_0x1f5b7a[_0x1fd2d3(0x16b)](_0x5cf0ab[_0x1fd2d3(0xfb)](buildKeyMeta,'R',_0x1fd2d3(0xe4),[],'F',_0x235621));const _0x4cba15={};_0x4cba15[_0x1fd2d3(0xe8)]='C',_0x4cba15['value']='40',_0x1f5b7a['push'](_0x5cf0ab[_0x1fd2d3(0x101)](buildKeyMeta,'R',_0x5cf0ab[_0x1fd2d3(0xf8)],[_0x4cba15]));const _0x4bd553={};_0x4bd553[_0x1fd2d3(0xe8)]='C',_0x4bd553[_0x1fd2d3(0xeb)]='9999',_0x1f5b7a[_0x1fd2d3(0x16b)](_0x5cf0ab[_0x1fd2d3(0x14f)](buildKeyMeta,'R',_0x5cf0ab[_0x1fd2d3(0x111)],[_0x4bd553])),_0x3e7fa1+=padNum(_0x1f5b7a['length']),_0x3e7fa1+=_0x1f5b7a[_0x1fd2d3(0x10f)](''),_0x3e7fa1+=padNum(0x0);}const _0x1753ae=[];return _0x1753ae[_0x1fd2d3(0x16b)](_0x5cf0ab['XqQDE'](buildKeyMeta,'R',_0x1fd2d3(0x10d),[])),_0x3e7fa1+=_0x5cf0ab[_0x1fd2d3(0xed)](padNum,_0x1753ae[_0x1fd2d3(0x173)]),_0x3e7fa1+=_0x1753ae[_0x1fd2d3(0x10f)](''),_0x1fd2d3(0x13f)+_0x3e7fa1;}else return _0x5cf0ab['CWaqx'](_0x5cf0ab[_0x1fd2d3(0x127)]+_0x5cf0ab[_0x1fd2d3(0x10a)],_0x5cf0ab[_0x1fd2d3(0xed)](padNum,0x0));}function buildKeyMeta(_0x2269a4,_0x39f497,_0x3994a5,_0x52bb43,_0x58f413){const _0x53559f=_0x1e6932,_0xeb5677={'xLLGT':function(_0x137c73,_0x2e01b6,_0x349da6){return _0x137c73(_0x2e01b6,_0x349da6);},'EtkbX':function(_0x47c471,_0x48312d){return _0x47c471(_0x48312d);},'eXNFc':function(_0x216c38,_0x43b448){return _0x216c38||_0x43b448;}};let _0x12737a=_0x2269a4;_0x2269a4==='F'&&(_0x12737a+=_0xeb5677[_0x53559f(0x18a)](padStr,'',0xa));_0x12737a+=_0xeb5677['xLLGT'](padStr,_0x39f497,0xa),_0x12737a+=_0xeb5677[_0x53559f(0x17b)](padNum,_0x3994a5[_0x53559f(0x173)]);for(const _0x2f0a79 of _0x3994a5){_0x12737a+=_0x2f0a79[_0x53559f(0xe8)],_0x2f0a79['type']==='C'?(_0x12737a+=padNum(_0x2f0a79[_0x53559f(0xeb)]['length']),_0x12737a+=_0x2f0a79['value']):_0x12737a+=padStr(_0x2f0a79[_0x53559f(0xeb)],0xa);}_0x12737a+=_0xeb5677['eXNFc'](_0x52bb43,'\x20');if(_0x52bb43==='F'&&_0x58f413)_0x12737a+=padStr(_0x58f413,0xa);else{if(_0x52bb43==='E'&&_0x58f413){_0x12737a+=padNum(_0x58f413['length']);for(const _0x611d08 of _0x58f413){_0x12737a+=_0xeb5677[_0x53559f(0x17b)](padNum,_0x611d08[_0x53559f(0x173)]),_0x12737a+=_0x611d08;}}}return _0x12737a;}function buildClientMetaData(_0x1bf7ed,_0x5081af){const _0x741866=_0x1e6932,_0x181f06={};_0x181f06['oMHcE']=_0x741866(0x137),_0x181f06['yRXPc']=function(_0x184e8a,_0x2e8910){return _0x184e8a>_0x2e8910;},_0x181f06[_0x741866(0x10c)]=_0x741866(0x126);const _0x7e3f96=_0x181f06,_0x37ed0e={};_0x37ed0e[_0x741866(0x122)]=_0x1bf7ed,_0x37ed0e[_0x741866(0xf6)]=!![],_0x37ed0e['ejs\x20template']=_0x5081af[_0x741866(0x159)];const _0x588790=_0x37ed0e;_0x5081af['css']&&_0x5081af['css'][_0x741866(0x173)]>0x0&&(_0x588790[_0x7e3f96[_0x741866(0xf5)]]=_0x5081af['css']);_0x5081af['js']&&_0x7e3f96['yRXPc'](_0x5081af['js'][_0x741866(0x173)],0x0)&&(_0x588790[_0x7e3f96['CUNTZ']]=_0x5081af['js']);const _0x5ce0f5={};return _0x5ce0f5[_0x741866(0x104)]=_0x588790,_0x5ce0f5[_0x741866(0x133)]=[],JSON['stringify'](_0x5ce0f5);}function writeHtmlKeywords(_0xab3adb,_0x32cdc5){const _0x5e9658=_0x1e6932,_0x7ac4f={'opjNl':function(_0x4e5f8a,_0x2ebf25){return _0x4e5f8a+_0x2ebf25;},'yoYSA':function(_0x3d0458,_0x54ba09){return _0x3d0458+_0x54ba09;},'PXdmZ':function(_0x315b44,_0x4a58c6){return _0x315b44-_0x4a58c6;},'gkCfT':function(_0x2d51ef,_0x5831fe){return _0x2d51ef+_0x5831fe;},'boPVb':function(_0x412389,_0x5bb34c){return _0x412389(_0x5bb34c);},'ZRCVG':function(_0x32c2dd,_0x4426ff){return _0x32c2dd(_0x4426ff);},'RLVDP':function(_0x5ed0aa,_0x199b39){return _0x5ed0aa+_0x199b39;}},_0x4b5ac9=0x24,_0x1af915='HTML(\x27',_0x30be97='\x27)',_0x3894f4='-',_0x24eee1=_0x7ac4f[_0x5e9658(0x14c)](_0x1af915[_0x5e9658(0x173)]+_0x32cdc5[_0x5e9658(0x173)],_0x30be97[_0x5e9658(0x173)])<=_0x4b5ac9;if(_0x24eee1){const _0x2aead9=_0x7ac4f[_0x5e9658(0xf0)](_0x1af915+_0x32cdc5,_0x30be97),_0x1f0a46={};_0x1f0a46[_0x5e9658(0x114)]=0x1,_0x1f0a46[_0x5e9658(0x145)]=0x2,_0x1f0a46[_0x5e9658(0x152)]=_0x2aead9,_0xab3adb[_0x5e9658(0x16b)](ddsLine(_0x1f0a46));return;}const _0x3ce9a0=_0x4b5ac9-_0x1af915[_0x5e9658(0x173)]-_0x3894f4[_0x5e9658(0x173)],_0x47c6d2=_0x7ac4f[_0x5e9658(0xe7)](_0x4b5ac9,_0x3894f4[_0x5e9658(0x173)]);let _0x697103=0x0;const _0x5a67b1=_0x32cdc5[_0x5e9658(0x107)](_0x697103,_0x697103+_0x3ce9a0);_0x697103+=_0x3ce9a0;const _0x3df7b1=_0x7ac4f[_0x5e9658(0x129)](_0x1af915,_0x5a67b1)+_0x3894f4,_0x237839={};_0x237839[_0x5e9658(0x114)]=0x1,_0x237839['col']=0x2,_0x237839[_0x5e9658(0x152)]=_0x3df7b1,_0xab3adb[_0x5e9658(0x16b)](_0x7ac4f[_0x5e9658(0x161)](ddsLine,_0x237839));let _0x2cc2c9=![];while(_0x697103<_0x32cdc5['length']){const _0x1f048f=_0x32cdc5[_0x5e9658(0x173)]-_0x697103,_0x2304e8=_0x7ac4f[_0x5e9658(0x14c)](_0x1f048f,_0x30be97['length'])<=_0x4b5ac9;if(_0x2304e8){const _0x1ba13d=_0x32cdc5[_0x5e9658(0x107)](_0x697103),_0x2d5544=_0x1ba13d+_0x30be97,_0x1e27b4={};_0x1e27b4['keywords']=_0x2d5544,_0xab3adb[_0x5e9658(0x16b)](_0x7ac4f[_0x5e9658(0x180)](ddsLine,_0x1e27b4)),_0x697103=_0x32cdc5['length'],_0x2cc2c9=!![];}else{const _0x585082=_0x32cdc5[_0x5e9658(0x107)](_0x697103,_0x697103+_0x47c6d2);_0x697103+=_0x47c6d2,_0xab3adb[_0x5e9658(0x16b)](ddsLine({'keywords':_0x7ac4f[_0x5e9658(0x130)](_0x585082,_0x3894f4)}));}}if(!_0x2cc2c9){const _0x176777={};_0x176777[_0x5e9658(0x152)]=_0x30be97,_0xab3adb['push'](ddsLine(_0x176777));}}function ddsLine(_0x521e34={}){const _0x579b3e=_0x1e6932,_0x36afe6={};_0x36afe6[_0x579b3e(0x128)]=function(_0x3657cb,_0x356981){return _0x3657cb-_0x356981;},_0x36afe6[_0x579b3e(0x17f)]=function(_0x44704d,_0x17b7dd){return _0x44704d-_0x17b7dd;},_0x36afe6[_0x579b3e(0x110)]=function(_0x40015c,_0xc3d8cc){return _0x40015c<_0xc3d8cc;},_0x36afe6[_0x579b3e(0xe5)]=function(_0x3b2f60,_0x452c94){return _0x3b2f60+_0x452c94;},_0x36afe6[_0x579b3e(0x188)]=function(_0x473dd2,_0x3741ea){return _0x473dd2!==_0x3741ea;},_0x36afe6[_0x579b3e(0x10b)]=function(_0x9e1aff,_0x187e84){return _0x9e1aff-_0x187e84;},_0x36afe6[_0x579b3e(0x125)]=function(_0x194db7,_0x3b07d0){return _0x194db7+_0x3b07d0;},_0x36afe6[_0x579b3e(0x16f)]=function(_0x4fb244,_0x1766a4){return _0x4fb244-_0x1766a4;},_0x36afe6[_0x579b3e(0x166)]=function(_0x4ed0d6,_0x2f0bf9){return _0x4ed0d6<_0x2f0bf9;},_0x36afe6[_0x579b3e(0x154)]=function(_0x19ccdc,_0x48f52b){return _0x19ccdc+_0x48f52b;},_0x36afe6[_0x579b3e(0x12e)]=function(_0x58f7d4,_0x507044){return _0x58f7d4-_0x507044;};const _0x460293=_0x36afe6,_0x3fd6f9=new Array(COL[_0x579b3e(0x102)])[_0x579b3e(0x182)]('\x20');_0x3fd6f9[_0x460293[_0x579b3e(0x128)](COL[_0x579b3e(0x18b)],0x1)]='A';if(_0x521e34[_0x579b3e(0x189)]){const _0x3aa43a=_0x521e34[_0x579b3e(0x189)];for(let _0xdd58a2=0x0;_0xdd58a2<_0x3aa43a[_0x579b3e(0x173)]&&_0xdd58a2<0xa;_0xdd58a2++){_0x3fd6f9[COL[_0x579b3e(0x15b)]-0x1+_0xdd58a2]=_0x3aa43a[_0xdd58a2];}}_0x521e34[_0x579b3e(0xe8)]==='R'&&(_0x3fd6f9[_0x460293[_0x579b3e(0x17f)](COL[_0x579b3e(0xfa)],0x1)]='R');if(_0x521e34[_0x579b3e(0x156)]){const _0x43dd91=_0x521e34[_0x579b3e(0x156)][_0x579b3e(0x107)](0x0,0xa);for(let _0xfdd264=0x0;_0x460293[_0x579b3e(0x110)](_0xfdd264,_0x43dd91['length']);_0xfdd264++){_0x3fd6f9[_0x460293[_0x579b3e(0xe5)](COL[_0x579b3e(0x158)]-0x1,_0xfdd264)]=_0x43dd91[_0xfdd264];}}if(_0x460293[_0x579b3e(0x188)](_0x521e34['length'],undefined)){const _0x12c3bb=_0x521e34[_0x579b3e(0x173)]['toString'](),_0x445cee=_0x460293[_0x579b3e(0x10b)](COL[_0x579b3e(0x183)],_0x12c3bb[_0x579b3e(0x173)]);for(let _0x4c8167=0x0;_0x4c8167<_0x12c3bb[_0x579b3e(0x173)];_0x4c8167++){_0x3fd6f9[_0x460293[_0x579b3e(0xe5)](_0x445cee,_0x4c8167)]=_0x12c3bb[_0x4c8167];}}_0x521e34[_0x579b3e(0x14d)]&&(_0x3fd6f9[COL[_0x579b3e(0x11f)]-0x1]=_0x521e34['dataType']);if(_0x521e34[_0x579b3e(0x140)]!==undefined){const _0x10d002=_0x521e34['decimals'][_0x579b3e(0xf7)](),_0x35dee6=COL['DEC_POS_END']-_0x10d002[_0x579b3e(0x173)];for(let _0x3a71b0=0x0;_0x460293[_0x579b3e(0x110)](_0x3a71b0,_0x10d002[_0x579b3e(0x173)]);_0x3a71b0++){_0x3fd6f9[_0x460293[_0x579b3e(0xe5)](_0x35dee6,_0x3a71b0)]=_0x10d002[_0x3a71b0];}}_0x521e34['usage']&&(_0x3fd6f9[_0x460293[_0x579b3e(0x17f)](COL[_0x579b3e(0x121)],0x1)]=_0x521e34[_0x579b3e(0x12a)]);if(_0x521e34[_0x579b3e(0x114)]!==undefined){const _0x5e20cf=_0x521e34['row']['toString'](),_0xb53370=COL[_0x579b3e(0x150)]-_0x5e20cf[_0x579b3e(0x173)];for(let _0xb6900f=0x0;_0x460293[_0x579b3e(0x110)](_0xb6900f,_0x5e20cf[_0x579b3e(0x173)]);_0xb6900f++){_0x3fd6f9[_0x460293[_0x579b3e(0x125)](_0xb53370,_0xb6900f)]=_0x5e20cf[_0xb6900f];}}if(_0x521e34[_0x579b3e(0x145)]!==undefined){const _0x4049a3=_0x521e34[_0x579b3e(0x145)][_0x579b3e(0xf7)](),_0xc71270=_0x460293[_0x579b3e(0x16f)](COL[_0x579b3e(0x15a)],_0x4049a3[_0x579b3e(0x173)]);for(let _0x4976e8=0x0;_0x460293[_0x579b3e(0x166)](_0x4976e8,_0x4049a3[_0x579b3e(0x173)]);_0x4976e8++){_0x3fd6f9[_0x460293[_0x579b3e(0x154)](_0xc71270,_0x4976e8)]=_0x4049a3[_0x4976e8];}}if(_0x521e34['keywords']){const _0x3e5d2e=_0x521e34[_0x579b3e(0x152)][_0x579b3e(0x107)](0x0,_0x460293['biSMN'](COL[_0x579b3e(0x102)]-COL['KEYWORDS'],0x1));for(let _0x4c2173=0x0;_0x460293['IwMDT'](_0x4c2173,_0x3e5d2e['length']);_0x4c2173++){_0x3fd6f9[_0x460293[_0x579b3e(0xe5)](_0x460293[_0x579b3e(0x12e)](COL[_0x579b3e(0x172)],0x1),_0x4c2173)]=_0x3e5d2e[_0x4c2173];}}return _0x3fd6f9[_0x579b3e(0x10f)]('')[_0x579b3e(0x106)]();}function ddsFieldLine(_0x35a304,_0x410c05,_0x2a4e13){const _0x2c458b=_0x1e6932,_0x3bacaa={'EOWrv':function(_0x109423,_0x17d16){return _0x109423!==_0x17d16;},'lnJwI':'char','BeMcd':function(_0x50ae33,_0x53f8a0){return _0x50ae33(_0x53f8a0);}},_0x219f38=TYPE_MAP[_0x410c05[_0x2c458b(0xe8)]],_0x1ceb06=_0x3bacaa[_0x2c458b(0x162)](_0x410c05[_0x2c458b(0xe8)],_0x3bacaa[_0x2c458b(0xe6)])?_0x410c05[_0x2c458b(0x140)]||0x0:undefined,_0x2cb426=_0x2a4e13?_0x2c458b(0x12c)+_0x2a4e13+')':undefined,_0x577a32={};return _0x577a32[_0x2c458b(0x156)]=_0x35a304,_0x577a32['length']=_0x410c05['length'],_0x577a32[_0x2c458b(0x14d)]=_0x219f38,_0x577a32['decimals']=_0x1ceb06,_0x577a32['usage']='H',_0x577a32[_0x2c458b(0x152)]=_0x2cb426,_0x3bacaa[_0x2c458b(0x132)](ddsLine,_0x577a32);}function _0x4dcd(){const _0x1560d9=['y2XLyxi','AM9PBG','BfjUAwG','AKH5A08','CLf1D20','iIbOyxmGAw52ywXPzcb0ExbLici','CM93','u0zmuefh','y2Ldzgu','CLzhDMK','B2jQzwn0','ugnRr2y','ufnoALG','iJOGiMrLy2LTywXZiIbPCYbUB3qGDMfSAwqGzM9Yihr5CguGiMnOyxiI','u0zmrfnq','u2TbyKK','Dxnerg8','refuqv9uwvbf','iIbTDxn0igjLigfUig9IAMvJDa','vvnbr0u','CMvJB3jKigzVCM1HDcbUyw1L','Cw16weW','tKfnrv9ftKq','y0nivLO','zwPZigPZ','BgLICNa','wMHsAfq','z2TdzLq','DxnHz2u','u0zmu0LAkdaWmdeP','quXjqvmO','u0zmq1rmka','tvPZs08','C3vIzMLSzxm','uKXwrfa','mte2z3nQtgv0','qMvny2q','AxrLBxm','mJqWndK2ofLIyM52yW','BNvTyMvY','ig5HBwuGBxvZDcbIzsbHig5VBI1LBxb0EsbZDhjPBMC','zwPZignZCW','uKvg','ELfHDeC','CgfKu3rHCNq','zMLLBgrZ','u291CMnLiePtt04GBxvZDcbOyxzLicj0ExbLiJOGiMvQCYi','nZaXmdvOuwHHsLO','ndG0mZmYohbVDNjuEa','uvbvsq','zgvJAw1HBhm','DMfSDwvZ','D1v3s1q','y2HHCG','ELPHzei','y29S','q1rm','thD5tg8','rvv0Bue','CgfJA2vK','Dg9vChbLCKnHC2u','ve9Ou2K','B3bQtMW','zgf0yvr5Cgu','uNnez2m','AejjEKO','uK9xx0vora','CgfKrw5K','A2v5D29Yzhm','C3rYAw5N','D1bJq08','reXsvM0','BMfTzq','mJeYmdC4ngr2DK5nCW','tKfnrv9tvefsva','DgvTCgXHDgu','q09mx0vora','q09orf9jtKq','uvbvstaWmdaWmq','ignOyxjHy3rLCIbTyxHPBxvT','iIbTDxn0igHHDMuGysaIzMLLBgrZiIbVyMPLy3q','uvngtenuta','BgLUzxm','yM9qvMi','ru9xCNy','BwvZC2fNzq','u3vIzMLSzsaI','iIbOyxmGAw52ywXPzcaIzgvJAw1HBhmIihzHBhvL','sxDnrfq','u0zm','y0Pfwge','EM9Uzwq','rMLLBgqGiG','ChvZAa','ugPyEMO','sg9Yq2y','ig5HBwuGiG','uvbLsKW','D2f2yve','AgfZ','s0vzv09srfm','BgvUz3rO','qwDtC3e','vvnKBeq','iIbTDxn0igHHDMuGysaIDgvTCgXHDguIihbHDgG','u291CMnLiePtt04GBxvZDcbIzsbHBIbVyMPLy3q','q2fUBM90igDLBMvYyxrLihvUAxf1zsbZAg9YDcbUyw1LigzVCIbMAwvSzcaI','D0z4v2i','yuzYsKy','rxrRyLG','u0zmuefhkdaWmdeP','zxjYB3i','ote5mtq2rKrgqxLh','s0XpB2e','wLjdvKC','iIbPBIbMB3jTyxqGiG','zMLSBa','tevor1rix0vora','B2fdy3a','CwfmCMq','su5eqvjb','zM9YBwf0CW','uvPMvhu','y29UzeLUza','EeXmr1q','rK9stv9uwvbf','Agj6BNG','mtm3mZiYowHSqKTxBa','u0zmq0Xs','yMLttu4','Bg5kD0K','ufHKBvO','DhLWzq','A1fpuLK','ywrK','DMfSDwu','wMDyBu4','t0L0t3m','ywX1yM4','iIbJB250ywLUCYbPBNzHBgLKignOyxjHy3rLCNm','Ew9zu0e','A2v5CW','zw50CMLLCW','q2XLyxiGzMLLBgq','t1nOzuS','B01iy0u','zwPZ','Dg9tDhjPBMC','vxvbt2O','u0zmu0LA','vfLqrq','yxjLvgi','yufjv3K','nhWWFdf8mNWZ','iIbLEgnLzwrZia','uKvd','mte0mZeYDxb1u3rt','uxPUBKO','teLorv9xsurusa','iIbPBIaI','C2nYzwvU','tNvIsMG','DhjPBuvUza','C3vIC3rYAw5N','C3vJy2vZCW','C3bSAxq','EMfvAKi','vLDwzMq','q1vovfO','t1zfuKXbwq'];_0x4dcd=function(){return _0x1560d9;};return _0x4dcd();}function padNum(_0xdd6849){const _0x25e814=_0x1e6932;return _0xdd6849[_0x25e814(0xf7)]()['padEnd'](0x5);}function padStr(_0x175bb4,_0x10d987){const _0x5718d9=_0x1e6932;return(_0x175bb4||'')[_0x5718d9(0x151)](_0x10d987);}
|