@nx/enterprise-cloud 5.0.0 → 5.0.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 +1 -1
- package/THIRD_PARTY_LICENSES.txt +24 -38
- package/package.json +3 -3
- package/src/generators/init/init.js +1 -1
- package/src/index.js +1 -1
- package/src/plugin/plugin.js +1 -1
- package/src/plugin/plugin.js.map +1 -1
package/README.md
CHANGED
package/THIRD_PARTY_LICENSES.txt
CHANGED
|
@@ -397,25 +397,33 @@ limitations under the License.
|
|
|
397
397
|
|
|
398
398
|
---
|
|
399
399
|
|
|
400
|
-
Package: lru-cache (
|
|
400
|
+
Package: lru-cache (2.2.4)
|
|
401
401
|
Type: npm
|
|
402
|
-
License:
|
|
403
|
-
|
|
404
|
-
|
|
402
|
+
License: [object Object]
|
|
403
|
+
|
|
404
|
+
Copyright 2009, 2010, 2011 Isaac Z. Schlueter.
|
|
405
|
+
All rights reserved.
|
|
406
|
+
|
|
407
|
+
Permission is hereby granted, free of charge, to any person
|
|
408
|
+
obtaining a copy of this software and associated documentation
|
|
409
|
+
files (the "Software"), to deal in the Software without
|
|
410
|
+
restriction, including without limitation the rights to use,
|
|
411
|
+
copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
412
|
+
copies of the Software, and to permit persons to whom the
|
|
413
|
+
Software is furnished to do so, subject to the following
|
|
414
|
+
conditions:
|
|
405
415
|
|
|
406
|
-
|
|
416
|
+
The above copyright notice and this permission notice shall be
|
|
417
|
+
included in all copies or substantial portions of the Software.
|
|
407
418
|
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
|
|
415
|
-
|
|
416
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
417
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
418
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
419
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
420
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
|
|
421
|
+
OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
|
422
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
|
|
423
|
+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
|
|
424
|
+
WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
|
|
425
|
+
FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
426
|
+
OTHER DEALINGS IN THE SOFTWARE.
|
|
419
427
|
|
|
420
428
|
---
|
|
421
429
|
|
|
@@ -786,25 +794,3 @@ SHALL THE COPYRIGHT HOLDERS OR ANYONE DISTRIBUTING THE SOFTWARE BE LIABLE
|
|
|
786
794
|
FOR ANY DAMAGES OR OTHER LIABILITY, WHETHER IN CONTRACT, TORT OR OTHERWISE,
|
|
787
795
|
ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
|
|
788
796
|
DEALINGS IN THE SOFTWARE.
|
|
789
|
-
|
|
790
|
-
---
|
|
791
|
-
|
|
792
|
-
Package: yallist (3.1.1)
|
|
793
|
-
Type: npm
|
|
794
|
-
License: ISC
|
|
795
|
-
|
|
796
|
-
The ISC License
|
|
797
|
-
|
|
798
|
-
Copyright (c) Isaac Z. Schlueter and Contributors
|
|
799
|
-
|
|
800
|
-
Permission to use, copy, modify, and/or distribute this software for any
|
|
801
|
-
purpose with or without fee is hereby granted, provided that the above
|
|
802
|
-
copyright notice and this permission notice appear in all copies.
|
|
803
|
-
|
|
804
|
-
THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
805
|
-
WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
806
|
-
MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
|
|
807
|
-
ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
808
|
-
WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
|
|
809
|
-
ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR
|
|
810
|
-
IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/enterprise-cloud",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.2",
|
|
4
4
|
"description": "A Nx plugin which is specific to Nx Enterprise Cloud workspaces.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "src/index.js",
|
|
@@ -20,11 +20,11 @@
|
|
|
20
20
|
],
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@nx/devkit": "22.0.3",
|
|
23
|
-
"@nx/key": "5.0.
|
|
23
|
+
"@nx/key": "5.0.2",
|
|
24
24
|
"semver": "7.5.4"
|
|
25
25
|
},
|
|
26
26
|
"peerDependencies": {
|
|
27
27
|
"nx": ">= 18 < 23"
|
|
28
28
|
},
|
|
29
29
|
"types": "./src/index.d.ts"
|
|
30
|
-
}
|
|
30
|
+
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';function
|
|
1
|
+
'use strict';function a0_0x3e26(_0x1745c6,_0x4a186a){const _0x568c25=a0_0x568c();return a0_0x3e26=function(_0x3e26dd,_0x3e1628){_0x3e26dd=_0x3e26dd-0xd8;let _0x2dd366=_0x568c25[_0x3e26dd];return _0x2dd366;},a0_0x3e26(_0x1745c6,_0x4a186a);}const a0_0x2ad93d=a0_0x3e26;(function(_0xff9ee2,_0x5dc9ff){const _0x6a6295=a0_0x3e26,_0x526b68=_0xff9ee2();while(!![]){try{const _0xc62ff1=-parseInt(_0x6a6295(0xe0))/0x1+-parseInt(_0x6a6295(0xe3))/0x2+parseInt(_0x6a6295(0xe9))/0x3+parseInt(_0x6a6295(0xea))/0x4*(-parseInt(_0x6a6295(0xe8))/0x5)+-parseInt(_0x6a6295(0xdc))/0x6+-parseInt(_0x6a6295(0xe5))/0x7+parseInt(_0x6a6295(0xe1))/0x8;if(_0xc62ff1===_0x5dc9ff)break;else _0x526b68['push'](_0x526b68['shift']());}catch(_0x1bcced){_0x526b68['push'](_0x526b68['shift']());}}}(a0_0x568c,0x366a7));Object['defineProperty'](exports,a0_0x2ad93d(0xdf),{'value':!0x0}),exports['initGenerator']=r;let e=require('@nx/devkit'),t=require(a0_0x2ad93d(0xdb));async function r(_0x491f2c){const _0x535ccb=a0_0x2ad93d;if(!await(0x0,t['getNxKeyInformationAsync'])(e[_0x535ccb(0xdd)]))throw Error(_0x535ccb(0xd8));(0x0,e[_0x535ccb(0xda)])(_0x491f2c,_0x535ccb(0xd9),_0x5e336b=>{const _0x346baa=_0x535ccb;_0x5e336b[_0x346baa(0xeb)]=_0x5e336b['plugins']||[];let _0x907ebc=_0x346baa(0xe7);return _0x5e336b['plugins'][_0x346baa(0xde)](_0x5619ae=>_0x346baa(0xe2)==typeof _0x5619ae?_0x5619ae===_0x907ebc:_0x5619ae[_0x346baa(0xe6)]===_0x907ebc)||_0x5e336b[_0x346baa(0xeb)][_0x346baa(0xe4)](_0x346baa(0xe7)),_0x5e336b;}),await(0x0,e['formatFiles'])(_0x491f2c);}exports['default']=r;function a0_0x568c(){const _0x16810a=['2637628lDOdKz','plugin','@nx/enterprise-cloud','5710UqfOoj','1142094Fyayuf','1116xQwdHr','plugins','You\x20must\x20have\x20a\x20valid\x20Nx\x20key\x20to\x20use\x20@nx/enterprise-cloud,\x20read\x20more\x20about\x20Nx\x20keys\x20on\x20https://nx.dev/powerpack','nx.json','updateJson','@nx/key','1602684KNVLIh','workspaceRoot','some','__esModule','127736pcGOFa','8593728BnSKjS','string','283510MzTJHz','push'];a0_0x568c=function(){return _0x16810a;};return a0_0x568c();}
|
package/src/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';
|
|
1
|
+
'use strict';function a1_0x31b6(_0x3f83e4,_0x1ceca9){var _0x2ce79a=a1_0x2ce7();return a1_0x31b6=function(_0x31b634,_0x47fd3c){_0x31b634=_0x31b634-0x170;var _0x469e2d=_0x2ce79a[_0x31b634];return _0x469e2d;},a1_0x31b6(_0x3f83e4,_0x1ceca9);}var a1_0x29a323=a1_0x31b6;function a1_0x2ce7(){var _0x2a505b=['956024RNGfDl','createNodes','1410115mxtRiI','43sbTMtT','__esModule','3495910FIBTWS','2812854FYwuzl','19636JPnnWc','defineProperty','./plugin/plugin','82806nVwYEw','1586YRYJXS','318SKsMef','createMetadata','230ZQxPSt','9JWPIkg'];a1_0x2ce7=function(){return _0x2a505b;};return a1_0x2ce7();}(function(_0x25777c,_0x8e658b){var _0x5c1cbb=a1_0x31b6,_0x57f8c8=_0x25777c();while(!![]){try{var _0x23db40=parseInt(_0x5c1cbb(0x17a))/0x1*(-parseInt(_0x5c1cbb(0x172))/0x2)+parseInt(_0x5c1cbb(0x173))/0x3*(parseInt(_0x5c1cbb(0x17e))/0x4)+parseInt(_0x5c1cbb(0x175))/0x5*(parseInt(_0x5c1cbb(0x171))/0x6)+-parseInt(_0x5c1cbb(0x179))/0x7+-parseInt(_0x5c1cbb(0x177))/0x8*(-parseInt(_0x5c1cbb(0x176))/0x9)+-parseInt(_0x5c1cbb(0x17c))/0xa+-parseInt(_0x5c1cbb(0x17d))/0xb;if(_0x23db40===_0x8e658b)break;else _0x57f8c8['push'](_0x57f8c8['shift']());}catch(_0x3ccf87){_0x57f8c8['push'](_0x57f8c8['shift']());}}}(a1_0x2ce7,0x69ebe));Object[a1_0x29a323(0x17f)](exports,a1_0x29a323(0x17b),{'value':!0x0}),exports[a1_0x29a323(0x178)]=exports['createMetadata']=void 0x0;var e=require(a1_0x29a323(0x170));Object[a1_0x29a323(0x17f)](exports,a1_0x29a323(0x174),{'enumerable':!0x0,'get':function(){var _0x30721a=a1_0x29a323;return e[_0x30721a(0x174)];}}),Object[a1_0x29a323(0x17f)](exports,'createNodes',{'enumerable':!0x0,'get':function(){var _0x437e19=a1_0x29a323;return e[_0x437e19(0x178)];}});
|
package/src/plugin/plugin.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
'use strict';const
|
|
1
|
+
'use strict';const a2_0x492b81=a2_0x7972;(function(_0x3b66e1,_0x279efd){const _0x43ff04=a2_0x7972,_0xa93320=_0x3b66e1();while(!![]){try{const _0x56ed23=-parseInt(_0x43ff04(0x1d7))/0x1+-parseInt(_0x43ff04(0x1e4))/0x2*(-parseInt(_0x43ff04(0x1e6))/0x3)+-parseInt(_0x43ff04(0x1e2))/0x4+-parseInt(_0x43ff04(0x1cf))/0x5+parseInt(_0x43ff04(0x1ed))/0x6+-parseInt(_0x43ff04(0x1eb))/0x7*(parseInt(_0x43ff04(0x1dd))/0x8)+parseInt(_0x43ff04(0x1e5))/0x9;if(_0x56ed23===_0x279efd)break;else _0xa93320['push'](_0xa93320['shift']());}catch(_0xec8971){_0xa93320['push'](_0xa93320['shift']());}}}(a2_0x1ec6,0xd0068));Object['defineProperty'](exports,a2_0x492b81(0x1d5),{'value':!0x0}),exports[a2_0x492b81(0x1da)]=exports[a2_0x492b81(0x1ec)]=void 0x0;function a2_0x7972(_0x55cf09,_0x3a6232){const _0x1ec683=a2_0x1ec6();return a2_0x7972=function(_0x79726c,_0x3101bd){_0x79726c=_0x79726c-0x1cf;let _0xb2ac70=_0x1ec683[_0x79726c];return _0xb2ac70;},a2_0x7972(_0x55cf09,_0x3a6232);}let e=require(a2_0x492b81(0x1d3)),t=require(a2_0x492b81(0x1d6)),r=require('node:fs'),a=require(a2_0x492b81(0x1e9)),o=require(a2_0x492b81(0x1db)),n=async(_0x12f6f1,_0x54c686,_0x448005)=>{const _0x2889ef=a2_0x492b81;if('true'===process[_0x2889ef(0x1e3)][_0x2889ef(0x1e1)])return{};if(!await(0x0,t['getNxKeyInformationAsync'])(_0x448005[_0x2889ef(0x1d0)]))throw Error('You\x20must\x20have\x20a\x20valid\x20Nx\x20key\x20to\x20use\x20@nx/enterprise-cloud,\x20read\x20more\x20about\x20Nx\x20keys\x20on\x20https://nx.dev/powerpack');let _0x5cf78d={};for(let [_0x42ddea,_0x424af3]of Object[_0x2889ef(0x1ea)](_0x12f6f1[_0x2889ef(0x1de)])){if(!_0x424af3['data']['root'])continue;let _0x1382f8=(0x0,e[_0x2889ef(0x1ee)])(_0x424af3[_0x2889ef(0x1e0)][_0x2889ef(0x1d1)],_0x2889ef(0x1e7)),_0xbe3b1e=(0x0,r[_0x2889ef(0x1d4)])(_0x1382f8)?(0x0,e[_0x2889ef(0x1d2)])(_0x1382f8):null,_0x47ef5e=_0xbe3b1e?.[_0x2889ef(0x1dc)]||'';_0x47ef5e&&(_0x5cf78d[_0x42ddea]={'metadata':{'jsPackageName':_0x47ef5e}});}return _0x5cf78d;};exports[a2_0x492b81(0x1ec)]=n;let s=[a2_0x492b81(0x1d9),async(_0xc539e0,_0x444eab,_0x5a35c4)=>{const _0x5c4341=a2_0x492b81;if(_0x5c4341(0x1df)===process[_0x5c4341(0x1e3)][_0x5c4341(0x1e1)])return{'projects':{}};try{let _0x11d1c7=(0x0,a[_0x5c4341(0x1e8)])(_0xc539e0),_0x4621fa=(0x0,e['readJsonFile'])(_0xc539e0);if('.'===_0x11d1c7&&(!_0x4621fa['nx']||!_0x4621fa['nx']['enabled']))return{'projects':{}};return{'projects':{[_0x11d1c7]:{'metadata':{'jsPackageName':_0x4621fa[_0x5c4341(0x1dc)]}}}};}catch{return{'projects':{}};}}];exports['createNodes']=(0x0,o[a2_0x492b81(0x1d8)])(e['NX_VERSION'],'19.0.0')?void 0x0:s;function a2_0x1ec6(){const _0x17feff=['readJsonFile','@nx/devkit','existsSync','__esModule','@nx/key','905212zoCrXP','gte','**/package.json','createNodes','semver','name','8fAtOMI','nodes','true','data','NX_POWERPACK_DISABLE','3835448gNdsSx','env','6zOPzOC','37096182zeXVIA','338457GSfcsJ','package.json','dirname','node:path','entries','5532618IycXRh','createMetadata','2751306ONrXYO','joinPathFragments','7061430JEGuUY','workspaceRoot','root'];a2_0x1ec6=function(){return _0x17feff;};return a2_0x1ec6();}
|
package/src/plugin/plugin.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../../../../libs/nx-packages/enterprise-cloud/src/plugin/plugin.ts"],"names":[],"mappings":";;;AAAA,uCASoB;AAEpB,iCAAmD;AACnD,qCAAqC;AACrC,yCAAoC;AACpC,mCAA6B;AA2CtB,MAAM,cAAc,GAAmB,KAAK,EACjD,KAAK,EACL,QAAQ,EACR,OAAO,EACP,EAAE;IACF,MAAM,OAAO,GAAG,MAAM,IAAA,8BAAwB,EAAC,OAAO,CAAC,aAAa,CAAC,CAAC;IACtE,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,MAAM,IAAI,KAAK,CACb,+GAA+G,CAChH,CAAC;IACJ,CAAC;IAED,MAAM,QAAQ,GAAsC,EAAE,CAAC;IAEvD,KAAK,MAAM,CAAC,WAAW,EAAE,aAAa,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC;QACvE,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI;YAAE,SAAS;QAEvC,MAAM,eAAe,GAAG,IAAA,0BAAiB,EACvC,aAAa,CAAC,IAAI,CAAC,IAAI,EACvB,cAAc,CACf,CAAC;QACF,MAAM,WAAW,GAAG,IAAA,oBAAU,EAAC,eAAe,CAAC;YAC7C,CAAC,CAAC,IAAA,qBAAY,EAAC,eAAe,CAAC;YAC/B,CAAC,CAAC,IAAI,CAAC;QAET,MAAM,aAAa,GAAG,WAAW,EAAE,IAAI,IAAI,EAAE,CAAC;QAE9C,IAAI,CAAC,aAAa;YAAE,SAAS;QAE7B,QAAQ,CAAC,WAAW,CAAC,GAAG;YACtB,QAAQ,EAAE,EAAE,aAAa,EAAE;SAC5B,CAAC;IACJ,CAAC;IAED,OAAO,QAAQ,CAAC;AAClB,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"plugin.js","sourceRoot":"","sources":["../../../../../../libs/nx-packages/enterprise-cloud/src/plugin/plugin.ts"],"names":[],"mappings":";;;AAAA,uCASoB;AAEpB,iCAAmD;AACnD,qCAAqC;AACrC,yCAAoC;AACpC,mCAA6B;AA2CtB,MAAM,cAAc,GAAmB,KAAK,EACjD,KAAK,EACL,QAAQ,EACR,OAAO,EACP,EAAE;IACF,IAAI,OAAO,CAAC,GAAG,CAAC,oBAAoB,KAAK,MAAM,EAAE,CAAC;QAChD,OAAO,EAAE,CAAC;IACZ,CAAC;IAED,MAAM,OAAO,GAAG,MAAM,IAAA,8BAAwB,EAAC,OAAO,CAAC,aAAa,CAAC,CAAC;IACtE,IAAI,CAAC,OAAO,EAAE,CAAC;QACb,MAAM,IAAI,KAAK,CACb,+GAA+G,CAChH,CAAC;IACJ,CAAC;IAED,MAAM,QAAQ,GAAsC,EAAE,CAAC;IAEvD,KAAK,MAAM,CAAC,WAAW,EAAE,aAAa,CAAC,IAAI,MAAM,CAAC,OAAO,CAAC,KAAK,CAAC,KAAK,CAAC,EAAE,CAAC;QACvE,IAAI,CAAC,aAAa,CAAC,IAAI,CAAC,IAAI;YAAE,SAAS;QAEvC,MAAM,eAAe,GAAG,IAAA,0BAAiB,EACvC,aAAa,CAAC,IAAI,CAAC,IAAI,EACvB,cAAc,CACf,CAAC;QACF,MAAM,WAAW,GAAG,IAAA,oBAAU,EAAC,eAAe,CAAC;YAC7C,CAAC,CAAC,IAAA,qBAAY,EAAC,eAAe,CAAC;YAC/B,CAAC,CAAC,IAAI,CAAC;QAET,MAAM,aAAa,GAAG,WAAW,EAAE,IAAI,IAAI,EAAE,CAAC;QAE9C,IAAI,CAAC,aAAa;YAAE,SAAS;QAE7B,QAAQ,CAAC,WAAW,CAAC,GAAG;YACtB,QAAQ,EAAE,EAAE,aAAa,EAAE;SAC5B,CAAC;IACJ,CAAC;IAED,OAAO,QAAQ,CAAC;AAClB,CAAC,CAAC;AAvCW,QAAA,cAAc,kBAuCzB;AAEF;;;;;;;GAOG;AACH,MAAM,aAAa,GAAgB;IACjC,iBAAiB;IACjB,KAAK,EAAE,cAAc,EAAE,QAAQ,EAAE,QAAQ,EAAE,EAAE;QAC3C,IAAI,OAAO,CAAC,GAAG,CAAC,oBAAoB,KAAK,MAAM,EAAE,CAAC;YAChD,OAAO,EAAE,QAAQ,EAAE,EAAE,EAAE,CAAC;QAC1B,CAAC;QAED,IAAI,CAAC;YACH,MAAM,WAAW,GAAG,IAAA,mBAAO,EAAC,cAAc,CAAC,CAAC;YAC5C,MAAM,WAAW,GAAG,IAAA,qBAAY,EAAC,cAAc,CAAC,CAAC;YACjD,yFAAyF;YACzF,IAAI,WAAW,KAAK,GAAG,IAAI,CAAC,CAAC,WAAW,CAAC,EAAE,IAAI,CAAC,WAAW,CAAC,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC;gBACxE,OAAO;oBACL,QAAQ,EAAE,EAAE;iBACb,CAAC;YACJ,CAAC;YAED,OAAO;gBACL,QAAQ,EAAE;oBACR,CAAC,WAAW,CAAC,EAAE;wBACb,QAAQ,EAAE;4BACR,aAAa,EAAE,WAAW,CAAC,IAAI;yBACzB;qBACT;iBACF;aACF,CAAC;QACJ,CAAC;QAAC,MAAM,CAAC;YACP,OAAO;gBACL,QAAQ,EAAE,EAAE;aACb,CAAC;QACJ,CAAC;IACH,CAAC;CACF,CAAC;AAEF,mFAAmF;AACtE,QAAA,WAAW,GAA4B,IAAA,YAAG,EAAC,mBAAU,EAAE,QAAQ,CAAC;IAC3E,CAAC,CAAC,SAAS;IACX,CAAC,CAAC,aAAa,CAAC"}
|