@maka/maka-cli 4.7.28 → 4.8.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (149) hide show
  1. package/README.md +18 -4
  2. package/bundle/obf/package.json +1 -1
  3. package/bundle/obf/src/README.md +18 -4
  4. package/bundle/obf/src/command.js +1 -1
  5. package/bundle/obf/src/commands/_index.js +1 -1
  6. package/bundle/obf/src/commands/ai.js +1 -1
  7. package/bundle/obf/src/commands/aws/_index.js +1 -1
  8. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  9. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  10. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  11. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  12. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  20. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  21. package/bundle/obf/src/commands/build/_index.js +1 -1
  22. package/bundle/obf/src/commands/build/build.js +1 -1
  23. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  24. package/bundle/obf/src/commands/create.js +1 -1
  25. package/bundle/obf/src/commands/debug.js +1 -1
  26. package/bundle/obf/src/commands/deploy/_index.js +1 -1
  27. package/bundle/obf/src/commands/deploy/deploy.command.js +1 -1
  28. package/bundle/obf/src/commands/deploy/galaxy.sub.cmd.js +1 -1
  29. package/bundle/obf/src/commands/deploy/ubuntu.sub.cmd.js +1 -1
  30. package/bundle/obf/src/commands/game/_index.js +1 -1
  31. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  32. package/bundle/obf/src/commands/game/play.command.js +1 -1
  33. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  34. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  35. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  36. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  65. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  66. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  67. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  68. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  69. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  70. package/bundle/obf/src/commands/generate.js +1 -1
  71. package/bundle/obf/src/commands/get/_index.js +1 -1
  72. package/bundle/obf/src/commands/get/get.command.js +1 -1
  73. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  74. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  75. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  76. package/bundle/obf/src/commands/help.js +1 -1
  77. package/bundle/obf/src/commands/install.js +1 -1
  78. package/bundle/obf/src/commands/jsdoc.js +1 -1
  79. package/bundle/obf/src/commands/lint.js +1 -1
  80. package/bundle/obf/src/commands/login.js +1 -1
  81. package/bundle/obf/src/commands/logout.js +1 -1
  82. package/bundle/obf/src/commands/logs.js +1 -1
  83. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  84. package/bundle/obf/src/commands/murder.js +1 -1
  85. package/bundle/obf/src/commands/proxy.js +1 -1
  86. package/bundle/obf/src/commands/reconfig.js +1 -1
  87. package/bundle/obf/src/commands/run/_index.js +1 -1
  88. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  89. package/bundle/obf/src/commands/run/run.command.js +1 -1
  90. package/bundle/obf/src/commands/set/_index.js +1 -1
  91. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  92. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  93. package/bundle/obf/src/commands/set/set.command.js +1 -1
  94. package/bundle/obf/src/commands/ssh.js +1 -1
  95. package/bundle/obf/src/commands/ssl.js +1 -1
  96. package/bundle/obf/src/commands/test.js +1 -1
  97. package/bundle/obf/src/commands/version.js +1 -1
  98. package/bundle/obf/src/error.js +1 -1
  99. package/bundle/obf/src/exec.js +1 -1
  100. package/bundle/obf/src/generator.js +1 -1
  101. package/bundle/obf/src/generators/_index.js +1 -1
  102. package/bundle/obf/src/generators/api.js +1 -1
  103. package/bundle/obf/src/generators/collection.js +1 -1
  104. package/bundle/obf/src/generators/component.js +1 -1
  105. package/bundle/obf/src/generators/config.js +1 -1
  106. package/bundle/obf/src/generators/dbc.js +1 -1
  107. package/bundle/obf/src/generators/dockerfile.js +1 -1
  108. package/bundle/obf/src/generators/hook.js +1 -1
  109. package/bundle/obf/src/generators/kits/_index.js +1 -1
  110. package/bundle/obf/src/generators/kits/esri/_index.js +1 -1
  111. package/bundle/obf/src/generators/kits/esri/esri.generator.js +1 -1
  112. package/bundle/obf/src/generators/kits/esri/map.esri.gen.js +1 -1
  113. package/bundle/obf/src/generators/kits/kit.js +1 -1
  114. package/bundle/obf/src/generators/kits/mui/_index.js +1 -1
  115. package/bundle/obf/src/generators/kits/mui/frame.mui.gen.js +1 -1
  116. package/bundle/obf/src/generators/kits/mui/mui.generator.js +1 -1
  117. package/bundle/obf/src/generators/layout.js +1 -1
  118. package/bundle/obf/src/generators/maka.gen.js +1 -1
  119. package/bundle/obf/src/generators/methods.js +1 -1
  120. package/bundle/obf/src/generators/package.js +1 -1
  121. package/bundle/obf/src/generators/page.js +1 -1
  122. package/bundle/obf/src/generators/publish.js +1 -1
  123. package/bundle/obf/src/generators/route.js +1 -1
  124. package/bundle/obf/src/generators/service.js +1 -1
  125. package/bundle/obf/src/generators/services/_index.js +1 -1
  126. package/bundle/obf/src/generators/services/openssl.js +1 -1
  127. package/bundle/obf/src/generators/services/translation.js +1 -1
  128. package/bundle/obf/src/maka.js +1 -1
  129. package/bundle/obf/src/templates/meteor/project/package.json +1 -1
  130. package/bundle/obf/src/tool.js +1 -1
  131. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  132. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  133. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  134. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  135. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  136. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  137. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  138. package/bundle/obf/src/tools/https/https.class.js +1 -1
  139. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  140. package/bundle/obf/src/tools/log/log.class.js +1 -1
  141. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  142. package/bundle/obf/src/tools/options/options.class.js +1 -1
  143. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  144. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  145. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  146. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  147. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  148. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  149. package/package.json +1 -1
