@maka/maka-cli 4.7.5 → 4.7.6

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 (146) hide show
  1. package/bundle/obf/package.json +2 -1
  2. package/bundle/obf/src/command.js +1 -1
  3. package/bundle/obf/src/commands/_index.js +1 -1
  4. package/bundle/obf/src/commands/ai.js +1 -1
  5. package/bundle/obf/src/commands/aws/_index.js +1 -1
  6. package/bundle/obf/src/commands/aws/aws.command.js +1 -1
  7. package/bundle/obf/src/commands/aws/chz.sub.cmd.js +1 -1
  8. package/bundle/obf/src/commands/aws/ci.sub.cmd.js +1 -1
  9. package/bundle/obf/src/commands/aws/ckp.sub.cmd.js +1 -1
  10. package/bundle/obf/src/commands/aws/csg.sub.cmd.js +1 -1
  11. package/bundle/obf/src/commands/aws/di.sub.cmd.js +1 -1
  12. package/bundle/obf/src/commands/aws/dkp.sub.cmd.js +1 -1
  13. package/bundle/obf/src/commands/aws/dsg.sub.cmd.js +1 -1
  14. package/bundle/obf/src/commands/aws/rbi.sub.cmd.js +1 -1
  15. package/bundle/obf/src/commands/aws/rdn.sub.cmd.js +1 -1
  16. package/bundle/obf/src/commands/aws/rkp.sub.cmd.js +1 -1
  17. package/bundle/obf/src/commands/aws/sth.sub.cmd.js +1 -1
  18. package/bundle/obf/src/commands/aws/ti.sub.cmd.js +1 -1
  19. package/bundle/obf/src/commands/build/_index.js +1 -1
  20. package/bundle/obf/src/commands/build/build.js +1 -1
  21. package/bundle/obf/src/commands/build/docker.sub.cmd.js +1 -1
  22. package/bundle/obf/src/commands/create.js +1 -1
  23. package/bundle/obf/src/commands/debug.js +1 -1
  24. package/bundle/obf/src/commands/deploy/_index.js +1 -1
  25. package/bundle/obf/src/commands/deploy/deploy.command.js +1 -1
  26. package/bundle/obf/src/commands/deploy/galaxy.sub.cmd.js +1 -1
  27. package/bundle/obf/src/commands/deploy/ubuntu.sub.cmd.js +1 -1
  28. package/bundle/obf/src/commands/game/_index.js +1 -1
  29. package/bundle/obf/src/commands/game/battleship.sub.cmd.js +1 -1
  30. package/bundle/obf/src/commands/game/play.command.js +1 -1
  31. package/bundle/obf/src/commands/game/pong.sub.cmd.js +1 -1
  32. package/bundle/obf/src/commands/game/sideQuest/commands/command.js +1 -1
  33. package/bundle/obf/src/commands/game/sideQuest/commands/drop.js +1 -1
  34. package/bundle/obf/src/commands/game/sideQuest/commands/equip.js +1 -1
  35. package/bundle/obf/src/commands/game/sideQuest/commands/go.js +1 -1
  36. package/bundle/obf/src/commands/game/sideQuest/commands/lock.js +1 -1
  37. package/bundle/obf/src/commands/game/sideQuest/commands/look.js +1 -1
  38. package/bundle/obf/src/commands/game/sideQuest/commands/say.js +1 -1
  39. package/bundle/obf/src/commands/game/sideQuest/commands/search.js +1 -1
  40. package/bundle/obf/src/commands/game/sideQuest/commands/solve.js +1 -1
  41. package/bundle/obf/src/commands/game/sideQuest/commands/take.js +1 -1
  42. package/bundle/obf/src/commands/game/sideQuest/commands/unequip.js +1 -1
  43. package/bundle/obf/src/commands/game/sideQuest/commands/unlock.js +1 -1
  44. package/bundle/obf/src/commands/game/sideQuest/commands/use.js +1 -1
  45. package/bundle/obf/src/commands/game/sideQuest/factories/commandF.js +1 -1
  46. package/bundle/obf/src/commands/game/sideQuest/factories/roomsF.js +1 -1
  47. package/bundle/obf/src/commands/game/sideQuest/game.js +1 -1
  48. package/bundle/obf/src/commands/game/sideQuest/models/_index.js +1 -1
  49. package/bundle/obf/src/commands/game/sideQuest/models/door.js +1 -1
  50. package/bundle/obf/src/commands/game/sideQuest/models/inventory.js +1 -1
  51. package/bundle/obf/src/commands/game/sideQuest/models/item.js +1 -1
  52. package/bundle/obf/src/commands/game/sideQuest/models/npc.js +1 -1
  53. package/bundle/obf/src/commands/game/sideQuest/models/player.js +1 -1
  54. package/bundle/obf/src/commands/game/sideQuest/models/puzzle.js +1 -1
  55. package/bundle/obf/src/commands/game/sideQuest/models/room.js +1 -1
  56. package/bundle/obf/src/commands/game/sideQuest/models/scene.js +1 -1
  57. package/bundle/obf/src/commands/game/sideQuest/scenes/items.js +1 -1
  58. package/bundle/obf/src/commands/game/sideQuest/scenes/rooms.js +1 -1
  59. package/bundle/obf/src/commands/game/sideQuest/types/abstracts.js +1 -1
  60. package/bundle/obf/src/commands/game/sideQuest/types/enums.js +1 -1
  61. package/bundle/obf/src/commands/game/sideQuest/types/interfaces.js +1 -1
  62. package/bundle/obf/src/commands/game/sideQuest/types/types.js +1 -1
  63. package/bundle/obf/src/commands/game/sideQuest/ui.js +1 -1
  64. package/bundle/obf/src/commands/game/sideQuest/utilities/logger.js +1 -1
  65. package/bundle/obf/src/commands/game/sideQuest.sub.cmd.js +1 -1
  66. package/bundle/obf/src/commands/game/snake.sub.cmd.js +1 -1
  67. package/bundle/obf/src/commands/game/tetris.sub.cmd.js +1 -1
  68. package/bundle/obf/src/commands/generate.js +1 -1
  69. package/bundle/obf/src/commands/get/_index.js +1 -1
  70. package/bundle/obf/src/commands/get/get.command.js +1 -1
  71. package/bundle/obf/src/commands/get/global.sub.cmd.js +1 -1
  72. package/bundle/obf/src/commands/get/local.sub.cmd.js +1 -1
  73. package/bundle/obf/src/commands/get/whoami.sub.cmd.js +1 -1
  74. package/bundle/obf/src/commands/help.js +1 -1
  75. package/bundle/obf/src/commands/install.js +1 -1
  76. package/bundle/obf/src/commands/jsdoc.js +1 -1
  77. package/bundle/obf/src/commands/lint.js +1 -1
  78. package/bundle/obf/src/commands/login.js +1 -1
  79. package/bundle/obf/src/commands/logout.js +1 -1
  80. package/bundle/obf/src/commands/logs.js +1 -1
  81. package/bundle/obf/src/commands/maka.cmd.js +1 -1
  82. package/bundle/obf/src/commands/murder.js +1 -1
  83. package/bundle/obf/src/commands/proxy.js +1 -1
  84. package/bundle/obf/src/commands/reconfig.js +1 -1
  85. package/bundle/obf/src/commands/run/_index.js +1 -1
  86. package/bundle/obf/src/commands/run/docker.sub.cmd.js +1 -1
  87. package/bundle/obf/src/commands/run/run.command.js +1 -1
  88. package/bundle/obf/src/commands/set/_index.js +1 -1
  89. package/bundle/obf/src/commands/set/global.sub.cmd.js +1 -1
  90. package/bundle/obf/src/commands/set/local.sub.cmd.js +1 -1
  91. package/bundle/obf/src/commands/set/set.command.js +1 -1
  92. package/bundle/obf/src/commands/ssh.js +1 -1
  93. package/bundle/obf/src/commands/ssl.js +1 -1
  94. package/bundle/obf/src/commands/test.js +1 -1
  95. package/bundle/obf/src/commands/version.js +1 -1
  96. package/bundle/obf/src/error.js +1 -1
  97. package/bundle/obf/src/exec.js +1 -1
  98. package/bundle/obf/src/generator.js +1 -1
  99. package/bundle/obf/src/generators/_index.js +1 -1
  100. package/bundle/obf/src/generators/api.js +1 -1
  101. package/bundle/obf/src/generators/collection.js +1 -1
  102. package/bundle/obf/src/generators/component.js +1 -1
  103. package/bundle/obf/src/generators/config.js +1 -1
  104. package/bundle/obf/src/generators/dbc.js +1 -1
  105. package/bundle/obf/src/generators/dockerfile.js +1 -1
  106. package/bundle/obf/src/generators/hook.js +1 -1
  107. package/bundle/obf/src/generators/kits/_index.js +1 -1
  108. package/bundle/obf/src/generators/kits/esri/_index.js +1 -1
  109. package/bundle/obf/src/generators/kits/esri/esri.generator.js +1 -1
  110. package/bundle/obf/src/generators/kits/esri/map.esri.gen.js +1 -1
  111. package/bundle/obf/src/generators/kits/kit.js +1 -1
  112. package/bundle/obf/src/generators/kits/mui/_index.js +1 -1
  113. package/bundle/obf/src/generators/kits/mui/frame.mui.gen.js +1 -1
  114. package/bundle/obf/src/generators/kits/mui/mui.generator.js +1 -1
  115. package/bundle/obf/src/generators/layout.js +1 -1
  116. package/bundle/obf/src/generators/maka.gen.js +1 -1
  117. package/bundle/obf/src/generators/methods.js +1 -1
  118. package/bundle/obf/src/generators/package.js +1 -1
  119. package/bundle/obf/src/generators/page.js +1 -1
  120. package/bundle/obf/src/generators/publish.js +1 -1
  121. package/bundle/obf/src/generators/route.js +1 -1
  122. package/bundle/obf/src/generators/service.js +1 -1
  123. package/bundle/obf/src/generators/services/_index.js +1 -1
  124. package/bundle/obf/src/generators/services/openssl.js +1 -1
  125. package/bundle/obf/src/generators/services/translation.js +1 -1
  126. package/bundle/obf/src/maka.js +1 -1
  127. package/bundle/obf/src/tool.js +1 -1
  128. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  129. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  130. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  131. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  132. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  133. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  134. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  135. package/bundle/obf/src/tools/https/https.class.js +1 -1
  136. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  137. package/bundle/obf/src/tools/log/log.class.js +1 -1
  138. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  139. package/bundle/obf/src/tools/options/options.class.js +1 -1
  140. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  141. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  142. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  143. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  144. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  145. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  146. package/package.json +2 -1
