@maka/maka-cli 4.6.17 → 4.6.19

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 (139) hide show
  1. package/bundle/obf/package.json +31 -31
  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/kit.js +1 -1
  108. package/bundle/obf/src/generators/layout.js +1 -1
  109. package/bundle/obf/src/generators/maka.gen.js +1 -1
  110. package/bundle/obf/src/generators/methods.js +1 -1
  111. package/bundle/obf/src/generators/package.js +1 -1
  112. package/bundle/obf/src/generators/page.js +1 -1
  113. package/bundle/obf/src/generators/publish.js +1 -1
  114. package/bundle/obf/src/generators/route.js +1 -1
  115. package/bundle/obf/src/generators/service.js +1 -1
  116. package/bundle/obf/src/generators/services/_index.js +1 -1
  117. package/bundle/obf/src/generators/services/openssl.js +1 -1
  118. package/bundle/obf/src/generators/services/translation.js +1 -1
  119. package/bundle/obf/src/maka.js +1 -1
  120. package/bundle/obf/src/tool.js +1 -1
  121. package/bundle/obf/src/tools/actions/actions.class.js +1 -1
  122. package/bundle/obf/src/tools/aws/aws.class.js +1 -1
  123. package/bundle/obf/src/tools/aws/aws.interfaces.js +1 -1
  124. package/bundle/obf/src/tools/docker/docker.class.js +1 -1
  125. package/bundle/obf/src/tools/docker/docker.interfaces.js +1 -1
  126. package/bundle/obf/src/tools/fsi/fsi.class.js +1 -1
  127. package/bundle/obf/src/tools/fsi/fsi.interfaces.js +1 -1
  128. package/bundle/obf/src/tools/https/https.class.js +1 -1
  129. package/bundle/obf/src/tools/https/https.interface.js +1 -1
  130. package/bundle/obf/src/tools/log/log.class.js +1 -1
  131. package/bundle/obf/src/tools/log/log.interfaces.js +1 -1
  132. package/bundle/obf/src/tools/options/options.class.js +1 -1
  133. package/bundle/obf/src/tools/progress/progress.class.js +1 -1
  134. package/bundle/obf/src/tools/spawn-async/spawn-async.class.js +1 -1
  135. package/bundle/obf/src/tools/spawn-async/spawn-async.interfaces.js +1 -1
  136. package/bundle/obf/src/tools/ssh/ssh.class.js +1 -1
  137. package/bundle/obf/src/tools/ssh/ssh.interfaces.js +1 -1
  138. package/bundle/obf/src/tools/ssl/ssl.class.js +1 -1
  139. package/package.json +31 -31