@@ -1 +1 @@
1
- var a55t=a55d;(function(a,b){var f=a55d,c=a();while(!![]){try{var d=parseInt(f(0xbc))/0x1*(parseInt(f(0xc4))/0x2)+parseInt(f(0xa9))/0x3+-parseInt(f(0xa0))/0x4*(-parseInt(f(0x9c))/0x5)+parseInt(f(0xc9))/0x6*(parseInt(f(0xba))/0x7)+parseInt(f(0x9e))/0x8+parseInt(f(0xc3))/0x9*(parseInt(f(0xb9))/0xa)+parseInt(f(0x96))/0xb*(-parseInt(f(0x9b))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0xc04f0));var a55b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a55d;if(c){var e=c[g(0xb6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){var h=a55d;return a55a[h(0xc1)]()[h(0xbd)](h(0xa2))[h(0xc1)]()['constructor'](a55a)['search'](h(0xa2));});a55a();import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';import{Item}from'../models/item.js';export class BasicItem extends Item{constructor(a,b){var i=a55d;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[i(0xa5)],'shape':Shape[i(0xb4)],'color':Color[i(0xb5)],'texture':Texture[i(0xcd)],'rating':Rating['Common'],'weight':0x1});}['use'](){var j=a55d;return this[j(0xc7)];}}export class Sword extends Item{constructor(a,b){var k=a55d;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[k(0xa8)],'shape':Shape[k(0x9f)],'color':Color[k(0xa7)],'texture':Texture[k(0xc5)],'rating':Rating[k(0x94)],'weight':0x3});}}export class Rifle extends Item{constructor(a,b){var l=a55d;super({'name':a,'description':b,'size':Size[l(0xcb)],'category':Category[l(0xa8)],'shape':Shape['Rifle'],'color':Color[l(0xaf)],'texture':Texture[l(0xc5)],'rating':Rating[l(0x99)],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var m=a55d;super({'name':a,'description':b,'size':Size[m(0xa1)],'category':Category['Helmet'],'shape':Shape['Circle'],'color':Color['Grey'],'texture':Texture[m(0xc5)],'rating':Rating[m(0x94)],'weight':0x2});}}export class BodyArmor extends Item{constructor(a,b){var n=a55d;super({'name':a,'description':b,'size':Size[n(0xcb)],'category':Category[n(0x92)],'shape':Shape[n(0xb4)],'color':Color[n(0xa7)],'texture':Texture[n(0xc5)],'rating':Rating[n(0x94)],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var o=a55d;super({'name':a,'description':b,'size':Size[o(0xa1)],'category':Category[o(0xb1)],'shape':Shape['Rectangle'],'color':Color['Grey'],'texture':Texture[o(0xc5)],'rating':Rating[o(0x94)],'weight':0x6});}}export class Boots extends Item{constructor(a,b){var p=a55d;super({'name':a,'description':b,'size':Size[p(0xa1)],'category':Category[p(0xc0)],'shape':Shape[p(0xce)],'color':Color['Brown'],'texture':Texture[p(0xcd)],'rating':Rating[p(0x94)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var q=a55d;super({'name':a,'description':b,'size':Size['Small'],'category':Category['Gloves'],'shape':Shape['Circle'],'color':Color[q(0xaf)],'texture':Texture[q(0xcd)],'rating':Rating[q(0x94)],'weight':0x1});}}export class Gauntlets extends Item{constructor(a,b){var r=a55d;super({'name':a,'description':b,'size':Size[r(0xa1)],'category':Category[r(0xbb)],'shape':Shape[r(0xb4)],'color':Color['Grey'],'texture':Texture[r(0xc5)],'rating':Rating['Common'],'weight':0x3});}}export class Key extends Item{constructor(a,b){var s=a55d;super({'name':a,'description':b,'size':Size['Tiny'],'category':Category[s(0x9d)],'shape':Shape[s(0xb4)],'color':Color[s(0xb5)],'texture':Texture[s(0xcd)],'rating':Rating[s(0x94)],'weight':0x0});}[a55t(0xaa)](){var u=a55t;return u(0xb8);}}function a55c(){var F=['Grey','Weapon','1039011Nfgapz','use','Small','You\x20hold\x20the\x20','pageCount','Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22','Brown','Holy\x20Grail','LegArmor','There\x20is\x20a\x20bookmark,\x20you\x20open\x20the\x20book\x20to\x20the\x20page\x20and\x20you\x20see\x20a\x20note\x20saying\x20\x22secret123\x22','Legendary','Rectangle','Yellow','apply','Book','This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22','486320hKQXrz','595vayosJ','ArmArmor','185539jeHSkQ','search','Cup','A\x20mysterious\x20book.','Boots','toString','Gold','207sLeQvD','2ZzYXgN','Metallic','A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','description','You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22','77802ipcSKm','name','Large','publishDate','Smooth','Circle','BodyArmor','A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.','Common','Sniper\x20Rifle','66EEfKcy','Rifle','Short\x20Sword','Rare','An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','4713144QVrWFR','28745ShWiqm','Key','281784oGvOYi','Blade','248XwtTuJ','Medium','(((.+)+)+)+$','author','\x20aloft,\x20feeling\x20its\x20immense\x20power.','Unknown','Unknown\x20Author'];a55c=function(){return F;};return a55c();}export class Weapon extends Item{constructor(a,b){var v=a55t;super({'name':a,'description':b,'size':Size[v(0xa1)],'category':Category['Weapon'],'shape':Shape['Blade'],'color':Color[v(0xa7)],'texture':Texture[v(0xc5)],'rating':Rating['Common'],'weight':0x3});}['use'](){var w=a55t;return w(0xae);}}export class Book extends Item{[a55t(0xa3)];[a55t(0xcc)];[a55t(0xad)];constructor(a,b=a55t(0xbf),c=a55t(0xa6)){var x=a55t;super({'name':a,'description':b,'size':Size[x(0xa1)],'category':Category[x(0xb7)],'shape':Shape['Rectangle'],'color':Color[x(0xaf)],'texture':Texture['Smooth'],'rating':Rating[x(0x94)],'weight':0x1}),this[x(0xa3)]=c,this[x(0xcc)]=new Date(),this[x(0xad)]=0x64;}[a55t(0xaa)](){var y=a55t;return y(0xb2);}}export class ShortSword extends Item{constructor(){var z=a55t;super({'name':z(0x98),'description':z(0x93),'size':Size[z(0xa1)],'category':Category[z(0xa8)],'shape':Shape[z(0x9f)],'color':Color[z(0xa7)],'texture':Texture['Metallic'],'rating':Rating[z(0x94)],'weight':0x3});}[a55t(0xaa)](){var A=a55t;return A(0xae);}}function a55d(a,b){var c=a55c();return a55d=function(d,e){d=d-0x92;var f=c[d];return f;},a55d(a,b);}export class SniperRifle extends Item{constructor(){var B=a55t;super({'name':B(0x95),'description':B(0x9a),'size':Size['Large'],'category':Category[B(0xa8)],'shape':Shape[B(0x97)],'color':Color[B(0xaf)],'texture':Texture[B(0xcd)],'rating':Rating[B(0x94)],'weight':0x5});}[a55t(0xaa)](){var C=a55t;return C(0xc8);}}export class HolyGrail extends Item{constructor(){var D=a55t;super({'name':D(0xb0),'description':D(0xc6),'size':Size[D(0xab)],'category':Category[D(0xbe)],'shape':Shape['Circle'],'color':Color[D(0xc2)],'texture':Texture[D(0xc5)],'rating':Rating[D(0xb3)],'weight':0x1});}[a55t(0xaa)](){var E=a55t;return E(0xac)+this[E(0xca)]+E(0xa4);}}
1
+ function a55d(a,b){var c=a55c();return a55d=function(d,e){d=d-0x172;var f=c[d];return f;},a55d(a,b);}var a55j=a55d;(function(a,b){var f=a55d,c=a();while(!![]){try{var d=parseInt(f(0x1a5))/0x1*(-parseInt(f(0x185))/0x2)+parseInt(f(0x194))/0x3*(parseInt(f(0x196))/0x4)+-parseInt(f(0x176))/0x5+parseInt(f(0x1a2))/0x6*(-parseInt(f(0x17a))/0x7)+-parseInt(f(0x183))/0x8*(-parseInt(f(0x177))/0x9)+parseInt(f(0x18d))/0xa+parseInt(f(0x179))/0xb*(parseInt(f(0x174))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0x43cee));var a55b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a55d;if(c){var e=c[g(0x199)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){var h=a55d;return a55a[h(0x18a)]()['search'](h(0x195))[h(0x18a)]()['constructor'](a55a)[h(0x197)](h(0x195));});a55a();import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';import{Item}from'../models/item.js';export class BasicItem extends Item{constructor(a,b){var i=a55d;super({'name':a,'description':b,'size':Size[i(0x182)],'category':Category[i(0x19f)],'shape':Shape[i(0x186)],'color':Color[i(0x18c)],'texture':Texture[i(0x17f)],'rating':Rating[i(0x19a)],'weight':0x1});}[a55j(0x190)](){var k=a55j;return this[k(0x17c)];}}export class Sword extends Item{constructor(a,b){var l=a55j;super({'name':a,'description':b,'size':Size[l(0x182)],'category':Category[l(0x1aa)],'shape':Shape[l(0x1a0)],'color':Color[l(0x1a7)],'texture':Texture[l(0x1a4)],'rating':Rating[l(0x19a)],'weight':0x3});}}export class Rifle extends Item{constructor(a,b){var m=a55j;super({'name':a,'description':b,'size':Size['Large'],'category':Category['Weapon'],'shape':Shape[m(0x178)],'color':Color[m(0x19e)],'texture':Texture[m(0x1a4)],'rating':Rating[m(0x18f)],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var n=a55j;super({'name':a,'description':b,'size':Size[n(0x182)],'category':Category[n(0x187)],'shape':Shape[n(0x191)],'color':Color[n(0x1a7)],'texture':Texture[n(0x1a4)],'rating':Rating['Common'],'weight':0x2});}}export class BodyArmor extends Item{constructor(a,b){var o=a55j;super({'name':a,'description':b,'size':Size[o(0x1a6)],'category':Category['BodyArmor'],'shape':Shape[o(0x186)],'color':Color[o(0x1a7)],'texture':Texture['Metallic'],'rating':Rating['Common'],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var p=a55j;super({'name':a,'description':b,'size':Size[p(0x182)],'category':Category[p(0x175)],'shape':Shape[p(0x186)],'color':Color['Grey'],'texture':Texture[p(0x1a4)],'rating':Rating[p(0x19a)],'weight':0x6});}}export class Boots extends Item{constructor(a,b){var q=a55j;super({'name':a,'description':b,'size':Size[q(0x182)],'category':Category[q(0x189)],'shape':Shape['Circle'],'color':Color['Brown'],'texture':Texture['Smooth'],'rating':Rating[q(0x19a)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var r=a55j;super({'name':a,'description':b,'size':Size[r(0x193)],'category':Category[r(0x19d)],'shape':Shape['Circle'],'color':Color[r(0x19e)],'texture':Texture[r(0x17f)],'rating':Rating[r(0x19a)],'weight':0x1});}}export class Gauntlets extends Item{constructor(a,b){var s=a55j;super({'name':a,'description':b,'size':Size['Medium'],'category':Category['ArmArmor'],'shape':Shape[s(0x186)],'color':Color[s(0x1a7)],'texture':Texture[s(0x1a4)],'rating':Rating['Common'],'weight':0x3});}}export class Key extends Item{constructor(a,b){var t=a55j;super({'name':a,'description':b,'size':Size['Tiny'],'category':Category[t(0x1a9)],'shape':Shape[t(0x186)],'color':Color[t(0x18c)],'texture':Texture[t(0x17f)],'rating':Rating['Common'],'weight':0x0});}['use'](){var u=a55j;return u(0x172);}}export class Weapon extends Item{constructor(a,b){var v=a55j;super({'name':a,'description':b,'size':Size[v(0x182)],'category':Category[v(0x1aa)],'shape':Shape['Blade'],'color':Color[v(0x1a7)],'texture':Texture[v(0x1a4)],'rating':Rating['Common'],'weight':0x3});}[a55j(0x190)](){return'Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22';}}export class Book extends Item{[a55j(0x19b)];[a55j(0x17b)];[a55j(0x198)];constructor(a,b=a55j(0x192),c=a55j(0x19c)){var w=a55j;super({'name':a,'description':b,'size':Size[w(0x182)],'category':Category[w(0x18b)],'shape':Shape['Rectangle'],'color':Color[w(0x19e)],'texture':Texture[w(0x17f)],'rating':Rating[w(0x19a)],'weight':0x1}),this['author']=c,this[w(0x17b)]=new Date(),this[w(0x198)]=0x64;}[a55j(0x190)](){return'There\x20is\x20a\x20bookmark,\x20you\x20open\x20the\x20book\x20to\x20the\x20page\x20and\x20you\x20see\x20a\x20note\x20saying\x20\x22secret123\x22';}}export class ShortSword extends Item{constructor(){var x=a55j;super({'name':x(0x18e),'description':x(0x1a1),'size':Size[x(0x182)],'category':Category[x(0x1aa)],'shape':Shape[x(0x1a0)],'color':Color[x(0x1a7)],'texture':Texture['Metallic'],'rating':Rating[x(0x19a)],'weight':0x3});}[a55j(0x190)](){var y=a55j;return y(0x1a3);}}export class SniperRifle extends Item{constructor(){var z=a55j;super({'name':z(0x188),'description':z(0x184),'size':Size[z(0x1a6)],'category':Category[z(0x1aa)],'shape':Shape[z(0x178)],'color':Color['Brown'],'texture':Texture[z(0x17f)],'rating':Rating[z(0x19a)],'weight':0x5});}['use'](){return'You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22';}}export class HolyGrail extends Item{constructor(){var A=a55j;super({'name':'Holy\x20Grail','description':A(0x17d),'size':Size['Small'],'category':Category[A(0x1a8)],'shape':Shape[A(0x191)],'color':Color[A(0x173)],'texture':Texture[A(0x1a4)],'rating':Rating['Legendary'],'weight':0x1});}[a55j(0x190)](){var B=a55j;return B(0x17e)+this[B(0x180)]+B(0x181);}}function a55c(){var C=['Gloves','Brown','Unknown','Blade','A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.','308058BhKNIR','Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22','Metallic','77BXsMrq','Large','Grey','Cup','Key','Weapon','This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22','Gold','5904sdFXXC','LegArmor','2031325FTOyvA','207pnsQnf','Rifle','15037SOgBcG','49jYkXVs','publishDate','description','A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','You\x20hold\x20the\x20','Smooth','name','\x20aloft,\x20feeling\x20its\x20immense\x20power.','Medium','78536XcArJA','An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','10538Qrssaj','Rectangle','Helmet','Sniper\x20Rifle','Boots','toString','Book','Yellow','39090dExtrZ','Short\x20Sword','Rare','use','Circle','A\x20mysterious\x20book.','Small','1401vKBOSY','(((.+)+)+)+$','4684mdPIKI','search','pageCount','apply','Common','author','Unknown\x20Author'];a55c=function(){return C;};return a55c();}
@@ -1 +1 @@
1
- const a57i=a57d;(function(a,b){const f=a57d,c=a();while(!![]){try{const d=parseInt(f(0x1f1))/0x1+parseInt(f(0x18c))/0x2+-parseInt(f(0x1d6))/0x3*(parseInt(f(0x1f2))/0x4)+-parseInt(f(0x1e8))/0x5*(-parseInt(f(0x1ac))/0x6)+-parseInt(f(0x1aa))/0x7*(parseInt(f(0x1f7))/0x8)+parseInt(f(0x1c4))/0x9*(-parseInt(f(0x1c5))/0xa)+-parseInt(f(0x1bd))/0xb*(-parseInt(f(0x1cf))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x60095));function a57d(a,b){const c=a57c();return a57d=function(d,e){d=d-0x17b;let f=c[d];return f;},a57d(a,b);}const a57b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a57d;if(c){const e=c[g(0x1b3)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a57a=a57b(this,function(){const h=a57d;return a57a[h(0x1dc)]()[h(0x1b6)]('(((.+)+)+)+$')[h(0x1dc)]()[h(0x1ae)](a57a)['search'](h(0x193));});function a57c(){const j=['Barrens\x20Entrance','Courtyard','Central\x20Chamber\x20Key','The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','566472ZFhYOb','Barrens\x20Hideout','gem','NORTH','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','(((.+)+)+)+$','Emblem\x20Shield','MCT\x20Fly-Spy','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','Entrance\x20Hall','Golden\x20Key','weapon','Matrix\x20Data\x20Haven','Chad\x20the\x20stupid\x20guard','Torture\x20Chamber','Secret\x20Passage','secret123','disenchant','A\x20key\x20stained\x20with\x20old\x20blood.','Riddle\x20Book','A\x20chalice\x20made\x20of\x20pure\x20gold.','Rusted\x20Sword','Encrypted\x20Data\x20Key','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','drone','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','13517rsyMbZ','east','2281326UqvpMa','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','constructor','A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.','A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.','down','The\x20legendary\x20Holy\x20Grail.','apply','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','Holy\x20Grail','search','Gang\x20Insignia','south','The\x20data\x20remains\x20encrypted.','insert\x20gem','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','open\x20sesame','1430CYRcxK','cup','Amulet\x20of\x20Awakening','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','Alchemy\x20Lab','You\x20pull\x20the\x20sniper\x20rifle\x20from\x20the\x20gun\x20cabinet.\x20\x20Just\x20as\x20you\x20do,\x20you\x20hear\x20a\x20guy\x20from\x20the\x20Courtyard\x20yell\x20\x22HEY!\x20WHAT\x27S\x20YA\x20NAME?!\x22','Treasure\x20Room','9INBxZv','6157730QvNvjC','inside','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','Rigger\x27s\x20Workshop','A\x20clear\x20glass\x20vial.','A\x20creditstick\x20loaded\x20with\x20nuyen.','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','CorpSec\x20Plans','99948CGiPXv','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','amulet','Jackpoint\x20Login','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','Watch\x20Tower','2298UghHxM','Study','Downtown\x20Seattle','Empty\x20vial','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','toString','Central\x20Chamber','rifle','north','outside','Ares\x20Predator','An\x20old\x20and\x20rusted\x20sword.','basic','document','Ancient\x20Gem','Mage\x27s\x20Lair','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','10AdbSey','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','Guard\x27s\x20Log\x20Book','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','A\x20thin\x20log\x20book','Corporate\x20Creditstick','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','A\x20small\x20surveillance\x20drone.','94305SoqkPj','3796LHyheN','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','book','show\x20loyalty','The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','2008TzrjwD','OUTSIDE','Sniper\x20Rifle','creditstick','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','Corp\x20Enclave','key','EAST','Armory','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.','The\x20chest\x20remains\x20firmly\x20shut.','west'];a57c=function(){return j;};return a57c();}a57a();export const rooms=[{'name':'Library','description':'A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','isStartRoom':!![],'items':[{'type':a57i(0x17f),'name':a57i(0x198),'description':'A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.'},{'type':a57i(0x1f4),'name':a57i(0x1ea),'description':a57i(0x1ed),'content':a57i(0x19b)}],'exits':[{'direction':a57i(0x180),'targetRoom':a57i(0x19d)}]},{'name':a57i(0x19d),'description':a57i(0x1cc),'exits':[{'direction':a57i(0x18f),'targetRoom':a57i(0x1c3),'keyRequired':'Golden\x20Key'},{'direction':'SOUTH','targetRoom':a57i(0x187)}]},{'name':'Treasure\x20Room','description':a57i(0x1c7),'items':[{'type':'holyGrail','name':a57i(0x1b5),'description':a57i(0x1b2)}]},{'name':a57i(0x187),'description':a57i(0x1b4),'roomType':a57i(0x1f8),'exits':[{'direction':'UP','targetRoom':a57i(0x1d5)}]},{'name':'Watch\x20Tower','description':a57i(0x190),'roomType':a57i(0x1f8),'puzzle':{'requiredPhrase':a57i(0x19e),'riddle':'A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','rewardItem':{'type':a57i(0x1de),'name':a57i(0x17b),'description':'A\x20long-range\x20weapon.'},'successMessage':a57i(0x1c2),'failureMessage':'That\x20passcode\x20is\x20incorrect'}}];export const dungeonConfig=[{'name':a57i(0x197),'description':a57i(0x1d3),'isStartRoom':!![],'roomType':a57i(0x1c6),'puzzle':{'requiredPhrase':a57i(0x1bc),'riddle':'Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','rewardItem':{'type':a57i(0x17f),'name':a57i(0x188),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'},'successMessage':a57i(0x1a9),'failureMessage':'Nothing\x20happens.'},'exits':[{'direction':'north','targetRoom':a57i(0x1d7)},{'direction':a57i(0x1ab),'targetRoom':a57i(0x1dd),'keyRequired':a57i(0x188)}]},{'name':a57i(0x1d7),'description':'A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','roomType':a57i(0x1c6),'items':[{'type':'book','name':a57i(0x1a1),'description':a57i(0x1d4),'content':a57i(0x1da)},{'type':a57i(0x17f),'name':a57i(0x188),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'}],'exits':[{'direction':a57i(0x1b8),'targetRoom':a57i(0x197)},{'direction':a57i(0x1ab),'targetRoom':a57i(0x1c1)}]},{'name':a57i(0x1c1),'description':a57i(0x1a8),'roomType':a57i(0x1c6),'items':[{'type':a57i(0x1e3),'name':a57i(0x1d9),'description':a57i(0x1c9)}],'exits':[{'direction':'west','targetRoom':a57i(0x1d7)},{'direction':a57i(0x1df),'targetRoom':a57i(0x181)}]},{'name':a57i(0x181),'description':a57i(0x18a),'roomType':a57i(0x1c6),'items':[{'type':'shield','name':a57i(0x194),'description':'A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.'},{'type':'sword','name':a57i(0x1a3),'description':a57i(0x1e2)}],'exits':[{'direction':'south','targetRoom':a57i(0x1c1)},{'direction':a57i(0x1ab),'targetRoom':'Central\x20Chamber'}]},{'name':a57i(0x1dd),'description':'A\x20large\x20circular\x20room\x20with\x20four\x20doors.','roomType':a57i(0x1c6),'exits':[{'direction':a57i(0x185),'targetRoom':a57i(0x181)},{'direction':'south','targetRoom':a57i(0x197)},{'direction':a57i(0x1df),'targetRoom':a57i(0x19c)},{'direction':'east','targetRoom':a57i(0x1c3)}]},{'name':a57i(0x19c),'description':a57i(0x1f3),'roomType':a57i(0x1c6),'items':[{'type':a57i(0x17f),'name':'Blood-stained\x20Key','description':a57i(0x1a0)}],'puzzle':{'requiredPhrase':'release','riddle':'Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','rewardItem':{'type':a57i(0x18e),'name':a57i(0x1e5),'description':a57i(0x182)},'successMessage':a57i(0x189),'failureMessage':a57i(0x196)},'exits':[{'direction':a57i(0x1b8),'targetRoom':'Central\x20Chamber'}]},{'name':a57i(0x1c3),'description':a57i(0x1bb),'roomType':a57i(0x1c6),'puzzle':{'requiredPhrase':a57i(0x1ba),'riddle':a57i(0x1ad),'rewardItem':{'type':a57i(0x1be),'name':'Golden\x20Chalice','description':a57i(0x1a2)},'successMessage':'The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','failureMessage':a57i(0x184)},'exits':[{'direction':'west','targetRoom':'Central\x20Chamber'}]}];export const shadowrunConfig=[{'name':a57i(0x1d2),'description':a57i(0x1db),'isStartRoom':!![],'roomType':a57i(0x1c6),'exits':[{'direction':a57i(0x1df),'targetRoom':'Downtown\x20Seattle'},{'direction':'up','targetRoom':a57i(0x19a)}]},{'name':a57i(0x19a),'description':a57i(0x1ec),'roomType':a57i(0x1c6),'puzzle':{'requiredPhrase':'decrypt','riddle':a57i(0x191),'rewardItem':{'type':a57i(0x17f),'name':a57i(0x1a4),'description':a57i(0x1a7)},'successMessage':a57i(0x1f6),'failureMessage':a57i(0x1b9)},'exits':[{'direction':a57i(0x1b1),'targetRoom':'Jackpoint\x20Login'}]},{'name':a57i(0x1d8),'description':a57i(0x1eb),'roomType':a57i(0x1e0),'exits':[{'direction':'south','targetRoom':'Jackpoint\x20Login'},{'direction':'east','targetRoom':a57i(0x186)},{'direction':a57i(0x185),'targetRoom':a57i(0x17e)}]},{'name':'Barrens\x20Entrance','description':a57i(0x1a5),'roomType':a57i(0x1e0),'puzzle':{'requiredPhrase':a57i(0x1f5),'riddle':'To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','rewardItem':{'type':a57i(0x17f),'name':a57i(0x1b7),'description':a57i(0x1b0)},'successMessage':a57i(0x1c0),'failureMessage':a57i(0x1ef)},'exits':[{'direction':a57i(0x185),'targetRoom':a57i(0x1d8)},{'direction':'north','targetRoom':'Barrens\x20Hideout'}]},{'name':a57i(0x17e),'description':a57i(0x1e7),'roomType':a57i(0x1c6),'items':[{'type':a57i(0x17c),'name':a57i(0x1ee),'description':a57i(0x1ca)},{'type':a57i(0x1e4),'name':a57i(0x1ce),'description':a57i(0x1cd)}],'exits':[{'direction':'east','targetRoom':a57i(0x1d8)}]},{'name':'Barrens\x20Hideout','description':a57i(0x1d0),'roomType':'outside','items':[{'type':a57i(0x199),'name':a57i(0x1e1),'description':a57i(0x192)}],'exits':[{'direction':'south','targetRoom':a57i(0x186)},{'direction':'north','targetRoom':a57i(0x1e6)},{'direction':a57i(0x1ab),'targetRoom':'Rigger\x27s\x20Workshop'}]},{'name':a57i(0x1e6),'description':a57i(0x17d),'roomType':a57i(0x1c6),'puzzle':{'requiredPhrase':a57i(0x19f),'riddle':a57i(0x1e9),'rewardItem':{'type':a57i(0x1d1),'name':a57i(0x1bf),'description':a57i(0x1af)},'successMessage':a57i(0x1cb),'failureMessage':a57i(0x183)},'exits':[{'direction':'south','targetRoom':a57i(0x18d)}]},{'name':a57i(0x1c8),'description':a57i(0x18b),'roomType':a57i(0x1c6),'items':[{'type':a57i(0x1a6),'name':a57i(0x195),'description':a57i(0x1f0)}],'exits':[{'direction':a57i(0x185),'targetRoom':a57i(0x18d)}]}];
1
+ const a57i=a57d;(function(a,b){const f=a57d,c=a();while(!![]){try{const d=parseInt(f(0x20a))/0x1*(-parseInt(f(0x1fa))/0x2)+-parseInt(f(0x1d5))/0x3+parseInt(f(0x1cd))/0x4*(-parseInt(f(0x1b4))/0x5)+-parseInt(f(0x1d4))/0x6+parseInt(f(0x1cf))/0x7+parseInt(f(0x1d3))/0x8+parseInt(f(0x204))/0x9*(parseInt(f(0x1fe))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x7c8b6));function a57c(){const j=['Nothing\x20happens.','Central\x20Chamber\x20Key','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','inside','Treasure\x20Room','Amulet\x20of\x20Awakening','Rigger\x27s\x20Workshop','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','A\x20long-range\x20weapon.','MCT\x20Fly-Spy','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','OUTSIDE','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','south','Downtown\x20Seattle','A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','gem','key','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','Jackpoint\x20Login','shield','Alchemy\x20Lab','Entrance\x20Hall','north','Emblem\x20Shield','west','Mage\x27s\x20Lair','rifle','east','1438322VIqiBO','Empty\x20vial','(((.+)+)+)+$','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','38360YtkIBj','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','toString','The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','Guard\x27s\x20Log\x20Book','A\x20clear\x20glass\x20vial.','3276cspqqC','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','disenchant','Courtyard','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','1PSEKyU','sword','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','weapon','down','secret123','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','show\x20loyalty','cup','document','Corp\x20Enclave','Secret\x20Passage','The\x20legendary\x20Holy\x20Grail.','Study','constructor','search','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','NORTH','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','Riddle\x20Book','An\x20old\x20and\x20rusted\x20sword.','Barrens\x20Hideout','insert\x20gem','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','88685VoyKsA','A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','Blood-stained\x20Key','Matrix\x20Data\x20Haven','Rusted\x20Sword','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','apply','Sniper\x20Rifle','book','A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','Library','Corporate\x20Creditstick','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','A\x20key\x20stained\x20with\x20old\x20blood.','Barrens\x20Entrance','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','A\x20thin\x20log\x20book','The\x20data\x20remains\x20encrypted.','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','116ZDkzNl','creditstick','4833402LNvJcK','Central\x20Chamber','Holy\x20Grail','outside','6259224ieYxyx','1519242tUTVTL','2616954IVVZJt','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','amulet','Encrypted\x20Data\x20Key','A\x20small\x20surveillance\x20drone.','A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.','The\x20chest\x20remains\x20firmly\x20shut.'];a57c=function(){return j;};return a57c();}const a57b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a57d;if(c){const e=c[g(0x1c0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a57a=a57b(this,function(){const h=a57d;return a57a[h(0x200)]()[h(0x21a)](h(0x1fc))['toString']()[h(0x219)](a57a)[h(0x21a)](h(0x1fc));});a57a();export const rooms=[{'name':a57i(0x1c4),'description':'A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','isStartRoom':!![],'items':[{'type':'key','name':'Golden\x20Key','description':a57i(0x1e3)},{'type':a57i(0x1c2),'name':a57i(0x202),'description':a57i(0x1ca),'content':'Chad\x20the\x20stupid\x20guard'}],'exits':[{'direction':'EAST','targetRoom':a57i(0x216)}]},{'name':a57i(0x216),'description':'A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','exits':[{'direction':a57i(0x21d),'targetRoom':'Treasure\x20Room','keyRequired':'Golden\x20Key'},{'direction':'SOUTH','targetRoom':a57i(0x207)}]},{'name':a57i(0x1e0),'description':a57i(0x208),'items':[{'type':'holyGrail','name':a57i(0x1d1),'description':a57i(0x217)}]},{'name':a57i(0x207),'description':a57i(0x1c9),'roomType':a57i(0x1e8),'exits':[{'direction':'UP','targetRoom':'Watch\x20Tower'}]},{'name':'Watch\x20Tower','description':a57i(0x1ba),'roomType':'OUTSIDE','puzzle':{'requiredPhrase':a57i(0x210),'riddle':a57i(0x1b6),'rewardItem':{'type':a57i(0x1f8),'name':a57i(0x1c1),'description':a57i(0x1e4)},'successMessage':'You\x20pull\x20the\x20sniper\x20rifle\x20from\x20the\x20gun\x20cabinet.\x20\x20Just\x20as\x20you\x20do,\x20you\x20hear\x20a\x20guy\x20from\x20the\x20Courtyard\x20yell\x20\x22HEY!\x20WHAT\x27S\x20YA\x20NAME?!\x22','failureMessage':'That\x20passcode\x20is\x20incorrect'}}];function a57d(a,b){const c=a57c();return a57d=function(d,e){d=d-0x1b0;let f=c[d];return f;},a57d(a,b);}export const dungeonConfig=[{'name':'Entrance\x20Hall','description':a57i(0x21f),'isStartRoom':!![],'roomType':a57i(0x1df),'puzzle':{'requiredPhrase':'open\x20sesame','riddle':a57i(0x1d6),'rewardItem':{'type':a57i(0x1ee),'name':a57i(0x1dd),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'},'successMessage':a57i(0x1ff),'failureMessage':a57i(0x1dc)},'exits':[{'direction':a57i(0x1f4),'targetRoom':a57i(0x218)},{'direction':a57i(0x1f9),'targetRoom':a57i(0x1d0),'keyRequired':a57i(0x1dd)}]},{'name':'Study','description':a57i(0x1c3),'roomType':a57i(0x1df),'items':[{'type':a57i(0x1c2),'name':a57i(0x220),'description':'A\x20book\x20containing\x20a\x20mysterious\x20riddle.','content':'When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!'},{'type':'key','name':'Central\x20Chamber\x20Key','description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'}],'exits':[{'direction':a57i(0x1ea),'targetRoom':a57i(0x1f3)},{'direction':'east','targetRoom':a57i(0x1f2)}]},{'name':a57i(0x1f2),'description':a57i(0x1ec),'roomType':a57i(0x1df),'items':[{'type':'basic','name':a57i(0x1fb),'description':a57i(0x203)}],'exits':[{'direction':a57i(0x1f6),'targetRoom':a57i(0x218)},{'direction':a57i(0x1f4),'targetRoom':'Armory'}]},{'name':'Armory','description':a57i(0x1b8),'roomType':'inside','items':[{'type':a57i(0x1f1),'name':a57i(0x1f5),'description':'A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.'},{'type':a57i(0x20b),'name':a57i(0x1bd),'description':a57i(0x1b0)}],'exits':[{'direction':a57i(0x1ea),'targetRoom':a57i(0x1f2)},{'direction':a57i(0x1f9),'targetRoom':a57i(0x1d0)}]},{'name':a57i(0x1d0),'description':a57i(0x1e9),'roomType':a57i(0x1df),'exits':[{'direction':'west','targetRoom':'Armory'},{'direction':a57i(0x1ea),'targetRoom':'Entrance\x20Hall'},{'direction':a57i(0x1f4),'targetRoom':'Torture\x20Chamber'},{'direction':a57i(0x1f9),'targetRoom':a57i(0x1e0)}]},{'name':'Torture\x20Chamber','description':a57i(0x1b3),'roomType':a57i(0x1df),'items':[{'type':a57i(0x1ee),'name':a57i(0x1bb),'description':a57i(0x1c7)}],'puzzle':{'requiredPhrase':'release','riddle':a57i(0x1c6),'rewardItem':{'type':a57i(0x1ed),'name':'Ancient\x20Gem','description':a57i(0x20d)},'successMessage':a57i(0x201),'failureMessage':a57i(0x205)},'exits':[{'direction':a57i(0x1ea),'targetRoom':a57i(0x1d0)}]},{'name':a57i(0x1e0),'description':'Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','roomType':a57i(0x1df),'puzzle':{'requiredPhrase':a57i(0x1b2),'riddle':a57i(0x21b),'rewardItem':{'type':a57i(0x213),'name':'Golden\x20Chalice','description':'A\x20chalice\x20made\x20of\x20pure\x20gold.'},'successMessage':a57i(0x209),'failureMessage':a57i(0x1db)},'exits':[{'direction':a57i(0x1f6),'targetRoom':a57i(0x1d0)}]}];export const shadowrunConfig=[{'name':a57i(0x1f0),'description':'A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','isStartRoom':!![],'roomType':'inside','exits':[{'direction':a57i(0x1f4),'targetRoom':a57i(0x1eb)},{'direction':'up','targetRoom':a57i(0x1bc)}]},{'name':a57i(0x1bc),'description':'A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','roomType':a57i(0x1df),'puzzle':{'requiredPhrase':'decrypt','riddle':a57i(0x1cc),'rewardItem':{'type':a57i(0x1ee),'name':a57i(0x1d8),'description':a57i(0x1e7)},'successMessage':'The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','failureMessage':a57i(0x1cb)},'exits':[{'direction':a57i(0x20f),'targetRoom':'Jackpoint\x20Login'}]},{'name':a57i(0x1eb),'description':a57i(0x20c),'roomType':a57i(0x1d2),'exits':[{'direction':a57i(0x1ea),'targetRoom':a57i(0x1f0)},{'direction':a57i(0x1f9),'targetRoom':'Barrens\x20Entrance'},{'direction':'west','targetRoom':a57i(0x215)}]},{'name':a57i(0x1c8),'description':a57i(0x1fd),'roomType':a57i(0x1d2),'puzzle':{'requiredPhrase':a57i(0x212),'riddle':a57i(0x1e6),'rewardItem':{'type':a57i(0x1ee),'name':'Gang\x20Insignia','description':a57i(0x1b5)},'successMessage':a57i(0x1de),'failureMessage':a57i(0x1bf)},'exits':[{'direction':a57i(0x1f6),'targetRoom':a57i(0x1eb)},{'direction':'north','targetRoom':'Barrens\x20Hideout'}]},{'name':'Corp\x20Enclave','description':a57i(0x1b7),'roomType':a57i(0x1df),'items':[{'type':a57i(0x1ce),'name':a57i(0x1c5),'description':'A\x20creditstick\x20loaded\x20with\x20nuyen.'},{'type':a57i(0x214),'name':'CorpSec\x20Plans','description':a57i(0x1be)}],'exits':[{'direction':a57i(0x1f9),'targetRoom':a57i(0x1eb)}]},{'name':a57i(0x1b1),'description':'A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','roomType':a57i(0x1d2),'items':[{'type':a57i(0x20e),'name':'Ares\x20Predator','description':a57i(0x211)}],'exits':[{'direction':'south','targetRoom':a57i(0x1c8)},{'direction':a57i(0x1f4),'targetRoom':'Mage\x27s\x20Lair'},{'direction':a57i(0x1f9),'targetRoom':a57i(0x1e2)}]},{'name':a57i(0x1f7),'description':a57i(0x1ef),'roomType':'inside','puzzle':{'requiredPhrase':a57i(0x206),'riddle':a57i(0x1b9),'rewardItem':{'type':a57i(0x1d7),'name':a57i(0x1e1),'description':a57i(0x1da)},'successMessage':a57i(0x21e),'failureMessage':'The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.'},'exits':[{'direction':a57i(0x1ea),'targetRoom':a57i(0x1b1)}]},{'name':a57i(0x1e2),'description':a57i(0x21c),'roomType':a57i(0x1df),'items':[{'type':'drone','name':a57i(0x1e5),'description':a57i(0x1d9)}],'exits':[{'direction':a57i(0x1f6),'targetRoom':'Barrens\x20Hideout'}]}];
@@ -1 +1 @@
1
- var a58i=a58d;(function(a,b){var f=a58d,c=a();while(!![]){try{var d=-parseInt(f(0x9d))/0x1+-parseInt(f(0x91))/0x2*(-parseInt(f(0x95))/0x3)+parseInt(f(0xaf))/0x4*(-parseInt(f(0xa6))/0x5)+parseInt(f(0xab))/0x6+-parseInt(f(0x9c))/0x7*(parseInt(f(0xb2))/0x8)+-parseInt(f(0x93))/0x9*(parseInt(f(0x98))/0xa)+-parseInt(f(0x9a))/0xb*(-parseInt(f(0xae))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x314af));var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a58d;if(c){var e=c[g(0xac)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var h=a58d;return a58a[h(0x92)]()[h(0x9b)]('(((.+)+)+)+$')[h(0x92)]()[h(0xb0)](a58a)[h(0x9b)](h(0x97));});a58a();import{EventEmitter}from'events';function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x90;var f=c[d];return f;},a58d(a,b);}function a58c(){var j=['size','77lOMTJs','search','1127wilRsN','249503cqTNvK','roomB','puzzle','exits','solved','_maxCarryingWeight','shape','category','isStartRoom','10aWIixy','isLockable','inventory','characterLocations','_equipment','2308350lCgJzO','apply','items','527472CVPrgz','128108arsufE','constructor','player','14176INHDXI','name','unlockItemOrSolution','roomType','rating','description','112190MklTPx','toString','1044405qICWtd','logger','12qumOaL','rooms','(((.+)+)+)+$','10uZKbsF'];a58c=function(){return j;};return a58c();}export class AbstractScene{[a58i(0x96)];[a58i(0xb1)];[a58i(0x94)];[a58i(0xa9)];}export class AbstractRoom extends EventEmitter{[a58i(0xb3)];[a58i(0x90)];[a58i(0xa0)];[a58i(0xa8)];[a58i(0x9f)];[a58i(0xb5)];[a58i(0xa5)];}export class AbstractDoor{['roomA'];[a58i(0x9e)];['isLocked'];[a58i(0xb4)];[a58i(0xb3)];[a58i(0x94)];[a58i(0xa7)];}export class AbstractInventory{[a58i(0xad)];[a58i(0x94)];}export class AbstractItem{['uuid'];['name'];[a58i(0x90)];[a58i(0x99)];[a58i(0xa4)];[a58i(0xa3)];['color'];['texture'];[a58i(0xb6)];['weight'];}export class AbstractPlayer{['_playerName'];['_currentLocation'];['_inventory'];[a58i(0xaa)];[a58i(0xa2)];['_logger'];}export class AbstractPuzzle{[a58i(0x94)];[a58i(0xa1)];}
1
+ var a58i=a58d;function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x1bb;var f=c[d];return f;},a58d(a,b);}(function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0x1e2))/0x1*(-parseInt(f(0x1d2))/0x2)+parseInt(f(0x1c0))/0x3*(-parseInt(f(0x1e3))/0x4)+parseInt(f(0x1c1))/0x5*(parseInt(f(0x1cf))/0x6)+parseInt(f(0x1c9))/0x7+-parseInt(f(0x1c5))/0x8+parseInt(f(0x1c8))/0x9+-parseInt(f(0x1bd))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x85884));var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a58d;if(c){var e=c[g(0x1df)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var h=a58d;return a58a[h(0x1de)]()[h(0x1d1)](h(0x1d8))[h(0x1de)]()[h(0x1d6)](a58a)['search'](h(0x1d8));});a58a();import{EventEmitter}from'events';function a58c(){var j=['6272028toQKlS','5976124Qjewhl','isStartRoom','weight','texture','rating','characterLocations','33738PZTPXO','_logger','search','382100stjqAj','size','description','logger','constructor','_inventory','(((.+)+)+)+$','unlockItemOrSolution','player','_maxCarryingWeight','rooms','name','toString','apply','exits','_playerName','2fCIXUC','16rHGMRg','roomA','category','shape','7543940MDESTE','_currentLocation','solved','281166cEkfFK','755srNmrP','color','items','roomB','2730936uARLKG','roomType','isLocked'];a58c=function(){return j;};return a58c();}export class AbstractScene{[a58i(0x1dc)];[a58i(0x1da)];[a58i(0x1d5)];[a58i(0x1ce)];}export class AbstractRoom extends EventEmitter{[a58i(0x1dd)];['description'];[a58i(0x1e0)];['inventory'];['puzzle'];[a58i(0x1c6)];[a58i(0x1ca)];}export class AbstractDoor{[a58i(0x1e4)];[a58i(0x1c4)];[a58i(0x1c7)];[a58i(0x1d9)];[a58i(0x1dd)];[a58i(0x1d5)];['isLockable'];}export class AbstractInventory{[a58i(0x1c3)];[a58i(0x1d5)];}export class AbstractItem{['uuid'];[a58i(0x1dd)];[a58i(0x1d4)];[a58i(0x1d3)];[a58i(0x1bb)];[a58i(0x1bc)];[a58i(0x1c2)];[a58i(0x1cc)];[a58i(0x1cd)];[a58i(0x1cb)];}export class AbstractPlayer{[a58i(0x1e1)];[a58i(0x1be)];[a58i(0x1d7)];['_equipment'];[a58i(0x1db)];[a58i(0x1d0)];}export class AbstractPuzzle{['logger'];[a58i(0x1bf)];}
@@ -1 +1 @@
1
- (function(a,b){var k=a59d,c=a();while(!![]){try{var d=-parseInt(k(0x1d5))/0x1+parseInt(k(0x1d2))/0x2+parseInt(k(0x195))/0x3*(-parseInt(k(0x1be))/0x4)+-parseInt(k(0x1c0))/0x5+parseInt(k(0x1af))/0x6*(parseInt(k(0x18f))/0x7)+parseInt(k(0x1c7))/0x8*(-parseInt(k(0x1b9))/0x9)+parseInt(k(0x179))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0xf3d5b));function a59c(){var v=['Triangle','fuzzy','weapon','FOREST','Large','ArmArmor','Gold','NORTH','metallic','Rectangle','arm\x20armor','orange','Book','rare','search','Yellow','small','south','toString','shield','1995567mCwtKf','VeryLarge','Cup','Common','LegArmor','large','706113rrLdrd','triangle','sea','Gloves','rifle','Red','tiny','north','Smooth','Rare','Blue','BodyArmor','unknown','green','gold','helmet','square','brown','red','boots','outside','hat','SEA','apply','WEST','tower','24XkOSbQ','Rifle','Metallic','DESERT','Weapon','Purple','Orange','circle','very\x20large','key','6849uyJKOn','blade','Green','mountain','Legendary','4aSAsJd','EAST','620625qMibRt','SOUTH','Medium','UNDERGROUND','Square','Tiny','TOWER','10528hiEVyV','underground','Grainy','inside','Brown','gloves','rectangle','forest','Helmet','legendary','Small','1163790NfOJHJ','Bumpy','medium','1888181mhAQdZ','common','(((.+)+)+)+$','book','desert','smooth','grainy','yellow','MOUNTAIN','leg\x20armor','Hat','blue','cave','Boots','CAVE','Blade','bumpy','BEACH','25256810RWFrTj','INSIDE'];a59c=function(){return v;};return a59c();}export var Size;(function(a){var l=a59d;a[l(0x1c5)]=l(0x19b),a[l(0x1d1)]=l(0x18b),a[l(0x1c2)]=l(0x1d4),a[l(0x17f)]=l(0x194),a[l(0x190)]=l(0x1b7);}(Size||(Size={})));export var Rating;(function(a){var m=a59d;a[m(0x192)]=m(0x1d6),a[m(0x19e)]=m(0x188),a[m(0x1bd)]=m(0x1d0);}(Rating||(Rating={})));export var Category;(function(a){var n=a59d;a[n(0x1b3)]=n(0x17d),a['Shield']=n(0x18e),a['Key']=n(0x1b8),a[n(0x198)]=n(0x1cc),a[n(0x1cf)]=n(0x1a4),a[n(0x171)]=n(0x1aa),a[n(0x174)]=n(0x1a8),a[n(0x193)]=n(0x170),a[n(0x180)]=n(0x185),a[n(0x1a0)]='body\x20armor',a[n(0x187)]=n(0x1d8),a[n(0x191)]='cup',a['Unknown']=n(0x1a1);}(Category||(Category={})));export var Shape;(function(a){var o=a59d;a['Circle']=o(0x1b6),a[o(0x1c4)]=o(0x1a5),a[o(0x17b)]=o(0x196),a[o(0x184)]=o(0x1cd),a[o(0x176)]=o(0x1ba),a[o(0x1b0)]=o(0x199);}(Shape||(Shape={})));export var Color;(function(c){var r=a59d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var p=a59d;if(h){var j=h[p(0x1ac)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var q=a59d;return e[q(0x18d)]()[q(0x189)](q(0x1d7))[q(0x18d)]()['constructor'](e)[q(0x189)]('(((.+)+)+)+$');});e(),c[r(0x19a)]=r(0x1a7),c[r(0x19f)]=r(0x172),c[r(0x1bb)]=r(0x1a2),c[r(0x18a)]=r(0x16e),c[r(0x1b5)]=r(0x186),c[r(0x1b4)]='purple',c['Grey']='grey',c[r(0x1cb)]=r(0x1a6),c[r(0x181)]=r(0x1a3);}(Color||(Color={})));export var Texture;(function(a){var s=a59d;a[s(0x19d)]=s(0x1da),a['Rough']='rough',a[s(0x1d3)]=s(0x177),a['Fuzzy']=s(0x17c),a[s(0x1c9)]=s(0x1db),a[s(0x1b1)]=s(0x183);}(Texture||(Texture={})));export var RoomType;(function(a){var t=a59d;a[t(0x17a)]=t(0x1ca),a['OUTSIDE']=t(0x1a9),a[t(0x1c3)]=t(0x1c8),a[t(0x175)]=t(0x173),a[t(0x1c6)]=t(0x1ae),a[t(0x17e)]=t(0x1ce),a[t(0x1b2)]=t(0x1d9),a[t(0x16f)]=t(0x1bc),a[t(0x178)]='beach',a[t(0x1ab)]=t(0x197);}(RoomType||(RoomType={})));function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x16e;var f=c[d];return f;},a59d(a,b);}export var Direction;(function(a){var u=a59d;a[u(0x182)]=u(0x19c),a[u(0x1bf)]='east',a[u(0x1c1)]=u(0x18c),a[u(0x1ad)]='west',a['UP']='up',a['DOWN']='down';}(Direction||(Direction={})));
1
+ function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x1af;var f=c[d];return f;},a59d(a,b);}(function(a,b){var k=a59d,c=a();while(!![]){try{var d=parseInt(k(0x1b6))/0x1+-parseInt(k(0x1e4))/0x2+-parseInt(k(0x1e6))/0x3+-parseInt(k(0x1e2))/0x4*(-parseInt(k(0x1c9))/0x5)+-parseInt(k(0x1ea))/0x6+parseInt(k(0x1b1))/0x7*(-parseInt(k(0x1e8))/0x8)+-parseInt(k(0x1f2))/0x9*(-parseInt(k(0x1c2))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0xb0ef5));export var Size;(function(a){var l=a59d;a[l(0x1dc)]=l(0x1c7),a[l(0x1e0)]=l(0x1d4),a[l(0x202)]=l(0x1dd),a['Large']=l(0x1f8),a[l(0x1f1)]='very\x20large';}(Size||(Size={})));export var Rating;(function(a){var m=a59d;a[m(0x1f3)]=m(0x1b9),a['Rare']='rare',a[m(0x1f4)]=m(0x1bf);}(Rating||(Rating={})));export var Category;(function(a){var n=a59d;a['Weapon']='weapon',a[n(0x1cc)]=n(0x1f9),a[n(0x1b5)]='key',a[n(0x1e9)]=n(0x1f0),a['Helmet']=n(0x1c4),a[n(0x1ed)]=n(0x1d7),a['Boots']='boots',a[n(0x1b0)]=n(0x1cd),a['ArmArmor']='arm\x20armor',a[n(0x1d2)]=n(0x1af),a['Book']=n(0x1f7),a[n(0x208)]=n(0x1b4),a['Unknown']=n(0x1e5);}(Category||(Category={})));export var Shape;(function(a){var o=a59d;a[o(0x1c6)]=o(0x1df),a[o(0x1ff)]=o(0x1ec),a['Triangle']=o(0x1c5),a[o(0x1d3)]=o(0x1cf),a[o(0x1b8)]=o(0x1bb),a[o(0x1f6)]=o(0x1b2);}(Shape||(Shape={})));export var Color;(function(a){var p=a59d;a['Red']='red',a['Blue']=p(0x1c8),a[p(0x1ca)]=p(0x1fe),a[p(0x1fc)]='yellow',a[p(0x1bc)]=p(0x1b7),a[p(0x206)]=p(0x1c1),a[p(0x1e7)]=p(0x1d1),a[p(0x200)]='brown',a[p(0x203)]=p(0x1d8);}(Color||(Color={})));export var Texture;(function(a){var q=a59d;a['Smooth']=q(0x1eb),a[q(0x1be)]='rough',a[q(0x1fb)]=q(0x1d0),a['Fuzzy']=q(0x204),a['Grainy']=q(0x207),a['Metallic']=q(0x201);}(Texture||(Texture={})));export var RoomType;(function(a){var r=a59d;a['INSIDE']=r(0x1e1),a[r(0x1e3)]=r(0x1fd),a[r(0x1b3)]=r(0x1c0),a['CAVE']='cave',a[r(0x1de)]='tower',a[r(0x1fa)]=r(0x1d9),a[r(0x1ba)]=r(0x1d6),a[r(0x1db)]='mountain',a[r(0x1da)]=r(0x205),a[r(0x1bd)]=r(0x1d5);}(RoomType||(RoomType={})));export var Direction;(function(c){var u=a59d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var s=a59d;if(h){var j=h[s(0x209)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var t=a59d;return e[t(0x1cb)]()[t(0x1ef)]('(((.+)+)+)+$')[t(0x1cb)]()['constructor'](e)[t(0x1ef)](t(0x1f5));});e(),c['NORTH']=u(0x1ee),c[u(0x1ce)]='east',c['SOUTH']='south',c['WEST']='west',c['UP']='up',c['DOWN']=u(0x1c3);}(Direction||(Direction={})));function a59c(){var v=['5ozqCva','Green','toString','Shield','leg\x20armor','EAST','rectangle','bumpy','grey','BodyArmor','Rectangle','small','sea','desert','hat','gold','forest','BEACH','MOUNTAIN','Tiny','medium','TOWER','circle','Small','inside','2153744nabYJN','OUTSIDE','2366700zkhyld','unknown','1260279mTlpCO','Grey','35688UtCwcI','Gloves','6944874kEtYYn','smooth','square','Hat','north','search','gloves','VeryLarge','2007uGqLMO','Common','Legendary','(((.+)+)+)+$','Rifle','book','large','shield','FOREST','Bumpy','Yellow','outside','green','Square','Brown','metallic','Medium','Gold','fuzzy','beach','Purple','grainy','Cup','apply','body\x20armor','LegArmor','98nJgdHR','rifle','UNDERGROUND','cup','Key','921047VqdeZK','orange','Blade','common','DESERT','blade','Orange','SEA','Rough','legendary','underground','purple','93660uMxYbV','down','helmet','triangle','Circle','tiny','blue'];a59c=function(){return v;};return a59c();}
@@ -1 +1 @@
1
- (function(a,b){var f=a60d,c=a();while(!![]){try{var d=-parseInt(f(0x1cb))/0x1+parseInt(f(0x1d6))/0x2+parseInt(f(0x1d1))/0x3*(-parseInt(f(0x1d9))/0x4)+-parseInt(f(0x1d7))/0x5*(-parseInt(f(0x1d8))/0x6)+-parseInt(f(0x1d0))/0x7*(parseInt(f(0x1ca))/0x8)+-parseInt(f(0x1d5))/0x9*(parseInt(f(0x1d3))/0xa)+parseInt(f(0x1d4))/0xb*(parseInt(f(0x1cd))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xe2511));function a60d(a,b){var c=a60c();return a60d=function(d,e){d=d-0x1ca;var f=c[d];return f;},a60d(a,b);}var a60b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a60d;if(c){var e=c[g(0x1d2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){var h=a60d;return a60a['toString']()[h(0x1cc)](h(0x1ce))['toString']()[h(0x1cf)](a60a)['search']('(((.+)+)+)+$');});a60a();function a60c(){var i=['32clJWCr','863545nkxQNw','search','492HUmcMl','(((.+)+)+)+$','constructor','2017897vQSHzp','3408414VgXVMe','apply','10jRBPwv','1139875iaritz','7560297hcRshz','1185830GYBeXf','35qoBnXO','67074aOFPww','4mVCnpf'];a60c=function(){return i;};return a60c();}export{};
1
+ function a60c(){var i=['constructor','1318550LJlNkK','859720bCpRZm','3nhVmMT','53HYPGYf','search','(((.+)+)+)+$','toString','57745cgUhKU','apply','3728724flgXJw','684QQGyjX','2198328nrFMtI','1013139ZRXnbk','17164cwHsuy','49XrSGGP'];a60c=function(){return i;};return a60c();}(function(a,b){var f=a60d,c=a();while(!![]){try{var d=parseInt(f(0x1df))/0x1*(-parseInt(f(0x1d9))/0x2)+parseInt(f(0x1de))/0x3*(-parseInt(f(0x1d5))/0x4)+-parseInt(f(0x1d3))/0x5*(-parseInt(f(0x1d6))/0x6)+parseInt(f(0x1da))/0x7*(parseInt(f(0x1dd))/0x8)+-parseInt(f(0x1d8))/0x9+parseInt(f(0x1dc))/0xa+parseInt(f(0x1d7))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xdbf52));var a60b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a60d;if(c){var e=c[g(0x1d4)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){var h=a60d;return a60a['toString']()[h(0x1e0)]('(((.+)+)+)+$')[h(0x1d2)]()[h(0x1db)](a60a)[h(0x1e0)](h(0x1d1));});function a60d(a,b){var c=a60c();return a60d=function(d,e){d=d-0x1d1;var f=c[d];return f;},a60d(a,b);}a60a();export{};
@@ -1 +1 @@
1
- function a61c(){var i=['11646pRrChK','106278wDzCLY','toString','2892495CmYTVJ','(((.+)+)+)+$','6nVpnqj','8riUlWi','apply','1352136JlSrmp','24IsBSZN','search','710956IZLHZS','2687660UinjFT','constructor','8814288DSfNGB'];a61c=function(){return i;};return a61c();}(function(a,b){var f=a61d,c=a();while(!![]){try{var d=parseInt(f(0x1d7))/0x1+parseInt(f(0x1e1))/0x2*(parseInt(f(0x1dc))/0x3)+parseInt(f(0x1e3))/0x4+parseInt(f(0x1de))/0x5*(parseInt(f(0x1e0))/0x6)+-parseInt(f(0x1da))/0x7+parseInt(f(0x1e4))/0x8*(-parseInt(f(0x1db))/0x9)+parseInt(f(0x1d8))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0xbd2ed));function a61d(a,b){var c=a61c();return a61d=function(d,e){d=d-0x1d6;var f=c[d];return f;},a61d(a,b);}var a61b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a61d;if(c){var e=c[g(0x1e2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){var h=a61d;return a61a['toString']()['search'](h(0x1df))[h(0x1dd)]()[h(0x1d9)](a61a)[h(0x1d6)](h(0x1df));});a61a();export{};
1
+ function a61c(){var i=['constructor','2547ZxlTHh','1513708QrfdIz','apply','toString','119985RMIXcr','281091ueVXYI','951102RhXyNC','(((.+)+)+)+$','4688gwzYUP','22wFOJYJ','2YcYOzm','search','12XHmQnf','115300SDIZoK','64060zEQuUA'];a61c=function(){return i;};return a61c();}(function(a,b){var f=a61d,c=a();while(!![]){try{var d=parseInt(f(0x19d))/0x1*(-parseInt(f(0x1a3))/0x2)+-parseInt(f(0x19e))/0x3*(parseInt(f(0x195))/0x4)+-parseInt(f(0x197))/0x5+parseInt(f(0x19f))/0x6+parseInt(f(0x19a))/0x7+-parseInt(f(0x1a1))/0x8*(-parseInt(f(0x199))/0x9)+parseInt(f(0x196))/0xa*(parseInt(f(0x1a2))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0x2490b));function a61d(a,b){var c=a61c();return a61d=function(d,e){d=d-0x194;var f=c[d];return f;},a61d(a,b);}var a61b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a61d;if(c){var e=c[g(0x19b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){var h=a61d;return a61a[h(0x19c)]()['search'](h(0x1a0))[h(0x19c)]()[h(0x198)](a61a)[h(0x194)](h(0x1a0));});a61a();export{};
@@ -1 +1 @@
1
- const a62H=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=-parseInt(y(0x1d4))/0x1+-parseInt(y(0x19f))/0x2+parseInt(y(0x17b))/0x3+parseInt(y(0x1bb))/0x4*(parseInt(y(0x1c1))/0x5)+-parseInt(y(0x1bf))/0x6*(-parseInt(y(0x181))/0x7)+parseInt(y(0x193))/0x8*(parseInt(y(0x1ba))/0x9)+-parseInt(y(0x192))/0xa*(-parseInt(y(0x1af))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xdf89c));import a62e from'blessed';import{capitalCase}from'change-case';import a62f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const B=a62d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a62d;if(j){const l=j[z(0x1d1)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a62d;return g['toString']()['search'](A(0x185))['toString']()[A(0x19b)](g)['search'](A(0x185));});g();try{const h=a62e['screen']({'smartCSR':!![],'title':B(0x1aa)}),i=a62e[B(0x1b2)]({'top':'0%','left':'75%','width':'25%','height':'45%','border':{'type':B(0x1a9)},'label':'\x20Inventory\x20','content':B(0x1a8),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x18e)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t[C(0x1c2)]()['map'](v=>v['name']);i['setContent'](u['join']('\x0a')),h['render']();};h[B(0x17a)](i);const k=a62e[B(0x1b2)]({'top':B(0x1c5),'left':B(0x1a0),'width':B(0x1b3),'height':B(0x1b3),'border':{'type':B(0x1a9)},'label':B(0x1d0),'content':B(0x1bc),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x18e)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](k);const l=t=>{const D=B;k['setContent'](D(0x1ac)+(t[D(0x19e)]?t[D(0x19e)][D(0x1b5)]:'None')+'\x0a'+('Torso:\x20'+(t[D(0x1cd)]?t[D(0x1cd)][D(0x1b5)]:D(0x18d))+'\x0a')+('Legs:\x20'+(t['legs']?t[D(0x18c)][D(0x1b5)]:D(0x18d))+'\x0a')+(D(0x19a)+(t[D(0x17d)]?t['feet'][D(0x1b5)]:'None')+'\x0a')+('Arms:\x20'+(t[D(0x190)]?t[D(0x190)][D(0x1b5)]:D(0x18d))+'\x0a')+(D(0x1c7)+(t['gloves']?t[D(0x1b9)][D(0x1b5)]:D(0x18d))+'\x0a')+(D(0x182)+(t[D(0x1ce)]?t[D(0x1ce)][D(0x1b5)]:'None')+'\x0a')+(D(0x1a5)+(t[D(0x1c6)]?t[D(0x1c6)][D(0x1b5)]:D(0x18d))+'\x0a')),h[D(0x1c4)]();},m=a62e['box']({'top':B(0x189),'left':B(0x1a0),'width':B(0x1b3),'height':'20%','border':{'type':'line'},'label':B(0x18f),'content':B(0x1be),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x18e)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x17a)](m);const n=t=>{const E=B;let u=E(0x1c3)+t[E(0x1b5)]+'\x0a\x0a';u+='-----\x20Exits\x20------\x0a',t[E(0x191)]['size']>0x0?t['exits']['forEach']((v,w)=>{const F=E;if(v instanceof Door){const x=v[F(0x1bd)](t);x[F(0x187)]===RoomType['OUTSIDE']?u+=capitalCase(w)+':\x20'+x[F(0x1b5)]:u+=capitalCase(w)+':\x20'+v[F(0x1b5)];if(v['checkIfLocked']())u+='\x20(Locked)';else v[F(0x188)]()&&(u+=F(0x1a1));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0x1b8),m['setContent'](u),h[E(0x1c4)]();},o=a62e[B(0x1b2)]({'id':B(0x18a),'top':'0%','left':'0%','width':B(0x1a0),'height':B(0x1b6),'border':{'type':B(0x1a9)},'label':B(0x1ca),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x18e)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0x1a4)](B(0x1cb)),h['append'](o);const p=a62e['textbox']({'bottom':0x0,'left':0x0,'width':B(0x1d3),'height':B(0x196),'tags':!![],'border':{'type':B(0x1a9)},'style':{'fg':B(0x194),'border':{'fg':B(0x1a6)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[B(0x17a)](p),h['key']([B(0x1a3),B(0x1ab)],()=>process[B(0x1ad)](0x0)),p[B(0x17c)](),h[B(0x1c4)]();const q=Logger[B(0x1b4)](e[B(0x1c9)],h),r=new Player({'playerName':c});q['write'](B(0x180));const s=a62f['getInstance'](r,d);o[B(0x19d)](s['getWelcomeMessage']()),l(s[B(0x186)][B(0x1c0)]),j(s[B(0x186)][B(0x1a7)]),n(s[B(0x186)][B(0x17f)]),p[B(0x1cf)](['enter'],async()=>{const G=B,t=p['getValue'](),u=s['handleInput'](t);(t[G(0x1cc)]('\x20')[0x0]===G(0x1a2)||G(0x19c)||G(0x195))&&(j(s[G(0x186)][G(0x1a7)]),l(s[G(0x186)][G(0x1c0)])),(t[G(0x1cc)]('\x20')[0x0]==='go'||G(0x197)||G(0x18b))&&n(s[G(0x186)][G(0x17f)]),t[G(0x1cc)]('\x20')[0x0]===G(0x1d2)&&o['setContent'](''),u===null&&(console[G(0x1ae)](G(0x183)),h['render'](),q[G(0x1b1)](G(0x199)),process[G(0x1ad)](0x0)),o[G(0x198)](u),o[G(0x17e)](0x1),p[G(0x1b7)](),p[G(0x17c)](),h[G(0x1c4)]();});}catch(t){console[B(0x1ae)](t),process[B(0x1ad)](0x1);}}const args=process[a62H(0x1b0)][a62H(0x184)](0x2);function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x17a;let f=c[d];return f;},a62d(a,b);}main(args[0x0],JSON[a62H(0x1c8)](args[0x1]),JSON[a62H(0x1c8)](args[0x2]));function a62c(){const I=['currentLocation','----->>>>>>\x20Initializing\x20Game','96747VAOlRv','Left\x20Hand:\x20','Thanks\x20for\x20playing!','slice','(((.+)+)+)+$','player','roomType','checkIfLockable','70%','logBox','unlock','legs','None','yellow','\x20Map\x20','arms','exits','7560UoADcj','398648qGuUGg','white','unequip','10%','lock','pushLine','<<<<<<<<---------\x20Terminating\x20game','Feet:\x20','constructor','equip','setContent','head','2404174dDibtB','75%','\x20(Unlocked)','take','escape','removeAllListeners','Right\x20Hand:\x20','cyan','inventory','Your\x20items\x20will\x20be\x20listed\x20here...','line','Side\x20Quest\x20Adventure\x20Game','C-c','Head:\x20','exit','log','10648mlnZHU','argv','write','box','25%','getInstance','name','90%','clearValue','\x0aThere\x20are\x20no\x20exits\x20here.','gloves','117azyhDI','8mgbvzf','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','getOtherSide','Available\x20exits\x20will\x20be\x20shown\x20here...','300POgfYi','equipment','1409085wmdItE','getAllItems','Currently\x20in:\x20','render','45%','rightHand','Gloves:\x20','parse','logFilePath','\x20Game\x20Log\x20','mousemove','split','torso','leftHand','key','\x20Equipment\x20','apply','clear','100%','819570DWtRhp','append','908922SUkARP','focus','feet','scroll'];a62c=function(){return I;};return a62c();}
1
+ const a62H=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=-parseInt(y(0x144))/0x1+parseInt(y(0x149))/0x2+-parseInt(y(0x164))/0x3*(-parseInt(y(0x153))/0x4)+parseInt(y(0x182))/0x5*(parseInt(y(0x159))/0x6)+parseInt(y(0x179))/0x7*(parseInt(y(0x158))/0x8)+-parseInt(y(0x15c))/0x9+-parseInt(y(0x18a))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xa80da));import a62e from'blessed';import{capitalCase}from'change-case';import a62f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x135;let f=c[d];return f;},a62d(a,b);}import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';function a62c(){const I=['100%','line','lock','103868AMORLL','getValue','Gloves:\x20','size','unlock','2151838mcbZnF','inventory','checkIfLockable','apply','\x20Inventory\x20','Currently\x20in:\x20','Torso:\x20','Feet:\x20','----->>>>>>\x20Initializing\x20Game','(((.+)+)+)+$','24668OCmZub','split','Left\x20Hand:\x20','cyan','argv','1201256sOrbHg','78dMrNJt','handleInput','name','9436608vCDXlc','OUTSIDE','equip','arms','toString','head','None','logBox','513cNfBLB','exits','scroll','search','white','render','feet','box','write','mousemove','Available\x20exits\x20will\x20be\x20shown\x20here...','75%','25%','leftHand','clear','10%','Right\x20Hand:\x20','\x20(Unlocked)','Arms:\x20','currentLocation','Thanks\x20for\x20playing!','7xcIwYt','escape','Legs:\x20','<<<<<<<<---------\x20Terminating\x20game','exit','log','forEach','equipment','getAllItems','295265MpHpWJ','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','Head:\x20','gloves','\x20Equipment\x20','focus','rightHand','screen','12075960gaAXEg','legs','\x20Game\x20Log\x20','yellow','pushLine','logFilePath','70%','getInstance','key','player','removeAllListeners','45%','append','setContent','slice'];a62c=function(){return I;};return a62c();}export async function main(c,d,e){const B=a62d,f=(function(){let h=!![];return function(i,j){const k=h?function(){const z=a62d;if(j){const l=j[z(0x14c)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a62d;return g[A(0x160)]()[A(0x167)](A(0x152))[A(0x160)]()['constructor'](g)['search']('(((.+)+)+)+$');});g();try{const h=a62e[B(0x189)]({'smartCSR':!![],'title':'Side\x20Quest\x20Adventure\x20Game'}),i=a62e[B(0x16b)]({'top':'0%','left':B(0x16f),'width':B(0x170),'height':'45%','border':{'type':'line'},'label':B(0x14d),'content':'Your\x20items\x20will\x20be\x20listed\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t[C(0x181)]()['map'](v=>v[C(0x15b)]);i[C(0x13f)](u['join']('\x0a')),h[C(0x169)]();};h[B(0x13e)](i);const k=a62e[B(0x16b)]({'top':B(0x13d),'left':B(0x16f),'width':B(0x170),'height':B(0x170),'border':{'type':B(0x142)},'label':B(0x186),'content':B(0x183),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x135)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x13e)](k);const l=t=>{const D=B;k[D(0x13f)](D(0x184)+(t[D(0x161)]?t[D(0x161)][D(0x15b)]:D(0x162))+'\x0a'+(D(0x14f)+(t['torso']?t['torso'][D(0x15b)]:D(0x162))+'\x0a')+(D(0x17b)+(t['legs']?t[D(0x18b)][D(0x15b)]:'None')+'\x0a')+(D(0x150)+(t[D(0x16a)]?t['feet']['name']:D(0x162))+'\x0a')+(D(0x176)+(t[D(0x15f)]?t[D(0x15f)][D(0x15b)]:D(0x162))+'\x0a')+(D(0x146)+(t[D(0x185)]?t[D(0x185)][D(0x15b)]:D(0x162))+'\x0a')+(D(0x155)+(t[D(0x171)]?t[D(0x171)]['name']:D(0x162))+'\x0a')+(D(0x174)+(t[D(0x188)]?t[D(0x188)]['name']:D(0x162))+'\x0a')),h[D(0x169)]();},m=a62e[B(0x16b)]({'top':B(0x138),'left':B(0x16f),'width':B(0x170),'height':'20%','border':{'type':B(0x142)},'label':'\x20Map\x20','content':B(0x16e),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x135)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](m);const n=t=>{const E=B;let u=E(0x14e)+t[E(0x15b)]+'\x0a\x0a';u+='-----\x20Exits\x20------\x0a',t[E(0x165)][E(0x147)]>0x0?t[E(0x165)][E(0x17f)]((v,w)=>{const F=E;if(v instanceof Door){const x=v['getOtherSide'](t);x['roomType']===RoomType[F(0x15d)]?u+=capitalCase(w)+':\x20'+x[F(0x15b)]:u+=capitalCase(w)+':\x20'+v[F(0x15b)];if(v['checkIfLocked']())u+='\x20(Locked)';else v[F(0x14b)]()&&(u+=F(0x175));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+='\x0aThere\x20are\x20no\x20exits\x20here.',m['setContent'](u),h[E(0x169)]();},o=a62e[B(0x16b)]({'id':B(0x163),'top':'0%','left':'0%','width':'75%','height':'90%','border':{'type':B(0x142)},'label':B(0x18c),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0x13c)](B(0x16d)),h['append'](o);const p=a62e['textbox']({'bottom':0x0,'left':0x0,'width':B(0x141),'height':B(0x173),'tags':!![],'border':{'type':B(0x142)},'style':{'fg':B(0x168),'border':{'fg':B(0x156)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[B(0x13e)](p),h[B(0x13a)]([B(0x17a),'C-c'],()=>process[B(0x17d)](0x0)),p['focus'](),h[B(0x169)]();const q=Logger[B(0x139)](e[B(0x137)],h),r=new Player({'playerName':c});q[B(0x16c)](B(0x151));const s=a62f['getInstance'](r,d);o[B(0x13f)](s['getWelcomeMessage']()),l(s[B(0x13b)][B(0x180)]),j(s[B(0x13b)][B(0x14a)]),n(s[B(0x13b)][B(0x177)]),p['key'](['enter'],async()=>{const G=B,t=p[G(0x145)](),u=s[G(0x15a)](t);(t[G(0x154)]('\x20')[0x0]==='take'||G(0x15e)||'unequip')&&(j(s[G(0x13b)]['inventory']),l(s[G(0x13b)][G(0x180)])),(t['split']('\x20')[0x0]==='go'||G(0x143)||G(0x148))&&n(s[G(0x13b)][G(0x177)]),t['split']('\x20')[0x0]===G(0x172)&&o[G(0x13f)](''),u===null&&(console[G(0x17e)](G(0x178)),h['render'](),q['write'](G(0x17c)),process[G(0x17d)](0x0)),o[G(0x136)](u),o[G(0x166)](0x1),p['clearValue'](),p[G(0x187)](),h[G(0x169)]();});}catch(t){console[B(0x17e)](t),process['exit'](0x1);}}const args=process[a62H(0x157)][a62H(0x140)](0x2);main(args[0x0],JSON['parse'](args[0x1]),JSON['parse'](args[0x2]));
@@ -1 +1 @@
1
- const a63j=a63d;function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0xae;let f=c[d];return f;},a63d(a,b);}function a63c(){const r=['constructor','getInstance','toString','7yhNMgx','845944paSdCK','render','filePath','screen','existsSync','795960oKYFBV','logBox','write','21776jeOGlM','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','.maka','options','log','hasScreen','[INFO]\x20[','toISOString','[ERROR]\x20[','The\x20logbox\x20','join','scrollTo','6956436ZiPCJG','dirname','(((.+)+)+)+$','instance','995AmmPnn','3589088rwLqoP','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','homedir','writeFileSync','find','appendFileSync','children','2021068ZmueIC','getScrollHeight','content','search','4683681YmIFUm'];a63c=function(){return r;};return a63c();}(function(a,b){const h=a63d,c=a();while(!![]){try{const d=parseInt(h(0xd1))/0x1+-parseInt(h(0xc8))/0x2+-parseInt(h(0xd6))/0x3+parseInt(h(0xb0))/0x4*(-parseInt(h(0xc0))/0x5)+parseInt(h(0xbc))/0x6+-parseInt(h(0xd0))/0x7*(-parseInt(h(0xc1))/0x8)+parseInt(h(0xcc))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x96311));const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const i=a63d;return a63a[i(0xcf)]()[i(0xcb)](i(0xbe))[i(0xcf)]()[i(0xcd)](a63a)[i(0xcb)](i(0xbe));});a63a();import a63e from'fs';import a63f from'os';import a63g from'path';const homeDir=a63f[a63j(0xc3)]();export class Logger{static [a63j(0xbf)];['filePath'];[a63j(0xd4)];constructor(a,b){const k=a63j;this[k(0xd3)]=a,this['screen']=b,this['ensureLogFileExists']();}static[a63j(0xce)](a=a63g[a63j(0xba)](homeDir,a63j(0xb2),'side-quest.log'),b){const l=a63j;if(!Logger['instance']){if(!b)throw new Error(l(0xc2));Logger[l(0xbf)]=new Logger(a,b);}return Logger[l(0xbf)];}['ensureLogFileExists'](){const m=a63j,a=a63g[m(0xbd)](this[m(0xd3)]);!a63e[m(0xd5)](a)&&a63e['mkdirSync'](a,{'recursive':!![]}),!a63e[m(0xd5)](this[m(0xd3)])&&a63e[m(0xc4)](this['filePath'],'');}[a63j(0xaf)](a){const n=a63j,b=new Date()[n(0xb7)](),c=n(0xb6)+b+']\x20'+a+'\x0a';a63e[n(0xc6)](this[n(0xd3)],c);}['error'](a){const o=a63j,b=new Date()['toISOString'](),c=o(0xb8)+b+']\x20'+a+'\x0a';a63e['appendFileSync'](this['filePath'],c);}[a63j(0xb4)](a){const p=a63j,b=this[p(0xd4)]?.[p(0xc7)][p(0xc5)](c=>c['type']==='box'&&c[p(0xb3)]['id']===p(0xae));b?(b['setContent'](b[p(0xca)]+'\x0a'+a),b[p(0xbb)](b[p(0xc9)]()),this[p(0xd4)]?.[p(0xd2)]()):this['error'](p(0xb9)+b+p(0xb1)+this['screen']),this[p(0xaf)](a);}[a63j(0xb5)](){const q=a63j;return!!this[q(0xd4)];}}
1
+ const a63k=a63d;(function(a,b){const h=a63d,c=a();while(!![]){try{const d=parseInt(h(0x183))/0x1+parseInt(h(0x174))/0x2+parseInt(h(0x176))/0x3*(-parseInt(h(0x17c))/0x4)+-parseInt(h(0x17e))/0x5*(parseInt(h(0x170))/0x6)+-parseInt(h(0x194))/0x7*(parseInt(h(0x182))/0x8)+-parseInt(h(0x178))/0x9+-parseInt(h(0x187))/0xa*(-parseInt(h(0x189))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x72d5d));function a63c(){const s=['render','2303545tNTMJk','.maka','getInstance','hasScreen','8asAHub','896534ydPLVD','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','existsSync','toISOString','10YezxXK','appendFileSync','12495923VlqWYU','constructor','The\x20logbox\x20','content','(((.+)+)+)+$','options','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','join','apply','search','filePath','2475165zJFeUd','side-quest.log','write','log','find','children','ensureLogFileExists','6FYLvyC','screen','getScrollHeight','[INFO]\x20[','375720OjpIMp','type','35727txrEDh','error','5634756COasEt','mkdirSync','writeFileSync','instance','104NdJyIm'];a63c=function(){return s;};return a63c();}const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a63d;if(c){const e=c[i(0x191)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const j=a63d;return a63a['toString']()['search'](j(0x18d))['toString']()[j(0x18a)](a63a)[j(0x192)](j(0x18d));});a63a();function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0x16a;let f=c[d];return f;},a63d(a,b);}import a63e from'fs';import a63f from'os';import a63g from'path';const homeDir=a63f['homedir']();export class Logger{static [a63k(0x17b)];[a63k(0x193)];[a63k(0x171)];constructor(a,b){const l=a63k;this[l(0x193)]=a,this[l(0x171)]=b,this['ensureLogFileExists']();}static[a63k(0x180)](a=a63g[a63k(0x190)](homeDir,a63k(0x17f),a63k(0x16a)),b){const m=a63k;if(!Logger[m(0x17b)]){if(!b)throw new Error(m(0x184));Logger[m(0x17b)]=new Logger(a,b);}return Logger[m(0x17b)];}[a63k(0x16f)](){const n=a63k,a=a63g['dirname'](this['filePath']);!a63e[n(0x185)](a)&&a63e[n(0x179)](a,{'recursive':!![]}),!a63e[n(0x185)](this['filePath'])&&a63e[n(0x17a)](this[n(0x193)],'');}[a63k(0x16b)](a){const o=a63k,b=new Date()[o(0x186)](),c=o(0x173)+b+']\x20'+a+'\x0a';a63e[o(0x188)](this['filePath'],c);}['error'](a){const p=a63k,b=new Date()[p(0x186)](),c='[ERROR]\x20['+b+']\x20'+a+'\x0a';a63e[p(0x188)](this[p(0x193)],c);}[a63k(0x16c)](a){const q=a63k,b=this[q(0x171)]?.[q(0x16e)][q(0x16d)](c=>c[q(0x175)]==='box'&&c[q(0x18e)]['id']==='logBox');b?(b['setContent'](b[q(0x18c)]+'\x0a'+a),b['scrollTo'](b[q(0x172)]()),this[q(0x171)]?.[q(0x17d)]()):this[q(0x177)](q(0x18b)+b+q(0x18f)+this[q(0x171)]),this[q(0x16b)](a);}[a63k(0x181)](){const r=a63k;return!!this[r(0x171)];}}
@@ -1 +1 @@
1
- const a64n=a64d;(function(a,b){const k=a64d,c=a();while(!![]){try{const d=parseInt(k(0x9c))/0x1*(-parseInt(k(0x9a))/0x2)+parseInt(k(0xa1))/0x3*(-parseInt(k(0xaf))/0x4)+-parseInt(k(0x9e))/0x5*(parseInt(k(0xad))/0x6)+parseInt(k(0x92))/0x7+-parseInt(k(0x96))/0x8*(parseInt(k(0x95))/0x9)+parseInt(k(0xa2))/0xa*(-parseInt(k(0xb6))/0xb)+parseInt(k(0xaa))/0xc*(parseInt(k(0xa5))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x92b56));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a64d;if(c){const e=c[l(0x97)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const m=a64d;return a64a[m(0x93)]()[m(0xa7)](m(0xb8))['toString']()[m(0xba)](a64a)[m(0xa7)]('(((.+)+)+)+$');});a64a();import a64e from'path';function a64c(){const q=['28808fszmiz','apply','getGlobalMakaDir','Play\x20a\x20little\x20side-quest','14ZJfBUT','Thanks\x20for\x20playing!','56964LaIIwr','Commoner','46880gHgKiN','node','player','96573fKOHtV','3093370rQGotY','fsi','log','26oVCUPM','options','search','sideQuestAnswer','shadowrun','24047472kHBHCw','side-quest.log','stringify','552dUQmMb','inherit','144RTkQSQ','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','exit','./sideQuest/ui.js','join','Just\x20a\x20little\x20pet\x20project...\x20I\x20really\x20liked\x20the\x20Dunnet\x20game\x20that\x0a\x20\x20came\x20with\x20MacOS\x20but\x20has\x20been\x20removed.\x20\x20Just\x20messing\x20around\x20and\x20building\x0a\x20\x20out\x20a\x20similar\x20thing...','maka\x20play:side-quest','22zPljwm','side-quest','(((.+)+)+)+$','url','constructor','list','750596HrLYRZ','toString','create','1188FVDNmd'];a64c=function(){return q;};return a64c();}import{spawn}from'child_process';import a64f from'./play.command.js';import{Command}from'../../command.js';import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0x91;let f=c[d];return f;},a64d(a,b);}import{dirname}from'path';const __filename=fileURLToPath(import.meta[a64n(0xb9)]),__dirname=dirname(__filename);Command[a64n(0x94)]({'name':a64n(0xb7),'usage':a64n(0xb5),'shortDesc':a64n(0x99),'aliases':['sq'],'description':a64n(0xb4),'validOpts':[a64n(0xa0)]},async function(a,b){const o=a64n;try{const c=this[o(0xa3)][o(0x98)](),d=a64e[o(0xb3)](c,o(0xab)),e=b[o(0xa0)]?b[o(0xa0)]:await Actions['ask']('What\x20is\x20your\x20name?')||o(0x9d),f={...b,'logFilePath':d},g={'type':o(0x91),'name':o(0xa8),'message':o(0xb0),'choices':[{'name':'dungeon','value':dungeonConfig},{'name':o(0xa9),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0xa6)](g);if(e&&h){const i=spawn(o(0x9f),[a64e['resolve'](__dirname,o(0xb2)),e,JSON[o(0xac)](h),JSON[o(0xac)](f)],{'stdio':o(0xae)});i['on'](o(0xb1),()=>{const p=o;console['log'](p(0x9b));});}}catch(j){console[o(0xa4)](j);}},a64f);
1
+ const a64n=a64d;(function(a,b){const k=a64d,c=a();while(!![]){try{const d=-parseInt(k(0xff))/0x1*(-parseInt(k(0xf3))/0x2)+parseInt(k(0xf0))/0x3+parseInt(k(0xfc))/0x4+parseInt(k(0x109))/0x5*(parseInt(k(0xf8))/0x6)+parseInt(k(0x10f))/0x7*(-parseInt(k(0xed))/0x8)+parseInt(k(0x102))/0x9*(-parseInt(k(0x100))/0xa)+-parseInt(k(0xee))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0xb8c90));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a64d;if(c){const e=c[l(0xf9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const m=a64d;return a64a['toString']()['search'](m(0xf6))[m(0x101)]()[m(0xf1)](a64a)[m(0x10b)](m(0xf6));});a64a();import a64e from'path';import{spawn}from'child_process';import a64f from'./play.command.js';import{Command}from'../../command.js';import{Actions}from'../../tools/actions/actions.class.js';import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';function a64c(){const q=['log','node','inherit','sideQuestAnswer','What\x20is\x20your\x20name?','player','3368ZUDNtg','2030611qZuaXC','list','2111895lnOWbM','constructor','Thanks\x20for\x20playing!','110iPvzdH','resolve','maka\x20play:side-quest','(((.+)+)+)+$','./sideQuest/ui.js','5215722SXvWer','apply','side-quest','fsi','1422176rSLqdA','Commoner','dungeon','5963kWonjc','10mephzJ','toString','10969839fHbCVr','exit','Just\x20a\x20little\x20pet\x20project...\x20I\x20really\x20liked\x20the\x20Dunnet\x20game\x20that\x0a\x20\x20came\x20with\x20MacOS\x20but\x20has\x20been\x20removed.\x20\x20Just\x20messing\x20around\x20and\x20building\x0a\x20\x20out\x20a\x20similar\x20thing...','options','url','stringify','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','5rSwsdE','getGlobalMakaDir','search','ask','create','shadowrun','1603yKRHQB','side-quest.log'];a64c=function(){return q;};return a64c();}import{fileURLToPath}from'url';import{dirname}from'path';const __filename=fileURLToPath(import.meta[a64n(0x106)]),__dirname=dirname(__filename);function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0xec;let f=c[d];return f;},a64d(a,b);}Command[a64n(0x10d)]({'name':a64n(0xfa),'usage':a64n(0xf5),'shortDesc':'Play\x20a\x20little\x20side-quest','aliases':['sq'],'description':a64n(0x104),'validOpts':[a64n(0xec)]},async function(a,b){const o=a64n;try{const c=this[o(0xfb)][o(0x10a)](),d=a64e['join'](c,o(0x110)),e=b['player']?b[o(0xec)]:await Actions[o(0x10c)](o(0x115))||o(0xfd),f={...b,'logFilePath':d},g={'type':o(0xef),'name':o(0x114),'message':o(0x108),'choices':[{'name':o(0xfe),'value':dungeonConfig},{'name':o(0x10e),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x105)](g);if(e&&h){const i=spawn(o(0x112),[a64e[o(0xf4)](__dirname,o(0xf7)),e,JSON[o(0x107)](h),JSON['stringify'](f)],{'stdio':o(0x113)});i['on'](o(0x103),()=>{const p=o;console[p(0x111)](p(0xf2));});}}catch(j){console['log'](j);}},a64f);
@@ -1 +1 @@
1
- var a65h=a65d;(function(a,b){var f=a65d,c=a();while(!![]){try{var d=parseInt(f(0xe6))/0x1+-parseInt(f(0xec))/0x2*(parseInt(f(0xe5))/0x3)+parseInt(f(0xde))/0x4+parseInt(f(0xe3))/0x5+-parseInt(f(0xdf))/0x6+parseInt(f(0xeb))/0x7+parseInt(f(0xe1))/0x8*(-parseInt(f(0xe0))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0xd275e));function a65c(){var j=['5864740GbxxRW','toString','3HYWbdX','1491463fdRtop','snake','maka\x20game:snake','constructor','npx\x20command-line-snake','5767440JQGJiq','1510986VKXMDp','create','inherit','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','search','6430752tHpVcL','8926416OKbswO','17916696CGgqkv','8garvLn','(((.+)+)+)+$'];a65c=function(){return j;};return a65c();}function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0xdb;var f=c[d];return f;},a65d(a,b);}var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var g=a65d;return a65a[g(0xe4)]()[g(0xdd)](g(0xe2))[g(0xe4)]()[g(0xe9)](a65a)[g(0xdd)](g(0xe2));});a65a();import a65e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a65h(0xed)]({'name':a65h(0xe7),'usage':a65h(0xe8),'shortDesc':a65h(0xdc),'validOpts':[]},async function(){var i=a65h;execSync(i(0xea),{'stdio':i(0xdb)});},a65e);
1
+ function a65c(){var k=['npx\x20command-line-snake','constructor','22841232nAzyrI','4362560iPIbYu','4vUHvQw','apply','9437379zFvCqM','maka\x20game:snake','(((.+)+)+)+$','inherit','toString','2842738PiNoZg','155634JmUQfR','4368801WYyOCT','2674260GibWjs','create','snake'];a65c=function(){return k;};return a65c();}function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0x19b;var f=c[d];return f;},a65d(a,b);}var a65i=a65d;(function(a,b){var f=a65d,c=a();while(!![]){try{var d=-parseInt(f(0x1a4))/0x1+parseInt(f(0x1a3))/0x2+parseInt(f(0x1a5))/0x3*(parseInt(f(0x19c))/0x4)+-parseInt(f(0x19b))/0x5+parseInt(f(0x1a6))/0x6+parseInt(f(0x19e))/0x7+-parseInt(f(0x1ab))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0xc0713));var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a65d;if(c){var e=c[g(0x19d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var h=a65d;return a65a['toString']()['search'](h(0x1a0))[h(0x1a2)]()[h(0x1aa)](a65a)['search'](h(0x1a0));});a65a();import a65e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a65i(0x1a7)]({'name':a65i(0x1a8),'usage':a65i(0x19f),'shortDesc':'Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','validOpts':[]},async function(){var j=a65i;execSync(j(0x1a9),{'stdio':j(0x1a1)});},a65e);
@@ -1 +1 @@
1
- var a66i=a66d;(function(a,b){var f=a66d,c=a();while(!![]){try{var d=parseInt(f(0x1de))/0x1+parseInt(f(0x1e1))/0x2*(parseInt(f(0x1e8))/0x3)+-parseInt(f(0x1e2))/0x4*(parseInt(f(0x1e9))/0x5)+-parseInt(f(0x1da))/0x6+-parseInt(f(0x1e5))/0x7*(parseInt(f(0x1db))/0x8)+-parseInt(f(0x1eb))/0x9+-parseInt(f(0x1e0))/0xa*(-parseInt(f(0x1dd))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x2efa5));function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0x1d7;var f=c[d];return f;},a66d(a,b);}var a66b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a66d;if(c){var e=c[g(0x1df)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){var h=a66d;return a66a['toString']()[h(0x1e7)](h(0x1d7))[h(0x1e3)]()[h(0x1ea)](a66a)['search'](h(0x1d7));});function a66c(){var k=['search','3ptZWRV','40zlmRiB','constructor','3434841mdDftx','(((.+)+)+)+$','inherit','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','1539876CXoktE','80CsnQkv','maka\x20game:tetris','6414243DoRLZj','294214Dkimyz','apply','10renHGC','653182KaqiPT','149896vBiISR','toString','create','51387shhzTk','npx\x20simple-tetris'];a66c=function(){return k;};return a66c();}a66a();import a66e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a66i(0x1e4)]({'name':'tetris','usage':a66i(0x1dc),'shortDesc':a66i(0x1d9),'validOpts':[]},async function(){var j=a66i;execSync(j(0x1e6),{'stdio':j(0x1d8)});},a66e);
1
+ var a66i=a66d;(function(a,b){var f=a66d,c=a();while(!![]){try{var d=-parseInt(f(0xc0))/0x1+parseInt(f(0xc4))/0x2+-parseInt(f(0xbd))/0x3+parseInt(f(0xbf))/0x4*(parseInt(f(0xc5))/0x5)+parseInt(f(0xce))/0x6*(-parseInt(f(0xcd))/0x7)+parseInt(f(0xc3))/0x8*(parseInt(f(0xcb))/0x9)+parseInt(f(0xca))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x49ed7));var a66b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a66d;if(c){var e=c[g(0xc8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){var h=a66d;return a66a['toString']()[h(0xbe)]('(((.+)+)+)+$')[h(0xc1)]()[h(0xcc)](a66a)['search']('(((.+)+)+)+$');});function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0xbd;var f=c[d];return f;},a66d(a,b);}a66a();import a66e from'./play.command.js';function a66c(){var k=['533878VjevJw','373605wgkWHo','tetris','maka\x20game:tetris','apply','create','6542100RrJpvt','3388698hcgWYv','constructor','743379cwTuvQ','18iQizkc','1055589DbicMA','search','12XUbRGu','548573TIyPNl','toString','npx\x20simple-tetris','8nowzFe'];a66c=function(){return k;};return a66c();}import{Command}from'../../command.js';import{execSync}from'child_process';Command[a66i(0xc9)]({'name':a66i(0xc6),'usage':a66i(0xc7),'shortDesc':'Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','validOpts':[]},async function(){var j=a66i;execSync(j(0xc2),{'stdio':'inherit'});},a66e);
@@ -1 +1 @@
1
- const a67i=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=parseInt(f(0xc6))/0x1+-parseInt(f(0xda))/0x2+-parseInt(f(0xd0))/0x3*(-parseInt(f(0xd5))/0x4)+-parseInt(f(0xc5))/0x5+-parseInt(f(0xdb))/0x6+-parseInt(f(0xc4))/0x7*(parseInt(f(0xce))/0x8)+parseInt(f(0xcf))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0x9e584));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0xca)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0xcc)]()[h(0xc8)](h(0xd7))[h(0xcc)]()['constructor'](a67a)['search'](h(0xd7));});a67a();function a67c(){const k=['search','maka\x20g:route\x20todos/edit','apply','maka\x20g:template\x20todos/todo_item','toString','invoke','8WMhpOH','20256921EIqbyI','702192RGGuUu','create','maka\x20g:api\x20trucks','processAndRunGenerator','exit','12RLpWwY','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','(((.+)+)+)+$','maka\x20generate:scaffold\x20todos','maka\x20g:dbc\x20geoserver\x20--type=pgsql','217336GwqjGb','3941574oEWuYZ','generate','Scaffold\x20various\x20parts\x20of\x20your\x20application','8993705IpTKWs','4243205ZCNOqI','594672aaHcIu','maka\x20g:scaffold\x20todos'];a67c=function(){return k;};return a67c();}import{Command}from'../command.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0xc2;let f=c[d];return f;},a67d(a,b);}import a67e from'../generators/maka.gen.js';import{Log}from'../tools/log/log.class.js';Command[a67i(0xd1)]({'name':a67i(0xc2),'aliases':['g'],'usage':'maka\x20{generate,\x20g}:<generator>\x20<name>','validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a67i(0xc3),'description':a67i(0xd6),'examples':[a67i(0xd8),a67i(0xc7),a67i(0xcb),'maka\x20g:package\x20package:name',a67i(0xc9),a67i(0xd2),a67i(0xd9)]},async function(a,b){const j=a67i;try{const c=a[0x0];c?(a['splice'](0x0,0x1),await a67e[j(0xd3)](c,a,b)):a67e[j(0xcd)](a,b);}catch(d){Log['error'](d),process[j(0xd4)](0x1);}});
1
+ const a67i=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=parseInt(f(0x1d1))/0x1+parseInt(f(0x1c2))/0x2*(-parseInt(f(0x1cc))/0x3)+parseInt(f(0x1d3))/0x4+-parseInt(f(0x1d5))/0x5+-parseInt(f(0x1da))/0x6+-parseInt(f(0x1c6))/0x7*(-parseInt(f(0x1cd))/0x8)+-parseInt(f(0x1c8))/0x9*(-parseInt(f(0x1c9))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0x31e84));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x1d0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x1c4)]()[h(0x1c5)](h(0x1d4))[h(0x1c4)]()[h(0x1ce)](a67a)['search'](h(0x1d4));});function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x1c2;let f=c[d];return f;},a67d(a,b);}a67a();import{Command}from'../command.js';import a67e from'../generators/maka.gen.js';import{Log}from'../tools/log/log.class.js';function a67c(){const k=['208072igjIPE','constructor','splice','apply','115488lzVgCS','maka\x20g:api\x20trucks','1017704gyoLEc','(((.+)+)+)+$','1006000yfeLlK','maka\x20g:dbc\x20geoserver\x20--type=pgsql','generate','processAndRunGenerator','maka\x20g:route\x20todos/edit','1134096dtVpgT','3054MpcqGp','maka\x20{generate,\x20g}:<generator>\x20<name>','toString','search','84ErAChU','Scaffold\x20various\x20parts\x20of\x20your\x20application','4041xVQYAW','6590cSMENT','error','invoke','753vuYOzZ'];a67c=function(){return k;};return a67c();}Command['create']({'name':a67i(0x1d7),'aliases':['g'],'usage':a67i(0x1c3),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a67i(0x1c7),'description':'\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','examples':['maka\x20generate:scaffold\x20todos','maka\x20g:scaffold\x20todos','maka\x20g:template\x20todos/todo_item','maka\x20g:package\x20package:name',a67i(0x1d9),a67i(0x1d2),a67i(0x1d6)]},async function(a,b){const j=a67i;try{const c=a[0x0];c?(a[j(0x1cf)](0x0,0x1),await a67e[j(0x1d8)](c,a,b)):a67e[j(0x1cb)](a,b);}catch(d){Log[j(0x1ca)](d),process['exit'](0x1);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a68d,c=a();while(!![]){try{var d=-parseInt(f(0xa4))/0x1+parseInt(f(0xa8))/0x2+-parseInt(f(0xaa))/0x3+parseInt(f(0xa3))/0x4*(parseInt(f(0xa6))/0x5)+parseInt(f(0xac))/0x6+-parseInt(f(0xad))/0x7+-parseInt(f(0xab))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0xd8a0f));function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0xa3;var f=c[d];return f;},a68d(a,b);}var a68b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a68d;if(c){var e=c[g(0xae)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){var h=a68d;return a68a[h(0xa7)]()[h(0xa9)](h(0xa5))[h(0xa7)]()['constructor'](a68a)[h(0xa9)](h(0xa5));});a68a();import'./get.command.js';import'./global.sub.cmd.js';function a68c(){var i=['2791534kUYanU','search','244734OksKFs','12840848TKTaeI','5141958dJhFyV','2081359sDWYdX','apply','544VaABqE','653844YJLTxP','(((.+)+)+)+$','46780WLKhMC','toString'];a68c=function(){return i;};return a68c();}import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';
1
+ (function(a,b){var f=a68d,c=a();while(!![]){try{var d=-parseInt(f(0x1f3))/0x1+parseInt(f(0x1f2))/0x2+parseInt(f(0x1f7))/0x3*(parseInt(f(0x1f5))/0x4)+parseInt(f(0x1f1))/0x5+-parseInt(f(0x1f4))/0x6*(-parseInt(f(0x1f6))/0x7)+parseInt(f(0x1eb))/0x8+-parseInt(f(0x1ec))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0xc5696));var a68b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a68d;if(c){var e=c[g(0x1f8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){var h=a68d;return a68a[h(0x1f0)]()[h(0x1ef)](h(0x1ed))[h(0x1f0)]()[h(0x1ee)](a68a)[h(0x1ef)]('(((.+)+)+)+$');});a68a();function a68c(){var i=['3531580eMPbRJ','3112330yTfQGy','1415848HFQoXy','94386SQmGoe','12EKPqel','70WYhDes','583773zLcPXE','apply','11901192hnsjGd','20400903CMALMF','(((.+)+)+)+$','constructor','search','toString'];a68c=function(){return i;};return a68c();}import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0x1eb;var f=c[d];return f;},a68d(a,b);}import'./whoami.sub.cmd.js';
@@ -1 +1 @@
1
- const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=parseInt(f(0x7f))/0x1*(-parseInt(f(0x82))/0x2)+parseInt(f(0x75))/0x3*(-parseInt(f(0x86))/0x4)+parseInt(f(0x76))/0x5*(-parseInt(f(0x7c))/0x6)+-parseInt(f(0x80))/0x7+parseInt(f(0x79))/0x8*(parseInt(f(0x74))/0x9)+-parseInt(f(0x84))/0xa*(-parseInt(f(0x81))/0xb)+-parseInt(f(0x7e))/0xc*(-parseInt(f(0x8a))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0xdc068));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0x83)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a['toString']()[h(0x7b)](h(0x85))[h(0x88)]()['constructor'](a69a)['search']('(((.+)+)+)+$');});a69a();function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x74;let f=c[d];return f;},a69d(a,b);}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command['create']({'name':a69i(0x77),'usage':a69i(0x7d),'shortDesc':a69i(0x89),'validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this['findSubCommand'](c);if(d)this[j(0x87)](c,a,b);else{Log[j(0x78)](j(0x7a));throw new UsageErrorWithSubs();}});export default GetCommand;function a69c(){const k=['toString','Get\x20various\x20Maka\x20variables\x20and\x20configurations','195KYDwGD','6692715CQRYkW','15sgXWIZ','860bVrjMQ','get','error','8ADKlmq','Sub-Command\x20not\x20found','search','8598vNgwbe','maka\x20get:<sub-command>','1185864XaTaQC','33050bgrPjU','3184251jOpnGG','121dszTvO','38cWjlTf','apply','592430uPJvCy','(((.+)+)+)+$','517676XazVhL','runSubCommand'];a69c=function(){return k;};return a69c();}
1
+ const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=-parseInt(f(0xf1))/0x1+parseInt(f(0xec))/0x2*(parseInt(f(0xf3))/0x3)+-parseInt(f(0xf4))/0x4+parseInt(f(0xfa))/0x5*(parseInt(f(0xf5))/0x6)+parseInt(f(0xef))/0x7*(-parseInt(f(0xf8))/0x8)+parseInt(f(0xeb))/0x9+parseInt(f(0xe8))/0xa*(-parseInt(f(0xf6))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x56e74));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0xe6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0xe9)]()[h(0xe7)](h(0xf7))[h(0xe9)]()[h(0xf2)](a69a)[h(0xe7)](h(0xf7));});function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0xe6;let f=c[d];return f;},a69d(a,b);}a69a();function a69c(){const k=['2024214Qhplyn','1457560wPgmFM','66ytNzDC','172513HGwcXf','(((.+)+)+)+$','1045168SZLBxJ','runSubCommand','312245nTDmzg','apply','search','30qgBKwi','toString','create','2328876mdNEnL','2APPIty','get','findSubCommand','21gFzqBz','Sub-Command\x20not\x20found','461108wRFdZz','constructor'];a69c=function(){return k;};return a69c();}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a69i(0xea)]({'name':a69i(0xed),'usage':'maka\x20get:<sub-command>','shortDesc':'Get\x20various\x20Maka\x20variables\x20and\x20configurations','validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this[j(0xee)](c);if(d)this[j(0xf9)](c,a,b);else{Log['error'](j(0xf0));throw new UsageErrorWithSubs();}});export default GetCommand;
@@ -1 +1 @@
1
- const a70i=a70d;function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x10f;let f=c[d];return f;},a70d(a,b);}(function(a,b){const f=a70d,c=a();while(!![]){try{const d=parseInt(f(0x114))/0x1*(-parseInt(f(0x125))/0x2)+-parseInt(f(0x122))/0x3*(-parseInt(f(0x118))/0x4)+parseInt(f(0x111))/0x5+-parseInt(f(0x110))/0x6+parseInt(f(0x120))/0x7+parseInt(f(0x119))/0x8*(parseInt(f(0x11d))/0x9)+parseInt(f(0x116))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0xedbce));function a70c(){const k=['apply','4112164kEaieG','(((.+)+)+)+$','3kUjEyJ','getGlobalConfig','toString','382dAvpKi','create','4570494wzRGSq','2413245ydySnM','constructor','global-config','4903OWhCmE','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','154630FagBxV','search','5726792XAIgmE','618936CVIRfi','log','exit','error','18uUKQFZ','fsi'];a70c=function(){return k;};return a70c();}const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a70d;if(c){const e=c[g(0x11f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const h=a70d;return a70a[h(0x124)]()['search'](h(0x121))['toString']()[h(0x112)](a70a)[h(0x117)](h(0x121));});a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';Command[a70i(0x10f)]({'name':a70i(0x113),'usage':'maka\x20get:global-config','aliases':['gc'],'shortDesc':a70i(0x115),'validOpts':[]},async function(){const j=a70i;try{const a=await this[j(0x11e)][j(0x123)]();console[j(0x11a)](a),process[j(0x11b)](0x0);}catch(b){console[j(0x11c)](b),process[j(0x11b)](0x0);}},a70e);
1
+ function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x12f;let f=c[d];return f;},a70d(a,b);}const a70i=a70d;(function(a,b){const f=a70d,c=a();while(!![]){try{const d=parseInt(f(0x139))/0x1*(-parseInt(f(0x141))/0x2)+parseInt(f(0x13e))/0x3*(-parseInt(f(0x142))/0x4)+-parseInt(f(0x133))/0x5+-parseInt(f(0x130))/0x6+-parseInt(f(0x140))/0x7+parseInt(f(0x138))/0x8+-parseInt(f(0x12f))/0x9*(-parseInt(f(0x13f))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x7a795));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a70d;if(c){const e=c[g(0x136)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const h=a70d;return a70a[h(0x134)]()[h(0x13b)]('(((.+)+)+)+$')[h(0x134)]()[h(0x13d)](a70a)[h(0x13b)]('(((.+)+)+)+$');});function a70c(){const k=['log','fsi','1829600aRTdme','toString','getGlobalConfig','apply','global-config','1406968aJiXst','710szoaHm','exit','search','error','constructor','2568TKsjHO','6904280LUGJOn','6361376hgNALK','1946VkniBd','2856ggVYIQ','45lwfTuA','3297936rNkRTa'];a70c=function(){return k;};return a70c();}a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';Command['create']({'name':a70i(0x137),'usage':'maka\x20get:global-config','aliases':['gc'],'shortDesc':'Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','validOpts':[]},async function(){const j=a70i;try{const a=await this[j(0x132)][j(0x135)]();console[j(0x131)](a),process[j(0x13a)](0x0);}catch(b){console[j(0x13c)](b),process[j(0x13a)](0x0);}},a70e);
@@ -1 +1 @@
1
- const a71i=a71d;(function(a,b){const f=a71d,c=a();while(!![]){try{const d=parseInt(f(0x162))/0x1+parseInt(f(0x158))/0x2*(parseInt(f(0x156))/0x3)+-parseInt(f(0x164))/0x4+parseInt(f(0x15f))/0x5+-parseInt(f(0x160))/0x6+parseInt(f(0x15b))/0x7*(parseInt(f(0x15e))/0x8)+-parseInt(f(0x163))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x99d1b));function a71c(){const k=['apply','747292wXUhFc','439983QitpcY','3092128xhxzeB','(((.+)+)+)+$','search','21rxxcWz','maka\x20get:local-config','203108dvmZdZ','create','fsi','49VypqMs','constructor','toString','124168UdtmYW','1814590HHPnwk','2866638BbDiSd'];a71c=function(){return k;};return a71c();}const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a71d;if(c){const e=c[g(0x161)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const h=a71d;return a71a[h(0x15d)]()[h(0x166)](h(0x165))[h(0x15d)]()[h(0x15c)](a71a)['search'](h(0x165));});a71a();function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0x156;let f=c[d];return f;},a71d(a,b);}import a71e from'./get.command.js';import{Command}from'../../command.js';Command[a71i(0x159)]({'name':'local-config','usage':a71i(0x157),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':'Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','validOpts':[]},async function(){const j=a71i,a=await this[j(0x15a)]['getMakaProjectConfig']();console['log'](a);},a71e);
1
+ const a71h=a71d;(function(a,b){const f=a71d,c=a();while(!![]){try{const d=parseInt(f(0x10d))/0x1+parseInt(f(0x102))/0x2+-parseInt(f(0x105))/0x3+parseInt(f(0x111))/0x4*(parseInt(f(0x108))/0x5)+-parseInt(f(0x10f))/0x6+parseInt(f(0x10e))/0x7+-parseInt(f(0x107))/0x8*(parseInt(f(0x104))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0xdba0d));const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const g=a71d;return a71a[g(0x10b)]()[g(0x103)](g(0x110))[g(0x10b)]()[g(0x10a)](a71a)[g(0x103)](g(0x110));});a71a();import a71e from'./get.command.js';function a71c(){const j=['2305ozVztV','local-config','constructor','toString','log','299195wyzCwc','3523464WvGngq','7813278MWxZrS','(((.+)+)+)+$','12948ZXFhWx','getMakaProjectConfig','1540866UeLREx','search','9aUPBDJ','1246089yCwRGs','maka\x20get:local-config','3584512vwPiZK'];a71c=function(){return j;};return a71c();}function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0x102;let f=c[d];return f;},a71d(a,b);}import{Command}from'../../command.js';Command['create']({'name':a71h(0x109),'usage':a71h(0x106),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':'Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','validOpts':[]},async function(){const i=a71h,a=await this['fsi'][i(0x112)]();console[i(0x10c)](a);},a71e);
@@ -1 +1 @@
1
- const a72j=a72d;(function(a,b){const g=a72d,c=a();while(!![]){try{const d=-parseInt(g(0x114))/0x1*(parseInt(g(0x10d))/0x2)+parseInt(g(0x120))/0x3+parseInt(g(0x123))/0x4+-parseInt(g(0x115))/0x5+parseInt(g(0x113))/0x6+-parseInt(g(0x119))/0x7+parseInt(g(0x117))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0x82e83));const a72b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a72d;if(c){const e=c[h(0x125)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){const i=a72d;return a72a[i(0x127)]()['search']('(((.+)+)+)+$')[i(0x127)]()['constructor'](a72a)['search'](i(0x128));});a72a();import a72e from'./get.command.js';import{Command}from'../../command.js';function a72c(){const l=['join','702004BbctAu','error','apply','create','toString','(((.+)+)+)+$','notice','token','158QYjGLU','hash','exit','getGlobalConfig','roles','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','2115774MiKbAd','10181RSBnWz','2196910dxSfNE','fsi','1568952XbhWyc','userId','5075MrOAMg','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','User\x20Access\x20Token:\x20\x20','maka\x20get:whoami','decode','user','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','3169056qfeXdD','authToken'];a72c=function(){return l;};return a72c();}function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x10c;let f=c[d];return f;},a72d(a,b);}import{Log}from'../../tools/log/log.class.js';import a72f from'jsonwebtoken';Command[a72j(0x126)]({'name':'whoami','usage':a72j(0x11c),'shortDesc':a72j(0x11f),'validOpts':[]},async function(){const k=a72j;try{const a=await this[k(0x116)][k(0x110)]();if(a[k(0x10e)]){const b=a72f[k(0x11d)](a[k(0x10e)]);Log[k(0x129)](k(0x11a)+b?.[k(0x11e)]),Log[k(0x129)](k(0x112)+a[k(0x10c)]?.[k(0x118)]),Log[k(0x129)](k(0x11b)+a[k(0x10c)]?.[k(0x121)]),Log['notice']('Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20'+b?.[k(0x111)][k(0x122)](',\x20'));}}catch(c){console[k(0x124)](c),process[k(0x10f)](0x0);}},a72e);
1
+ const a72j=a72d;(function(a,b){const g=a72d,c=a();while(!![]){try{const d=parseInt(g(0xc5))/0x1+-parseInt(g(0xd2))/0x2+parseInt(g(0xca))/0x3+-parseInt(g(0xc6))/0x4*(parseInt(g(0xc7))/0x5)+parseInt(g(0xcd))/0x6*(-parseInt(g(0xbf))/0x7)+-parseInt(g(0xc3))/0x8*(parseInt(g(0xbc))/0x9)+parseInt(g(0xcc))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0x86091));function a72c(){const l=['(((.+)+)+)+$','roles','constructor','decode','1088818lugLsx','User\x20Access\x20Token:\x20\x20','whoami','toString','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','notice','8914599XAoBDs','hash','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','357PdPmKF','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','authToken','create','8thZbnB','token','765931TEsnhS','28vgCPtQ','423955OlJpSd','user','error','1017951pxwoyL','apply','23656760oWPvvh','93348eneUbr'];a72c=function(){return l;};return a72c();}const a72b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a72d;if(c){const e=c[h(0xcb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){const i=a72d;return a72a[i(0xd5)]()['search']('(((.+)+)+)+$')[i(0xd5)]()[i(0xd0)](a72a)['search'](i(0xce));});a72a();import a72e from'./get.command.js';function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0xba;let f=c[d];return f;},a72d(a,b);}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a72f from'jsonwebtoken';Command[a72j(0xc2)]({'name':a72j(0xd4),'usage':'maka\x20get:whoami','shortDesc':'If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','validOpts':[]},async function(){const k=a72j;try{const a=await this['fsi']['getGlobalConfig']();if(a[k(0xbd)]){const b=a72f[k(0xd1)](a[k(0xbd)]);Log[k(0xbb)](k(0xc0)+b?.[k(0xc8)]),Log[k(0xbb)](k(0xbe)+a[k(0xc4)]?.['userId']),Log[k(0xbb)](k(0xd3)+a['token']?.[k(0xc1)]),Log[k(0xbb)](k(0xba)+b?.[k(0xcf)]['join'](',\x20'));}}catch(c){console[k(0xc9)](c),process['exit'](0x0);}},a72e);
@@ -1 +1 @@
1
- var a73i=a73d;(function(a,b){var f=a73d,c=a();while(!![]){try{var d=-parseInt(f(0x12f))/0x1+parseInt(f(0x133))/0x2*(-parseInt(f(0x13a))/0x3)+parseInt(f(0x12d))/0x4+-parseInt(f(0x12c))/0x5+parseInt(f(0x135))/0x6+-parseInt(f(0x137))/0x7*(parseInt(f(0x139))/0x8)+parseInt(f(0x130))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0x55d57));var a73b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a73d;if(c){var e=c[g(0x131)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){var h=a73d;return a73a[h(0x12e)]()[h(0x13b)](h(0x132))['toString']()['constructor'](a73a)[h(0x13b)](h(0x132));});a73a();import{Command}from'../command.js';import{UsageError}from'../error.js';function a73c(){var j=['toString','525153fjPxcl','8158572CPLkhD','apply','(((.+)+)+)+$','2UyIETh','help','854172ByOeZe','Deprecated:\x20use\x20--help\x20instead','56dfFvLw','Try,\x20maka\x20--help','555736hSimuM','86883BvgklV','search','create','505375CfQnaX','2054520xniRnF'];a73c=function(){return j;};return a73c();}function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0x12c;var f=c[d];return f;},a73d(a,b);}Command[a73i(0x13c)]({'name':a73i(0x134),'description':a73i(0x138),'aliases':['h'],'validOpts':[],'shortDesc':a73i(0x136)},async function(){throw new UsageError();});
1
+ function a73c(){var j=['1188392uwyOOV','106698fuavju','search','1073382haJCJi','apply','help','constructor','1009872swZmEO','(((.+)+)+)+$','244070NSSaEP','1840215YRAaPm','13941mISUDS','448EuMxPC','7XMNahM','toString'];a73c=function(){return j;};return a73c();}var a73i=a73d;(function(a,b){var f=a73d,c=a();while(!![]){try{var d=parseInt(f(0x1e4))/0x1+parseInt(f(0x1de))/0x2+-parseInt(f(0x1e2))/0x3+parseInt(f(0x1db))/0x4+-parseInt(f(0x1e5))/0x5+parseInt(f(0x1dc))/0x6*(-parseInt(f(0x1e8))/0x7)+-parseInt(f(0x1e7))/0x8*(-parseInt(f(0x1e6))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0x6bf29));var a73b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a73d;if(c){var e=c[g(0x1df)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){var h=a73d;return a73a['toString']()['search'](h(0x1e3))[h(0x1e9)]()[h(0x1e1)](a73a)[h(0x1dd)](h(0x1e3));});a73a();function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0x1db;var f=c[d];return f;},a73d(a,b);}import{Command}from'../command.js';import{UsageError}from'../error.js';Command['create']({'name':a73i(0x1e0),'description':'Try,\x20maka\x20--help','aliases':['h'],'validOpts':[],'shortDesc':'Deprecated:\x20use\x20--help\x20instead'},async function(){throw new UsageError();});
@@ -1 +1 @@
1
- const a74x=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=-parseInt(v(0x1b0))/0x1*(-parseInt(v(0x1c4))/0x2)+-parseInt(v(0x1b3))/0x3+-parseInt(v(0x1d3))/0x4*(parseInt(v(0x1a5))/0x5)+parseInt(v(0x1d2))/0x6*(-parseInt(v(0x1f0))/0x7)+-parseInt(v(0x1f5))/0x8*(-parseInt(v(0x1f7))/0x9)+-parseInt(v(0x1be))/0xa*(-parseInt(v(0x1f8))/0xb)+parseInt(v(0x1f6))/0xc*(-parseInt(v(0x1dd))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x6b5a0));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const w=a74d;return a74a[w(0x1d0)]()[w(0x1af)]('(((.+)+)+)+$')[w(0x1d0)]()['constructor'](a74a)[w(0x1af)](w(0x1e3));});a74a();import a74e from'os';import a74f from'path';import a74g from'fs';function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x1a1;let f=c[d];return f;},a74d(a,b);}import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';function a74c(){const B=['confirm','grep','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','https://install.meteor.com','notice','meteor.tar.gz','package-metadata','cert','/.zshrc','x86_64','-rf','259PUUEWt','maka\x20install\x20meteor','packages','injectAtEndOfFile','SHELL','2023256VxxIhN','60wUWvag','9jxZyEn','176MklUUH','keepInstallFile','https://packages.meteor.com/bootstrap-link?arch=os.','Setting\x20Path\x20in\x20\x20','osx','2320865YxKujJ','install','zsh','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','length','downloadFile','Path\x20already\x20set\x20in\x20/etc/profile','getuid','arch','/.bash_profile','search','1439OWEQeK','maka\x20install\x20meteor\x20--version\x202.13.3','string','368868AtNikq','replace','includes','homedir','Setting\x20Path\x20in\x20','windows','platform','force','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','&release=','/etc/profile','483800LbaKii','Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)','fileContainsString','maka\x20i','setPath','Cleaning\x20up','718WijVkw','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','Preparing\x20to\x20install\x20Meteor\x20','cacert','fsi','create','success','\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','info','join','arm64','Meteor\x20version\x20','toString','Setting\x20Path\x20in\x20/etc/profile','3876GbBfwq','4WYyTXM','get','NO_NODE_WARNINGS','withSpinner',':$PATH','warn','error','Error\x20extracting\x20meteor.tar.gz\x20file','Aborted','exit','1281397yFdaOf','Path\x20already\x20set\x20in\x20','version','meteor','linux','/.bashrc','(((.+)+)+)+$','env'];a74c=function(){return B;};return a74c();}const homeDir=a74e[a74x(0x1b6)]();function isRoot(){const y=a74x;return process['getuid']&&process[y(0x1ac)]()===0x0;}Command[a74x(0x1c9)]({'name':a74x(0x1a6),'aliases':['i'],'validOpts':[a74x(0x1ba),'version',a74x(0x1c7),a74x(0x1c2),'keepInstallFile'],'usage':'maka\x20install','shortDesc':a74x(0x1e7),'description':a74x(0x1cb),'examples':[a74x(0x1f1),'maka\x20install\x20meteor\x20--force',a74x(0x1b1),a74x(0x1c1)]},async function(a,b){const z=a74x;try{let c='';if(b[z(0x1c7)]){if(this[z(0x1c8)]['isFile'](b[z(0x1c7)]))Log[z(0x1e9)]('Using\x20CA\x20Cert\x20'+b[z(0x1c7)]),c=b['cacert'];else throw'CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20'+c;}const d=await this[z(0x1c8)]['getGlobalConfig']();if(d[z(0x1ec)]){if(this[z(0x1c8)]['isFile'](d[z(0x1ec)]))c=d[z(0x1ec)];else throw z(0x1a8)+c;}let f=![];if(b['f']||b[z(0x1ba)])f=!![];else{const p=isRoot();p?(Log[z(0x1d8)]('You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.'),f=await Actions[z(0x1e5)]('Proceed\x20anyway?',![])):f=!![];}if(!f)throw z(0x1db);const g=process['platform']==='win32',h=await HTTPS[z(0x1d4)]({'url':z(0x1e8),'cert':c}),i=await this[z(0x1c8)][z(0x1e6)](h['data'],'RELEASE=');if(i[z(0x1a9)]===0x0)throw'Network\x20error,\x20please\x20try\x20again.';process[z(0x1e4)][z(0x1d5)]='1',Log[z(0x1e9)](z(0x1c6)+i[0x0][z(0x1b4)](/[^0-9.]/gi,'')[z(0x1b4)](/\r?\n|\r/,''));let j=i[0x0][z(0x1b4)](/[^0-9.]/gi,'')[z(0x1b4)](/\r?\n|\r/,'');(typeof b['v']===z(0x1b2)||typeof b[z(0x1df)]===z(0x1b2))&&(j=b['v']||b['version']);const k={'win32':z(0x1b8),'darwin':z(0x1a4),'linux':z(0x1e1)},l=z(0x1a2)+k[a74e[z(0x1b9)]()]+'.'+(a74e[z(0x1ad)]()===z(0x1ce)?z(0x1ce):z(0x1ee))+z(0x1bc)+j,m=await HTTPS['checkAvailability']({'url':l,'cert':c});!m&&(Log[z(0x1d9)]('Meteor\x20version\x20'+j+'\x20is\x20not\x20available.'),process[z(0x1dc)](0x0));const n=a74f[z(0x1cd)](homeDir,'.meteor'),o=async()=>{const A=z,q='export\x20PATH='+n+A(0x1d7);if(process[A(0x1e4)][A(0x1f4)]&&process['env']['SHELL'][A(0x1b5)](A(0x1a7))){const r=await this[A(0x1c8)][A(0x1c0)](homeDir+'/.zshrc',q);if(!r)Log[A(0x1cc)](A(0x1a3)+homeDir+'/.zshrc'),this['fsi']['injectAtEndOfFile']({'filePath':homeDir+A(0x1ed),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1c2)]&&Log[A(0x1cc)](A(0x1de)+homeDir+A(0x1ed));}else{const s=await this[A(0x1c8)][A(0x1c0)](homeDir+'/.bashrc',q);if(!s)Log['info']('Setting\x20Path\x20in\x20'+homeDir+'/.bashrc'),this['fsi'][A(0x1f3)]({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1c2)]&&Log[A(0x1cc)](A(0x1de)+homeDir+A(0x1e2));const t=await this['fsi'][A(0x1c0)](homeDir+A(0x1ae),q);if(!t)Log[A(0x1cc)](A(0x1b7)+homeDir+A(0x1ae)),this[A(0x1c8)][A(0x1f3)]({'filePath':homeDir+A(0x1ae),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1c2)]&&Log[A(0x1cc)](A(0x1de)+homeDir+A(0x1ae));if(isRoot()){const u=await this[A(0x1c8)]['fileContainsString'](A(0x1bd),q);if(!u)Log['info'](A(0x1d1)),this[A(0x1c8)][A(0x1f3)]({'filePath':'/etc/profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1c2)]&&Log['info'](A(0x1ab));}}};b[z(0x1c2)]&&(await o(),process['exit'](0x0));if(g)Log[z(0x1d9)](z(0x1c5)),process['exit'](0x0);else{if(a74g['existsSync'](n)){let q=![];b['f']||b[z(0x1ba)]?q=!![]:q=await Actions['confirm']('Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?',![]),q?(await SpawnAsync['withSpinner']('rm',[z(0x1ef),a74f[z(0x1cd)](n,z(0x1f2))],{'message':z(0x1bb)}),await SpawnAsync[z(0x1d6)]('rm',['-rf',a74f[z(0x1cd)](n,z(0x1eb))],{'message':z(0x1bf)}),await SpawnAsync[z(0x1d6)]('rm',[z(0x1ef),a74f[z(0x1cd)](n,z(0x1e0))],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(main)'})):(Log['info']('Aborting\x20install'),process[z(0x1dc)](0x0));}try{await HTTPS[z(0x1aa)]({'url':l,'destPath':a74f[z(0x1cd)](homeDir,z(0x1ea)),'cert':c});try{const r=a74f[z(0x1cd)](homeDir,z(0x1ea));await this[z(0x1c8)]['extractTarGz'](r,homeDir);}catch(s){Log[z(0x1d9)](z(0x1da));}!b[z(0x1a1)]&&await SpawnAsync[z(0x1d6)]('rm',[z(0x1ef),a74f[z(0x1cd)](homeDir,z(0x1ea))],{'message':z(0x1c3)}),await o();}catch(t){console[z(0x1d9)](t),process[z(0x1dc)](0x0);}Log[z(0x1ca)](z(0x1cf)+j+'\x20installed.\x0a');}}catch(u){console[z(0x1d9)](u),process[z(0x1dc)](0x0);}});
1
+ const a74z=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=-parseInt(v(0x114))/0x1*(-parseInt(v(0x137))/0x2)+-parseInt(v(0x12d))/0x3*(-parseInt(v(0xee))/0x4)+parseInt(v(0xe7))/0x5+-parseInt(v(0x121))/0x6+parseInt(v(0x129))/0x7*(-parseInt(v(0x11a))/0x8)+-parseInt(v(0x104))/0x9+parseInt(v(0x10f))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0xce4ee));function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0xe4;let f=c[d];return f;},a74d(a,b);}const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a74d;if(c){const e=c[w(0xf2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const x=a74d;return a74a[x(0xeb)]()['search'](x(0x13a))[x(0xeb)]()[x(0x13e)](a74a)['search'](x(0x13a));});a74a();import a74e from'os';import a74f from'path';import a74g from'fs';import{SpawnAsync}from'../tools/spawn-async/spawn-async.class.js';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const homeDir=a74e['homedir']();function a74c(){const C=['203xOlqQg','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','get','x86_64','4598259XlapPd','windows','platform','Setting\x20Path\x20in\x20\x20','SHELL','maka\x20install\x20meteor\x20--version\x202.13.3','install','Preparing\x20to\x20install\x20Meteor\x20','info','zsh','1126FeKQrB','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','setPath','(((.+)+)+)+$','export\x20PATH=','https://packages.meteor.com/bootstrap-link?arch=os.','getuid','constructor','downloadFile','maka\x20install\x20meteor','fsi','3985595poSnyq','cert','keepInstallFile','NO_NODE_WARNINGS','toString','exit','data','4qjcodJ','Cleaning\x20up','string','Setting\x20Path\x20in\x20/etc/profile','apply','error','Aborted','fileContainsString','https://install.meteor.com','create','\x20installed.\x0a','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','Path\x20already\x20set\x20in\x20/etc/profile','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','cacert','Aborting\x20install','extractTarGz','/etc/profile','join','arch','Network\x20error,\x20please\x20try\x20again.','includes','11861415kWaIQV','win32','Path\x20already\x20set\x20in\x20','Setting\x20Path\x20in\x20','Error\x20extracting\x20meteor.tar.gz\x20file','confirm','replace','maka\x20i','force','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','RELEASE=','12473160knySUo','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','meteor.tar.gz','withSpinner','/.bash_profile','1129BhdpXm','/.bashrc','package-metadata','checkAvailability','Using\x20CA\x20Cert\x20','version','267408uvTlpy','arm64','/.zshrc','linux','Meteor\x20version\x20','env','Proceed\x20anyway?','6482928imdXaX','warn','packages','isFile','injectAtEndOfFile','maka\x20install',':$PATH','-rf'];a74c=function(){return C;};return a74c();}function isRoot(){const y=a74d;return process[y(0x13d)]&&process[y(0x13d)]()===0x0;}Command[a74z(0xf7)]({'name':a74z(0x133),'aliases':['i'],'validOpts':[a74z(0x10c),a74z(0x119),a74z(0xfc),a74z(0x139),a74z(0xe9)],'usage':a74z(0x126),'shortDesc':a74z(0xfb),'description':'\x0a\x20\x20Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22\x20and\x20will\x20install\x0a\x20\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--force\x20flag\x20will\x20remove\x20the\x20current\x20install\x20of\x20meteor\x20and\x20install\x20the\x20latest\x20version.\x0a\x0a\x20\x20\x20\x20--version\x20flag\x20will\x20install\x20the\x20specified\x20version\x20of\x20meteor.\x0a\x0a\x20\x20\x20\x20--cacert\x20flag\x20will\x20use\x20the\x20specified\x20CA\x20Cert\x20file,\x20useful\x20for\x20corporate\x20networks.\x0a\x0a\x20\x20\x20\x20--setPath\x20flag\x20will\x20set\x20the\x20path\x20to\x20the\x20meteor\x20install\x20in\x20your\x20.bashrc\x20or\x20.zshrc\x20file\x20w/o\x20installing\x20meteor.\x0a\x20\x20','examples':[a74z(0xe5),'maka\x20install\x20meteor\x20--force',a74z(0x132),a74z(0x10b)]},async function(a,b){const A=a74z;try{let c='';if(b['cacert']){if(this['fsi']['isFile'](b[A(0xfc)]))Log['notice'](A(0x118)+b[A(0xfc)]),c=b[A(0xfc)];else throw A(0x110)+c;}const d=await this[A(0xe6)]['getGlobalConfig']();if(d[A(0xe8)]){if(this[A(0xe6)][A(0x124)](d[A(0xe8)]))c=d[A(0xe8)];else throw'CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+c;}let f=![];if(b['f']||b['force'])f=!![];else{const p=isRoot();p?(Log[A(0x122)](A(0x10d)),f=await Actions[A(0x109)](A(0x120),![])):f=!![];}if(!f)throw A(0xf4);const g=process['platform']===A(0x105),h=await HTTPS[A(0x12b)]({'url':A(0xf6),'cert':c}),i=await this[A(0xe6)]['grep'](h[A(0xed)],A(0x10e));if(i['length']===0x0)throw A(0x102);process[A(0x11f)][A(0xea)]='1',Log['notice'](A(0x134)+i[0x0][A(0x10a)](/[^0-9.]/gi,'')[A(0x10a)](/\r?\n|\r/,''));let j=i[0x0][A(0x10a)](/[^0-9.]/gi,'')[A(0x10a)](/\r?\n|\r/,'');(typeof b['v']===A(0xf0)||typeof b['version']===A(0xf0))&&(j=b['v']||b[A(0x119)]);const k={'win32':A(0x12e),'darwin':'osx','linux':A(0x11d)},l=A(0x13c)+k[a74e[A(0x12f)]()]+'.'+(a74e[A(0x101)]()===A(0x11b)?A(0x11b):A(0x12c))+'&release='+j,m=await HTTPS[A(0x117)]({'url':l,'cert':c});!m&&(Log[A(0xf3)]('Meteor\x20version\x20'+j+'\x20is\x20not\x20available.'),process['exit'](0x0));const n=a74f[A(0x100)](homeDir,'.meteor'),o=async()=>{const B=A,q=B(0x13b)+n+B(0x127);if(process['env'][B(0x131)]&&process[B(0x11f)][B(0x131)][B(0x103)](B(0x136))){const r=await this[B(0xe6)]['fileContainsString'](homeDir+B(0x11c),q);if(!r)Log['info'](B(0x130)+homeDir+B(0x11c)),this[B(0xe6)][B(0x125)]({'filePath':homeDir+B(0x11c),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x139)]&&Log[B(0x135)](B(0x106)+homeDir+'/.zshrc');}else{const s=await this[B(0xe6)][B(0xf5)](homeDir+B(0x115),q);if(!s)Log[B(0x135)](B(0x107)+homeDir+B(0x115)),this[B(0xe6)][B(0x125)]({'filePath':homeDir+'/.bashrc','content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x139)]&&Log[B(0x135)](B(0x106)+homeDir+B(0x115));const t=await this['fsi'][B(0xf5)](homeDir+B(0x113),q);if(!t)Log[B(0x135)](B(0x107)+homeDir+'/.bash_profile'),this[B(0xe6)]['injectAtEndOfFile']({'filePath':homeDir+B(0x113),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x139)]&&Log['info'](B(0x106)+homeDir+B(0x113));if(isRoot()){const u=await this[B(0xe6)][B(0xf5)](B(0xff),q);if(!u)Log[B(0x135)](B(0xf1)),this['fsi'][B(0x125)]({'filePath':B(0xff),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0x139)]&&Log['info'](B(0xfa));}}};b[A(0x139)]&&(await o(),process[A(0xec)](0x0));if(g)Log['error'](A(0xf9)),process[A(0xec)](0x0);else{if(a74g['existsSync'](n)){let q=![];b['f']||b['force']?q=!![]:q=await Actions[A(0x109)](A(0x138),![]),q?(await SpawnAsync[A(0x112)]('rm',[A(0x128),a74f[A(0x100)](n,A(0x123))],{'message':A(0x12a)}),await SpawnAsync[A(0x112)]('rm',[A(0x128),a74f[A(0x100)](n,A(0x116))],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)'}),await SpawnAsync['withSpinner']('rm',[A(0x128),a74f[A(0x100)](n,'meteor')],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(main)'})):(Log['info'](A(0xfd)),process[A(0xec)](0x0));}try{await HTTPS[A(0xe4)]({'url':l,'destPath':a74f[A(0x100)](homeDir,A(0x111)),'cert':c});try{const r=a74f[A(0x100)](homeDir,A(0x111));await this[A(0xe6)][A(0xfe)](r,homeDir);}catch(s){Log[A(0xf3)](A(0x108));}!b['keepInstallFile']&&await SpawnAsync[A(0x112)]('rm',[A(0x128),a74f[A(0x100)](homeDir,A(0x111))],{'message':A(0xef)}),await o();}catch(t){console['error'](t),process[A(0xec)](0x0);}Log['success'](A(0x11e)+j+A(0xf8));}}catch(u){console[A(0xf3)](u),process[A(0xec)](0x0);}});
@@ -1 +1 @@
1
- const a75m=a75d;(function(a,b){const j=a75d,c=a();while(!![]){try{const d=-parseInt(j(0x1dc))/0x1+-parseInt(j(0x1e6))/0x2*(-parseInt(j(0x1dd))/0x3)+parseInt(j(0x1d4))/0x4*(parseInt(j(0x1e0))/0x5)+-parseInt(j(0x1d3))/0x6+-parseInt(j(0x1da))/0x7+-parseInt(j(0x1ca))/0x8+-parseInt(j(0x1cd))/0x9*(-parseInt(j(0x1e7))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x68143));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a75d;if(c){const e=c[k(0x1e8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const l=a75d;return a75a['toString']()['search'](l(0x1e4))['toString']()['constructor'](a75a)[l(0x1d6)](l(0x1e4));});a75a();function a75c(){const o=['isFile','search','maka\x20jsdoc','\x20-r\x20app','app/public','391930QwHayL','join','789083KPEbph','2427kwnWTJ','logNotice','sep','30OILGoL','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','plugins/markdown','app/packages','(((.+)+)+)+$','\x20-c\x20','704topTIC','928050ucsQZl','apply','config','stringify','docs','app/private','writeFileSync','2100672yYcLei','fsi','logError','81YROuEG','jsdoc','closure','pathFromProject','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','app/node_modules','2335830BZcHzk','535504VRffta'];a75c=function(){return o;};return a75c();}import a75e from'path';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x1c5;let f=c[d];return f;},a75d(a,b);}import a75f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command['create']({'name':a75m(0x1ce),'usage':a75m(0x1d7),'mustBeInMakaProject':!![],'shortDesc':a75m(0x1d1),'examples':['maka\x20jsdoc\x20--init',a75m(0x1d7)],'validOpts':[]},function(){const n=a75m,a=a75e[n(0x1db)](this['fsi']['pathFromProject']({}),n(0x1c7)+a75e[n(0x1df)]),b=a75e[n(0x1db)](this[n(0x1cb)]['pathFromProject']({}),n(0x1c5),'jsdoc-config.json'),c=this[n(0x1cb)][n(0x1d0)]({}),d='jsdoc';if(!this[n(0x1d5)](b)){const g={'plugins':[n(0x1e2)],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0x1ce),n(0x1cf)]},'source':{'includePattern':'.+\x5c.(j|t)s(doc|x)?$','excludePattern':n(0x1e1),'exclude':[n(0x1e3),n(0x1d2),n(0x1d9),n(0x1c8)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':'utf-8'}};a75f[n(0x1c9)](b,JSON[n(0x1c6)](g,null,0x4));}const f=this['logWithSpinner']('Running\x20'+d);try{const h=d+n(0x1e5)+b+n(0x1d8)+a75e[n(0x1df)]+'\x20-d\x20'+a;execSync(h,{'cwd':c,'stdio':'inherit'}),this[n(0x1de)]('\x0a[+]\x20Documentation\x20written\x20to\x20'+a);}catch(i){this[n(0x1cc)](i),this[n(0x1cc)]('[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22');}finally{f['stop']();}});
1
+ const a75m=a75d;(function(a,b){const j=a75d,c=a();while(!![]){try{const d=parseInt(j(0x205))/0x1*(parseInt(j(0x1f6))/0x2)+parseInt(j(0x1ee))/0x3+-parseInt(j(0x1f3))/0x4+-parseInt(j(0x214))/0x5+-parseInt(j(0x202))/0x6*(parseInt(j(0x1fe))/0x7)+-parseInt(j(0x201))/0x8*(parseInt(j(0x206))/0x9)+-parseInt(j(0x1f0))/0xa*(-parseInt(j(0x20a))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x3c7f1));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a75d;if(c){const e=c[k(0x1fb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const l=a75d;return a75a[l(0x1f1)]()[l(0x1ff)](l(0x1fa))['toString']()[l(0x207)](a75a)[l(0x1ff)](l(0x1fa));});function a75c(){const o=['isFile','\x20-d\x20','(((.+)+)+)+$','apply','maka\x20jsdoc\x20--init','.+\x5c.(j|t)s(doc|x)?$','58051OsJumW','search','\x0a[+]\x20Documentation\x20written\x20to\x20','24HUVfwF','216YefBwp','app/packages','create','169kfWlEx','973719xzjiKk','constructor','logWithSpinner','closure','4169cHfoIA','jsdoc-config.json','inherit','logNotice','app/node_modules','maka\x20jsdoc','jsdoc','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','fsi','1564830xtgOGU','join','1244037ZuMcpw','Running\x20','24470PMBvMC','toString','sep','1269640UzlXrP','logError','pathFromProject','1884wjgRuj','config'];a75c=function(){return o;};return a75c();}a75a();import a75e from'path';import a75f from'fs';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x1ed;let f=c[d];return f;},a75d(a,b);}import{execSync}from'child_process';import{Command}from'../command.js';Command[a75m(0x204)]({'name':a75m(0x210),'usage':a75m(0x20f),'mustBeInMakaProject':!![],'shortDesc':'Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','examples':[a75m(0x1fc),a75m(0x20f)],'validOpts':[]},function(){const n=a75m,a=a75e[n(0x1ed)](this[n(0x213)][n(0x1f5)]({}),'docs'+a75e['sep']),b=a75e[n(0x1ed)](this[n(0x213)][n(0x1f5)]({}),n(0x1f7),n(0x20b)),c=this[n(0x213)][n(0x1f5)]({}),d=n(0x210);if(!this[n(0x1f8)](b)){const g={'plugins':['plugins/markdown'],'tags':{'allowUnknownTags':!![],'dictionaries':['jsdoc',n(0x209)]},'source':{'includePattern':n(0x1fd),'excludePattern':n(0x212),'exclude':[n(0x203),n(0x20e),'app/public','app/private']},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':'utf-8'}};a75f['writeFileSync'](b,JSON['stringify'](g,null,0x4));}const f=this[n(0x208)](n(0x1ef)+d);try{const h=d+'\x20-c\x20'+b+'\x20-r\x20app'+a75e[n(0x1f2)]+n(0x1f9)+a;execSync(h,{'cwd':c,'stdio':n(0x20c)}),this[n(0x20d)](n(0x200)+a);}catch(i){this[n(0x1f4)](i),this['logError'](n(0x211));}finally{f['stop']();}});