@@ -1 +1 @@
1
- const a57h=a57d;(function(a,b){const f=a57d,c=a();while(!![]){try{const d=-parseInt(f(0xea))/0x1+parseInt(f(0x92))/0x2+-parseInt(f(0xa6))/0x3*(-parseInt(f(0xc7))/0x4)+parseInt(f(0x9a))/0x5+parseInt(f(0xed))/0x6+-parseInt(f(0x8d))/0x7+-parseInt(f(0xa0))/0x8*(parseInt(f(0xd4))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x19248));function a57d(a,b){const c=a57c();return a57d=function(d,e){d=d-0x88;let f=c[d];return f;},a57d(a,b);}function a57c(){const i=['Downtown\x20Seattle','search','Golden\x20Chalice','Secret\x20Passage','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','Central\x20Chamber','Holy\x20Grail','1010345GUjCyf','Library','inside','A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','Emblem\x20Shield','185848ZaJKIv','north','Rigger\x27s\x20Workshop','drone','creditstick','Amulet\x20of\x20Awakening','Ancient\x20Gem','Rusted\x20Sword','777220ZNGYFo','down','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','holyGrail','NORTH','16Ykugec','That\x20passcode\x20is\x20incorrect','Treasure\x20Room','Ares\x20Predator','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','3usPcfC','A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','rifle','An\x20old\x20and\x20rusted\x20sword.','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','Mage\x27s\x20Lair','Barrens\x20Entrance','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','insert\x20gem','A\x20clear\x20glass\x20vial.','A\x20thin\x20log\x20book','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','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','gem','west','constructor','show\x20loyalty','Entrance\x20Hall','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','Jackpoint\x20Login','outside','Sniper\x20Rifle','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','Golden\x20Key','Corporate\x20Creditstick','Armory','A\x20key\x20stained\x20with\x20old\x20blood.','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','cup','A\x20creditstick\x20loaded\x20with\x20nuyen.','29360axqLSX','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','Blood-stained\x20Key','secret123','disenchant','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','Chad\x20the\x20stupid\x20guard','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','key','364509EWsnCb','book','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','Corp\x20Enclave','shield','Riddle\x20Book','east','Matrix\x20Data\x20Haven','SOUTH','amulet','Gang\x20Insignia','Torture\x20Chamber','The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.','A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','OUTSIDE','toString','Barrens\x20Hideout','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','A\x20chalice\x20made\x20of\x20pure\x20gold.','Alchemy\x20Lab','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','106821mLUrrs','A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.','1076604WGinfk','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','Guard\x27s\x20Log\x20Book','MCT\x20Fly-Spy','The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','Empty\x20vial','south','The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','Study','Central\x20Chamber\x20Key','(((.+)+)+)+$','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','Watch\x20Tower','Nothing\x20happens.','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','open\x20sesame','Courtyard','A\x20small\x20surveillance\x20drone.','EAST'];a57c=function(){return i;};return a57c();}const a57b=(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;};}()),a57a=a57b(this,function(){const g=a57d;return a57a[g(0xe4)]()[g(0x101)]('(((.+)+)+)+$')['toString']()[g(0xb7)](a57a)[g(0x101)](g(0xf7));});a57a();export const rooms=[{'name':a57h(0x8e),'description':a57h(0xa7),'isStartRoom':!![],'items':[{'type':'key','name':'Golden\x20Key','description':a57h(0xcf)},{'type':a57h(0xd5),'name':a57h(0xef),'description':a57h(0xb2),'content':a57h(0xce)}],'exits':[{'direction':a57h(0xff),'targetRoom':a57h(0x103)}]},{'name':a57h(0x103),'description':a57h(0xeb),'exits':[{'direction':a57h(0x9f),'targetRoom':'Treasure\x20Room','keyRequired':a57h(0xc0)},{'direction':a57h(0xdd),'targetRoom':a57h(0xfd)}]},{'name':a57h(0xa2),'description':a57h(0xa4),'items':[{'type':a57h(0x9e),'name':a57h(0x8c),'description':'The\x20legendary\x20Holy\x20Grail.'}]},{'name':a57h(0xfd),'description':a57h(0xbb),'roomType':a57h(0xe3),'exits':[{'direction':'UP','targetRoom':a57h(0xf9)}]},{'name':'Watch\x20Tower','description':a57h(0xa8),'roomType':'OUTSIDE','puzzle':{'requiredPhrase':a57h(0xca),'riddle':a57h(0x8a),'rewardItem':{'type':a57h(0xa9),'name':a57h(0xbe),'description':'A\x20long-range\x20weapon.'},'successMessage':a57h(0xb4),'failureMessage':a57h(0xa1)}}];export const dungeonConfig=[{'name':a57h(0xb9),'description':a57h(0xd1),'isStartRoom':!![],'roomType':'inside','puzzle':{'requiredPhrase':a57h(0xfc),'riddle':a57h(0x9c),'rewardItem':{'type':'key','name':'Central\x20Chamber\x20Key','description':a57h(0xfb)},'successMessage':a57h(0xba),'failureMessage':a57h(0xfa)},'exits':[{'direction':a57h(0x93),'targetRoom':a57h(0xf5)},{'direction':a57h(0xdb),'targetRoom':a57h(0x8b),'keyRequired':a57h(0xf6)}]},{'name':a57h(0xf5),'description':'A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','roomType':a57h(0x8f),'items':[{'type':'book','name':a57h(0xda),'description':a57h(0x89),'content':a57h(0xe6)},{'type':a57h(0xd3),'name':a57h(0xf6),'description':a57h(0xfb)}],'exits':[{'direction':a57h(0xf3),'targetRoom':'Entrance\x20Hall'},{'direction':a57h(0xdb),'targetRoom':a57h(0xe8)}]},{'name':a57h(0xe8),'description':a57h(0xe2),'roomType':'inside','items':[{'type':'basic','name':a57h(0xf2),'description':a57h(0xb1)}],'exits':[{'direction':a57h(0xb6),'targetRoom':a57h(0xf5)},{'direction':'north','targetRoom':'Armory'}]},{'name':'Armory','description':a57h(0x9d),'roomType':a57h(0x8f),'items':[{'type':a57h(0xd9),'name':a57h(0x91),'description':a57h(0xc4)},{'type':'sword','name':a57h(0x99),'description':a57h(0xaa)}],'exits':[{'direction':a57h(0xf3),'targetRoom':a57h(0xe8)},{'direction':a57h(0xdb),'targetRoom':a57h(0x8b)}]},{'name':'Central\x20Chamber','description':a57h(0xae),'roomType':a57h(0x8f),'exits':[{'direction':a57h(0xb6),'targetRoom':a57h(0xc2)},{'direction':a57h(0xf3),'targetRoom':'Entrance\x20Hall'},{'direction':a57h(0x93),'targetRoom':'Torture\x20Chamber'},{'direction':a57h(0xdb),'targetRoom':a57h(0xa2)}]},{'name':a57h(0xe0),'description':a57h(0xe9),'roomType':a57h(0x8f),'items':[{'type':'key','name':a57h(0xc9),'description':a57h(0xc3)}],'puzzle':{'requiredPhrase':'release','riddle':a57h(0xf8),'rewardItem':{'type':a57h(0xb5),'name':a57h(0x98),'description':a57h(0xab)},'successMessage':a57h(0xf4),'failureMessage':'The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.'},'exits':[{'direction':a57h(0xf3),'targetRoom':a57h(0x8b)}]},{'name':a57h(0xa2),'description':a57h(0xc8),'roomType':'inside','puzzle':{'requiredPhrase':a57h(0xb0),'riddle':a57h(0xbf),'rewardItem':{'type':a57h(0xc5),'name':a57h(0x102),'description':a57h(0xe7)},'successMessage':a57h(0xee),'failureMessage':'The\x20chest\x20remains\x20firmly\x20shut.'},'exits':[{'direction':'west','targetRoom':a57h(0x8b)}]}];export const shadowrunConfig=[{'name':'Jackpoint\x20Login','description':a57h(0x90),'isStartRoom':!![],'roomType':'inside','exits':[{'direction':'north','targetRoom':'Downtown\x20Seattle'},{'direction':'up','targetRoom':'Matrix\x20Data\x20Haven'}]},{'name':a57h(0xdc),'description':a57h(0xaf),'roomType':'inside','puzzle':{'requiredPhrase':'decrypt','riddle':a57h(0xcc),'rewardItem':{'type':a57h(0xd3),'name':'Encrypted\x20Data\x20Key','description':'A\x20key\x20made\x20of\x20pure\x20digital\x20energy.'},'successMessage':a57h(0xf1),'failureMessage':'The\x20data\x20remains\x20encrypted.'},'exits':[{'direction':a57h(0x9b),'targetRoom':a57h(0xbc)}]},{'name':a57h(0x100),'description':a57h(0xd2),'roomType':a57h(0xbd),'exits':[{'direction':a57h(0xf3),'targetRoom':a57h(0xbc)},{'direction':a57h(0xdb),'targetRoom':a57h(0xad)},{'direction':a57h(0xb6),'targetRoom':a57h(0xd8)}]},{'name':a57h(0xad),'description':'The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','roomType':'outside','puzzle':{'requiredPhrase':a57h(0xb8),'riddle':a57h(0xd0),'rewardItem':{'type':'key','name':a57h(0xdf),'description':a57h(0xec)},'successMessage':a57h(0xcd),'failureMessage':'The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.'},'exits':[{'direction':a57h(0xb6),'targetRoom':a57h(0x100)},{'direction':a57h(0x93),'targetRoom':a57h(0xe5)}]},{'name':'Corp\x20Enclave','description':a57h(0xd7),'roomType':a57h(0x8f),'items':[{'type':a57h(0x96),'name':a57h(0xc1),'description':a57h(0xc6)},{'type':'document','name':'CorpSec\x20Plans','description':a57h(0xb3)}],'exits':[{'direction':'east','targetRoom':a57h(0x100)}]},{'name':a57h(0xe5),'description':'A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','roomType':a57h(0xbd),'items':[{'type':'weapon','name':a57h(0xa3),'description':'A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.'}],'exits':[{'direction':a57h(0xf3),'targetRoom':a57h(0xad)},{'direction':a57h(0x93),'targetRoom':a57h(0xac)},{'direction':a57h(0xdb),'targetRoom':a57h(0x94)}]},{'name':a57h(0xac),'description':a57h(0xa5),'roomType':a57h(0x8f),'puzzle':{'requiredPhrase':a57h(0xcb),'riddle':a57h(0x88),'rewardItem':{'type':a57h(0xde),'name':a57h(0x97),'description':'A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.'},'successMessage':a57h(0xd6),'failureMessage':a57h(0xe1)},'exits':[{'direction':a57h(0xf3),'targetRoom':'Barrens\x20Hideout'}]},{'name':a57h(0x94),'description':'Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','roomType':a57h(0x8f),'items':[{'type':a57h(0x95),'name':a57h(0xf0),'description':a57h(0xfe)}],'exits':[{'direction':a57h(0xb6),'targetRoom':a57h(0xe5)}]}];
1
+ const a57i=a57d;(function(a,b){const f=a57d,c=a();while(!![]){try{const d=-parseInt(f(0xea))/0x1+-parseInt(f(0x9d))/0x2*(parseInt(f(0xb8))/0x3)+parseInt(f(0xee))/0x4+-parseInt(f(0xbb))/0x5+parseInt(f(0x83))/0x6+-parseInt(f(0xab))/0x7+parseInt(f(0x86))/0x8*(parseInt(f(0x84))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x6fc32));const a57b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a57d;if(c){const e=c[g(0x93)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a57a=a57b(this,function(){const h=a57d;return a57a[h(0xdf)]()[h(0xb6)]('(((.+)+)+)+$')[h(0xdf)]()[h(0x8e)](a57a)[h(0xb6)]('(((.+)+)+)+$');});a57a();function a57d(a,b){const c=a57c();return a57d=function(d,e){d=d-0x7a;let f=c[d];return f;},a57d(a,b);}function a57c(){const j=['Blood-stained\x20Key','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','A\x20creditstick\x20loaded\x20with\x20nuyen.','search','A\x20clear\x20glass\x20vial.','16791qcmXBO','down','Mage\x27s\x20Lair','3878025rExdCm','OUTSIDE','Library','basic','decrypt','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','The\x20legendary\x20Holy\x20Grail.','Downtown\x20Seattle','Riddle\x20Book','Amulet\x20of\x20Awakening','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','Courtyard','Holy\x20Grail','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','release','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','Sniper\x20Rifle','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','Guard\x27s\x20Log\x20Book','sword','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.','Encrypted\x20Data\x20Key','east','A\x20long-range\x20weapon.','Emblem\x20Shield','Nothing\x20happens.','book','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','NORTH','The\x20data\x20remains\x20encrypted.','toString','rifle','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','The\x20chest\x20remains\x20firmly\x20shut.','A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','shield','That\x20passcode\x20is\x20incorrect','open\x20sesame','A\x20thin\x20log\x20book','A\x20chalice\x20made\x20of\x20pure\x20gold.','701391LVGgIH','insert\x20gem','west','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','3071400ZJyFdW','Golden\x20Key','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','Rusted\x20Sword','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','Armory','Matrix\x20Data\x20Haven','Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','Jackpoint\x20Login','An\x20old\x20and\x20rusted\x20sword.','Study','A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','Empty\x20vial','1754724Wghtnh','225DueChX','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','564712byOWwS','gem','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','Gang\x20Insignia','inside','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','Barrens\x20Hideout','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','constructor','Central\x20Chamber','north','Torture\x20Chamber','Corporate\x20Creditstick','apply','Ares\x20Predator','Watch\x20Tower','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','holyGrail','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','creditstick','Treasure\x20Room','south','302epsoYE','drone','Barrens\x20Entrance','Entrance\x20Hall','EAST','Corp\x20Enclave','Central\x20Chamber\x20Key','Alchemy\x20Lab','cup','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','Chad\x20the\x20stupid\x20guard','The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','key','315756wMWaqT','outside','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','Rigger\x27s\x20Workshop','secret123','A\x20small\x20surveillance\x20drone.','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.'];a57c=function(){return j;};return a57c();}export const rooms=[{'name':a57i(0xbd),'description':a57i(0xdc),'isStartRoom':!![],'items':[{'type':a57i(0xaa),'name':a57i(0xef),'description':a57i(0xdb)},{'type':a57i(0xd8),'name':a57i(0xcf),'description':a57i(0xe8),'content':a57i(0xa8)}],'exits':[{'direction':a57i(0xa1),'targetRoom':'Secret\x20Passage'}]},{'name':'Secret\x20Passage','description':'A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','exits':[{'direction':a57i(0xdd),'targetRoom':'Treasure\x20Room','keyRequired':a57i(0xef)},{'direction':'SOUTH','targetRoom':a57i(0xc6)}]},{'name':a57i(0x9b),'description':'A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','items':[{'type':a57i(0x97),'name':a57i(0xc7),'description':a57i(0xc1)}]},{'name':a57i(0xc6),'description':a57i(0x85),'roomType':a57i(0xbc),'exits':[{'direction':'UP','targetRoom':a57i(0x95)}]},{'name':a57i(0x95),'description':'A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','roomType':a57i(0xbc),'puzzle':{'requiredPhrase':a57i(0xb0),'riddle':a57i(0xc0),'rewardItem':{'type':a57i(0xe0),'name':a57i(0xcb),'description':a57i(0xd5)},'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':a57i(0xe6)}}];export const dungeonConfig=[{'name':'Entrance\x20Hall','description':a57i(0xa6),'isStartRoom':!![],'roomType':a57i(0x8a),'puzzle':{'requiredPhrase':a57i(0xe7),'riddle':a57i(0xcd),'rewardItem':{'type':a57i(0xaa),'name':a57i(0xa3),'description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'},'successMessage':a57i(0xcc),'failureMessage':a57i(0xd7)},'exits':[{'direction':a57i(0x90),'targetRoom':a57i(0x80)},{'direction':a57i(0xd4),'targetRoom':'Central\x20Chamber','keyRequired':a57i(0xa3)}]},{'name':a57i(0x80),'description':a57i(0x99),'roomType':a57i(0x8a),'items':[{'type':a57i(0xd8),'name':a57i(0xc3),'description':'A\x20book\x20containing\x20a\x20mysterious\x20riddle.','content':a57i(0xda)},{'type':a57i(0xaa),'name':a57i(0xa3),'description':a57i(0x88)}],'exits':[{'direction':a57i(0x9c),'targetRoom':a57i(0xa0)},{'direction':a57i(0xd4),'targetRoom':'Alchemy\x20Lab'}]},{'name':a57i(0xa4),'description':'A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','roomType':'inside','items':[{'type':a57i(0xbe),'name':a57i(0x82),'description':a57i(0xb7)}],'exits':[{'direction':a57i(0xec),'targetRoom':a57i(0x80)},{'direction':'north','targetRoom':'Armory'}]},{'name':a57i(0x7b),'description':a57i(0x7d),'roomType':a57i(0x8a),'items':[{'type':a57i(0xe5),'name':a57i(0xd6),'description':a57i(0xb2)},{'type':a57i(0xd0),'name':a57i(0xf1),'description':a57i(0x7f)}],'exits':[{'direction':a57i(0x9c),'targetRoom':a57i(0xa4)},{'direction':a57i(0xd4),'targetRoom':a57i(0x8f)}]},{'name':a57i(0x8f),'description':a57i(0xca),'roomType':a57i(0x8a),'exits':[{'direction':'west','targetRoom':a57i(0x7b)},{'direction':a57i(0x9c),'targetRoom':a57i(0xa0)},{'direction':'north','targetRoom':a57i(0x91)},{'direction':a57i(0xd4),'targetRoom':a57i(0x9b)}]},{'name':'Torture\x20Chamber','description':'Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','roomType':a57i(0x8a),'items':[{'type':a57i(0xaa),'name':a57i(0xb3),'description':'A\x20key\x20stained\x20with\x20old\x20blood.'}],'puzzle':{'requiredPhrase':a57i(0xc9),'riddle':'Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','rewardItem':{'type':a57i(0x87),'name':'Ancient\x20Gem','description':a57i(0xad)},'successMessage':'The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','failureMessage':a57i(0x8d)},'exits':[{'direction':a57i(0x9c),'targetRoom':a57i(0x8f)}]},{'name':'Treasure\x20Room','description':'Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','roomType':a57i(0x8a),'puzzle':{'requiredPhrase':a57i(0xeb),'riddle':a57i(0xc5),'rewardItem':{'type':a57i(0xa5),'name':'Golden\x20Chalice','description':a57i(0xe9)},'successMessage':a57i(0xce),'failureMessage':a57i(0xe2)},'exits':[{'direction':a57i(0xec),'targetRoom':a57i(0x8f)}]}];export const shadowrunConfig=[{'name':'Jackpoint\x20Login','description':a57i(0x81),'isStartRoom':!![],'roomType':a57i(0x8a),'exits':[{'direction':a57i(0x90),'targetRoom':a57i(0xc2)},{'direction':'up','targetRoom':a57i(0x7c)}]},{'name':a57i(0x7c),'description':a57i(0xe1),'roomType':a57i(0x8a),'puzzle':{'requiredPhrase':a57i(0xbf),'riddle':a57i(0xed),'rewardItem':{'type':'key','name':a57i(0xd3),'description':a57i(0xd1)},'successMessage':a57i(0xa9),'failureMessage':a57i(0xde)},'exits':[{'direction':a57i(0xb9),'targetRoom':a57i(0x7e)}]},{'name':a57i(0xc2),'description':a57i(0x7a),'roomType':a57i(0xac),'exits':[{'direction':a57i(0x9c),'targetRoom':a57i(0x7e)},{'direction':a57i(0xd4),'targetRoom':a57i(0x9f)},{'direction':a57i(0xec),'targetRoom':a57i(0xa2)}]},{'name':a57i(0x9f),'description':'The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','roomType':a57i(0xac),'puzzle':{'requiredPhrase':'show\x20loyalty','riddle':a57i(0xd9),'rewardItem':{'type':a57i(0xaa),'name':a57i(0x89),'description':a57i(0xe3)},'successMessage':a57i(0xa7),'failureMessage':a57i(0xf0)},'exits':[{'direction':'west','targetRoom':a57i(0xc2)},{'direction':'north','targetRoom':a57i(0x8c)}]},{'name':a57i(0xa2),'description':a57i(0xc8),'roomType':a57i(0x8a),'items':[{'type':a57i(0x9a),'name':a57i(0x92),'description':a57i(0xb5)},{'type':'document','name':'CorpSec\x20Plans','description':a57i(0xae)}],'exits':[{'direction':a57i(0xd4),'targetRoom':a57i(0xc2)}]},{'name':a57i(0x8c),'description':'A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','roomType':'outside','items':[{'type':'weapon','name':a57i(0x94),'description':a57i(0xe4)}],'exits':[{'direction':'south','targetRoom':a57i(0x9f)},{'direction':a57i(0x90),'targetRoom':a57i(0xba)},{'direction':'east','targetRoom':a57i(0xaf)}]},{'name':a57i(0xba),'description':a57i(0x96),'roomType':a57i(0x8a),'puzzle':{'requiredPhrase':'disenchant','riddle':a57i(0xb4),'rewardItem':{'type':'amulet','name':a57i(0xc4),'description':a57i(0xd2)},'successMessage':a57i(0x8b),'failureMessage':'The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.'},'exits':[{'direction':a57i(0x9c),'targetRoom':a57i(0x8c)}]},{'name':a57i(0xaf),'description':a57i(0x98),'roomType':a57i(0x8a),'items':[{'type':a57i(0x9e),'name':'MCT\x20Fly-Spy','description':a57i(0xb1)}],'exits':[{'direction':'west','targetRoom':a57i(0x8c)}]}];
@@ -1 +1 @@
1
- function a58c(){var i=['logger','uuid','9lxdOKI','1313304kXpnEq','description','texture','isStartRoom','toString','isLockable','rooms','_currentLocation','115260CoCVrd','8052RYYnih','_logger','inventory','search','_playerName','_inventory','3414928CfDMnd','rating','characterLocations','size','unlockItemOrSolution','solved','6jNBfGF','10658mHypzn','850onwTdI','weight','shape','items','46gMQglH','roomType','isLocked','roomA','_maxCarryingWeight','96448NyPmpC','exits','(((.+)+)+)+$','constructor','23699GTBgKj','color','56zHcFMV','6175967XfyFQw','category','name'];a58c=function(){return i;};return a58c();}var a58h=a58d;(function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0x14c))/0x1*(-parseInt(f(0x151))/0x2)+parseInt(f(0x163))/0x3+-parseInt(f(0x15c))/0x4*(-parseInt(f(0x16b))/0x5)+parseInt(f(0x14b))/0x6*(parseInt(f(0x15d))/0x7)+-parseInt(f(0x145))/0x8*(parseInt(f(0x162))/0x9)+parseInt(f(0x14d))/0xa*(parseInt(f(0x156))/0xb)+parseInt(f(0x16c))/0xc*(-parseInt(f(0x15a))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x78518));var a58b=(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;};}()),a58a=a58b(this,function(){var g=a58d;return a58a[g(0x167)]()['search'](g(0x158))['toString']()[g(0x159)](a58a)[g(0x16f)]('(((.+)+)+)+$');});a58a();function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x143;var f=c[d];return f;},a58d(a,b);}import{EventEmitter}from'events';export class AbstractScene{[a58h(0x169)];['player'];[a58h(0x160)];[a58h(0x147)];}export class AbstractRoom extends EventEmitter{[a58h(0x15f)];[a58h(0x164)];[a58h(0x157)];[a58h(0x16e)];['puzzle'];[a58h(0x152)];[a58h(0x166)];}export class AbstractDoor{[a58h(0x154)];['roomB'];[a58h(0x153)];[a58h(0x149)];[a58h(0x15f)];[a58h(0x160)];[a58h(0x168)];}export class AbstractInventory{[a58h(0x150)];[a58h(0x160)];}export class AbstractItem{[a58h(0x161)];[a58h(0x15f)];['description'];[a58h(0x148)];[a58h(0x15e)];[a58h(0x14f)];[a58h(0x15b)];[a58h(0x165)];[a58h(0x146)];[a58h(0x14e)];}export class AbstractPlayer{[a58h(0x143)];[a58h(0x16a)];[a58h(0x144)];['_equipment'];[a58h(0x155)];[a58h(0x16d)];}export class AbstractPuzzle{[a58h(0x160)];[a58h(0x14a)];}
1
+ var a58i=a58d;(function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0x1e7))/0x1*(-parseInt(f(0x1eb))/0x2)+parseInt(f(0x1e9))/0x3+parseInt(f(0x1d6))/0x4*(parseInt(f(0x1ea))/0x5)+parseInt(f(0x1ec))/0x6+-parseInt(f(0x1f5))/0x7*(-parseInt(f(0x1e0))/0x8)+-parseInt(f(0x1da))/0x9+-parseInt(f(0x1d2))/0xa*(parseInt(f(0x1f7))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x4ce05));var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a58d;if(c){var e=c[g(0x1e4)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var h=a58d;return a58a[h(0x1e2)]()[h(0x1e6)](h(0x1ee))['toString']()[h(0x1d3)](a58a)[h(0x1e6)](h(0x1ee));});a58a();import{EventEmitter}from'events';function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x1d0;var f=c[d];return f;},a58d(a,b);}export class AbstractScene{['rooms'];[a58i(0x1df)];['logger'];['characterLocations'];}export class AbstractRoom extends EventEmitter{[a58i(0x1f4)];[a58i(0x1d5)];[a58i(0x1db)];['inventory'];[a58i(0x1ef)];[a58i(0x1d8)];[a58i(0x1e8)];}export class AbstractDoor{[a58i(0x1e3)];[a58i(0x1ed)];['isLocked'];[a58i(0x1dd)];['name'];[a58i(0x1e5)];[a58i(0x1f3)];}export class AbstractInventory{[a58i(0x1d7)];['logger'];}export class AbstractItem{[a58i(0x1d1)];['name'];[a58i(0x1d5)];[a58i(0x1de)];[a58i(0x1f0)];['shape'];[a58i(0x1e1)];[a58i(0x1d4)];[a58i(0x1f2)];['weight'];}export class AbstractPlayer{[a58i(0x1f1)];['_currentLocation'];[a58i(0x1f6)];['_equipment'];[a58i(0x1d9)];[a58i(0x1d0)];}function a58c(){var j=['category','_playerName','rating','isLockable','name','83111TedTPs','_inventory','509003cgsHkr','_logger','uuid','70yuCUxK','constructor','texture','description','2426236JnFjRF','items','roomType','_maxCarryingWeight','2724300qTEtCo','exits','solved','unlockItemOrSolution','size','player','208GCznFA','color','toString','roomA','apply','logger','search','53417rvKTFn','isStartRoom','1315323ysrLuW','5ROqgYp','22yloUYg','1052310LoZlMT','roomB','(((.+)+)+)+$','puzzle'];a58c=function(){return j;};return a58c();}export class AbstractPuzzle{[a58i(0x1e5)];[a58i(0x1dc)];}
@@ -1 +1 @@
1
- (function(a,b){var k=a59d,c=a();while(!![]){try{var d=parseInt(k(0x136))/0x1*(parseInt(k(0x16b))/0x2)+-parseInt(k(0x187))/0x3+parseInt(k(0x16e))/0x4*(parseInt(k(0x147))/0x5)+parseInt(k(0x158))/0x6*(-parseInt(k(0x194))/0x7)+parseInt(k(0x18f))/0x8+parseInt(k(0x16d))/0x9*(-parseInt(k(0x151))/0xa)+parseInt(k(0x188))/0xb*(parseInt(k(0x154))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0xeac09));export var Size;(function(a){var l=a59d;a['Tiny']=l(0x178),a[l(0x18d)]=l(0x159),a['Medium']=l(0x197),a[l(0x14d)]=l(0x180),a[l(0x161)]=l(0x14f);}(Size||(Size={})));export var Rating;(function(a){var m=a59d;a[m(0x17b)]='common',a['Rare']='rare',a[m(0x156)]=m(0x169);}(Rating||(Rating={})));export var Category;(function(a){var n=a59d;a[n(0x193)]=n(0x182),a[n(0x13b)]=n(0x137),a[n(0x184)]='key',a[n(0x168)]='gloves',a['Helmet']=n(0x155),a[n(0x153)]='hat',a[n(0x198)]=n(0x143),a[n(0x146)]=n(0x15d),a[n(0x18b)]=n(0x192),a[n(0x17e)]=n(0x165),a['Book']=n(0x152),a[n(0x145)]='cup',a['Unknown']=n(0x18c);}(Category||(Category={})));export var Shape;function a59c(){var v=['2065077WlCHop','1902564ujfEur','TOWER','search','toString','Red','NORTH','grey','Rifle','Brown','rifle','tiny','gold','east','Common','Circle','BEACH','BodyArmor','underground','large','mountain','weapon','Purple','Key','OUTSIDE','FOREST','5422011OGqbpT','3883LmCXil','smooth','sea','ArmArmor','unknown','Small','apply','7028448rUBzhZ','rectangle','(((.+)+)+)+$','arm\x20armor','Weapon','18592GXArQL','DESERT','Yellow','medium','Boots','grainy','1WZYTHC','shield','blue','WEST','Square','Shield','beach','inside','constructor','brown','Blue','outside','tower','boots','yellow','Cup','LegArmor','15SZydCr','Grey','green','Smooth','triangle','down','Large','Fuzzy','very\x20large','purple','70hrMkVM','book','Hat','118812sMQMMD','helmet','Legendary','Grainy','3606iGyMoq','small','UNDERGROUND','INSIDE','Metallic','leg\x20armor','EAST','Triangle','Rectangle','VeryLarge','blade','north','Blade','body\x20armor','south','Orange','Gloves','legendary','west','341554RJcjjP','SEA'];a59c=function(){return v;};return a59c();}(function(a){var o=a59d;a[o(0x17c)]='circle',a[o(0x13a)]='square',a[o(0x15f)]=o(0x14b),a[o(0x160)]=o(0x190),a[o(0x164)]=o(0x162),a[o(0x175)]=o(0x177);}(Shape||(Shape={})));export var Color;(function(a){var p=a59d;a[p(0x172)]='red',a[p(0x140)]=p(0x138),a['Green']=p(0x149),a[p(0x196)]=p(0x144),a[p(0x167)]='orange',a[p(0x183)]=p(0x150),a[p(0x148)]=p(0x174),a[p(0x176)]=p(0x13f),a['Gold']=p(0x179);}(Color||(Color={})));export var Texture;(function(c){var s=a59d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var q=a59d;if(h){var j=h[q(0x18e)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var r=a59d;return e[r(0x171)]()[r(0x170)](r(0x191))['toString']()[r(0x13e)](e)[r(0x170)](r(0x191));});e(),c[s(0x14a)]=s(0x189),c['Rough']='rough',c['Bumpy']='bumpy',c[s(0x14e)]='fuzzy',c[s(0x157)]=s(0x135),c[s(0x15c)]='metallic';}(Texture||(Texture={})));export var RoomType;(function(a){var t=a59d;a[t(0x15b)]=t(0x13d),a[t(0x185)]=t(0x141),a[t(0x15a)]=t(0x17f),a['CAVE']='cave',a[t(0x16f)]=t(0x142),a[t(0x186)]='forest',a[t(0x195)]='desert',a['MOUNTAIN']=t(0x181),a[t(0x17d)]=t(0x13c),a[t(0x16c)]=t(0x18a);}(RoomType||(RoomType={})));export var Direction;function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x135;var f=c[d];return f;},a59d(a,b);}(function(a){var u=a59d;a[u(0x173)]=u(0x163),a[u(0x15e)]=u(0x17a),a['SOUTH']=u(0x166),a[u(0x139)]=u(0x16a),a['UP']='up',a['DOWN']=u(0x14c);}(Direction||(Direction={})));
1
+ (function(a,b){var k=a59d,c=a();while(!![]){try{var d=parseInt(k(0x140))/0x1+parseInt(k(0x13c))/0x2*(parseInt(k(0x13f))/0x3)+-parseInt(k(0x158))/0x4*(-parseInt(k(0x13d))/0x5)+parseInt(k(0x10b))/0x6+-parseInt(k(0x114))/0x7+parseInt(k(0x10c))/0x8*(parseInt(k(0x109))/0x9)+-parseInt(k(0x160))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x5c178));export var Size;(function(a){var l=a59d;a[l(0x12a)]='tiny',a[l(0x162)]='small',a[l(0x10d)]=l(0x12c),a[l(0x164)]=l(0x14e),a[l(0x11e)]='very\x20large';}(Size||(Size={})));export var Rating;function a59c(){var v=['Smooth','metallic','apply','rifle','Helmet','NORTH','mountain','helmet','cup','desert','book','yellow','INSIDE','CAVE','6lrojCW','247855BXNjGG','rare','290313fPbtZk','111110qKLUPW','legendary','Brown','Common','bumpy','Unknown','Purple','smooth','gloves','Metallic','green','Bumpy','Legendary','Rare','large','west','gold','triangle','toString','Red','search','common','Green','Triangle','28QthdAL','orange','forest','inside','Weapon','Circle','grey','Hat','8495000GcBspK','Orange','Small','Book','Large','rough','WEST','BEACH','Grey','east','Rectangle','2997306wQkXrt','beach','4520706SwsTCY','8pICJmN','Medium','grainy','weapon','Gloves','Grainy','hat','fuzzy','4257379DgYxEk','Shield','underground','Yellow','blade','blue','Blade','Rough','MOUNTAIN','rectangle','VeryLarge','EAST','boots','DOWN','Fuzzy','LegArmor','BodyArmor','Key','Gold','arm\x20armor','leg\x20armor','Square','Tiny','body\x20armor','medium','tower'];a59c=function(){return v;};return a59c();}(function(a){var m=a59d;a[m(0x143)]=m(0x155),a[m(0x14d)]=m(0x13e),a[m(0x14c)]=m(0x141);}(Rating||(Rating={})));export var Category;(function(a){var n=a59d;a[n(0x15c)]=n(0x10f),a[n(0x115)]='shield',a[n(0x125)]='key',a[n(0x110)]=n(0x148),a[n(0x132)]=n(0x135),a[n(0x15f)]=n(0x112),a['Boots']=n(0x120),a[n(0x123)]=n(0x128),a['ArmArmor']=n(0x127),a[n(0x124)]=n(0x12b),a[n(0x163)]=n(0x138),a['Cup']=n(0x136),a[n(0x145)]='unknown';}(Category||(Category={})));export var Shape;(function(a){var o=a59d;a[o(0x15d)]='circle',a[o(0x129)]='square',a[o(0x157)]=o(0x151),a[o(0x108)]=o(0x11d),a[o(0x11a)]=o(0x118),a['Rifle']=o(0x131);}(Shape||(Shape={})));export var Color;function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x106;var f=c[d];return f;},a59d(a,b);}(function(a){var p=a59d;a[p(0x153)]='red',a['Blue']=p(0x119),a[p(0x156)]=p(0x14a),a[p(0x117)]=p(0x139),a[p(0x161)]=p(0x159),a[p(0x146)]='purple',a[p(0x106)]=p(0x15e),a[p(0x142)]='brown',a[p(0x126)]=p(0x150);}(Color||(Color={})));export var Texture;(function(c){var s=a59d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var q=a59d;if(h){var j=h[q(0x130)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var r=a59d;return e[r(0x152)]()[r(0x154)]('(((.+)+)+)+$')[r(0x152)]()['constructor'](e)[r(0x154)]('(((.+)+)+)+$');});e(),c[s(0x12e)]=s(0x147),c[s(0x11b)]=s(0x165),c[s(0x14b)]=s(0x144),c[s(0x122)]=s(0x113),c[s(0x111)]=s(0x10e),c[s(0x149)]=s(0x12f);}(Texture||(Texture={})));export var RoomType;(function(a){var t=a59d;a[t(0x13a)]=t(0x15b),a['OUTSIDE']='outside',a['UNDERGROUND']=t(0x116),a[t(0x13b)]='cave',a['TOWER']=t(0x12d),a['FOREST']=t(0x15a),a['DESERT']=t(0x137),a[t(0x11c)]=t(0x134),a[t(0x167)]=t(0x10a),a['SEA']='sea';}(RoomType||(RoomType={})));export var Direction;(function(a){var u=a59d;a[u(0x133)]='north',a[u(0x11f)]=u(0x107),a['SOUTH']='south',a[u(0x166)]=u(0x14f),a['UP']='up',a[u(0x121)]='down';}(Direction||(Direction={})));
@@ -1 +1 @@
1
- function a60c(){var i=['1249400snxFTO','395962PuoHeG','258385eIMVgR','search','15YKwvFz','35SWnzzt','4014315AJuakZ','apply','constructor','351407gSANki','12Dflvyx','32340700mpLcIY','1127048xJeTYP','(((.+)+)+)+$','toString'];a60c=function(){return i;};return a60c();}function a60d(a,b){var c=a60c();return a60d=function(d,e){d=d-0x1eb;var f=c[d];return f;},a60d(a,b);}(function(a,b){var f=a60d,c=a();while(!![]){try{var d=parseInt(f(0x1f6))/0x1+-parseInt(f(0x1ee))/0x2+-parseInt(f(0x1f1))/0x3*(parseInt(f(0x1f9))/0x4)+parseInt(f(0x1ef))/0x5*(parseInt(f(0x1f7))/0x6)+parseInt(f(0x1f2))/0x7*(-parseInt(f(0x1ed))/0x8)+-parseInt(f(0x1f3))/0x9+parseInt(f(0x1f8))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xd0c5a));var a60b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a60d;if(c){var e=c[g(0x1f4)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){var h=a60d;return a60a[h(0x1ec)]()[h(0x1f0)](h(0x1eb))[h(0x1ec)]()[h(0x1f5)](a60a)[h(0x1f0)](h(0x1eb));});a60a();export{};
1
+ (function(a,b){var f=a60d,c=a();while(!![]){try{var d=-parseInt(f(0x13f))/0x1+-parseInt(f(0x144))/0x2+-parseInt(f(0x146))/0x3+parseInt(f(0x141))/0x4*(-parseInt(f(0x148))/0x5)+parseInt(f(0x13d))/0x6*(parseInt(f(0x142))/0x7)+parseInt(f(0x149))/0x8*(parseInt(f(0x13e))/0x9)+parseInt(f(0x147))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0x81bc3));function a60c(){var i=['1770398VcVtle','toString','290830CWGwau','search','2141724iJfLDa','10986270UwugwJ','5fEpitO','6608FnvTPV','apply','12FNiEdm','3024UHrcol','149040OaIKYh','(((.+)+)+)+$','1368932DSZmoH'];a60c=function(){return i;};return a60c();}var a60b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a60d;if(c){var e=c[g(0x14a)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){var h=a60d;return a60a[h(0x143)]()[h(0x145)](h(0x140))[h(0x143)]()['constructor'](a60a)[h(0x145)](h(0x140));});a60a();function a60d(a,b){var c=a60c();return a60d=function(d,e){d=d-0x13d;var f=c[d];return f;},a60d(a,b);}export{};
@@ -1 +1 @@
1
- (function(a,b){var f=a61d,c=a();while(!![]){try{var d=parseInt(f(0x1c9))/0x1*(parseInt(f(0x1d7))/0x2)+-parseInt(f(0x1d8))/0x3*(-parseInt(f(0x1ca))/0x4)+parseInt(f(0x1d5))/0x5+-parseInt(f(0x1ce))/0x6*(parseInt(f(0x1cb))/0x7)+-parseInt(f(0x1d2))/0x8*(parseInt(f(0x1cc))/0x9)+-parseInt(f(0x1d4))/0xa*(parseInt(f(0x1cd))/0xb)+parseInt(f(0x1d1))/0xc*(parseInt(f(0x1d9))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0x4668c));var a61b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a61d;if(c){var e=c[g(0x1d0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){var h=a61d;return a61a[h(0x1d3)]()[h(0x1d6)](h(0x1cf))[h(0x1d3)]()['constructor'](a61a)['search'](h(0x1cf));});a61a();function a61d(a,b){var c=a61c();return a61d=function(d,e){d=d-0x1c9;var f=c[d];return f;},a61d(a,b);}export{};function a61c(){var i=['4086VzfwDJ','55165mWlNTL','20184tiiqTc','(((.+)+)+)+$','apply','21732OSNtaL','5912FvORgB','toString','510rqwfAv','2479690euCWem','search','27742GKdEkh','24YXsYjH','2223jbymwG','20eqOimV','138840GwXzXA','1001jycXoU'];a61c=function(){return i;};return a61c();}
1
+ (function(a,b){var f=a61d,c=a();while(!![]){try{var d=parseInt(f(0xc3))/0x1*(-parseInt(f(0xcb))/0x2)+-parseInt(f(0xc8))/0x3*(parseInt(f(0xc9))/0x4)+-parseInt(f(0xc1))/0x5*(-parseInt(f(0xc5))/0x6)+-parseInt(f(0xc7))/0x7+parseInt(f(0xbd))/0x8+-parseInt(f(0xbc))/0x9*(-parseInt(f(0xc0))/0xa)+parseInt(f(0xbf))/0xb*(parseInt(f(0xc4))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0xcf081));var a61b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a61d;if(c){var e=c[g(0xc2)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){var h=a61d;return a61a[h(0xca)]()[h(0xcc)](h(0xc6))[h(0xca)]()[h(0xbe)](a61a)[h(0xcc)]('(((.+)+)+)+$');});a61a();export{};function a61d(a,b){var c=a61c();return a61d=function(d,e){d=d-0xbc;var f=c[d];return f;},a61d(a,b);}function a61c(){var i=['8013296dMrCKx','constructor','8708161UdRjfI','12001390QchRzs','355EIUMGj','apply','1660015xQYpNC','24JIfQIM','42612XRrAFu','(((.+)+)+)+$','2389667zeWpsA','1079961Ftjqir','16yJbnhP','toString','2KHHKSO','search','9mpwYUq'];a61c=function(){return i;};return a61c();}
@@ -1 +1 @@
1
- const a62H=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=parseInt(y(0x200))/0x1*(parseInt(y(0x206))/0x2)+-parseInt(y(0x1f1))/0x3+-parseInt(y(0x1f0))/0x4+parseInt(y(0x1e9))/0x5+-parseInt(y(0x1c8))/0x6*(parseInt(y(0x1c0))/0x7)+-parseInt(y(0x1c7))/0x8+parseInt(y(0x1c6))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xdeced));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';function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x1ac;let f=c[d];return f;},a62d(a,b);}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(0x1fd)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a62d;return g['toString']()[A(0x1c2)](A(0x1fe))[A(0x1fc)]()[A(0x1f3)](g)[A(0x1c2)](A(0x1fe));});g();try{const h=a62e[B(0x1e5)]({'smartCSR':!![],'title':B(0x1e2)}),i=a62e[B(0x1ce)]({'top':'0%','left':B(0x204),'width':B(0x1cb),'height':B(0x1b4),'border':{'type':B(0x1be)},'label':B(0x1ca),'content':B(0x1e7),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1ff)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t[C(0x1b8)]()['map'](v=>v[C(0x1dd)]);i[C(0x1d4)](u[C(0x1c1)]('\x0a')),h[C(0x1bf)]();};h[B(0x1cf)](i);const k=a62e[B(0x1ce)]({'top':B(0x1b4),'left':'75%','width':'25%','height':B(0x1cb),'border':{'type':'line'},'label':B(0x1ba),'content':'Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1ff)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](k);const l=t=>{const D=B;k[D(0x1d4)](D(0x1c4)+(t[D(0x1d0)]?t[D(0x1d0)]['name']:D(0x203))+'\x0a'+(D(0x1ed)+(t['torso']?t[D(0x1ae)][D(0x1dd)]:'None')+'\x0a')+('Legs:\x20'+(t[D(0x1da)]?t[D(0x1da)]['name']:D(0x203))+'\x0a')+(D(0x1c9)+(t[D(0x1d7)]?t[D(0x1d7)][D(0x1dd)]:D(0x203))+'\x0a')+(D(0x1b6)+(t[D(0x1d6)]?t['arms']['name']:D(0x203))+'\x0a')+(D(0x1de)+(t['gloves']?t[D(0x1d1)][D(0x1dd)]:D(0x203))+'\x0a')+(D(0x1ec)+(t[D(0x1df)]?t[D(0x1df)]['name']:D(0x203))+'\x0a')+('Right\x20Hand:\x20'+(t[D(0x1af)]?t[D(0x1af)][D(0x1dd)]:D(0x203))+'\x0a')),h[D(0x1bf)]();},m=a62e[B(0x1ce)]({'top':B(0x1f2),'left':B(0x204),'width':B(0x1cb),'height':'20%','border':{'type':'line'},'label':'\x20Map\x20','content':B(0x1bc),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1ff)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x1cf)](m);const n=t=>{const E=B;let u=E(0x1cc)+t[E(0x1dd)]+'\x0a\x0a';u+=E(0x1e4),t[E(0x1f7)][E(0x1f5)]>0x0?t[E(0x1f7)][E(0x1eb)]((v,w)=>{const F=E;if(v instanceof Door){const x=v['getOtherSide'](t);x[F(0x1bb)]===RoomType[F(0x1e8)]?u+=capitalCase(w)+':\x20'+x[F(0x1dd)]:u+=capitalCase(w)+':\x20'+v[F(0x1dd)];if(v[F(0x1b2)]())u+=F(0x1b0);else v['checkIfLockable']()&&(u+=F(0x201));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0x205),m['setContent'](u),h[E(0x1bf)]();},o=a62e[B(0x1ce)]({'id':B(0x1e6),'top':'0%','left':'0%','width':'75%','height':B(0x1b1),'border':{'type':'line'},'label':B(0x1fa),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x1ff)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0x1c5)](B(0x1f8)),h[B(0x1cf)](o);const p=a62e['textbox']({'bottom':0x0,'left':0x0,'width':B(0x1ac),'height':'10%','tags':!![],'border':{'type':B(0x1be)},'style':{'fg':B(0x1c3),'border':{'fg':'cyan'}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h['append'](p),h['key']([B(0x1e0),B(0x207)],()=>process[B(0x1bd)](0x0)),p[B(0x1fb)](),h[B(0x1bf)]();const q=Logger[B(0x1e3)](e[B(0x1e1)],h),r=new Player({'playerName':c});q[B(0x1f9)](B(0x1ee));const s=a62f['getInstance'](r,d);o[B(0x1d4)](s['getWelcomeMessage']()),l(s['player']['equipment']),j(s[B(0x1b7)]['inventory']),n(s[B(0x1b7)][B(0x1d2)]),p['key']([B(0x1f6)],async()=>{const G=B,t=p['getValue'](),u=s[G(0x1ef)](t);(t[G(0x1b3)]('\x20')[0x0]===G(0x1dc)||'equip'||G(0x1cd))&&(j(s['player'][G(0x1b9)]),l(s[G(0x1b7)]['equipment'])),(t['split']('\x20')[0x0]==='go'||G(0x1ea)||'unlock')&&n(s[G(0x1b7)][G(0x1d2)]),t[G(0x1b3)]('\x20')[0x0]===G(0x1d8)&&o[G(0x1d4)](''),u===null&&(console['log'](G(0x1d5)),h[G(0x1bf)](),q[G(0x1f9)](G(0x1f4)),process[G(0x1bd)](0x0)),o[G(0x1ad)](u),o[G(0x1b5)](0x1),p[G(0x1db)](),p['focus'](),h[G(0x1bf)]();});}catch(t){console[B(0x1d9)](t),process[B(0x1bd)](0x1);}}const args=process[a62H(0x202)]['slice'](0x2);function a62c(){const I=['clearValue','take','name','Gloves:\x20','leftHand','escape','logFilePath','Side\x20Quest\x20Adventure\x20Game','getInstance','-----\x20Exits\x20------\x0a','screen','logBox','Your\x20items\x20will\x20be\x20listed\x20here...','OUTSIDE','6617450qeNGxi','lock','forEach','Left\x20Hand:\x20','Torso:\x20','----->>>>>>\x20Initializing\x20Game','handleInput','6023824YSWZQP','3895326fgfhNS','70%','constructor','<<<<<<<<---------\x20Terminating\x20game','size','enter','exits','mousemove','write','\x20Game\x20Log\x20','focus','toString','apply','(((.+)+)+)+$','yellow','31366JzUlxW','\x20(Unlocked)','argv','None','75%','\x0aThere\x20are\x20no\x20exits\x20here.','68TIjCzC','C-c','100%','pushLine','torso','rightHand','\x20(Locked)','90%','checkIfLocked','split','45%','scroll','Arms:\x20','player','getAllItems','inventory','\x20Equipment\x20','roomType','Available\x20exits\x20will\x20be\x20shown\x20here...','exit','line','render','33943LxLmdi','join','search','white','Head:\x20','removeAllListeners','42565059OZXFsx','12982264ASHawg','2202jKKNrO','Feet:\x20','\x20Inventory\x20','25%','Currently\x20in:\x20','unequip','box','append','head','gloves','currentLocation','parse','setContent','Thanks\x20for\x20playing!','arms','feet','clear','log','legs'];a62c=function(){return I;};return a62c();}main(args[0x0],JSON[a62H(0x1d3)](args[0x1]),JSON[a62H(0x1d3)](args[0x2]));
1
+ function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x112;let f=c[d];return f;},a62d(a,b);}const a62H=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=parseInt(y(0x167))/0x1+-parseInt(y(0x117))/0x2*(-parseInt(y(0x14b))/0x3)+-parseInt(y(0x148))/0x4+-parseInt(y(0x113))/0x5+parseInt(y(0x149))/0x6*(parseInt(y(0x130))/0x7)+parseInt(y(0x160))/0x8*(parseInt(y(0x14a))/0x9)+-parseInt(y(0x158))/0xa*(parseInt(y(0x143))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0xe7492));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 a62c(){const I=['30OExEgM','18nUinNq','13380JKZkjc','split','exits','name','equipment','cyan','75%','constructor','scroll','Arms:\x20','checkIfLocked','removeAllListeners','head','70uAFTcx','OUTSIDE','getOtherSide','45%','\x20(Unlocked)','log','line','append','2388504maHTtZ','\x20Game\x20Log\x20','\x20Inventory\x20','setContent','leftHand','legs','forEach','1801223XLEQCV','Feet:\x20','<<<<<<<<---------\x20Terminating\x20game','arms','getValue','Thanks\x20for\x20playing!','torso','Head:\x20','5571715wkBQne','----->>>>>>\x20Initializing\x20Game','currentLocation','take','52OdkSuZ','C-c','10%','size','getInstance','mousemove','map','search','yellow','Gloves:\x20','\x0aThere\x20are\x20no\x20exits\x20here.','getWelcomeMessage','getAllItems','inventory','slice','\x20Equipment\x20','exit','handleInput','20%','toString','25%','rightHand','argv','Right\x20Hand:\x20','player','1428175Bkcvfx','apply','roomType','equip','100%','Left\x20Hand:\x20','feet','clear','logFilePath','gloves','None','Legs:\x20','focus','join','key','render','Your\x20items\x20will\x20be\x20listed\x20here...','Currently\x20in:\x20','box','767140PUdfxE','lock','escape','90%','parse','3938260YmlAlx'];a62c=function(){return I;};return a62c();}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(0x131)](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const A=a62d;return g[A(0x12a)]()[A(0x11e)]('(((.+)+)+)+$')[A(0x12a)]()[A(0x152)](g)[A(0x11e)]('(((.+)+)+)+$');});g();try{const h=a62e['screen']({'smartCSR':!![],'title':'Side\x20Quest\x20Adventure\x20Game'}),i=a62e[B(0x142)]({'top':'0%','left':B(0x151),'width':'25%','height':B(0x15b),'border':{'type':B(0x15e)},'label':B(0x162),'content':B(0x140),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x11f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const C=B,u=t[C(0x123)]()[C(0x11d)](v=>v[C(0x14e)]);i['setContent'](u[C(0x13d)]('\x0a')),h[C(0x13f)]();};h[B(0x15f)](i);const k=a62e[B(0x142)]({'top':'45%','left':B(0x151),'width':B(0x12b),'height':B(0x12b),'border':{'type':B(0x15e)},'label':B(0x126),'content':'Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x11f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h['append'](k);const l=t=>{const D=B;k[D(0x163)](D(0x112)+(t[D(0x157)]?t[D(0x157)][D(0x14e)]:D(0x13a))+'\x0a'+('Torso:\x20'+(t[D(0x16d)]?t[D(0x16d)]['name']:D(0x13a))+'\x0a')+(D(0x13b)+(t[D(0x165)]?t[D(0x165)]['name']:D(0x13a))+'\x0a')+(D(0x168)+(t['feet']?t[D(0x136)]['name']:D(0x13a))+'\x0a')+(D(0x154)+(t[D(0x16a)]?t[D(0x16a)][D(0x14e)]:D(0x13a))+'\x0a')+(D(0x120)+(t[D(0x139)]?t[D(0x139)]['name']:D(0x13a))+'\x0a')+(D(0x135)+(t[D(0x164)]?t['leftHand']['name']:D(0x13a))+'\x0a')+(D(0x12e)+(t[D(0x12c)]?t['rightHand'][D(0x14e)]:D(0x13a))+'\x0a')),h[D(0x13f)]();},m=a62e['box']({'top':'70%','left':'75%','width':B(0x12b),'height':B(0x129),'border':{'type':B(0x15e)},'label':'\x20Map\x20','content':'Available\x20exits\x20will\x20be\x20shown\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':B(0x11f)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[B(0x15f)](m);const n=t=>{const E=B;let u=E(0x141)+t[E(0x14e)]+'\x0a\x0a';u+='-----\x20Exits\x20------\x0a',t[E(0x14d)][E(0x11a)]>0x0?t[E(0x14d)][E(0x166)]((v,w)=>{const F=E;if(v instanceof Door){const x=v[F(0x15a)](t);x[F(0x132)]===RoomType[F(0x159)]?u+=capitalCase(w)+':\x20'+x[F(0x14e)]:u+=capitalCase(w)+':\x20'+v['name'];if(v[F(0x155)]())u+='\x20(Locked)';else v['checkIfLockable']()&&(u+=F(0x15c));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=E(0x121),m[E(0x163)](u),h[E(0x13f)]();},o=a62e[B(0x142)]({'id':'logBox','top':'0%','left':'0%','width':B(0x151),'height':B(0x146),'border':{'type':B(0x15e)},'label':B(0x161),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[B(0x156)](B(0x11c)),h[B(0x15f)](o);const p=a62e['textbox']({'bottom':0x0,'left':0x0,'width':B(0x134),'height':B(0x119),'tags':!![],'border':{'type':B(0x15e)},'style':{'fg':'white','border':{'fg':B(0x150)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h['append'](p),h[B(0x13e)]([B(0x145),B(0x118)],()=>process['exit'](0x0)),p[B(0x13c)](),h[B(0x13f)]();const q=Logger[B(0x11b)](e[B(0x138)],h),r=new Player({'playerName':c});q['write'](B(0x114));const s=a62f['getInstance'](r,d);o[B(0x163)](s[B(0x122)]()),l(s[B(0x12f)][B(0x14f)]),j(s[B(0x12f)][B(0x124)]),n(s[B(0x12f)][B(0x115)]),p[B(0x13e)](['enter'],async()=>{const G=B,t=p[G(0x16b)](),u=s[G(0x128)](t);(t[G(0x14c)]('\x20')[0x0]===G(0x116)||G(0x133)||'unequip')&&(j(s['player'][G(0x124)]),l(s[G(0x12f)][G(0x14f)])),(t['split']('\x20')[0x0]==='go'||G(0x144)||'unlock')&&n(s[G(0x12f)][G(0x115)]),t[G(0x14c)]('\x20')[0x0]===G(0x137)&&o[G(0x163)](''),u===null&&(console[G(0x15d)](G(0x16c)),h[G(0x13f)](),q['write'](G(0x169)),process[G(0x127)](0x0)),o['pushLine'](u),o[G(0x153)](0x1),p['clearValue'](),p[G(0x13c)](),h[G(0x13f)]();});}catch(t){console['log'](t),process[B(0x127)](0x1);}}const args=process[a62H(0x12d)][a62H(0x125)](0x2);main(args[0x0],JSON[a62H(0x147)](args[0x1]),JSON['parse'](args[0x2]));
@@ -1 +1 @@
1
- const a63k=a63d;(function(a,b){const h=a63d,c=a();while(!![]){try{const d=-parseInt(h(0xef))/0x1*(-parseInt(h(0xe4))/0x2)+parseInt(h(0xfc))/0x3+parseInt(h(0xf9))/0x4*(-parseInt(h(0xfe))/0x5)+parseInt(h(0xe5))/0x6+-parseInt(h(0xf0))/0x7+parseInt(h(0xee))/0x8*(-parseInt(h(0xdb))/0x9)+parseInt(h(0xf1))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x6c7b3));const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a63d;if(c){const e=c[i(0xd8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const j=a63d;return a63a[j(0xe1)]()[j(0xe8)](j(0xe7))[j(0xe1)]()[j(0xf4)](a63a)['search'](j(0xe7));});a63a();function a63c(){const s=['6732CFOiOB','4451370dYtxlM','2911770gIKifl','.maka','scrollTo','constructor','getInstance','instance','getScrollHeight','write','60740UxNxJL','find','writeFileSync','1488393IEaoZJ','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','210ckyBJK','[ERROR]\x20[','The\x20logbox\x20','logBox','toISOString','error','apply','mkdirSync','dirname','9DIIBsj','setContent','homedir','existsSync','hasScreen','screen','toString','render','[INFO]\x20[','48JrihIm','4740990PDTlAN','log','(((.+)+)+)+$','search','appendFileSync','box','filePath','join','type','168176AGLmlp'];a63c=function(){return s;};return a63c();}function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0xd5;let f=c[d];return f;},a63d(a,b);}import a63e from'fs';import a63f from'os';import a63g from'path';const homeDir=a63f[a63k(0xdd)]();export class Logger{static [a63k(0xf6)];[a63k(0xeb)];[a63k(0xe0)];constructor(a,b){const l=a63k;this[l(0xeb)]=a,this[l(0xe0)]=b,this['ensureLogFileExists']();}static[a63k(0xf5)](a=a63g[a63k(0xec)](homeDir,a63k(0xf2),'side-quest.log'),b){const m=a63k;if(!Logger['instance']){if(!b)throw new Error(m(0xfd));Logger[m(0xf6)]=new Logger(a,b);}return Logger[m(0xf6)];}['ensureLogFileExists'](){const n=a63k,a=a63g[n(0xda)](this[n(0xeb)]);!a63e['existsSync'](a)&&a63e[n(0xd9)](a,{'recursive':!![]}),!a63e[n(0xde)](this[n(0xeb)])&&a63e[n(0xfb)](this['filePath'],'');}[a63k(0xf8)](a){const o=a63k,b=new Date()[o(0xd6)](),c=o(0xe3)+b+']\x20'+a+'\x0a';a63e[o(0xe9)](this['filePath'],c);}['error'](a){const p=a63k,b=new Date()[p(0xd6)](),c=p(0xff)+b+']\x20'+a+'\x0a';a63e['appendFileSync'](this['filePath'],c);}[a63k(0xe6)](a){const q=a63k,b=this[q(0xe0)]?.['children'][q(0xfa)](c=>c[q(0xed)]===q(0xea)&&c['options']['id']===q(0xd5));b?(b[q(0xdc)](b['content']+'\x0a'+a),b[q(0xf3)](b[q(0xf7)]()),this[q(0xe0)]?.[q(0xe2)]()):this[q(0xd7)](q(0x100)+b+'\x20could\x20not\x20be\x20found\x20on\x20screen\x20'+this[q(0xe0)]),this['write'](a);}[a63k(0xdf)](){const r=a63k;return!!this[r(0xe0)];}}
1
+ const a63k=a63d;(function(a,b){const h=a63d,c=a();while(!![]){try{const d=-parseInt(h(0x140))/0x1+-parseInt(h(0x137))/0x2+parseInt(h(0x141))/0x3+parseInt(h(0x131))/0x4*(-parseInt(h(0x126))/0x5)+-parseInt(h(0x13c))/0x6+parseInt(h(0x128))/0x7*(-parseInt(h(0x130))/0x8)+parseInt(h(0x142))/0x9*(parseInt(h(0x138))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x69751));function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0x11d;let f=c[d];return f;},a63d(a,b);}const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a63d;if(c){const e=c[i(0x11f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const j=a63d;return a63a[j(0x123)]()[j(0x135)](j(0x12d))[j(0x123)]()[j(0x11e)](a63a)[j(0x135)]('(((.+)+)+)+$');});a63a();import a63e from'fs';import a63f from'os';import a63g from'path';const homeDir=a63f[a63k(0x124)]();export class Logger{static [a63k(0x132)];['filePath'];[a63k(0x122)];constructor(a,b){const l=a63k;this[l(0x13d)]=a,this[l(0x122)]=b,this['ensureLogFileExists']();}static[a63k(0x12f)](a=a63g[a63k(0x145)](homeDir,'.maka',a63k(0x120)),b){const m=a63k;if(!Logger['instance']){if(!b)throw new Error(m(0x147));Logger[m(0x132)]=new Logger(a,b);}return Logger[m(0x132)];}[a63k(0x13b)](){const n=a63k,a=a63g[n(0x134)](this[n(0x13d)]);!a63e[n(0x12e)](a)&&a63e[n(0x133)](a,{'recursive':!![]}),!a63e[n(0x12e)](this['filePath'])&&a63e[n(0x12a)](this[n(0x13d)],'');}[a63k(0x143)](a){const o=a63k,b=new Date()['toISOString'](),c=o(0x129)+b+']\x20'+a+'\x0a';a63e[o(0x12c)](this[o(0x13d)],c);}['error'](a){const p=a63k,b=new Date()[p(0x13f)](),c='[ERROR]\x20['+b+']\x20'+a+'\x0a';a63e[p(0x12c)](this['filePath'],c);}['log'](a){const q=a63k,b=this[q(0x122)]?.[q(0x125)][q(0x146)](c=>c[q(0x127)]===q(0x13e)&&c[q(0x121)]['id']==='logBox');b?(b['setContent'](b['content']+'\x0a'+a),b[q(0x11d)](b[q(0x12b)]()),this['screen']?.[q(0x136)]()):this[q(0x13a)]('The\x20logbox\x20'+b+q(0x139)+this[q(0x122)]),this['write'](a);}[a63k(0x144)](){const r=a63k;return!!this[r(0x122)];}}function a63c(){const s=['error','ensureLogFileExists','3202404RvEPUB','filePath','box','toISOString','443300xhvbEs','2250888twzlCy','3157758PODeUH','write','hasScreen','join','find','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','scrollTo','constructor','apply','side-quest.log','options','screen','toString','homedir','children','45CYagBr','type','14rtISGY','[INFO]\x20[','writeFileSync','getScrollHeight','appendFileSync','(((.+)+)+)+$','existsSync','getInstance','194536itxwrh','69484HQsOUo','instance','mkdirSync','dirname','search','render','377844hnuEwh','30zKQwKB','\x20could\x20not\x20be\x20found\x20on\x20screen\x20'];a63c=function(){return s;};return a63c();}
@@ -1 +1 @@
1
- const a64n=a64d;(function(a,b){const k=a64d,c=a();while(!![]){try{const d=-parseInt(k(0x87))/0x1+parseInt(k(0x7e))/0x2+-parseInt(k(0x82))/0x3*(parseInt(k(0x81))/0x4)+-parseInt(k(0x85))/0x5*(parseInt(k(0x8e))/0x6)+-parseInt(k(0x7a))/0x7*(parseInt(k(0x7f))/0x8)+parseInt(k(0x86))/0x9*(parseInt(k(0x88))/0xa)+-parseInt(k(0x90))/0xb*(-parseInt(k(0x79))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0xdfc02));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a64d;if(c){const e=c[l(0x73)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const m=a64d;return a64a[m(0x7c)]()[m(0x78)]('(((.+)+)+)+$')['toString']()['constructor'](a64a)[m(0x78)](m(0x8f));});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 p=['side-quest','apply','Commoner','getGlobalMakaDir','fsi','list','search','4724508DgCcll','728cuWySf','ask','toString','maka\x20play:side-quest','2435298ZQTEDO','140024xenWQN','inherit','56ydMtJq','270219vzgMAY','player','node','143795iIxxso','603qYWVfG','1223140XqFNfc','165740zbwfqg','dungeon','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...','url','stringify','log','300fbfxYk','(((.+)+)+)+$','121vULKCv','side-quest.log','Play\x20a\x20little\x20side-quest','resolve','What\x20is\x20your\x20name?','sideQuestAnswer'];a64c=function(){return p;};return a64c();}import{fileURLToPath}from'url';import{dirname}from'path';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0x72;let f=c[d];return f;},a64d(a,b);}const __filename=fileURLToPath(import.meta[a64n(0x8b)]),__dirname=dirname(__filename);Command['create']({'name':a64n(0x72),'usage':a64n(0x7d),'shortDesc':a64n(0x92),'aliases':['sq'],'description':a64n(0x8a),'validOpts':[a64n(0x83)]},async function(a,b){const o=a64n;try{const c=this[o(0x76)][o(0x75)](),d=a64e['join'](c,o(0x91)),e=b[o(0x83)]?b[o(0x83)]:await Actions[o(0x7b)](o(0x94))||o(0x74),f={...b,'logFilePath':d},g={'type':o(0x77),'name':o(0x95),'message':'Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','choices':[{'name':o(0x89),'value':dungeonConfig},{'name':'shadowrun','value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions['options'](g);if(e&&h){const i=spawn(o(0x84),[a64e[o(0x93)](__dirname,'./sideQuest/ui.js'),e,JSON[o(0x8c)](h),JSON[o(0x8c)](f)],{'stdio':o(0x80)});i['on']('exit',()=>{console['log']('Thanks\x20for\x20playing!');});}}catch(j){console[o(0x8d)](j);}},a64f);
1
+ const a64m=a64d;(function(a,b){const k=a64d,c=a();while(!![]){try{const d=-parseInt(k(0x19b))/0x1+-parseInt(k(0x1a3))/0x2*(-parseInt(k(0x1ab))/0x3)+parseInt(k(0x19c))/0x4*(-parseInt(k(0x192))/0x5)+parseInt(k(0x1af))/0x6+parseInt(k(0x19f))/0x7*(parseInt(k(0x193))/0x8)+parseInt(k(0x19e))/0x9+-parseInt(k(0x1a1))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0xe1f65));const a64b=(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;};}()),a64a=a64b(this,function(){const l=a64d;return a64a[l(0x199)]()[l(0x1b3)](l(0x198))['toString']()[l(0x1ad)](a64a)[l(0x1b3)](l(0x198));});a64a();import a64e from'path';import{spawn}from'child_process';function a64c(){const p=['(((.+)+)+)+$','toString','resolve','927639dEcfhL','1536MbWoRS','maka\x20play:side-quest','15929145pqLpRM','7atuowL','inherit','17728530WxeJyS','Thanks\x20for\x20playing!','806wQxgKh','player','node','url','stringify','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...','join','side-quest','4599IOgEpi','exit','constructor','ask','5459448fOXqTc','side-quest.log','list','log','search','create','options','2505DbThFn','4166440jQcJFl','dungeon','getGlobalMakaDir','Commoner','shadowrun'];a64c=function(){return p;};return a64c();}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';import{dirname}from'path';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0x190;let f=c[d];return f;},a64d(a,b);}const __filename=fileURLToPath(import.meta[a64m(0x1a6)]),__dirname=dirname(__filename);Command[a64m(0x190)]({'name':a64m(0x1aa),'usage':a64m(0x19d),'shortDesc':'Play\x20a\x20little\x20side-quest','aliases':['sq'],'description':a64m(0x1a8),'validOpts':[a64m(0x1a4)]},async function(a,b){const n=a64m;try{const c=this['fsi'][n(0x195)](),d=a64e[n(0x1a9)](c,n(0x1b0)),e=b[n(0x1a4)]?b[n(0x1a4)]:await Actions[n(0x1ae)]('What\x20is\x20your\x20name?')||n(0x196),f={...b,'logFilePath':d},g={'type':n(0x1b1),'name':'sideQuestAnswer','message':'Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','choices':[{'name':n(0x194),'value':dungeonConfig},{'name':n(0x197),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[n(0x191)](g);if(e&&h){const i=spawn(n(0x1a5),[a64e[n(0x19a)](__dirname,'./sideQuest/ui.js'),e,JSON[n(0x1a7)](h),JSON[n(0x1a7)](f)],{'stdio':n(0x1a0)});i['on'](n(0x1ac),()=>{const o=n;console[o(0x1b2)](o(0x1a2));});}}catch(j){console[n(0x1b2)](j);}},a64f);
@@ -1 +1 @@
1
- function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0xf0;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(0xf3))/0x1+parseInt(f(0xfe))/0x2*(parseInt(f(0xfa))/0x3)+-parseInt(f(0x103))/0x4*(parseInt(f(0xf0))/0x5)+parseInt(f(0xf6))/0x6*(parseInt(f(0xfd))/0x7)+parseInt(f(0xf2))/0x8*(-parseInt(f(0xf7))/0x9)+parseInt(f(0xf9))/0xa*(parseInt(f(0x102))/0xb)+-parseInt(f(0x101))/0xc*(parseInt(f(0x100))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0x729d8));var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a65d;if(c){var e=c[g(0xf1)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var h=a65d;return a65a[h(0x104)]()[h(0xf5)](h(0xf4))[h(0x104)]()['constructor'](a65a)[h(0xf5)](h(0xf4));});a65a();function a65c(){var k=['(((.+)+)+)+$','search','10758myryoW','8195463tptBrz','maka\x20game:snake','142330twZxXg','12522DbqvDa','inherit','create','567GOmCvN','362MkvaOq','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','339287WSzMdp','12LLsFdS','11kRbJUr','228964ZjQghQ','toString','5VMqvcf','apply','8RoTxGc','548451quxNKW'];a65c=function(){return k;};return a65c();}import a65e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a65i(0xfc)]({'name':'snake','usage':a65i(0xf8),'shortDesc':a65i(0xff),'validOpts':[]},async function(){var j=a65i;execSync('npx\x20command-line-snake',{'stdio':j(0xfb)});},a65e);
1
+ function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0x104;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(0x113))/0x1*(-parseInt(f(0x112))/0x2)+-parseInt(f(0x114))/0x3+parseInt(f(0x10e))/0x4+parseInt(f(0x107))/0x5+parseInt(f(0x104))/0x6+-parseInt(f(0x110))/0x7+-parseInt(f(0x10b))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0x7233e));var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a65d;if(c){var e=c[g(0x109)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var h=a65d;return a65a[h(0x108)]()[h(0x10a)]('(((.+)+)+)+$')[h(0x108)]()[h(0x105)](a65a)[h(0x10a)]('(((.+)+)+)+$');});a65a();import a65e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';function a65c(){var k=['npx\x20command-line-snake','4180855IHZMiJ','Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','405236IpwjwZ','2lQZEih','9153YCcIKx','521046dtCdFX','constructor','snake','3094250XplUEg','toString','apply','search','2076712ztPErt','maka\x20game:snake','inherit','867008ZRvpxm'];a65c=function(){return k;};return a65c();}Command['create']({'name':a65i(0x106),'usage':a65i(0x10c),'shortDesc':a65i(0x111),'validOpts':[]},async function(){var j=a65i;execSync(j(0x10f),{'stdio':j(0x10d)});},a65e);
@@ -1 +1 @@
1
- function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0x13f;var f=c[d];return f;},a66d(a,b);}var a66i=a66d;(function(a,b){var f=a66d,c=a();while(!![]){try{var d=parseInt(f(0x14d))/0x1*(parseInt(f(0x14a))/0x2)+parseInt(f(0x142))/0x3+-parseInt(f(0x14b))/0x4+parseInt(f(0x148))/0x5+parseInt(f(0x147))/0x6*(-parseInt(f(0x14e))/0x7)+parseInt(f(0x150))/0x8*(parseInt(f(0x149))/0x9)+parseInt(f(0x140))/0xa*(-parseInt(f(0x151))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0xb1eda));var a66b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a66d;if(c){var e=c[g(0x145)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){var h=a66d;return a66a['toString']()[h(0x13f)](h(0x14f))['toString']()[h(0x144)](a66a)[h(0x13f)]('(((.+)+)+)+$');});a66a();import a66e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a66i(0x141)]({'name':a66i(0x14c),'usage':a66i(0x146),'shortDesc':a66i(0x152),'validOpts':[]},async function(){var j=a66i;execSync('npx\x20simple-tetris',{'stdio':j(0x143)});},a66e);function a66c(){var k=['Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','search','567430XTRyJL','create','4187643lYZLVg','inherit','constructor','apply','maka\x20game:tetris','5842770nQPqsy','3708030ozrFYi','9mxFNYe','14ZOuqgO','5706016FiLgwr','tetris','56749BXmUfH','7fkMxfc','(((.+)+)+)+$','10656176TYtGjx','143nhNRcX'];a66c=function(){return k;};return a66c();}
1
+ var a66i=a66d;(function(a,b){var f=a66d,c=a();while(!![]){try{var d=-parseInt(f(0x128))/0x1*(-parseInt(f(0x136))/0x2)+-parseInt(f(0x135))/0x3*(-parseInt(f(0x122))/0x4)+-parseInt(f(0x133))/0x5*(parseInt(f(0x129))/0x6)+-parseInt(f(0x12b))/0x7+parseInt(f(0x134))/0x8*(parseInt(f(0x131))/0x9)+-parseInt(f(0x12e))/0xa+-parseInt(f(0x137))/0xb*(-parseInt(f(0x12d))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x5562d));var a66b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a66d;if(c){var e=c[g(0x123)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){var h=a66d;return a66a[h(0x132)]()[h(0x12f)](h(0x125))['toString']()[h(0x126)](a66a)['search']('(((.+)+)+)+$');});a66a();function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0x122;var f=c[d];return f;},a66d(a,b);}import a66e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a66i(0x124)]({'name':a66i(0x130),'usage':a66i(0x127),'shortDesc':a66i(0x12c),'validOpts':[]},async function(){var j=a66i;execSync(j(0x12a),{'stdio':'inherit'});},a66e);function a66c(){var k=['3529652dOcGIP','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','313392xqReem','4941140yuQqpr','search','tetris','1249380uzULXc','toString','263735ROXKJh','40vmSxqF','376890XachqT','12836yyhdMM','275wfqwXz','4xhqSfU','apply','create','(((.+)+)+)+$','constructor','maka\x20game:tetris','71ZgvPCF','66DwQeAY','npx\x20simple-tetris'];a66c=function(){return k;};return a66c();}
@@ -1 +1 @@
1
- const a67i=a67d;function a67c(){const k=['maka\x20g:api\x20trucks','maka\x20g:scaffold\x20todos','2695343TaSzXW','maka\x20{generate,\x20g}:<generator>\x20<name>','generate','1380714VXrwWV','maka\x20g:dbc\x20geoserver\x20--type=pgsql','toString','\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\x20g:template\x20todos/todo_item','1853253nacURu','576877fdNDRv','constructor','search','splice','2OrCGem','exit','processAndRunGenerator','(((.+)+)+)+$','apply','maka\x20g:route\x20todos/edit','maka\x20g:package\x20package:name','1590660Sfueit','8bgosAb','68RCNdXv','maka\x20generate:scaffold\x20todos','127250EKSpRx','13467520ZmCYQc','10LwqCWn'];a67c=function(){return k;};return a67c();}(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0x147))/0x1+-parseInt(f(0x14b))/0x2*(parseInt(f(0x141))/0x3)+parseInt(f(0x154))/0x4*(-parseInt(f(0x139))/0x5)+parseInt(f(0x152))/0x6+-parseInt(f(0x13e))/0x7*(-parseInt(f(0x153))/0x8)+-parseInt(f(0x146))/0x9*(-parseInt(f(0x13b))/0xa)+parseInt(f(0x13a))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0x95147));function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x139;let f=c[d];return f;},a67d(a,b);}const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x14f)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x143)]()['search'](h(0x14e))[h(0x143)]()[h(0x148)](a67a)[h(0x149)](h(0x14e));});a67a();import{Command}from'../command.js';import a67e from'../generators/maka.gen.js';import{Log}from'../tools/log/log.class.js';Command['create']({'name':a67i(0x140),'aliases':['g'],'usage':a67i(0x13f),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':'Scaffold\x20various\x20parts\x20of\x20your\x20application','description':a67i(0x144),'examples':[a67i(0x155),a67i(0x13d),a67i(0x145),a67i(0x151),a67i(0x150),a67i(0x13c),a67i(0x142)]},async function(a,b){const j=a67i;try{const c=a[0x0];c?(a[j(0x14a)](0x0,0x1),await a67e[j(0x14d)](c,a,b)):a67e['invoke'](a,b);}catch(d){Log['error'](d),process[j(0x14c)](0x1);}});
1
+ const a67i=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=parseInt(f(0x140))/0x1+-parseInt(f(0x14b))/0x2*(parseInt(f(0x153))/0x3)+parseInt(f(0x152))/0x4*(parseInt(f(0x147))/0x5)+-parseInt(f(0x14a))/0x6*(-parseInt(f(0x141))/0x7)+parseInt(f(0x13f))/0x8+parseInt(f(0x13a))/0x9+-parseInt(f(0x14e))/0xa*(parseInt(f(0x14d))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0xbdf56));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x149)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x14f)]()[h(0x13b)](h(0x151))[h(0x14f)]()[h(0x148)](a67a)[h(0x13b)](h(0x151));});a67a();import{Command}from'../command.js';import a67e from'../generators/maka.gen.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x13a;let f=c[d];return f;},a67d(a,b);}import{Log}from'../tools/log/log.class.js';function a67c(){const k=['search','maka\x20g:scaffold\x20todos','error','generate','10421840CUtnJv','400820pWSjxJ','2378635NDmLfU','maka\x20{generate,\x20g}:<generator>\x20<name>','maka\x20g:api\x20trucks','maka\x20generate:scaffold\x20todos','maka\x20g:package\x20package:name','exit','622605lOTOcm','constructor','apply','6NlwWDe','13908ukPNXk','maka\x20g:template\x20todos/todo_item','2834161DiNUYd','90UdMdxR','toString','create','(((.+)+)+)+$','28mooMZw','189wauSHZ','5580261iyVwoD'];a67c=function(){return k;};return a67c();}Command[a67i(0x150)]({'name':a67i(0x13e),'aliases':['g'],'usage':a67i(0x142),'validOpts':[],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':'Scaffold\x20various\x20parts\x20of\x20your\x20application','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':[a67i(0x144),a67i(0x13c),a67i(0x14c),a67i(0x145),'maka\x20g:route\x20todos/edit',a67i(0x143),'maka\x20g:dbc\x20geoserver\x20--type=pgsql']},async function(a,b){const j=a67i;try{const c=a[0x0];c?(a['splice'](0x0,0x1),await a67e['processAndRunGenerator'](c,a,b)):a67e['invoke'](a,b);}catch(d){Log[j(0x13d)](d),process[j(0x146)](0x1);}});
@@ -1 +1 @@
1
- (function(a,b){var f=a68d,c=a();while(!![]){try{var d=-parseInt(f(0x119))/0x1+-parseInt(f(0x10e))/0x2*(-parseInt(f(0x115))/0x3)+-parseInt(f(0x11c))/0x4*(parseInt(f(0x110))/0x5)+-parseInt(f(0x11d))/0x6*(-parseInt(f(0x11e))/0x7)+parseInt(f(0x10f))/0x8*(parseInt(f(0x117))/0x9)+-parseInt(f(0x114))/0xa*(-parseInt(f(0x116))/0xb)+-parseInt(f(0x111))/0xc*(parseInt(f(0x118))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0xba2de));var a68b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a68d;if(c){var e=c[g(0x11b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){var h=a68d;return a68a[h(0x10d)]()['search'](h(0x112))[h(0x10d)]()[h(0x113)](a68a)[h(0x11a)](h(0x112));});a68a();function a68c(){var i=['apply','1372204BpTYMX','1732074FvUfQD','7TNnytw','toString','26RNdzOX','723656UGEfCI','5iAshwY','357588BNMKQW','(((.+)+)+)+$','constructor','90ZCeIbA','343947KWruHs','152383dtmEwG','144DoypqL','702FflWsa','636318gYQlNC','search'];a68c=function(){return i;};return a68c();}import'./get.command.js';import'./global.sub.cmd.js';function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0x10d;var f=c[d];return f;},a68d(a,b);}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(0xc2))/0x1+parseInt(f(0xc5))/0x2+-parseInt(f(0xcb))/0x3+-parseInt(f(0xc9))/0x4+parseInt(f(0xc4))/0x5*(parseInt(f(0xc3))/0x6)+-parseInt(f(0xca))/0x7+parseInt(f(0xbf))/0x8*(parseInt(f(0xc1))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x28a27));var a68b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a68d;if(c){var e=c[g(0xbe)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){var h=a68d;return a68a[h(0xc7)]()[h(0xc0)](h(0xc6))[h(0xc7)]()[h(0xc8)](a68a)[h(0xc0)]('(((.+)+)+)+$');});a68a();import'./get.command.js';function a68c(){var i=['(((.+)+)+)+$','toString','constructor','235756zwdQCj','733264TRCwJt','556923FjCOBL','apply','16EARnFv','search','796959XkvJNT','200996pPxEDM','66mBwZtW','53905LErZjU','38164XQDwJE'];a68c=function(){return i;};return a68c();}import'./global.sub.cmd.js';import'./local.sub.cmd.js';function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0xbe;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(0x93))/0x1+-parseInt(f(0x8d))/0x2+parseInt(f(0x98))/0x3*(-parseInt(f(0x9a))/0x4)+parseInt(f(0x9c))/0x5*(-parseInt(f(0x94))/0x6)+parseInt(f(0x8f))/0x7*(-parseInt(f(0x8b))/0x8)+parseInt(f(0x88))/0x9+parseInt(f(0x89))/0xa*(parseInt(f(0x95))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x198f7));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0x99)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0x8a)]()[h(0x90)](h(0x9d))[h(0x8a)]()[h(0x8c)](a69a)[h(0x90)]('(((.+)+)+)+$');});a69a();import{Command}from'../../command.js';function a69c(){const k=['246436uZXYoE','Sub-Command\x20not\x20found','77meDYkL','search','create','get','2714hHGueD','62442ofKmDs','4627007zUTEvb','Get\x20various\x20Maka\x20variables\x20and\x20configurations','findSubCommand','120yojAjN','apply','15368gPyNQt','runSubCommand','70AcWYMD','(((.+)+)+)+$','error','1431351uoxosx','10JbYdDb','toString','40072cyAFpD','constructor'];a69c=function(){return k;};return a69c();}import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x88;let f=c[d];return f;},a69d(a,b);}const GetCommand=Command[a69i(0x91)]({'name':a69i(0x92),'usage':'maka\x20get:<sub-command>','shortDesc':a69i(0x96),'validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this[j(0x97)](c);if(d)this[j(0x9b)](c,a,b);else{Log[j(0x9e)](j(0x8e));throw new UsageErrorWithSubs();}});export default GetCommand;
1
+ const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=parseInt(f(0xf9))/0x1*(-parseInt(f(0xec))/0x2)+-parseInt(f(0xfb))/0x3+parseInt(f(0xf1))/0x4+-parseInt(f(0xf7))/0x5*(parseInt(f(0xea))/0x6)+parseInt(f(0xef))/0x7+parseInt(f(0xf3))/0x8*(parseInt(f(0xf0))/0x9)+-parseInt(f(0xf4))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0xcc36f));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0xfa)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0xe9)]()[h(0xf2)](h(0xf6))['toString']()[h(0xee)](a69a)['search'](h(0xf6));});a69a();import{Command}from'../../command.js';function a69c(){const k=['2133mcSbnM','6446176lcUUnU','search','50744YZycpG','3040750HDmIKt','error','(((.+)+)+)+$','1685055XblfLt','runSubCommand','241ndnfoK','apply','4348407SIZGSn','Get\x20various\x20Maka\x20variables\x20and\x20configurations','toString','18LeRTZB','get','110frKTKI','create','constructor','3496220skQktj'];a69c=function(){return k;};return a69c();}function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0xe9;let f=c[d];return f;},a69d(a,b);}import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a69i(0xed)]({'name':a69i(0xeb),'usage':'maka\x20get:<sub-command>','shortDesc':a69i(0xfc),'validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this['findSubCommand'](c);if(d)this[j(0xf8)](c,a,b);else{Log[j(0xf5)]('Sub-Command\x20not\x20found');throw new UsageErrorWithSubs();}});export default GetCommand;
@@ -1 +1 @@
1
- const a70i=a70d;(function(a,b){const f=a70d,c=a();while(!![]){try{const d=-parseInt(f(0x18b))/0x1*(-parseInt(f(0x199))/0x2)+-parseInt(f(0x19a))/0x3+parseInt(f(0x19c))/0x4+-parseInt(f(0x18c))/0x5+parseInt(f(0x190))/0x6*(-parseInt(f(0x192))/0x7)+-parseInt(f(0x194))/0x8+parseInt(f(0x19d))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x222ad));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a70d;if(c){const e=c[g(0x191)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const h=a70d;return a70a[h(0x18d)]()['search'](h(0x195))[h(0x18d)]()[h(0x18f)](a70a)['search'](h(0x195));});a70a();function a70c(){const k=['2089ygGWpT','711185kkpufT','toString','error','constructor','24mYXqyu','apply','308350fGhzus','exit','2061456LlTsrZ','(((.+)+)+)+$','log','maka\x20get:global-config','create','46QAffFc','393336gNNCrw','global-config','50200SpMFKt','7079247tAgDlm'];a70c=function(){return k;};return a70c();}import a70e from'./get.command.js';import{Command}from'../../command.js';function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x18b;let f=c[d];return f;},a70d(a,b);}Command[a70i(0x198)]({'name':a70i(0x19b),'usage':a70i(0x197),'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['fsi']['getGlobalConfig']();console[j(0x196)](a),process[j(0x193)](0x0);}catch(b){console[j(0x18e)](b),process[j(0x193)](0x0);}},a70e);
1
+ function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x1d8;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(0x1ea))/0x1+parseInt(f(0x1e5))/0x2*(-parseInt(f(0x1e3))/0x3)+-parseInt(f(0x1e0))/0x4*(-parseInt(f(0x1e7))/0x5)+parseInt(f(0x1da))/0x6*(parseInt(f(0x1e1))/0x7)+-parseInt(f(0x1e4))/0x8*(parseInt(f(0x1db))/0x9)+-parseInt(f(0x1ee))/0xa+parseInt(f(0x1e2))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0xb4816));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a70d;if(c){const e=c[g(0x1eb)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const h=a70d;return a70a[h(0x1dc)]()['search']('(((.+)+)+)+$')[h(0x1dc)]()[h(0x1e8)](a70a)[h(0x1ec)](h(0x1ef));});function a70c(){const k=['create','844569uwOHOs','apply','search','log','13323750EDiWSC','(((.+)+)+)+$','maka\x20get:global-config','error','1218ySvKip','54vTnVwr','toString','global-config','exit','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','4EANqTm','43897sABWYU','18126922lEnmVh','159quiHol','943256QHjRwu','24114HEmeTK','fsi','6709210oxoKKb','constructor'];a70c=function(){return k;};return a70c();}a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';Command[a70i(0x1e9)]({'name':a70i(0x1dd),'usage':a70i(0x1d8),'aliases':['gc'],'shortDesc':a70i(0x1df),'validOpts':[]},async function(){const j=a70i;try{const a=await this[j(0x1e6)]['getGlobalConfig']();console[j(0x1ed)](a),process['exit'](0x0);}catch(b){console[j(0x1d9)](b),process[j(0x1de)](0x0);}},a70e);
@@ -1 +1 @@
1
- const a71i=a71d;(function(a,b){const f=a71d,c=a();while(!![]){try{const d=-parseInt(f(0xd4))/0x1+-parseInt(f(0xd6))/0x2+-parseInt(f(0xde))/0x3+parseInt(f(0xd3))/0x4*(parseInt(f(0xd2))/0x5)+parseInt(f(0xe3))/0x6*(-parseInt(f(0xdb))/0x7)+-parseInt(f(0xd8))/0x8+parseInt(f(0xda))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x51b40));function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0xd2;let f=c[d];return f;},a71d(a,b);}const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a71d;if(c){const e=c[g(0xdc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const h=a71d;return a71a[h(0xe5)]()[h(0xe2)]('(((.+)+)+)+$')[h(0xe5)]()[h(0xdd)](a71a)[h(0xe2)](h(0xdf));});a71a();import a71e from'./get.command.js';import{Command}from'../../command.js';function a71c(){const k=['1280872afQZaA','create','11360538YHuooy','3101KvOEqY','apply','constructor','314220exNsck','(((.+)+)+)+$','log','local-config','search','4188QEmhoZ','getMakaProjectConfig','toString','214450mUQsVg','52WEnMxR','662898OlfeaK','fsi','496470UtcboU','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file'];a71c=function(){return k;};return a71c();}Command[a71i(0xd9)]({'name':a71i(0xe1),'usage':'maka\x20get:local-config','mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a71i(0xd7),'validOpts':[]},async function(){const j=a71i,a=await this[j(0xd5)][j(0xe4)]();console[j(0xe0)](a);},a71e);
1
+ const a71i=a71d;(function(a,b){const f=a71d,c=a();while(!![]){try{const d=parseInt(f(0x138))/0x1*(parseInt(f(0x12e))/0x2)+-parseInt(f(0x13e))/0x3*(-parseInt(f(0x139))/0x4)+-parseInt(f(0x133))/0x5+-parseInt(f(0x13d))/0x6+-parseInt(f(0x12f))/0x7+parseInt(f(0x13b))/0x8*(-parseInt(f(0x136))/0x9)+parseInt(f(0x131))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x2bec1));const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a71d;if(c){const e=c[g(0x134)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const h=a71d;return a71a[h(0x135)]()[h(0x137)](h(0x130))[h(0x135)]()[h(0x13a)](a71a)[h(0x137)](h(0x130));});a71a();function a71c(){const k=['apply','toString','16326wTOUuv','search','5LLVYAN','380348nhaMEc','constructor','56PTNfet','maka\x20get:local-config','905298riuaOk','9TMvzhw','getMakaProjectConfig','log','local-config','68678wnaBQv','314559bfeLCi','(((.+)+)+)+$','1591450DnpzJF','fsi','1138390edDoDD'];a71c=function(){return k;};return a71c();}import a71e from'./get.command.js';import{Command}from'../../command.js';function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0x12c;let f=c[d];return f;},a71d(a,b);}Command['create']({'name':a71i(0x12d),'usage':a71i(0x13c),'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(0x132)][j(0x13f)]();console[j(0x12c)](a);},a71e);
@@ -1 +1 @@
1
- const a72i=a72d;(function(a,b){const g=a72d,c=a();while(!![]){try{const d=parseInt(g(0x1d5))/0x1*(parseInt(g(0x1cc))/0x2)+parseInt(g(0x1d1))/0x3+-parseInt(g(0x1c6))/0x4*(parseInt(g(0x1da))/0x5)+-parseInt(g(0x1c4))/0x6+parseInt(g(0x1d4))/0x7*(-parseInt(g(0x1c7))/0x8)+parseInt(g(0x1cd))/0x9*(parseInt(g(0x1c5))/0xa)+-parseInt(g(0x1c0))/0xb*(-parseInt(g(0x1cf))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0x421c0));function a72c(){const k=['878059CZWmrf','17477GUwECz','error','notice','User\x20Access\x20Token:\x20\x20','toString','936155kMazsj','fsi','constructor','search','roles','getGlobalConfig','236753JefgtW','(((.+)+)+)+$','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','join','746688NlzlKu','30kbnRTO','4LqANrW','24KnYWLI','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','token','userId','decode','6KWAurZ','612864qzzKFT','whoami','192ydcFmY','hash','1073061hfQNbx','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','authToken'];a72c=function(){return k;};return a72c();}const a72b=(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;};}()),a72a=a72b(this,function(){const h=a72d;return a72a[h(0x1d9)]()[h(0x1bd)](h(0x1c1))[h(0x1d9)]()[h(0x1bc)](a72a)[h(0x1bd)](h(0x1c1));});a72a();import a72e from'./get.command.js';import{Command}from'../../command.js';function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x1bb;let f=c[d];return f;},a72d(a,b);}import{Log}from'../../tools/log/log.class.js';import a72f from'jsonwebtoken';Command['create']({'name':a72i(0x1ce),'usage':'maka\x20get:whoami','shortDesc':a72i(0x1c8),'validOpts':[]},async function(){const j=a72i;try{const a=await this[j(0x1bb)][j(0x1bf)]();if(a['hash']){const b=a72f[j(0x1cb)](a[j(0x1d0)]);Log[j(0x1d7)](j(0x1d2)+b?.['user']),Log[j(0x1d7)](j(0x1c2)+a[j(0x1c9)]?.[j(0x1ca)]),Log['notice'](j(0x1d8)+a['token']?.[j(0x1d3)]),Log[j(0x1d7)]('Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20'+b?.[j(0x1be)][j(0x1c3)](',\x20'));}}catch(c){console[j(0x1d6)](c),process['exit'](0x0);}},a72e);
1
+ const a72j=a72d;(function(a,b){const g=a72d,c=a();while(!![]){try{const d=parseInt(g(0x1bc))/0x1*(parseInt(g(0x1b7))/0x2)+-parseInt(g(0x1d2))/0x3*(-parseInt(g(0x1ce))/0x4)+parseInt(g(0x1cb))/0x5+parseInt(g(0x1ba))/0x6*(-parseInt(g(0x1c1))/0x7)+-parseInt(g(0x1d4))/0x8*(-parseInt(g(0x1d3))/0x9)+parseInt(g(0x1b3))/0xa+-parseInt(g(0x1b9))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0x196ea));const a72b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a72d;if(c){const e=c[h(0x1cc)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){const i=a72d;return a72a['toString']()[i(0x1ca)](i(0x1b6))[i(0x1d0)]()[i(0x1b4)](a72a)[i(0x1ca)](i(0x1b6));});a72a();import a72e from'./get.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x1b3;let f=c[d];return f;},a72d(a,b);}import a72f from'jsonwebtoken';Command['create']({'name':a72j(0x1c6),'usage':'maka\x20get:whoami','shortDesc':a72j(0x1c4),'validOpts':[]},async function(){const k=a72j;try{const a=await this[k(0x1d1)][k(0x1c3)]();if(a[k(0x1c2)]){const b=a72f[k(0x1c0)](a[k(0x1c2)]);Log[k(0x1bb)](k(0x1c7)+b?.[k(0x1cd)]),Log[k(0x1bb)](k(0x1b8)+a[k(0x1b5)]?.[k(0x1c8)]),Log[k(0x1bb)]('User\x20Access\x20Token:\x20\x20'+a[k(0x1b5)]?.[k(0x1bf)]),Log[k(0x1bb)](k(0x1c5)+b?.[k(0x1c9)][k(0x1be)](',\x20'));}}catch(c){console[k(0x1cf)](c),process[k(0x1bd)](0x0);}},a72e);function a72c(){const l=['toString','fsi','2181uBuNaF','133839AyZPhD','16MbzjgV','1196450yKtJPg','constructor','token','(((.+)+)+)+$','1282HnHJIh','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','2332715XVXMZe','38868LncBIJ','notice','277ytNkYG','exit','join','authToken','decode','175vEjNCo','hash','getGlobalConfig','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','whoami','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','userId','roles','search','112810cJWFwE','apply','user','708ZswTwq','error'];a72c=function(){return l;};return a72c();}
@@ -1 +1 @@
1
- var a73h=a73d;(function(a,b){var f=a73d,c=a();while(!![]){try{var d=-parseInt(f(0x12c))/0x1+parseInt(f(0x11e))/0x2*(-parseInt(f(0x11f))/0x3)+-parseInt(f(0x126))/0x4*(parseInt(f(0x11b))/0x5)+-parseInt(f(0x125))/0x6*(-parseInt(f(0x11a))/0x7)+parseInt(f(0x123))/0x8+parseInt(f(0x128))/0x9*(-parseInt(f(0x11d))/0xa)+-parseInt(f(0x11c))/0xb*(-parseInt(f(0x12a))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0x2d540));var a73b=(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;};}()),a73a=a73b(this,function(){var g=a73d;return a73a[g(0x12b)]()[g(0x120)](g(0x129))[g(0x12b)]()[g(0x121)](a73a)['search'](g(0x129));});a73a();import{Command}from'../command.js';function a73c(){var i=['1216IBpIAL','Deprecated:\x20use\x20--help\x20instead','298298BcQCsu','15JBAkCT','76945oPEpil','10rBKRbJ','14EPCjCt','50241ReOKCD','search','constructor','help','1088264BZEtQB','create','42pNokLH','305188BkEEXn','Try,\x20maka\x20--help','937674RxtqeT','(((.+)+)+)+$','348NejvjD','toString'];a73c=function(){return i;};return a73c();}function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0x11a;var f=c[d];return f;},a73d(a,b);}import{UsageError}from'../error.js';Command[a73h(0x124)]({'name':a73h(0x122),'description':a73h(0x127),'aliases':['h'],'validOpts':[],'shortDesc':a73h(0x12d)},async function(){throw new UsageError();});
1
+ var a73i=a73d;(function(a,b){var f=a73d,c=a();while(!![]){try{var d=parseInt(f(0x131))/0x1*(parseInt(f(0x126))/0x2)+-parseInt(f(0x121))/0x3+parseInt(f(0x130))/0x4*(-parseInt(f(0x12d))/0x5)+-parseInt(f(0x127))/0x6+-parseInt(f(0x122))/0x7*(-parseInt(f(0x128))/0x8)+parseInt(f(0x12b))/0x9+-parseInt(f(0x12f))/0xa*(-parseInt(f(0x124))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0x9d4b0));var a73b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a73d;if(c){var e=c[g(0x123)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){var h=a73d;return a73a[h(0x12c)]()[h(0x129)]('(((.+)+)+)+$')[h(0x12c)]()[h(0x12e)](a73a)[h(0x129)]('(((.+)+)+)+$');});a73a();import{Command}from'../command.js';function a73c(){var j=['5173944SyqeAt','search','Deprecated:\x20use\x20--help\x20instead','7492059orBZvq','toString','145765PEdTdh','constructor','43790ibMWvc','164oaheip','321zoTOGO','3105000FFzCJA','7DkcyUP','apply','3487MSzHzg','create','4076RKdpWl','3881940WBGZZl'];a73c=function(){return j;};return a73c();}function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0x121;var f=c[d];return f;},a73d(a,b);}import{UsageError}from'../error.js';Command[a73i(0x125)]({'name':'help','description':'Try,\x20maka\x20--help','aliases':['h'],'validOpts':[],'shortDesc':a73i(0x12a)},async function(){throw new UsageError();});
@@ -1 +1 @@
1
- const a74y=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=parseInt(v(0xd7))/0x1+parseInt(v(0xf2))/0x2*(parseInt(v(0xf0))/0x3)+parseInt(v(0xe2))/0x4*(-parseInt(v(0xe1))/0x5)+-parseInt(v(0xee))/0x6*(parseInt(v(0x11f))/0x7)+parseInt(v(0xf7))/0x8*(-parseInt(v(0xe6))/0x9)+-parseInt(v(0x123))/0xa+-parseInt(v(0xcc))/0xb*(-parseInt(v(0xf5))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0x35bda));const a74b=(function(){let a=!![];return function(b,c){const d=a?function(){const w=a74d;if(c){const e=c[w(0x108)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a74a=a74b(this,function(){const x=a74d;return a74a[x(0xd8)]()[x(0xde)](x(0xf6))[x(0xd8)]()[x(0x10e)](a74a)[x(0xde)](x(0xf6));});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';function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0xcc;let f=c[d];return f;},a74d(a,b);}import{HTTPS}from'../tools/https/https.class.js';function a74c(){const C=['linux','Proceed\x20anyway?','win32','/etc/profile','extractTarGz','x86_64','injectAtEndOfFile','grep','RELEASE=','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','14xlqWAj','exit','\x20is\x20not\x20available.','env','2815750ssudwr','getuid','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','info','NO_NODE_WARNINGS','55YSxUjI','.meteor','getGlobalConfig','/.bash_profile','homedir','-rf','meteor.tar.gz','force',':$PATH','install','downloadFile','402475GhZCbc','toString','maka\x20i','join','zsh','length','package-metadata','search','error','create','5rcMDvs','1368392AuzcMw','maka\x20install\x20meteor','includes','setPath','9KZpsqT','arm64','notice','fsi','cacert','/.bashrc','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','https://install.meteor.com','345624tGetaA','get','6ZckeGC','Setting\x20Path\x20in\x20','53486wzzWwx','maka\x20install\x20meteor\x20--force','replace','1865292bxSuPH','(((.+)+)+)+$','2193304pvQbIw','\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','Aborting\x20install','Path\x20already\x20set\x20in\x20','Setting\x20Path\x20in\x20\x20','You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.','Error\x20extracting\x20meteor.tar.gz\x20file','string','maka\x20install\x20meteor\x20--version\x202.13.3','withSpinner','&release=','Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)','fileContainsString','windows','\x20installed.\x0a','Meteor\x20version\x20','data','apply','keepInstallFile','checkAvailability','cert','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','/.zshrc','constructor','Using\x20CA\x20Cert\x20','Aborted','confirm','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','platform','isFile'];a74c=function(){return C;};return a74c();}const homeDir=a74e[a74y(0xd0)]();function isRoot(){const z=a74y;return process[z(0x124)]&&process[z(0x124)]()===0x0;}Command[a74y(0xe0)]({'name':a74y(0xd5),'aliases':['i'],'validOpts':[a74y(0xd3),'version',a74y(0xea),'setPath',a74y(0x109)],'usage':'maka\x20install','shortDesc':a74y(0x10c),'description':a74y(0xf8),'examples':[a74y(0xe3),a74y(0xf3),a74y(0xff),a74y(0xd9)]},async function(a,b){const A=a74y;try{let c='';if(b[A(0xea)]){if(this[A(0xe9)][A(0x114)](b['cacert']))Log[A(0xe8)](A(0x10f)+b[A(0xea)]),c=b[A(0xea)];else throw A(0x125)+c;}const d=await this[A(0xe9)][A(0xce)]();if(d[A(0x10b)]){if(this[A(0xe9)][A(0x114)](d[A(0x10b)]))c=d[A(0x10b)];else throw A(0xec)+c;}let f=![];if(b['f']||b[A(0xd3)])f=!![];else{const p=isRoot();p?(Log['warn'](A(0xfc)),f=await Actions[A(0x111)](A(0x116),![])):f=!![];}if(!f)throw A(0x110);const g=process[A(0x113)]===A(0x117),h=await HTTPS[A(0xef)]({'url':A(0xed),'cert':c}),i=await this[A(0xe9)][A(0x11c)](h[A(0x107)],A(0x11d));if(i[A(0xdc)]===0x0)throw'Network\x20error,\x20please\x20try\x20again.';process[A(0x122)][A(0x127)]='1',Log[A(0xe8)]('Preparing\x20to\x20install\x20Meteor\x20'+i[0x0][A(0xf4)](/[^0-9.]/gi,'')[A(0xf4)](/\r?\n|\r/,''));let j=i[0x0][A(0xf4)](/[^0-9.]/gi,'')[A(0xf4)](/\r?\n|\r/,'');(typeof b['v']===A(0xfe)||typeof b['version']===A(0xfe))&&(j=b['v']||b['version']);const k={'win32':A(0x104),'darwin':'osx','linux':A(0x115)},l='https://packages.meteor.com/bootstrap-link?arch=os.'+k[a74e['platform']()]+'.'+(a74e['arch']()===A(0xe7)?A(0xe7):A(0x11a))+A(0x101)+j,m=await HTTPS[A(0x10a)]({'url':l,'cert':c});!m&&(Log[A(0xdf)](A(0x106)+j+A(0x121)),process[A(0x120)](0x0));const n=a74f[A(0xda)](homeDir,A(0xcd)),o=async()=>{const B=A,q='export\x20PATH='+n+B(0xd4);if(process[B(0x122)]['SHELL']&&process[B(0x122)]['SHELL'][B(0xe4)](B(0xdb))){const r=await this['fsi']['fileContainsString'](homeDir+'/.zshrc',q);if(!r)Log[B(0x126)](B(0xfb)+homeDir+B(0x10d)),this['fsi'][B(0x11b)]({'filePath':homeDir+B(0x10d),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xe5)]&&Log[B(0x126)](B(0xfa)+homeDir+B(0x10d));}else{const s=await this['fsi'][B(0x103)](homeDir+B(0xeb),q);if(!s)Log[B(0x126)](B(0xf1)+homeDir+B(0xeb)),this['fsi'][B(0x11b)]({'filePath':homeDir+B(0xeb),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xe5)]&&Log[B(0x126)](B(0xfa)+homeDir+B(0xeb));const t=await this[B(0xe9)][B(0x103)](homeDir+'/.bash_profile',q);if(!t)Log['info'](B(0xf1)+homeDir+B(0xcf)),this[B(0xe9)]['injectAtEndOfFile']({'filePath':homeDir+B(0xcf),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xe5)]&&Log['info'](B(0xfa)+homeDir+B(0xcf));if(isRoot()){const u=await this[B(0xe9)][B(0x103)](B(0x118),q);if(!u)Log[B(0x126)]('Setting\x20Path\x20in\x20/etc/profile'),this[B(0xe9)][B(0x11b)]({'filePath':B(0x118),'content':q+'\x0a','opts':{'verbose':!![]}});else b[B(0xe5)]&&Log[B(0x126)]('Path\x20already\x20set\x20in\x20/etc/profile');}}};b['setPath']&&(await o(),process[A(0x120)](0x0));if(g)Log[A(0xdf)]('Windows\x20is\x20not\x20supported\x20at\x20this\x20time.'),process[A(0x120)](0x0);else{if(a74g['existsSync'](n)){let q=![];b['f']||b[A(0xd3)]?q=!![]:q=await Actions[A(0x111)](A(0x112),![]),q?(await SpawnAsync[A(0x100)]('rm',['-rf',a74f[A(0xda)](n,'packages')],{'message':A(0x11e)}),await SpawnAsync[A(0x100)]('rm',['-rf',a74f[A(0xda)](n,A(0xdd))],{'message':A(0x102)}),await SpawnAsync[A(0x100)]('rm',[A(0xd1),a74f[A(0xda)](n,'meteor')],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(main)'})):(Log[A(0x126)](A(0xf9)),process[A(0x120)](0x0));}try{await HTTPS[A(0xd6)]({'url':l,'destPath':a74f['join'](homeDir,A(0xd2)),'cert':c});try{const r=a74f['join'](homeDir,'meteor.tar.gz');await this[A(0xe9)][A(0x119)](r,homeDir);}catch(s){Log[A(0xdf)](A(0xfd));}!b[A(0x109)]&&await SpawnAsync[A(0x100)]('rm',[A(0xd1),a74f[A(0xda)](homeDir,A(0xd2))],{'message':'Cleaning\x20up'}),await o();}catch(t){console[A(0xdf)](t),process[A(0x120)](0x0);}Log['success'](A(0x106)+j+A(0x105));}}catch(u){console[A(0xdf)](u),process[A(0x120)](0x0);}});
1
+ const a74x=a74d;(function(a,b){const v=a74d,c=a();while(!![]){try{const d=-parseInt(v(0x1b6))/0x1*(-parseInt(v(0x18d))/0x2)+parseInt(v(0x194))/0x3+parseInt(v(0x196))/0x4*(-parseInt(v(0x1a9))/0x5)+parseInt(v(0x1ce))/0x6*(parseInt(v(0x185))/0x7)+-parseInt(v(0x1d3))/0x8*(parseInt(v(0x1c5))/0x9)+parseInt(v(0x1c6))/0xa+-parseInt(v(0x19a))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a74c,0xc97b1));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(0x183)]()[w(0x184)](w(0x187))[w(0x183)]()[w(0x1cd)](a74a)[w(0x184)](w(0x187));});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[a74x(0x1b8)]();function a74d(a,b){const c=a74c();return a74d=function(d,e){d=d-0x17e;let f=c[d];return f;},a74d(a,b);}function a74c(){const B=['arm64','Proceed\x20anyway?','zsh','isFile','success','/.bashrc','\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','Path\x20already\x20set\x20in\x20','withSpinner','exit','Windows\x20is\x20not\x20supported\x20at\x20this\x20time.','634kKENXV','setPath','homedir','CA\x20Cert\x20is\x20configured\x20in\x20~/.maka.cert,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20','version','\x20is\x20not\x20available.','Meteor\x20version\x20','-rf','/etc/profile','maka\x20i','info','cacert','getGlobalConfig','platform','RELEASE=','1143VGchoT','3366510IzMPFP','create','grep','checkAvailability','fileContainsString','includes','confirm','constructor','12jdkUgj','maka\x20install\x20meteor\x20--version\x202.13.3','Removing\x20previous\x20install\x20of\x20meteor\x20(package-meta)','string','downloadFile','12008RPCGMU','notice','Install\x20meteor.\x20\x22maka\x20install\x22\x20defaults\x20to\x20\x22maka\x20install\x20meteor\x22','/.bash_profile','Network\x20error,\x20please\x20try\x20again.','error','Aborting\x20install','x86_64','force','packages','injectAtEndOfFile','toString','search','168035ImopPL','existsSync','(((.+)+)+)+$','fsi','data','Meteor\x20is\x20already\x20installed,\x20continue\x20and\x20remove\x20current\x20install?','get','https://packages.meteor.com/bootstrap-link?arch=os.','2252kstaNa','Removing\x20previous\x20install\x20of\x20meteor\x20(packages)','join','/.zshrc','Aborted','arch','.meteor','3081627lpQAzY','maka\x20install\x20meteor\x20--force','71992lCzSDJ','Path\x20already\x20set\x20in\x20/etc/profile','osx','keepInstallFile','4487340riJOOw','Using\x20CA\x20Cert\x20','cert','replace','env','Error\x20extracting\x20meteor.tar.gz\x20file','meteor.tar.gz','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','Cleaning\x20up','length','SHELL',':$PATH','install','package-metadata','Preparing\x20to\x20install\x20Meteor\x20','195VHxqTD','getuid'];a74c=function(){return B;};return a74c();}function isRoot(){const y=a74x;return process[y(0x1aa)]&&process[y(0x1aa)]()===0x0;}Command[a74x(0x1c7)]({'name':a74x(0x1a6),'aliases':['i'],'validOpts':[a74x(0x180),'version',a74x(0x1c1),a74x(0x1b7),a74x(0x199)],'usage':'maka\x20install','shortDesc':a74x(0x1d5),'description':a74x(0x1b1),'examples':['maka\x20install\x20meteor',a74x(0x195),a74x(0x1cf),a74x(0x1bf)]},async function(a,b){const z=a74x;try{let c='';if(b[z(0x1c1)]){if(this[z(0x188)][z(0x1ae)](b[z(0x1c1)]))Log[z(0x1d4)](z(0x19b)+b[z(0x1c1)]),c=b['cacert'];else throw z(0x1a1)+c;}const d=await this[z(0x188)][z(0x1c2)]();if(d[z(0x19c)]){if(this['fsi'][z(0x1ae)](d[z(0x19c)]))c=d[z(0x19c)];else throw z(0x1b9)+c;}let f=![];if(b['f']||b[z(0x180)])f=!![];else{const p=isRoot();p?(Log['warn']('You\x20are\x20running\x20as\x20root,\x20this\x20is\x20not\x20recommended.'),f=await Actions[z(0x1cc)](z(0x1ac),![])):f=!![];}if(!f)throw z(0x191);const g=process[z(0x1c3)]==='win32',h=await HTTPS[z(0x18b)]({'url':'https://install.meteor.com','cert':c}),i=await this[z(0x188)][z(0x1c8)](h[z(0x189)],z(0x1c4));if(i[z(0x1a3)]===0x0)throw z(0x1d7);process[z(0x19e)]['NO_NODE_WARNINGS']='1',Log['notice'](z(0x1a8)+i[0x0][z(0x19d)](/[^0-9.]/gi,'')[z(0x19d)](/\r?\n|\r/,''));let j=i[0x0][z(0x19d)](/[^0-9.]/gi,'')[z(0x19d)](/\r?\n|\r/,'');(typeof b['v']===z(0x1d1)||typeof b[z(0x1ba)]==='string')&&(j=b['v']||b[z(0x1ba)]);const k={'win32':'windows','darwin':z(0x198),'linux':'linux'},l=z(0x18c)+k[a74e[z(0x1c3)]()]+'.'+(a74e[z(0x192)]()===z(0x1ab)?z(0x1ab):z(0x17f))+'&release='+j,m=await HTTPS[z(0x1c9)]({'url':l,'cert':c});!m&&(Log['error']('Meteor\x20version\x20'+j+z(0x1bb)),process['exit'](0x0));const n=a74f[z(0x18f)](homeDir,z(0x193)),o=async()=>{const A=z,q='export\x20PATH='+n+A(0x1a5);if(process[A(0x19e)]['SHELL']&&process[A(0x19e)][A(0x1a4)][A(0x1cb)](A(0x1ad))){const r=await this['fsi'][A(0x1ca)](homeDir+A(0x190),q);if(!r)Log[A(0x1c0)]('Setting\x20Path\x20in\x20\x20'+homeDir+A(0x190)),this[A(0x188)][A(0x182)]({'filePath':homeDir+A(0x190),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1b7)]&&Log[A(0x1c0)](A(0x1b2)+homeDir+A(0x190));}else{const s=await this[A(0x188)][A(0x1ca)](homeDir+A(0x1b0),q);if(!s)Log[A(0x1c0)]('Setting\x20Path\x20in\x20'+homeDir+A(0x1b0)),this[A(0x188)][A(0x182)]({'filePath':homeDir+A(0x1b0),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1b7)]&&Log[A(0x1c0)](A(0x1b2)+homeDir+A(0x1b0));const t=await this[A(0x188)][A(0x1ca)](homeDir+A(0x1d6),q);if(!t)Log[A(0x1c0)]('Setting\x20Path\x20in\x20'+homeDir+A(0x1d6)),this['fsi'][A(0x182)]({'filePath':homeDir+'/.bash_profile','content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1b7)]&&Log['info'](A(0x1b2)+homeDir+A(0x1d6));if(isRoot()){const u=await this[A(0x188)][A(0x1ca)](A(0x1be),q);if(!u)Log[A(0x1c0)]('Setting\x20Path\x20in\x20/etc/profile'),this[A(0x188)][A(0x182)]({'filePath':A(0x1be),'content':q+'\x0a','opts':{'verbose':!![]}});else b[A(0x1b7)]&&Log[A(0x1c0)](A(0x197));}}};b[z(0x1b7)]&&(await o(),process['exit'](0x0));if(g)Log[z(0x1d8)](z(0x1b5)),process['exit'](0x0);else{if(a74g[z(0x186)](n)){let q=![];b['f']||b[z(0x180)]?q=!![]:q=await Actions[z(0x1cc)](z(0x18a),![]),q?(await SpawnAsync[z(0x1b3)]('rm',[z(0x1bd),a74f[z(0x18f)](n,z(0x181))],{'message':z(0x18e)}),await SpawnAsync[z(0x1b3)]('rm',[z(0x1bd),a74f[z(0x18f)](n,z(0x1a7))],{'message':z(0x1d0)}),await SpawnAsync[z(0x1b3)]('rm',['-rf',a74f[z(0x18f)](n,'meteor')],{'message':'Removing\x20previous\x20install\x20of\x20meteor\x20(main)'})):(Log[z(0x1c0)](z(0x17e)),process[z(0x1b4)](0x0));}try{await HTTPS[z(0x1d2)]({'url':l,'destPath':a74f[z(0x18f)](homeDir,z(0x1a0)),'cert':c});try{const r=a74f['join'](homeDir,z(0x1a0));await this[z(0x188)]['extractTarGz'](r,homeDir);}catch(s){Log[z(0x1d8)](z(0x19f));}!b['keepInstallFile']&&await SpawnAsync[z(0x1b3)]('rm',[z(0x1bd),a74f[z(0x18f)](homeDir,z(0x1a0))],{'message':z(0x1a2)}),await o();}catch(t){console[z(0x1d8)](t),process['exit'](0x0);}Log[z(0x1af)](z(0x1bc)+j+'\x20installed.\x0a');}}catch(u){console['error'](u),process[z(0x1b4)](0x0);}});
@@ -1 +1 @@
1
- const a75m=a75d;(function(a,b){const j=a75d,c=a();while(!![]){try{const d=parseInt(j(0x1a2))/0x1*(parseInt(j(0x1b4))/0x2)+-parseInt(j(0x19c))/0x3*(parseInt(j(0x1b1))/0x4)+parseInt(j(0x1b0))/0x5*(-parseInt(j(0x1bb))/0x6)+parseInt(j(0x1a5))/0x7+parseInt(j(0x196))/0x8+-parseInt(j(0x1a7))/0x9+-parseInt(j(0x194))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x62b6b));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a75d;if(c){const e=c[k(0x19b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const l=a75d;return a75a['toString']()[l(0x1b7)](l(0x195))[l(0x198)]()[l(0x1bc)](a75a)[l(0x1b7)](l(0x195));});a75a();import a75e from'path';function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x194;let f=c[d];return f;},a75d(a,b);}function a75c(){const o=['252GKczbk','constructor','1651040obVloY','(((.+)+)+)+$','1733544GMIJkv','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','toString','closure','sep','apply','12387NEBKvZ','\x20-r\x20app','stop','app/node_modules','inherit','utf-8','127Znodqq','config','logError','5181204zrupdP','app/public','4096089vHbKJh','fsi','join','Running\x20','stringify','maka\x20jsdoc','jsdoc','isFile','pathFromProject','58825YjvBTc','72qNrZex','jsdoc-config.json','\x20-d\x20','10018kvGnVv','\x20-c\x20','app/private','search','maka\x20jsdoc\x20--init','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','.+\x5c.(j|t)s(doc|x)?$'];a75c=function(){return o;};return a75c();}import a75f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command['create']({'name':a75m(0x1ad),'usage':a75m(0x1ac),'mustBeInMakaProject':!![],'shortDesc':a75m(0x1b9),'examples':[a75m(0x1b8),a75m(0x1ac)],'validOpts':[]},function(){const n=a75m,a=a75e[n(0x1a9)](this[n(0x1a8)][n(0x1af)]({}),'docs'+a75e[n(0x19a)]),b=a75e[n(0x1a9)](this[n(0x1a8)][n(0x1af)]({}),n(0x1a3),n(0x1b2)),c=this[n(0x1a8)][n(0x1af)]({}),d=n(0x1ad);if(!this[n(0x1ae)](b)){const g={'plugins':['plugins/markdown'],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0x1ad),n(0x199)]},'source':{'includePattern':n(0x1ba),'excludePattern':n(0x197),'exclude':['app/packages',n(0x19f),n(0x1a6),n(0x1b6)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':n(0x1a1)}};a75f['writeFileSync'](b,JSON[n(0x1ab)](g,null,0x4));}const f=this['logWithSpinner'](n(0x1aa)+d);try{const h=d+n(0x1b5)+b+n(0x19d)+a75e[n(0x19a)]+n(0x1b3)+a;execSync(h,{'cwd':c,'stdio':n(0x1a0)}),this['logNotice']('\x0a[+]\x20Documentation\x20written\x20to\x20'+a);}catch(i){this[n(0x1a4)](i),this[n(0x1a4)]('[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22');}finally{f[n(0x19e)]();}});
1
+ const a75m=a75d;(function(a,b){const j=a75d,c=a();while(!![]){try{const d=parseInt(j(0x197))/0x1+-parseInt(j(0x1bd))/0x2+parseInt(j(0x1a3))/0x3*(parseInt(j(0x1b4))/0x4)+parseInt(j(0x1b2))/0x5*(-parseInt(j(0x1bb))/0x6)+-parseInt(j(0x1ae))/0x7+-parseInt(j(0x19c))/0x8+parseInt(j(0x1b7))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a75c,0x3b644));const a75b=(function(){let a=!![];return function(b,c){const d=a?function(){const k=a75d;if(c){const e=c[k(0x1ac)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a75a=a75b(this,function(){const l=a75d;return a75a['toString']()['search']('(((.+)+)+)+$')[l(0x196)]()[l(0x1b9)](a75a)[l(0x1b1)]('(((.+)+)+)+$');});function a75d(a,b){const c=a75c();return a75d=function(d,e){d=d-0x193;let f=c[d];return f;},a75d(a,b);}a75a();function a75c(){const o=['app/private','1886768sMMOQD','logError','fsi','Use\x20the\x20popular\x20JSDoc\x20documentation\x20generator','[-]\x20You\x20may\x20need\x20to\x20install\x20jsdoc:\x20\x22npm\x20i\x20-g\x20jsdoc\x22','jsdoc-config.json','pathFromProject','3wYsMUH','join','sep','.+\x5c.(j|t)s(doc|x)?$','\x20-c\x20','inherit','app/packages','isFile','logWithSpinner','apply','Running\x20','3351257WtrZsH','docs','maka\x20jsdoc\x20--init','search','115uWZNIF','app/public','1458716zKFnKF','(.+\x5c.app-tests.js)|(^|\x5c/|\x5c\x5c)_','\x0a[+]\x20Documentation\x20written\x20to\x20','9993240lmqOCb','\x20-d\x20','constructor','utf-8','108366ryaMub','maka\x20jsdoc','609360ZIbzfy','create','logNotice','\x20-r\x20app','plugins/markdown','jsdoc','toString','202909fOUbHo','stop','closure','writeFileSync'];a75c=function(){return o;};return a75c();}import a75e from'path';import a75f from'fs';import{execSync}from'child_process';import{Command}from'../command.js';Command[a75m(0x1be)]({'name':a75m(0x195),'usage':a75m(0x1bc),'mustBeInMakaProject':!![],'shortDesc':a75m(0x19f),'examples':[a75m(0x1b0),a75m(0x1bc)],'validOpts':[]},function(){const n=a75m,a=a75e[n(0x1a4)](this[n(0x19e)][n(0x1a2)]({}),n(0x1af)+a75e[n(0x1a5)]),b=a75e['join'](this[n(0x19e)]['pathFromProject']({}),'config',n(0x1a1)),c=this[n(0x19e)][n(0x1a2)]({}),d=n(0x195);if(!this[n(0x1aa)](b)){const g={'plugins':[n(0x194)],'tags':{'allowUnknownTags':!![],'dictionaries':[n(0x195),n(0x199)]},'source':{'includePattern':n(0x1a6),'excludePattern':n(0x1b5),'exclude':[n(0x1a9),'app/node_modules',n(0x1b3),n(0x19b)]},'templates':{'cleverLinks':![],'monospaceLinks':![]},'opts':{'recursive':!![],'encoding':n(0x1ba)}};a75f[n(0x19a)](b,JSON['stringify'](g,null,0x4));}const f=this[n(0x1ab)](n(0x1ad)+d);try{const h=d+n(0x1a7)+b+n(0x193)+a75e[n(0x1a5)]+n(0x1b8)+a;execSync(h,{'cwd':c,'stdio':n(0x1a8)}),this[n(0x1bf)](n(0x1b6)+a);}catch(i){this['logError'](i),this[n(0x19d)](n(0x1a0));}finally{f[n(0x198)]();}});
@@ -1 +1 @@
1
- const a76s=a76d;function a76c(){const u=['length','join','stylish','217622fGpFEy','Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','fsi','.eslintrc.json','Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix','installNpmPackage','outputFixes','fix','search','/imports','checkNpmPackage','push','585ImsvYt','error','maka\x20lint','apply','128JpvmdN','1920888OKSkHA','80451lgJPrl','constructor','(((.+)+)+)+$','imports','isFile','919825oPJRCs','848859sISZLM','success','service','lintFiles','bright','notice','eslint/eslintrc.json','\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','maka\x20lint\x20--fix','eslint','toString','709158AjmtWc','4PFGuPi','Lint\x20results\x20for\x20','format','eslint-plugin-react','lint','3470gqcDfP'];a76c=function(){return u;};return a76c();}(function(a,b){const p=a76d,c=a();while(!![]){try{const d=-parseInt(p(0x1aa))/0x1+parseInt(p(0x1a1))/0x2*(parseInt(p(0x1c2))/0x3)+-parseInt(p(0x1bb))/0x4+parseInt(p(0x1c1))/0x5+parseInt(p(0x1a0))/0x6+-parseInt(p(0x1bc))/0x7*(-parseInt(p(0x1ba))/0x8)+-parseInt(p(0x1b6))/0x9*(-parseInt(p(0x1a6))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0x5bf57));const a76b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a76d;if(c){const e=c[q(0x1b9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a76a=a76b(this,function(){const r=a76d;return a76a['toString']()[r(0x1b2)](r(0x1be))[r(0x19f)]()[r(0x1bd)](a76a)['search'](r(0x1be));});a76a();import a76e from'path';import{ESLint}from'eslint';function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x198;let f=c[d];return f;},a76d(a,b);}import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';Command['create']({'name':a76s(0x1a5),'usage':a76s(0x1b8),'maxArgLength':0x1,'validOpts':[a76s(0x1b1)],'mustBeInMakaProject':!![],'shortDesc':a76s(0x1ab),'description':a76s(0x19c),'examples':[a76s(0x19d)]},async function(a,b){const t=a76s;try{const c=this[t(0x1ac)]['findAppDirectory'](),d=this[t(0x1ac)][t(0x1b4)](t(0x19e)),f=this[t(0x1ac)][t(0x1b4)](t(0x1a4)),g=this[t(0x1ac)]['checkNpmPackage']('eslint-plugin-css'),h=[];!d&&h[t(0x1b5)]('eslint');!f&&h['push']('eslint-plugin-react');!g&&h[t(0x1b5)]('eslint-plugin-css');h[t(0x1a7)]>0x0&&await this[t(0x1ac)][t(0x1af)](h[t(0x1a8)]('\x20'),{'dev':!![]});const i=this[t(0x1ac)][t(0x1c0)](a76e[t(0x1a8)](c,t(0x1ad)));if(!i){const n={'noRename':!![]};await this[t(0x1ac)]['template']({'srcPath':t(0x19b),'destPath':a76e['join'](c,t(0x1ad)),'framework':t(0x1c4),'context':n});}const j=new ESLint(),k=await j[t(0x198)]([a76e[t(0x1a8)](c,t(0x1bf),'**')]),l=await j['loadFormatter'](t(0x1a9)),m=await l[t(0x1a3)](k);m[t(0x1a7)]>0x0?Log[t(0x199)](m):Log[t(0x1c3)]('All\x20good!\x20:)'),Log['notice'](t(0x1a2)+c+t(0x1b3)),b[t(0x1b1)]?await ESLint[t(0x1b0)](k):Log[t(0x19a)](t(0x1ae));}catch(o){console[t(0x1b7)](o);}});
1
+ function a76d(a,b){const c=a76c();return a76d=function(d,e){d=d-0x1cc;let f=c[d];return f;},a76d(a,b);}const a76s=a76d;(function(a,b){const p=a76d,c=a();while(!![]){try{const d=parseInt(p(0x1ec))/0x1*(-parseInt(p(0x1d2))/0x2)+parseInt(p(0x1e6))/0x3+parseInt(p(0x1ef))/0x4*(parseInt(p(0x1f4))/0x5)+-parseInt(p(0x1d8))/0x6*(parseInt(p(0x1f1))/0x7)+parseInt(p(0x1de))/0x8*(-parseInt(p(0x1e5))/0x9)+-parseInt(p(0x1f5))/0xa+parseInt(p(0x1dc))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a76c,0x3e130));const a76b=(function(){let a=!![];return function(b,c){const d=a?function(){const q=a76d;if(c){const e=c[q(0x1e8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a76a=a76b(this,function(){const r=a76d;return a76a[r(0x1e3)]()[r(0x1d5)](r(0x1d4))[r(0x1e3)]()['constructor'](a76a)[r(0x1d5)](r(0x1d4));});function a76c(){const u=['toString','join','63qOVZSE','524703lSMLrq','success','apply','/imports','outputFixes','Lint\x20results\x20for\x20','1huOQSn','bright','maka\x20lint\x20--fix','7836wvxlXl','isFile','984991EPbShw','stylish','eslint-plugin-css','940WpeYuz','4235410qCkDPR','format','findAppDirectory','imports','loadFormatter','push','eslint','lint','All\x20good!\x20:)','maka\x20lint','217302RirjfE','checkNpmPackage','(((.+)+)+)+$','search','lintFiles','length','6jdypQt','notice','create','fsi','8631590QgtbRS','eslint-plugin-react','457968ozeyqX','.eslintrc.json','template','Use\x20ESLint\x20to\x20lint\x20the\x20imports\x20directory','fix'];a76c=function(){return u;};return a76c();}a76a();import a76e from'path';import{ESLint}from'eslint';import{Log}from'../tools/log/log.class.js';import{Command}from'../command.js';Command[a76s(0x1da)]({'name':a76s(0x1cf),'usage':a76s(0x1d1),'maxArgLength':0x1,'validOpts':['fix'],'mustBeInMakaProject':!![],'shortDesc':a76s(0x1e1),'description':'\x0a\x20\x20Lint\x20the\x20\x22./app/imports\x22\x20directory.\x0a\x0a\x20\x20This\x20command\x20will\x20install\x20and\x20conigure\x20ESLint\x20if\x20not\x20already\x20setup.\x0a\x0a\x20\x20You\x20can\x20find\x20the\x20eslint\x20config\x20at\x20\x22./app/.eslintrc.json\x22\x0a\x20\x20','examples':[a76s(0x1ee)]},async function(a,b){const t=a76s;try{const c=this['fsi'][t(0x1f7)](),d=this[t(0x1db)]['checkNpmPackage'](t(0x1ce)),f=this[t(0x1db)][t(0x1d3)](t(0x1dd)),g=this['fsi'][t(0x1d3)](t(0x1f3)),h=[];!d&&h['push'](t(0x1ce));!f&&h[t(0x1cd)]('eslint-plugin-react');!g&&h['push'](t(0x1f3));h[t(0x1d7)]>0x0&&await this['fsi']['installNpmPackage'](h[t(0x1e4)]('\x20'),{'dev':!![]});const i=this[t(0x1db)][t(0x1f0)](a76e[t(0x1e4)](c,t(0x1df)));if(!i){const n={'noRename':!![]};await this[t(0x1db)][t(0x1e0)]({'srcPath':'eslint/eslintrc.json','destPath':a76e[t(0x1e4)](c,t(0x1df)),'framework':'service','context':n});}const j=new ESLint(),k=await j[t(0x1d6)]([a76e[t(0x1e4)](c,t(0x1f8),'**')]),l=await j[t(0x1cc)](t(0x1f2)),m=await l[t(0x1f6)](k);m[t(0x1d7)]>0x0?Log[t(0x1ed)](m):Log[t(0x1e7)](t(0x1d0)),Log[t(0x1d9)](t(0x1eb)+c+t(0x1e9)),b[t(0x1e2)]?await ESLint[t(0x1ea)](k):Log[t(0x1d9)]('Run\x20\x22maka\x20lint\x20--fix\x22\x20to\x20auto\x20fix');}catch(o){console['error'](o);}});
@@ -1 +1 @@
1
- const a77z=a77d;(function(a,b){const w=a77d,c=a();while(!![]){try{const d=parseInt(w(0x1a5))/0x1+-parseInt(w(0x198))/0x2+-parseInt(w(0x1a9))/0x3*(parseInt(w(0x1c3))/0x4)+parseInt(w(0x196))/0x5+parseInt(w(0x199))/0x6*(parseInt(w(0x1a6))/0x7)+-parseInt(w(0x19a))/0x8+-parseInt(w(0x19c))/0x9*(parseInt(w(0x1b5))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0x4d4fb));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const x=a77d;if(c){const e=c[x(0x1a7)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const y=a77d;return a77a['toString']()[y(0x194)](y(0x1b8))[y(0x1c4)]()['constructor'](a77a)['search']('(((.+)+)+)+$');});a77a();import a77e from'node-forge';import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x18a;let f=c[d];return f;},a77d(a,b);}function a77c(){const B=['create','Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka','password','email','authToken','317411KKLQMj','1250375rqzspL','apply','assign','881625GeBXwO','login','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','sha256','True','ask','success','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','post','maka\x20login','update','/api/v1/status','10DUJtuR','fsi','failure','(((.+)+)+)+$','/api/v1/encodeJwt','env','https://','Logging\x20into\x20https://','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','start','notice','Preflight\x20Check','maka\x20login\x20--email\x20<address>\x20--password\x20<password>','localhost','4qVjXQy','toString','MAKA_DEV','www.maka-cli.com','withSpinner','get','/api/v1/login','getGlobalConfig','error','cert','header','debug','search','setGlobalConfig','2678835uCRaWn','isFile','365422LyAyDv','6QXjjbX','1135064ABOLdO','Using\x20CA\x20Cert\x20','870003SMrEVE','Password:\x20','cacert','parse'];a77c=function(){return B;};return a77c();}import{Actions}from'../tools/actions/actions.class.js';import{HTTPS}from'../tools/https/https.class.js';const hostname=process[a77z(0x1ba)][a77z(0x18a)]===a77z(0x1ad)?a77z(0x1c2):a77z(0x18b);Command[a77z(0x1a0)]({'name':a77z(0x1aa),'validOpts':[a77z(0x1a3),a77z(0x1a2),'help','cacert',a77z(0x193)],'usage':a77z(0x1b2),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a77z(0x1a1),'examples':['maka\x20login',a77z(0x1c1)]},async function(a,b){const A=a77z,c=Log[A(0x18c)]();try{let d='';b[A(0x19e)]&&(this[A(0x1b6)]['isFile'](b['cacert'])?(d=b[A(0x19e)],Log[A(0x1bf)](A(0x19b)+d)):Log[A(0x190)](A(0x1b0)+d));const f=await this[A(0x1b6)][A(0x18f)]();if(f['cert']){if(this['fsi'][A(0x197)](f[A(0x191)]))d=f[A(0x191)];else{Log[A(0x190)]('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);return;}}Log[A(0x192)](A(0x1bc)+hostname);const g={'url':'https://'+hostname+A(0x1b4)};b['cacert']&&Object[A(0x1a8)](g,{'cert':d});c['start'](A(0x1c0));const {statusCode:h}=await HTTPS[A(0x18d)](g);if(h===0x198){c[A(0x1b7)]();throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com';}if(h!==0xc8){c[A(0x1b7)]();throw A(0x1bb)+hostname+A(0x1ab);}c[A(0x1af)]();const i=b[A(0x1a3)]?b[A(0x1a3)]:await Actions[A(0x1ae)]('Email:'),j=b['password']?b[A(0x1a2)]:await Actions[A(0x1ae)](A(0x19d),!![]),k=a77e['md'][A(0x1ac)]['create']();k[A(0x1b3)](j);const l=k['digest']()['toHex'](),m={'hostname':hostname,'path':A(0x18e),'data':{'email':i,'password':l,'hashed':!![]}};b[A(0x19e)]&&Object[A(0x1a8)](m,{'cert':d});c[A(0x1be)]('Logging\x20in');const {data:n,statusCode:o}=await HTTPS[A(0x1b1)](m);if(o===0x198){c[A(0x1b7)]('\x0a');throw'Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://'+hostname;}const p=JSON[A(0x19f)](n);if(p[A(0x1a4)]){const q={'hostname':hostname,'path':A(0x1b9),'headers':{'x-auth-token':p[A(0x1a4)]},'data':{}};b[A(0x19e)]&&Object[A(0x1a8)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS['post'](q),{token:t}=JSON[A(0x19f)](r);if(s===0x198)throw A(0x1bd)+hostname;const u={'token':p,'hash':t};this['fsi'][A(0x195)](u);}else{c[A(0x1b7)]();throw p;}c[A(0x1af)]();}catch(v){c[A(0x1b7)](),console['error'](v),process['exit'](0x0);}});
1
+ const a77z=a77d;function a77d(a,b){const c=a77c();return a77d=function(d,e){d=d-0x1ca;let f=c[d];return f;},a77d(a,b);}function a77c(){const B=['Could\x20not\x20make\x20a\x20secure\x20connection.\x0aPlease\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://www.maka-cli.com','2268480IOPdEZ','getGlobalConfig','update','fsi','email','success','create','4DFifgj','start','Logging\x20in','search','279393tjWRle','Email:','www.maka-cli.com','240638RbPAuT','apply','\x20seems\x20to\x20be\x20having\x20a\x20problem.\x20\x20Please\x20report\x20a\x20bug\x20at:\x20https://github.com/maka-io/maka-cli','maka\x20login','exit','header','sha256','digest','toHex','MAKA_DEV','/api/v1/encodeJwt','post','isFile','12mAXtbH','Could\x20not\x20make\x20a\x20secure\x20connection.\x0a[-]\x20Please\x20ensure\x20you\x20are\x20able\x20to\x20access\x20https://','Using\x20CA\x20Cert\x20','cacert','4075736xwFsJq','setGlobalConfig','CA\x20Cert\x20file\x20could\x20not\x20be\x20found\x20at\x20','help','get','error','assign','Logging\x20into\x20https://','1903032HFxnFt','Retrieves\x20login\x20information\x20from\x20www.maka-cli.com,\x20and\x20stores\x20a\x20hash\x20in\x20~/.maka','failure','parse','env','933435lXJGpv','localhost','/api/v1/login','1506267ygWqSc','/api/v1/status','login','password','authToken','90AxnXky','ask','notice','toString','https://','(((.+)+)+)+$','withSpinner','cert'];a77c=function(){return B;};return a77c();}(function(a,b){const w=a77d,c=a();while(!![]){try{const d=-parseInt(w(0x1ce))/0x1*(-parseInt(w(0x1d5))/0x2)+parseInt(w(0x1d2))/0x3*(parseInt(w(0x1e2))/0x4)+parseInt(w(0x204))/0x5+-parseInt(w(0x1ee))/0x6+-parseInt(w(0x1f6))/0x7+parseInt(w(0x1e6))/0x8+-parseInt(w(0x1f3))/0x9*(parseInt(w(0x1fb))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a77c,0x3effc));const a77b=(function(){let a=!![];return function(b,c){const d=a?function(){const x=a77d;if(c){const e=c[x(0x1d6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a77a=a77b(this,function(){const y=a77d;return a77a[y(0x1fe)]()['search']('(((.+)+)+)+$')[y(0x1fe)]()['constructor'](a77a)[y(0x1d1)](y(0x200));});a77a();import a77e from'node-forge';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 hostname=process[a77z(0x1f2)][a77z(0x1de)]==='True'?a77z(0x1f4):a77z(0x1d4);Command['create']({'name':a77z(0x1f8),'validOpts':['email',a77z(0x1f9),a77z(0x1e9),a77z(0x1e5),'debug'],'usage':a77z(0x1d8),'maxArgLength':0x2,'disableAuthCheck':!![],'shortDesc':a77z(0x1ef),'examples':[a77z(0x1d8),'maka\x20login\x20--email\x20<address>\x20--password\x20<password>']},async function(a,b){const A=a77z,c=Log[A(0x201)]();try{let d='';b[A(0x1e5)]&&(this[A(0x1ca)][A(0x1e1)](b[A(0x1e5)])?(d=b[A(0x1e5)],Log[A(0x1fd)](A(0x1e4)+d)):Log[A(0x1eb)](A(0x1e8)+d));const f=await this[A(0x1ca)][A(0x205)]();if(f[A(0x202)]){if(this[A(0x1ca)][A(0x1e1)](f[A(0x202)]))d=f[A(0x202)];else{Log[A(0x1eb)]('CA\x20Cert\x20is\x20configured\x20in\x20~/.maka/global-config.json,\x20but\x20cert\x20file\x20cannot\x20be\x20located\x20'+d);return;}}Log[A(0x1da)](A(0x1ed)+hostname);const g={'url':A(0x1ff)+hostname+A(0x1f7)};b[A(0x1e5)]&&Object['assign'](g,{'cert':d});c['start']('Preflight\x20Check');const {statusCode:h}=await HTTPS[A(0x1ea)](g);if(h===0x198){c['failure']();throw A(0x203);}if(h!==0xc8){c['failure']();throw A(0x1ff)+hostname+A(0x1d7);}c[A(0x1cc)]();const i=b['email']?b[A(0x1cb)]:await Actions[A(0x1fc)](A(0x1d3)),j=b[A(0x1f9)]?b[A(0x1f9)]:await Actions['ask']('Password:\x20',!![]),k=a77e['md'][A(0x1db)][A(0x1cd)]();k[A(0x206)](j);const l=k[A(0x1dc)]()[A(0x1dd)](),m={'hostname':hostname,'path':A(0x1f5),'data':{'email':i,'password':l,'hashed':!![]}};b[A(0x1e5)]&&Object['assign'](m,{'cert':d});c[A(0x1cf)](A(0x1d0));const {data:n,statusCode:o}=await HTTPS[A(0x1e0)](m);if(o===0x198){c[A(0x1f0)]('\x0a');throw A(0x1e3)+hostname;}const p=JSON[A(0x1f1)](n);if(p[A(0x1fa)]){const q={'hostname':hostname,'path':A(0x1df),'headers':{'x-auth-token':p[A(0x1fa)]},'data':{}};b[A(0x1e5)]&&Object[A(0x1ec)](q,{'cert':d});const {data:r,statusCode:s}=await HTTPS[A(0x1e0)](q),{token:t}=JSON[A(0x1f1)](r);if(s===0x198)throw A(0x1e3)+hostname;const u={'token':p,'hash':t};this['fsi'][A(0x1e7)](u);}else{c[A(0x1f0)]();throw p;}c[A(0x1cc)]();}catch(v){c[A(0x1f0)](),console[A(0x1eb)](v),process[A(0x1d9)](0x0);}});