@@ -1 +1 @@
1
- const a54l=a54d;function a54d(a,b){const c=a54c();return a54d=function(d,e){d=d-0x1e7;let f=c[d];return f;},a54d(a,b);}(function(a,b){const i=a54d,c=a();while(!![]){try{const d=-parseInt(i(0x211))/0x1*(parseInt(i(0x21f))/0x2)+parseInt(i(0x205))/0x3+parseInt(i(0x1fe))/0x4+-parseInt(i(0x223))/0x5+-parseInt(i(0x1fc))/0x6*(-parseInt(i(0x229))/0x7)+parseInt(i(0x1e8))/0x8+-parseInt(i(0x1f4))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a54c,0x90787));const a54b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a54d;if(c){const e=c[j(0x21e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a54a=a54b(this,function(){const k=a54d;return a54a[k(0x1ee)]()['search'](k(0x20e))[k(0x1ee)]()[k(0x20a)](a54a)[k(0x210)](k(0x20e));});a54a();import{Logger}from'../utilities/logger.js';import{Direction}from'../types/enums.js';import{AbstractScene}from'../types/abstracts.js';function a54c(){const E=['write','No\x20actor\x20with\x20name\x20','addRoom','player','359514YltsjN','characterLocations','logger','createRoom','Scene\x20initialized\x20with\x20rooms:\x20','roomConfiguration','\x20already\x20exists\x20in\x20the\x20scene.','Room\x20Factory\x20was\x20not\x20correctly\x20initialized','2936364tDUfqj','\x20found\x20in\x20the\x20scene.','3598248CKlZIH','get','Added\x20item\x20','roomFactory','delete','removeActor','targetRoom','1209576ojIBye','allActors','Added\x20puzzle\x20to\x20room\x20','addExit','\x20to\x20room\x20','constructor','initialize','\x22\x20does\x20not\x20exist.','values','(((.+)+)+)+$','getCharacterLocation','search','9013XQOvLc','No\x20rooms\x20have\x20been\x20defined\x20in\x20the\x20game.','removeRoom','join','Attempted\x20to\x20remove\x20a\x20non-existent\x20room\x20from\x20scene:\x20','exits','set','No\x20starting\x20room\x20designated.\x20Defaulting\x20to\x20the\x20first\x20room.','actors','Failed\x20to\x20add\x20puzzle.\x20Room\x20','\x20not\x20found\x20in\x20scene.','Actor\x20with\x20name\x20','Failed\x20to\x20add\x20item\x20','apply','254ZoZEUb','connectRooms','has','from','2226535ZCvPYO','Added\x20room\x20to\x20scene:\x20','length','toUpperCase','addItem','setCharacterLocation','7McBlyq','addItemToRoom','rooms','push','direction','Room\x20\x22','\x20is\x20now\x20in\x20room\x20','3436056ZoRqqA','generateRoomsFromConfig','warn','keys','createExitsFromConfig','name','toString','currentLocation'];a54c=function(){return E;};return a54c();}import{RoomFactory}from'../factories/roomsF.js';export class Scene extends AbstractScene{['rooms'];[a54l(0x1f3)];['logger'];[a54l(0x219)];[a54l(0x1f5)]=new Map();[a54l(0x201)];constructor(a){const m=a54l;super(),this[m(0x201)]=new RoomFactory(),this[m(0x1f3)]=a[m(0x1f3)],this[m(0x22b)]=this[m(0x1e9)](a[m(0x1f9)]),this[m(0x1f6)]=Logger['getInstance'](),this[m(0x219)]=new Map(),this[m(0x1ec)](a[m(0x1f9)]),this[m(0x1f6)][m(0x1f0)](m(0x1f8)+Object[m(0x1eb)](this[m(0x22b)])[m(0x214)](',\x20'));}[a54l(0x20b)](){const n=a54l;this['player'][n(0x1ef)]=this['determineStartRoom']();}[a54l(0x1e9)](a){const o=a54l;if(!this['roomFactory'])throw new Error(o(0x1fb));const b={};for(const c of a){const d=this['roomFactory'][o(0x1f7)](c);b[c[o(0x1ed)]]=d;}return b;}[a54l(0x1ec)](a){const p=a54l;for(const b of a){const c=this[p(0x22b)][b[p(0x1ed)]];if(b[p(0x216)])for(const d of b['exits']){const e=d[p(0x22d)][p(0x226)](),f=d[p(0x204)],g=d['keyRequired'],h=this['rooms'][f];h&&c[p(0x208)](Direction[e],h,g);}}}['addActor'](a){const q=a54l;if(this['actors'][q(0x221)](a[q(0x1ed)]))throw new Error(q(0x21c)+a[q(0x1ed)]+q(0x1fa));this['actors'][q(0x217)](a['name'],a);}[a54l(0x203)](a){const r=a54l;if(!this[r(0x219)][r(0x221)](a))throw new Error(r(0x1f1)+a+r(0x1fd));this[r(0x219)][r(0x202)](a);}['getActor'](a){const s=a54l;return this[s(0x219)]['get'](a);}get[a54l(0x206)](){const t=a54l;return Array[t(0x222)](this[t(0x219)][t(0x20d)]());}[a54l(0x1f2)](a){const u=a54l;this['rooms'][a[u(0x1ed)]]=a,this[u(0x1f6)][u(0x1f0)](u(0x224)+a['name']);}[a54l(0x213)](a){const v=a54l;return this['rooms'][a]?(delete this[v(0x22b)][a],this[v(0x1f6)][v(0x1f0)]('Removed\x20room\x20from\x20scene:\x20'+a),!![]):(this[v(0x1f6)]['write'](v(0x215)+a),![]);}[a54l(0x22a)](a,b){const w=a54l,c=this[w(0x22b)][b];c?(c[w(0x227)](a),this['logger'][w(0x1f0)](w(0x200)+a[w(0x1ed)]+w(0x209)+c[w(0x1ed)])):this[w(0x1f6)][w(0x1f0)](w(0x21d)+a[w(0x1ed)]+'.\x20Room\x20'+b+w(0x21b));}['addPuzzleToRoom'](a,b){const x=a54l,c=this['rooms'][b];c?(c['setPuzzle'](a),this[x(0x1f6)][x(0x1f0)](x(0x207)+c[x(0x1ed)])):this[x(0x1f6)][x(0x1f0)](x(0x21a)+b+x(0x21b));}[a54l(0x228)](a,b){const y=a54l,c=this[y(0x22b)][b];c?(this[y(0x1f5)]['set'](a[y(0x1ed)],c),this[y(0x1f6)][y(0x1f0)](a[y(0x1ed)]+y(0x1e7)+c['name'])):this[y(0x1f6)]['write']('Failed\x20to\x20set\x20'+a[y(0x1ed)]+'\x27s\x20location.\x20Room\x20'+b+y(0x21b));}[a54l(0x20f)](a){const z=a54l;return this['characterLocations'][z(0x1ff)](a['name']);}['determineStartRoom'](){const A=a54l,a=[];for(const c in this['rooms']){if(this[A(0x22b)]['hasOwnProperty'](c)){const d=this[A(0x22b)][c];d['isStartRoom']&&a[A(0x22c)](d);}}if(a[A(0x225)]>0x1)throw new Error('Multiple\x20starting\x20rooms\x20have\x20been\x20defined.\x20Please\x20ensure\x20there\x27s\x20only\x20one\x20starting\x20room.');if(a[A(0x225)]===0x1)return a[0x0];const b=Object[A(0x1eb)](this[A(0x22b)]);if(b[A(0x225)]===0x0)throw new Error(A(0x212));return console[A(0x1ea)](A(0x218)),this[A(0x22b)][b[0x0]];}['getPlayer'](){const B=a54l;return this[B(0x1f3)];}['getRooms'](){const C=a54l;return this[C(0x22b)];}[a54l(0x220)](a,b,c,d){const D=a54l,e=this[D(0x22b)][a],f=this[D(0x22b)][c];if(!e)throw new Error(D(0x22e)+a+D(0x20c));if(!f)throw new Error(D(0x22e)+c+D(0x20c));e[D(0x208)](b,f,d);}}
1
+ const a54l=a54d;(function(a,b){const i=a54d,c=a();while(!![]){try{const d=parseInt(i(0x114))/0x1*(parseInt(i(0x120))/0x2)+parseInt(i(0x13b))/0x3*(parseInt(i(0x138))/0x4)+parseInt(i(0x117))/0x5+parseInt(i(0x149))/0x6+-parseInt(i(0x118))/0x7*(parseInt(i(0x14b))/0x8)+parseInt(i(0x150))/0x9+-parseInt(i(0x115))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a54c,0x79b6b));function a54c(){const D=['toString','getInstance','addItem','Room\x20\x22','Added\x20puzzle\x20to\x20room\x20','createRoom','name','Added\x20room\x20to\x20scene:\x20','setCharacterLocation','addRoom','removeRoom','\x20already\x20exists\x20in\x20the\x20scene.','roomConfiguration','player','(((.+)+)+)+$','16lHwyOB','roomFactory','generateRoomsFromConfig','632517IKxeGw','removeActor','actors','keys','\x20is\x20now\x20in\x20room\x20','initialize','createExitsFromConfig','addExit','\x20not\x20found\x20in\x20scene.','No\x20actor\x20with\x20name\x20','addItemToRoom','getPlayer','apply','set','4604898YQUTxt','get','6321936ktBSqq','warn','Attempted\x20to\x20remove\x20a\x20non-existent\x20room\x20from\x20scene:\x20','\x27s\x20location.\x20Room\x20','search','1621188mlhAUx','length','constructor','determineStartRoom','addActor','Removed\x20room\x20from\x20scene:\x20','967663QZzZzb','21155670mVBilA','Multiple\x20starting\x20rooms\x20have\x20been\x20defined.\x20Please\x20ensure\x20there\x27s\x20only\x20one\x20starting\x20room.','3228570VrcVwR','7HNRuPF','Failed\x20to\x20add\x20puzzle.\x20Room\x20','delete','Added\x20item\x20','from','rooms','Scene\x20initialized\x20with\x20rooms:\x20','write','2sjkoDb','\x22\x20does\x20not\x20exist.','logger','getActor','exits','isStartRoom','getRooms','characterLocations','allActors'];a54c=function(){return D;};return a54c();}const a54b=(function(){let a=!![];return function(b,c){const d=a?function(){const j=a54d;if(c){const e=c[j(0x147)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a54a=a54b(this,function(){const k=a54d;return a54a[k(0x129)]()[k(0x14f)]('(((.+)+)+)+$')[k(0x129)]()[k(0x152)](a54a)[k(0x14f)](k(0x137));});a54a();import{Logger}from'../utilities/logger.js';import{Direction}from'../types/enums.js';import{AbstractScene}from'../types/abstracts.js';function a54d(a,b){const c=a54c();return a54d=function(d,e){d=d-0x111;let f=c[d];return f;},a54d(a,b);}import{RoomFactory}from'../factories/roomsF.js';export class Scene extends AbstractScene{[a54l(0x11d)];[a54l(0x136)];['logger'];['actors'];['characterLocations']=new Map();[a54l(0x139)];constructor(a){const m=a54l;super(),this['roomFactory']=new RoomFactory(),this[m(0x136)]=a[m(0x136)],this[m(0x11d)]=this['generateRoomsFromConfig'](a[m(0x135)]),this[m(0x122)]=Logger[m(0x12a)](),this['actors']=new Map(),this[m(0x141)](a['roomConfiguration']),this['logger'][m(0x11f)](m(0x11e)+Object[m(0x13e)](this[m(0x11d)])['join'](',\x20'));}[a54l(0x140)](){const n=a54l;this['player']['currentLocation']=this[n(0x111)]();}[a54l(0x13a)](a){const o=a54l;if(!this[o(0x139)])throw new Error('Room\x20Factory\x20was\x20not\x20correctly\x20initialized');const b={};for(const c of a){const d=this[o(0x139)][o(0x12e)](c);b[c[o(0x12f)]]=d;}return b;}[a54l(0x141)](a){const p=a54l;for(const b of a){const c=this['rooms'][b[p(0x12f)]];if(b[p(0x124)])for(const d of b[p(0x124)]){const e=d['direction']['toUpperCase'](),f=d['targetRoom'],g=d['keyRequired'],h=this['rooms'][f];h&&c[p(0x142)](Direction[e],h,g);}}}[a54l(0x112)](a){const q=a54l;if(this[q(0x13d)]['has'](a[q(0x12f)]))throw new Error('Actor\x20with\x20name\x20'+a['name']+q(0x134));this['actors']['set'](a['name'],a);}[a54l(0x13c)](a){const r=a54l;if(!this[r(0x13d)]['has'](a))throw new Error(r(0x144)+a+'\x20found\x20in\x20the\x20scene.');this[r(0x13d)][r(0x11a)](a);}[a54l(0x123)](a){const s=a54l;return this[s(0x13d)][s(0x14a)](a);}get[a54l(0x128)](){const t=a54l;return Array[t(0x11c)](this['actors']['values']());}[a54l(0x132)](a){const u=a54l;this[u(0x11d)][a[u(0x12f)]]=a,this[u(0x122)][u(0x11f)](u(0x130)+a[u(0x12f)]);}[a54l(0x133)](a){const v=a54l;return this[v(0x11d)][a]?(delete this[v(0x11d)][a],this[v(0x122)][v(0x11f)](v(0x113)+a),!![]):(this['logger'][v(0x11f)](v(0x14d)+a),![]);}[a54l(0x145)](a,b){const w=a54l,c=this['rooms'][b];c?(c[w(0x12b)](a),this['logger'][w(0x11f)](w(0x11b)+a[w(0x12f)]+'\x20to\x20room\x20'+c['name'])):this[w(0x122)][w(0x11f)]('Failed\x20to\x20add\x20item\x20'+a['name']+'.\x20Room\x20'+b+w(0x143));}['addPuzzleToRoom'](a,b){const x=a54l,c=this[x(0x11d)][b];c?(c['setPuzzle'](a),this[x(0x122)][x(0x11f)](x(0x12d)+c[x(0x12f)])):this[x(0x122)]['write'](x(0x119)+b+'\x20not\x20found\x20in\x20scene.');}[a54l(0x131)](a,b){const y=a54l,c=this[y(0x11d)][b];c?(this['characterLocations'][y(0x148)](a['name'],c),this['logger'][y(0x11f)](a[y(0x12f)]+y(0x13f)+c['name'])):this['logger'][y(0x11f)]('Failed\x20to\x20set\x20'+a[y(0x12f)]+y(0x14e)+b+y(0x143));}['getCharacterLocation'](a){const z=a54l;return this[z(0x127)]['get'](a['name']);}[a54l(0x111)](){const A=a54l,a=[];for(const c in this['rooms']){if(this['rooms']['hasOwnProperty'](c)){const d=this['rooms'][c];d[A(0x125)]&&a['push'](d);}}if(a[A(0x151)]>0x1)throw new Error(A(0x116));if(a[A(0x151)]===0x1)return a[0x0];const b=Object[A(0x13e)](this['rooms']);if(b[A(0x151)]===0x0)throw new Error('No\x20rooms\x20have\x20been\x20defined\x20in\x20the\x20game.');return console[A(0x14c)]('No\x20starting\x20room\x20designated.\x20Defaulting\x20to\x20the\x20first\x20room.'),this[A(0x11d)][b[0x0]];}[a54l(0x146)](){return this['player'];}[a54l(0x126)](){const B=a54l;return this[B(0x11d)];}['connectRooms'](a,b,c,d){const C=a54l,e=this['rooms'][a],f=this['rooms'][c];if(!e)throw new Error(C(0x12c)+a+C(0x121));if(!f)throw new Error(C(0x12c)+c+C(0x121));e[C(0x142)](b,f,d);}}
@@ -1 +1 @@
1
- var a55t=a55d;(function(a,b){var f=a55d,c=a();while(!![]){try{var d=-parseInt(f(0x11a))/0x1*(-parseInt(f(0x105))/0x2)+-parseInt(f(0x108))/0x3+-parseInt(f(0x11b))/0x4+-parseInt(f(0xf0))/0x5+parseInt(f(0xf9))/0x6*(-parseInt(f(0x115))/0x7)+-parseInt(f(0x107))/0x8*(parseInt(f(0x10e))/0x9)+-parseInt(f(0xe8))/0xa*(-parseInt(f(0xf7))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0x34bba));var a55b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a55d;if(c){var e=c[g(0x10d)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){var h=a55d;return a55a['toString']()[h(0xeb)](h(0xfb))['toString']()[h(0x109)](a55a)['search'](h(0xfb));});a55a();import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';import{Item}from'../models/item.js';export class BasicItem extends Item{constructor(a,b){var i=a55d;super({'name':a,'description':b,'size':Size[i(0xea)],'category':Category[i(0xf5)],'shape':Shape[i(0xf1)],'color':Color[i(0x106)],'texture':Texture['Smooth'],'rating':Rating[i(0x117)],'weight':0x1});}['use'](){var j=a55d;return this[j(0x104)];}}export class Sword extends Item{constructor(a,b){var k=a55d;super({'name':a,'description':b,'size':Size[k(0xea)],'category':Category[k(0x10c)],'shape':Shape[k(0x112)],'color':Color[k(0xff)],'texture':Texture[k(0x100)],'rating':Rating[k(0x117)],'weight':0x3});}}function a55c(){var E=['Helmet','Rare','Sniper\x20Rifle','1421430pKnPwN','Rectangle','use','A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','Gloves','Unknown','\x20aloft,\x20feeling\x20its\x20immense\x20power.','12072621ycvBsE','Circle','1740066OnZYBN','Tiny','(((.+)+)+)+$','Rifle','BodyArmor','Gold','Grey','Metallic','You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22','Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22','You\x20hold\x20the\x20','description','525752aGAxRe','Yellow','808VcBTJk','299118zABOEr','constructor','This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22','There\x20is\x20a\x20bookmark,\x20you\x20open\x20the\x20book\x20to\x20the\x20page\x20and\x20you\x20see\x20a\x20note\x20saying\x20\x22secret123\x22','Weapon','apply','18594DXCYjA','Large','Unknown\x20Author','Holy\x20Grail','Blade','A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.','Key','7yCuOBf','ArmArmor','Common','Legendary','Small','1UmZJAJ','1046896beCwSd','pageCount','Short\x20Sword','Brown','Boots','10pwcWgE','Smooth','Medium','search','publishDate'];a55c=function(){return E;};return a55c();}export class Rifle extends Item{constructor(a,b){var l=a55d;super({'name':a,'description':b,'size':Size[l(0x10f)],'category':Category[l(0x10c)],'shape':Shape[l(0xfc)],'color':Color['Brown'],'texture':Texture[l(0x100)],'rating':Rating[l(0xee)],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var m=a55d;super({'name':a,'description':b,'size':Size[m(0xea)],'category':Category[m(0xed)],'shape':Shape[m(0xf8)],'color':Color[m(0xff)],'texture':Texture[m(0x100)],'rating':Rating[m(0x117)],'weight':0x2});}}function a55d(a,b){var c=a55c();return a55d=function(d,e){d=d-0xe7;var f=c[d];return f;},a55d(a,b);}export class BodyArmor extends Item{constructor(a,b){var n=a55d;super({'name':a,'description':b,'size':Size[n(0x10f)],'category':Category[n(0xfd)],'shape':Shape['Rectangle'],'color':Color[n(0xff)],'texture':Texture['Metallic'],'rating':Rating[n(0x117)],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var o=a55d;super({'name':a,'description':b,'size':Size[o(0xea)],'category':Category['LegArmor'],'shape':Shape[o(0xf1)],'color':Color[o(0xff)],'texture':Texture[o(0x100)],'rating':Rating[o(0x117)],'weight':0x6});}}export class Boots extends Item{constructor(a,b){var p=a55d;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[p(0xe7)],'shape':Shape[p(0xf8)],'color':Color[p(0x11e)],'texture':Texture[p(0xe9)],'rating':Rating[p(0x117)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var q=a55d;super({'name':a,'description':b,'size':Size['Small'],'category':Category[q(0xf4)],'shape':Shape['Circle'],'color':Color[q(0x11e)],'texture':Texture[q(0xe9)],'rating':Rating['Common'],'weight':0x1});}}export class Gauntlets extends Item{constructor(a,b){var r=a55d;super({'name':a,'description':b,'size':Size[r(0xea)],'category':Category[r(0x116)],'shape':Shape[r(0xf1)],'color':Color['Grey'],'texture':Texture[r(0x100)],'rating':Rating['Common'],'weight':0x3});}}export class Key extends Item{constructor(a,b){var s=a55d;super({'name':a,'description':b,'size':Size[s(0xfa)],'category':Category[s(0x114)],'shape':Shape[s(0xf1)],'color':Color[s(0x106)],'texture':Texture['Smooth'],'rating':Rating['Common'],'weight':0x0});}[a55t(0xf2)](){var u=a55t;return u(0x10a);}}export class Weapon extends Item{constructor(a,b){var v=a55t;super({'name':a,'description':b,'size':Size[v(0xea)],'category':Category[v(0x10c)],'shape':Shape[v(0x112)],'color':Color[v(0xff)],'texture':Texture[v(0x100)],'rating':Rating[v(0x117)],'weight':0x3});}[a55t(0xf2)](){var w=a55t;return w(0x102);}}export class Book extends Item{['author'];[a55t(0xec)];['pageCount'];constructor(a,b='A\x20mysterious\x20book.',c=a55t(0x110)){var x=a55t;super({'name':a,'description':b,'size':Size[x(0xea)],'category':Category['Book'],'shape':Shape['Rectangle'],'color':Color[x(0x11e)],'texture':Texture[x(0xe9)],'rating':Rating[x(0x117)],'weight':0x1}),this['author']=c,this[x(0xec)]=new Date(),this[x(0x11c)]=0x64;}[a55t(0xf2)](){var y=a55t;return y(0x10b);}}export class ShortSword extends Item{constructor(){var z=a55t;super({'name':z(0x11d),'description':z(0x113),'size':Size[z(0xea)],'category':Category[z(0x10c)],'shape':Shape['Blade'],'color':Color[z(0xff)],'texture':Texture[z(0x100)],'rating':Rating[z(0x117)],'weight':0x3});}[a55t(0xf2)](){return'Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22';}}export class SniperRifle extends Item{constructor(){var A=a55t;super({'name':A(0xef),'description':'An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','size':Size['Large'],'category':Category['Weapon'],'shape':Shape[A(0xfc)],'color':Color['Brown'],'texture':Texture[A(0xe9)],'rating':Rating['Common'],'weight':0x5});}[a55t(0xf2)](){var B=a55t;return B(0x101);}}export class HolyGrail extends Item{constructor(){var C=a55t;super({'name':C(0x111),'description':C(0xf3),'size':Size[C(0x119)],'category':Category['Cup'],'shape':Shape['Circle'],'color':Color[C(0xfe)],'texture':Texture[C(0x100)],'rating':Rating[C(0x118)],'weight':0x1});}[a55t(0xf2)](){var D=a55t;return D(0x103)+this['name']+D(0xf6);}}
1
+ var a55s=a55d;(function(a,b){var f=a55d,c=a();while(!![]){try{var d=parseInt(f(0x1db))/0x1+parseInt(f(0x1df))/0x2+-parseInt(f(0x1f6))/0x3+parseInt(f(0x201))/0x4*(parseInt(f(0x1e5))/0x5)+-parseInt(f(0x1f2))/0x6+parseInt(f(0x1d8))/0x7*(parseInt(f(0x207))/0x8)+parseInt(f(0x1fc))/0x9*(-parseInt(f(0x204))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a55c,0xdf9c4));var a55b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a55d;if(c){var e=c[g(0x1d6)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a55a=a55b(this,function(){var h=a55d;return a55a[h(0x202)]()[h(0x1fa)](h(0x1e2))['toString']()[h(0x1d9)](a55a)[h(0x1fa)](h(0x1e2));});a55a();import{Size,Category,Shape,Color,Texture,Rating}from'../types/enums.js';function a55d(a,b){var c=a55c();return a55d=function(d,e){d=d-0x1d4;var f=c[d];return f;},a55d(a,b);}import{Item}from'../models/item.js';export class BasicItem extends Item{constructor(a,b){var i=a55d;super({'name':a,'description':b,'size':Size[i(0x1ec)],'category':Category[i(0x1fb)],'shape':Shape[i(0x1d4)],'color':Color[i(0x1f5)],'texture':Texture[i(0x1d7)],'rating':Rating[i(0x205)],'weight':0x1});}['use'](){return this['description'];}}export class Sword extends Item{constructor(a,b){var j=a55d;super({'name':a,'description':b,'size':Size[j(0x1ec)],'category':Category[j(0x1ed)],'shape':Shape[j(0x1f7)],'color':Color[j(0x1eb)],'texture':Texture[j(0x1dc)],'rating':Rating[j(0x205)],'weight':0x3});}}export class Rifle extends Item{constructor(a,b){var k=a55d;super({'name':a,'description':b,'size':Size[k(0x1e7)],'category':Category[k(0x1ed)],'shape':Shape['Rifle'],'color':Color[k(0x1f1)],'texture':Texture[k(0x1dc)],'rating':Rating[k(0x1fe)],'weight':0x7});}}export class Helmet extends Item{constructor(a,b){var l=a55d;super({'name':a,'description':b,'size':Size[l(0x1ec)],'category':Category[l(0x1e3)],'shape':Shape[l(0x1f9)],'color':Color['Grey'],'texture':Texture[l(0x1dc)],'rating':Rating[l(0x205)],'weight':0x2});}}export class BodyArmor extends Item{constructor(a,b){var m=a55d;super({'name':a,'description':b,'size':Size[m(0x1e7)],'category':Category[m(0x1de)],'shape':Shape[m(0x1d4)],'color':Color[m(0x1eb)],'texture':Texture[m(0x1dc)],'rating':Rating[m(0x205)],'weight':0xa});}}export class LegArmor extends Item{constructor(a,b){var n=a55d;super({'name':a,'description':b,'size':Size['Medium'],'category':Category['LegArmor'],'shape':Shape[n(0x1d4)],'color':Color[n(0x1eb)],'texture':Texture[n(0x1dc)],'rating':Rating['Common'],'weight':0x6});}}export class Boots extends Item{constructor(a,b){var o=a55d;super({'name':a,'description':b,'size':Size['Medium'],'category':Category[o(0x206)],'shape':Shape[o(0x1f9)],'color':Color['Brown'],'texture':Texture['Smooth'],'rating':Rating[o(0x205)],'weight':0x2});}}export class Gloves extends Item{constructor(a,b){var p=a55d;super({'name':a,'description':b,'size':Size[p(0x1e0)],'category':Category['Gloves'],'shape':Shape['Circle'],'color':Color[p(0x1f1)],'texture':Texture['Smooth'],'rating':Rating['Common'],'weight':0x1});}}export class Gauntlets extends Item{constructor(a,b){var q=a55d;super({'name':a,'description':b,'size':Size[q(0x1ec)],'category':Category['ArmArmor'],'shape':Shape['Rectangle'],'color':Color[q(0x1eb)],'texture':Texture[q(0x1dc)],'rating':Rating[q(0x205)],'weight':0x3});}}export class Key extends Item{constructor(a,b){var r=a55d;super({'name':a,'description':b,'size':Size['Tiny'],'category':Category[r(0x200)],'shape':Shape[r(0x1d4)],'color':Color[r(0x1f5)],'texture':Texture[r(0x1d7)],'rating':Rating[r(0x205)],'weight':0x0});}[a55s(0x1ff)](){var t=a55s;return t(0x1e8);}}export class Weapon extends Item{constructor(a,b){var u=a55s;super({'name':a,'description':b,'size':Size[u(0x1ec)],'category':Category[u(0x1ed)],'shape':Shape['Blade'],'color':Color['Grey'],'texture':Texture[u(0x1dc)],'rating':Rating[u(0x205)],'weight':0x3});}[a55s(0x1ff)](){return'Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22';}}function a55c(){var B=['search','Unknown','9OEoUce','You\x20suck\x20at\x20using\x20it.\x20\x20Try\x20equipping\x20it\x20\x22equip\x20sniper\x20rifle\x22','Rare','use','Key','172oYacEq','toString','A\x20legendary\x20cup\x20believed\x20to\x20have\x20miraculous\x20powers.\x20It\x20shimmers\x20with\x20an\x20ethereal\x20glow.','20005770uFSTpf','Common','Boots','46328jUvubV','A\x20well-balanced\x20short\x20sword,\x20ideal\x20for\x20close\x20combat.','Rectangle','Cup','apply','Smooth','1988JBrArE','constructor','You\x20hold\x20the\x20','454508zfSwqG','Metallic','Short\x20Sword','BodyArmor','1494408xdDbOk','Small','An\x20accurate,\x20long\x20range,\x205\x20round\x20rifle\x20with\x20a\x208x\x20scope.','(((.+)+)+)+$','Helmet','Sniper\x20Rifle','162755kVtiCX','Rifle','Large','This\x20is\x20a\x20key,\x20and\x20you\x20cannot\x20just\x20\x22use\x22\x20it.\x20Try\x20\x22unlock\x22','publishDate','Holy\x20Grail','Grey','Medium','Weapon','Gold','author','Legendary','Brown','1575948kOPSaP','Unknown\x20Author','pageCount','Yellow','3200718SJAVpl','Blade','name','Circle'];a55c=function(){return B;};return a55c();}export class Book extends Item{[a55s(0x1ef)];[a55s(0x1e9)];[a55s(0x1f4)];constructor(a,b='A\x20mysterious\x20book.',c=a55s(0x1f3)){var v=a55s;super({'name':a,'description':b,'size':Size[v(0x1ec)],'category':Category['Book'],'shape':Shape[v(0x1d4)],'color':Color[v(0x1f1)],'texture':Texture['Smooth'],'rating':Rating[v(0x205)],'weight':0x1}),this[v(0x1ef)]=c,this[v(0x1e9)]=new Date(),this['pageCount']=0x64;}[a55s(0x1ff)](){return'There\x20is\x20a\x20bookmark,\x20you\x20open\x20the\x20book\x20to\x20the\x20page\x20and\x20you\x20see\x20a\x20note\x20saying\x20\x22secret123\x22';}}export class ShortSword extends Item{constructor(){var w=a55s;super({'name':w(0x1dd),'description':w(0x208),'size':Size[w(0x1ec)],'category':Category[w(0x1ed)],'shape':Shape['Blade'],'color':Color[w(0x1eb)],'texture':Texture[w(0x1dc)],'rating':Rating[w(0x205)],'weight':0x3});}[a55s(0x1ff)](){return'Use\x20it\x20for\x20what?\x20Try\x20equipping\x20it\x20\x22equip\x20short\x20sword\x22';}}export class SniperRifle extends Item{constructor(){var x=a55s;super({'name':x(0x1e4),'description':x(0x1e1),'size':Size[x(0x1e7)],'category':Category[x(0x1ed)],'shape':Shape[x(0x1e6)],'color':Color[x(0x1f1)],'texture':Texture['Smooth'],'rating':Rating['Common'],'weight':0x5});}[a55s(0x1ff)](){var y=a55s;return y(0x1fd);}}export class HolyGrail extends Item{constructor(){var z=a55s;super({'name':z(0x1ea),'description':z(0x203),'size':Size[z(0x1e0)],'category':Category[z(0x1d5)],'shape':Shape[z(0x1f9)],'color':Color[z(0x1ee)],'texture':Texture[z(0x1dc)],'rating':Rating[z(0x1f0)],'weight':0x1});}['use'](){var A=a55s;return A(0x1da)+this[A(0x1f8)]+'\x20aloft,\x20feeling\x20its\x20immense\x20power.';}}
@@ -1 +1 @@
1
- function a57d(a,b){const c=a57c();return a57d=function(d,e){d=d-0x189;let f=c[d];return f;},a57d(a,b);}const a57i=a57d;(function(a,b){const f=a57d,c=a();while(!![]){try{const d=parseInt(f(0x1b8))/0x1+parseInt(f(0x1de))/0x2+parseInt(f(0x1df))/0x3*(-parseInt(f(0x1b0))/0x4)+-parseInt(f(0x1bd))/0x5+-parseInt(f(0x1c4))/0x6+-parseInt(f(0x1a1))/0x7+parseInt(f(0x1ea))/0x8*(parseInt(f(0x1b5))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x1a064));const a57b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a57d;if(c){const e=c[g(0x1dd)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a57a=a57b(this,function(){const h=a57d;return a57a[h(0x19c)]()[h(0x1ba)](h(0x1f9))[h(0x19c)]()[h(0x1c7)](a57a)['search'](h(0x1f9));});a57a();export const rooms=[{'name':a57i(0x1d4),'description':'A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','isStartRoom':!![],'items':[{'type':a57i(0x1cd),'name':a57i(0x196),'description':'A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.'},{'type':a57i(0x1cb),'name':a57i(0x191),'description':a57i(0x18f),'content':a57i(0x1be)}],'exits':[{'direction':a57i(0x1f5),'targetRoom':a57i(0x1b9)}]},{'name':a57i(0x1b9),'description':'A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','exits':[{'direction':a57i(0x1aa),'targetRoom':a57i(0x1c8),'keyRequired':'Golden\x20Key'},{'direction':a57i(0x1c9),'targetRoom':'Courtyard'}]},{'name':a57i(0x1c8),'description':a57i(0x1fb),'items':[{'type':'holyGrail','name':'Holy\x20Grail','description':a57i(0x1c1)}]},{'name':a57i(0x18e),'description':'A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','roomType':a57i(0x1ff),'exits':[{'direction':'UP','targetRoom':a57i(0x1d9)}]},{'name':a57i(0x1d9),'description':a57i(0x19a),'roomType':'OUTSIDE','puzzle':{'requiredPhrase':a57i(0x199),'riddle':a57i(0x1a6),'rewardItem':{'type':a57i(0x1ca),'name':a57i(0x18a),'description':a57i(0x1a8)},'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(0x1dc)}}];export const dungeonConfig=[{'name':'Entrance\x20Hall','description':a57i(0x1e3),'isStartRoom':!![],'roomType':'inside','puzzle':{'requiredPhrase':a57i(0x18b),'riddle':a57i(0x1c5),'rewardItem':{'type':a57i(0x1cd),'name':'Central\x20Chamber\x20Key','description':a57i(0x1e8)},'successMessage':'The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','failureMessage':a57i(0x1c3)},'exits':[{'direction':a57i(0x1f4),'targetRoom':a57i(0x1e1)},{'direction':a57i(0x1b2),'targetRoom':a57i(0x1b6),'keyRequired':'Central\x20Chamber\x20Key'}]},{'name':'Study','description':'A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','roomType':'inside','items':[{'type':a57i(0x1cb),'name':a57i(0x1ae),'description':a57i(0x1c0),'content':a57i(0x1ef)},{'type':a57i(0x1cd),'name':'Central\x20Chamber\x20Key','description':'A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.'}],'exits':[{'direction':a57i(0x1b7),'targetRoom':a57i(0x1fe)},{'direction':'east','targetRoom':'Alchemy\x20Lab'}]},{'name':'Alchemy\x20Lab','description':a57i(0x1db),'roomType':'inside','items':[{'type':'basic','name':a57i(0x19d),'description':a57i(0x1b1)}],'exits':[{'direction':a57i(0x1a0),'targetRoom':'Study'},{'direction':'north','targetRoom':'Armory'}]},{'name':a57i(0x1bc),'description':'Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','roomType':a57i(0x19f),'items':[{'type':a57i(0x1ac),'name':a57i(0x1b3),'description':a57i(0x1da)},{'type':a57i(0x18c),'name':'Rusted\x20Sword','description':a57i(0x1d5)}],'exits':[{'direction':'south','targetRoom':a57i(0x1e7)},{'direction':a57i(0x1b2),'targetRoom':a57i(0x1b6)}]},{'name':'Central\x20Chamber','description':'A\x20large\x20circular\x20room\x20with\x20four\x20doors.','roomType':a57i(0x19f),'exits':[{'direction':a57i(0x1a0),'targetRoom':a57i(0x1bc)},{'direction':a57i(0x1b7),'targetRoom':a57i(0x1fe)},{'direction':a57i(0x1f4),'targetRoom':a57i(0x1a5)},{'direction':'east','targetRoom':a57i(0x1c8)}]},{'name':a57i(0x1a5),'description':a57i(0x1fc),'roomType':'inside','items':[{'type':'key','name':a57i(0x1bf),'description':a57i(0x189)}],'puzzle':{'requiredPhrase':a57i(0x1d7),'riddle':a57i(0x1e6),'rewardItem':{'type':a57i(0x1ed),'name':a57i(0x197),'description':'A\x20gem\x20radiating\x20a\x20mysterious\x20aura.'},'successMessage':a57i(0x1fd),'failureMessage':a57i(0x1f0)},'exits':[{'direction':'south','targetRoom':a57i(0x1b6)}]},{'name':a57i(0x1c8),'description':a57i(0x1e5),'roomType':a57i(0x19f),'puzzle':{'requiredPhrase':'insert\x20gem','riddle':'The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','rewardItem':{'type':a57i(0x1c2),'name':a57i(0x198),'description':a57i(0x1f2)},'successMessage':a57i(0x1e4),'failureMessage':'The\x20chest\x20remains\x20firmly\x20shut.'},'exits':[{'direction':a57i(0x1a0),'targetRoom':a57i(0x1b6)}]}];export const shadowrunConfig=[{'name':a57i(0x1bb),'description':'A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','isStartRoom':!![],'roomType':a57i(0x19f),'exits':[{'direction':a57i(0x1f4),'targetRoom':'Downtown\x20Seattle'},{'direction':'up','targetRoom':a57i(0x1f8)}]},{'name':a57i(0x1f8),'description':a57i(0x1d2),'roomType':a57i(0x19f),'puzzle':{'requiredPhrase':a57i(0x1ce),'riddle':a57i(0x1e0),'rewardItem':{'type':a57i(0x1cd),'name':'Encrypted\x20Data\x20Key','description':a57i(0x1cc)},'successMessage':'The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','failureMessage':a57i(0x1a2)},'exits':[{'direction':'down','targetRoom':a57i(0x1bb)}]},{'name':a57i(0x1a9),'description':'The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','roomType':'outside','exits':[{'direction':'south','targetRoom':a57i(0x1bb)},{'direction':'east','targetRoom':a57i(0x195)},{'direction':a57i(0x1a0),'targetRoom':a57i(0x1ab)}]},{'name':a57i(0x195),'description':a57i(0x1f1),'roomType':a57i(0x193),'puzzle':{'requiredPhrase':'show\x20loyalty','riddle':a57i(0x1f3),'rewardItem':{'type':'key','name':a57i(0x1b4),'description':a57i(0x1e9)},'successMessage':a57i(0x1ad),'failureMessage':a57i(0x1af)},'exits':[{'direction':a57i(0x1a0),'targetRoom':a57i(0x1a9)},{'direction':a57i(0x1f4),'targetRoom':a57i(0x194)}]},{'name':'Corp\x20Enclave','description':a57i(0x1d1),'roomType':a57i(0x19f),'items':[{'type':a57i(0x1ec),'name':a57i(0x1f7),'description':a57i(0x1fa)},{'type':'document','name':a57i(0x19e),'description':a57i(0x1d8)}],'exits':[{'direction':'east','targetRoom':a57i(0x1a9)}]},{'name':a57i(0x194),'description':a57i(0x1cf),'roomType':a57i(0x193),'items':[{'type':a57i(0x1ee),'name':a57i(0x1a3),'description':a57i(0x1f6)}],'exits':[{'direction':a57i(0x1b7),'targetRoom':a57i(0x195)},{'direction':a57i(0x1f4),'targetRoom':a57i(0x192)},{'direction':a57i(0x1b2),'targetRoom':a57i(0x1a7)}]},{'name':a57i(0x192),'description':a57i(0x1d3),'roomType':a57i(0x19f),'puzzle':{'requiredPhrase':a57i(0x1d0),'riddle':a57i(0x1a4),'rewardItem':{'type':'amulet','name':a57i(0x18d),'description':'A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.'},'successMessage':a57i(0x190),'failureMessage':a57i(0x1c6)},'exits':[{'direction':'south','targetRoom':a57i(0x194)}]},{'name':a57i(0x1a7),'description':a57i(0x1d6),'roomType':'inside','items':[{'type':a57i(0x1e2),'name':a57i(0x1eb),'description':a57i(0x19b)}],'exits':[{'direction':'west','targetRoom':a57i(0x194)}]}];function a57c(){const j=['south','128484RPmPAy','Secret\x20Passage','search','Jackpoint\x20Login','Armory','1022190HQnGWW','Chad\x20the\x20stupid\x20guard','Blood-stained\x20Key','A\x20book\x20containing\x20a\x20mysterious\x20riddle.','The\x20legendary\x20Holy\x20Grail.','cup','Nothing\x20happens.','528180MFqXWa','Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.','constructor','Treasure\x20Room','SOUTH','rifle','book','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','key','decrypt','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','disenchant','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','Library','An\x20old\x20and\x20rusted\x20sword.','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','release','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','Watch\x20Tower','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','That\x20passcode\x20is\x20incorrect','apply','152694KqJXwv','582447vXsoSP','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','Study','drone','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','Alchemy\x20Lab','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.','891176hIcJIo','MCT\x20Fly-Spy','creditstick','gem','weapon','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','A\x20chalice\x20made\x20of\x20pure\x20gold.','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','north','EAST','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','Corporate\x20Creditstick','Matrix\x20Data\x20Haven','(((.+)+)+)+$','A\x20creditstick\x20loaded\x20with\x20nuyen.','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','Entrance\x20Hall','OUTSIDE','A\x20key\x20stained\x20with\x20old\x20blood.','Sniper\x20Rifle','open\x20sesame','sword','Amulet\x20of\x20Awakening','Courtyard','A\x20thin\x20log\x20book','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','Guard\x27s\x20Log\x20Book','Mage\x27s\x20Lair','outside','Barrens\x20Hideout','Barrens\x20Entrance','Golden\x20Key','Ancient\x20Gem','Golden\x20Chalice','secret123','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','A\x20small\x20surveillance\x20drone.','toString','Empty\x20vial','CorpSec\x20Plans','inside','west','1180221wQojCd','The\x20data\x20remains\x20encrypted.','Ares\x20Predator','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','Torture\x20Chamber','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','Rigger\x27s\x20Workshop','A\x20long-range\x20weapon.','Downtown\x20Seattle','NORTH','Corp\x20Enclave','shield','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','Riddle\x20Book','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','4TRfekc','A\x20clear\x20glass\x20vial.','east','Emblem\x20Shield','Gang\x20Insignia','45njcJIJ','Central\x20Chamber'];a57c=function(){return j;};return a57c();}
1
+ const a57h=a57d;function a57d(a,b){const c=a57c();return a57d=function(d,e){d=d-0xab;let f=c[d];return f;},a57d(a,b);}(function(a,b){const f=a57d,c=a();while(!![]){try{const d=parseInt(f(0xeb))/0x1*(-parseInt(f(0xe2))/0x2)+-parseInt(f(0x10d))/0x3+-parseInt(f(0xe0))/0x4+parseInt(f(0xab))/0x5*(parseInt(f(0xd4))/0x6)+-parseInt(f(0xc6))/0x7+-parseInt(f(0x117))/0x8*(parseInt(f(0xc3))/0x9)+parseInt(f(0xc1))/0xa*(parseInt(f(0x116))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a57c,0x2ecb2));function a57c(){const i=['holyGrail','A\x20key\x20made\x20of\x20pure\x20digital\x20energy.','document','Entrance\x20Hall','Downtown\x20Seattle','key','A\x20grand\x20entrance\x20with\x20huge\x20wooden\x20doors\x20behind\x20and\x20a\x20dimly\x20lit\x20corridor\x20ahead.','A\x20chalice\x20made\x20of\x20pure\x20gold.','Jackpoint\x20Login','The\x20gang\x20members\x20nod\x20and\x20let\x20you\x20pass\x20deeper\x20into\x20the\x20Barrens.','Glittering\x20treasures\x20from\x20floor\x20to\x20ceiling.','A\x20room\x20filled\x20with\x20potions,\x20beakers,\x20and\x20an\x20enchantment\x20circle.','A\x20hidden\x20alley\x20in\x20the\x20Barrens\x20where\x20shadowrunners\x20meet\x20up\x20for\x20covert\x20jobs.','The\x20high-security\x20corporate\x20zone,\x20complete\x20with\x20looming\x20skyscrapers\x20and\x20security\x20checkpoints.','A\x20small\x20surveillance\x20drone.','425rhViTk','Mage\x27s\x20Lair','decrypt','SOUTH','gem','Guard\x27s\x20Log\x20Book','Ancient\x20Gem','creditstick','Matrix\x20Data\x20Haven','Empty\x20vial','Nothing\x20happens.','When\x20is\x20a\x20door\x20not\x20a\x20door?\x20When\x20it\x27s\x20ajar!','The\x20legendary\x20Holy\x20Grail.','A\x20large\x20circular\x20room\x20with\x20four\x20doors.','A\x20digital\x20realm\x20with\x20information\x20streams\x20flowing\x20like\x20rivers.','Library','The\x20chest\x20unlocks\x20revealing\x20the\x20chalice.','A\x20hideout\x20filled\x20with\x20magical\x20artifacts,\x20wards,\x20and\x20a\x20few\x20summoned\x20spirits\x20guarding\x20the\x20place.','The\x20data\x20remains\x20encrypted.','outside','The\x20outskirts\x20of\x20the\x20lawless\x20Redmond\x20Barrens.\x20Gang\x20graffiti\x20is\x20everywhere.','Emblem\x20Shield','4882090KdOCun','book','558BmGfny','south','Alchemy\x20Lab','1769733FQQGLl','Armory','To\x20enter\x20deeper\x20into\x20the\x20Barrens,\x20you\x20must\x20show\x20allegiance\x20to\x20one\x20of\x20the\x20gangs.','Encrypted\x20Data\x20Key','The\x20gang\x20members\x20block\x20your\x20way,\x20suspicious\x20of\x20your\x20motives.','The\x20ghost\x20thanks\x20you\x20and\x20disappears,\x20leaving\x20behind\x20the\x20gem.','Secret\x20Passage','An\x20old\x20and\x20rusted\x20sword.','constructor','The\x20chest\x20has\x20a\x20gem-shaped\x20socket.','Sniper\x20Rifle','Torture\x20Chamber','A\x20dimly\x20lit\x20passage\x20with\x20walls\x20made\x20of\x20stone.','(((.+)+)+)+$','3756ecMElm','MCT\x20Fly-Spy','A\x20popular\x20heavy\x20pistol\x20among\x20shadowrunners.','A\x20serene\x20courtyard\x20with\x20a\x20gentle\x20fountain.\x20There\x20are\x20birds\x20bathing.','Central\x20Chamber','The\x20data\x20stream\x20reveals\x20a\x20location:\x20Downtown\x20Seattle.','The\x20gate\x20slowly\x20opens\x20revealing\x20the\x20path\x20to\x20the\x20Central\x20Chamber.','Rigger\x27s\x20Workshop','Unlock\x20the\x20encrypted\x20data\x20to\x20receive\x20your\x20next\x20mission.','basic','A\x20quiet\x20room\x20filled\x20with\x20bookshelves,\x20a\x20large\x20desk,\x20and\x20scattered\x20papers.','amulet','1379472qZlQpH','rifle','102682ilfPVG','west','A\x20clear\x20glass\x20vial.','NORTH','disenchant','Treasure\x20Room','Golden\x20Key','A\x20shield\x20with\x20the\x20emblem\x20of\x20the\x20dungeon.','A\x20powerful\x20amulet\x20said\x20to\x20wake\x20spirits\x20from\x20slumber.','7pkuJjZ','A\x20key\x20stained\x20with\x20old\x20blood.','Drones\x20and\x20vehicles\x20being\x20modified,\x20tools\x20everywhere,\x20and\x20a\x20rigger\x20jacked\x20in\x20to\x20a\x20command\x20console.','Watch\x20Tower','Rows\x20of\x20ancient\x20weapons\x20and\x20armors.','The\x20chest\x20remains\x20firmly\x20shut.','Central\x20Chamber\x20Key','Dark,\x20grim\x20with\x20chains\x20on\x20walls\x20and\x20an\x20eerie\x20silence.','Amulet\x20of\x20Awakening','insert\x20gem','Corp\x20Enclave','Barrens\x20Entrance','A\x20locked\x20glass\x20gun\x20cabinet\x20stands\x20here,\x20with\x20a\x20keypad\x20awaiting\x20a\x20password.','A\x20gem\x20radiating\x20a\x20mysterious\x20aura.','shield','show\x20loyalty','Study','A\x20long-range\x20weapon.','Riddle\x20Book','Detailed\x20security\x20plans\x20for\x20a\x20corporate\x20building.','toString','Break\x20the\x20ward\x20to\x20reveal\x20the\x20hidden\x20magical\x20artifact.','Chad\x20the\x20stupid\x20guard','east','The\x20ward\x20shatters,\x20revealing\x20the\x20amulet.','A\x20key\x20with\x20an\x20emblem\x20of\x20the\x20dungeon.','A\x20vast\x20library\x20filled\x20with\x20ancient\x20books.\x20[START]','search','The\x20rain-soaked\x20streets\x20of\x20Seattle\x20with\x20neon\x20lights\x20reflecting\x20off\x20wet\x20pavement.\x20The\x20distant\x20sound\x20of\x20corporate\x20security\x20drones\x20can\x20be\x20heard.','OUTSIDE','A\x20thin\x20log\x20book','weapon','A\x20shiny\x20golden\x20key\x20with\x20intricate\x20engravings.','That\x20passcode\x20is\x20incorrect','100287COsOka','Barrens\x20Hideout','Holy\x20Grail','down','Rusted\x20Sword','Blood-stained\x20Key','A\x20room\x20glittering\x20with\x20gold\x20and\x20jewels.','A\x20towering\x20structure\x20giving\x20a\x20bird’s-eye\x20view\x20of\x20the\x20surroundings.','Speak\x20the\x20word\x20to\x20free\x20the\x20ghost.','33usgPUp','43312lkpObO','north','inside'];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['toString']()[g(0x106)](g(0xd3))[g(0xff)]()[g(0xce)](a57a)[g(0x106)](g(0xd3));});a57a();export const rooms=[{'name':a57h(0xba),'description':a57h(0x105),'isStartRoom':!![],'items':[{'type':a57h(0x11f),'name':a57h(0xe8),'description':a57h(0x10b)},{'type':a57h(0xc2),'name':a57h(0xb0),'description':a57h(0x109),'content':a57h(0x101)}],'exits':[{'direction':'EAST','targetRoom':'Secret\x20Passage'}]},{'name':a57h(0xcc),'description':a57h(0xd2),'exits':[{'direction':a57h(0xe5),'targetRoom':'Treasure\x20Room','keyRequired':a57h(0xe8)},{'direction':a57h(0xae),'targetRoom':'Courtyard'}]},{'name':'Treasure\x20Room','description':a57h(0x113),'items':[{'type':a57h(0x11a),'name':a57h(0x10f),'description':a57h(0xb7)}]},{'name':'Courtyard','description':a57h(0xd7),'roomType':'OUTSIDE','exits':[{'direction':'UP','targetRoom':a57h(0xee)}]},{'name':'Watch\x20Tower','description':a57h(0x114),'roomType':a57h(0x108),'puzzle':{'requiredPhrase':'secret123','riddle':a57h(0xf7),'rewardItem':{'type':a57h(0xe1),'name':a57h(0xd0),'description':a57h(0xfc)},'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':a57h(0x10c)}}];export const dungeonConfig=[{'name':'Entrance\x20Hall','description':a57h(0x120),'isStartRoom':!![],'roomType':a57h(0x119),'puzzle':{'requiredPhrase':'open\x20sesame','riddle':'Speak\x20the\x20ancient\x20phrase\x20to\x20unlock\x20the\x20Central\x20Chamber.','rewardItem':{'type':'key','name':a57h(0xf1),'description':a57h(0x104)},'successMessage':a57h(0xda),'failureMessage':a57h(0xb5)},'exits':[{'direction':'north','targetRoom':a57h(0xfb)},{'direction':a57h(0x102),'targetRoom':a57h(0xd8),'keyRequired':'Central\x20Chamber\x20Key'}]},{'name':'Study','description':a57h(0xde),'roomType':a57h(0x119),'items':[{'type':a57h(0xc2),'name':a57h(0xfd),'description':'A\x20book\x20containing\x20a\x20mysterious\x20riddle.','content':a57h(0xb6)},{'type':'key','name':'Central\x20Chamber\x20Key','description':a57h(0x104)}],'exits':[{'direction':'south','targetRoom':a57h(0x11d)},{'direction':a57h(0x102),'targetRoom':'Alchemy\x20Lab'}]},{'name':a57h(0xc5),'description':a57h(0x125),'roomType':a57h(0x119),'items':[{'type':a57h(0xdd),'name':a57h(0xb4),'description':a57h(0xe4)}],'exits':[{'direction':a57h(0xe3),'targetRoom':a57h(0xfb)},{'direction':a57h(0x118),'targetRoom':'Armory'}]},{'name':a57h(0xc7),'description':a57h(0xef),'roomType':a57h(0x119),'items':[{'type':a57h(0xf9),'name':a57h(0xc0),'description':a57h(0xe9)},{'type':'sword','name':a57h(0x111),'description':a57h(0xcd)}],'exits':[{'direction':a57h(0xc4),'targetRoom':'Alchemy\x20Lab'},{'direction':'east','targetRoom':a57h(0xd8)}]},{'name':'Central\x20Chamber','description':a57h(0xb8),'roomType':a57h(0x119),'exits':[{'direction':'west','targetRoom':a57h(0xc7)},{'direction':'south','targetRoom':'Entrance\x20Hall'},{'direction':a57h(0x118),'targetRoom':'Torture\x20Chamber'},{'direction':a57h(0x102),'targetRoom':a57h(0xe7)}]},{'name':a57h(0xd1),'description':a57h(0xf2),'roomType':a57h(0x119),'items':[{'type':a57h(0x11f),'name':a57h(0x112),'description':a57h(0xec)}],'puzzle':{'requiredPhrase':'release','riddle':a57h(0x115),'rewardItem':{'type':a57h(0xaf),'name':a57h(0xb1),'description':a57h(0xf8)},'successMessage':a57h(0xcb),'failureMessage':'The\x20chains\x20rattle\x20ominously,\x20but\x20nothing\x20else\x20happens.'},'exits':[{'direction':a57h(0xc4),'targetRoom':'Central\x20Chamber'}]},{'name':a57h(0xe7),'description':a57h(0x124),'roomType':'inside','puzzle':{'requiredPhrase':a57h(0xf4),'riddle':a57h(0xcf),'rewardItem':{'type':'cup','name':'Golden\x20Chalice','description':a57h(0x121)},'successMessage':a57h(0xbb),'failureMessage':a57h(0xf0)},'exits':[{'direction':a57h(0xe3),'targetRoom':'Central\x20Chamber'}]}];export const shadowrunConfig=[{'name':'Jackpoint\x20Login','description':'A\x20virtual\x20portal\x20in\x20the\x20Matrix.\x20Glowing\x20neon\x20lights\x20everywhere,\x20with\x20digital\x20sprites\x20zipping\x20by.','isStartRoom':!![],'roomType':a57h(0x119),'exits':[{'direction':a57h(0x118),'targetRoom':'Downtown\x20Seattle'},{'direction':'up','targetRoom':'Matrix\x20Data\x20Haven'}]},{'name':a57h(0xb3),'description':a57h(0xb9),'roomType':'inside','puzzle':{'requiredPhrase':a57h(0xad),'riddle':a57h(0xdc),'rewardItem':{'type':'key','name':a57h(0xc9),'description':a57h(0x11b)},'successMessage':a57h(0xd9),'failureMessage':a57h(0xbd)},'exits':[{'direction':a57h(0x110),'targetRoom':a57h(0x122)}]},{'name':a57h(0x11e),'description':a57h(0x107),'roomType':a57h(0xbe),'exits':[{'direction':'south','targetRoom':a57h(0x122)},{'direction':a57h(0x102),'targetRoom':a57h(0xf6)},{'direction':a57h(0xe3),'targetRoom':a57h(0xf5)}]},{'name':a57h(0xf6),'description':a57h(0xbf),'roomType':'outside','puzzle':{'requiredPhrase':a57h(0xfa),'riddle':a57h(0xc8),'rewardItem':{'type':a57h(0x11f),'name':'Gang\x20Insignia','description':'A\x20badge\x20proving\x20your\x20loyalty\x20to\x20one\x20of\x20the\x20Barrens\x27\x20gangs.'},'successMessage':a57h(0x123),'failureMessage':a57h(0xca)},'exits':[{'direction':a57h(0xe3),'targetRoom':a57h(0x11e)},{'direction':a57h(0x118),'targetRoom':'Barrens\x20Hideout'}]},{'name':'Corp\x20Enclave','description':a57h(0x127),'roomType':a57h(0x119),'items':[{'type':a57h(0xb2),'name':'Corporate\x20Creditstick','description':'A\x20creditstick\x20loaded\x20with\x20nuyen.'},{'type':a57h(0x11c),'name':'CorpSec\x20Plans','description':a57h(0xfe)}],'exits':[{'direction':'east','targetRoom':a57h(0x11e)}]},{'name':a57h(0x10e),'description':a57h(0x126),'roomType':a57h(0xbe),'items':[{'type':a57h(0x10a),'name':'Ares\x20Predator','description':a57h(0xd6)}],'exits':[{'direction':a57h(0xc4),'targetRoom':a57h(0xf6)},{'direction':a57h(0x118),'targetRoom':a57h(0xac)},{'direction':a57h(0x102),'targetRoom':a57h(0xdb)}]},{'name':'Mage\x27s\x20Lair','description':a57h(0xbc),'roomType':a57h(0x119),'puzzle':{'requiredPhrase':a57h(0xe6),'riddle':a57h(0x100),'rewardItem':{'type':a57h(0xdf),'name':a57h(0xf3),'description':a57h(0xea)},'successMessage':a57h(0x103),'failureMessage':'The\x20magic\x20in\x20the\x20room\x20grows\x20more\x20oppressive,\x20resisting\x20your\x20efforts.'},'exits':[{'direction':'south','targetRoom':a57h(0x10e)}]},{'name':a57h(0xdb),'description':a57h(0xed),'roomType':'inside','items':[{'type':'drone','name':a57h(0xd5),'description':a57h(0x128)}],'exits':[{'direction':a57h(0xe3),'targetRoom':a57h(0x10e)}]}];
@@ -1 +1 @@
1
- var a58h=a58d;(function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0x189))/0x1*(-parseInt(f(0x181))/0x2)+-parseInt(f(0x18c))/0x3*(-parseInt(f(0x18e))/0x4)+parseInt(f(0x18b))/0x5*(parseInt(f(0x19a))/0x6)+-parseInt(f(0x182))/0x7*(parseInt(f(0x192))/0x8)+-parseInt(f(0x19c))/0x9+-parseInt(f(0x1a4))/0xa+parseInt(f(0x193))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0xb06ec));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(0x199)]()[g(0x198)](g(0x1a0))[g(0x199)]()[g(0x197)](a58a)[g(0x198)](g(0x1a0));});a58a();function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x181;var f=c[d];return f;},a58d(a,b);}import{EventEmitter}from'events';export class AbstractScene{['rooms'];['player'];[a58h(0x1a3)];[a58h(0x187)];}export class AbstractRoom extends EventEmitter{[a58h(0x186)];[a58h(0x18d)];['exits'];[a58h(0x196)];[a58h(0x194)];[a58h(0x183)];[a58h(0x19d)];}export class AbstractDoor{[a58h(0x191)];[a58h(0x188)];['isLocked'];[a58h(0x18a)];[a58h(0x186)];['logger'];[a58h(0x19f)];}export class AbstractInventory{['items'];[a58h(0x1a3)];}function a58c(){var i=['932eWgMPa','_equipment','_inventory','roomA','7847136SpXgny','20823418ocyytE','puzzle','_playerName','inventory','constructor','search','toString','17958EAPvCX','solved','8881353xBAPyG','isStartRoom','size','isLockable','(((.+)+)+)+$','weight','color','logger','8073090aNyZbj','54142XfDafg','7URNDXH','roomType','_currentLocation','_logger','name','characterLocations','roomB','31Lfxuhm','unlockItemOrSolution','1695RDpzPf','18402ByaFiF','description'];a58c=function(){return i;};return a58c();}export class AbstractItem{['uuid'];['name'];[a58h(0x18d)];[a58h(0x19e)];['category'];['shape'];[a58h(0x1a2)];['texture'];['rating'];[a58h(0x1a1)];}export class AbstractPlayer{[a58h(0x195)];[a58h(0x184)];[a58h(0x190)];[a58h(0x18f)];['_maxCarryingWeight'];[a58h(0x185)];}export class AbstractPuzzle{['logger'];[a58h(0x19b)];}
1
+ var a58i=a58d;function a58d(a,b){var c=a58c();return a58d=function(d,e){d=d-0x19f;var f=c[d];return f;},a58d(a,b);}function a58c(){var j=['texture','logger','unlockItemOrSolution','characterLocations','name','isLockable','2585616YTwHsd','8862741wzFWxp','puzzle','toString','38187EHaUFv','player','8PmklPg','solved','1393395YSrRSu','description','12498HtNJYP','category','_maxCarryingWeight','isStartRoom','1164494PVkaBK','roomType','weight','color','roomB','items','859287nrXSsv','_logger','search','isLocked','uuid','1673LYNiyv','rooms','10XSThRq','roomA','rating','apply','(((.+)+)+)+$','_currentLocation','constructor'];a58c=function(){return j;};return a58c();}(function(a,b){var f=a58d,c=a();while(!![]){try{var d=parseInt(f(0x1ab))/0x1+-parseInt(f(0x1b5))/0x2+-parseInt(f(0x1bb))/0x3*(parseInt(f(0x1ad))/0x4)+parseInt(f(0x1af))/0x5+-parseInt(f(0x1b1))/0x6*(-parseInt(f(0x1c0))/0x7)+-parseInt(f(0x1a7))/0x8+parseInt(f(0x1a8))/0x9*(parseInt(f(0x1c2))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a58c,0x4e679));var a58b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a58d;if(c){var e=c[g(0x1c5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a58a=a58b(this,function(){var h=a58d;return a58a[h(0x1aa)]()[h(0x1bd)](h(0x1c6))[h(0x1aa)]()[h(0x1a0)](a58a)[h(0x1bd)]('(((.+)+)+)+$');});a58a();import{EventEmitter}from'events';export class AbstractScene{[a58i(0x1c1)];[a58i(0x1ac)];['logger'];[a58i(0x1a4)];}export class AbstractRoom extends EventEmitter{[a58i(0x1a5)];[a58i(0x1b0)];['exits'];['inventory'];[a58i(0x1a9)];[a58i(0x1b6)];[a58i(0x1b4)];}export class AbstractDoor{[a58i(0x1c3)];[a58i(0x1b9)];[a58i(0x1be)];[a58i(0x1a3)];[a58i(0x1a5)];[a58i(0x1a2)];[a58i(0x1a6)];}export class AbstractInventory{[a58i(0x1ba)];[a58i(0x1a2)];}export class AbstractItem{[a58i(0x1bf)];[a58i(0x1a5)];[a58i(0x1b0)];['size'];[a58i(0x1b2)];['shape'];[a58i(0x1b8)];[a58i(0x1a1)];[a58i(0x1c4)];[a58i(0x1b7)];}export class AbstractPlayer{['_playerName'];[a58i(0x19f)];['_inventory'];['_equipment'];[a58i(0x1b3)];[a58i(0x1bc)];}export class AbstractPuzzle{[a58i(0x1a2)];[a58i(0x1ae)];}
@@ -1 +1 @@
1
- (function(a,b){var k=a59d,c=a();while(!![]){try{var d=parseInt(k(0x166))/0x1+-parseInt(k(0x194))/0x2+parseInt(k(0x149))/0x3*(parseInt(k(0x168))/0x4)+parseInt(k(0x142))/0x5*(parseInt(k(0x158))/0x6)+-parseInt(k(0x157))/0x7*(parseInt(k(0x192))/0x8)+-parseInt(k(0x18d))/0x9+parseInt(k(0x17a))/0xa*(parseInt(k(0x18a))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x319d8));export var Size;(function(a){var l=a59d;a['Tiny']=l(0x152),a[l(0x19a)]=l(0x14c),a['Medium']=l(0x150),a[l(0x1a0)]=l(0x1a4),a[l(0x184)]='very\x20large';}(Size||(Size={})));export var Rating;(function(a){var m=a59d;a[m(0x14e)]=m(0x183),a['Rare']='rare',a['Legendary']=m(0x16b);}(Rating||(Rating={})));export var Category;(function(c){var o=a59d,d=(function(){var f=!![];return function(g,h){var i=f?function(){if(h){var j=h['apply'](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var n=a59d;return e[n(0x17c)]()[n(0x165)](n(0x175))[n(0x17c)]()[n(0x160)](e)[n(0x165)](n(0x175));});e(),c[o(0x153)]='weapon',c['Shield']=o(0x17e),c[o(0x198)]=o(0x15c),c['Gloves']=o(0x181),c['Helmet']='helmet',c['Hat']=o(0x18b),c[o(0x1a1)]=o(0x195),c[o(0x171)]=o(0x179),c[o(0x18f)]=o(0x173),c[o(0x169)]=o(0x167),c[o(0x141)]=o(0x1a5),c[o(0x159)]=o(0x163),c['Unknown']=o(0x19f);}(Category||(Category={})));function a59c(){var u=['orange','cave','cup','south','search','180489cVqRdh','body\x20armor','4lBasxY','BodyArmor','TOWER','legendary','Orange','Rectangle','Grey','west','purple','LegArmor','OUTSIDE','arm\x20armor','DOWN','(((.+)+)+)+$','down','square','blade','leg\x20armor','1790xHqoeI','BEACH','toString','Blue','shield','yellow','Triangle','gloves','grey','common','VeryLarge','blue','Metallic','Fuzzy','inside','tower','17534cUZnkW','hat','north','1913409haUPaF','CAVE','ArmArmor','MOUNTAIN','Square','24COQnjj','Red','137338AyfmSB','boots','rifle','Gold','Key','WEST','Small','underground','fuzzy','Grainy','Yellow','unknown','Large','Boots','Green','green','large','book','Book','92585FPNEyU','red','rectangle','DESERT','NORTH','SOUTH','triangle','149367CjIIwy','Circle','bumpy','small','gold','Common','Purple','medium','SEA','tiny','Weapon','INSIDE','circle','smooth','202209tLCbth','18rnhSYM','Cup','desert','Smooth','key','brown','UNDERGROUND','metallic','constructor'];a59c=function(){return u;};return a59c();}export var Shape;(function(a){var p=a59d;a[p(0x14a)]=p(0x155),a[p(0x191)]=p(0x177),a[p(0x180)]=p(0x148),a[p(0x16d)]=p(0x144),a['Blade']=p(0x178),a['Rifle']=p(0x196);}(Shape||(Shape={})));export var Color;(function(a){var q=a59d;a[q(0x193)]=q(0x143),a[q(0x17d)]=q(0x185),a[q(0x1a2)]=q(0x1a3),a[q(0x19e)]=q(0x17f),a[q(0x16c)]=q(0x161),a[q(0x14f)]=q(0x170),a[q(0x16e)]=q(0x182),a['Brown']=q(0x15d),a[q(0x197)]=q(0x14d);}(Color||(Color={})));function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x141;var f=c[d];return f;},a59d(a,b);}export var Texture;(function(a){var r=a59d;a[r(0x15b)]=r(0x156),a['Rough']='rough',a['Bumpy']=r(0x14b),a[r(0x187)]=r(0x19c),a[r(0x19d)]='grainy',a[r(0x186)]=r(0x15f);}(Texture||(Texture={})));export var RoomType;(function(a){var s=a59d;a[s(0x154)]=s(0x188),a[s(0x172)]='outside',a[s(0x15e)]=s(0x19b),a[s(0x18e)]=s(0x162),a[s(0x16a)]=s(0x189),a['FOREST']='forest',a[s(0x145)]=s(0x15a),a[s(0x190)]='mountain',a[s(0x17b)]='beach',a[s(0x151)]='sea';}(RoomType||(RoomType={})));export var Direction;(function(a){var t=a59d;a[t(0x146)]=t(0x18c),a['EAST']='east',a[t(0x147)]=t(0x164),a[t(0x199)]=t(0x16f),a['UP']='up',a[t(0x174)]=t(0x176);}(Direction||(Direction={})));
1
+ (function(a,b){var k=a59d,c=a();while(!![]){try{var d=-parseInt(k(0x21b))/0x1*(parseInt(k(0x219))/0x2)+-parseInt(k(0x1e5))/0x3+-parseInt(k(0x1f5))/0x4+-parseInt(k(0x1dd))/0x5*(-parseInt(k(0x20a))/0x6)+-parseInt(k(0x1cc))/0x7+-parseInt(k(0x1ef))/0x8+-parseInt(k(0x1d5))/0x9*(-parseInt(k(0x1c7))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a59c,0x1cac8));export var Size;(function(a){var l=a59d;a[l(0x1d0)]=l(0x210),a['Small']='small',a[l(0x1e8)]=l(0x214),a[l(0x1e1)]=l(0x20b),a[l(0x1ce)]=l(0x1ff);}(Size||(Size={})));function a59c(){var v=['FOREST','purple','Rifle','unknown','102CqrgqR','large','DOWN','toString','TOWER','red','tiny','grey','Fuzzy','orange','medium','body\x20armor','metallic','desert','Rough','2uvLWDE','helmet','110727LZaPJS','Red','mountain','Common','NORTH','gloves','EAST','Helmet','UNDERGROUND','book','841910VeJUio','MOUNTAIN','Gloves','Cup','west','1250907BygCnQ','Metallic','VeryLarge','green','Tiny','tower','outside','square','circle','63RgoRTd','Smooth','constructor','blue','common','beach','SEA','sea','28430boMWGH','inside','Rectangle','smooth','Large','search','LegArmor','Rare','289122yacGhE','WEST','Brown','Medium','rough','rare','blade','fuzzy','CAVE','Grey','1343928gAgxFW','apply','Hat','underground','Bumpy','north','59032rlAVbN','east','down','Grainy','Shield','Boots','BEACH','INSIDE','hat','leg\x20armor','very\x20large','weapon','Triangle','arm\x20armor','gold','(((.+)+)+)+$','yellow'];a59c=function(){return v;};return a59c();}export var Rating;(function(a){var m=a59d;a[m(0x21e)]=m(0x1d9),a[m(0x1e4)]=m(0x1ea),a['Legendary']='legendary';}(Rating||(Rating={})));export var Category;(function(a){var n=a59d;a['Weapon']=n(0x200),a[n(0x1f9)]='shield',a['Key']='key',a[n(0x1c9)]=n(0x220),a[n(0x1c4)]=n(0x21a),a[n(0x1f1)]=n(0x1fd),a[n(0x1fa)]='boots',a[n(0x1e3)]=n(0x1fe),a['ArmArmor']=n(0x202),a['BodyArmor']=n(0x215),a['Book']=n(0x1c6),a[n(0x1ca)]='cup',a['Unknown']=n(0x209);}(Category||(Category={})));export var Shape;(function(c){var q=a59d,d=(function(){var f=!![];return function(g,h){var i=f?function(){var o=a59d;if(h){var j=h[o(0x1f0)](g,arguments);return h=null,j;}}:function(){};return f=![],i;};}()),e=d(this,function(){var p=a59d;return e[p(0x20d)]()['search']('(((.+)+)+)+$')[p(0x20d)]()[p(0x1d7)](e)[p(0x1e2)](p(0x204));});e(),c['Circle']=q(0x1d4),c['Square']=q(0x1d3),c[q(0x201)]='triangle',c[q(0x1df)]='rectangle',c['Blade']=q(0x1eb),c[q(0x208)]='rifle';}(Shape||(Shape={})));export var Color;(function(a){var r=a59d;a[r(0x21c)]=r(0x20f),a['Blue']=r(0x1d8),a['Green']=r(0x1cf),a['Yellow']=r(0x205),a['Orange']=r(0x213),a['Purple']=r(0x207),a[r(0x1ee)]=r(0x211),a[r(0x1e7)]='brown',a['Gold']=r(0x203);}(Color||(Color={})));export var Texture;function a59d(a,b){var c=a59c();return a59d=function(d,e){d=d-0x1c3;var f=c[d];return f;},a59d(a,b);}(function(a){var s=a59d;a[s(0x1d6)]=s(0x1e0),a[s(0x218)]=s(0x1e9),a[s(0x1f3)]='bumpy',a[s(0x212)]=s(0x1ec),a[s(0x1f8)]='grainy',a[s(0x1cd)]=s(0x216);}(Texture||(Texture={})));export var RoomType;(function(a){var t=a59d;a[t(0x1fc)]=t(0x1de),a['OUTSIDE']=t(0x1d2),a[t(0x1c5)]=t(0x1f2),a[t(0x1ed)]='cave',a[t(0x20e)]=t(0x1d1),a[t(0x206)]='forest',a['DESERT']=t(0x217),a[t(0x1c8)]=t(0x21d),a[t(0x1fb)]=t(0x1da),a[t(0x1db)]=t(0x1dc);}(RoomType||(RoomType={})));export var Direction;(function(a){var u=a59d;a[u(0x21f)]=u(0x1f4),a[u(0x1c3)]=u(0x1f6),a['SOUTH']='south',a[u(0x1e6)]=u(0x1cb),a['UP']='up',a[u(0x20c)]=u(0x1f7);}(Direction||(Direction={})));
@@ -1 +1 @@
1
- (function(a,b){var f=a60d,c=a();while(!![]){try{var d=-parseInt(f(0x11d))/0x1*(-parseInt(f(0x122))/0x2)+-parseInt(f(0x121))/0x3+-parseInt(f(0x11a))/0x4*(parseInt(f(0x124))/0x5)+-parseInt(f(0x123))/0x6+parseInt(f(0x119))/0x7+-parseInt(f(0x11c))/0x8*(parseInt(f(0x125))/0x9)+parseInt(f(0x11f))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xe96af));function a60c(){var h=['7929426lQhLtE','7430HtNhQQ','27OOxMmq','constructor','7295414QNenxf','4000XaDVPa','search','68712rlPrOm','683UwPwTV','toString','21934760qxTFyA','(((.+)+)+)+$','2596605SZRgaB','4156iHWDvx'];a60c=function(){return h;};return a60c();}function a60d(a,b){var c=a60c();return a60d=function(d,e){d=d-0x118;var f=c[d];return f;},a60d(a,b);}var a60b=(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;};}()),a60a=a60b(this,function(){var g=a60d;return a60a[g(0x11e)]()[g(0x11b)]('(((.+)+)+)+$')[g(0x11e)]()[g(0x118)](a60a)[g(0x11b)](g(0x120));});a60a();export{};
1
+ (function(a,b){var f=a60d,c=a();while(!![]){try{var d=-parseInt(f(0x1dc))/0x1+-parseInt(f(0x1e6))/0x2+-parseInt(f(0x1e9))/0x3*(parseInt(f(0x1e4))/0x4)+parseInt(f(0x1e7))/0x5*(parseInt(f(0x1e2))/0x6)+-parseInt(f(0x1e1))/0x7*(parseInt(f(0x1e5))/0x8)+parseInt(f(0x1e8))/0x9+parseInt(f(0x1de))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a60c,0xbf418));var a60b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a60d;if(c){var e=c[g(0x1dd)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a60a=a60b(this,function(){var h=a60d;return a60a[h(0x1e0)]()[h(0x1df)](h(0x1e3))[h(0x1e0)]()['constructor'](a60a)[h(0x1df)](h(0x1e3));});function a60c(){var i=['search','toString','3249267HHvFeF','202980BUletk','(((.+)+)+)+$','4793104CQzXZE','8rXBMdb','754332UFQGOu','225KevIEv','1798947OlQnkO','3soSEWz','1109087rvfaOF','apply','22098610trkNXP'];a60c=function(){return i;};return a60c();}a60a();function a60d(a,b){var c=a60c();return a60d=function(d,e){d=d-0x1dc;var f=c[d];return f;},a60d(a,b);}export{};
@@ -1 +1 @@
1
- function a61d(a,b){var c=a61c();return a61d=function(d,e){d=d-0x130;var f=c[d];return f;},a61d(a,b);}function a61c(){var h=['10bvOPul','556PxbZXE','5676939SpmfzY','57592swpPpc','54LnAeHi','133784stliFW','search','48cbqiDn','3691303pRWyRl','constructor','toString','700djyQfg','8943840mudPgF','(((.+)+)+)+$','3476310DWnMMr'];a61c=function(){return h;};return a61c();}(function(a,b){var f=a61d,c=a();while(!![]){try{var d=-parseInt(f(0x13c))/0x1*(-parseInt(f(0x132))/0x2)+-parseInt(f(0x135))/0x3*(-parseInt(f(0x134))/0x4)+-parseInt(f(0x131))/0x5*(-parseInt(f(0x130))/0x6)+-parseInt(f(0x136))/0x7*(parseInt(f(0x138))/0x8)+parseInt(f(0x133))/0x9+-parseInt(f(0x13d))/0xa+-parseInt(f(0x139))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0xdb674));var a61b=(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;};}()),a61a=a61b(this,function(){var g=a61d;return a61a[g(0x13b)]()[g(0x137)](g(0x13e))[g(0x13b)]()[g(0x13a)](a61a)['search'](g(0x13e));});a61a();export{};
1
+ function a61c(){var i=['11770pSseYb','979568VHZZAb','582mjmCEe','1296100pKHUPI','26103BHwzmA','69816cgEoBW','4580fsktew','apply','search','1926909Nlgsmz','62119IfdPmF','(((.+)+)+)+$','constructor','toString','2HSXFxf','20aMqCMb'];a61c=function(){return i;};return a61c();}(function(a,b){var f=a61d,c=a();while(!![]){try{var d=-parseInt(f(0xe0))/0x1*(parseInt(f(0xe4))/0x2)+parseInt(f(0xeb))/0x3*(-parseInt(f(0xe5))/0x4)+parseInt(f(0xe9))/0x5+parseInt(f(0xe8))/0x6*(-parseInt(f(0xea))/0x7)+-parseInt(f(0xe7))/0x8+parseInt(f(0xdf))/0x9+parseInt(f(0xdc))/0xa*(parseInt(f(0xe6))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a61c,0x496c7));function a61d(a,b){var c=a61c();return a61d=function(d,e){d=d-0xdc;var f=c[d];return f;},a61d(a,b);}var a61b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a61d;if(c){var e=c[g(0xdd)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a61a=a61b(this,function(){var h=a61d;return a61a['toString']()[h(0xde)](h(0xe1))[h(0xe3)]()[h(0xe2)](a61a)[h(0xde)](h(0xe1));});a61a();export{};
@@ -1 +1 @@
1
- const a62G=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=parseInt(y(0xd2))/0x1+-parseInt(y(0xa7))/0x2*(parseInt(y(0xcc))/0x3)+parseInt(y(0xc5))/0x4*(parseInt(y(0xc1))/0x5)+parseInt(y(0x87))/0x6*(parseInt(y(0x9d))/0x7)+-parseInt(y(0xa1))/0x8*(parseInt(y(0xd4))/0x9)+parseInt(y(0xc4))/0xa*(parseInt(y(0xbc))/0xb)+-parseInt(y(0xc8))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0x62c5c));import a62e from'blessed';import{capitalCase}from'change-case';import a62f from'./game.js';import{RoomType}from'./types/enums.js';import{Player}from'./models/player.js';function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x81;let f=c[d];return f;},a62d(a,b);}import{Door}from'./models/door.js';import{Logger}from'./utilities/logger.js';export async function main(c,d,e){const A=a62d,f=(function(){let h=!![];return function(i,j){const k=h?function(){if(j){const l=j['apply'](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const z=a62d;return g[z(0xda)]()[z(0x93)](z(0x81))[z(0xda)]()[z(0x9e)](g)[z(0x93)]('(((.+)+)+)+$');});g();try{const h=a62e[A(0x8d)]({'smartCSR':!![],'title':A(0x92)}),i=a62e[A(0xa9)]({'top':'0%','left':A(0xae),'width':A(0x8b),'height':A(0xdc),'border':{'type':A(0xe0)},'label':A(0x98),'content':'Your\x20items\x20will\x20be\x20listed\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0xb4)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const B=A,u=t[B(0xc3)]()[B(0xbf)](v=>v[B(0x86)]);i[B(0xb0)](u[B(0x82)]('\x0a')),h[B(0xb8)]();};h[A(0x91)](i);const k=a62e['box']({'top':A(0xdc),'left':A(0xae),'width':A(0x8b),'height':A(0x8b),'border':{'type':'line'},'label':'\x20Equipment\x20','content':A(0xcf),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[A(0x91)](k);const l=t=>{const C=A;k[C(0xb0)](C(0x95)+(t[C(0xd1)]?t['head'][C(0x86)]:C(0xb6))+'\x0a'+(C(0xc6)+(t[C(0xcd)]?t['torso'][C(0x86)]:C(0xb6))+'\x0a')+('Legs:\x20'+(t[C(0x8c)]?t[C(0x8c)][C(0x86)]:C(0xb6))+'\x0a')+(C(0x90)+(t['feet']?t[C(0xc9)][C(0x86)]:C(0xb6))+'\x0a')+(C(0x85)+(t[C(0xa2)]?t[C(0xa2)][C(0x86)]:C(0xb6))+'\x0a')+('Gloves:\x20'+(t['gloves']?t[C(0xcb)][C(0x86)]:'None')+'\x0a')+('Left\x20Hand:\x20'+(t[C(0x99)]?t[C(0x99)][C(0x86)]:'None')+'\x0a')+(C(0x94)+(t[C(0x8a)]?t['rightHand'][C(0x86)]:C(0xb6))+'\x0a')),h[C(0xb8)]();},m=a62e[A(0xa9)]({'top':A(0x9a),'left':'75%','width':A(0x8b),'height':A(0xde),'border':{'type':A(0xe0)},'label':A(0xdf),'content':A(0xb2),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0xb4)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[A(0x91)](m);const n=t=>{const D=A;let u=D(0xab)+t[D(0x86)]+'\x0a\x0a';u+='-----\x20Exits\x20------\x0a',t['exits'][D(0x8e)]>0x0?t[D(0xc0)][D(0x84)]((v,w)=>{const E=D;if(v instanceof Door){const x=v[E(0xd6)](t);x['roomType']===RoomType[E(0xbd)]?u+=capitalCase(w)+':\x20'+x[E(0x86)]:u+=capitalCase(w)+':\x20'+v[E(0x86)];if(v[E(0xc2)]())u+='\x20(Locked)';else v[E(0x97)]()&&(u+=E(0xb5));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+=D(0xb3),m[D(0xb0)](u),h[D(0xb8)]();},o=a62e[A(0xa9)]({'id':'logBox','top':'0%','left':'0%','width':'75%','height':'90%','border':{'type':A(0xe0)},'label':A(0xca),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[A(0xaa)](A(0xa6)),h[A(0x91)](o);const p=a62e[A(0xa3)]({'bottom':0x0,'left':0x0,'width':A(0xd5),'height':A(0xbb),'tags':!![],'border':{'type':A(0xe0)},'style':{'fg':A(0xd8),'border':{'fg':A(0xa4)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h[A(0x91)](p),h[A(0xdd)]([A(0xa5),A(0xd0)],()=>process['exit'](0x0)),p['focus'](),h[A(0xb8)]();const q=Logger[A(0xd7)](e[A(0xb9)],h),r=new Player({'playerName':c});q[A(0x9f)](A(0xc7));const s=a62f[A(0xd7)](r,d);o[A(0xb0)](s['getWelcomeMessage']()),l(s[A(0xd3)]['equipment']),j(s[A(0xd3)][A(0xa8)]),n(s[A(0xd3)]['currentLocation']),p['key']([A(0xb1)],async()=>{const F=A,t=p[F(0xaf)](),u=s[F(0x83)](t);(t[F(0xd9)]('\x20')[0x0]==='take'||F(0xce)||'unequip')&&(j(s[F(0xd3)][F(0xa8)]),l(s['player']['equipment'])),(t[F(0xd9)]('\x20')[0x0]==='go'||F(0xb7)||F(0x9c))&&n(s[F(0xd3)][F(0x96)]),t[F(0xd9)]('\x20')[0x0]===F(0x8f)&&o[F(0xb0)](''),u===null&&(console[F(0xa0)](F(0xac)),h[F(0xb8)](),q['write'](F(0xbe)),process[F(0x9b)](0x0)),o[F(0xad)](u),o['scroll'](0x1),p[F(0xdb)](),p['focus'](),h[F(0xb8)]();});}catch(t){console[A(0xa0)](t),process[A(0x9b)](0x1);}}const args=process[a62G(0x89)][a62G(0xba)](0x2);main(args[0x0],JSON['parse'](args[0x1]),JSON[a62G(0x88)](args[0x2]));function a62c(){const H=['equip','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','C-c','head','118342eBqIpO','player','9MKegsd','100%','getOtherSide','getInstance','white','split','toString','clearValue','45%','key','20%','\x20Map\x20','line','(((.+)+)+)+$','join','handleInput','forEach','Arms:\x20','name','56136BocPWC','parse','argv','rightHand','25%','legs','screen','size','clear','Feet:\x20','append','Side\x20Quest\x20Adventure\x20Game','search','Right\x20Hand:\x20','Head:\x20','currentLocation','checkIfLockable','\x20Inventory\x20','leftHand','70%','exit','unlock','497UtKoJo','constructor','write','log','3387152wkZsgU','arms','textbox','cyan','escape','mousemove','32TdPquy','inventory','box','removeAllListeners','Currently\x20in:\x20','Thanks\x20for\x20playing!','pushLine','75%','getValue','setContent','enter','Available\x20exits\x20will\x20be\x20shown\x20here...','\x0aThere\x20are\x20no\x20exits\x20here.','yellow','\x20(Unlocked)','None','lock','render','logFilePath','slice','10%','342375XGVTOt','OUTSIDE','<<<<<<<<---------\x20Terminating\x20game','map','exits','10mIQnJm','checkIfLocked','getAllItems','200aLMWrA','921572qaDQwr','Torso:\x20','----->>>>>>\x20Initializing\x20Game','5151960MzJbMF','feet','\x20Game\x20Log\x20','gloves','114114lEuInA','torso'];a62c=function(){return H;};return a62c();}
1
+ const a62G=a62d;(function(a,b){const y=a62d,c=a();while(!![]){try{const d=-parseInt(y(0x208))/0x1*(parseInt(y(0x1d4))/0x2)+-parseInt(y(0x1cd))/0x3*(-parseInt(y(0x1fd))/0x4)+parseInt(y(0x1da))/0x5+parseInt(y(0x1f9))/0x6*(parseInt(y(0x1bf))/0x7)+parseInt(y(0x1ba))/0x8*(-parseInt(y(0x1b0))/0x9)+parseInt(y(0x1fa))/0xa*(parseInt(y(0x207))/0xb)+-parseInt(y(0x1e3))/0xc*(parseInt(y(0x205))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a62c,0x73fc6));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 a62c(){const H=['1885wObWpN','box','115643kQlQzF','1ZxCczQ','90%','key','getAllItems','3161727HULNUU','Side\x20Quest\x20Adventure\x20Game','join','Thanks\x20for\x20playing!','None','\x20Map\x20','head','25%','Right\x20Hand:\x20','setContent','8tZvOHB','rightHand','OUTSIDE','write','handleInput','105PLcuYj','append','removeAllListeners','parse','45%','exits','clearValue','Feet:\x20','70%','(((.+)+)+)+$','line','map','currentLocation','arms','3ULtfWf','\x20(Unlocked)','feet','\x20Equipment\x20','white','getOtherSide','C-c','1659964VXQKMs','gloves','leftHand','pushLine','search','torso','3072200gUnkXP','focus','equip','unequip','20%','Legs:\x20','inventory','render','getWelcomeMessage','57804ujDSNw','75%','player','Your\x20equipped\x20items\x20will\x20be\x20listed\x20here...','getInstance','size','getValue','\x20Game\x20Log\x20','equipment','10%','Currently\x20in:\x20','lock','exit','toString','mousemove','constructor','take','legs','cyan','Gloves:\x20','Arms:\x20','log','157074abKyLx','380uqBXbr','name','-----\x20Exits\x20------\x0a','3792836cfSYnA','slice','textbox','Available\x20exits\x20will\x20be\x20shown\x20here...','Torso:\x20','checkIfLocked','checkIfLockable','yellow'];a62c=function(){return H;};return a62c();}function a62d(a,b){const c=a62c();return a62d=function(d,e){d=d-0x1b0;let f=c[d];return f;},a62d(a,b);}export async function main(c,d,e){const A=a62d,f=(function(){let h=!![];return function(i,j){const k=h?function(){if(j){const l=j['apply'](i,arguments);return j=null,l;}}:function(){};return h=![],k;};}()),g=f(this,function(){const z=a62d;return g['toString']()[z(0x1d8)](z(0x1c8))[z(0x1f0)]()[z(0x1f2)](g)[z(0x1d8)](z(0x1c8));});g();try{const h=a62e['screen']({'smartCSR':!![],'title':A(0x1b1)}),i=a62e['box']({'top':'0%','left':A(0x1e4),'width':A(0x1b7),'height':A(0x1c3),'border':{'type':A(0x1c9)},'label':'\x20Inventory\x20','content':'Your\x20items\x20will\x20be\x20listed\x20here...','tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0x204)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]}),j=t=>{const B=A,u=t[B(0x20b)]()[B(0x1ca)](v=>v[B(0x1fb)]);i[B(0x1b9)](u[B(0x1b2)]('\x0a')),h['render']();};h[A(0x1c0)](i);const k=a62e[A(0x206)]({'top':A(0x1c3),'left':A(0x1e4),'width':A(0x1b7),'height':A(0x1b7),'border':{'type':A(0x1c9)},'label':A(0x1d0),'content':A(0x1e6),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[A(0x1c0)](k);const l=t=>{const C=A;k[C(0x1b9)]('Head:\x20'+(t[C(0x1b6)]?t[C(0x1b6)][C(0x1fb)]:C(0x1b4))+'\x0a'+(C(0x201)+(t[C(0x1d9)]?t[C(0x1d9)][C(0x1fb)]:C(0x1b4))+'\x0a')+(C(0x1df)+(t[C(0x1f4)]?t['legs'][C(0x1fb)]:C(0x1b4))+'\x0a')+(C(0x1c6)+(t[C(0x1cf)]?t['feet'][C(0x1fb)]:C(0x1b4))+'\x0a')+(C(0x1f7)+(t[C(0x1cc)]?t[C(0x1cc)][C(0x1fb)]:C(0x1b4))+'\x0a')+(C(0x1f6)+(t[C(0x1d5)]?t[C(0x1d5)][C(0x1fb)]:C(0x1b4))+'\x0a')+('Left\x20Hand:\x20'+(t['leftHand']?t[C(0x1d6)]['name']:C(0x1b4))+'\x0a')+(C(0x1b8)+(t[C(0x1bb)]?t['rightHand'][C(0x1fb)]:C(0x1b4))+'\x0a')),h[C(0x1e1)]();},m=a62e[A(0x206)]({'top':A(0x1c7),'left':A(0x1e4),'width':'25%','height':A(0x1de),'border':{'type':A(0x1c9)},'label':A(0x1b5),'content':A(0x200),'tags':!![],'scrollable':!![],'scrollbar':{'ch':'\x20','track':{'bg':'yellow'},'style':{'inverse':!![]}},'keys':!![],'mouse':!![]});h[A(0x1c0)](m);const n=t=>{const D=A;let u=D(0x1ed)+t['name']+'\x0a\x0a';u+=D(0x1fc),t[D(0x1c4)][D(0x1e8)]>0x0?t[D(0x1c4)]['forEach']((v,w)=>{const E=D;if(v instanceof Door){const x=v[E(0x1d2)](t);x['roomType']===RoomType[E(0x1bc)]?u+=capitalCase(w)+':\x20'+x[E(0x1fb)]:u+=capitalCase(w)+':\x20'+v[E(0x1fb)];if(v[E(0x202)]())u+='\x20(Locked)';else v[E(0x203)]()&&(u+=E(0x1ce));u+='\x0a';}else u+=capitalCase(w)+'\x0a';}):u+='\x0aThere\x20are\x20no\x20exits\x20here.',m[D(0x1b9)](u),h[D(0x1e1)]();},o=a62e['box']({'id':'logBox','top':'0%','left':'0%','width':A(0x1e4),'height':A(0x209),'border':{'type':A(0x1c9)},'label':A(0x1ea),'scrollable':!![],'alwaysScroll':!![],'scrollbar':{'ch':'\x20','track':{'bg':A(0x204)},'style':{'inverse':!![]}},'keys':!![],'mouse':!![],'tags':!![]});o[A(0x1c1)](A(0x1f1)),h[A(0x1c0)](o);const p=a62e[A(0x1ff)]({'bottom':0x0,'left':0x0,'width':'100%','height':A(0x1ec),'tags':!![],'border':{'type':A(0x1c9)},'style':{'fg':A(0x1d1),'border':{'fg':A(0x1f5)}},'keys':!![],'mouse':!![],'inputOnFocus':!![],'vi':!![]});h['append'](p),h[A(0x20a)](['escape',A(0x1d3)],()=>process[A(0x1ef)](0x0)),p[A(0x1db)](),h[A(0x1e1)]();const q=Logger[A(0x1e7)](e['logFilePath'],h),r=new Player({'playerName':c});q[A(0x1bd)]('----->>>>>>\x20Initializing\x20Game');const s=a62f[A(0x1e7)](r,d);o[A(0x1b9)](s[A(0x1e2)]()),l(s[A(0x1e5)][A(0x1eb)]),j(s[A(0x1e5)][A(0x1e0)]),n(s['player'][A(0x1cb)]),p[A(0x20a)](['enter'],async()=>{const F=A,t=p[F(0x1e9)](),u=s[F(0x1be)](t);(t['split']('\x20')[0x0]===F(0x1f3)||F(0x1dc)||F(0x1dd))&&(j(s['player'][F(0x1e0)]),l(s[F(0x1e5)][F(0x1eb)])),(t['split']('\x20')[0x0]==='go'||F(0x1ee)||'unlock')&&n(s[F(0x1e5)]['currentLocation']),t['split']('\x20')[0x0]==='clear'&&o[F(0x1b9)](''),u===null&&(console[F(0x1f8)](F(0x1b3)),h[F(0x1e1)](),q[F(0x1bd)]('<<<<<<<<---------\x20Terminating\x20game'),process[F(0x1ef)](0x0)),o[F(0x1d7)](u),o['scroll'](0x1),p[F(0x1c5)](),p[F(0x1db)](),h[F(0x1e1)]();});}catch(t){console[A(0x1f8)](t),process[A(0x1ef)](0x1);}}const args=process['argv'][a62G(0x1fe)](0x2);main(args[0x0],JSON[a62G(0x1c2)](args[0x1]),JSON[a62G(0x1c2)](args[0x2]));
@@ -1 +1 @@
1
- const a63k=a63d;(function(a,b){const h=a63d,c=a();while(!![]){try{const d=-parseInt(h(0x1f9))/0x1+parseInt(h(0x1fd))/0x2+parseInt(h(0x1f2))/0x3*(-parseInt(h(0x1ec))/0x4)+-parseInt(h(0x204))/0x5+-parseInt(h(0x1eb))/0x6*(parseInt(h(0x1f3))/0x7)+-parseInt(h(0x1f6))/0x8*(parseInt(h(0x1ee))/0x9)+parseInt(h(0x203))/0xa*(parseInt(h(0x1fe))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x74093));const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a63d;if(c){const e=c[i(0x20a)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const j=a63d;return a63a[j(0x200)]()[j(0x202)]('(((.+)+)+)+$')['toString']()[j(0x1ff)](a63a)['search']('(((.+)+)+)+$');});a63a();import a63e from'fs';import a63f from'os';function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0x1eb;let f=c[d];return f;},a63d(a,b);}import a63g from'path';function a63c(){const s=['182861VVsEgS','error','screen','2392rMDVXe','children','instance','465402wBBUWV','writeFileSync','.maka','getInstance','1684866gaSWYw','11MwUTGA','constructor','toString','dirname','search','22736770NkyCGi','1430545xHuboq','mkdirSync','box','render','scrollTo','appendFileSync','apply','filePath','type','write','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','150KsDAjd','3632hMMkhR','[INFO]\x20[','24147SnDJIW','join','setContent','toISOString','1434KrmsXE'];a63c=function(){return s;};return a63c();}const homeDir=a63f['homedir']();export class Logger{static [a63k(0x1f8)];[a63k(0x20b)];[a63k(0x1f5)];constructor(a,b){const l=a63k;this[l(0x20b)]=a,this[l(0x1f5)]=b,this['ensureLogFileExists']();}static[a63k(0x1fc)](a=a63g[a63k(0x1ef)](homeDir,a63k(0x1fb),'side-quest.log'),b){const m=a63k;if(!Logger[m(0x1f8)]){if(!b)throw new Error('Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.');Logger[m(0x1f8)]=new Logger(a,b);}return Logger[m(0x1f8)];}['ensureLogFileExists'](){const n=a63k,a=a63g[n(0x201)](this[n(0x20b)]);!a63e['existsSync'](a)&&a63e[n(0x205)](a,{'recursive':!![]}),!a63e['existsSync'](this[n(0x20b)])&&a63e[n(0x1fa)](this[n(0x20b)],'');}[a63k(0x20d)](a){const o=a63k,b=new Date()[o(0x1f1)](),c=o(0x1ed)+b+']\x20'+a+'\x0a';a63e[o(0x209)](this['filePath'],c);}[a63k(0x1f4)](a){const p=a63k,b=new Date()['toISOString'](),c='[ERROR]\x20['+b+']\x20'+a+'\x0a';a63e[p(0x209)](this[p(0x20b)],c);}['log'](a){const q=a63k,b=this[q(0x1f5)]?.[q(0x1f7)]['find'](c=>c[q(0x20c)]===q(0x206)&&c['options']['id']==='logBox');b?(b[q(0x1f0)](b['content']+'\x0a'+a),b[q(0x208)](b['getScrollHeight']()),this['screen']?.[q(0x207)]()):this[q(0x1f4)]('The\x20logbox\x20'+b+q(0x20e)+this[q(0x1f5)]),this[q(0x20d)](a);}['hasScreen'](){const r=a63k;return!!this[r(0x1f5)];}}
1
+ const a63k=a63d;(function(a,b){const h=a63d,c=a();while(!![]){try{const d=-parseInt(h(0xe4))/0x1+-parseInt(h(0xd2))/0x2+-parseInt(h(0xd5))/0x3*(parseInt(h(0xde))/0x4)+parseInt(h(0xd4))/0x5*(-parseInt(h(0xe5))/0x6)+-parseInt(h(0xe1))/0x7*(-parseInt(h(0xd1))/0x8)+parseInt(h(0xef))/0x9+parseInt(h(0xf1))/0xa*(parseInt(h(0xe7))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a63c,0x4d907));const a63b=(function(){let a=!![];return function(b,c){const d=a?function(){const i=a63d;if(c){const e=c[i(0xd0)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a63a=a63b(this,function(){const j=a63d;return a63a[j(0xee)]()[j(0xcf)]('(((.+)+)+)+$')[j(0xee)]()[j(0xe9)](a63a)['search']('(((.+)+)+)+$');});a63a();import a63e from'fs';import a63f from'os';import a63g from'path';const homeDir=a63f['homedir']();function a63c(){const s=['418941oGHfbf','render','16519110pSrrWO','Screen\x20must\x20be\x20provided\x20when\x20initializing\x20the\x20Logger\x20for\x20the\x20first\x20time.','ensureLogFileExists','[INFO]\x20[','options','search','apply','391624NCGAuZ','462716Hqpnjh','find','143545CYcyHb','1336227GJEDuT','scrollTo','join','toISOString','instance','[ERROR]\x20[','filePath','children','log','4muvbSM','\x20could\x20not\x20be\x20found\x20on\x20screen\x20','side-quest.log','42ewilnY','box','.maka','423528Pyvnvw','120FCvBgD','error','11ATUZuM','mkdirSync','constructor','appendFileSync','screen','logBox','type','toString'];a63c=function(){return s;};return a63c();}function a63d(a,b){const c=a63c();return a63d=function(d,e){d=d-0xcc;let f=c[d];return f;},a63d(a,b);}export class Logger{static ['instance'];[a63k(0xdb)];[a63k(0xeb)];constructor(a,b){const l=a63k;this[l(0xdb)]=a,this[l(0xeb)]=b,this[l(0xcc)]();}static['getInstance'](a=a63g[a63k(0xd7)](homeDir,a63k(0xe3),a63k(0xe0)),b){const m=a63k;if(!Logger[m(0xd9)]){if(!b)throw new Error(m(0xf2));Logger['instance']=new Logger(a,b);}return Logger['instance'];}[a63k(0xcc)](){const n=a63k,a=a63g['dirname'](this['filePath']);!a63e['existsSync'](a)&&a63e[n(0xe8)](a,{'recursive':!![]}),!a63e['existsSync'](this[n(0xdb)])&&a63e['writeFileSync'](this[n(0xdb)],'');}['write'](a){const o=a63k,b=new Date()[o(0xd8)](),c=o(0xcd)+b+']\x20'+a+'\x0a';a63e[o(0xea)](this[o(0xdb)],c);}['error'](a){const p=a63k,b=new Date()[p(0xd8)](),c=p(0xda)+b+']\x20'+a+'\x0a';a63e[p(0xea)](this[p(0xdb)],c);}[a63k(0xdd)](a){const q=a63k,b=this[q(0xeb)]?.[q(0xdc)][q(0xd3)](c=>c[q(0xed)]===q(0xe2)&&c[q(0xce)]['id']===q(0xec));b?(b['setContent'](b['content']+'\x0a'+a),b[q(0xd6)](b['getScrollHeight']()),this[q(0xeb)]?.[q(0xf0)]()):this[q(0xe6)]('The\x20logbox\x20'+b+q(0xdf)+this['screen']),this['write'](a);}['hasScreen'](){const r=a63k;return!!this[r(0xeb)];}}
@@ -1 +1 @@
1
- const a64n=a64d;(function(a,b){const k=a64d,c=a();while(!![]){try{const d=parseInt(k(0x1b4))/0x1*(parseInt(k(0x1a2))/0x2)+-parseInt(k(0x1a8))/0x3+parseInt(k(0x1a7))/0x4+parseInt(k(0x1a3))/0x5*(parseInt(k(0x1b3))/0x6)+-parseInt(k(0x199))/0x7+parseInt(k(0x194))/0x8*(-parseInt(k(0x1ab))/0x9)+parseInt(k(0x19c))/0xa*(parseInt(k(0x1af))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x9c5d3));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a64d;if(c){const e=c[l(0x19e)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const m=a64d;return a64a[m(0x19b)]()[m(0x198)](m(0x1ad))[m(0x19b)]()[m(0x1a5)](a64a)[m(0x198)]('(((.+)+)+)+$');});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';function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0x18e;let f=c[d];return f;},a64d(a,b);}import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';function a64c(){const q=['shadowrun','toString','10wVxSyH','join','apply','stringify','side-quest','resolve','132442EzeuQh','10GuEgtm','sideQuestAnswer','constructor','options','584216HqQpja','2045913kCOapw','log','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','9qSxHbv','./sideQuest/ui.js','(((.+)+)+)+$','Commoner','16356307YAaoky','exit','fsi','ask','2021496VXLwnb','1JhAvrT','inherit','create','Play\x20a\x20little\x20side-quest','Thanks\x20for\x20playing!','What\x20is\x20your\x20name?','player','1797896KfBJxR','node','side-quest.log','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...','search','5781083mZqcYK'];a64c=function(){return q;};return a64c();}import{dirname}from'path';const __filename=fileURLToPath(import.meta['url']),__dirname=dirname(__filename);Command[a64n(0x18f)]({'name':a64n(0x1a0),'usage':'maka\x20play:side-quest','shortDesc':a64n(0x190),'aliases':['sq'],'description':a64n(0x197),'validOpts':[a64n(0x193)]},async function(a,b){const o=a64n;try{const c=this[o(0x1b1)]['getGlobalMakaDir'](),d=a64e[o(0x19d)](c,o(0x196)),e=b[o(0x193)]?b[o(0x193)]:await Actions[o(0x1b2)](o(0x192))||o(0x1ae),f={...b,'logFilePath':d},g={'type':'list','name':o(0x1a4),'message':o(0x1aa),'choices':[{'name':'dungeon','value':dungeonConfig},{'name':o(0x19a),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x1a6)](g);if(e&&h){const i=spawn(o(0x195),[a64e[o(0x1a1)](__dirname,o(0x1ac)),e,JSON[o(0x19f)](h),JSON[o(0x19f)](f)],{'stdio':o(0x18e)});i['on'](o(0x1b0),()=>{const p=o;console['log'](p(0x191));});}}catch(j){console[o(0x1a9)](j);}},a64f);
1
+ const a64n=a64d;function a64d(a,b){const c=a64c();return a64d=function(d,e){d=d-0x13f;let f=c[d];return f;},a64d(a,b);}(function(a,b){const k=a64d,c=a();while(!![]){try{const d=parseInt(k(0x15b))/0x1*(-parseInt(k(0x15e))/0x2)+-parseInt(k(0x159))/0x3*(-parseInt(k(0x145))/0x4)+-parseInt(k(0x158))/0x5*(-parseInt(k(0x162))/0x6)+-parseInt(k(0x13f))/0x7*(-parseInt(k(0x156))/0x8)+parseInt(k(0x14f))/0x9*(parseInt(k(0x15f))/0xa)+parseInt(k(0x155))/0xb+parseInt(k(0x151))/0xc*(-parseInt(k(0x14c))/0xd);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a64c,0x6cf73));const a64b=(function(){let a=!![];return function(b,c){const d=a?function(){const l=a64d;if(c){const e=c[l(0x147)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a64a=a64b(this,function(){const m=a64d;return a64a[m(0x153)]()[m(0x141)]('(((.+)+)+)+$')['toString']()[m(0x150)](a64a)['search']('(((.+)+)+)+$');});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';function a64c(){const q=['92sqShQg','options','apply','What\x20is\x20your\x20name?','resolve','exit','shadowrun','156epxHgW','list','stringify','239553cNHQyS','constructor','1514988nnkcPN','Thanks\x20for\x20playing!','toString','player','3874145OgFLVH','149536GnlZtf','side-quest.log','745IeJUSs','112956CYJuou','join','10CTVLES','maka\x20play:side-quest','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...','1884ceoSLZ','30fTtgdC','log','inherit','7518jAQyGg','182GgVqYd','Which\x20Side-Quest\x20would\x20you\x20like\x20to\x20play?','search','sideQuestAnswer','./sideQuest/ui.js','Commoner'];a64c=function(){return q;};return a64c();}import{dungeonConfig,shadowrunConfig}from'./sideQuest/scenes/rooms.js';import{fileURLToPath}from'url';import{dirname}from'path';const __filename=fileURLToPath(import.meta['url']),__dirname=dirname(__filename);Command['create']({'name':'side-quest','usage':a64n(0x15c),'shortDesc':'Play\x20a\x20little\x20side-quest','aliases':['sq'],'description':a64n(0x15d),'validOpts':[a64n(0x154)]},async function(a,b){const o=a64n;try{const c=this['fsi']['getGlobalMakaDir'](),d=a64e[o(0x15a)](c,o(0x157)),e=b[o(0x154)]?b[o(0x154)]:await Actions['ask'](o(0x148))||o(0x144),f={...b,'logFilePath':d},g={'type':o(0x14d),'name':o(0x142),'message':o(0x140),'choices':[{'name':'dungeon','value':dungeonConfig},{'name':o(0x14b),'value':shadowrunConfig}]},{sideQuestAnswer:h}=await Actions[o(0x146)](g);if(e&&h){const i=spawn('node',[a64e[o(0x149)](__dirname,o(0x143)),e,JSON[o(0x14e)](h),JSON['stringify'](f)],{'stdio':o(0x161)});i['on'](o(0x14a),()=>{const p=o;console[p(0x160)](p(0x152));});}}catch(j){console[o(0x160)](j);}},a64f);
@@ -1 +1 @@
1
- var a65i=a65d;(function(a,b){var f=a65d,c=a();while(!![]){try{var d=-parseInt(f(0x201))/0x1*(-parseInt(f(0x203))/0x2)+-parseInt(f(0x1f4))/0x3+parseInt(f(0x1f8))/0x4+parseInt(f(0x1fa))/0x5*(parseInt(f(0x1f3))/0x6)+parseInt(f(0x1fe))/0x7+parseInt(f(0x1f5))/0x8*(-parseInt(f(0x1fd))/0x9)+-parseInt(f(0x1fc))/0xa;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0x9e156));function a65c(){var k=['constructor','search','13264iVQflm','apply','118mbrUgV','npx\x20command-line-snake','11226ZhAqCx','574449nzgUpL','695488cnFdMI','inherit','toString','4203148QsOmAE','snake','625djSffK','(((.+)+)+)+$','19450290kSGwId','54yGPoqN','8668800FwTCmO'];a65c=function(){return k;};return a65c();}var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a65d;if(c){var e=c[g(0x202)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var h=a65d;return a65a[h(0x1f7)]()[h(0x200)]('(((.+)+)+)+$')[h(0x1f7)]()[h(0x1ff)](a65a)[h(0x200)](h(0x1fb));});a65a();import a65e from'./play.command.js';function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0x1f3;var f=c[d];return f;},a65d(a,b);}import{Command}from'../../command.js';import{execSync}from'child_process';Command['create']({'name':a65i(0x1f9),'usage':'maka\x20game:snake','shortDesc':'Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','validOpts':[]},async function(){var j=a65i;execSync(j(0x204),{'stdio':j(0x1f6)});},a65e);
1
+ var a65h=a65d;(function(a,b){var f=a65d,c=a();while(!![]){try{var d=parseInt(f(0x139))/0x1*(parseInt(f(0x13b))/0x2)+-parseInt(f(0x13f))/0x3*(parseInt(f(0x138))/0x4)+parseInt(f(0x143))/0x5*(parseInt(f(0x141))/0x6)+-parseInt(f(0x146))/0x7+-parseInt(f(0x136))/0x8*(-parseInt(f(0x147))/0x9)+parseInt(f(0x13e))/0xa+-parseInt(f(0x135))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a65c,0x95c9d));var a65b=(function(){var a=!![];return function(b,c){var d=a?function(){if(c){var e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a65a=a65b(this,function(){var g=a65d;return a65a[g(0x145)]()[g(0x13c)](g(0x142))[g(0x145)]()[g(0x137)](a65a)[g(0x13c)](g(0x142));});a65a();import a65e from'./play.command.js';function a65c(){var j=['17182sELDMo','search','create','11360810jorgfH','9xaeDFU','maka\x20game:snake','6zqZqgj','(((.+)+)+)+$','2525065NJtHSY','snake','toString','7898912JjiODK','33633eISuYf','12777479gEUxxO','1488aAfIPO','constructor','148436eKuzxH','79HzGMnj','npx\x20command-line-snake'];a65c=function(){return j;};return a65c();}import{Command}from'../../command.js';import{execSync}from'child_process';function a65d(a,b){var c=a65c();return a65d=function(d,e){d=d-0x135;var f=c[d];return f;},a65d(a,b);}Command[a65h(0x13d)]({'name':a65h(0x144),'usage':a65h(0x140),'shortDesc':'Play\x20Snake:\x20https://www.npmjs.com/package/command-line-snake','validOpts':[]},async function(){var i=a65h;execSync(i(0x13a),{'stdio':'inherit'});},a65e);
@@ -1 +1 @@
1
- var a66i=a66d;(function(a,b){var f=a66d,c=a();while(!![]){try{var d=parseInt(f(0x12f))/0x1*(parseInt(f(0x12e))/0x2)+parseInt(f(0x11f))/0x3*(-parseInt(f(0x121))/0x4)+parseInt(f(0x130))/0x5+-parseInt(f(0x12d))/0x6+-parseInt(f(0x12c))/0x7+-parseInt(f(0x128))/0x8+parseInt(f(0x127))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x39d7c));function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0x11f;var f=c[d];return f;},a66d(a,b);}var a66b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a66d;if(c){var e=c[g(0x12b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){var h=a66d;return a66a['toString']()['search']('(((.+)+)+)+$')['toString']()[h(0x122)](a66a)[h(0x126)](h(0x129));});a66a();import a66e from'./play.command.js';function a66c(){var k=['maka\x20game:tetris','tetris','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','search','7310637heslka','3319032OIUyWB','(((.+)+)+)+$','create','apply','2014089MwhqEu','2052384zTzzuB','314nliNAa','2415WxvZxw','534790DmbtXv','inherit','1401FpibNI','npx\x20simple-tetris','144bxzmLI','constructor'];a66c=function(){return k;};return a66c();}import{Command}from'../../command.js';import{execSync}from'child_process';Command[a66i(0x12a)]({'name':a66i(0x124),'usage':a66i(0x123),'shortDesc':a66i(0x125),'validOpts':[]},async function(){var j=a66i;execSync(j(0x120),{'stdio':j(0x131)});},a66e);
1
+ var a66i=a66d;function a66d(a,b){var c=a66c();return a66d=function(d,e){d=d-0xd7;var f=c[d];return f;},a66d(a,b);}(function(a,b){var f=a66d,c=a();while(!![]){try{var d=parseInt(f(0xe0))/0x1*(parseInt(f(0xdc))/0x2)+parseInt(f(0xdd))/0x3*(-parseInt(f(0xe1))/0x4)+parseInt(f(0xe4))/0x5+parseInt(f(0xd9))/0x6*(parseInt(f(0xdf))/0x7)+-parseInt(f(0xdb))/0x8*(-parseInt(f(0xde))/0x9)+-parseInt(f(0xe9))/0xa+parseInt(f(0xe7))/0xb*(-parseInt(f(0xea))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a66c,0x722ed));var a66b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a66d;if(c){var e=c[g(0xe8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a66a=a66b(this,function(){var h=a66d;return a66a[h(0xe2)]()[h(0xd7)]('(((.+)+)+)+$')[h(0xe2)]()['constructor'](a66a)['search']('(((.+)+)+)+$');});function a66c(){var k=['9lYfHnP','2133405SKJyxS','567WRZdxY','2890NsGCJQ','1149520BjGauf','toString','npx\x20simple-tetris','2006315SovLXw','inherit','create','91850jPWxxi','apply','1528010lVeclo','492YXUtQo','search','Play\x20Tetris:\x20https://github.com/robertrypula/simple-tetris','9546JBQkQi','tetris','16Ajsqqp','568TSyCCB'];a66c=function(){return k;};return a66c();}a66a();import a66e from'./play.command.js';import{Command}from'../../command.js';import{execSync}from'child_process';Command[a66i(0xe6)]({'name':a66i(0xda),'usage':'maka\x20game:tetris','shortDesc':a66i(0xd8),'validOpts':[]},async function(){var j=a66i;execSync(j(0xe3),{'stdio':j(0xe5)});},a66e);
@@ -1 +1 @@
1
- const a67i=a67d;(function(a,b){const f=a67d,c=a();while(!![]){try{const d=parseInt(f(0x11b))/0x1+parseInt(f(0x12d))/0x2*(parseInt(f(0x127))/0x3)+parseInt(f(0x139))/0x4*(parseInt(f(0x12c))/0x5)+parseInt(f(0x124))/0x6*(-parseInt(f(0x11d))/0x7)+parseInt(f(0x122))/0x8+parseInt(f(0x132))/0x9*(parseInt(f(0x137))/0xa)+parseInt(f(0x133))/0xb*(-parseInt(f(0x13a))/0xc);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0xef8db));function a67c(){const k=['Could\x20not\x20find\x20generator','1262740ADGaPi','maka\x20g:route\x20todos/edit','37058ximWdY','invoke','generate','help','search','10126424wyxUDn','(((.+)+)+)+$','1194YkumzM','findGenerator','maka\x20{generate,\x20g}:<generator>\x20<name>','27gstaHt','slice','maka\x20g:api\x20trucks','toString','Scaffold\x20various\x20parts\x20of\x20your\x20application','1099730ZVIYPR','384620ZcJJMN','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','create','error','where','80055xsRxoU','13211fVPCTK','Generators:','maka\x20g:package\x20package:name','maka\x20generate:scaffold\x20todos','1090SfMWaf','dir','12lGjZNd','38508ZJQuYw','apply','maka\x20g:scaffold\x20todos','constructor'];a67c=function(){return k;};return a67c();}const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0x13b)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0x12a)]()['search'](h(0x123))[h(0x12a)]()[h(0x13d)](a67a)[h(0x121)](h(0x123));});a67a();import{Command}from'../command.js';function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0x11a;let f=c[d];return f;},a67d(a,b);}import{Log}from'../tools/log/log.class.js';import a67e from'../generators/maka.gen.js';import{UsageError}from'../error.js';Command[a67i(0x12f)]({'name':a67i(0x11f),'aliases':['g'],'usage':a67i(0x126),'validOpts':[a67i(0x138),a67i(0x131),a67i(0x120)],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':a67i(0x12b),'description':a67i(0x12e),'examples':[a67i(0x136),a67i(0x13c),'maka\x20g:template\x20todos/todo_item',a67i(0x135),a67i(0x11c),a67i(0x129),'maka\x20g:dbc\x20geoserver\x20--type=pgsql']},async function(a,b){const j=a67i,c=a[0x0],d=a67e[j(0x125)](c);if(!d){b[j(0x120)]?(Log['notice'](j(0x134)),a67e['listGenerators']()):Log[j(0x130)](j(0x11a));throw new UsageError();}await d[j(0x11e)](a[j(0x128)](0x1),b);});
1
+ const a67i=a67d;function a67d(a,b){const c=a67c();return a67d=function(d,e){d=d-0xc5;let f=c[d];return f;},a67d(a,b);}(function(a,b){const f=a67d,c=a();while(!![]){try{const d=-parseInt(f(0xcc))/0x1+parseInt(f(0xcb))/0x2+parseInt(f(0xdc))/0x3*(-parseInt(f(0xe2))/0x4)+-parseInt(f(0xd8))/0x5+-parseInt(f(0xc7))/0x6*(parseInt(f(0xdb))/0x7)+-parseInt(f(0xd0))/0x8*(-parseInt(f(0xd1))/0x9)+-parseInt(f(0xe1))/0xa*(-parseInt(f(0xcf))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a67c,0x874db));const a67b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a67d;if(c){const e=c[g(0xc8)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a67a=a67b(this,function(){const h=a67d;return a67a[h(0xc9)]()[h(0xd6)](h(0xd9))[h(0xc9)]()['constructor'](a67a)[h(0xd6)](h(0xd9));});a67a();import{Command}from'../command.js';import{Log}from'../tools/log/log.class.js';function a67c(){const k=['where','44KueqTZ','8QsJVFk','6487479XaHRKG','maka\x20g:route\x20todos/edit','maka\x20{generate,\x20g}:<generator>\x20<name>','findGenerator','\x0a\x20\x20For\x20a\x20list\x20of\x20generators,\x20run\x20\x22maka\x20generate\x20--help\x22\x20or\x20\x22maka\x20g\x20--help\x22\x0a\x20\x20','search','invoke','4784910tUiePu','(((.+)+)+)+$','create','4463186ZNHKiK','42924bhZViy','listGenerators','maka\x20g:scaffold\x20todos','maka\x20g:template\x20todos/todo_item','maka\x20generate:scaffold\x20todos','4515580uSbugw','20vhjEku','maka\x20g:package\x20package:name','notice','help','dir','error','maka\x20g:dbc\x20geoserver\x20--type=pgsql','slice','6aQBBkc','apply','toString','Could\x20not\x20find\x20generator','1252452PhABsi','932966ljGPBV','Generators:'];a67c=function(){return k;};return a67c();}import a67e from'../generators/maka.gen.js';import{UsageError}from'../error.js';Command[a67i(0xda)]({'name':'generate','aliases':['g'],'usage':a67i(0xd3),'validOpts':[a67i(0xe6),a67i(0xce),a67i(0xe5)],'mustBeInMakaProject':!![],'isRoot':!![],'shortDesc':'Scaffold\x20various\x20parts\x20of\x20your\x20application','description':a67i(0xd5),'examples':[a67i(0xe0),a67i(0xde),a67i(0xdf),a67i(0xe3),a67i(0xd2),'maka\x20g:api\x20trucks',a67i(0xc5)]},async function(a,b){const j=a67i,c=a[0x0],d=a67e[j(0xd4)](c);if(!d){b[j(0xe5)]?(Log[j(0xe4)](j(0xcd)),a67e[j(0xdd)]()):Log[j(0xe7)](j(0xca));throw new UsageError();}await d[j(0xd7)](a[j(0xc6)](0x1),b);});
@@ -1 +1 @@
1
- function a68c(){var i=['36550kdTtzA','12207960RTMFbY','917348uwgTPw','498UswXBN','14745rAsjMH','267240ahjpLu','toString','(((.+)+)+)+$','constructor','3494281WqYlCO','377363aZAoRK','apply','search'];a68c=function(){return i;};return a68c();}(function(a,b){var f=a68d,c=a();while(!![]){try{var d=-parseInt(f(0x146))/0x1+-parseInt(f(0x149))/0x2+-parseInt(f(0x14e))/0x3+-parseInt(f(0x14b))/0x4+-parseInt(f(0x14d))/0x5*(-parseInt(f(0x14c))/0x6)+-parseInt(f(0x145))/0x7+parseInt(f(0x14a))/0x8;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x881d4));var a68b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a68d;if(c){var e=c[g(0x147)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){var h=a68d;return a68a[h(0x14f)]()[h(0x148)](h(0x143))['toString']()[h(0x144)](a68a)[h(0x148)](h(0x143));});function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0x143;var f=c[d];return f;},a68d(a,b);}a68a();import'./get.command.js';import'./global.sub.cmd.js';import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';
1
+ function a68d(a,b){var c=a68c();return a68d=function(d,e){d=d-0x186;var f=c[d];return f;},a68d(a,b);}(function(a,b){var f=a68d,c=a();while(!![]){try{var d=parseInt(f(0x188))/0x1*(-parseInt(f(0x190))/0x2)+-parseInt(f(0x18d))/0x3+parseInt(f(0x18a))/0x4+-parseInt(f(0x194))/0x5+-parseInt(f(0x18f))/0x6*(-parseInt(f(0x189))/0x7)+parseInt(f(0x18e))/0x8*(parseInt(f(0x186))/0x9)+parseInt(f(0x191))/0xa*(parseInt(f(0x18c))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a68c,0x87fef));var a68b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a68d;if(c){var e=c[g(0x192)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a68a=a68b(this,function(){var h=a68d;return a68a[h(0x193)]()[h(0x18b)](h(0x187))[h(0x193)]()['constructor'](a68a)[h(0x18b)](h(0x187));});a68a();import'./get.command.js';import'./global.sub.cmd.js';function a68c(){var i=['719848IIqjLB','search','121000HmNhgV','1207758qWjvaB','1588904kkMJuX','12qXBpfB','2uNUqpB','1020kvUiIr','apply','toString','3210675DceSyx','18VSNJtf','(((.+)+)+)+$','554752IPeLhY','1600634NNeVSy'];a68c=function(){return i;};return a68c();}import'./local.sub.cmd.js';import'./whoami.sub.cmd.js';
@@ -1 +1 @@
1
- function a69c(){const k=['262zPIVPL','toString','4708134HtLTQg','create','882978yRKDUb','61740bktGrc','4SGdHue','16GkDsSL','Get\x20various\x20Maka\x20variables\x20and\x20configurations','constructor','73172KidDsS','apply','search','Sub-Command\x20not\x20found','29060328DIgSwR','35zsiEkh','2260FCGUvi','maka\x20get:<sub-command>','5034XfwQeg','error','findSubCommand','5027380UMhwrY'];a69c=function(){return k;};return a69c();}const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=-parseInt(f(0xac))/0x1*(-parseInt(f(0x9a))/0x2)+-parseInt(f(0x9f))/0x3+parseInt(f(0xa0))/0x4*(-parseInt(f(0xaf))/0x5)+-parseInt(f(0x9e))/0x6*(parseInt(f(0xa9))/0x7)+-parseInt(f(0xa1))/0x8*(-parseInt(f(0x9c))/0x9)+parseInt(f(0xaa))/0xa*(-parseInt(f(0xa4))/0xb)+parseInt(f(0xa8))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0xd27e1));const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0xa5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0x9b)]()[h(0xa6)]('(((.+)+)+)+$')['toString']()[h(0xa3)](a69a)[h(0xa6)]('(((.+)+)+)+$');});a69a();import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command[a69i(0x9d)]({'name':'get','usage':a69i(0xab),'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':a69i(0xa2),'validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this[j(0xae)](c);if(d)this['runSubCommand'](c,a,b);else{Log[j(0xad)](j(0xa7));throw new UsageErrorWithSubs();}});function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x9a;let f=c[d];return f;},a69d(a,b);}export default GetCommand;
1
+ const a69i=a69d;(function(a,b){const f=a69d,c=a();while(!![]){try{const d=parseInt(f(0x8b))/0x1+-parseInt(f(0x80))/0x2+-parseInt(f(0x84))/0x3+parseInt(f(0x85))/0x4*(parseInt(f(0x8f))/0x5)+parseInt(f(0x88))/0x6+-parseInt(f(0x8c))/0x7*(parseInt(f(0x81))/0x8)+parseInt(f(0x7f))/0x9*(parseInt(f(0x8d))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a69c,0x45f6f));function a69c(){const k=['(((.+)+)+)+$','get','365430VFsEIY','Sub-Command\x20not\x20found','findSubCommand','369193FJWRcy','245FDntlL','30UvWclG','constructor','1814705fQJesc','Get\x20various\x20Maka\x20variables\x20and\x20configurations','maka\x20get:<sub-command>','2015757FxNzPs','1011696VCCcbh','127760jSZoII','apply','toString','340755UyFCsN','4nImUtr'];a69c=function(){return k;};return a69c();}const a69b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a69d;if(c){const e=c[g(0x82)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a69a=a69b(this,function(){const h=a69d;return a69a[h(0x83)]()['search'](h(0x86))[h(0x83)]()[h(0x8e)](a69a)['search'](h(0x86));});a69a();import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';function a69d(a,b){const c=a69c();return a69d=function(d,e){d=d-0x7d;let f=c[d];return f;},a69d(a,b);}import{UsageErrorWithSubs}from'../../error.js';const GetCommand=Command['create']({'name':a69i(0x87),'usage':a69i(0x7e),'minArgLength':0x1,'maxArgLength':0x2,'shortDesc':a69i(0x7d),'validOpts':[]},async function(a,b){const j=a69i,c=a[0x0],d=this[j(0x8a)](c);if(d)this['runSubCommand'](c,a,b);else{Log['error'](j(0x89));throw new UsageErrorWithSubs();}});export default GetCommand;
@@ -1 +1 @@
1
- const a70h=a70d;(function(a,b){const f=a70d,c=a();while(!![]){try{const d=parseInt(f(0x14c))/0x1+parseInt(f(0x147))/0x2*(-parseInt(f(0x153))/0x3)+-parseInt(f(0x154))/0x4+-parseInt(f(0x151))/0x5+-parseInt(f(0x148))/0x6+parseInt(f(0x145))/0x7*(-parseInt(f(0x14a))/0x8)+parseInt(f(0x156))/0x9;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x51864));function a70c(){const j=['create','19779228cCSzII','constructor','1015tmqMfX','(((.+)+)+)+$','1099382XWqjwO','2044836XtJcOR','toString','5496fbfPnT','global-config','219005FPlEYp','maka\x20get:global-config','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file','exit','error','3064135msLjnj','search','3inmlaM','1919336UAvhoD'];a70c=function(){return j;};return a70c();}const a70b=(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;};}()),a70a=a70b(this,function(){const g=a70d;return a70a[g(0x149)]()[g(0x152)](g(0x146))[g(0x149)]()[g(0x157)](a70a)[g(0x152)](g(0x146));});function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x145;let f=c[d];return f;},a70d(a,b);}a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';Command[a70h(0x155)]({'name':a70h(0x14b),'usage':a70h(0x14d),'aliases':['gc'],'shortDesc':a70h(0x14e),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const i=a70h;try{const a=await this['fsi']['getGlobalConfig']();console['log'](a),process[i(0x14f)](0x0);}catch(b){console[i(0x150)](b),process[i(0x14f)](0x0);}},a70e);
1
+ const a70i=a70d;(function(a,b){const f=a70d,c=a();while(!![]){try{const d=-parseInt(f(0x1cb))/0x1*(-parseInt(f(0x1c4))/0x2)+-parseInt(f(0x1bb))/0x3*(-parseInt(f(0x1bd))/0x4)+parseInt(f(0x1c8))/0x5*(-parseInt(f(0x1c3))/0x6)+parseInt(f(0x1be))/0x7*(parseInt(f(0x1c1))/0x8)+-parseInt(f(0x1c7))/0x9*(parseInt(f(0x1c6))/0xa)+-parseInt(f(0x1ce))/0xb*(parseInt(f(0x1cc))/0xc)+-parseInt(f(0x1b6))/0xd*(-parseInt(f(0x1b5))/0xe);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a70c,0x8d1ac));const a70b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a70d;if(c){const e=c[g(0x1b9)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a70a=a70b(this,function(){const h=a70d;return a70a[h(0x1c5)]()[h(0x1bc)](h(0x1c9))[h(0x1c5)]()[h(0x1ca)](a70a)['search'](h(0x1c9));});function a70d(a,b){const c=a70c();return a70d=function(d,e){d=d-0x1b5;let f=c[d];return f;},a70d(a,b);}function a70c(){const k=['8amqxIf','maka\x20get:global-config','379854ckvdBb','2hjseGx','toString','8704310WYwdZK','9yxzQWM','65VcBuzt','(((.+)+)+)+$','constructor','85377yWOrDV','1812EdDnQc','error','40568yjylSX','476WvdGuR','221351DJYOgx','exit','global-config','apply','log','1731wIEtWk','search','7664xcBqeY','7409311SIAiVZ','create','Get\x20maka\x20configurations\x20in\x20the\x20global\x20~/.maka/global-config.json\x20file'];a70c=function(){return k;};return a70c();}a70a();import a70e from'./get.command.js';import{Command}from'../../command.js';Command[a70i(0x1bf)]({'name':a70i(0x1b8),'usage':a70i(0x1c2),'aliases':['gc'],'shortDesc':a70i(0x1c0),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const j=a70i;try{const a=await this['fsi']['getGlobalConfig']();console[j(0x1ba)](a),process[j(0x1b7)](0x0);}catch(b){console[j(0x1cd)](b),process[j(0x1b7)](0x0);}},a70e);
@@ -1 +1 @@
1
- const a71h=a71d;(function(a,b){const f=a71d,c=a();while(!![]){try{const d=parseInt(f(0x1eb))/0x1*(parseInt(f(0x1e6))/0x2)+parseInt(f(0x1e9))/0x3*(-parseInt(f(0x1dd))/0x4)+-parseInt(f(0x1e5))/0x5+parseInt(f(0x1de))/0x6+parseInt(f(0x1e3))/0x7+parseInt(f(0x1d9))/0x8+parseInt(f(0x1e4))/0x9*(-parseInt(f(0x1e7))/0xa);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0xba0bb));const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){if(c){const e=c['apply'](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const g=a71d;return a71a[g(0x1e8)]()[g(0x1dc)]('(((.+)+)+)+$')[g(0x1e8)]()['constructor'](a71a)['search'](g(0x1ea));});a71a();import a71e from'./get.command.js';function a71d(a,b){const c=a71c();return a71d=function(d,e){d=d-0x1d9;let f=c[d];return f;},a71d(a,b);}function a71c(){const j=['10556840gkhYxh','138231IRfvcI','4911015HGxIEm','245630urFvJj','690jmryZf','toString','3xrTWoJ','(((.+)+)+)+$','7CFTXVI','10223904fpVFUW','getProjectConfig','create','search','3961192yKGvtl','891012Gthnob','local-config','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','maka\x20get:local-config','fsi'];a71c=function(){return j;};return a71c();}import{Command}from'../../command.js';Command[a71h(0x1db)]({'name':a71h(0x1df),'usage':a71h(0x1e1),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a71h(0x1e0),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const i=a71h,a=await this[i(0x1e2)][i(0x1da)]();console['log'](a);},a71e);
1
+ const a71i=a71d;(function(a,b){const f=a71d,c=a();while(!![]){try{const d=-parseInt(f(0x18d))/0x1*(parseInt(f(0x190))/0x2)+parseInt(f(0x18f))/0x3*(parseInt(f(0x197))/0x4)+-parseInt(f(0x19c))/0x5+-parseInt(f(0x199))/0x6*(-parseInt(f(0x19a))/0x7)+-parseInt(f(0x18e))/0x8*(parseInt(f(0x198))/0x9)+-parseInt(f(0x196))/0xa+parseInt(f(0x1a1))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a71c,0x197af));const a71b=(function(){let a=!![];return function(b,c){const d=a?function(){const g=a71d;if(c){const e=c[g(0x195)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a71a=a71b(this,function(){const h=a71d;return a71a[h(0x191)]()[h(0x192)](h(0x19e))['toString']()[h(0x19b)](a71a)[h(0x192)](h(0x19e));});a71a();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-0x18d;let f=c[d];return f;},a71d(a,b);}Command['create']({'name':a71i(0x1a0),'usage':a71i(0x194),'mustBeInMakaProject':!![],'aliases':['lc'],'shortDesc':a71i(0x19f),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const j=a71i,a=await this[j(0x193)][j(0x1a2)]();console[j(0x19d)](a);},a71e);function a71c(){const k=['log','(((.+)+)+)+$','Get\x20maka\x20configurations\x20in\x20the\x20local\x20.maka/config.json\x20file','local-config','2891977BsjRwn','getProjectConfig','7aSuIVs','56JuJsXH','20397kekNiv','13438MyHzJn','toString','search','fsi','maka\x20get:local-config','apply','1884700QudIjS','88WOkLCR','164376KNxVOB','1119912EjqlOB','7bmboON','constructor','657095ZVVJIq'];a71c=function(){return k;};return a71c();}
@@ -1 +1 @@
1
- const a72j=a72d;function a72c(){const l=['userId','search','6126552ljPXlE','20316gvWfpJ','apply','User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','join','4781202ZIQsaf','error','exit','User\x20Access\x20Token:\x20\x20','24PeGrrb','2415000qAesEv','hash','token','(((.+)+)+)+$','6191640eVRuPq','authToken','toString','1936403FYqJyA','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20','3030872gWsTlJ','87FCZcVh','fsi','notice','whoami','constructor'];a72c=function(){return l;};return a72c();}(function(a,b){const g=a72d,c=a();while(!![]){try{const d=parseInt(g(0x208))/0x1*(parseInt(g(0x1f4))/0x2)+-parseInt(g(0x1fd))/0x3+-parseInt(g(0x207))/0x4+-parseInt(g(0x201))/0x5+parseInt(g(0x1f8))/0x6+-parseInt(g(0x204))/0x7+parseInt(g(0x1fc))/0x8*(parseInt(g(0x1f3))/0x9);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0x9d802));const a72b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a72d;if(c){const e=c[h(0x1f5)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){const i=a72d;return a72a[i(0x203)]()['search'](i(0x200))['toString']()[i(0x1f0)](a72a)[i(0x1f2)](i(0x200));});a72a();function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x1f0;let f=c[d];return f;},a72d(a,b);}import a72e from'./get.command.js';import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a72f from'jsonwebtoken';Command['create']({'name':a72j(0x20b),'usage':'maka\x20get:whoami','shortDesc':'If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const k=a72j;try{const a=await this[k(0x209)]['getGlobalConfig']();if(a[k(0x1fe)]){const b=a72f['decode'](a['hash']);Log[k(0x20a)](k(0x206)+b?.['user']),Log[k(0x20a)](k(0x1f6)+a[k(0x1ff)]?.[k(0x1f1)]),Log[k(0x20a)](k(0x1fb)+a[k(0x1ff)]?.[k(0x202)]),Log['notice'](k(0x205)+b?.['roles'][k(0x1f7)](',\x20'));}}catch(c){console[k(0x1f9)](c),process[k(0x1fa)](0x0);}},a72e);
1
+ const a72j=a72d;(function(a,b){const g=a72d,c=a();while(!![]){try{const d=-parseInt(g(0x1c2))/0x1*(-parseInt(g(0x1bc))/0x2)+-parseInt(g(0x1b9))/0x3+parseInt(g(0x1c0))/0x4+-parseInt(g(0x1b6))/0x5*(-parseInt(g(0x1ac))/0x6)+parseInt(g(0x1a7))/0x7*(parseInt(g(0x1be))/0x8)+parseInt(g(0x1af))/0x9+parseInt(g(0x1b1))/0xa*(-parseInt(g(0x1c1))/0xb);if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a72c,0xb31ba));function a72d(a,b){const c=a72c();return a72d=function(d,e){d=d-0x1a7;let f=c[d];return f;},a72d(a,b);}const a72b=(function(){let a=!![];return function(b,c){const d=a?function(){const h=a72d;if(c){const e=c[h(0x1ba)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a72a=a72b(this,function(){const i=a72d;return a72a['toString']()[i(0x1b3)](i(0x1a8))[i(0x1ae)]()['constructor'](a72a)[i(0x1b3)](i(0x1a8));});a72a();import a72e from'./get.command.js';function a72c(){const l=['3KxXmXk','461118tVVvTf','(((.+)+)+)+$','If\x20logged\x20in,\x20get\x20the\x20current\x20user\x27s\x20information','create','Licenses:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20','860502hVuRwF','whoami','toString','7105860DjeCEX','notice','9010jRNDki','decode','search','User\x20Access\x20Token:\x20\x20','join','5GZrYXk','error','token','1874604SrmfQp','apply','roles','87658eBvdpt','fsi','32bzUPCf','user','832204sDlXJC','2167hKAOzd'];a72c=function(){return l;};return a72c();}import{Command}from'../../command.js';import{Log}from'../../tools/log/log.class.js';import a72f from'jsonwebtoken';Command[a72j(0x1aa)]({'name':a72j(0x1ad),'usage':'maka\x20get:whoami','shortDesc':a72j(0x1a9),'validOpts':[],'minArgLength':0x1,'maxArgLength':0x2},async function(){const k=a72j;try{const a=await this[k(0x1bd)]['getGlobalConfig']();if(a['hash']){const b=a72f[k(0x1b2)](a['hash']);Log['notice']('User\x20Email:\x20\x20\x20\x20\x20\x20\x20\x20\x20'+b?.[k(0x1bf)]),Log['notice']('User\x20ID:\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20\x20'+a[k(0x1b8)]?.['userId']),Log[k(0x1b0)](k(0x1b4)+a['token']?.['authToken']),Log[k(0x1b0)](k(0x1ab)+b?.[k(0x1bb)][k(0x1b5)](',\x20'));}}catch(c){console[k(0x1b7)](c),process['exit'](0x0);}},a72e);
@@ -1 +1 @@
1
- var a73i=a73d;(function(a,b){var f=a73d,c=a();while(!![]){try{var d=parseInt(f(0xd7))/0x1+-parseInt(f(0xde))/0x2*(-parseInt(f(0xd3))/0x3)+parseInt(f(0xd1))/0x4*(-parseInt(f(0xd2))/0x5)+-parseInt(f(0xdc))/0x6*(parseInt(f(0xcf))/0x7)+-parseInt(f(0xd8))/0x8*(-parseInt(f(0xd4))/0x9)+-parseInt(f(0xd5))/0xa*(parseInt(f(0xdd))/0xb)+-parseInt(f(0xd9))/0xc;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0xeb393));var a73b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a73d;if(c){var e=c[g(0xda)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){var h=a73d;return a73a[h(0xcc)]()[h(0xce)](h(0xcb))[h(0xcc)]()[h(0xdb)](a73a)[h(0xce)]('(((.+)+)+)+$');});a73a();function a73c(){var j=['(((.+)+)+)+$','toString','Try,\x20maka\x20--help','search','343BcuGZm','create','4ObFvaa','4945285egiOsq','5739DtVHEU','9YacTJC','8558350RfQZOc','Deprecated:\x20use\x20--help\x20instead','1850737dLNDnd','10028992zdaihB','14640960BKsQkt','apply','constructor','110082UPBuWF','11GqEuEX','1906PvKNSN'];a73c=function(){return j;};return a73c();}import{Command}from'../command.js';function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0xcb;var f=c[d];return f;},a73d(a,b);}import{UsageError}from'../error.js';Command[a73i(0xd0)]({'name':'help','description':a73i(0xcd),'aliases':['h'],'validOpts':[],'shortDesc':a73i(0xd6)},async function(){throw new UsageError();});
1
+ function a73d(a,b){var c=a73c();return a73d=function(d,e){d=d-0x18e;var f=c[d];return f;},a73d(a,b);}var a73i=a73d;(function(a,b){var f=a73d,c=a();while(!![]){try{var d=-parseInt(f(0x192))/0x1*(-parseInt(f(0x19d))/0x2)+-parseInt(f(0x197))/0x3+-parseInt(f(0x19b))/0x4*(parseInt(f(0x191))/0x5)+-parseInt(f(0x195))/0x6+-parseInt(f(0x19c))/0x7*(-parseInt(f(0x190))/0x8)+-parseInt(f(0x19e))/0x9*(-parseInt(f(0x19f))/0xa)+-parseInt(f(0x194))/0xb;if(d===b)break;else c['push'](c['shift']());}catch(e){c['push'](c['shift']());}}}(a73c,0xed226));var a73b=(function(){var a=!![];return function(b,c){var d=a?function(){var g=a73d;if(c){var e=c[g(0x198)](b,arguments);return c=null,e;}}:function(){};return a=![],d;};}()),a73a=a73b(this,function(){var h=a73d;return a73a[h(0x1a1)]()[h(0x18f)](h(0x19a))[h(0x1a1)]()[h(0x193)](a73a)[h(0x18f)](h(0x19a));});function a73c(){var j=['5721879TTWGyC','apply','create','(((.+)+)+)+$','186556rSWOMR','926051nWztZA','2710446yNqRju','4883499nBSyFR','30SRHJld','help','toString','Deprecated:\x20use\x20--help\x20instead','search','112dPCaCm','35uBfLzO','1vcitVo','constructor','11498839OmkGtO','3508446YkfceJ','Try,\x20maka\x20--help'];a73c=function(){return j;};return a73c();}a73a();import{Command}from'../command.js';import{UsageError}from'../error.js';Command[a73i(0x199)]({'name':a73i(0x1a0),'description':a73i(0x196),'aliases':['h'],'validOpts':[],'shortDesc':a73i(0x18e)},async function(){throw new UsageError();});