diff --git a/dist/engine.bundle.js b/dist/engine.bundle.js index 15373c1da..9ee4fdc1a 100644 --- a/dist/engine.bundle.js +++ b/dist/engine.bundle.js @@ -16,5 +16,5 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. - */a.PARSE_OPTIONS={ecmaVersion:5,locations:!0},a.READONLY_DESCRIPTOR={configurable:!0,enumerable:!0,writable:!1},a.NONENUMERABLE_DESCRIPTOR={configurable:!0,enumerable:!1,writable:!0},a.READONLY_NONENUMERABLE_DESCRIPTOR={configurable:!0,enumerable:!1,writable:!1},a.VARIABLE_DESCRIPTOR={configurable:!1,enumerable:!0,writable:!0},a.STEP_ERROR={},a.SCOPE_REFERENCE={},a.VALUE_IN_DESCRIPTOR={},a.toStringCycles_=[],a.prototype.getErrorLineNumber=function(e){var t=this.sourceCode;if(null==e||null==e.start)return NaN;try{return((t=t.substring(0,e.start)).match(/\n/g)||[]).length+1-this.sourceCodeLineOffset}catch(e){return NaN}},a.prototype.getErrorLineNumberMessage=function(e){return isNaN(e)?" (Unknown line number)":e<=0?" (Error occurred in an imported function)":" (Line Number "+e+". This line number is probably incorrect if your script is importing any functions. This is being worked on)"},a.prototype.appendCode=function(e){var t=this.stateStack[0];if(!t||"Program"!==t.node.type)throw Error("Expecting original AST to start with a Program node.");if("string"==typeof e&&(e=r.b(e,a.PARSE_OPTIONS)),!e||"Program"!==e.type)throw Error("Expecting new AST to start with a Program node.");this.populateScope_(e,t.scope);for(var n,i=0;n=e.body[i];i++)t.node.body.push(n);t.done=!1},a.prototype.step=function(){var e=this.stateStack,t=e[e.length-1];if(!t)return!1;var n=t.node,r=n.type;if("Program"===r&&t.done)return!1;if(this.paused_)return!0;try{var i=this.stepFunctions_[r](e,t,n)}catch(e){if(e!==a.STEP_ERROR)throw e}return i&&e.push(i),!!n.end||this.step()},a.prototype.run=function(){for(;!this.paused_&&this.step(););return this.paused_},a.prototype.initGlobalScope=function(e){this.setProperty(e,"NaN",NaN,a.READONLY_DESCRIPTOR),this.setProperty(e,"Infinity",1/0,a.READONLY_DESCRIPTOR),this.setProperty(e,"undefined",void 0,a.READONLY_DESCRIPTOR),this.setProperty(e,"window",e,a.READONLY_DESCRIPTOR),this.setProperty(e,"this",e,a.READONLY_DESCRIPTOR),this.setProperty(e,"self",e),this.OBJECT_PROTO=new a.Object(null),this.FUNCTION_PROTO=new a.Object(this.OBJECT_PROTO),this.initFunction(e),this.initObject(e),e.proto=this.OBJECT_PROTO,this.setProperty(e,"constructor",this.OBJECT,a.NONENUMERABLE_DESCRIPTOR),this.initArray(e),this.initString(e),this.initBoolean(e),this.initNumber(e),this.initDate(e),this.initRegExp(e),this.initError(e),this.initMath(e),this.initJSON(e);var t=this,n=this.createNativeFunction(function(e){throw EvalError("Can't happen")},!1);n.eval=!0,this.setProperty(e,"eval",n),this.setProperty(e,"parseInt",this.createNativeFunction(parseInt,!1)),this.setProperty(e,"parseFloat",this.createNativeFunction(parseFloat,!1)),this.setProperty(e,"isNaN",this.createNativeFunction(isNaN,!1)),this.setProperty(e,"isFinite",this.createNativeFunction(isFinite,!1));for(var r=[[escape,"escape"],[unescape,"unescape"],[decodeURI,"decodeURI"],[decodeURIComponent,"decodeURIComponent"],[encodeURI,"encodeURI"],[encodeURIComponent,"encodeURIComponent"]],i=0;i>> 0;","if (arguments.length > 1) T = thisArg;","k = 0;","while (k < len) {","if (k in O && !callbackfn.call(T, O[k], k, O)) return false;","k++;","}","return true;","}","});","Object.defineProperty(Array.prototype, 'filter',","{configurable: true, writable: true, value:","function(fun/*, thisArg*/) {","if (this === void 0 || this === null || typeof fun !== 'function') throw TypeError();","var t = Object(this);","var len = t.length >>> 0;","var res = [];","var thisArg = arguments.length >= 2 ? arguments[1] : void 0;","for (var i = 0; i < len; i++) {","if (i in t) {","var val = t[i];","if (fun.call(thisArg, val, i, t)) res.push(val);","}","}","return res;","}","});","if (!Array.prototype.find) {","Object.defineProperty(Array.prototype, 'find', {","value: function(predicate) {","if (this == null) {","throw new TypeError('\"this\" is null or not defined');","}","var o = Object(this);","var len = o.length >>> 0;","if (typeof predicate !== 'function') {","throw new TypeError('predicate must be a function');","}","var thisArg = arguments[1];","var k = 0;","while (k < len) {","var kValue = o[k];","if (predicate.call(thisArg, kValue, k, o)) {","return kValue;","}","k++;","}","return undefined;","},","configurable: true,","writable: true","});","}","if (!Array.prototype.findIndex) {","Object.defineProperty(Array.prototype, 'findIndex', {","value: function(predicate) {","if (this == null) {","throw new TypeError('\"this\" is null or not defined');","}","var o = Object(this);","var len = o.length >>> 0;","if (typeof predicate !== 'function') {","throw new TypeError('predicate must be a function');","}","var thisArg = arguments[1];","var k = 0;","while (k < len) {","var kValue = o[k];","if (predicate.call(thisArg, kValue, k, o)) {","return k;","}","k++;","}","return -1;","},","configurable: true,","writable: true","});","}","Object.defineProperty(Array.prototype, 'forEach',","{configurable: true, writable: true, value:","function(callback, thisArg) {","if (!this || typeof callback !== 'function') throw TypeError();","var T, k;","var O = Object(this);","var len = O.length >>> 0;","if (arguments.length > 1) T = thisArg;","k = 0;","while (k < len) {","if (k in O) callback.call(T, O[k], k, O);","k++;","}","}","});","Object.defineProperty(Array.prototype, 'includes', {","value: function(searchElement, fromIndex) {","if (this == null) {","throw new TypeError('\"this\" is null or not defined');","}","// 1. Let O be ? ToObject(this value).","var o = Object(this);",'// 2. Let len be ? ToLength(? Get(O, "length")).',"var len = o.length >>> 0;","// 3. If len is 0, return false.","if (len === 0) {","return false;","}","// 4. Let n be ? ToInteger(fromIndex).","// (If fromIndex is undefined, this step produces the value 0.)","var n = fromIndex | 0;","// 5. If n ≥ 0, then","// a. Let k be n.","// 6. Else n < 0,","// a. Let k be len + n.","// b. If k < 0, let k be 0.","var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);","function sameValueZero(x, y) {","return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y));","}","// 7. Repeat, while k < len","while (k < len) {","// a. Let elementK be the result of ? Get(O, ! ToString(k)).","// b. If SameValueZero(searchElement, elementK) is true, return true.","if (sameValueZero(o[k], searchElement)) {","return true;","}","// c. Increase k by 1. ","k++;","}","// 8. Return false","return false;","}","});","Object.defineProperty(Array.prototype, 'map',","{configurable: true, writable: true, value:","function(callback, thisArg) {","if (!this || typeof callback !== 'function') new TypeError;","var T, A, k;","var O = Object(this);","var len = O.length >>> 0;","if (arguments.length > 1) T = thisArg;","A = new Array(len);","k = 0;","while (k < len) {","if (k in O) A[k] = callback.call(T, O[k], k, O);","k++;","}","return A;","}","});","Object.defineProperty(Array.prototype, 'reduce',","{configurable: true, writable: true, value:","function(callback /*, initialValue*/) {","if (!this || typeof callback !== 'function') throw TypeError();","var t = Object(this), len = t.length >>> 0, k = 0, value;","if (arguments.length === 2) {","value = arguments[1];","} else {","while (k < len && !(k in t)) k++;","if (k >= len) {","throw TypeError('Reduce of empty array with no initial value');","}","value = t[k++];","}","for (; k < len; k++) {","if (k in t) value = callback(value, t[k], k, t);","}","return value;","}","});","Object.defineProperty(Array.prototype, 'reduceRight',","{configurable: true, writable: true, value:","function(callback /*, initialValue*/) {","if (null === this || 'undefined' === typeof this || 'function' !== typeof callback) throw TypeError();","var t = Object(this), len = t.length >>> 0, k = len - 1, value;","if (arguments.length >= 2) {","value = arguments[1];","} else {","while (k >= 0 && !(k in t)) k--;","if (k < 0) {","throw TypeError('Reduce of empty array with no initial value');","}","value = t[k--];","}","for (; k >= 0; k--) {","if (k in t) value = callback(value, t[k], k, t);","}","return value;","}","});","Object.defineProperty(Array.prototype, 'some',","{configurable: true, writable: true, value:","function(fun/*, thisArg*/) {","if (!this || typeof fun !== 'function') throw TypeError();","var t = Object(this);","var len = t.length >>> 0;","var thisArg = arguments.length >= 2 ? arguments[1] : void 0;","for (var i = 0; i < len; i++) {","if (i in t && fun.call(thisArg, t[i], i, t)) {","return true;","}","}","return false;","}","});","(function() {","var sort_ = Array.prototype.sort;","Array.prototype.sort = function(opt_comp) {","if (typeof opt_comp !== 'function') {","return sort_.call(this);","}","for (var i = 0; i < this.length; i++) {","var changes = 0;","for (var j = 0; j < this.length - i - 1; j++) {","if (opt_comp(this[j], this[j + 1]) > 0) {","var swap = this[j];","this[j] = this[j + 1];","this[j + 1] = swap;","changes++;","}","}","if (!changes) break;","}","return this;","};","})();","Object.defineProperty(Array.prototype, 'toLocaleString',","{configurable: true, writable: true, value:","function() {","var out = [];","for (var i = 0; i < this.length; i++) {","out[i] = (this[i] === null || this[i] === undefined) ? '' : this[i].toLocaleString();","}","return out.join(',');","}","});","")},a.prototype.initString=function(e){var t,n=this;t=function(e){return e=String(e),n.calledWithNew()?(this.data=e,this):e},this.STRING=this.createNativeFunction(t,!0),this.setProperty(e,"String",this.STRING),this.setProperty(this.STRING,"fromCharCode",this.createNativeFunction(String.fromCharCode,!1),a.NONENUMERABLE_DESCRIPTOR);for(var r=["charAt","charCodeAt","concat","indexOf","lastIndexOf","slice","substr","substring","toLocaleLowerCase","toLocaleUpperCase","toLowerCase","toUpperCase","trim"],i=0;i= 0; i--) {","str = str.substring(0, subs[i][0]) + subs[i][2] + str.substring(subs[i][0] + subs[i][1]);","}","} else {","var i = str.indexOf(substr);","if (i !== -1) {","var inject = newSubstr(str.substr(i, substr.length), i, str);","str = str.substring(0, i) + inject + str.substring(i + substr.length);","}","}","return str;","};","})();","if (!String.prototype.endsWith) {","String.prototype.endsWith = function(search, this_len) {","if (this_len === undefined || this_len > this.length) {","this_len = this.length;","}","return this.substring(this_len - search.length, this_len) === search;","};","}","if (!String.prototype.includes) {","String.prototype.includes = function(search, start) {","'use strict';","if (typeof start !== 'number') {","start = 0;","}"," ","if (start + search.length > this.length) {","return false;","} else {","return this.indexOf(search, start) !== -1;","}","};","}","if (!String.prototype.startsWith) {","String.prototype.startsWith = function(search, pos) {","return this.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search;","};","}","")},a.prototype.initBoolean=function(e){var t,n=this;t=function(e){return e=Boolean(e),n.calledWithNew()?(this.data=e,this):e},this.BOOLEAN=this.createNativeFunction(t,!0),this.setProperty(e,"Boolean",this.BOOLEAN)},a.prototype.initNumber=function(e){var t,n=this;t=function(e){return e=Number(e),n.calledWithNew()?(this.data=e,this):e},this.NUMBER=this.createNativeFunction(t,!0),this.setProperty(e,"Number",this.NUMBER);for(var r=["MAX_VALUE","MIN_VALUE","NaN","NEGATIVE_INFINITY","POSITIVE_INFINITY"],i=0;i>>0;return t===Number(e)?t:NaN},a.legalArrayIndex=function(e){var t=e>>>0;return String(t)===String(e)&&4294967295!==t?t:NaN},a.Value,a.Object=function(e){this.getter=Object.create(null),this.setter=Object.create(null),this.properties=Object.create(null),this.proto=e},a.Object.prototype.proto=null,a.Object.prototype.isObject=!0,a.Object.prototype.class="Object",a.Object.prototype.data=null,a.Object.prototype.toString=function(){if("Array"===this.class){(r=a.toStringCycles_).push(this);try{for(var e=[],t=0;t0;i.pop()){var o=i[i.length-1];switch(o.node.type){case"TryStatement":return void(o.cv={type:e,value:t,label:n});case"CallExpression":case"NewExpression":if(e===a.Completion.RETURN)return void(o.value=t);if(e!==a.Completion.THROW)throw Error("Unsynatctic break/continue not rejected by Acorn")}if(e===a.Completion.BREAK){if(n?o.labels&&-1!==o.labels.indexOf(n):o.isLoop||o.isSwitch)return void i.pop()}else if(e===a.Completion.CONTINUE&&(n?o.labels&&-1!==o.labels.indexOf(n):o.isLoop))return}var s;if(this.isa(t,this.ERROR)){var l={EvalError:EvalError,RangeError:RangeError,ReferenceError:ReferenceError,SyntaxError:SyntaxError,TypeError:TypeError,URIError:URIError},c=this.getProperty(t,"name").toString(),u=this.getProperty(t,"message").valueOf();s=(e=l[c]||Error)(u+r)}else s=String(t)+r;throw s},a.prototype.createGetter_=function(e,t){var n=Array.isArray(t)?t[0]:t,r=new this.nodeConstructor;r.type="CallExpression";var i=new a.State(r,this.stateStack[this.stateStack.length-1].scope);return i.doneCallee_=!0,i.funcThis_=n,i.func_=e,i.doneArgs_=!0,i.arguments_=[],i},a.prototype.createSetter_=function(e,t,n){var r=Array.isArray(t)?t[0]:this.global,i=new this.nodeConstructor;i.type="CallExpression";var o=new a.State(i,this.stateStack[this.stateStack.length-1].scope);return o.doneCallee_=!0,o.funcThis_=r,o.func_=e,o.doneArgs_=!0,o.arguments_=[n],o},a.State=function(e,t){this.node=e,this.scope=t},a.prototype.stepArrayExpression=function(e,t,n){var r=n.elements,i=t.n_||0;for(t.array_?(this.setProperty(t.array_,i,t.value),i++):(t.array_=this.createObjectProto(this.ARRAY_PROTO),t.array_.properties.length=r.length);i>=":s>>=l;break;case">>>=":s>>>=l;break;case"&=":s&=l;break;case"^=":s^=l;break;case"|=":s|=l;break;default:throw SyntaxError("Unknown assignment expression: "+n.operator)}var c=this.setValue(t.leftReference_,s);if(c)return t.doneSetter_=!0,t.setterValue_=s,this.createSetter_(c,t.leftReference_,s);e.pop(),e[e.length-1].value=s},a.prototype.stepBinaryExpression=function(e,t,n){if(!t.doneLeft_)return t.doneLeft_=!0,new a.State(n.left,t.scope);if(!t.doneRight_)return t.doneRight_=!0,t.leftValue_=t.value,new a.State(n.right,t.scope);e.pop();var r,i=t.leftValue_,o=t.value;switch(n.operator){case"==":r=i==o;break;case"!=":r=i!=o;break;case"===":r=i===o;break;case"!==":r=i!==o;break;case">":r=i>o;break;case">=":r=i>=o;break;case"<":r=i>":r=i>>o;break;case">>>":r=i>>>o;break;case"in":if(!o||!o.isObject){let e=this.getErrorLineNumber(n);this.throwException(this.TYPE_ERROR,"'in' expects an object, not '"+o+"'",e)}r=this.hasProperty(o,i);break;case"instanceof":if(!this.isa(o,this.FUNCTION)){let e=this.getErrorLineNumber(n);this.throwException(this.TYPE_ERROR,"Right-hand side of instanceof is not an object",e)}r=!!i.isObject&&this.isa(i,o);break;default:throw SyntaxError("Unknown binary operator: "+n.operator)}e[e.length-1].value=r},a.prototype.stepBlockStatement=function(e,t,n){var r=t.n_||0,i=n.body[r];if(i)return t.n_=r+1,new a.State(i,t.scope);e.pop()},a.prototype.stepBreakStatement=function(e,t,n){var r=n.label&&n.label.name;this.unwind(a.Completion.BREAK,void 0,r)},a.prototype.stepCallExpression=function(e,t,n){if(!t.doneCallee_){t.doneCallee_=1;var i=new a.State(n.callee,t.scope);return i.components=!0,i}if(1===t.doneCallee_){t.doneCallee_=2;var o=t.value;if(Array.isArray(o)){if(t.func_=this.getValue(o,n),o[0]===a.SCOPE_REFERENCE?t.directEval_="eval"===o[1]:t.funcThis_=o[0],(o=t.func_)&&"object"==typeof o&&o.isGetter)return o.isGetter=!1,t.doneCallee_=1,this.createGetter_(o,t.value)}else t.func_=o;t.arguments_=[],t.n_=0}o=t.func_;if(!t.doneArgs_){if(0!==t.n_&&t.arguments_.push(t.value),n.arguments[t.n_])return new a.State(n.arguments[t.n_++],t.scope);if("NewExpression"===n.type){if(o.illegalConstructor){let e=this.getErrorLineNumber(n);this.throwException(this.TYPE_ERROR,o+" is not a constructor",e)}var s=o.properties.prototype;"object"==typeof s&&null!==s||(s=this.OBJECT_PROTO),t.funcThis_=this.createObjectProto(s),t.isConstructor=!0}else void 0===t.funcThis_&&(t.funcThis_=t.scope.strict?void 0:this.global);t.doneArgs_=!0}if(t.doneExec_)e.pop(),t.isConstructor&&"object"!=typeof t.value?e[e.length-1].value=t.funcThis_:e[e.length-1].value=t.value;else{if(t.doneExec_=!0,!o||!o.isObject){let e=this.getErrorLineNumber(n);this.throwException(this.TYPE_ERROR,o+" is not a function",e)}var l=o.node;if(l){for(var c=this.createScope(l.body,o.parentScope),u=0;uu?t.arguments_[u]:void 0;this.setProperty(c,m,p)}var h=this.createObjectProto(this.ARRAY_PROTO);for(u=0;u=0&&this.recalculateTotalProduction()}recalculateTotalProduction(){let e=0;for(let t=0;t{if(Object(p.h)()){const t=d.AllServers[e];if(null==t)throw new Error(`Could not find Hacknet Server object in AllServers map for IP: ${e}`);return a.a.createElement(s.a,{key:t.hostname,node:t,purchaseMultiplier:this.state.purchaseMultiplier,recalculate:this.recalculateTotalProduction})}return a.a.createElement(o.a,{key:e.name,node:e,purchaseMultiplier:this.state.purchaseMultiplier,recalculate:this.recalculateTotalProduction})});return a.a.createElement("div",null,a.a.createElement("h1",null,"Hacknet ",Object(p.h)()?"Servers":"Nodes"),a.a.createElement(i.a,null),a.a.createElement(m.a,{cost:e,multiplier:this.state.purchaseMultiplier,onClick:this.handlePurchaseButtonClick}),a.a.createElement("br",null),a.a.createElement("div",{id:"hacknet-nodes-money-multipliers-div"},a.a.createElement(u.a,{totalProduction:this.state.totalProduction}),a.a.createElement(c.a,{onClicks:t,purchaseMultiplier:this.state.purchaseMultiplier})),Object(p.h)()&&a.a.createElement("button",{className:"std-button",onClick:this.createHashUpgradesPopup,style:{display:"block"}},"Spend Hashes on Upgrades"),a.a.createElement("ul",{id:"hacknet-nodes-list"},n))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return c}),n.d(t,"b",function(){return u});var r=n(17),a=n(82),i=n(60),o=n(5),s=n(67),l=n(65);let c=!1;function u(e){if(c=!0,e.constructor!==Array)throw new Error("Invalid non-array argument passed into writeCinematicText()");r.Engine.loadCinematicTextContent();const t=document.getElementById("cinematic-text-container");if(t.style.width="75%",null==t)throw new Error("Could not find cinematic-text-container for writeCinematicText()");Object(i.removeChildrenFromElement)(t);for(let t=0;t=t.length)return Promise.resolve(!0);return function(e){return new Promise(function(t,n){const r=document.getElementById("cinematic-text-container"),i=document.createElement("p");r.appendChild(i);const o=function e(t,n,r=0){return new Promise(function(i,o){Object(a.setTimeoutRef)(function(){const a=n.substring(0,r);if(r>=n.length)return t.innerHTML=a,i(!0);t.innerHTML=a+"";const s=e(t,n,r+1);s.then(function(e){i(e)},function(e){o(e)})},15)})}(i,e,0);o.then(function(e){t(e)},function(e){n(e)})})}(t[n]).then(function(){return e(t,n+1)})}(e).then(function(){return function(){var e=document.getElementById("cinematic-text-container"),t=document.getElementById("mainmenu-container");return e.appendChild(Object(o.createElement)("br")),new Promise(function(n){e.appendChild(Object(o.createElement)("a",{class:"a-link-button",innerText:"Continue...",clickListener:()=>{Object(i.removeChildrenFromElement)(e),r.Engine.loadTerminalContent(),t.style.visibility="visible",c=!1,n()}}))})}()}).catch(function(e){Object(s.exceptionAlert)(e)})}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CorporationRouting=t.overviewPage=void 0,t.overviewPage="Overview";t.CorporationRouting=class{constructor(e){this.currentPage=t.overviewPage,this.currentDivision=null,this.corp=e}current(){return this.currentPage}isValidPage(e){if(e===t.overviewPage)return!0;for(const t of this.corp.divisions)if(t.name===e)return!0;return!1}isOn(e){return!!this.isValidPage(e)&&e===this.currentPage}isOnOverviewPage(){return this.currentPage===t.overviewPage}routeTo(e){if(this.isValidPage(e)){if(this.currentDivision=null,e!==t.overviewPage){for(let t=0;t${t.title}

${t.txt}`;a.dialogBoxCreate(n)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CorporationUpgrades=void 0,t.CorporationUpgrades={0:[0,2e9,1.06,.03,"Smart Factories","Advanced AI automatically optimizes the operation and productivity of factories. Each level of this upgrade increases your global production by 3% (additive)."],1:[1,2e9,1.06,.1,"Smart Storage","Advanced AI automatically optimizes your warehouse storage methods. Each level of this upgrade increases your global warehouse storage size by 10% (additive)."],2:[2,4e9,1.1,.001,"DreamSense","Use DreamSense LCC Technologies to advertise your corporation to consumers through their dreams. Each level of this upgrade provides a passive increase in awareness of all of your companies (divisions) by 0.004 / market cycle,and in popularity by 0.001 / market cycle. A market cycle is approximately 15 seconds."],3:[3,4e9,1.12,.005,"Wilson Analytics","Purchase data and analysis from Wilson, a marketing research firm. Each level of this upgrades increases the effectiveness of your advertising by 0.5% (additive)."],4:[4,1e9,1.06,.1,"Nuoptimal Nootropic Injector Implants","Purchase the Nuoptimal Nootropic Injector augmentation for your employees. Each level of this upgrade globally increases the creativity of your employees by 10% (additive)."],5:[5,1e9,1.06,.1,"Speech Processor Implants","Purchase the Speech Processor augmentation for your employees. Each level of this upgrade globally increases the charisma of your employees by 10% (additive)."],6:[6,1e9,1.06,.1,"Neural Accelerators","Purchase the Neural Accelerator augmentation for your employees. Each level of this upgrade globally increases the intelligence of your employees by 10% (additive)."],7:[7,1e9,1.06,.1,"FocusWires","Purchase the FocusWire augmentation for your employees. Each level of this upgrade globally increases the efficiency of your employees by 10% (additive)."],8:[8,1e9,1.07,.01,"ABC SalesBots","Always Be Closing. Purchase these robotic salesmen to increase the amount of materials and products you sell. Each level of this upgrade globally increases your sales by 1% (additive)."],9:[9,5e9,1.07,.05,"Project Insight","Purchase 'Project Insight', a R&D service provided by the secretive Fulcrum Technologies. Each level of this upgrade globally increases the amount of Scientific Research you produce by 5% (additive)."]}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CorporationUnlockUpgrades=void 0,t.CorporationUnlockUpgrades={0:[0,2e10,"Export","Develop infrastructure to export your materials to your other facilities. This allows you to move materials around between different divisions and cities."],1:[1,25e9,"Smart Supply","Use advanced AI to anticipate your supply needs. This allows you to purchase exactly however many materials you need for production."],2:[2,5e9,"Market Research - Demand","Mine and analyze market data to determine the demand of all resources. The demand attribute, which affects sales, will be displayed for every material and product."],3:[3,5e9,"Market Data - Competition","Mine and analyze market data to determine how much competition there is on the market for all resources. The competition attribute, which affects sales, will be displayed for for every material and product."],4:[4,1e10,"VeChain","Use AI and blockchain technology to identify where you can improve your supply chain systems. This upgrade will allow you to view a wide array of useful statistics about your Corporation."],5:[5,5e11,"Shady Accounting","Utilize unscrupulous accounting practices and pay off government officials to save money on taxes. This reduces the dividend tax rate by 5%."],6:[6,2e12,"Government Partnership","Help national governments further their agendas in exchange for lowered taxes. This reduces the dividend tax rate by 10%"]}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.clearSleevesPage=t.updateSleevesPage=t.createSleevesPage=void 0;const o=n(867),s=n(252),l=n(866),c=n(11),u=n(19),m=n(412),p=n(175),h=n(172),d=n(39),_=n(50),g=n(3),y=n(16),f=n(12),b=n(160),E=n(67),v=n(54),k=n(5),C=n(79),P=n(51),O=n(74),S=n(180),T=n(60),M=n(111),x=n(44),w=n(865),A=n(31),R=n(125),N=n(442),D=n(864),I=n(863),B=n(862),L=i(n(26)),j=n(236),W={container:null,docButton:null,faqButton:null,info:null,sleeveList:null,sleeves:null};let F;function U(){if(y.routing.isOn(y.Page.Sleeves)){if(null===F)throw new Error("playerRef is null in updateSleevesPage()");if(null===W.sleeves)throw new Error("UIElems.sleeves is null in updateSleevesPage()");try{for(let e=0;e{f.dialogBoxCreate(I.MoreStatsContent(e))}}),n.travelButton=k.createElement("button",{class:"std-button",innerText:"Travel",clickListener:()=>{const r="sleeve-travel-popup",a=[];a.push(O.createPopupCloseButton(r,{class:"std-button"})),a.push(k.createElement("p",{innerHTML:"Have this sleeve travel to a different city. This affects the gyms and universities at which this sleeve can study. "+`Traveling to a different city costs ${j.renderToStaticMarkup(A.Money(c.CONSTANTS.TravelCost))}. `+"It will also CANCEL the sleeve's current task (setting it to idle)"}));for(const i in h.Cities)e.city!==i&&function(e,i){a.push(k.createElement("div",{class:"cmpy-mgmt-find-employee-option",innerText:i,clickListener:()=>{if(null==F)throw new Error("playerRef is null in popupArguments.click()");return F.canAfford(c.CONSTANTS.TravelCost)?(e.city=i,F.loseMoney(c.CONSTANTS.TravelCost),e.resetTaskStatus(),x.removeElementById(r),G(e,n),$(e,n,t),!1):(f.dialogBoxCreate("You cannot afford to have this sleeve travel to another city",!1),!1)}}))}(e,i);P.createPopup(r,a)}}),n.purchaseAugsButton=k.createElement("button",{class:"std-button",display:"block",innerText:"Manage Augmentations",clickListener:()=>{if(null==F)throw new Error("playerRef is null in purchaseAugsButton.click()");o.createSleevePurchaseAugsPopup(e,F)}}),n.statsPanel.appendChild(n.stats),n.statsPanel.appendChild(n.moreStatsButton),n.statsPanel.appendChild(n.travelButton),e.shock>=100&&n.statsPanel.appendChild(n.purchaseAugsButton),n.taskPanel=k.createElement("div",{class:"sleeve-panel",width:"40%"}),n.taskSelector=k.createElement("select",{class:"dropdown"}),n.taskSelector.add(C.createOptionElement("------")),n.taskSelector.add(C.createOptionElement("Work for Company")),n.taskSelector.add(C.createOptionElement("Work for Faction")),n.taskSelector.add(C.createOptionElement("Commit Crime")),n.taskSelector.add(C.createOptionElement("Take University Course")),n.taskSelector.add(C.createOptionElement("Workout at Gym")),n.taskSelector.add(C.createOptionElement("Shock Recovery")),n.taskSelector.add(C.createOptionElement("Synchronize")),n.taskDetailsSelector=k.createElement("select",{class:"dropdown"}),n.taskDetailsSelector2=k.createElement("select",{class:"dropdown"}),n.taskDescription=k.createElement("p"),n.taskProgressBar=k.createElement("p"),n.taskSelector.addEventListener("change",()=>{$(e,n,t)}),n.taskSelector.selectedIndex=e.currentTask,n.taskSelector.dispatchEvent(new Event("change")),z(e,n),n.taskSetButton=k.createElement("button",{class:"std-button",innerText:"Set Task",clickListener:()=>{!function(e,t){try{if(null==F)throw new Error("playerRef is null in Sleeve UI's setSleeveTask()");if(null==t.taskDescription)throw new Error("elems.taskDescription is null");const n=S.getSelectValue(t.taskSelector),r=S.getSelectValue(t.taskDetailsSelector),a=S.getSelectValue(t.taskDetailsSelector2);let i=!1;switch(n){case"------":t.taskDescription.innerText="This sleeve is currently idle";break;case"Work for Company":i=e.workForCompany(F,r);break;case"Work for Faction":i=e.workForFaction(F,r,a);break;case"Commit Crime":i=e.commitCrime(F,r);break;case"Take University Course":i=e.takeUniversityCourse(F,a,r);break;case"Workout at Gym":i=e.workoutAtGym(F,a,r);break;case"Shock Recovery":e.currentTask=s.SleeveTaskType.Recovery,i=e.shockRecovery(F);break;case"Synchronize":i=e.synchronize(F);break;default:console.error(`Invalid/Unrecognized taskValue in setSleeveTask(): ${n}`)}if(i)z(e,t);else switch(n){case"Work for Faction":t.taskDescription.innerText="Failed to assign sleeve to task. This is most likely because the selected faction does not offer the selected work type.";break;default:t.taskDescription.innerText="Failed to assign sleeve to task. Invalid choice(s)."}if(y.routing.isOn(y.Page.Sleeves)){if(U(),null==W.sleeves)throw new Error("UIElems.sleeves is null");for(const e of W.sleeves){if(null==e.taskSelector)throw new Error("e.taskSelector is null");e.taskSelector.dispatchEvent(new Event("change"))}}}catch(e){return console.error(`Exception caught in setSleeveTask(): ${e}`),E.exceptionAlert(e),!1}}(e,n)}}),n.taskPanel.appendChild(n.taskSelector),n.taskPanel.appendChild(n.taskDetailsSelector),n.taskPanel.appendChild(n.taskDetailsSelector2),n.taskPanel.appendChild(n.taskSetButton),n.taskPanel.appendChild(n.taskDescription),n.taskPanel.appendChild(n.taskProgressBar),n.earningsPanel=k.createElement("div",{class:"sleeve-panel",width:"35%"}),n.currentEarningsInfo=k.createElement("div"),n.totalEarningsButton=k.createElement("button",{class:"std-button",innerText:"More Earnings Info",clickListener:()=>{f.dialogBoxCreate(B.MoreEarningsContent(e))}}),n.earningsPanel.appendChild(n.currentEarningsInfo),n.earningsPanel.appendChild(n.totalEarningsButton),G(e,n),n.container.appendChild(n.statsPanel),n.container.appendChild(n.taskPanel),n.container.appendChild(n.earningsPanel),n):n}function G(e,t){if(y.routing.isOn(y.Page.Sleeves)){if(null==F)throw new Error("playerRef is null in updateSleeveUi()");if(null==t.taskProgressBar)throw new Error("elems.taskProgressBar is null");if(null==t.stats)throw new Error("elems.stats is null");if(null==t.currentEarningsInfo)throw new Error("elems.currentEarningsInfo is null");if(L.render(D.StatsElement(e),t.stats),e.currentTask===s.SleeveTaskType.Crime){const n=[["Money",A.Money(parseFloat(e.currentTaskLocation)),"(on success)"],["Hacking Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.hack),"(2x on success)"],["Strength Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.str),"(2x on success)"],["Defense Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.def),"(2x on success)"],["Dexterity Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.dex),"(2x on success)"],["Agility Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.agi),"(2x on success)"],["Charisma Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.cha),"(2x on success)"]];L.render(w.EarningsTableElement("Earnings (Pre-Synchronization)",n),t.currentEarningsInfo),t.taskProgressBar.innerText=b.createProgressBarText({progress:e.currentTaskTime/e.currentTaskMaxTime,totalTicks:25})}else{const n=[["Money:",R.MoneyRate(5*e.gainRatesForTask.money)],["Hacking Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.hack)} / s`],["Strength Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.str)} / s`],["Defense Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.def)} / s`],["Dexterity Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.dex)} / s`],["Agility Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.agi)} / s`],["Charisma Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.cha)} / s`]];if(e.currentTask===s.SleeveTaskType.Company||e.currentTask===s.SleeveTaskType.Faction){const t=e.getRepGain(F);n.push(["Reputation:",N.ReputationRate(5*t)])}L.render(w.EarningsTableElement("Earnings (Pre-Synchronization)",n),t.currentEarningsInfo),t.taskProgressBar.innerText=""}}}t.createSleevesPage=function(e){if(y.routing.isOn(y.Page.Sleeves))try{F=e,W.container=k.createElement("div",{class:"generic-menupage-container",id:"sleeves-container",position:"fixed"}),W.info=k.createElement("p",{class:"sleeves-page-info",innerHTML:"

Sleeves

Duplicate Sleeves are MK-V Synthoids (synthetic androids) into which your consciousness has been copied. In other words, these Synthoids contain a perfect duplicate of your mind.

Sleeves can be used to perform different tasks synchronously.

"}),W.faqButton=k.createElement("button",{class:"std-button",display:"inline-block",innerText:"FAQ",clickListener:()=>{f.dialogBoxCreate(l.SleeveFaq,!1)}}),W.docButton=k.createElement("a",{class:"std-button",display:"inline-block",href:"https://bitburner.readthedocs.io/en/latest/advancedgameplay/sleeves.html#duplicate-sleeves",innerText:"Documentation",target:"_blank"}),W.sleeveList=k.createElement("ul"),W.sleeves=[];for(const t of e.sleeves){const n=H(t,e.sleeves);if(null==n.container)throw new Error("sleeveUi.container is null in createSleevesPage()");W.sleeveList.appendChild(n.container),W.sleeves.push(n)}W.container.appendChild(W.info),W.container.appendChild(W.faqButton),W.container.appendChild(W.docButton),W.container.appendChild(W.sleeveList);const t=document.getElementById("entire-game-container");if(null===t)throw new Error("entire-game-container not found in createSleevesPage()");t.appendChild(W.container)}catch(e){E.exceptionAlert(e)}},t.updateSleevesPage=U,t.clearSleevesPage=function(){W.container instanceof HTMLElement&&M.removeElement(W.container);for(const e in W)W[e]=null;F=null};const K=["Study Computer Science","Data Structures","Networks","Algorithms","Management","Leadership"],q=["Train Strength","Train Defense","Train Dexterity","Train Agility"];function $(e,t,n){if(null==F)throw new Error("playerRef is null in updateSleeveTaskSelector()");const r=[];for(const t of n)e!==t&&t.currentTask===s.SleeveTaskType.Company&&r.push(t.currentTaskLocation);const a=[];for(const t of n)e!==t&&t.currentTask===s.SleeveTaskType.Faction&&a.push(t.currentTaskLocation);if(null===t.taskDetailsSelector)throw new Error("elems.taskDetailsSelector is null");if(null===t.taskDetailsSelector2)throw new Error("elems.taskDetailsSelector is null");switch(T.removeChildrenFromElement(t.taskDetailsSelector),T.removeChildrenFromElement(t.taskDetailsSelector2),t.taskDetailsSelector2=v.clearEventListeners(t.taskDetailsSelector2),S.getSelectValue(t.taskSelector)){case"Work for Company":{let n=0;const a=Object.keys(F.jobs);for(let i=0;i{if(null===t.taskDetailsSelector2)throw new Error("elems.taskDetailsSelector2 is null");const n=S.getSelectValue(t.taskDetailsSelector),r=u.Factions[n];if(null==r)return void console.warn(`Invalid faction name when trying to update Sleeve Task Selector: ${n}`);const a=r.getInfo();T.removeChildrenFromElement(t.taskDetailsSelector2);let i=0;a.offerHackingWork&&(t.taskDetailsSelector2.add(C.createOptionElement("Hacking Contracts")),e.factionWorkType===m.FactionWorkType.Hacking&&(t.taskDetailsSelector2.selectedIndex=i),++i),a.offerFieldWork&&(t.taskDetailsSelector2.add(C.createOptionElement("Field Work")),e.factionWorkType===m.FactionWorkType.Field&&(t.taskDetailsSelector2.selectedIndex=i),++i),a.offerSecurityWork&&(t.taskDetailsSelector2.add(C.createOptionElement("Security Work")),e.factionWorkType===m.FactionWorkType.Security&&(t.taskDetailsSelector2.selectedIndex=i),++i)}),t.taskDetailsSelector.dispatchEvent(new Event("change"));break}case"Commit Crime":{let n=0;for(const r in p.Crimes){const a=p.Crimes[r].name;if(t.taskDetailsSelector.add(C.createOptionElement(a,r)),""===e.crimeType)continue;const i=p.Crimes[e.crimeType];null!==i&&(a===i.name&&(t.taskDetailsSelector.selectedIndex=n),++n)}t.taskDetailsSelector2.add(C.createOptionElement("------"));break}case"Take University Course":for(let n=0;nanalyze Get information about the current machine
backdoor Install a backdoor on the current machine
buy [-l/program] Purchase a program through the Dark Web
cat [file] Display a .msg, .lit, or .txt file
cd [dir] Change to a new directory
check [script] [args...] Print a script's logs to Terminal
clear Clear all text on the terminal
cls See 'clear' command
connect [ip/hostname] Connects to a remote server
download [script/text file] Downloads scripts or text files to your computer
expr [math expression] Evaluate a mathematical expression
free Check the machine's memory (RAM) usage
hack Hack the current machine
help [command] Display this help text, or the help text for a command
home Connect to home computer
hostname Displays the hostname of the machine
ifconfig Displays the IP address of the machine
kill [script/pid] [args...] Stops the specified script on the current server
killall Stops all running scripts on the current machine
ls [dir] [| grep pattern] Displays all files on the machine
lscpu Displays the number of CPU cores on the machine
mem [script] [-t] [n] Displays the amount of RAM required to run the script
mv [src] [dest] Move/rename a text or script file
nano [file] Text editor - Open up and edit a script or text file
ps Display all scripts that are currently running
rm [file] Delete a file from the server
run [name] [-t] [n] [args...] Execute a program or script
scan Prints all immediately-available network connections
scan-analyze [d] [-a] Prints info for all servers up to d nodes away
scp [file] [server] Copies a file to a destination server
sudov Shows whether you have root access on this computer
tail [script] [args...] Displays dynamic logs for the specified script
theme [preset] | bg txt hlgt Change the color scheme of the UI
top Displays all running scripts and their RAM usage
unalias [alias name] Deletes the specified alias
wget [url] [target file] Retrieves code/text from a web server
",t.HelpTexts={alias:"alias [-g] [name=\"value\"]
Create or display aliases. An alias enables a replacement of a word with another string. It can be used to abbreviate a commonly used command, or commonly used parts of a command. The NAME of an alias defines the word that will be replaced, while the VALUE defines what it will be replaced by. For example, you could create the alias 'nuke' for the Terminal command 'run NUKE.exe' using the following:

alias nuke=\"run NUKE.exe\"

Then, to run the NUKE.exe program you would just have to enter 'nuke' in Terminal rather than the full command. It is important to note that 'default' aliases will only be substituted for the first word of a Terminal command. For example, if the following alias was set:

alias worm=\"HTTPWorm.exe\"

and then you tried to run the following terminal command:

run worm

This would fail because the worm alias is not the first word of a Terminal command. To allow an alias to be substituted anywhere in a Terminal command, rather than just the first word, you must set it to be a global alias using the -g flag:

alias -g worm=\"HTTPWorm.exe\"

Now, the 'worm' alias will be substituted anytime it shows up as an individual word in a Terminal command.

Entering just the command 'alias' without any arguments prints the list of all defined aliases in the reusable form 'alias NAME=VALUE' on the Terminal.

The 'unalias' command can be used to remove aliases.

",analyze:"analze
Prints details and statistics about the current server. The information that is printed includes basic server details such as the hostname, whether the player has root access, what ports are opened/closed, and also hacking-related information such as an estimated chance to successfully hack, an estimate of how much money is available on the server, etc.",backdoor:"backdoor
Install a backdoor on the current machine, grants a secret bonus depending on the machine.
Requires root access to run.
",buy:"buy [-l / program]
Purchase a program through the Dark Web. Requires a TOR router to use.

If this command is ran with the '-l' flag, it will display a list of all programs that can be bought through the dark web to the Terminal, as well as their costs.

Otherwise, the name of the program must be passed in as a parameter. This name is NOT case-sensitive.",cat:"cat [file]
Display message (.msg), literature (.lit), or text (.txt) files. Examples:

cat j1.msg
cat foo.lit
cat servers.txt",cd:"cd [dir]
Change to the specified directory. Note that this works even for directories that don't exist. If you change to a directory that does not exist, it will not be 'created'. Examples:

cd scripts/hacking
cd /logs
cd ../",check:"check [script name] [args...]
Print the logs of the script specified by the script name and arguments to the Terminal. Each argument must be separated by a space. Remember that a running script is uniquely identified both by its name and the arguments that are used to start it. So, if a script was ran with the following arguments:

run foo.script 1 2 foodnstuff

Then to run the 'check' command on this script you would have to pass the same arguments in:

check foo.script 1 2 foodnstuff",clear:"clear
Clear the Terminal screen, deleting all of the text. Note that this does not delete the user's command history, so using the up and down arrow keys is still valid. Also note that this is permanent and there is no way to undo this. Synonymous with 'cls' command",cls:"cls
Clear the Terminal screen, deleting all of the text. Note that this does not delete the user's command history, so using the up and down arrow keys is still valid. Also note that this is permanent and there is no way to undo this. Synonymous with 'clear' command",connect:"connect [hostname/ip]
Connect to a remote server. The hostname or IP address of the remote server must be given as the argument to this command. Note that only servers that are immediately adjacent to the current server in the network can be connected to. To see which servers can be connected to, use the 'scan' command.",download:"download [script/text file]
Downloads a script or text file to your computer (like your real life computer).
You can also download all of your scripts/text files as a zip file using the following Terminal commands:

Download all scripts and text files: download *
Download all scripts: download *.script
Download all text files: download *.txt
",expr:"expr [mathematical expression]
Evaluate a simple mathematical expression. Supports native JavaScript operators:
+, -, /, *, **, %
Example:
expr 25 * 2 ** 10
Note that letters (non-digits) are not allowed and will be removed from the input.",free:"free
Display's the memory usage on the current machine. Print the amount of RAM that is available on the current server as well as how much of it is being used.",hack:"hack
Attempt to hack the current server. Requires root access in order to be run. See the wiki page for hacking mechanics
",help:"help [command]
Display Terminal help information. Without arguments, 'help' prints a list of all valid Terminal commands and a brief description of their functionality. You can also pass the name of a Terminal command as an argument to 'help' to print more detailed information about the Terminal command. Examples:

help alias
help scan-analyze",home:"home
Connect to your home computer. This will work no matter what server you are currently connected to.",hostname:"hostname
Prints the hostname of the current server",ifconfig:"ipconfig
Prints the IP address of the current server",kill:"kill [script name] [args...]
kill [pid]
Kill the script specified by the script name and arguments OR by its PID.

If you are killing the script using its filename and arguments, then each argument must be separated by a space. Remember that a running script is uniquely identified by both its name and the arguments that are used to start it. So, if a script was ran with the following arguments:

run foo.script 1 sigma-cosmetics

Then to kill this script the same arguments would have to be used:

kill foo.script 1 sigma-cosmetics

If you are killing the script using its PID, then the PID argument must be numeric",killall:"killall
Kills all scripts on the current server. Note that after the 'kill' command is issued for a script, it may take a while for the script to actually stop running. This will happen if the script is in the middle of a command such as grow() or weaken() that takes time to execute. The script will not be stopped/killed until after that time has elapsed.",ls:"ls [dir] [| grep pattern]
The ls command, with no arguments, prints all files and directories on the current server's directory to the Terminal screen. The files will be displayed in alphabetical order.

The 'dir' optional parameter can be used to display files/directories in another directory.

The '| grep pattern' optional parameter can be used to only display files whose filenames match the specified pattern.

Examples:

List all files with the '.script' extension in the current directory:
ls | grep .script

List all files with the '.js' extension in the root directory:
ls / | grep .js

List all files with the word 'purchase' in the filename, in the 'scripts' directory:
ls scripts | grep purchase",lscpu:"lscpu
Prints the number of CPU Cores the current server has",mem:"mem [script name] [-t] [num threads]
Displays the amount of RAM needed to run the specified script with a single thread. The command can also be used to print the amount of RAM needed to run a script with multiple threads using the '-t' flag. If the '-t' flag is specified, then an argument for the number of threads must be passed in afterwards. Examples:

mem foo.script
mem foo.script -t 50
The first example above will print the amount of RAM needed to run 'foo.script' with a single thread. The second example above will print the amount of RAM needed to run 'foo.script' with 50 threads.",mv:"mv [src] [dest]
Move the source file to the specified destination. This can also be used to rename files. This command only works for scripts and text files (.txt). This command CANNOT be used to convert to different file types

Note that, unlike the Linux 'mv' command, the destination argument must be the full filepath. Examples:

mv hacking-controller.script scripts/hacking-controller.script
mv myScript.js myOldScript.js",nano:"nano [file name]
Opens up the specified file in the Text Editor. Only scripts (.script) or text files (.txt) can be edited using the Text Editor. If the file does not already exist, then a new, empty one will be created",ps:"ps
Prints all scripts that are running on the current server",rm:"rm [file]
Removes the specified file from the current server. A file can be a script, a program, or a message file.

WARNING: This is permanent and cannot be undone",run:"run [file name] [-t] [num threads] [args...]
Execute a program or a script.

The '[-t]', '[num threads]', and '[args...]' arguments are only valid when running a script. The '-t' flag is used to indicate that the script should be run with the specified number of threads. If the flag is omitted, then the script will be run with a single thread by default. If the '-t' flag is used, then it MUST come immediately after the script name, and the [num threads] argument MUST come immediately afterwards.

[args...] represents a variable number of arguments that will be passed into the script. See the documentation about script arguments. Each specified argument must be separated by a space.

",scan:"scan
Prints all immediately-available network connection. This will print a list of all servers that you can currently connect to using the 'connect' Terminal command.","scan-analyze":"scan-analyze [depth] [-a]
Prints detailed information about all servers up to [depth] nodes away on the network. Calling 'scan-analyze 1' will display information for the same servers that are shown by the 'scan' Terminal command. This command also shows the relative paths to reach each server.

By default, the maximum depth that can be specified for 'scan-analyze' is 3. However, once you have the DeepscanV1.exe and DeepscanV2.exe programs, you can execute 'scan-analyze' with a depth up to 5 and 10, respectively.

The information 'scan-analyze' displays about each server includes whether or not you have root access to it, its required hacking level, the number of open ports required to run NUKE.exe on it, and how much RAM it has.

By default, this command will not display servers that you have purchased. However, you can pass in the -a flag at the end of the command if you would like to enable that.",scp:"scp [filename] [target server]
Copies the specified file from the current server to the target server. This command only works for script files (.script extension), literature files (.lit extension), and text files (.txt extension). The second argument passed in must be the hostname or IP of the target server.",sudov:"sudov
Prints whether or not you have root access to the current machine",tail:"tail [script name] [args...]
Displays dynamic logs for the script specified by the script name and arguments. Each argument must be separated by a space. Remember that a running script is uniquely identified by both its name and the arguments that were used to run it. So, if a script was ran with the following arguments:

run foo.script 10 50000

Then in order to check its logs with 'tail' the same arguments must be used:

tail foo.script 10 50000",theme:"theme [preset] | [#background #text #highlight]
Change the color of the game's user interface

This command can be called with a preset theme. Currently, the supported presets are 'default', 'muted', and 'solarized'. However, you can also specify your own color scheme using hex values. To do so, you must specify three hex color values for the background color, the text color, and the highlight color. These hex values must be preceded by a pound sign (#) and must be either 3 or 6 digits. Example:

theme #ffffff #385 #235012

A color picker such as Google's can be used to get your desired hex color values

Themes are not saved, so when the game is closed and then re-opened or reloaded then it will revert back to the default theme.",top:"top
Prints a list of all scripts running on the current server as well as their thread count and how much RAM they are using in total.",unalias:"unalias [alias name]
Deletes the specified alias. Note that the double quotation marks are required.

As an example, if an alias was declared using:

alias r=\"run\"

Then it could be removed using:

unalias r

It is not necessary to differentiate between global and non-global aliases when using 'unalias'",wget:"wget [url] [target file]
Retrieves data from a URL and downloads it to a file on the current server. The data can only be downloaded to a script (.script, .ns, .js) or a text file (.txt). If the file already exists, it will be overwritten by this command.

Note that it will not be possible to download data from many websites because they do not allow cross-origin resource sharing (CORS). Example:

wget https://raw.githubusercontent.com/danielyxie/bitburner/master/README.md game_readme.txt"}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.trusted=void 0,t.trusted=function(e){return function(t){t.isTrusted&&e()}}},,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.purchaseTorRouter=t.createUpgradeHomeRamPopup=t.createUpgradeHomeCoresPopup=t.createStartCorporationPopup=t.createPurchaseServerPopup=t.createTravelPopup=void 0;const o=n(11),s=n(27),l=n(29),c=n(152),u=n(47),m=n(18),p=n(3),h=n(31),d=n(12),_=n(58),g=n(5),y=n(51),f=n(74),b=n(44),E=i(n(0));t.createTravelPopup=function(e,t){const n=o.CONSTANTS.TravelCost;if(m.Settings.SuppressTravelConfirmation)return void t(e);const r=_.yesNoBoxGetYesButton(),a=_.yesNoBoxGetNoButton();null!=r&&null!=a?(r.innerHTML="Yes",r.addEventListener("click",()=>(_.yesNoBoxClose(),t(e),!1)),a.innerHTML="No",a.addEventListener("click",()=>(_.yesNoBoxClose(),!1)),_.yesNoBoxCreate(E.createElement("span",null,"Would you like to travel to ",e,"? The trip will cost ",h.Money(n),"."))):console.warn("Could not find YesNo pop-up box buttons")},t.createPurchaseServerPopup=function(e,t){const n=c.getPurchaseServerCost(e);if(n===1/0)return void d.dialogBoxCreate("Something went wrong when trying to purchase this server. Please contact developer.");const r=_.yesNoTxtInpBoxGetYesButton(),a=_.yesNoTxtInpBoxGetNoButton();null!=r&&null!=a&&(r.innerHTML="Purchase Server",a.innerHTML="Cancel",r.addEventListener("click",function(){c.purchaseServer(e,t),_.yesNoTxtInpBoxClose()}),a.addEventListener("click",function(){_.yesNoTxtInpBoxClose()}),_.yesNoTxtInpBoxCreate(E.createElement(E.Fragment,null,"Would you like to purchase a new server with ",p.numeralWrapper.formatRAM(e)," of RAM for ",h.Money(n),"?",E.createElement("br",null),E.createElement("br",null),"Please enter the server hostname below:",E.createElement("br",null))))},t.createStartCorporationPopup=function(e){if(!e.canAccessCorporation()||e.hasCorporation())return;const t="create-corporation-popup",n=g.createElement("p",{innerHTML:"Would you like to start a corporation? This will require $150b for registration and initial funding. This $150b can either be self-funded, or you can obtain the seed money from the government in exchange for 500 million shares

If you would like to start one, please enter a name for your corporation below:"}),r=g.createElement("input",{class:"text-input",placeholder:"Corporation Name"}),a=g.createElement("button",{class:"popup-box-button",innerText:"Self-Fund",clickListener:()=>{if(!e.canAfford(15e10))return d.dialogBoxCreate("You don't have enough money to create a corporation! You need $150b."),!1;const n=r.value;if(null==n||""==n)return d.dialogBoxCreate("Invalid company name!"),!1;e.startCorporation(n),e.loseMoney(15e10);const a=document.getElementById("world-menu-header");return a instanceof HTMLElement&&(a.click(),a.click()),d.dialogBoxCreate("Congratulations! You just self-funded your own corporation. You can visit and manage your company in the City."),b.removeElementById(t),!1}}),i=g.createElement("button",{class:"popup-box-button",innerText:"Use Seed Money",clickListener:()=>{const n=r.value;if(null==n||""==n)return d.dialogBoxCreate("Invalid company name!"),!1;e.startCorporation(n,5e8);const a=document.getElementById("world-menu-header");return a instanceof HTMLElement&&(a.click(),a.click()),d.dialogBoxCreate("Congratulations! You just started your own corporation with government seed money. You can visit and manage your company in the City."),b.removeElementById(t),!1}}),o=f.createPopupCloseButton(t,{class:"popup-box-button"});y.createPopup(t,[n,r,o,a,i]),r.focus()},t.createUpgradeHomeCoresPopup=function(e){const t=e.getHomeComputer().cpuCores;if(t>=8)return void d.dialogBoxCreate(E.createElement(E.Fragment,null,"You have the maximum amount of CPU cores on your home computer."));const n=[0,1e10,25e10,5e12,1e14,1e15,2e16,2e17][t],r=_.yesNoBoxGetYesButton(),a=_.yesNoBoxGetNoButton();null!=r&&null!=a&&(r.innerHTML="Purchase",r.addEventListener("click",()=>{e.canAfford(n)?(e.loseMoney(n),e.getHomeComputer().cpuCores++,d.dialogBoxCreate("You purchased an additional CPU Core for your home computer! It now has "+e.getHomeComputer().cpuCores+" cores.")):d.dialogBoxCreate("You do not have enough money to purchase an additional CPU Core for your home computer!"),_.yesNoBoxClose()}),a.innerHTML="Cancel",a.addEventListener("click",()=>{_.yesNoBoxClose()}),_.yesNoBoxCreate(E.createElement(E.Fragment,null,"Would you like to purchase an additional CPU Core for your home computer? Each CPU Core lets you start with an additional Core Node in Hacking Missions.",E.createElement("br",null),E.createElement("br",null),"Purchasing an additional core (for a total of ",e.getHomeComputer().cpuCores+1,") will cost ",h.Money(n))))},t.createUpgradeHomeRamPopup=function(e){const t=e.getUpgradeHomeRamCost(),n=e.getHomeComputer().maxRam,r=_.yesNoBoxGetYesButton(),a=_.yesNoBoxGetNoButton();null!=r&&null!=a&&(e.getHomeComputer().maxRam>=o.CONSTANTS.HomeComputerMaxRam?d.dialogBoxCreate(E.createElement(E.Fragment,null,"You have the maximum amount of RAM on your home computer.")):(r.innerText="Purchase",r.addEventListener("click",()=>{c.purchaseRamForHomeComputer(t,e),_.yesNoBoxClose()}),a.innerText="Cancel",a.addEventListener("click",()=>{_.yesNoBoxClose()}),_.yesNoBoxCreate(E.createElement(E.Fragment,null,"Would you like to purchase additional RAM for your home computer? ",E.createElement("br",null),E.createElement("br",null),"This will upgrade your RAM from ",p.numeralWrapper.formatRAM(n)," to ",p.numeralWrapper.formatRAM(2*n),". ",E.createElement("br",null),E.createElement("br",null),"This will cost ",h.Money(t)))))},t.purchaseTorRouter=function(e){if(e.hasTorRouter())return void d.dialogBoxCreate("You already have a TOR Router!");if(!e.canAfford(o.CONSTANTS.TorRouterCost))return void d.dialogBoxCreate("You cannot afford to purchase the TOR router!");e.loseMoney(o.CONSTANTS.TorRouterCost);const t=l.safetlyCreateUniqueServer({ip:s.createUniqueRandomIp(),hostname:"darkweb",organizationName:"",isConnectedTo:!1,adminRights:!1,purchasedByPlayer:!1,maxRam:1});s.AddToAllServers(t),u.SpecialServerIps.addIp("Darkweb Server",t.ip),e.getHomeComputer().serversOnNetwork.push(t.ip),t.serversOnNetwork.push(e.getHomeComputer().ip),d.dialogBoxCreate("You have purchased a TOR router!
You now have access to the dark web from your home computer.
Use the scan/scan-analyze commands to search for the dark web connection.")}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AutoupdatingStdButton=void 0;const o=i(n(0));t.AutoupdatingStdButton=class extends o.Component{constructor(e){super(e),this.interval=0,this.state={i:0}}componentDidMount(){const e=this.props.intervalTime?this.props.intervalTime:1e3;this.interval=setInterval(()=>this.tick(),e)}componentWillUnmount(){clearInterval(this.interval)}tick(){this.setState(e=>({i:e.i+1}))}render(){const e=null!=this.props.tooltip&&""!==this.props.tooltip;let t=this.props.disabled?"std-button-disabled":"std-button";e&&(t+=" tooltip");const n={__html:this.props.tooltip?this.props.tooltip:""};return o.createElement("button",{className:t,onClick:this.props.onClick,style:this.props.style},this.props.text,e&&o.createElement("span",{className:"tooltiptext",dangerouslySetInnerHTML:n}))}}},,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LocationType=void 0,function(e){e[e.Company=0]="Company",e[e.Gym=1]="Gym",e[e.Hospital=2]="Hospital",e[e.Slums=3]="Slums",e[e.Special=4]="Special",e[e.StockMarket=5]="StockMarket",e[e.TechVendor=6]="TechVendor",e[e.TravelAgency=7]="TravelAgency",e[e.University=8]="University",e[e.Casino=9]="Casino"}(t.LocationType||(t.LocationType={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Action=void 0;const r=n(1),a=n(22),i=n(135),o=n(24),s=n(45);class l{constructor(e=null){this.name="",this.desc="",this.level=1,this.maxLevel=1,this.autoLevel=!0,this.baseDifficulty=100,this.difficultyFac=1.01,this.rewardFac=1.02,this.successes=0,this.failures=0,this.rankGain=0,this.rankLoss=0,this.hpLoss=0,this.hpLost=0,this.isStealth=!1,this.isKill=!1,this.count=a.getRandomInt(1e3,25e3),this.countGrowth=a.getRandomInt(1,5),this.weights={hack:1/7,str:1/7,def:1/7,dex:1/7,agi:1/7,cha:1/7,int:1/7},this.decays={hack:.9,str:.9,def:.9,dex:.9,agi:.9,cha:.9,int:.9},this.teamCount=0,e&&e.name&&(this.name=e.name),e&&e.desc&&(this.desc=e.desc),e&&e.baseDifficulty&&(this.baseDifficulty=i.addOffset(e.baseDifficulty,10)),e&&e.difficultyFac&&(this.difficultyFac=e.difficultyFac),e&&e.rewardFac&&(this.rewardFac=e.rewardFac),e&&e.rankGain&&(this.rankGain=e.rankGain),e&&e.rankLoss&&(this.rankLoss=e.rankLoss),e&&e.hpLoss&&(this.hpLoss=e.hpLoss),e&&e.isStealth&&(this.isStealth=e.isStealth),e&&e.isKill&&(this.isKill=e.isKill),e&&e.count&&(this.count=e.count),e&&e.countGrowth&&(this.countGrowth=e.countGrowth),e&&e.weights&&(this.weights=e.weights),e&&e.decays&&(this.decays=e.decays);let t=0;for(const e in this.weights)this.weights.hasOwnProperty(e)&&(t+=this.weights[e]);if(t-1>=10*Number.EPSILON)throw new Error("Invalid weights when constructing Action "+this.name+". The weights should sum up to 1. They sum up to :1");for(const e in this.decays)if(this.decays.hasOwnProperty(e)&&this.decays[e]>1)throw new Error("Invalid decays when constructing Action "+this.name+". Decay value cannot be greater than 1")}getDifficulty(){const e=this.baseDifficulty*Math.pow(this.difficultyFac,this.level-1);if(isNaN(e))throw new Error("Calculated NaN in Action.getDifficulty()");return e}attempt(e){return Math.random()s.BladeburnerConstants.ChaosThreshold){const e=t.chaos-s.BladeburnerConstants.ChaosThreshold+1;return Math.pow(e,.1)}return 1}getSuccessChance(e,t={est:!1}){if(null==e)throw new Error("Invalid Bladeburner instance passed into Action.getSuccessChance");let n=this.getDifficulty(),a=0;for(const t in this.weights)if(this.weights.hasOwnProperty(t)){const n=r.Player.queryStatFromString(t),i="eff"+t.charAt(0).toUpperCase()+t.slice(1);let o=e.skillMultipliers[i];null==o&&(console.error(`Failed to find Bladeburner Skill multiplier for: ${t}`),o=1),a+=this.weights[t]*Math.pow(o*n,this.decays[t])}if(a*=r.Player.getIntelligenceBonus(.75),a*=e.calculateStaminaPenalty(),a*=this.getTeamSuccessBonus(e),a*=this.getChaosCompetencePenalty(e,t),n*=this.getChaosDifficultyBonus(e),"Raid"==this.name&&e.getCurrentCity().comms<=0)return 0;if(a*=e.skillMultipliers.successChanceAll,a*=this.getActionTypeSkillSuccessBonus(e),this.isStealth&&(a*=e.skillMultipliers.successChanceStealth),this.isKill&&(a*=e.skillMultipliers.successChanceKill),a*=r.Player.bladeburner_success_chance_mult,isNaN(a))throw new Error("Competence calculated as NaN in Action.getSuccessChance()");return Math.min(1,a/n)}getSuccessesNeededForNextLevel(e){return Math.ceil(.5*this.maxLevel*(2*e+(this.maxLevel-1)))}setMaxLevel(e){this.successes>=this.getSuccessesNeededForNextLevel(e)&&++this.maxLevel}toJSON(){return o.Generic_toJSON("Action",this)}static fromJSON(e){return o.Generic_fromJSON(l,e.data)}}t.Action=l,o.Reviver.constructors.Action=l},,,,,,,,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.EventEmitter=void 0;t.EventEmitter=class{constructor(e){if(this.subscribers={},Array.isArray(e))for(const t of e)this.addSubscriber(t)}addSubscriber(e){this.subscribers[e.id]=e.cb}emitEvent(...e){for(const t in this.subscribers)(0,this.subscribers[t])(e)}removeSubscriber(e){delete this.subscribers[e]}}},,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Server=void 0;const r=n(685),a=n(25),i=n(1221),o=n(406),s=n(24);class l extends r.BaseServer{constructor(e={hostname:"",ip:o.createRandomIp()}){super(e),this.backdoorInstalled=!1,this.baseDifficulty=1,this.hackDifficulty=1,this.minDifficulty=1,this.moneyAvailable=0,this.moneyMax=0,this.numOpenPortsRequired=5,this.openPortCount=0,this.purchasedByPlayer=!1,this.requiredHackingSkill=1,this.serverGrowth=1,this.hostname.startsWith("hacknet-node-")&&(this.hostname=i.createRandomString(10)),this.purchasedByPlayer=null!=e.purchasedByPlayer&&e.purchasedByPlayer,this.maxRam=null!=e.maxRam?e.maxRam:0,this.requiredHackingSkill=null!=e.requiredHackingSkill?e.requiredHackingSkill:1,this.moneyAvailable=null!=e.moneyAvailable?e.moneyAvailable*a.BitNodeMultipliers.ServerStartingMoney:0,this.moneyMax=25*this.moneyAvailable*a.BitNodeMultipliers.ServerMaxMoney,this.hackDifficulty=null!=e.hackDifficulty?e.hackDifficulty*a.BitNodeMultipliers.ServerStartingSecurity:1,this.baseDifficulty=this.hackDifficulty,this.minDifficulty=Math.max(1,Math.round(this.hackDifficulty/3)),this.serverGrowth=null!=e.serverGrowth?e.serverGrowth:1,this.numOpenPortsRequired=null!=e.numOpenPortsRequired?e.numOpenPortsRequired:5}capDifficulty(){this.hackDifficulty100&&(this.hackDifficulty=100)}changeMinimumSecurity(e,t=!1){t?this.minDifficulty*=e:this.minDifficulty+=e,this.minDifficulty=Math.max(1,this.minDifficulty)}changeMaximumMoney(e,t=!1){t?this.moneyMax*=e:this.moneyMax+=e}fortify(e){this.hackDifficulty+=e,this.capDifficulty()}weaken(e){this.hackDifficulty-=e*a.BitNodeMultipliers.ServerWeakenRate,this.capDifficulty()}toJSON(){return s.Generic_toJSON("Server",this)}static fromJSON(e){return s.Generic_fromJSON(l,e.data)}}t.Server=l,s.Reviver.constructors.Server=l},,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BlackOperation=void 0;const r=n(186),a=n(24);class i extends r.Operation{constructor(e=null){super(e),this.count=1,this.countGrowth=0}getActionTimePenalty(){return 1.5}getChaosCompetencePenalty(){return 1}getChaosDifficultyBonus(){return 1}toJSON(){return a.Generic_toJSON("BlackOperation",this)}static fromJSON(e){return a.Generic_fromJSON(i,e.data)}}t.BlackOperation=i,a.Reviver.constructors.BlackOperation=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Skill=void 0;const r=n(25);t.Skill=class{constructor(e={name:"foo",desc:"foo"}){if(this.baseCost=1,this.costInc=1,this.maxLvl=0,this.successChanceAll=0,this.successChanceStealth=0,this.successChanceKill=0,this.successChanceContract=0,this.successChanceOperation=0,this.successChanceEstimate=0,this.actionTime=0,this.effHack=0,this.effStr=0,this.effDef=0,this.effDex=0,this.effAgi=0,this.effCha=0,this.stamina=0,this.money=0,this.expGain=0,!e.name)throw new Error("Failed to initialize Bladeburner Skill. No name was specified in ctor");if(!e.desc)throw new Error("Failed to initialize Bladeburner Skills. No desc was specified in ctor");this.name=e.name,this.desc=e.desc,this.baseCost=e.baseCost?e.baseCost:1,this.costInc=e.costInc?e.costInc:1,e.maxLvl&&(this.maxLvl=e.maxLvl),e.successChanceAll&&(this.successChanceAll=e.successChanceAll),e.successChanceStealth&&(this.successChanceStealth=e.successChanceStealth),e.successChanceKill&&(this.successChanceKill=e.successChanceKill),e.successChanceContract&&(this.successChanceContract=e.successChanceContract),e.successChanceOperation&&(this.successChanceOperation=e.successChanceOperation),e.successChanceEstimate&&(this.successChanceEstimate=e.successChanceEstimate),e.actionTime&&(this.actionTime=e.actionTime),e.effHack&&(this.effHack=e.effHack),e.effStr&&(this.effStr=e.effStr),e.effDef&&(this.effDef=e.effDef),e.effDex&&(this.effDex=e.effDex),e.effAgi&&(this.effAgi=e.effAgi),e.effCha&&(this.effCha=e.effCha),e.stamina&&(this.stamina=e.stamina),e.money&&(this.money=e.money),e.expGain&&(this.expGain=e.expGain)}calculateCost(e){return Math.floor((this.baseCost+e*this.costInc)*r.BitNodeMultipliers.BladeburnerSkillCost)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.findSleevePurchasableAugs=void 0;const r=n(15),a=n(4),i=n(19);t.findSleevePurchasableAugs=function(e,t){const n=e.augmentations.map(e=>e.name),o=[];function s(e){return e.name!==a.AugmentationNames.NeuroFluxGovernor&&!n.includes(e.name)&&!o.includes(e)&&!e.isSpecial}if(t.inGang()){const e=t.getGangFaction();for(const t in r.Augmentations){const n=r.Augmentations[t];s(n)&&e.playerReputation>n.baseRepRequirement&&o.push(n)}return o}for(const e of t.factions){if("Bladeburners"===e)continue;if("Netburners"===e)continue;const t=i.Factions[e];if(null!=t)for(const e of t.augmentations){const n=r.Augmentations[e];s(n)&&t.playerReputation>n.baseRepRequirement&&o.push(n)}}return o}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.calculateServerGrowth=void 0;const r=n(11),a=n(25);t.calculateServerGrowth=function(e,t,n){const i=Math.max(Math.floor(t),0);let o=1+(r.CONSTANTS.ServerBaseGrowthRate-1)/e.hackDifficulty;o>r.CONSTANTS.ServerMaxGrowthRate&&(o=r.CONSTANTS.ServerMaxGrowthRate);const s=i*(e.serverGrowth/100)*a.BitNodeMultipliers.ServerGrowthRate;return Math.pow(o,s*n.hacking_grow_mult)}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,"calculateRamUsage",function(){return calculateRamUsage});var acorn_walk__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(214),acorn__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(116),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(145),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__),_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(10),_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__);const specialReferenceIF="__SPECIAL_referenceIf",specialReferenceFOR="__SPECIAL_referenceFor",specialReferenceWHILE="__SPECIAL_referenceWhile",memCheckGlobalKey=".__GLOBAL__";async function parseOnlyRamCalculate(otherScripts,code,workerScript){try{let dependencyMap={};const completedParses=new Set,parseQueue=[];function parseCode(e,t){const n=parseOnlyCalculateDeps(e,t);completedParses.add(t);for(let e=0;e0;){const nextModule=parseQueue.shift();let code;if(nextModule.startsWith("https://")||nextModule.startsWith("http://"))try{const module=await eval("import(nextModule)");code="";for(const e in module)"function"==typeof module[e]&&(code+=module[e].toString()+";\n")}catch(e){return console.error(`Error dynamically importing module from ${nextModule} for RAM calculations: ${e}`),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.URLImportError}else{if(!Array.isArray(otherScripts))return console.warn("parseOnlyRamCalculate() not called with array of scripts"),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.ImportError;let e=null,t=nextModule.startsWith("./")?nextModule.slice(2):nextModule;for(const n of otherScripts)if(n.filename===t){e=n;break}if(null==e)return _RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.ImportError;code=e.code}parseCode(code,nextModule)}let ram=_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCostConstants.ScriptBaseRamCost;const unresolvedRefs=Object.keys(dependencyMap).filter(e=>e.startsWith(initialModule)),resolvedRefs=new Set;for(;unresolvedRefs.length>0;){const e=unresolvedRefs.shift();if("hacknet"!==e||resolvedRefs.has("hacknet")||(ram+=_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCostConstants.ScriptHacknetNodesRamCost),"document"!==e||resolvedRefs.has("document")||(ram+=_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCostConstants.ScriptDomRamCost),"window"!==e||resolvedRefs.has("window")||(ram+=_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCostConstants.ScriptDomRamCost),resolvedRefs.add(e),e.endsWith(".*")){const t=e.slice(0,e.length-2);for(let e of Object.keys(dependencyMap).filter(e=>e.startsWith(t)))for(let t of dependencyMap[e]||[])resolvedRefs.has(t)||unresolvedRefs.push(t)}else for(let t of dependencyMap[e]||[])resolvedRefs.has(t)||unresolvedRefs.push(t);try{function applyFuncRam(e){if("function"!=typeof e)return 0;try{let t;return"number"==typeof(t="AsyncFunction"===e.constructor.name?0:e.apply(null,[]))?t:0}catch(e){return console.error(`Error applying function: ${e}`),0}}if(workerScript.loadedFns[e])continue;let t;workerScript.loadedFns[e]=!0,t=e in workerScript.env.vars.bladeburner?workerScript.env.vars.bladeburner[e]:e in workerScript.env.vars.codingcontract?workerScript.env.vars.codingcontract[e]:e in workerScript.env.vars.gang?workerScript.env.vars.gang[e]:e in workerScript.env.vars.sleeve?workerScript.env.vars.sleeve[e]:workerScript.env.vars[e],ram+=applyFuncRam(t)}catch(e){continue}}return ram}catch(e){return _RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.SyntaxError}}function parseOnlyCalculateDeps(e,t){const n=Object(acorn__WEBPACK_IMPORTED_MODULE_1__.b)(e,{sourceType:"module",ecmaVersion:9}),r=t+memCheckGlobalKey,a={};a[r]=new Set;let i={};var o=[];function s(e,n){const r=a[e]||(a[e]=new Set);n in i&&r.add(i[n]),r.add(t+"."+n),r.add(n)}const l=Object.getOwnPropertyNames(Object.prototype);function c(){return{Identifier:(e,t)=>{l.includes(e.name)||s(t.key,e.name)},WhileStatement:(e,t,n)=>{s(t.key,specialReferenceWHILE),e.test&&n(e.test,t),e.body&&n(e.body,t)},DoWhileStatement:(e,t,n)=>{s(t.key,specialReferenceWHILE),e.test&&n(e.test,t),e.body&&n(e.body,t)},ForStatement:(e,t,n)=>{s(t.key,specialReferenceFOR),e.init&&n(e.init,t),e.test&&n(e.test,t),e.update&&n(e.update,t),e.body&&n(e.body,t)},IfStatement:(e,t,n)=>{s(t.key,specialReferenceIF),e.test&&n(e.test,t),e.consequent&&n(e.consequent,t),e.alternate&&n(e.alternate,t)},MemberExpression:(e,t,n)=>{e.object&&n(e.object,t),e.property&&n(e.property,t)}}}return acorn_walk__WEBPACK_IMPORTED_MODULE_0__.a(n,{key:r},Object.assign({ImportDeclaration:(e,t)=>{const n=e.source.value;o.push(n),a[t.key].add(n+memCheckGlobalKey);for(let r=0;r{const n=t+"."+e.id.name;acorn_walk__WEBPACK_IMPORTED_MODULE_0__.a(e,{key:n},c())}},c())),{dependencyMap:a,additionalModules:o}}async function calculateRamUsage(e,t){const n={loadedFns:{},env:{vars:_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCosts}};try{return await parseOnlyRamCalculate(t,e,n)}catch(e){return console.error("Failed to parse script for RAM calculations:"),console.error(e),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.SyntaxError}return _RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.SyntaxError}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.removeLoadingScreen=void 0;const r=n(198),a=n(44);t.removeLoadingScreen=function(){a.removeElementById("loader"),r.getElementById("entire-game-container").style.visibility="visible"}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ActiveScriptsRoot=void 0;const o=i(n(0)),s=n(859),l=n(858);t.ActiveScriptsRoot=class extends o.Component{constructor(e){super(e)}render(){return o.createElement(o.Fragment,null,o.createElement("p",null,"This page displays a list of all of your scripts that are currently running across every machine. It also provides information about each script's production. The scripts are categorized by the hostname of the servers on which they are running."),o.createElement(s.ScriptProduction,Object.assign({},this.props)),o.createElement(l.ServerAccordions,Object.assign({},this.props)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.clearResleevesPage=t.createResleevesPage=void 0;const o=n(861),s=n(15),l=n(3),c=n(31),u=n(16),m=n(12),p=n(67),h=n(5),d=n(79),_=n(180),g=n(60),y=n(111),f=i(n(0)),b=n(236),E={container:null,info:null,sortTag:null,sortSelector:null,resleeveList:null,resleeves:null};let v;function k(e){const t={container:null,statsPanel:null,stats:null,multipliersButton:null,augPanel:null,augSelector:null,augDescription:null,costPanel:null,costText:null,buyButton:null};if(!u.routing.isOn(u.Page.Resleeves))return t;t.container=h.createElement("div",{class:"resleeve-container",display:"block"}),t.statsPanel=h.createElement("div",{class:"resleeve-panel",width:"30%"}),t.stats=h.createElement("p",{class:"resleeve-stats-text",innerHTML:`Hacking: ${l.numeralWrapper.formatSkill(e.hacking_skill)} (${l.numeralWrapper.formatExp(e.hacking_exp)} exp)
`+`Strength: ${l.numeralWrapper.formatSkill(e.strength)} (${l.numeralWrapper.formatExp(e.strength_exp)} exp)
`+`Defense: ${l.numeralWrapper.formatSkill(e.defense)} (${l.numeralWrapper.formatExp(e.defense_exp)} exp)
`+`Dexterity: ${l.numeralWrapper.formatSkill(e.dexterity)} (${l.numeralWrapper.formatExp(e.dexterity_exp)} exp)
`+`Agility: ${l.numeralWrapper.formatSkill(e.agility)} (${l.numeralWrapper.formatExp(e.agility_exp)} exp)
`+`Charisma: ${l.numeralWrapper.formatSkill(e.charisma)} (${l.numeralWrapper.formatExp(e.charisma_exp)} exp)
`+`# Augmentations: ${e.augmentations.length}`}),t.multipliersButton=h.createElement("button",{class:"std-button",innerText:"Multipliers",clickListener:()=>{m.dialogBoxCreate(["

Total Multipliers:

",`Hacking Level multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_mult)}`,`Hacking Experience multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_exp_mult)}`,`Strength Level multiplier: ${l.numeralWrapper.formatPercentage(e.strength_mult)}`,`Strength Experience multiplier: ${l.numeralWrapper.formatPercentage(e.strength_exp_mult)}`,`Defense Level multiplier: ${l.numeralWrapper.formatPercentage(e.defense_mult)}`,`Defense Experience multiplier: ${l.numeralWrapper.formatPercentage(e.defense_exp_mult)}`,`Dexterity Level multiplier: ${l.numeralWrapper.formatPercentage(e.dexterity_mult)}`,`Dexterity Experience multiplier: ${l.numeralWrapper.formatPercentage(e.dexterity_exp_mult)}`,`Agility Level multiplier: ${l.numeralWrapper.formatPercentage(e.agility_mult)}`,`Agility Experience multiplier: ${l.numeralWrapper.formatPercentage(e.agility_exp_mult)}`,`Charisma Level multiplier: ${l.numeralWrapper.formatPercentage(e.charisma_mult)}`,`Charisma Experience multiplier: ${l.numeralWrapper.formatPercentage(e.charisma_exp_mult)}`,`Hacking Chance multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_chance_mult)}`,`Hacking Speed multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_speed_mult)}`,`Hacking Money multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_money_mult)}`,`Hacking Growth multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_grow_mult)}`,`Salary multiplier: ${l.numeralWrapper.formatPercentage(e.work_money_mult)}`,`Company Reputation Gain multiplier: ${l.numeralWrapper.formatPercentage(e.company_rep_mult)}`,`Faction Reputation Gain multiplier: ${l.numeralWrapper.formatPercentage(e.faction_rep_mult)}`,`Crime Money multiplier: ${l.numeralWrapper.formatPercentage(e.crime_money_mult)}`,`Crime Success multiplier: ${l.numeralWrapper.formatPercentage(e.crime_success_mult)}`,`Hacknet Income multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_money_mult)}`,`Hacknet Purchase Cost multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_purchase_cost_mult)}`,`Hacknet Level Upgrade Cost multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_level_cost_mult)}`,`Hacknet Ram Upgrade Cost multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_ram_cost_mult)}`,`Hacknet Core Upgrade Cost multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_core_cost_mult)}`,`Bladeburner Max Stamina multiplier: ${l.numeralWrapper.formatPercentage(e.bladeburner_max_stamina_mult)}`,`Bladeburner Stamina Gain multiplier: ${l.numeralWrapper.formatPercentage(e.bladeburner_stamina_gain_mult)}`,`Bladeburner Field Analysis multiplier: ${l.numeralWrapper.formatPercentage(e.bladeburner_analysis_mult)}`,`Bladeburner Success Chance multiplier: ${l.numeralWrapper.formatPercentage(e.bladeburner_success_chance_mult)}`].join("
"),!1)}}),t.statsPanel.appendChild(t.stats),t.statsPanel.appendChild(t.multipliersButton),t.augPanel=h.createElement("div",{class:"resleeve-panel",width:"50%"}),t.augSelector=h.createElement("select",{class:"resleeve-aug-selector dropdown"}),t.augDescription=h.createElement("p");for(let n=0;n{!function(e){if(null==e.augDescription)throw new Error("elems.augDescription is null in updateAugDescription()");const t=_.getSelectValue(e.augSelector),n=s.Augmentations[t];if(null==n)return void console.warn(`Could not find Augmentation with name ${t}`);let r=n.info;"string"!=typeof r&&(r=b.renderToStaticMarkup(r));e.augDescription.innerHTML=r}(t)}),t.augSelector.dispatchEvent(new Event("change")),t.augPanel.appendChild(t.augSelector),t.augPanel.appendChild(t.augDescription);const n=e.getCost();return t.costPanel=h.createElement("div",{class:"resleeve-panel",width:"20%"}),t.costText=h.createElement("p",{innerHTML:`It costs ${b.renderToStaticMarkup(c.Money(n))} `+"to purchase this Sleeve."}),t.buyButton=h.createElement("button",{class:"std-button",innerText:"Purchase",clickListener:()=>{if(null==v)throw new Error("playerRef is null in buyButton.click()");o.purchaseResleeve(e,v)?m.dialogBoxCreate(f.createElement(f.Fragment,null,"You re-sleeved for ",c.Money(n),"!"),!1):m.dialogBoxCreate("You cannot afford to re-sleeve into this body",!1)}}),t.costPanel.appendChild(t.costText),t.costPanel.appendChild(t.buyButton),t.container.appendChild(t.statsPanel),t.container.appendChild(t.augPanel),t.container.appendChild(t.costPanel),t}t.createResleevesPage=function(e){if(u.routing.isOn(u.Page.Resleeves))try{let t;v=e,E.container=h.createElement("div",{class:"generic-menupage-container",id:"resleeves-container",position:"fixed"}),E.info=h.createElement("p",{display:"block",innerHTML:"Re-sleeving is the process of digitizing and transferring your consciousness into a new human body, or 'sleeve'. Here at VitaLife, you can purchase new specially-engineered bodies for the re-sleeve process. Many of these bodies even come with genetic and cybernetic Augmentations!

Re-sleeving will change your experience for every stat. It will also REMOVE all of your currently-installed Augmentations, and replace them with the ones provided by the purchased sleeve. However, Augmentations that you have purchased but not installed will NOT be removed. If you have purchased an Augmentation and then re-sleeve into a body which already has that Augmentation, it will be removed (since you cannot have duplicate Augmentations).

NOTE: The stats and multipliers displayed on this page do NOT include your bonuses from Source-File.",width:"75%"}),0===e.resleeves.length&&(e.resleeves=o.generateResleeves()),E.sortTag=h.createElement("p",{display:"inline-block",innerText:"Sort By: "}),E.sortSelector=h.createElement("select",{class:"dropdown"}),function(e){e.Cost="Cost",e.Hacking="Hacking",e.Strength="Strength",e.Defense="Defense",e.Dexterity="Dexterity",e.Agility="Agility",e.Charisma="Charisma",e.AverageCombatStats="AverageCombat",e.AverageAllStats="AverageAllStats",e.TotalNumAugmentations="TotalNumAugmentations"}(t||(t={})),E.sortSelector.add(d.createOptionElement("Cost",t.Cost)),E.sortSelector.add(d.createOptionElement("Hacking Level",t.Hacking)),E.sortSelector.add(d.createOptionElement("Strength Level",t.Strength)),E.sortSelector.add(d.createOptionElement("Defense Level",t.Defense)),E.sortSelector.add(d.createOptionElement("Dexterity Level",t.Dexterity)),E.sortSelector.add(d.createOptionElement("Agility Level",t.Agility)),E.sortSelector.add(d.createOptionElement("Charisma Level",t.Charisma)),E.sortSelector.add(d.createOptionElement("Average Combat Stats",t.AverageCombatStats)),E.sortSelector.add(d.createOptionElement("Average Stats",t.AverageAllStats)),E.sortSelector.add(d.createOptionElement("Number of Augmentations",t.TotalNumAugmentations)),E.resleeveList=h.createElement("ul"),E.sortSelector.onchange=(()=>{function n(...e){let t=0;for(let n=0;ne.hacking_skill-t.hacking_skill);break;case t.Strength:e.resleeves.sort((e,t)=>e.strength-t.strength);break;case t.Defense:e.resleeves.sort((e,t)=>e.defense-t.defense);break;case t.Dexterity:e.resleeves.sort((e,t)=>e.dexterity-t.dexterity);break;case t.Agility:e.resleeves.sort((e,t)=>e.agility-t.agility);break;case t.Charisma:e.resleeves.sort((e,t)=>e.charisma-t.charisma);break;case t.AverageCombatStats:e.resleeves.sort((e,t)=>n(e.strength,e.defense,e.dexterity,e.agility)-n(t.strength,t.defense,t.dexterity,t.agility));break;case t.AverageAllStats:e.resleeves.sort((e,t)=>n(e.hacking_skill,e.strength,e.defense,e.dexterity,e.agility,e.charisma)-n(t.hacking_skill,t.strength,t.defense,t.dexterity,t.agility,t.charisma));break;case t.TotalNumAugmentations:e.resleeves.sort((e,t)=>e.augmentations.length-t.augmentations.length);break;case t.Cost:default:e.resleeves.sort((e,t)=>e.getCost()-t.getCost())}if(null==E.resleeveList)throw new Error("UIElems.resleeveList is null in sortSelector.click()");if(null==E.resleeves)throw new Error("UIElems.resleeves is null in sortSelector.click()");for(const t of e.resleeves){const e=k(t);if(null==e.container)throw new Error("resleeveUi.container is null in sortSelector.click()");E.resleeveList.appendChild(e.container),E.resleeves.push(e)}}),E.sortSelector.dispatchEvent(new Event("change")),E.container.appendChild(E.info),E.container.appendChild(h.createElement("br")),E.container.appendChild(E.sortTag),E.container.appendChild(E.sortSelector),E.container.appendChild(E.resleeveList);const n=document.getElementById("entire-game-container");if(null==n)throw new Error("Could not find entire-game-container in createResleevesPage()");n.appendChild(E.container)}catch(e){p.exceptionAlert(e)}},t.clearResleevesPage=function(){E.container instanceof HTMLElement&&y.removeElement(E.container);for(const e in E)E[e]=null;v=null}},,,,,function(e,t,n){"use strict";n.d(t,"b",function(){return s}),n.d(t,"a",function(){return l});n(4),n(104),n(182),n(35),n(42),n(19),n(1),n(444),n(27),n(29),n(97),n(56),n(98),n(199),n(17),n(127),n(12),n(5);var r=n(44),a=(n(31),n(0)),i=n.n(a);n(26);i.a.Component;const o="dev-menu-container";function s(){throw new Error("Cannot create Dev Menu because you are not in a dev build")}function l(){Object(r.removeElementById)(o)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ConsoleHelpText=void 0,t.ConsoleHelpText={helpList:["Use 'help [command]' to get more information about a particular Bladeburner console command.",""," automate [var] [val] [hi/low] Configure simple automation for Bladeburner tasks"," clear/cls Clear the console"," help [cmd] Display this help text, or help text for a specific command"," log [en/dis] [type] Enable or disable logging for events and actions"," skill [action] [name] Level or display info about your Bladeburner skills"," start [type] [name] Start a Bladeburner action/task"," stop Stops your current Bladeburner action/task"],automate:["automate [var] [val] [hi/low]","","A simple way to automate your Bladeburner actions. This console command can be used to automatically start an action when your stamina rises above a certain threshold, and automatically switch to another action when your stamina drops below another threshold."," automate status - Check the current status of your automation and get a brief description of what it'll do"," automate en - Enable the automation feature"," automate dis - Disable the automation feature","","There are four properties that must be set for this automation to work properly. Here is how to set them:",""," automate stamina 100 high"," automate contract Tracking high"," automate stamina 50 low"," automate general 'Field Analysis' low","","Using the four console commands above will set the automation to perform Tracking contracts if your stamina is 100 or higher, and then switch to Field Analysis if your stamina drops below 50. Note that when setting the action, the name of the action is CASE-SENSITIVE. It must exactly match whatever the name is in the UI."],clear:["clear","","Clears the console"],cls:["cls","","Clears the console"],help:["help [command]","","Running 'help' with no arguments displays the general help text, which lists all console commands and a brief description of what they do. A command can be specified to get more specific help text about that particular command. For example:",""," help automate","","will display specific information about using the automate console command"],log:["log [en/dis] [type]","","Enable or disable logging. By default, the results of completing actions such as contracts/operations are logged in the console. There are also random events that are logged in the console as well. The five categories of things that get logged are:","","[general, contracts, ops, blackops, events]","","The logging for these categories can be enabled or disabled like so:",""," log dis contracts - Disables logging that occurs when contracts are completed"," log en contracts - Enables logging that occurs when contracts are completed"," log dis events - Disables logging for Bladeburner random events","","Logging can be universally enabled/disabled using the 'all' keyword:",""," log dis all"," log en all"],skill:["skill [action] [name]","","Level or display information about your skills.","","To display information about all of your skills and your multipliers, use:",""," skill list","","To display information about a specific skill, specify the name of the skill afterwards. Note that the name of the skill is case-sensitive. Enter it exactly as seen in the UI. If the name of the skill has whitespace, enclose the name of the skill in double quotation marks:",""," skill list Reaper
skill list 'Digital Observer'","","This console command can also be used to level up skills:",""," skill level [skill name]"],start:["start [type] [name]","","Start an action. An action is specified by its type and its name. The name is case-sensitive. It must appear exactly as it does in the UI. If the name of the action has whitespace, enclose it in double quotation marks. Valid action types include:","","[general, contract, op, blackop]","","Examples:",""," start contract Tracking"," start op 'Undercover Operation'"],stop:["stop","","Stop your current action and go idle."]}},,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.executeDarkwebTerminalCommand=t.checkIfConnectedToDarkweb=void 0;const o=i(n(0)),s=n(296),l=n(1),c=n(47),u=n(8),m=n(31),p=n(679);t.checkIfConnectedToDarkweb=function(){if(c.SpecialServerIps.hasOwnProperty("Darkweb Server")){const e=c.SpecialServerIps.getIp("Darkweb Server");if(!p.isValidIPAddress(e))return;e==l.Player.getCurrentServer().ip&&u.post("You are now connected to the dark web. From the dark web you can purchase illegal items. Use the 'buy -l' command to display a list of all the items you can buy. Use 'buy [item-name] to purchase an item.")}},t.executeDarkwebTerminalCommand=function(e){if(0!=e.length)switch(e[0]){case"buy":{if(2!=e.length)return u.post("Incorrect number of arguments. Usage: "),u.post("buy -l"),void u.post("buy [item name]");const t=e[1];"-l"==t?function(){for(const e in s.DarkWebItems){const t=s.DarkWebItems[e];u.postElement(o.createElement(o.Fragment,null,t.program," - ",m.Money(t.price)," - ",t.description))}}():function(e){e=e.toLowerCase();let t=null;for(const n in s.DarkWebItems){const r=s.DarkWebItems[n];r.program.toLowerCase()==e&&(t=r)}null!==t?l.Player.hasProgram(t.program)?u.post("You already have the "+t.program+" program"):l.Player.money.lt(t.price)?u.post("Not enough money to purchase "+t.program):(l.Player.loseMoney(t.price),l.Player.getHomeComputer().programs.push(t.program),u.post("You have purchased the "+t.program+" program. The new program can be found on your home computer.")):u.post("Unrecognized item: "+e)}(t);break}default:u.post("Command not found")}}},,function(e,t,n){"use strict";n.d(t,"b",function(){return s}),n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(27),o=n(90);const s={All:0,Foreign:1,Owned:2,Purchased:3};class l extends a.a.Component{isValidServer(e){const t=this.props.serverType;switch(t){case s.All:return!0;case s.Foreign:return"home"!==e.hostname&&!e.purchasedByPlayer;case s.Owned:return e.purchasedByPlayer||e instanceof o.HacknetServer||"home"===e.hostname;case s.Purchased:return e.purchasedByPlayer||e instanceof o.HacknetServer;default:return console.warn(`Invalid ServerType specified for ServerDropdown component: ${t}`),!1}}renderOption(e){return a.a.createElement("option",{key:e.hostname,value:e.hostname},e.hostname)}render(){const e=[];for(const t in i.AllServers){const n=i.AllServers[t];this.isValidServer(n)&&e.push(this.renderOption(n))}return a.a.createElement("select",{className:"dropdown",onChange:this.props.onChange,style:this.props.style},e)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.HacknetNode=void 0;const r=n(11),a=n(162),i=n(37),o=n(12),s=n(24);class l{constructor(e="",t=1){this.cores=1,this.level=1,this.moneyGainRatePerSecond=0,this.onlineTimeSeconds=0,this.ram=1,this.totalMoneyGenerated=0,this.name=e,this.updateMoneyGainRate(t)}calculateCoreUpgradeCost(e=1,t){return a.calculateCoreUpgradeCost(this.cores,e,t)}calculateLevelUpgradeCost(e=1,t){return a.calculateLevelUpgradeCost(this.level,e,t)}calculateRamUpgradeCost(e=1,t){return a.calculateRamUpgradeCost(this.ram,e,t)}process(e=1){const t=e*r.CONSTANTS.MilliPerCycle/1e3;let n=this.moneyGainRatePerSecond*t;return isNaN(n)&&(console.error(`Hacknet Node ${this.name} calculated earnings of NaN`),n=0),this.totalMoneyGenerated+=n,this.onlineTimeSeconds+=t,n}upgradeCore(e=1,t){this.cores=Math.min(i.HacknetNodeConstants.MaxCores,Math.round(this.cores+e)),this.updateMoneyGainRate(t)}upgradeLevel(e=1,t){this.level=Math.min(i.HacknetNodeConstants.MaxLevel,Math.round(this.level+e)),this.updateMoneyGainRate(t)}upgradeRam(e=1,t){for(let t=0;t=t.AllCorporationStates.length)&&(this.state=0),++this.state,this.state>=t.AllCorporationStates.length&&(this.state=0)}toJSON(){return r.Generic_toJSON("CorporationState",this)}static fromJSON(e){return r.Generic_fromJSON(a,e.data)}}t.CorporationState=a,r.Reviver.constructors.CorporationState=a},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.Card=t.Suit=void 0,function(e){e.Clubs="clubs",e.Diamonds="diamonds",e.Hearts="hearts",e.Spades="spades"}(r=t.Suit||(t.Suit={}));t.Card=class{constructor(e,t){if(this.value=e,this.suit=t,e<1||e>13)throw new Error(`Card instantiated with improper value: ${e}`)}formatValue(){switch(this.value){case 1:return"A";case 11:return"J";case 12:return"Q";case 13:return"K";default:return`${this.value}`}}isRedSuit(){return this.suit===r.Hearts||this.suit===r.Diamonds}getStringRepresentation(){return`${this.formatValue()} of ${this.suit}`}}},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BlinkingCursor=void 0;const a=r(n(0));t.BlinkingCursor=function(){return a.default.createElement("span",{style:{fontSize:"1em"},className:"blinking-cursor"},"|")}},,,,,,,,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AugmentationAccordion=void 0;const o=i(n(0)),s=n(232),l=n(4);t.AugmentationAccordion=function(e){let t=e.aug.name;return null!=e.level&&e.aug.name===l.AugmentationNames.NeuroFluxGovernor&&(t+=` - Level ${e.level}`),"string"==typeof e.aug.info?o.createElement(s.Accordion,{headerContent:o.createElement(o.Fragment,null,t),panelContent:o.createElement("p",{dangerouslySetInnerHTML:{__html:e.aug.info}})}):o.createElement(s.Accordion,{headerContent:o.createElement(o.Fragment,null,t),panelContent:o.createElement("p",null,e.aug.info)})}},,,,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StdButtonPurchased=void 0;const o=i(n(0));t.StdButtonPurchased=class extends o.Component{constructor(e){super(e),this.hasTooltip=this.hasTooltip.bind(this),this.tooltip=this.tooltip.bind(this)}hasTooltip(){return null!=this.props.tooltip&&""!==this.props.tooltip}tooltip(){return this.props.tooltip?this.props.tooltip:""}render(){let e="std-button-bought";this.hasTooltip()&&(e+=" tooltip");let t={__html:""};return this.hasTooltip()&&(t={__html:this.tooltip()}),o.createElement("button",{className:e,onClick:this.props.onClick,style:this.props.style},this.props.text,this.hasTooltip()&&o.createElement("span",{className:"tooltiptext",dangerouslySetInnerHTML:t}))}}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isValidIPAddress=void 0,t.isValidIPAddress=function(e){const t="(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",n=`^${t}.${t}.${t}.${t}$`;return new RegExp(n).test(e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Crime=void 0;const r=n(11);t.Crime=class{constructor(e="",t="",n=0,r=0,a=0,i=0,o={}){this.difficulty=0,this.karma=0,this.kills=0,this.money=0,this.name="",this.time=0,this.type="",this.hacking_success_weight=0,this.strength_success_weight=0,this.defense_success_weight=0,this.dexterity_success_weight=0,this.agility_success_weight=0,this.charisma_success_weight=0,this.hacking_exp=0,this.strength_exp=0,this.defense_exp=0,this.dexterity_exp=0,this.agility_exp=0,this.charisma_exp=0,this.intelligence_exp=0,this.name=e,this.type=t,this.time=n,this.money=r,this.difficulty=a,this.karma=i,this.hacking_success_weight=o.hacking_success_weight?o.hacking_success_weight:0,this.strength_success_weight=o.strength_success_weight?o.strength_success_weight:0,this.defense_success_weight=o.defense_success_weight?o.defense_success_weight:0,this.dexterity_success_weight=o.dexterity_success_weight?o.dexterity_success_weight:0,this.agility_success_weight=o.agility_success_weight?o.agility_success_weight:0,this.charisma_success_weight=o.charisma_success_weight?o.charisma_success_weight:0,this.hacking_exp=o.hacking_exp?o.hacking_exp:0,this.strength_exp=o.strength_exp?o.strength_exp:0,this.defense_exp=o.defense_exp?o.defense_exp:0,this.dexterity_exp=o.dexterity_exp?o.dexterity_exp:0,this.agility_exp=o.agility_exp?o.agility_exp:0,this.charisma_exp=o.charisma_exp?o.charisma_exp:0,this.intelligence_exp=o.intelligence_exp?o.intelligence_exp:0,this.kills=o.kills?o.kills:0}commit(e,t=1,n=null){return t<=0&&(t=1),e.startCrime(this.type,this.hacking_exp/t,this.strength_exp/t,this.defense_exp/t,this.dexterity_exp/t,this.agility_exp/t,this.charisma_exp/t,this.money/t,this.time,n),this.time}successRate(e){let t=this.hacking_success_weight*e.hacking_skill+this.strength_success_weight*e.strength+this.defense_success_weight*e.defense+this.dexterity_success_weight*e.dexterity+this.agility_success_weight*e.agility+this.charisma_success_weight*e.charisma+r.CONSTANTS.IntelligenceCrimeWeight*e.intelligence;return t/=r.CONSTANTS.MaxSkillLevel,t/=this.difficulty,t*=e.crime_success_mult,t*=e.getIntelligenceBonus(1),Math.min(t,1)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Person=t.createTaskTracker=void 0;const r=n(25),a=n(39),i=n(11),o=n(136),s=n(413);t.createTaskTracker=function(){return{hack:0,str:0,def:0,dex:0,agi:0,cha:0,money:0}};t.Person=class{constructor(){this.hacking_skill=1,this.strength=1,this.defense=1,this.dexterity=1,this.agility=1,this.charisma=1,this.intelligence=1,this.hp=10,this.max_hp=10,this.hacking_exp=0,this.strength_exp=0,this.defense_exp=0,this.dexterity_exp=0,this.agility_exp=0,this.charisma_exp=0,this.intelligence_exp=0,this.hacking_mult=1,this.strength_mult=1,this.defense_mult=1,this.dexterity_mult=1,this.agility_mult=1,this.charisma_mult=1,this.hacking_exp_mult=1,this.strength_exp_mult=1,this.defense_exp_mult=1,this.dexterity_exp_mult=1,this.agility_exp_mult=1,this.charisma_exp_mult=1,this.hacking_chance_mult=1,this.hacking_speed_mult=1,this.hacking_money_mult=1,this.hacking_grow_mult=1,this.company_rep_mult=1,this.faction_rep_mult=1,this.crime_money_mult=1,this.crime_success_mult=1,this.work_money_mult=1,this.hacknet_node_money_mult=1,this.hacknet_node_purchase_cost_mult=1,this.hacknet_node_ram_cost_mult=1,this.hacknet_node_core_cost_mult=1,this.hacknet_node_level_cost_mult=1,this.bladeburner_max_stamina_mult=1,this.bladeburner_stamina_gain_mult=1,this.bladeburner_analysis_mult=1,this.bladeburner_success_chance_mult=1,this.augmentations=[],this.queuedAugmentations=[],this.city=a.CityName.Sector12}applyAugmentation(e){for(const t in e.mults)null==this[t]?console.warn(`Augmentation has unrecognized multiplier property: ${t}`):this[t]*=e.mults[t]}calculateStat(e,t=1){return o.calculateSkill(e,t)}getFactionFieldWorkRepGain(){return.9*(this.hacking_skill/i.CONSTANTS.MaxSkillLevel+this.strength/i.CONSTANTS.MaxSkillLevel+this.defense/i.CONSTANTS.MaxSkillLevel+this.dexterity/i.CONSTANTS.MaxSkillLevel+this.agility/i.CONSTANTS.MaxSkillLevel+this.charisma/i.CONSTANTS.MaxSkillLevel)/5.5*this.faction_rep_mult}getFactionHackingWorkRepGain(){return this.hacking_skill/i.CONSTANTS.MaxSkillLevel*this.faction_rep_mult}getFactionSecurityWorkRepGain(){return.9*(this.hacking_skill/i.CONSTANTS.MaxSkillLevel+this.strength/i.CONSTANTS.MaxSkillLevel+this.defense/i.CONSTANTS.MaxSkillLevel+this.dexterity/i.CONSTANTS.MaxSkillLevel+this.agility/i.CONSTANTS.MaxSkillLevel)/4.5*this.faction_rep_mult}resetMultipliers(){this.hacking_mult=1,this.strength_mult=1,this.defense_mult=1,this.dexterity_mult=1,this.agility_mult=1,this.charisma_mult=1,this.hacking_exp_mult=1,this.strength_exp_mult=1,this.defense_exp_mult=1,this.dexterity_exp_mult=1,this.agility_exp_mult=1,this.charisma_exp_mult=1,this.company_rep_mult=1,this.faction_rep_mult=1,this.crime_money_mult=1,this.crime_success_mult=1,this.work_money_mult=1}updateStatLevels(){this.hacking_skill=Math.max(1,Math.floor(this.calculateStat(this.hacking_exp,this.hacking_mult*r.BitNodeMultipliers.HackingLevelMultiplier))),this.strength=Math.max(1,Math.floor(this.calculateStat(this.strength_exp,this.strength_mult*r.BitNodeMultipliers.StrengthLevelMultiplier))),this.defense=Math.max(1,Math.floor(this.calculateStat(this.defense_exp,this.defense_mult*r.BitNodeMultipliers.DefenseLevelMultiplier))),this.dexterity=Math.max(1,Math.floor(this.calculateStat(this.dexterity_exp,this.dexterity_mult*r.BitNodeMultipliers.DexterityLevelMultiplier))),this.agility=Math.max(1,Math.floor(this.calculateStat(this.agility_exp,this.agility_mult*r.BitNodeMultipliers.AgilityLevelMultiplier))),this.charisma=Math.max(1,Math.floor(this.calculateStat(this.charisma_exp,this.charisma_mult*r.BitNodeMultipliers.CharismaLevelMultiplier)));const e=this.hp/this.max_hp;this.max_hp=Math.floor(10+this.defense/10),this.hp=Math.round(this.max_hp*e)}getIntelligenceBonus(e){return s.calculateIntelligenceBonus(this.intelligence,e)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createSleevePurchasesFromCovenantPopup=t.PopupId=t.BaseCostPerSleeve=t.MaxSleevesFromCovenant=void 0;const r=n(1186),a=n(416);t.MaxSleevesFromCovenant=5,t.BaseCostPerSleeve=1e13,t.PopupId="covenant-sleeve-purchases-popup",t.createSleevePurchasesFromCovenantPopup=function(e){const n=a.removePopup.bind(null,t.PopupId);a.createPopup(t.PopupId,r.CovenantPurchasesRoot,{p:e,closeFn:n})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Favor=void 0;const o=i(n(0)),s=n(3);t.Favor=function(e){return o.createElement("span",{className:"light-yellow samefont"},"number"==typeof e?s.numeralWrapper.formatFavor(e):e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FactionInfos=t.FactionInfo=void 0;class r{constructor(e,t,n,r,a,i){this.infoText=e,this.enemies=t,this.offerHackingMission=n,this.offerHackingWork=r,this.offerFieldWork=a,this.offerSecurityWork=i,this.augmentationPriceMult=1,this.augmentationRepRequirementMult=1}offersWork(){return this.offerFieldWork||this.offerHackingMission||this.offerHackingWork||this.offerSecurityWork}}t.FactionInfo=r,t.FactionInfos={Illuminati:new r("Humanity never changes. No matter how civilized society becomes, it will eventually fall back into chaos. And from this chaos, we are the invisible hand that guides them to order. ",[],!0,!0,!0,!1),Daedalus:new r("Yesterday we obeyed kings and bent our necks to emperors. Today we kneel only to truth.",[],!0,!0,!0,!1),"The Covenant":new r("Surrender yourself. Give up your empty individuality to become part of something great, something eternal. Become a slave. Submit your mind, body, and soul. Only then can you set yourself free.

Only then can you discover immortality.",[],!0,!0,!0,!1),ECorp:new r("ECorp's mission is simple: to connect the world of today with the technology of tomorrow. With our wide range of Internet-related software and commercial hardware, ECorp makes the world's information universally accessible.",[],!0,!0,!0,!0),MegaCorp:new r("MegaCorp does what no other dares to do. We imagine. We create. We invent. We create what others have never even dreamed of. Our work fills the world's needs for food, water, power, and transporation on an unprecendented scale, in ways that no other company can.

In our labs and factories and on the ground with customers, MegaCorp is ushering in a new era for the world.",[],!0,!0,!0,!0),"Bachman & Associates":new r("Where Law and Business meet - thats where we are.

Legal Insight - Business Instinct - Innovative Experience.",[],!0,!0,!0,!0),"Blade Industries":new r("Augmentation is Salvation.",[],!0,!0,!0,!0),NWO:new r("Humans don't truly desire freedom. They want to be observed, understood, and judged. They want to be given purpose and direction in life. That is why they created God. And that is why they created civilization - not because of willingness, but because of a need to be incorporated into higher orders of structure and meaning.",[],!0,!0,!0,!0),"Clarke Incorporated":new r("The Power of the Genome - Unlocked.",[],!0,!0,!0,!0),"OmniTek Incorporated":new r("Simply put, our mission is to design and build robots that make a difference.",[],!0,!0,!0,!0),"Four Sigma":new r("The scientific method is the best way to approach investing. Big strategies backed up with big data. Driven by deep learning and innovative ideas. And improved by iteration. That's Four Sigma.",[],!0,!0,!0,!0),"KuaiGong International":new r("Dream big. Work hard. Make history.",[],!0,!0,!0,!0),"Fulcrum Secret Technologies":new r("The human organism has an innate desire to worship. That is why they created gods. If there were no gods, it would be necessary to create them. And now we can.",[],!0,!0,!1,!0),BitRunners:new r("Our entire lives are controlled by bits. All of our actions, our thoughts, our personal information. It's all transformed into bits, stored in bits, communicated through bits. It’s impossible for any person to move, to live, to operate at any level without the use of bits. And when a person moves, lives, and operates, they leave behind their bits, mere traces of seemingly meaningless fragments of information. But these bits can be reconstructed. Transformed. Used.

Those who run the bits, run the world.",[],!0,!0,!1,!1),"The Black Hand":new r("The world, so afraid of strong government, now has no government. Only power - Digital power. Financial power. Technological power. And those at the top rule with an invisible hand. They built a society where the rich get richer, and everyone else suffers.

So much pain. So many lives. Their darkness must end.",[],!0,!0,!0,!1),NiteSec:new r(" __..__
_.nITESECNIt.
.-'NITESECNITESEc.
.' NITESECNITESECn
/ NITESECNITESEC;
: :NITESECNITESEC;
; $ NITESECNITESECN
: _, ,N'ITESECNITESEC
: .+^^`, : `NITESECNIT
) /), `-,-=,NITESECNI
/ ^ ,-;|NITESECN;
/ _.' '-';NITESECN
( , ,-''`^NITE'
)` :`. .'
)-- ; `- /
' _.-' :
( _.-' .
------.
.
_.nIt
_.nITESECNi
nITESECNIT^'
NITE^' ___
/ .gP''''Tp.
: d' . `b
; d' o `b ;
/ d; `b|
/, $; @ `:
/' $$ ;
.' $$b o |
.' d$$$; :
/ .d$$$$; , ;
d .dNITESEC $ |
:bp.__.gNITESEC$$ :$ ;
NITESECNITESECNIT $$b :
",[],!0,!0,!1,!1),Aevum:new r("The Silicon City.",["Chongqing","New Tokyo","Ishima","Volhaven"],!0,!0,!0,!0),Chongqing:new r("Serve the People.",["Sector-12","Aevum","Volhaven"],!0,!0,!0,!0),Ishima:new r("The East Asian Order of the Future.",["Sector-12","Aevum","Volhaven"],!0,!0,!0,!0),"New Tokyo":new r("Asia's World City.",["Sector-12","Aevum","Volhaven"],!0,!0,!0,!0),"Sector-12":new r("The City of the Future.",["Chongqing","New Tokyo","Ishima","Volhaven"],!0,!0,!0,!0),Volhaven:new r("Benefit, Honor, and Glory.",["Chongqing","Sector-12","New Tokyo","Aevum","Ishima"],!0,!0,!0,!0),"Speakers for the Dead":new r("It is better to reign in Hell than to serve in Heaven.",[],!0,!0,!0,!0),"The Dark Army":new r("The World doesn't care about right or wrong. It only cares about power.",[],!0,!0,!0,!1),"The Syndicate":new r("Honor holds you back.",[],!0,!0,!0,!0),Silhouette:new r("Corporations have filled the void of power left behind by the collapse of Western government. The issue is they've become so big that you don't know who they're working for. And if you're employed at one of these corporations, you don't even know who you're working for.

That's terror. Terror, fear, and corruption. All born into the system, all propagated by the system.",[],!0,!0,!0,!1),Tetrads:new r("Following the mandate of Heaven and carrying out the way.",[],!1,!1,!0,!0),"Slum Snakes":new r("Slum Snakes rule!",[],!1,!1,!0,!0),Netburners:new r("~~//*>H4CK||3T 8URN3R5**>?>\\~~",[],!0,!0,!1,!1),"Tian Di Hui":new r("Obey Heaven and work righteously.",[],!0,!0,!1,!0),CyberSec:new r("The Internet is the first thing that was built that we don't fully understand, the largest experiment in anarchy that we have ever had. And as the world becomes increasingly dominated by it, society approaches the brink of total chaos. We serve only to protect society, to protect humanity, to protect the world from imminent collapse.",[],!0,!0,!1,!1),Bladeburners:new r("It's too bad they won't live. But then again, who does?

Note that for this faction, reputation can only be gained through Bladeburner actions. Completing Bladeburner contracts/operations will increase your reputation.",[],!1,!1,!1,!1)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BaseServer=void 0;const r=n(104),a=n(211),i=n(103),o=n(155),s=n(76),l=n(406),c=n(204);t.BaseServer=class{constructor(e={hostname:"",ip:l.createRandomIp()}){this.contracts=[],this.cpuCores=1,this.ftpPortOpen=!1,this.hasAdminRights=!1,this.hostname="",this.httpPortOpen=!1,this.ip="",this.isConnectedTo=!1,this.maxRam=0,this.messages=[],this.organizationName="",this.programs=[],this.ramUsed=0,this.runningScripts=[],this.scripts=[],this.serversOnNetwork=[],this.smtpPortOpen=!1,this.sqlPortOpen=!1,this.sshPortOpen=!1,this.textFiles=[],this.ip=e.ip?e.ip:l.createRandomIp(),this.hostname=e.hostname,this.organizationName=null!=e.organizationName?e.organizationName:"",this.isConnectedTo=null!=e.isConnectedTo&&e.isConnectedTo,this.hasAdminRights=null!=e.adminRights&&e.adminRights}addContract(e){this.contracts.push(e)}getContract(e){for(const t of this.contracts)if(t.fn===e)return t;return null}getRunningScript(e,t){for(const n of this.runningScripts)if(n.filename===e&&c.compareArrays(n.args,t))return n;return null}getScript(e){for(let t=0;tt.fn!==e.fn):this.contracts=this.contracts.filter(t=>t.fn!==e)}removeFile(e){if(e.endsWith(".exe")||null!=e.match(/^.+\.exe-\d+(?:\.\d*)?%-INC$/)){for(let t=0;t0?"list-item":"none",this.classList.toggle("opened");const c=[t,n,o,s,l],u=[r.MainMenuLinks.Stats,r.MainMenuLinks.Factions,r.MainMenuLinks.Augmentations,r.MainMenuLinks.HacknetNodes,r.MainMenuLinks.Sleeves];t.style.maxHeight?a(!1,c,u):a(!0,c,u)},t.MainMenuHeaders.World.onclick=function(){const t=i("city-tab"),n=i("travel-tab"),o=i("job-tab"),s=i("stock-market-tab"),l=i("bladeburner-tab"),c=i("corporation-tab"),u=i("gang-tab");o.style.display=""!==e.companyName?"list-item":"none",s.style.display=e.hasWseAccount?"list-item":"none",l.style.display=e.inBladeburner()?"list-item":"none",c.style.display=e.hasCorporation()?"list-item":"none",u.style.display=e.inGang()?"list-item":"none",this.classList.toggle("opened");const m=[t,n,o,s,l,c,u],p=[r.MainMenuLinks.City,r.MainMenuLinks.Travel,r.MainMenuLinks.Job,r.MainMenuLinks.StockMarket,r.MainMenuLinks.Bladeburner,r.MainMenuLinks.Corporation,r.MainMenuLinks.Gang];t.style.maxHeight?a(!1,m,p):a(!0,m,p)},t.MainMenuHeaders.Help.onclick=function(){const e=i("milestones-tab"),t=i("tutorial-tab"),o=i("options-tab");this.classList.toggle("opened");const s=[e,t,o],l=[r.MainMenuLinks.Milestones,r.MainMenuLinks.Tutorial,r.MainMenuLinks.Options];n&&(s.push(i("dev-tab")),l.push(i("dev-menu-link"))),t.style.maxHeight?a(!1,s,l):a(!0,s,l)},!0}catch(e){return console.error(`Failed to initialize Main Menu Headers: ${e}`),!1}}},function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r=n(17),a=n(18),i=n(3);function o(){function e(e){0===a.Settings.AutosaveInterval?e.innerHTML="disabled":e.innerHTML=`every ${a.Settings.AutosaveInterval}s`}const t=document.getElementById("settingsNSExecTimeRangeValLabel"),n=document.getElementById("settingsNSLogRangeValLabel"),o=document.getElementById("settingsNSPortRangeValLabel"),s=document.getElementById("settingsSuppressMessages"),l=document.getElementById("settingsSuppressFactionInvites"),c=document.getElementById("settingsSuppressTravelConfirmation"),u=document.getElementById("settingsSuppressBuyAugmentationConfirmation"),m=document.getElementById("settingsSuppressHospitalizationPopup"),p=document.getElementById("settingsSuppressBladeburnerPopup"),h=document.getElementById("settingsAutosaveIntervalValLabel"),d=document.getElementById("settingsDisableHotkeys"),_=document.getElementById("settingsDisableASCIIArt"),g=document.getElementById("settingsDisableTextEffects"),y=document.getElementById("settingsLocale");t.innerHTML=a.Settings.CodeInstructionRunTime+"ms",n.innerHTML=a.Settings.MaxLogCapacity,o.innerHTML=a.Settings.MaxPortCapacity,s.checked=a.Settings.SuppressMessages,l.checked=a.Settings.SuppressFactionInvites,c.checked=a.Settings.SuppressTravelConfirmation,u.checked=a.Settings.SuppressBuyAugmentationConfirmation,m.checked=a.Settings.SuppressHospitalizationPopup,p.checked=a.Settings.SuppressBladeburnerPopup,e(h),d.checked=a.Settings.DisableHotkeys,_.checked=a.Settings.CityListView,g.checked=a.Settings.DisableTextEffects,y.value=a.Settings.Locale,i.numeralWrapper.updateLocale(a.Settings.Locale);const f=document.getElementById("settingsNSExecTimeRangeVal"),b=document.getElementById("settingsNSLogRangeVal"),E=document.getElementById("settingsNSPortRangeVal"),v=document.getElementById("settingsAutosaveIntervalVal");f.value=a.Settings.CodeInstructionRunTime,b.value=a.Settings.MaxLogCapacity,E.value=a.Settings.MaxPortCapacity,v.value=a.Settings.AutosaveInterval,f.oninput=function(){t.innerHTML=this.value+"ms",a.Settings.CodeInstructionRunTime=this.value},b.oninput=function(){n.innerHTML=this.value,a.Settings.MaxLogCapacity=this.value},E.oninput=function(){o.innerHTML=this.value,a.Settings.MaxPortCapacity=this.value},v.oninput=function(){a.Settings.AutosaveInterval=Number(this.value),e(h),0===Number(this.value)?r.Engine.Counters.autoSaveCounter=1/0:r.Engine.Counters.autoSaveCounter=5*Number(this.value)},s.onclick=function(){a.Settings.SuppressMessages=this.checked},l.onclick=function(){a.Settings.SuppressFactionInvites=this.checked},c.onclick=function(){a.Settings.SuppressTravelConfirmation=this.checked},u.onclick=function(){a.Settings.SuppressBuyAugmentationConfirmation=this.checked},m.onclick=function(){a.Settings.SuppressHospitalizationPopup=this.checked},p.onclick=function(){a.Settings.SuppressBladeburnerPopup=this.checked},d.onclick=function(){a.Settings.DisableHotkeys=this.checked},_.onclick=function(){a.Settings.DisableASCIIArt=this.checked},g.onclick=function(){a.Settings.DisableTextEffects=this.checked},y.onchange=function(){if(!i.numeralWrapper.updateLocale(y.value)){console.warn(`Invalid locale for numeral: ${y.value}`);let e="en";return a.Settings.Locale=e,void(y.value=e)}a.Settings.Locale=y.value}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CharacterInfo=void 0;const o=i(n(0)),s=n(3),l=n(141),c=n(12),u=n(13),m=n(25),p=n(48),h=n(152),d=n(37),_=n(200),g=n(31);t.CharacterInfo=function(e){function t(e){const t=[["Total:",g.Money(e.total)]];return e.bladeburner&&t.push(["Bladeburner:",g.Money(e.bladeburner)]),e.codingcontract&&t.push(["Coding Contracts:",g.Money(e.codingcontract)]),e.work&&t.push(["Company Work:",g.Money(e.work)]),e.class&&t.push(["Class:",g.Money(e.class)]),e.corporation&&t.push(["Corporation:",g.Money(e.corporation)]),e.crime&&t.push(["Crimes:",g.Money(e.crime)]),e.gang&&t.push(["Gang:",g.Money(e.gang)]),e.hacking&&t.push(["Hacking:",g.Money(e.hacking)]),e.hacknetnode&&t.push(["Hacknet Nodes:",g.Money(e.hacknetnode)]),e.hospitalization&&t.push(["Hospitalization:",g.Money(e.hospitalization)]),e.infiltration&&t.push(["Infiltration:",g.Money(e.infiltration)]),e.stock&&t.push(["Stock Market:",g.Money(e.stock)]),e.casino&&t.push(["Casino:",g.Money(e.casino)]),e.sleeves&&t.push(["Sleeves:",g.Money(e.sleeves)]),_.StatsTable(t,"")}function n(e){return o.createElement(o.Fragment,null,o.createElement("table",null,o.createElement("tbody",null,e.rows.map(e=>o.createElement("tr",{key:e[0]},o.createElement("td",{key:"0"},`${e[0]} multiplier:`),o.createElement("td",{key:"1",style:{textAlign:"right",paddingLeft:"5px"}},s.numeralWrapper.formatPercentage(e[1])),function(e){return p.SourceFileFlags[5]>0&&e.length>2&&e[1]!=e[2]?o.createElement("td",{key:"2",style:{textAlign:"right"}}," (",s.numeralWrapper.formatPercentage(e[2]),")"):o.createElement(o.Fragment,null)}(e))))))}const r=[["Time played since last Augmentation:",u.convertTimeMsToTimeElapsedString(e.playtimeSinceLastAug)]];return e.sourceFiles.length>0&&r.push(["Time played since last Bitnode destroyed:",u.convertTimeMsToTimeElapsedString(e.playtimeSinceLastBitnode)]),r.push(["Total Time played:",u.convertTimeMsToTimeElapsedString(e.totalPlaytime)]),o.createElement("pre",null,o.createElement("b",null,"General"),o.createElement("br",null),o.createElement("br",null),o.createElement("span",null,"Current City: ",e.city),o.createElement("br",null),o.createElement(function(){return e.companyName?o.createElement(o.Fragment,null,o.createElement("span",null,"Employer at which you last worked: ",e.companyName),o.createElement("br",null)):o.createElement(o.Fragment,null)},null),o.createElement(function(){return""!==e.companyName?o.createElement(o.Fragment,null,o.createElement("span",null,"Job you last worked: ",e.jobs[e.companyName]),o.createElement("br",null)):o.createElement(o.Fragment,null)},null),o.createElement(function(){return e.jobs&&0!==Object.keys(e.jobs).length?o.createElement(o.Fragment,null,o.createElement("span",null,"All Employers:"),o.createElement("br",null),o.createElement("ul",null,Object.keys(e.jobs).map(e=>o.createElement("li",{key:e}," * ",e))),o.createElement("br",null),o.createElement("br",null)):o.createElement(o.Fragment,null)},null),o.createElement("span",null,"Money: ",g.Money(e.money.toNumber())),o.createElement("button",{className:"popup-box-button",style:{display:"inline-block",float:"none"},onClick:function(){let n=o.createElement(o.Fragment,null,o.createElement("u",null,"Money earned since you last installed Augmentations:"),o.createElement("br",null),t(e.moneySourceA));0!==e.sourceFiles.length&&(n=o.createElement(o.Fragment,null,n,o.createElement("br",null),o.createElement("br",null),o.createElement("u",null,"Money earned in this BitNode:"),o.createElement("br",null),t(e.moneySourceB))),c.dialogBoxCreate(n,!1)}},"Money Statistics & Breakdown"),o.createElement("br",null),o.createElement("br",null),o.createElement("b",null,"Stats"),o.createElement("table",null,o.createElement("tbody",null,o.createElement("tr",{key:"0"},o.createElement("td",{key:"0"},"Hacking:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.hacking_skill)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.hacking_exp)," exp)")),o.createElement("tr",{key:"1"},o.createElement("td",{key:"0"},"Strength:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.strength)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.strength_exp)," exp)")),o.createElement("tr",{key:"2"},o.createElement("td",{key:"0"},"Defense:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.defense)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.defense_exp)," exp)")),o.createElement("tr",{key:"3"},o.createElement("td",{key:"0"},"Dexterity:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.dexterity)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.dexterity_exp)," exp)")),o.createElement("tr",{key:"4"},o.createElement("td",{key:"0"},"Agility:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.agility)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.agility_exp)," exp)")),o.createElement("tr",{key:"5"},o.createElement("td",{key:"0"},"Charisma:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.charisma)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.charisma_exp)," exp)")),o.createElement(function(){return e.intelligence>0&&(5===e.bitNodeN||p.SourceFileFlags[5]>0)?o.createElement("tr",{key:"5"},o.createElement("td",null,"Intelligence:"),o.createElement("td",{style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.intelligence))):o.createElement(o.Fragment,null)},null))),o.createElement("br",null),o.createElement(n,{rows:[["Hacking Chance",e.hacking_chance_mult],["Hacking Speed",e.hacking_speed_mult],["Hacking Money",e.hacking_money_mult,e.hacking_money_mult*m.BitNodeMultipliers.ScriptHackMoney],["Hacking Growth",e.hacking_grow_mult,e.hacking_grow_mult*m.BitNodeMultipliers.ServerGrowthRate]]}),o.createElement("br",null),o.createElement(n,{rows:[["Hacking Level",e.hacking_mult,e.hacking_mult*m.BitNodeMultipliers.HackingLevelMultiplier],["Hacking Experience",e.hacking_exp_mult,e.hacking_exp_mult*m.BitNodeMultipliers.HackExpGain]]}),o.createElement("br",null),o.createElement(n,{rows:[["Strength Level",e.strength_mult,e.strength_mult*m.BitNodeMultipliers.StrengthLevelMultiplier],["Strength Experience",e.strength_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Defense Level",e.defense_mult,e.defense_mult*m.BitNodeMultipliers.DefenseLevelMultiplier],["Defense Experience",e.defense_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Dexterity Level",e.dexterity_mult,e.dexterity_mult*m.BitNodeMultipliers.DexterityLevelMultiplier],["Dexterity Experience",e.dexterity_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Agility Level",e.agility_mult,e.agility_mult*m.BitNodeMultipliers.AgilityLevelMultiplier],["Agility Experience",e.agility_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Charisma Level",e.charisma_mult,e.charisma_mult*m.BitNodeMultipliers.CharismaLevelMultiplier],["Charisma Experience",e.charisma_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Hacknet Node production",e.hacknet_node_money_mult,e.hacknet_node_money_mult*m.BitNodeMultipliers.HacknetNodeMoney],["Hacknet Node purchase cost",e.hacknet_node_purchase_cost_mult],["Hacknet Node RAM upgrade cost",e.hacknet_node_ram_cost_mult],["Hacknet Node Core purchase cost",e.hacknet_node_core_cost_mult],["Hacknet Node level upgrade cost",e.hacknet_node_level_cost_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Company reputation gain",e.company_rep_mult],["Faction reputation gain",e.faction_rep_mult,e.faction_rep_mult*m.BitNodeMultipliers.FactionWorkRepGain],["Salary",e.work_money_mult,e.work_money_mult*m.BitNodeMultipliers.CompanyWorkMoney]]}),o.createElement("br",null),o.createElement(n,{rows:[["Crime success",e.crime_success_mult],["Crime money",e.crime_money_mult,e.crime_money_mult*m.BitNodeMultipliers.CrimeMoney]]}),o.createElement("br",null),o.createElement(function(){return e.canAccessBladeburner()?o.createElement(o.Fragment,null,o.createElement(n,{rows:[["Bladeburner Success Chance",e.bladeburner_max_stamina_mult],["Bladeburner Max Stamina",e.bladeburner_stamina_gain_mult],["Bladeburner Stamina Gain",e.bladeburner_analysis_mult],["Bladeburner Field Analysis",e.bladeburner_success_chance_mult]]}),o.createElement("br",null)):o.createElement(o.Fragment,null)},null),o.createElement("br",null),o.createElement("b",null,"Misc."),o.createElement("br",null),o.createElement("br",null),o.createElement("span",null,`Servers owned: ${e.purchasedServers.length} / ${h.getPurchaseServerLimit()}`),o.createElement("br",null),o.createElement(function(){return 9===e.bitNodeN||p.SourceFileFlags[9]>0?o.createElement(o.Fragment,null,o.createElement("span",null,`Hacknet Servers owned: ${e.hacknetNodes.length} / ${d.HacknetServerConstants.MaxServers}`),o.createElement("br",null)):o.createElement(o.Fragment,null,o.createElement("span",null,`Hacknet Nodes owned: ${e.hacknetNodes.length}`),o.createElement("br",null))},null),o.createElement("span",null,`Augmentations installed: ${e.augmentations.length}`),o.createElement("br",null),o.createElement("br",null),_.StatsTable(r,null),o.createElement("br",null),o.createElement(function(){if(e.sourceFiles.length>0){const t="BitNode"+e.bitNodeN;return o.createElement(o.Fragment,null,o.createElement("span",null,"Current BitNode: ",e.bitNodeN," (",l.BitNodes[t].name,")"),o.createElement("br",null),o.createElement("br",null),o.createElement("div",{style:{width:"60%",fontSize:"13px",marginLeft:"4%"}},l.BitNodes[t].info.split("
").map((e,t)=>o.createElement("div",{key:t},o.createElement("span",{style:{whiteSpace:"pre-wrap",overflowWrap:"break-word"}},e),o.createElement("br",null)))))}return o.createElement(o.Fragment,null)},null))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.displayMilestonesContent=void 0;const o=n(16),s=n(869),l=n(1),c=i(n(0)),u=i(n(26));let m=null;!function(){document.addEventListener("DOMContentLoaded",function e(){m=document.getElementById("milestones-container"),document.removeEventListener("DOMContentLoaded",e)})}(),t.displayMilestonesContent=function(){o.routing.isOn(o.Page.Milestones)&&m instanceof HTMLElement&&u.render(c.createElement(s.Root,{player:l.Player}),m)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.displayInfiltrationContent=void 0;const o=n(16),s=n(911),l=i(n(0)),c=i(n(26));let u=document.createElement("div");!function(){document.addEventListener("DOMContentLoaded",function e(){const t=document.getElementById("infiltration-container");if(null===t)throw new Error("huh?");u=t,document.removeEventListener("DOMContentLoaded",e)})}(),t.displayInfiltrationContent=function(e,t,n,r,a){if(!o.routing.isOn(o.Page.Infiltration))return;const i=function(e,t){const n=e.strength+e.defense+e.dexterity+e.agility+e.charisma,r=t-Math.pow(n,.9)/250-e.intelligence/1600;return r<0?0:r>3?3:r}(t,r);c.render(l.createElement(s.Root,{Engine:e,Player:t,Location:n,StartingDifficulty:r,Difficulty:i,MaxLevel:a}),u)}},function(e,t,n){"use strict";n.d(t,"a",function(){return c});var r=n(0),a=n.n(r),i=n(1),o=n(3),s=n(68);const l=a.a.Component;class c extends l{render(){const e=a.a.createElement("tr",{id:"character-int-wrapper"},a.a.createElement("td",{className:"character-int-cell"},"Int: "),a.a.createElement("td",{id:"character-int-text",className:"character-int-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.intelligence))),t=a.a.createElement(a.a.Fragment,null,a.a.createElement("tr",{className:"character-divider"},a.a.createElement("td",{colSpan:"2"},"Work progress:")),a.a.createElement("tr",null,a.a.createElement("td",{colSpan:"2"},"+",Object(s.Reputation)(i.Player.workRepGained)," rep")),a.a.createElement("tr",null,a.a.createElement("td",{colSpan:"2"},a.a.createElement("button",{onClick:()=>i.Player.startFocusing(),id:"character-overview-options-button",className:"character-overview-btn"},"Focus"))));return a.a.createElement(a.a.Fragment,null,a.a.createElement("table",null,a.a.createElement("tbody",null,a.a.createElement("tr",{id:"character-hp-wrapper"},a.a.createElement("td",{className:"character-hp-cell"},"HP:"),a.a.createElement("td",{id:"character-hp-text",className:"character-hp-cell character-stat-cell"},o.numeralWrapper.formatHp(i.Player.hp)+" / "+o.numeralWrapper.formatHp(i.Player.max_hp))),a.a.createElement("tr",{id:"character-money-wrapper"},a.a.createElement("td",{className:"character-money-cell"},"Money: "),a.a.createElement("td",{id:"character-money-text",className:"character-money-cell character-stat-cell"},o.numeralWrapper.formatMoney(i.Player.money.toNumber()))),a.a.createElement("tr",{id:"character-hack-wrapper"},a.a.createElement("td",{className:"character-hack-cell"},"Hack: "),a.a.createElement("td",{id:"character-hack-text",className:"character-hack-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.hacking_skill))),a.a.createElement("tr",{id:"character-str-wrapper",className:"character-divider"},a.a.createElement("td",{className:"character-combat-cell"},"Str: "),a.a.createElement("td",{id:"character-str-text",className:"character-combat-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.strength))),a.a.createElement("tr",{id:"character-def-wrapper"},a.a.createElement("td",{className:"character-combat-cell"},"Def: "),a.a.createElement("td",{id:"character-def-text",className:"character-combat-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.defense))),a.a.createElement("tr",{id:"character-dex-wrapper"},a.a.createElement("td",{className:"character-combat-cell"},"Dex: "),a.a.createElement("td",{id:"character-dex-text",className:"character-combat-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.dexterity))),a.a.createElement("tr",{id:"character-agi-wrapper"},a.a.createElement("td",{className:"character-combat-cell"},"Agi: "),a.a.createElement("td",{id:"character-agi-text",className:"character-combat-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.agility))),a.a.createElement("tr",{id:"character-cha-wrapper",className:"character-divider"},a.a.createElement("td",{className:"character-cha-cell"},"Cha: "),a.a.createElement("td",{id:"character-cha-text",className:"character-cha-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.charisma))),i.Player.intelligence>=1&&e,i.Player.isWorking&&!i.Player.focus&&t)))}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createHacknetServer=t.getUpgradeHomeRamCost=t.getHomeComputer=t.getCurrentServer=t.hasTorRouter=void 0;const r=n(11),a=n(25),i=n(90),o=n(27),s=n(47);t.hasTorRouter=function(){return s.SpecialServerIps.hasOwnProperty("Darkweb Server")},t.getCurrentServer=function(){return o.AllServers[this.currentServer]},t.getHomeComputer=function(){return o.AllServers[this.homeComputer]},t.getUpgradeHomeRamCost=function(){const e=this.getHomeComputer().maxRam,t=Math.log2(e),n=Math.pow(1.58,t);return e*r.CONSTANTS.BaseCostFor1GBOfRamHome*n*a.BitNodeMultipliers.HomeComputerRamCost},t.createHacknetServer=function(){const e=`hacknet-node-${this.hacknetNodes.length}`,t=new i.HacknetServer({adminRights:!0,hostname:e,ip:o.createUniqueRandomIp()});this.hacknetNodes.push(t.ip),o.AddToAllServers(t);const n=this.getHomeComputer();return n.serversOnNetwork.push(t.ip),t.serversOnNetwork.push(n.ip),t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.applyExploit=void 0;const r=n(1);t.applyExploit=function(){if(r.Player.exploits&&0===r.Player.exploits.length)return;const e=Math.pow(1.001,r.Player.exploits.length),t=Math.pow(.999,r.Player.exploits.length);r.Player.hacking_chance_mult*=e,r.Player.hacking_speed_mult*=e,r.Player.hacking_money_mult*=e,r.Player.hacking_grow_mult*=e,r.Player.hacking_mult*=e,r.Player.strength_mult*=e,r.Player.defense_mult*=e,r.Player.dexterity_mult*=e,r.Player.agility_mult*=e,r.Player.charisma_mult*=e,r.Player.hacking_exp_mult*=e,r.Player.strength_exp_mult*=e,r.Player.defense_exp_mult*=e,r.Player.dexterity_exp_mult*=e,r.Player.agility_exp_mult*=e,r.Player.charisma_exp_mult*=e,r.Player.company_rep_mult*=e,r.Player.faction_rep_mult*=e,r.Player.crime_money_mult*=e,r.Player.crime_success_mult*=e,r.Player.hacknet_node_money_mult*=e,r.Player.hacknet_node_purchase_cost_mult*=t,r.Player.hacknet_node_ram_cost_mult*=t,r.Player.hacknet_node_core_cost_mult*=t,r.Player.hacknet_node_level_cost_mult*=t,r.Player.work_money_mult*=e}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.applySourceFile=void 0;const r=n(239),a=n(1);t.applySourceFile=function(e){const t="SourceFile"+e.n,n=r.SourceFiles[t];if(null!=n){switch(e.n){case 1:{let t=0;for(let n=0;n=100?this.sleeves[e].synchronize(this):this.sleeves[e].shockRecovery(this));this.isWorking=!1,this.currentWorkFactionName="",this.currentWorkFactionDescription="",this.createProgramName="",this.className="",this.crimeType="",this.workHackExpGainRate=0,this.workStrExpGainRate=0,this.workDefExpGainRate=0,this.workDexExpGainRate=0,this.workAgiExpGainRate=0,this.workChaExpGainRate=0,this.workRepGainRate=0,this.workMoneyGainRate=0,this.workHackExpGained=0,this.workStrExpGained=0,this.workDefExpGained=0,this.workDexExpGained=0,this.workAgiExpGained=0,this.workChaExpGained=0,this.workRepGained=0,this.workMoneyGained=0,this.timeWorked=0,this.lastUpdate=(new Date).getTime(),this.playtimeSinceLastAug=0,this.scriptProdSinceLastAug=0,this.moneySourceA.reset(),this.hacknetNodes.length=0,this.hashManager.prestige(),this.updateSkillLevels(),this.hp=this.max_hp}function oe(){var e=this.getHomeComputer();this.currentServer=e.ip,this.homeComputer=e.ip,this.numPeopleKilled=0,this.karma=0,this.hacking_skill=1,this.strength=1,this.defense=1,this.dexterity=1,this.agility=1,this.charisma=1,this.hacking_exp=0,this.strength_exp=0,this.defense_exp=0,this.dexterity_exp=0,this.agility_exp=0,this.charisma_exp=0,this.money=new G.a(1e3),this.city=T.CityName.Sector12,this.location="",this.companyName="",this.jobs={},this.purchasedServers=[],this.factions=[],this.factionInvitations=[],this.queuedAugmentations=[],this.augmentations=[],this.resleeves=[],this.sleeves.length=F.SourceFileFlags[10]+this.sleevesFromCovenant;for(let e=0;e0?this.intelligence=Math.floor(this.calculateSkill(this.intelligence_exp)):this.intelligence=0;var e=this.hp/this.max_hp;this.max_hp=Math.floor(10+this.defense/10),this.hp=Math.round(this.max_hp*e)}function ue(){this.hacking_chance_mult=1,this.hacking_speed_mult=1,this.hacking_money_mult=1,this.hacking_grow_mult=1,this.hacking_mult=1,this.strength_mult=1,this.defense_mult=1,this.dexterity_mult=1,this.agility_mult=1,this.charisma_mult=1,this.hacking_exp_mult=1,this.strength_exp_mult=1,this.defense_exp_mult=1,this.dexterity_exp_mult=1,this.agility_exp_mult=1,this.charisma_exp_mult=1,this.company_rep_mult=1,this.faction_rep_mult=1,this.crime_money_mult=1,this.crime_success_mult=1,this.hacknet_node_money_mult=1,this.hacknet_node_purchase_cost_mult=1,this.hacknet_node_ram_cost_mult=1,this.hacknet_node_core_cost_mult=1,this.hacknet_node_level_cost_mult=1,this.work_money_mult=1,this.bladeburner_max_stamina_mult=1,this.bladeburner_stamina_gain_mult=1,this.bladeburner_analysis_mult=1,this.bladeburner_success_chance_mult=1}function me(e){const t=this.getHomeComputer();if(null==t)return!1;for(var n=0;n0||this.intelligence>0)&&(this.intelligence_exp+=e)}function Pe(e){const t=e.toLowerCase();return t.includes("hack")?this.hacking_skill:t.includes("str")?this.strength:t.includes("def")?this.defense:t.includes("dex")?this.dexterity:t.includes("agi")?this.agility:t.includes("cha")?this.charisma:t.includes("int")?this.intelligence:void 0}function Oe(e,t,n){e===this.workType&&t===this.companyName||e===this.workType&&t===this.currentWorkFactionName&&n===this.factionWorkType||(this.isWorking&&this.singularityStopWork(),this.workHackExpGainRate=0,this.workStrExpGainRate=0,this.workDefExpGainRate=0,this.workDexExpGainRate=0,this.workAgiExpGainRate=0,this.workChaExpGainRate=0,this.workRepGainRate=0,this.workMoneyGainRate=0,this.workMoneyLossRate=0,this.workHackExpGained=0,this.workStrExpGained=0,this.workDefExpGained=0,this.workDexExpGained=0,this.workAgiExpGained=0,this.workChaExpGained=0,this.workRepGained=0,this.workMoneyGained=0,this.timeWorked=0,this.timeWorkedCreateProgram=0,this.currentWorkFactionName="",this.currentWorkFactionDescription="",this.createProgramName="",this.className="",ne.a.unmountComponentAtNode(document.getElementById("work-in-progress-text")))}function Se(e=1){const t=this.focus?1:.8,n=t*this.workHackExpGainRate*e,r=t*this.workStrExpGainRate*e,a=t*this.workDefExpGainRate*e,i=t*this.workDexExpGainRate*e,o=t*this.workAgiExpGainRate*e,s=t*this.workChaExpGainRate*e,l=(this.workMoneyGainRate-this.workMoneyLossRate)*e;this.gainHackingExp(n),this.gainStrengthExp(r),this.gainDefenseExp(a),this.gainDexterityExp(i),this.gainAgilityExp(o),this.gainCharismaExp(s),this.gainMoney(l),this.className?this.recordMoneySource(l,"class"):this.recordMoneySource(l,"work"),this.workHackExpGained+=n,this.workStrExpGained+=r,this.workDefExpGained+=a,this.workDexExpGained+=i,this.workAgiExpGained+=o,this.workChaExpGained+=s,this.workRepGained+=t*this.workRepGainRate*e,this.workMoneyGained+=t*this.workMoneyGainRate*e,this.workMoneyGained-=t*this.workMoneyLossRate*e}function Te(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeCompany,e),this.isWorking=!0,this.focus=!0,this.companyName=e,this.workType=_.CONSTANTS.WorkTypeCompany,this.workHackExpGainRate=this.getWorkHackExpGain(),this.workStrExpGainRate=this.getWorkStrExpGain(),this.workDefExpGainRate=this.getWorkDefExpGain(),this.workDexExpGainRate=this.getWorkDexExpGain(),this.workAgiExpGainRate=this.getWorkAgiExpGain(),this.workChaExpGainRate=this.getWorkChaExpGain(),this.workRepGainRate=this.getWorkRepGain(),this.workMoneyGainRate=this.getWorkMoneyGain(),this.timeNeededToCompleteWork=_.CONSTANTS.MillisecondsPer8Hours;var t=Object(z.clearEventListeners)("work-in-progress-cancel-button");t.innerHTML="Cancel Work",t.addEventListener("click",()=>(this.finishWork(!0),!1));const n=Object(z.clearEventListeners)("work-in-progress-something-else-button");n.style.visibility="visible",n.innerHTML="Do something else simultaneously",n.addEventListener("click",()=>(this.stopFocusing(),!1)),b.Engine.loadWorkInProgressContent()}function Me(){const e=B.SpecialServerIps[this.companyName];if(e){const t=N.AllServers[e];if(t&&t.backdoorInstalled)return.75}return.5}function xe(e){var t=!1;if(this.timeWorked+b.Engine._idleSpeed*e>=_.CONSTANTS.MillisecondsPer8Hours&&(t=!0,e=Math.round((_.CONSTANTS.MillisecondsPer8Hours-this.timeWorked)/b.Engine._idleSpeed)),this.timeWorked+=b.Engine._idleSpeed*e,this.workRepGainRate=this.getWorkRepGain(),this.processWorkEarnings(e),t||this.timeWorked>=_.CONSTANTS.MillisecondsPer8Hours)return this.finishWork(!1);const n=u.Companies[this.companyName];let r="0";null!=n&&n instanceof c.Company?r=n.playerReputation:console.error(`Could not find Company: ${this.companyName}`),Object(U.influenceStockThroughCompanyWork)(n,this.workRepGainRate,e);const a=this.jobs[this.companyName],i=.5===this.cancelationPenalty()?"half":"three-quarters";var o=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You are currently working as a ",a," at ",this.companyName," (Current Company Reputation: ",Object(V.Reputation)(r),")",ee.a.createElement("br",null),ee.a.createElement("br",null),"You have been working for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"You have earned: ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained)," (",Object(X.MoneyRate)(this.workMoneyGainRate*re),") ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," (",Object(Q.ReputationRate)(this.workRepGainRate*re),") reputation for this company ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," (",`${K.numeralWrapper.formatExp(this.workHackExpGainRate*re)} / sec`,") hacking exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," (",`${K.numeralWrapper.formatExp(this.workStrExpGainRate*re)} / sec`,") strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," (",`${K.numeralWrapper.formatExp(this.workDefExpGainRate*re)} / sec`,") defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," (",`${K.numeralWrapper.formatExp(this.workDexExpGainRate*re)} / sec`,") dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," (",`${K.numeralWrapper.formatExp(this.workAgiExpGainRate*re)} / sec`,") agility exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," (",`${K.numeralWrapper.formatExp(this.workChaExpGainRate*re)} / sec`,") charisma exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You will automatically finish after working for 8 hours. You can cancel earlier if you wish, but you will only gain ",i," of the reputation you've earned so far."),o)}function we(e,t=!1){e&&(this.workRepGained*=this.cancelationPenalty()),u.Companies[this.companyName].playerReputation+=this.workRepGained,this.updateSkillLevels();let n=ee.a.createElement(ee.a.Fragment,null,"You earned a total of: ",ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," reputation for the company ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma exp",ee.a.createElement("br",null));if(n=e?ee.a.createElement(ee.a.Fragment,null,"You worked a short shift of ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)," ",ee.a.createElement("br",null),ee.a.createElement("br",null),"Since you cancelled your work early, you only gained half of the reputation you earned. ",ee.a.createElement("br",null),ee.a.createElement("br",null),n):ee.a.createElement(ee.a.Fragment,null,"You worked a full shift of 8 hours! ",ee.a.createElement("br",null),ee.a.createElement("br",null),n),t||Object($.dialogBoxCreate)(n),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadLocationContent(!1),t){var r="You worked a short shift of "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)+" and earned $"+K.numeralWrapper.formatMoney(this.workMoneyGained)+", "+K.numeralWrapper.formatReputation(this.workRepGained)+" reputation, "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hacking exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" strength exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" defense exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dexterity exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agility exp, and "+K.numeralWrapper.formatExp(this.workChaExpGained)+" charisma exp.";return this.resetWorkStatus(),r}this.resetWorkStatus()}function Ae(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeCompanyPartTime,e),this.isWorking=!0,this.focus=!0,this.companyName=e,this.workType=_.CONSTANTS.WorkTypeCompanyPartTime,this.workHackExpGainRate=this.getWorkHackExpGain(),this.workStrExpGainRate=this.getWorkStrExpGain(),this.workDefExpGainRate=this.getWorkDefExpGain(),this.workDexExpGainRate=this.getWorkDexExpGain(),this.workAgiExpGainRate=this.getWorkAgiExpGain(),this.workChaExpGainRate=this.getWorkChaExpGain(),this.workRepGainRate=this.getWorkRepGain(),this.workMoneyGainRate=this.getWorkMoneyGain(),this.timeNeededToCompleteWork=_.CONSTANTS.MillisecondsPer8Hours;var t=Object(z.clearEventListeners)("work-in-progress-cancel-button");t.innerHTML="Stop Working",t.addEventListener("click",()=>(this.finishWorkPartTime(),!1)),b.Engine.loadWorkInProgressContent()}function Re(e){var t=!1;if(this.timeWorked+b.Engine._idleSpeed*e>=_.CONSTANTS.MillisecondsPer8Hours&&(t=!0,e=Math.round((_.CONSTANTS.MillisecondsPer8Hours-this.timeWorked)/b.Engine._idleSpeed)),this.timeWorked+=b.Engine._idleSpeed*e,this.workRepGainRate=this.getWorkRepGain(),this.processWorkEarnings(e),t||this.timeWorked>=_.CONSTANTS.MillisecondsPer8Hours)return this.finishWorkPartTime();var n=u.Companies[this.companyName],r="0";null!=n&&n instanceof c.Company?r=n.playerReputation:console.error(`Could not find Company: ${this.companyName}`);const a=this.jobs[this.companyName],i=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You are currently working as a ",a," at ",this.companyName," (Current Company Reputation: ",Object(V.Reputation)(r),")",ee.a.createElement("br",null),ee.a.createElement("br",null),"You have been working for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"You have earned: ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained)," (",Object(X.MoneyRate)(this.workMoneyGainRate*re),") ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," (",Object(V.Reputation)(`${K.numeralWrapper.formatExp(this.workRepGainRate*re)} / sec`),") reputation for this company ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," (",`${K.numeralWrapper.formatExp(this.workHackExpGainRate*re)} / sec`,") hacking exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," (",`${K.numeralWrapper.formatExp(this.workStrExpGainRate*re)} / sec`,") strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," (",`${K.numeralWrapper.formatExp(this.workDefExpGainRate*re)} / sec`,") defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," (",`${K.numeralWrapper.formatExp(this.workDexExpGainRate*re)} / sec`,") dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," (",`${K.numeralWrapper.formatExp(this.workAgiExpGainRate*re)} / sec`,") agility exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," (",`${K.numeralWrapper.formatExp(this.workChaExpGainRate*re)} / sec`,") charisma exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You will automatically finish after working for 8 hours. You can cancel earlier if you wish, and there will be no penalty because this is a part-time job."),i)}function Ne(e=!1){u.Companies[this.companyName].playerReputation+=this.workRepGained,this.updateSkillLevels();const t=ee.a.createElement(ee.a.Fragment,null,"You worked for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"You earned a total of: ",ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," reputation for the company ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma exp",ee.a.createElement("br",null));if(e||Object($.dialogBoxCreate)(t),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadLocationContent(!1),e){var n="You worked for "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)+" and earned a total of $"+K.numeralWrapper.formatMoney(this.workMoneyGained)+", "+K.numeralWrapper.formatReputation(this.workRepGained)+" reputation, "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hacking exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" strength exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" defense exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dexterity exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agility exp, and "+K.numeralWrapper.formatExp(this.workChaExpGained)+" charisma exp";return this.resetWorkStatus(),n}this.resetWorkStatus()}function De(){document.getElementById("mainmenu-container").style.visibility="hidden",this.focus=!0,b.Engine.loadWorkInProgressContent()}function Ie(){document.getElementById("mainmenu-container").style.visibility="visible",this.focus=!1,b.Engine.loadTerminalContent()}function Be(e){var t=1+e.favor/100;isNaN(t)&&(t=1),this.workRepGainRate*=t,this.workRepGainRate*=s.BitNodeMultipliers.FactionWorkRepGain,this.isWorking=!0,this.focus=!0,this.workType=_.CONSTANTS.WorkTypeFaction,this.currentWorkFactionName=e.name,this.timeNeededToCompleteWork=_.CONSTANTS.MillisecondsPer20Hours;const n=Object(z.clearEventListeners)("work-in-progress-cancel-button");n.innerHTML="Stop Faction Work",n.addEventListener("click",()=>(this.finishFactionWork(!0),!1));const r=Object(z.clearEventListeners)("work-in-progress-something-else-button");r.style.visibility="visible",r.innerHTML="Do something else simultaneously",r.addEventListener("click",()=>(this.stopFocusing(),!1)),b.Engine.loadWorkInProgressContent()}function Le(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeFaction,e.name,_.CONSTANTS.FactionWorkHacking),this.workHackExpGainRate=.15*this.hacking_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workRepGainRate=(this.hacking_skill+this.intelligence)/_.CONSTANTS.MaxSkillLevel*this.faction_rep_mult*this.getIntelligenceBonus(.5),this.factionWorkType=_.CONSTANTS.FactionWorkHacking,this.currentWorkFactionDescription="carrying out hacking contracts",this.startFactionWork(e)}function je(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeFaction,e.name,_.CONSTANTS.FactionWorkField),this.workHackExpGainRate=.1*this.hacking_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workStrExpGainRate=.1*this.strength_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workDefExpGainRate=.1*this.defense_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workDexExpGainRate=.1*this.dexterity_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workAgiExpGainRate=.1*this.agility_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workChaExpGainRate=.1*this.charisma_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workRepGainRate=Object(R.getFactionFieldWorkRepGain)(this,e),this.factionWorkType=_.CONSTANTS.FactionWorkField,this.currentWorkFactionDescription="carrying out field missions",this.startFactionWork(e)}function We(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeFaction,e.name,_.CONSTANTS.FactionWorkSecurity),this.workHackExpGainRate=.05*this.hacking_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workStrExpGainRate=.15*this.strength_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workDefExpGainRate=.15*this.defense_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workDexExpGainRate=.15*this.dexterity_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workAgiExpGainRate=.15*this.agility_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workChaExpGainRate=0*this.charisma_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workRepGainRate=Object(R.getFactionSecurityWorkRepGain)(this,e),this.factionWorkType=_.CONSTANTS.FactionWorkSecurity,this.currentWorkFactionDescription="performing security detail",this.startFactionWork(e)}function Fe(e){const t=v.Factions[this.currentWorkFactionName];switch(this.factionWorkType){case _.CONSTANTS.FactionWorkHacking:this.workRepGainRate=Object(R.getHackingWorkRepGain)(this,t);break;case _.CONSTANTS.FactionWorkField:this.workRepGainRate=Object(R.getFactionFieldWorkRepGain)(this,t);break;case _.CONSTANTS.FactionWorkSecurity:this.workRepGainRate=Object(R.getFactionSecurityWorkRepGain)(this,t)}var n=!1;if(this.timeWorked+b.Engine._idleSpeed*e>=_.CONSTANTS.MillisecondsPer20Hours&&(n=!0,e=Math.round((_.CONSTANTS.MillisecondsPer20Hours-this.timeWorked)/b.Engine._idleSpeed)),this.timeWorked+=b.Engine._idleSpeed*e,this.processWorkEarnings(e),n||this.timeWorked>=_.CONSTANTS.MillisecondsPer20Hours)return this.finishFactionWork(!1);const r=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You are currently ",this.currentWorkFactionDescription," for your faction ",t.name,ee.a.createElement("br",null),"(Current Faction Reputation: ",Object(V.Reputation)(t.playerReputation),"). ",ee.a.createElement("br",null),"You have been doing this for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"You have earned: ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained)," (",Object(X.MoneyRate)(this.workMoneyGainRate*re),") ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," (",Object(Q.ReputationRate)(this.workRepGainRate*re),") reputation for this faction ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," (",K.numeralWrapper.formatExp(this.workHackExpGainRate*re)," / sec) hacking exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," (",K.numeralWrapper.formatExp(this.workStrExpGainRate*re)," / sec) strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," (",K.numeralWrapper.formatExp(this.workDefExpGainRate*re)," / sec) defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," (",K.numeralWrapper.formatExp(this.workDexExpGainRate*re)," / sec) dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," (",K.numeralWrapper.formatExp(this.workAgiExpGainRate*re)," / sec) agility exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," (",K.numeralWrapper.formatExp(this.workChaExpGainRate*re)," / sec) charisma exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You will automatically finish after working for 20 hours. You can cancel earlier if you wish.",ee.a.createElement("br",null),"There is no penalty for cancelling earlier."),r)}function Ue(e,t=!1){var n=v.Factions[this.currentWorkFactionName];if(n.playerReputation+=this.workRepGained,this.updateSkillLevels(),t||Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"You worked for your faction ",n.name," for a total of ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)," ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You earned a total of: ",ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," reputation for the faction ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma exp",ee.a.createElement("br",null))),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadFactionContent(),Object(k.displayFactionContent)(n.name),t){var r="You worked for your faction "+n.name+" for a total of "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)+". You earned "+K.numeralWrapper.formatReputation(this.workRepGained)+" rep, "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hacking exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" str exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" def exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dex exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agi exp, and "+K.numeralWrapper.formatExp(this.workChaExpGained)+" cha exp.";return this.resetWorkStatus(),r}this.resetWorkStatus()}function He(){let e=1;const t=u.Companies[this.companyName];F.SourceFileFlags[11]>0&&(e=1+t.favor/100);const n=this.jobs[this.companyName],r=h.CompanyPositions[n];return null==r?(console.error(`Could not find CompanyPosition object for ${n}. Work salary will be 0`),0):r.baseSalary*t.salaryMultiplier*this.work_money_mult*s.BitNodeMultipliers.CompanyWorkMoney*e}function Ge(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work hack exp gain will be 0"].join(" ")),0):n.hackingExpGain*e.expMultiplier*this.hacking_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function Ke(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work str exp gain will be 0"].join(" ")),0):n.strengthExpGain*e.expMultiplier*this.strength_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function qe(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work def exp gain will be 0"].join(" ")),0):n.defenseExpGain*e.expMultiplier*this.defense_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function $e(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work dex exp gain will be 0"].join(" ")),0):n.dexterityExpGain*e.expMultiplier*this.dexterity_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function ze(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work agi exp gain will be 0"].join(" ")),0):n.agilityExpGain*e.expMultiplier*this.agility_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function Ye(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work cha exp gain will be 0"].join(" ")),0):n.charismaExpGain*e.expMultiplier*this.charisma_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function Ve(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];if(null==e||null==n)return console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work rep gain will be 0"].join(" ")),0;var r=n.calculateJobPerformance(this.hacking_skill,this.strength,this.defense,this.dexterity,this.agility,this.charisma);r+=this.intelligence/_.CONSTANTS.MaxSkillLevel;var a=1+e.favor/100;return isNaN(a)&&(a=1),r*this.company_rep_mult*a}function Je(e,t,n){this.resetWorkStatus(),this.isWorking=!0,this.focus=!0,this.workType=_.CONSTANTS.WorkTypeCreateProgram,this.createProgramReqLvl=n,this.timeNeededToCompleteWork=t;for(var r=0;r=100)break;this.timeWorkedCreateProgram=o/100*this.timeNeededToCompleteWork,this.getHomeComputer().programs.splice(r,1)}}this.createProgramName=e;var s=Object(z.clearEventListeners)("work-in-progress-cancel-button");s.innerHTML="Cancel work on creating program",s.addEventListener("click",()=>(this.finishCreateProgramWork(!0),!1)),Object(z.clearEventListeners)("work-in-progress-something-else-button").style.visibility="hidden",b.Engine.loadWorkInProgressContent()}function Xe(e){var t=this.createProgramReqLvl,n=this.hacking_skill/t*this.getIntelligenceBonus(3);n=1+(n-1)/5,this.timeWorked+=b.Engine._idleSpeed*e,this.timeWorkedCreateProgram+=b.Engine._idleSpeed*e*n;var r=this.createProgramName;this.timeWorkedCreateProgram>=this.timeNeededToCompleteWork&&this.finishCreateProgramWork(!1);const a=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You are currently working on coding ",r,".",ee.a.createElement("br",null),ee.a.createElement("br",null),"You have been working for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"The program is ",(this.timeWorkedCreateProgram/this.timeNeededToCompleteWork*100).toFixed(2),"% complete. ",ee.a.createElement("br",null),"If you cancel, your work will be saved and you can come back to complete the program later."),a)}function Qe(e){var t=this.createProgramName;if(!1===e)Object($.dialogBoxCreate)("You've finished creating "+t+"!
The new program can be found on your home computer."),this.getHomeComputer().programs.push(t);else{var n=t+"-"+(Math.floor(this.timeWorkedCreateProgram/this.timeNeededToCompleteWork*1e4)/100).toString()+"%-INC";this.getHomeComputer().programs.push(n)}e||this.gainIntelligenceExp(this.createProgramReqLvl/_.CONSTANTS.IntelligenceProgramBaseExpGain),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadTerminalContent(),this.resetWorkStatus()}function Ze(e,t,n){this.resetWorkStatus(),this.isWorking=!0,this.focus=!0,this.workType=_.CONSTANTS.WorkTypeStudyClass,this.className=n;const r=1e3/b.Engine._idleSpeed;var a=0,i=0,o=0,l=0,c=0,u=0,m=0;const p=this.hashManager;switch(n){case _.CONSTANTS.ClassStudyComputerScience:i=_.CONSTANTS.ClassStudyComputerScienceBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassDataStructures:a=_.CONSTANTS.ClassDataStructuresBaseCost*e/r,i=_.CONSTANTS.ClassDataStructuresBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassNetworks:a=_.CONSTANTS.ClassNetworksBaseCost*e/r,i=_.CONSTANTS.ClassNetworksBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassAlgorithms:a=_.CONSTANTS.ClassAlgorithmsBaseCost*e/r,i=_.CONSTANTS.ClassAlgorithmsBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassManagement:a=_.CONSTANTS.ClassManagementBaseCost*e/r,m=_.CONSTANTS.ClassManagementBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassLeadership:a=_.CONSTANTS.ClassLeadershipBaseCost*e/r,m=_.CONSTANTS.ClassLeadershipBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassGymStrength:a=_.CONSTANTS.ClassGymBaseCost*e/r,o=t/r*p.getTrainingMult();break;case _.CONSTANTS.ClassGymDefense:a=_.CONSTANTS.ClassGymBaseCost*e/r,l=t/r*p.getTrainingMult();break;case _.CONSTANTS.ClassGymDexterity:a=_.CONSTANTS.ClassGymBaseCost*e/r,c=t/r*p.getTrainingMult();break;case _.CONSTANTS.ClassGymAgility:a=_.CONSTANTS.ClassGymBaseCost*e/r,u=t/r*p.getTrainingMult();break;default:throw new Error("ERR: Invalid/unrecognized class name")}this.workMoneyLossRate=a,this.workHackExpGainRate=i*this.hacking_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workStrExpGainRate=o*this.strength_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workDefExpGainRate=l*this.defense_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workDexExpGainRate=c*this.dexterity_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workAgiExpGainRate=u*this.agility_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workChaExpGainRate=m*this.charisma_exp_mult*s.BitNodeMultipliers.ClassGymExpGain;var h=Object(z.clearEventListeners)("work-in-progress-cancel-button");n==_.CONSTANTS.ClassGymStrength||n==_.CONSTANTS.ClassGymDefense||n==_.CONSTANTS.ClassGymDexterity||n==_.CONSTANTS.ClassGymAgility?h.innerHTML="Stop training at gym":h.innerHTML="Stop taking course",h.addEventListener("click",()=>(this.finishClass(),!1)),Object(z.clearEventListeners)("work-in-progress-something-else-button").style.visibility="hidden",b.Engine.loadWorkInProgressContent()}function et(e){this.timeWorked+=b.Engine._idleSpeed*e;var t=this.className;this.processWorkEarnings(e);const n=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You have been ",t," for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"This has cost you: ",ee.a.createElement("br",null),Object(J.Money)(-this.workMoneyGained)," (",Object(X.MoneyRate)(this.workMoneyLossRate*re),") ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You have gained: ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," (",K.numeralWrapper.formatExp(this.workHackExpGainRate*re)," / sec) hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," (",K.numeralWrapper.formatExp(this.workStrExpGainRate*re)," / sec) strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," (",K.numeralWrapper.formatExp(this.workDefExpGainRate*re)," / sec) defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," (",K.numeralWrapper.formatExp(this.workDexExpGainRate*re)," / sec) dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," (",K.numeralWrapper.formatExp(this.workAgiExpGainRate*re)," / sec) agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," (",K.numeralWrapper.formatExp(this.workChaExpGainRate*re)," / sec) charisma exp ",ee.a.createElement("br",null),"You may cancel at any time"),n)}function tt(e=!1){if(this.gainIntelligenceExp(_.CONSTANTS.IntelligenceClassBaseExpGain*Math.round(this.timeWorked/1e3)),this.workMoneyGained>0)throw new Error("ERR: Somehow gained money while taking class");if(this.updateSkillLevels(),e||Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"After ",this.className," for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),", ",ee.a.createElement("br",null),"you spent a total of ",Object(J.Money)(-1*this.workMoneyGained),". ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You earned a total of: ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma exp",ee.a.createElement("br",null))),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadLocationContent(!1),e){var t="After "+this.className+" for "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)+", you spent a total of "+K.numeralWrapper.formatMoney(-1*this.workMoneyGained)+". You earned a total of: "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hacking exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" strength exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" defense exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dexterity exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agility exp, and "+K.numeralWrapper.formatExp(this.workChaExpGained)+" charisma exp";return this.resetWorkStatus(),t}this.resetWorkStatus()}function nt(e,t,n,r,a,i,o,l,c,u=null){this.crimeType=e,this.resetWorkStatus(),this.isWorking=!0,this.focus=!0,this.workType=_.CONSTANTS.WorkTypeCrime,u&&u.workerscript&&(this.committingCrimeThruSingFn=!0,this.singFnCrimeWorkerScript=u.workerscript),this.workHackExpGained=t*this.hacking_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workStrExpGained=n*this.strength_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workDefExpGained=r*this.defense_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workDexExpGained=a*this.dexterity_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workAgiExpGained=i*this.agility_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workChaExpGained=o*this.charisma_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workMoneyGained=l*this.crime_money_mult*s.BitNodeMultipliers.CrimeMoney,this.timeNeededToCompleteWork=c;const m=Object(z.clearEventListeners)("work-in-progress-cancel-button");m.innerHTML="Cancel crime",m.addEventListener("click",()=>(this.finishCrime(!0),!1)),Object(z.clearEventListeners)("work-in-progress-something-else-button").style.visibility="hidden",b.Engine.loadWorkInProgressContent()}function rt(e){if(this.timeWorked+=b.Engine._idleSpeed*e,this.timeWorked>=this.timeNeededToCompleteWork)this.finishCrime(!1);else{var t=Math.round(this.timeWorked/this.timeNeededToCompleteWork*100),n=Math.round(t/5);n<0&&(n=0),n>20&&(n=20);var r="["+Array(n+1).join("|")+Array(20-n+1).join(" ")+"]";document.getElementById("work-in-progress-text").innerHTML="You are attempting to "+this.crimeType+".
Time remaining: "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeNeededToCompleteWork-this.timeWorked)+"
"+r.replace(/ /g," ")}}function at(e){if(!e){if(Object(y.determineCrimeSuccess)(this,this.crimeType)){let e=null;for(const t in f.Crimes)if(f.Crimes[t].type==this.crimeType){e=f.Crimes[t];break}null==e&&Object($.dialogBoxCreate)(`ERR: Unrecognized crime type (${this.crimeType}). This is probably a bug please contact the developer`),this.gainMoney(this.workMoneyGained),this.recordMoneySource(this.workMoneyGained,"crime"),this.karma-=e.karma,this.numPeopleKilled+=e.kills,e.intelligence_exp>0&&this.gainIntelligenceExp(e.intelligence_exp),this.workHackExpGained*=2,this.workStrExpGained*=2,this.workDefExpGained*=2,this.workDexExpGained*=2,this.workAgiExpGained*=2,this.workChaExpGained*=2,this.committingCrimeThruSingFn?null==this.singFnCrimeWorkerScript.disableLogs.ALL&&null==this.singFnCrimeWorkerScript.disableLogs.commitCrime&&this.singFnCrimeWorkerScript.scriptRef.log("Crime successful! Gained "+K.numeralWrapper.formatMoney(this.workMoneyGained)+", "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hack exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" str exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" def exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dex exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agi exp, "+K.numeralWrapper.formatExp(this.workChaExpGained)+" cha exp."):Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"Crime successful!",ee.a.createElement("br",null),ee.a.createElement("br",null),"You gained:",ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking experience ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma experience"))}else this.workHackExpGained/=2,this.workStrExpGained/=2,this.workDefExpGained/=2,this.workDexExpGained/=2,this.workAgiExpGained/=2,this.workChaExpGained/=2,this.committingCrimeThruSingFn?null==this.singFnCrimeWorkerScript.disableLogs.ALL&&null==this.singFnCrimeWorkerScript.disableLogs.commitCrime&&this.singFnCrimeWorkerScript.scriptRef.log("Crime failed! Gained "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hack exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" str exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" def exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dex exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agi exp, "+K.numeralWrapper.formatExp(this.workChaExpGained)+" cha exp."):Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"Crime failed!",ee.a.createElement("br",null),ee.a.createElement("br",null),"You gained:",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking experience ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma experience"));this.gainHackingExp(this.workHackExpGained),this.gainStrengthExp(this.workStrExpGained),this.gainDefenseExp(this.workDefExpGained),this.gainDexterityExp(this.workDexExpGained),this.gainAgilityExp(this.workAgiExpGained),this.gainCharismaExp(this.workChaExpGained)}this.committingCrimeThruSingFn=!1,this.singFnCrimeWorkerScript=null,document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,this.resetWorkStatus(),b.Engine.loadLocationContent(!1)}function it(){if(!this.isWorking)return"";var e;switch(this.workType){case _.CONSTANTS.WorkTypeStudyClass:e=this.finishClass(!0);break;case _.CONSTANTS.WorkTypeCompany:e=this.finishWork(!0,!0);break;case _.CONSTANTS.WorkTypeCompanyPartTime:e=this.finishWorkPartTime(!0);break;case _.CONSTANTS.WorkTypeFaction:e=this.finishFactionWork(!0,!0);break;case _.CONSTANTS.WorkTypeCreateProgram:e=this.finishCreateProgramWork(!0);break;case _.CONSTANTS.WorkTypeCrime:e=this.finishCrime(!0);break;default:return console.error(`Unrecognized work type (${this.workType})`),""}return e}function ot(e){if("number"==typeof e)return this.hp-=e,this.hp<=0&&(this.hospitalize(),!0);console.warn(`Player.takeDamage() called without a numeric argument: ${e}`)}function st(e){"number"==typeof e?(this.hp+=e,this.hp>this.max_hp&&(this.hp=this.max_hp)):console.warn(`Player.regenerateHp() called without a numeric argument: ${e}`)}function lt(){const e=Object(H.getHospitalizationCost)(this);return!1===I.Settings.SuppressHospitalizationPopup&&Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"You were in critical condition! You were taken to the hospital where luckily they were able to save your life. You were charged ",Object(J.Money)(e))),this.loseMoney(e),this.recordMoneySource(-1*e,"hospitalization"),this.hp=this.max_hp,e}function ct(e,t=!1){let n=null;""!==this.companyName&&(n=u.Companies[this.companyName]);const r=this.jobs[this.companyName],a=u.Companies[this.location];if(!(a instanceof c.Company))return t?"ERROR: Invalid company name: "+this.location+". applyToCompany() failed":void console.error(`Could not find company that matches the location: ${this.location}. Player.applyToCompany() failed`);let i=e;if(!this.isQualified(a,i)){var o=Object(p.getJobRequirementText)(a,i);return!t&&void Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position
"+o)}for(;;){let e=Object(m.getNextCompanyPositionHelper)(i);if(null==e)break;if(!a.hasPosition(e))break;if(!this.isQualified(a,e))break;i=e}if(null==n||n.name!=a.name||i.name!=r){if(this.jobs[a.name]=i.name,document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),t)return!0;Object($.dialogBoxCreate)("Congratulations! You were offered a new job at "+this.companyName+" as a "+i.name+"!")}else{var s=Object(m.getNextCompanyPositionHelper)(i);if(null==s){if(t)return!1;Object($.dialogBoxCreate)("You are already at the highest position for your field! No promotion available")}else if(a.hasPosition(s)){if(t)return!1;o=Object(p.getJobRequirementText)(a,s);Object($.dialogBoxCreate)("Unfortunately, you do not qualify for a promotion
"+o)}else{if(t)return!1;Object($.dialogBoxCreate)("You are already at the highest position for your field! No promotion available")}}}function ut(e,t){var n=null;if(""!==this.companyName&&(n=u.Companies[this.companyName]),null==n||n.name!=e.name)return t;const r=this.jobs[this.companyName],a=h.CompanyPositions[r];return a.isSoftwareJob()&&t.isSoftwareJob()||a.isITJob()&&t.isITJob()||a.isBusinessJob()&&t.isBusinessJob()||a.isSecurityEngineerJob()&&t.isSecurityEngineerJob()||a.isNetworkEngineerJob()&&t.isNetworkEngineerJob()||a.isSecurityJob()&&t.isSecurityJob()||a.isAgentJob()&&t.isAgentJob()||a.isSoftwareConsultantJob()&&t.isSoftwareConsultantJob()||a.isBusinessConsultantJob()&&t.isBusinessConsultantJob()||a.isPartTimeJob()&&t.isPartTimeJob()?Object(m.getNextCompanyPositionHelper)(a):t}function mt(e){this.companyName="",delete this.jobs[e]}function pt(e=!1){return this.applyForJob(h.CompanyPositions[d.SoftwareCompanyPositions[0]],e)}function ht(e=!1){return this.applyForJob(h.CompanyPositions[d.SoftwareConsultantCompanyPositions[0]],e)}function dt(e=!1){return this.applyForJob(h.CompanyPositions[d.ITCompanyPositions[0]],e)}function _t(e=!1){var t=u.Companies[this.location];return this.isQualified(t,h.CompanyPositions[d.SecurityEngineerCompanyPositions[0]])?this.applyForJob(h.CompanyPositions[d.SecurityEngineerCompanyPositions[0]],e):!e&&void Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}function gt(e=!1){var t=u.Companies[this.location];return this.isQualified(t,h.CompanyPositions[d.NetworkEngineerCompanyPositions[0]])?this.applyForJob(h.CompanyPositions[d.NetworkEngineerCompanyPositions[0]],e):!e&&void Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}function yt(e=!1){return this.applyForJob(h.CompanyPositions[d.BusinessCompanyPositions[0]],e)}function ft(e=!1){return this.applyForJob(h.CompanyPositions[d.BusinessConsultantCompanyPositions[0]],e)}function bt(e=!1){return this.applyForJob(h.CompanyPositions[d.SecurityCompanyPositions[2]],e)}function Et(e=!1){var t=u.Companies[this.location];return this.isQualified(t,h.CompanyPositions[d.AgentCompanyPositions[0]])?this.applyForJob(h.CompanyPositions[d.AgentCompanyPositions[0]],e):!e&&void Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}function vt(e=!1){var t=u.Companies[this.location];if(this.isQualified(t,h.CompanyPositions[d.MiscCompanyPositions[1]])){if(this.companyName=t.name,this.jobs[t.name]=d.MiscCompanyPositions[1],document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),e)return!0;Object($.dialogBoxCreate)("Congratulations, you are now employed at "+this.companyName)}else{if(e)return!1;Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}}function kt(e=!1){var t=u.Companies[this.location];if(this.isQualified(t,h.CompanyPositions[d.PartTimeCompanyPositions[1]])){if(this.jobs[t.name]=d.PartTimeCompanyPositions[1],document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),e)return!0;Object($.dialogBoxCreate)("Congratulations, you are now employed part-time at "+this.companyName)}else{if(e)return!1;Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}}function Ct(e=!1){var t=u.Companies[this.location];if(this.isQualified(t,h.CompanyPositions[d.MiscCompanyPositions[0]])){if(this.companyName=t.name,this.jobs[t.name]=d.MiscCompanyPositions[0],document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),e)return!0;Object($.dialogBoxCreate)("Congratulations, you are now employed as a waiter at "+this.companyName)}else{if(e)return!1;Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}}function Pt(e=!1){var t=u.Companies[this.location];if(this.isQualified(t,h.CompanyPositions[d.PartTimeCompanyPositions[0]])){if(this.companyName=t.name,this.jobs[t.name]=d.PartTimeCompanyPositions[0],document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),e)return!0;Object($.dialogBoxCreate)("Congratulations, you are now employed as a part-time waiter at "+this.companyName)}else{if(e)return!1;Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}}function Ot(e,t){var n=e.jobStatReqOffset,r=t.requiredHacking>0?t.requiredHacking+n:0,a=t.requiredStrength>0?t.requiredStrength+n:0,i=t.requiredDefense>0?t.requiredDefense+n:0,o=t.requiredDexterity>0?t.requiredDexterity+n:0,s=t.requiredDexterity>0?t.requiredDexterity+n:0,l=t.requiredCharisma>0?t.requiredCharisma+n:0;return this.hacking_skill>=r&&this.strength>=a&&this.defense>=i&&this.dexterity>=o&&this.agility>=s&&this.charisma>=l&&e.playerReputation>=t.requiredReputation}function St(e=!0){e&&this.resetMultipliers();for(let e=0;et}var i=v.Factions.Illuminati;!i.isBanned&&!i.isMember&&!i.alreadyInvited&&t>=30&&this.money.gte(15e10)&&this.hacking_skill>=1500&&this.strength>=1200&&this.defense>=1200&&this.dexterity>=1200&&this.agility>=1200&&e.push(i);var o=v.Factions.Daedalus;!o.isBanned&&!o.isMember&&!o.alreadyInvited&&t>=Math.round(30*s.BitNodeMultipliers.DaedalusAugsRequirement)&&this.money.gte(1e11)&&(this.hacking_skill>=2500||this.strength>=1500&&this.defense>=1500&&this.dexterity>=1500&&this.agility>=1500)&&e.push(o);var l=v.Factions["The Covenant"];!l.isBanned&&!l.isMember&&!l.alreadyInvited&&t>=20&&this.money.gte(75e9)&&this.hacking_skill>=850&&this.strength>=850&&this.defense>=850&&this.dexterity>=850&&this.agility>=850&&e.push(l);var c=v.Factions.ECorp;c.isBanned||c.isMember||c.alreadyInvited||!a(M.LocationName.AevumECorp)||e.push(c);var m=v.Factions.MegaCorp;m.isBanned||m.isMember||m.alreadyInvited||!a(M.LocationName.Sector12MegaCorp)||e.push(m);var p=v.Factions["Bachman & Associates"];p.isBanned||p.isMember||p.alreadyInvited||!a(M.LocationName.AevumBachmanAndAssociates)||e.push(p);var h=v.Factions["Blade Industries"];h.isBanned||h.isMember||h.alreadyInvited||!a(M.LocationName.Sector12BladeIndustries)||e.push(h);var d=v.Factions.NWO;d.isBanned||d.isMember||d.alreadyInvited||!a(M.LocationName.VolhavenNWO)||e.push(d);var g=v.Factions["Clarke Incorporated"];g.isBanned||g.isMember||g.alreadyInvited||!a(M.LocationName.AevumClarkeIncorporated)||e.push(g);var y=v.Factions["OmniTek Incorporated"];y.isBanned||y.isMember||y.alreadyInvited||!a(M.LocationName.VolhavenOmniTekIncorporated)||e.push(y);var f=v.Factions["Four Sigma"];f.isBanned||f.isMember||f.alreadyInvited||!a(M.LocationName.Sector12FourSigma)||e.push(f);var b=v.Factions["KuaiGong International"];b.isBanned||b.isMember||b.alreadyInvited||!a(M.LocationName.ChongqingKuaiGongInternational)||e.push(b);var E=v.Factions["Fulcrum Secret Technologies"],k=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.FulcrumSecretTechnologies]];null==k?console.error("Could not find Fulcrum Secret Technologies Server"):E.isBanned||E.isMember||E.alreadyInvited||!k.backdoorInstalled||!a(M.LocationName.AevumFulcrumTechnologies,25e4)||e.push(E);var C=v.Factions.BitRunners,O=this.getHomeComputer(),S=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.BitRunnersServer]];null==S?console.error("Could not find BitRunners Server"):!C.isBanned&&!C.isMember&&S.backdoorInstalled&&!C.alreadyInvited&&O.maxRam>=128&&e.push(C);var x=v.Factions["The Black Hand"],w=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.TheBlackHandServer]];null==w?console.error("Could not find The Black Hand Server"):!x.isBanned&&!x.isMember&&w.backdoorInstalled&&!x.alreadyInvited&&O.maxRam>=64&&e.push(x);var A=v.Factions.NiteSec,R=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.NiteSecServer]];null==R?console.error("Could not find NiteSec Server"):!A.isBanned&&!A.isMember&&R.backdoorInstalled&&!A.alreadyInvited&&O.maxRam>=32&&e.push(A);var D=v.Factions.Chongqing;D.isBanned||D.isMember||D.alreadyInvited||!this.money.gte(2e7)||this.city!=T.CityName.Chongqing||e.push(D);var I=v.Factions["Sector-12"];I.isBanned||I.isMember||I.alreadyInvited||!this.money.gte(15e6)||this.city!=T.CityName.Sector12||e.push(I);var L=v.Factions["New Tokyo"];L.isBanned||L.isMember||L.alreadyInvited||!this.money.gte(2e7)||this.city!=T.CityName.NewTokyo||e.push(L);var j=v.Factions.Aevum;j.isBanned||j.isMember||j.alreadyInvited||!this.money.gte(4e7)||this.city!=T.CityName.Aevum||e.push(j);var W=v.Factions.Ishima;W.isBanned||W.isMember||W.alreadyInvited||!this.money.gte(3e7)||this.city!=T.CityName.Ishima||e.push(W);var F=v.Factions.Volhaven;F.isBanned||F.isMember||F.alreadyInvited||!this.money.gte(5e7)||this.city!=T.CityName.Volhaven||e.push(F);var U=v.Factions["Speakers for the Dead"];!U.isBanned&&!U.isMember&&!U.alreadyInvited&&this.hacking_skill>=100&&this.strength>=300&&this.defense>=300&&this.dexterity>=300&&this.agility>=300&&this.numPeopleKilled>=30&&this.karma<=-45&&!n.includes(M.LocationName.Sector12CIA)&&!n.includes(M.LocationName.Sector12NSA)&&e.push(U);var H=v.Factions["The Dark Army"];!H.isBanned&&!H.isMember&&!H.alreadyInvited&&this.hacking_skill>=300&&this.strength>=300&&this.defense>=300&&this.dexterity>=300&&this.agility>=300&&this.city==T.CityName.Chongqing&&this.numPeopleKilled>=5&&this.karma<=-45&&!n.includes(M.LocationName.Sector12CIA)&&!n.includes(M.LocationName.Sector12NSA)&&e.push(H);var G=v.Factions["The Syndicate"];!G.isBanned&&!G.isMember&&!G.alreadyInvited&&this.hacking_skill>=200&&this.strength>=200&&this.defense>=200&&this.dexterity>=200&&this.agility>=200&&(this.city==T.CityName.Aevum||this.city==T.CityName.Sector12)&&this.money.gte(1e7)&&this.karma<=-90&&!n.includes(M.LocationName.Sector12CIA)&&!n.includes(M.LocationName.Sector12NSA)&&e.push(G);var K=v.Factions.Silhouette;!K.isBanned&&!K.isMember&&!K.alreadyInvited&&(r.includes("Chief Technology Officer")||r.includes("Chief Financial Officer")||r.includes("Chief Executive Officer"))&&this.money.gte(15e6)&&this.karma<=-22&&e.push(K);var q=v.Factions.Tetrads;!q.isBanned&&!q.isMember&&!q.alreadyInvited&&(this.city==T.CityName.Chongqing||this.city==T.CityName.NewTokyo||this.city==T.CityName.Ishima)&&this.strength>=75&&this.defense>=75&&this.dexterity>=75&&this.agility>=75&&this.karma<=-18&&e.push(q);var $=v.Factions["Slum Snakes"];!$.isBanned&&!$.isMember&&!$.alreadyInvited&&this.strength>=30&&this.defense>=30&&this.dexterity>=30&&this.agility>=30&&this.karma<=-9&&this.money.gte(1e6)&&e.push($);var z=v.Factions.Netburners,Y=0,V=0,J=0;for(let e=0;e=80&&Y>=8&&V>=4&&J>=100&&e.push(z);var X=v.Factions["Tian Di Hui"];X.isBanned||X.isMember||X.alreadyInvited||!this.money.gte(1e6)||!(this.hacking_skill>=50)||this.city!=T.CityName.Chongqing&&this.city!=T.CityName.NewTokyo&&this.city!=T.CityName.Ishima||e.push(X);var Q=v.Factions.CyberSec,Z=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.CyberSecServer]];return null==Z?console.error("Could not find CyberSec Server"):Q.isBanned||Q.isMember||!Z.backdoorInstalled||Q.alreadyInvited||e.push(Q),e}function xt(e){this.bitNodeN=e}function wt(e){for(const t in this.queuedAugmentations)if(this.queuedAugmentations[t].name==e)return void console.warn(`tried to queue ${e} twice, this may be a bug`);for(const t in this.augmentations)if(this.augmentations[t].name==e)return void console.warn(`tried to queue ${e} twice, this may be a bug`);this.firstAugPurchased=!0,this.queuedAugmentations.push(new i.PlayerOwnedAugmentation(e))}function At(e,t=1){if(null==e||null==e.type||null==e)return"No reward for this contract";switch(e.type){case l.CodingContractRewardType.FactionReputation:if(null==e.name||!(v.Factions[e.name]instanceof E.Faction))return e.type=l.CodingContractRewardType.FactionReputationAll,this.gainCodingContractReward(e);var n=_.CONSTANTS.CodingContractBaseFactionRepGain*t;return v.Factions[e.name].playerReputation+=n,`Gained ${n} faction reputation for ${e.name}`;case l.CodingContractRewardType.FactionReputationAll:const i=_.CONSTANTS.CodingContractBaseFactionRepGain*t,o=["Bladeburners"];var r=this.factions.slice();if(0==(r=r.filter(e=>!o.includes(e))).length)return e.type=l.CodingContractRewardType.Money,this.gainCodingContractReward(e,t);const m=Math.floor(i/r.length);for(const e of r)v.Factions[e]instanceof E.Faction&&(v.Factions[e].playerReputation+=m);return`Gained ${m} reputation for each of the following factions: ${r.toString()}`;case l.CodingContractRewardType.CompanyReputation:if(null==e.name||!(u.Companies[e.name]instanceof c.Company))return e.type=l.CodingContractRewardType.FactionReputationAll,this.gainCodingContractReward(e);n=_.CONSTANTS.CodingContractBaseCompanyRepGain*t;return u.Companies[e.name].playerReputation+=n,`Gained ${n} company reputation for ${e.name}`;case l.CodingContractRewardType.Money:default:var a=_.CONSTANTS.CodingContractBaseMoneyGain*t*s.BitNodeMultipliers.CodingContractMoney;return this.gainMoney(a),this.recordMoneySource(a,"codingcontract"),`Gained ${K.numeralWrapper.formatMoney(a)}`}}function Rt(e){return null==O.Cities[e]?(console.warn(`Player.travel() called with invalid city: ${e}`),!1):(this.city=e,!0)}function Nt(e){return null==S.Locations[e]?(console.warn(`Player.gotoLocation() called with invalid location: ${e}`),!1):(this.location=e,!0)}function Dt(){return 10===this.bitNodeN||F.SourceFileFlags[10]>0}function It(e){this.exploits.includes(e)||this.exploits.push(e)}function Bt(e){return Object(A.calculateIntelligenceBonus)(this.intelligence,e)}function Lt(){return this.moneySourceA.casino}},function(e,t,n){"use strict";n.r(t),n.d(t,"canAccessGang",function(){return l}),n.d(t,"getGangFaction",function(){return c}),n.d(t,"getGangName",function(){return u}),n.d(t,"hasGangWith",function(){return m}),n.d(t,"inGang",function(){return p}),n.d(t,"startGang",function(){return h});var r=n(19),a=n(86),i=n(48),o=n(25);const s=-54e3;function l(){return 2===this.bitNodeN||!(i.SourceFileFlags[2]<=0)&&this.karma<=o.BitNodeMultipliers.GangKarmaRequirement*s}function c(){const e=r.Factions[this.gang.facName];if(null==e)throw new Error(`Gang has invalid faction name: ${this.gang.facName}`);return e}function u(){return this.inGang()?this.gang.facName:""}function m(e){return this.inGang()&&this.gang.facName===e}function p(){return null!=this.gang&&void 0!=this.gang&&this.gang instanceof a.b}function h(e,t){this.gang=new a.b(e,t);const n=r.Factions[e];if(null==n)throw new Error(`Invalid faction name when creating gang: ${e}`);n.playerReputation=0}},function(e,t,n){"use strict";n.r(t),n.d(t,"canAccessCorporation",function(){return i}),n.d(t,"hasCorporation",function(){return o}),n.d(t,"startCorporation",function(){return s});var r=n(43),a=n(48);function i(){return 3===this.bitNodeN||a.SourceFileFlags[3]>0}function o(){return null!=this.corporation&&this.corporation instanceof r.c}function s(e,t=0){this.corporation=new r.c({name:e}),this.corporation.totalShares+=t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ScriptUrl=void 0;t.ScriptUrl=class{constructor(e,t){this.filename=e,this.url=t}}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"a",function(){return executeJSScript});var _NetscriptEvaluator__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(81),_Script_ScriptUrl__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(745),_Script_ScriptUrl__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_Script_ScriptUrl__WEBPACK_IMPORTED_MODULE_1__);function makeScriptBlob(e){return new Blob([e],{type:"text/javascript"})}async function executeJSScript(scripts=[],workerScript){let loadedModule,urls=null,script=workerScript.getScript();shouldCompile(script,scripts)&&(script.markUpdated(),urls=_getScriptUrls(script,scripts,[]),script.url=urls[urls.length-1].url,script.module=new Promise(resolve=>resolve(eval("import(urls[urls.length - 1].url)"))),script.dependencies=urls),loadedModule=await script.module;let ns=workerScript.env.vars;try{if(!loadedModule.main)throw Object(_NetscriptEvaluator__WEBPACK_IMPORTED_MODULE_0__.b)(workerScript,`${script.filename} cannot be run because it does not have a main function.`);return loadedModule.main(ns)}finally{if(null!=urls)for(const e in urls)URL.revokeObjectURL(e.url)}}function shouldCompile(e,t){return""===e.module||e.dependencies.some(n=>{const r=t.find(e=>e.filename==n.filename);return!r||r.moduleSequenceNumber>e.moduleSequenceNumber})}function _getScriptUrls(e,t,n){const r=[];n.push(e);try{let a=e.code.replace(/((?:from|import)\s+(?:'|"))(?:\.\/)?([^'"]+)('|")/g,(e,a,i,o)=>{if(!t.some(e=>e.filename==i))return e;const[s]=t.filter(e=>e.filename==i),l=_getScriptUrls(s,t,n);return r.push(...l),[a,l[l.length-1].url,o].join("")});return a+='\n\nfunction print() {throw new Error("Invalid call to window.print(). Did you mean to use Netscript\'s print()?");}',r.push(new _Script_ScriptUrl__WEBPACK_IMPORTED_MODULE_1__.ScriptUrl(e.filename,URL.createObjectURL(makeScriptBlob(a)))),r}catch(e){for(const e in r)URL.revokeObjectURL(e);throw e}finally{n.pop()}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.is2DArray=void 0,t.is2DArray=function(e){return e.constructor===Array&&e.every(e=>e.constructor===Array)}},,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.tabCompletion=void 0;const r=n(8),a=n(13);t.tabCompletion=function(e,t,n){if(n.constructor!==Array)return;if(!a.containsAllStrings(n))return;if(""===t)for(let t=n.length-1;t>=0;--t)n[t].toLowerCase().startsWith(e.toLowerCase())||n.splice(t,1);else for(let e=n.length-1;e>=0;--e)n[e].toLowerCase().startsWith(t.toLowerCase())||n.splice(e,1);const i=document.getElementById("terminal-input-text-box");if(null==i)return void console.warn("Couldn't find terminal input DOM element (id=terminal-input-text-box) when trying to autocomplete");const o=i,s=o.value.lastIndexOf(";");let l="";if(0!==n.length)if(1===n.length)l=""===t?n[0]+" ":e+" "+n[0],o.value=-1===s?l:o.value.slice(0,s+1)+" "+l,o.focus();else{const i=a.longestCommonStart(n);let l="";for(let e=0;e "+e),r.post(l)):(o.value=-1===s?i:`${o.value.slice(0,s+1)} ${i}`,o.focus()):i===t?(r.post("> "+e+" "+t),r.post(l)):(o.value=-1==s?`${e} ${i}`:`${o.value.slice(0,s+1)} ${e} ${i}`,o.focus())}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.determineAllPossibilitiesForTabCompletion=void 0;const r=n(103),a=n(1174),i=n(80),o=n(296),s=n(85),l=n(27),c=["alias","analyze","backdoor","cat","cd","check","clear","cls","connect","download","expr","free","hack","help","home","hostname","ifconfig","kill","killall","ls","lscpu","mem","mv","nano","ps","rm","run","scan","scan-analyze","scp","sudov","tail","theme","top"];t.determineAllPossibilitiesForTabCompletion=function(e,t,n,u=""){let m=[];m=m.concat(Object.keys(i.GlobalAliases));const p=e.getCurrentServer(),h=e.getHomeComputer();let d="",_=null;function g(){for(const e of p.contracts)m.push(e.fn)}function y(){for(const e of p.messages)e instanceof s.Message||m.push(e)}function f(){for(const e of h.programs)m.push(e)}function b(){for(const e of p.scripts){const t=k(e.filename);t&&m.push(t)}}function E(){for(const e of p.textFiles){const t=k(e.fn);t&&m.push(t)}}function v(){const e=a.getSubdirectories(p,null==_?"/":_);for(let t=0;t
Earns money - Slightly increases respect - Slightly increases wanted level",isCombat:!1,isHacking:!0,name:"Ransomware",params:{baseRespect:5e-5,baseWanted:1e-4,baseMoney:1,hackWeight:100,difficulty:1}},{desc:"Assign this gang member to attempt phishing scams and attacks

Earns money - Slightly increases respect - Slightly increases wanted level",isCombat:!1,isHacking:!0,name:"Phishing",params:{baseRespect:8e-5,baseWanted:.003,baseMoney:2.5,hackWeight:85,chaWeight:15,difficulty:3.5}},{desc:"Assign this gang member to attempt identity theft

Earns money - Increases respect - Increases wanted level",isCombat:!1,isHacking:!0,name:"Identity Theft",params:{baseRespect:1e-4,baseWanted:.075,baseMoney:6,hackWeight:80,chaWeight:20,difficulty:5}},{desc:"Assign this gang member to carry out DDoS attacks

Increases respect - Increases wanted level",isCombat:!1,isHacking:!0,name:"DDoS Attacks",params:{baseRespect:4e-4,baseWanted:.2,hackWeight:100,difficulty:8}},{desc:"Assign this gang member to create and distribute malicious viruses

Increases respect - Increases wanted level",isCombat:!1,isHacking:!0,name:"Plant Virus",params:{baseRespect:6e-4,baseWanted:.4,hackWeight:100,difficulty:12}},{desc:"Assign this gang member to commit financial fraud and digital counterfeiting

Earns money - Slightly increases respect - Slightly increases wanted level",isCombat:!1,isHacking:!0,name:"Fraud & Counterfeiting",params:{baseRespect:4e-4,baseWanted:.3,baseMoney:15,hackWeight:80,chaWeight:20,difficulty:20}},{desc:"Assign this gang member to launder money

Earns money - Increases respect - Increases wanted level",isCombat:!1,isHacking:!0,name:"Money Laundering",params:{baseRespect:.001,baseWanted:1.25,baseMoney:120,hackWeight:75,chaWeight:25,difficulty:25}},{desc:"Assign this gang member to commit acts of cyberterrorism

Greatly increases respect - Greatly increases wanted level",isCombat:!1,isHacking:!0,name:"Cyberterrorism",params:{baseRespect:.01,baseWanted:6,hackWeight:80,chaWeight:20,difficulty:36}},{desc:"Assign this gang member to be an ethical hacker for corporations

Earns money - Lowers wanted level",isCombat:!1,isHacking:!0,name:"Ethical Hacking",params:{baseWanted:-.001,baseMoney:1,hackWeight:90,chaWeight:10,difficulty:1}},{desc:"Assign this gang member to mug random people on the streets

Earns money - Slightly increases respect - Very slightly increases wanted level",isCombat:!0,isHacking:!1,name:"Mug People",params:{baseRespect:5e-5,baseWanted:5e-5,baseMoney:1.2,strWeight:25,defWeight:25,dexWeight:25,agiWeight:10,chaWeight:15,difficulty:1}},{desc:"Assign this gang member to sell drugs

Earns money - Slightly increases respect - Slightly increases wanted level - Scales slightly with territory",isCombat:!0,isHacking:!1,name:"Deal Drugs",params:{baseRespect:6e-5,baseWanted:.002,baseMoney:5,agiWeight:20,dexWeight:20,chaWeight:60,difficulty:3.5,territory:{money:1.2,respect:1,wanted:1.15}}},{desc:"Assign this gang member to extort civilians in your territory

Earns money - Slightly increases respect - Increases wanted - Scales heavily with territory",isCombat:!0,isHacking:!1,name:"Strongarm Civilians",params:{baseRespect:4e-5,baseWanted:.02,baseMoney:2.5,hackWeight:10,strWeight:25,defWeight:25,dexWeight:20,agiWeight:10,chaWeight:10,difficulty:5,territory:{money:1.6,respect:1.1,wanted:1.5}}},{desc:"Assign this gang member to run cons

Earns money - Increases respect - Increases wanted level",isCombat:!0,isHacking:!1,name:"Run a Con",params:{baseRespect:12e-5,baseWanted:.05,baseMoney:15,strWeight:5,defWeight:5,agiWeight:25,dexWeight:25,chaWeight:40,difficulty:14}},{desc:"Assign this gang member to commit armed robbery on stores, banks and armored cars

Earns money - Increases respect - Increases wanted level",isCombat:!0,isHacking:!1,name:"Armed Robbery",params:{baseRespect:14e-5,baseWanted:.1,baseMoney:38,hackWeight:20,strWeight:15,defWeight:15,agiWeight:10,dexWeight:20,chaWeight:20,difficulty:20}},{desc:"Assign this gang member to traffick illegal arms

Earns money - Increases respect - Increases wanted level - Scales heavily with territory",isCombat:!0,isHacking:!1,name:"Traffick Illegal Arms",params:{baseRespect:2e-4,baseWanted:.24,baseMoney:58,hackWeight:15,strWeight:20,defWeight:20,dexWeight:20,chaWeight:25,difficulty:32,territory:{money:1.4,respect:1.3,wanted:1.25}}},{desc:"Assign this gang member to threaten and black mail high-profile targets

Earns money - Slightly increases respect - Slightly increases wanted level",isCombat:!0,isHacking:!1,name:"Threaten & Blackmail",params:{baseRespect:2e-4,baseWanted:.125,baseMoney:24,hackWeight:25,strWeight:25,dexWeight:25,chaWeight:25,difficulty:28}},{desc:"Assign this gang member to engage in human trafficking operations

Earns money - Increases respect - Increases wanted level - Scales heavily with territory",isCombat:!0,isHacking:!1,name:"Human Trafficking",params:{baseRespect:.004,baseWanted:1.25,baseMoney:120,hackWeight:30,strWeight:5,defWeight:5,dexWeight:30,chaWeight:30,difficulty:36,territory:{money:1.5,respect:1.5,wanted:1.6}}},{desc:"Assign this gang member to commit acts of terrorism

Greatly increases respect - Greatly increases wanted level - Scales heavily with territory",isCombat:!0,isHacking:!1,name:"Terrorism",params:{baseRespect:.01,baseWanted:6,hackWeight:20,strWeight:20,defWeight:20,dexWeight:20,chaWeight:20,difficulty:36,territory:{money:1,respect:2,wanted:2}}},{desc:"Assign this gang member to be a vigilante and protect the city from criminals

Decreases wanted level",isCombat:!0,isHacking:!0,name:"Vigilante Justice",params:{baseWanted:-.001,hackWeight:20,strWeight:20,defWeight:20,dexWeight:20,agiWeight:20,difficulty:1,territory:{money:1,respect:1,wanted:.9}}},{desc:"Assign this gang member to increase their combat stats (str, def, dex, agi)",isCombat:!0,isHacking:!0,name:"Train Combat",params:{strWeight:25,defWeight:25,dexWeight:25,agiWeight:25,difficulty:5}},{desc:"Assign this gang member to train their hacking skills",isCombat:!0,isHacking:!0,name:"Train Hacking",params:{hackWeight:100,difficulty:8}},{desc:"Assign this gang member to train their charisma",isCombat:!0,isHacking:!0,name:"Train Charisma",params:{chaWeight:100,difficulty:8}},{desc:"Assign this gang member to engage in territorial warfare with other gangs. Members assigned to this task will help increase your gang's territory and will defend your territory from being taken.",isCombat:!0,isHacking:!0,name:"Territory Warfare",params:{hackWeight:15,strWeight:20,defWeight:20,dexWeight:20,agiWeight:20,chaWeight:5,difficulty:5}}]},,function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(30),o=n(1),s=n(31);function l(e){if(null==e.multiplier||null==e.onClick)throw new Error("PurchaseButton constructed without required props");const t=e.cost;let n,r=o.Player.canAfford(t)?"std-button":"std-button-disabled",l=null;return Object(i.h)()?Object(i.i)()?(r="std-button-disabled",n=a.a.createElement(a.a.Fragment,null,"Hacknet Server limit reached"),l={color:"red"}):n=a.a.createElement(a.a.Fragment,null,"Purchase Hacknet Server - ",Object(s.Money)(t)):n=a.a.createElement(a.a.Fragment,null,"Purchase Hacknet Node - ",Object(s.Money)(t)),a.a.createElement("button",{className:r,onClick:e.onClick,style:l},n)}},function(e,t,n){"use strict";n.d(t,"a",function(){return m});var r=n(0),a=n.n(r),i=n(30),o=n(1),s=n(31),l=n(125),c=n(449),u=n(140);function m(e){const t=Object(i.h)();let n;return n=t?Object(c.HashRate)(e.totalProduction):Object(l.MoneyRate)(e.totalProduction),a.a.createElement("p",{id:"hacknet-nodes-money"},a.a.createElement("span",null,"Money: "),Object(s.Money)(o.Player.money.toNumber()),a.a.createElement("br",null),t&&a.a.createElement(a.a.Fragment,null,a.a.createElement("span",null,"Hashes: ",Object(u.Hashes)(o.Player.hashManager.hashes)," / ",Object(u.Hashes)(o.Player.hashManager.capacity)),a.a.createElement("br",null)),a.a.createElement("span",null,"Total Hacknet ",t?"Server":"Node"," Production: "),n)}},function(e,t,n){"use strict";n.d(t,"a",function(){return s});var r=n(0),a=n.n(r),i=n(450);function o(e){return a.a.createElement("button",{className:e.className,onClick:e.onClick},e.text)}function s(e){if(null==e.purchaseMultiplier)throw new Error("MultiplierButtons constructed without required props");const t=["x1","x5","x10","MAX"],n=e.onClicks,r=[];for(let s=0;s=e.getUpgradeCost(t.name)){Object(i.n)(t.name,this.state.selectedServer)?this.props.rerender():Object(p.dialogBoxCreate)("Failed to purchase upgrade. This may be because you do not have enough hashes, or because you do not have access to the feature this upgrade affects.")}}render(){const e=this.props.hashManager,t=this.props.upg,n=e.getUpgradeCost(t.name),r=e.hashes>=n?"std-button":"std-button-disabled";return a.a.createElement("div",{className:"bladeburner-action"},a.a.createElement(h.CopyableText,{value:t.name}),a.a.createElement("p",null,"Cost: ",Object(d.Hashes)(n)),a.a.createElement("p",null,t.desc),a.a.createElement("button",{className:r,onClick:this.purchase},"Purchase"),t.hasTargetServer&&a.a.createElement(m.a,{serverType:m.b.Foreign,onChange:this.changeTargetServer,style:{margin:"5px"}}))}}class g extends a.a.Component{constructor(e){super(e),this.state={totalHashes:l.Player.hashManager.hashes}}componentDidMount(){this.interval=setInterval(()=>this.tick(),1e3)}componentWillUnmount(){clearInterval(this.interval)}tick(){this.setState({totalHashes:l.Player.hashManager.hashes})}render(){const e=this.props.rerender,t=l.Player.hashManager;if(!(t instanceof o.HashManager))throw new Error("Player does not have a HashManager)");const n=Object.keys(s.HashUpgrades).map(n=>{const r=s.HashUpgrades[n];return a.a.createElement(_,{upg:r,hashManager:t,key:r.name,rerender:e})});return a.a.createElement("div",null,a.a.createElement(u.PopupCloseButton,{popup:this.props.popupId,text:"Close"}),a.a.createElement("p",null,"Spend your hashes on a variety of different upgrades"),a.a.createElement("p",null,"Hashes: ",c.numeralWrapper.formatHashes(this.state.totalHashes)),n)}}},function(e,t,n){"use strict";n.d(t,"a",function(){return m});var r=n(0),a=n.n(r),i=n(37),o=n(30),s=n(1),l=n(31),c=n(140),u=n(449);class m extends a.a.Component{render(){const e=this.props.node,t=this.props.purchaseMultiplier,n=this.props.recalculate;let r,m;if(e.level>=i.HacknetServerConstants.MaxLevel)r=a.a.createElement(a.a.Fragment,null,"MAX LEVEL"),m="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.f)(e,i.HacknetServerConstants.MaxLevel);else{const r=i.HacknetServerConstants.MaxLevel-e.level;n=Math.min(r,t)}const c=e.calculateLevelUpgradeCost(n,s.Player.hacknet_node_level_cost_mult);r=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(c)),m=s.Player.money.lt(c)?"std-button-disabled":"std-button"}let p,h;if(e.maxRam>=i.HacknetServerConstants.MaxRam)p=a.a.createElement(a.a.Fragment,null,"MAX RAM"),h="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.g)(e,i.HacknetServerConstants.MaxRam);else{const r=Math.round(Math.log2(i.HacknetServerConstants.MaxRam/e.maxRam));n=Math.min(r,t)}const r=e.calculateRamUpgradeCost(n,s.Player.hacknet_node_ram_cost_mult);p=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),h=s.Player.money.lt(r)?"std-button-disabled":"std-button"}let d,_;if(e.cores>=i.HacknetServerConstants.MaxCores)d=a.a.createElement(a.a.Fragment,null,"MAX CORES"),_="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.e)(e,i.HacknetServerConstants.MaxCores);else{const r=i.HacknetServerConstants.MaxCores-e.cores;n=Math.min(r,t)}const r=e.calculateCoreUpgradeCost(n,s.Player.hacknet_node_core_cost_mult);d=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),_=s.Player.money.lt(r)?"std-button-disabled":"std-button"}let g,y;if(e.cache>=i.HacknetServerConstants.MaxCache)g=a.a.createElement(a.a.Fragment,null,"MAX CACHE"),y="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.d)(e,i.HacknetServerConstants.MaxCache);else{const r=i.HacknetServerConstants.MaxCache-e.cache;n=Math.min(r,t)}const r=e.calculateCacheUpgradeCost(n);g=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),y=s.Player.money.lt(r)?"std-button-disabled":"std-button"}return a.a.createElement("li",{className:"hacknet-node"},a.a.createElement("div",{className:"hacknet-node-container"},a.a.createElement("div",{className:"row"},a.a.createElement("h1",{style:{fontSize:"1em"}},e.hostname)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Production:"),a.a.createElement("span",{className:"text money-gold"},Object(c.Hashes)(e.totalHashesGenerated)," (",Object(u.HashRate)(e.hashRate),")")),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Hash Capacity:"),a.a.createElement("span",{className:"text"},Object(c.Hashes)(e.hashCapacity))),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Level:"),a.a.createElement("span",{className:"text upgradable-info"},e.level),a.a.createElement("button",{className:m,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.f)(e,i.HacknetServerConstants.MaxLevel)),Object(o.o)(e,r),n(),!1}},r)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"RAM:"),a.a.createElement("span",{className:"text upgradable-info"},e.maxRam,"GB"),a.a.createElement("button",{className:h,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.g)(e,i.HacknetServerConstants.MaxRam)),Object(o.p)(e,r),n(),!1}},p)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Cores:"),a.a.createElement("span",{className:"text upgradable-info"},e.cores),a.a.createElement("button",{className:_,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.e)(e,i.HacknetServerConstants.MaxCores)),Object(o.l)(e,r),n(),!1}},d)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Cache Level:"),a.a.createElement("span",{className:"text upgradable-info"},e.cache),a.a.createElement("button",{className:y,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.d)(e,i.HacknetServerConstants.MaxCache)),Object(o.k)(e,r),n(),Object(o.r)(),!1}},g))))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return u});var r=n(0),a=n.n(r),i=n(37),o=n(30),s=n(1),l=n(31),c=n(125);class u extends a.a.Component{render(){const e=this.props.node,t=this.props.purchaseMultiplier,n=this.props.recalculate;let r,u;if(e.level>=i.HacknetNodeConstants.MaxLevel)r=a.a.createElement(a.a.Fragment,null,"MAX LEVEL"),u="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.f)(e,i.HacknetNodeConstants.MaxLevel);else{const r=i.HacknetNodeConstants.MaxLevel-e.level;n=Math.min(r,t)}const c=e.calculateLevelUpgradeCost(n,s.Player.hacknet_node_level_cost_mult);r=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(c)),u=s.Player.money.lt(c)?"std-button-disabled":"std-button"}let m,p;if(e.ram>=i.HacknetNodeConstants.MaxRam)m=a.a.createElement(a.a.Fragment,null,"MAX RAM"),p="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.g)(e,i.HacknetNodeConstants.MaxRam);else{const r=Math.round(Math.log2(i.HacknetNodeConstants.MaxRam/e.ram));n=Math.min(r,t)}const r=e.calculateRamUpgradeCost(n,s.Player.hacknet_node_ram_cost_mult);m=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),p=s.Player.money.lt(r)?"std-button-disabled":"std-button"}let h,d;if(e.cores>=i.HacknetNodeConstants.MaxCores)h=a.a.createElement(a.a.Fragment,null,"MAX CORES"),d="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.e)(e,i.HacknetNodeConstants.MaxCores);else{const r=i.HacknetNodeConstants.MaxCores-e.cores;n=Math.min(r,t)}const r=e.calculateCoreUpgradeCost(n,s.Player.hacknet_node_core_cost_mult);h=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),d=s.Player.money.lt(r)?"std-button-disabled":"std-button"}return a.a.createElement("li",{className:"hacknet-node"},a.a.createElement("div",{className:"hacknet-node-container"},a.a.createElement("div",{className:"row"},a.a.createElement("h1",{style:{fontSize:"1em"}},e.name)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Production:"),a.a.createElement("span",{className:"text money-gold"},Object(l.Money)(e.totalMoneyGenerated)," (",Object(c.MoneyRate)(e.moneyGainRatePerSecond),")")),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Level:"),a.a.createElement("span",{className:"text upgradable-info"},e.level),a.a.createElement("button",{className:u,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.f)(e,i.HacknetNodeConstants.MaxLevel)),Object(o.o)(e,r),n(),!1}},r)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"RAM:"),a.a.createElement("span",{className:"text upgradable-info"},e.ram,"GB"),a.a.createElement("button",{className:p,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.g)(e,i.HacknetNodeConstants.MaxRam)),Object(o.p)(e,r),n(),!1}},m)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Cores:"),a.a.createElement("span",{className:"text upgradable-info"},e.cores),a.a.createElement("button",{className:d,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.e)(e,i.HacknetNodeConstants.MaxCores)),Object(o.l)(e,r),n(),!1}},h))))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r=n(0),a=n.n(r),i=n(30);class o extends a.a.Component{getSecondParagraph(){return Object(i.h)()?"Here, you can purchase a Hacknet Server, an upgraded version of the Hacknet Node. Hacknet Servers will perform computations and operations on the network, earning you hashes. Hashes can be spent on a variety of different upgrades.":"Here, you can purchase a Hacknet Node, a specialized machine that can connect and contribute its resources to the Hacknet network. This allows you to take a small percentage of profits from hacks performed on the network. Essentially, you are renting out your Node's computing power."}getThirdParagraph(){return Object(i.h)()?"Hacknet Servers can also be used as servers to run scripts. However, running scripts on a server will reduce its hash rate (hashes generated per second). A Hacknet Server's hash rate will be reduced by the percentage of RAM that is being used by that Server to run scripts.":"Each Hacknet Node you purchase will passively earn you money. Each Hacknet Node can be upgraded in order to increase its computing power and thereby increase the profit you earn from it."}render(){return a.a.createElement("div",null,a.a.createElement("p",{className:"hacknet-general-info"},"The Hacknet is a global, decentralized network of machines. It is used by hackers all around the world to anonymously share computing power and perform distributed cyberattacks without the fear of being traced."),a.a.createElement("p",{className:"hacknet-general-info"},this.getSecondParagraph()),a.a.createElement("p",{className:"hacknet-general-info"},this.getThirdParagraph()))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return c});var r=n(72),a=n(17),i=n(1),o=n(54),s=n(16);function l(){document.getElementById("faction-invitation-box-container").style.display="none"}function c(e){!function(e){document.getElementById("faction-invitation-box-text").innerHTML=e}("You have received a faction invitation from "+e.name),e.alreadyInvited=!0,i.Player.factionInvitations.push(e.name),s.routing.isOn(s.Page.Factions)&&a.Engine.loadFactionsContent(),Object(o.clearEventListeners)("faction-invitation-box-yes").addEventListener("click",function(){return-1===i.Player.factionInvitations.findIndex(t=>t===e.name)&&console.error("Could not find faction in Player.factionInvitations"),Object(r.joinFaction)(e),l(),s.routing.isOn(s.Page.Factions)&&a.Engine.loadFactionsContent(),!1}),Object(o.clearEventListeners)("faction-invitation-box-no").addEventListener("click",function(){return l(),!1}),document.getElementById("faction-invitation-box-container").style.display="flex"}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.FactionRoot=void 0;const o=i(n(0)),s=n(1194),l=n(1191),c=n(1190),u=n(1187),m=n(11),p=n(25),h=n(682),d=n(48),_=n(58),g="Create and manage a gang for this Faction. Gangs will earn you money and faction reputation",y="Attempt a hacking mission for your faction. A mission is a mini game that, if won, earns you significant reputation with this faction. (Recommended hacking level: 200+)",f="Complete hacking contracts for your faction. Your effectiveness, which determines how much reputation you gain for this faction, is based on your hacking skill. You will gain hacking exp.",b="Carry out field missions for your faction. Your effectiveness, which determines how much reputation you gain for this faction, is based on all of your stats. You will gain exp for all stats.",E="Serve in a security detail for your faction. Your effectiveness, which determines how much reputation you gain for this faction, is based on your combat stats. You will gain exp for all combat stats.",v="As your reputation with this faction rises, you will unlock Augmentations, which you can purchase to enhance your abilities.",k="Purchase Duplicate Sleeves and upgrades. These are permanent!",C=["Slum Snakes","Tetrads","The Syndicate","The Dark Army","Speakers for the Dead","NiteSec","The Black Hand"];t.FactionRoot=class extends o.Component{constructor(e){super(e),this.state={rerenderFlag:!1,purchasingAugs:!!e.initiallyOnAugmentationsPage&&e.initiallyOnAugmentationsPage},this.manageGang=this.manageGang.bind(this),this.rerender=this.rerender.bind(this),this.routeToMain=this.routeToMain.bind(this),this.routeToPurchaseAugs=this.routeToPurchaseAugs.bind(this),this.sleevePurchases=this.sleevePurchases.bind(this),this.startFieldWork=this.startFieldWork.bind(this),this.startHackingContracts=this.startHackingContracts.bind(this),this.startHackingMission=this.startHackingMission.bind(this),this.startSecurityWork=this.startSecurityWork.bind(this)}manageGang(){if(this.props.p.inGang())return this.props.engine.loadGangContent();const e=this.props.faction.name;let t=!1;"NiteSec"!==e&&"The Black Hand"!==e||(t=!0);const n=_.yesNoBoxGetYesButton(),r=_.yesNoBoxGetNoButton();if(null==n||null==r)return;n.innerHTML="Create Gang",n.addEventListener("click",()=>{this.props.p.startGang(e,t);const n=document.getElementById("world-menu-header");n instanceof HTMLElement&&(n.click(),n.click()),this.props.engine.loadGangContent(),_.yesNoBoxClose()}),r.innerHTML="Cancel",r.addEventListener("click",()=>{_.yesNoBoxClose()});let a="";a=t?"This is a HACKING gang. Members in this gang will have different tasks than COMBAT gangs. Compared to combat gangs, progression with hacking gangs is more straightforward as territory warfare is not as important.

":"This is a COMBAT gang. Members in this gang will have different tasks than HACKING gangs. Compared to hacking gangs, progression with combat gangs can be more difficult as territory management is more important. However, well-managed combat gangs can progress faster than hacking ones.

",_.yesNoBoxCreate(`Would you like to create a new Gang with ${e}?

`+"Note that this will prevent you from creating a Gang with any other Faction until this BitNode is destroyed. It also resets your reputation with this faction.

"+a+"Other than hacking vs combat, there are NO differences between the Factions you can create a Gang with, and each of these Factions have all Augmentations available.")}rerender(){this.setState(e=>({rerenderFlag:!e.rerenderFlag}))}routeToMain(){this.setState({purchasingAugs:!1})}routeToPurchaseAugs(){this.setState({purchasingAugs:!0})}sleevePurchases(){h.createSleevePurchasesFromCovenantPopup(this.props.p)}startFieldWork(){this.props.p.startFactionFieldWork(this.props.faction)}startHackingContracts(){this.props.p.startFactionHackWork(this.props.faction)}startHackingMission(){const e=this.props.faction;this.props.p.singularityStopWork(),this.props.engine.loadMissionContent(),this.props.startHackingMissionFn(e)}startSecurityWork(){this.props.p.startFactionSecurityWork(this.props.faction)}render(){return this.state.purchasingAugs?this.renderAugmentationsPage():this.renderMainPage()}renderMainPage(){const e=this.props.p,t=this.props.faction,n=t.getInfo(),r=e.inGang()&&e.getGangName()===t.name,a=Math.floor(m.CONSTANTS.BaseFavorToDonate*p.BitNodeMultipliers.RepToDonateToFaction),i=t.favor>=a,s="The Covenant"===t.name&&e.bitNodeN>=10&&d.SourceFileFlags[10];let h=e.canAccessGang()&&C.includes(t.name);return e.inGang()&&(e.getGangName()!==t.name?h=!1:e.getGangName()===t.name&&(h=!0)),o.createElement("div",null,o.createElement("h1",null,t.name),o.createElement(c.Info,{faction:t,factionInfo:n}),h&&o.createElement(u.Option,{buttonText:"Manage Gang",infoText:g,onClick:this.manageGang}),!r&&n.offerHackingMission&&o.createElement(u.Option,{buttonText:"Hacking Mission",infoText:y,onClick:this.startHackingMission}),!r&&n.offerHackingWork&&o.createElement(u.Option,{buttonText:"Hacking Contracts",infoText:f,onClick:this.startHackingContracts}),!r&&n.offerFieldWork&&o.createElement(u.Option,{buttonText:"Field Work",infoText:b,onClick:this.startFieldWork}),!r&&n.offerSecurityWork&&o.createElement(u.Option,{buttonText:"Security Work",infoText:E,onClick:this.startSecurityWork}),!r&&n.offersWork()&&o.createElement(l.DonateOption,{faction:this.props.faction,p:this.props.p,rerender:this.rerender,favorToDonate:a,disabled:!i}),o.createElement(u.Option,{buttonText:"Purchase Augmentations",infoText:v,onClick:this.routeToPurchaseAugs}),s&&o.createElement(u.Option,{buttonText:"Purchase & Upgrade Duplicate Sleeves",infoText:k,onClick:this.sleevePurchases}))}renderAugmentationsPage(){return o.createElement("div",null,o.createElement(s.AugmentationsPage,{faction:this.props.faction,p:this.props.p,routeToMainPage:this.routeToMain}))}}},function(e,t,n){"use strict";n.r(t),n.d(t,"canAccessBladeburner",function(){return i}),n.d(t,"inBladeburner",function(){return o}),n.d(t,"startBladeburner",function(){return s});var r=n(98),a=n(48);function i(){return 8!==this.bitNodeN&&(6===this.bitNodeN||7===this.bitNodeN||a.SourceFileFlags[6]>0||a.SourceFileFlags[7]>0)}function o(){return null!=this.bladeburner&&this.bladeburner instanceof r.a}function s(){this.bladeburner=new r.a({new:!0})}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hasAugmentation=void 0;const r=n(21);t.hasAugmentation=function(e){const t=e instanceof r.Augmentation?e.name:e;for(const e of this.augmentations)if(e.name===t)return!0;for(const e of this.queuedAugmentations)if(e.name===t)return!0;return!1}},function(e,t,n){"use strict";n.d(t,"a",function(){return d});var r=n(769),a=n(768),i=n(744),o=n(743),s=n(742),l=n(739),c=n(183),u=n(39),m=n(185),p=n(24),h=n(59);function d(){this.hacking_skill=1,this.hp=10,this.max_hp=10,this.strength=1,this.defense=1,this.dexterity=1,this.agility=1,this.charisma=1,this.intelligence=0,this.hacking_chance_mult=1,this.hacking_speed_mult=1,this.hacking_money_mult=1,this.hacking_grow_mult=1,this.hacking_exp=0,this.strength_exp=0,this.defense_exp=0,this.dexterity_exp=0,this.agility_exp=0,this.charisma_exp=0,this.intelligence_exp=0,this.hacking_mult=1,this.strength_mult=1,this.defense_mult=1,this.dexterity_mult=1,this.agility_mult=1,this.charisma_mult=1,this.hacking_exp_mult=1,this.strength_exp_mult=1,this.defense_exp_mult=1,this.dexterity_exp_mult=1,this.agility_exp_mult=1,this.charisma_exp_mult=1,this.company_rep_mult=1,this.faction_rep_mult=1,this.money=new h.a(1e3),this.homeComputer="",this.city=u.CityName.Sector12,this.location="",this.jobs={},this.companyName="",this.currentServer="",this.purchasedServers=[],this.hacknetNodes=[],this.hashManager=new c.HashManager,this.factions=[],this.factionInvitations=[],this.queuedAugmentations=[],this.augmentations=[],this.sourceFiles=[],this.numPeopleKilled=0,this.karma=0,this.crime_money_mult=1,this.crime_success_mult=1,this.isWorking=!1,this.focus=!1,this.workType="",this.currentWorkFactionName="",this.currentWorkFactionDescription="",this.workHackExpGainRate=0,this.workStrExpGainRate=0,this.workDefExpGainRate=0,this.workDexExpGainRate=0,this.workAgiExpGainRate=0,this.workChaExpGainRate=0,this.workRepGainRate=0,this.workMoneyGainRate=0,this.workMoneyLossRate=0,this.workHackExpGained=0,this.workStrExpGained=0,this.workDefExpGained=0,this.workDexExpGained=0,this.workAgiExpGained=0,this.workChaExpGained=0,this.workRepGained=0,this.workMoneyGained=0,this.createProgramName="",this.createProgramReqLvl=0,this.className="",this.crimeType="",this.timeWorked=0,this.timeWorkedCreateProgram=0,this.timeNeededToCompleteWork=0,this.work_money_mult=1,this.hacknet_node_money_mult=1,this.hacknet_node_purchase_cost_mult=1,this.hacknet_node_ram_cost_mult=1,this.hacknet_node_core_cost_mult=1,this.hacknet_node_level_cost_mult=1,this.hasWseAccount=!1,this.hasTixApiAccess=!1,this.has4SData=!1,this.has4SDataTixApi=!1,this.gang=0,this.corporation=0,this.bladeburner=0,this.bladeburner_max_stamina_mult=1,this.bladeburner_stamina_gain_mult=1,this.bladeburner_analysis_mult=1,this.bladeburner_success_chance_mult=1,this.sleeves=[],this.resleeves=[],this.sleevesFromCovenant=0,this.bitNodeN=1,this.firstFacInvRecvd=!1,this.firstAugPurchased=!1,this.firstTimeTraveled=!1,this.firstProgramAvailable=!1,this.lastUpdate=0,this.totalPlaytime=0,this.playtimeSinceLastAug=0,this.playtimeSinceLastBitnode=0,this.moneySourceA=new m.MoneySourceTracker,this.moneySourceB=new m.MoneySourceTracker,this.scriptProdSinceLastAug=0,this.exploits=[]}Object.assign(d.prototype,s,l,a,i,o,r),d.prototype.toJSON=function(){return Object(p.Generic_toJSON)("PlayerObject",this)},d.fromJSON=function(e){return Object(p.Generic_fromJSON)(d,e.data)},p.Reviver.constructors.PlayerObject=d},function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(77),o=n(3),s=n(12);class l extends i.a{render(){const e=this.props.upgradeData,t=`${e[2]} - ${o.numeralWrapper.formatMoney(e[1])}`,n=e[3];return a.a.createElement("div",{className:"cmpy-mgmt-upgrade-div tooltip",style:{width:"45%"},onClick:()=>{const t=this.corp();t.funds.lt(e[1])?Object(s.dialogBoxCreate)("Insufficient funds"):(t.unlock(e),t.rerender())}},t,a.a.createElement("span",{className:"tooltiptext"},n))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(77),o=n(3),s=n(12);class l extends i.a{render(){const e=this.props.upgradeData,t=this.props.upgradeLevel,n=e[1],r=e[2],i=n*Math.pow(r,t),l=`${e[4]} - ${o.numeralWrapper.formatMoney(i)}`,c=e[5];return a.a.createElement("div",{className:"cmpy-mgmt-upgrade-div tooltip",style:{width:"45%"},onClick:()=>{const t=this.corp();t.funds.lt(i)?Object(s.dialogBoxCreate)("Insufficient funds"):(t.upgrade(e),t.rerender())}},l,a.a.createElement("span",{className:"tooltiptext"},c))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return _});var r=n(0),a=n.n(r),i=n(77),o=n(772),s=n(771),l=n(43),c=n(455),u=n(454),m=n(11),p=n(3),h=n(13);function d(){return(d=Object.assign||function(e){for(var t=1;t=0?p.numeralWrapper.formatMoney(e):"-"+p.numeralWrapper.format(-1*e,"$0.000a");let n="";if(this.corp().dividendPercentage>0&&e>0){const t=this.corp().dividendPercentage/100*e,r=e-t,a=t/this.corp().totalShares,i=this.corp().numShares*a;n=`Retained Profits (after dividends): ${p.numeralWrapper.format(r,"$0.000a")} / s

`+`Dividend Percentage: ${p.numeralWrapper.format(this.corp().dividendPercentage/100,"0%")}
`+`Dividends per share: ${p.numeralWrapper.format(a,"$0.000a")} / s
`+`Your earnings as a shareholder (Pre-Tax): ${p.numeralWrapper.format(i,"$0.000a")} / s
`+`Dividend Tax Rate: ${this.corp().dividendTaxPercentage}%
`+`Your earnings as a shareholder (Post-Tax): ${p.numeralWrapper.format(i*(1-this.corp().dividendTaxPercentage/100),"$0.000a")} / s

`}let r="Total Funds: "+p.numeralWrapper.format(this.corp().funds.toNumber(),"$0.000a")+"
Total Revenue: "+p.numeralWrapper.format(this.corp().revenue.toNumber(),"$0.000a")+" / s
Total Expenses: "+p.numeralWrapper.format(this.corp().expenses.toNumber(),"$0.000a")+" / s
Total Profits: "+t+" / s
"+n+"Publicly Traded: "+(this.corp().public?"Yes":"No")+"
Owned Stock Shares: "+p.numeralWrapper.format(this.corp().numShares,"0.000a")+"
Stock Price: "+(this.corp().public?p.numeralWrapper.formatMoney(this.corp().sharePrice):"N/A")+"

Total Stock Shares: "+p.numeralWrapper.format(this.corp().totalShares,"0.000a")+""+`Outstanding Shares: ${p.numeralWrapper.format(this.corp().issuedShares,"0.000a")}
`+`Private Shares: ${p.numeralWrapper.format(this.corp().totalShares-this.corp().issuedShares-this.corp().numShares,"0.000a")}`+"



";const a=this.corp().storedCycles*m.CONSTANTS.MilliPerCycle;a>15e3&&(r+=`Bonus time: ${Object(h.convertTimeMsToTimeElapsedString)(a)}

`);let i=this.corp().getProductionMultiplier(),o=this.corp().getStorageMultiplier(),s=this.corp().getAdvertisingMultiplier(),l=this.corp().getEmployeeCreMultiplier(),c=this.corp().getEmployeeChaMultiplier(),u=this.corp().getEmployeeIntMultiplier(),d=this.corp().getEmployeeEffMultiplier(),_=this.corp().getSalesMultiplier(),g=this.corp().getScientificResearchMultiplier();return i>1&&(r+="Production Multiplier: "+p.numeralWrapper.format(i,"0.000")+"
"),o>1&&(r+="Storage Multiplier: "+p.numeralWrapper.format(o,"0.000")+"
"),s>1&&(r+="Advertising Multiplier: "+p.numeralWrapper.format(s,"0.000")+"
"),l>1&&(r+="Empl. Creativity Multiplier: "+p.numeralWrapper.format(l,"0.000")+"
"),c>1&&(r+="Empl. Charisma Multiplier: "+p.numeralWrapper.format(c,"0.000")+"
"),u>1&&(r+="Empl. Intelligence Multiplier: "+p.numeralWrapper.format(u,"0.000")+"
"),d>1&&(r+="Empl. Efficiency Multiplier: "+p.numeralWrapper.format(d,"0.000")+"
"),_>1&&(r+="Sales Multiplier: "+p.numeralWrapper.format(_,"0.000")+"
"),g>1&&(r+="Scientific Research Multiplier: "+p.numeralWrapper.format(g,"0.000")+"
"),r}renderButtons(){const e=this.corp().getStarterGuide.bind(this.corp()),t=this.createButton({class:"a-link-button",display:"inline-block",onClick:e,text:"Getting Started Guide",tooltip:"Get a copy of and read 'The Complete Handbook for Creating a Successful Corporation.' This is a .lit file that guides you through the beginning of setting up a Corporation and provides some tips/pointers for helping you get started with managing it."}),n=this.corp().determineValuation()>=l.a,r=this.eventHandler().createBribeFactionsPopup.bind(this.eventHandler()),a=n?"a-link-button":"a-link-button-inactive",i={bribeFactions:this.createButton({class:a,display:"inline-block",onClick:r,text:"Bribe Factions",tooltip:n?"Use your Corporations power and influence to bribe Faction leaders in exchange for reputation":"Your Corporation is not powerful enough to bribe Faction leaders"}),getStarterGuide:t};return this.corp().public?this.renderPublicButtons(i):this.renderPrivateButtons(i)}renderPrivateButtons(e){const t=this.corp().fundingRound<4,n=t?"std-button":"a-link-button-inactive",r=t?"Search for private investors who will give you startup funding in exchangefor equity (stock shares) in your company":null,i=this.corp().getInvestment.bind(this.corp()),o=this.corp().goPublic.bind(this.corp()),s=this.createButton({class:n,onClick:i,style:"inline-block",text:"Find Investors",tooltip:r}),l=this.createButton({class:"std-button",onClick:o,style:"inline-block",text:"Go Public",tooltip:"Become a publicly traded and owned entity. Going public involves issuing shares for an IPO. Once you are a public company, your shares will be traded on the stock market."});return a.a.createElement("div",null,e.getStarterGuide,s,l,a.a.createElement("br",null),e.bribeFactions)}renderPublicButtons(e){const t=this.corp(),n=this.eventHandler().createSellSharesPopup.bind(this.eventHandler()),r=t.shareSaleCooldown>0,i=r?"a-link-button-inactive":"std-button",o=r?"Cannot sell shares for "+t.convertCooldownToString(t.shareSaleCooldown):"Sell your shares in the company. The money earned from selling your shares goes into your personal account, not the Corporation's. This is one of the only ways to profit from your business venture.",s=this.createButton({class:i,display:"inline-block",onClick:function(e){e.isTrusted&&n(e)},text:"Sell Shares",tooltip:o}),l=this.eventHandler().createBuybackSharesPopup.bind(this.eventHandler()),c=this.createButton({class:"std-button",display:"inline-block",onClick:l,text:"Buyback shares",tooltip:"Buy back shares you that previously issued or sold at market price."}),u=this.eventHandler().createIssueNewSharesPopup.bind(this.eventHandler()),m=t.issueNewSharesCooldown>0,p=m?"a-link-button-inactive":"std-button",h=m?"Cannot issue new shares for "+t.convertCooldownToString(t.issueNewSharesCooldown):"Issue new equity shares to raise capital.",d=this.createButton({class:p,display:"inline-block",onClick:u,text:"Issue New Shares",tooltip:h}),_=this.eventHandler().createIssueDividendsPopup.bind(this.eventHandler()),g=this.createButton({class:"std-button",display:"inline-block",onClick:_,text:"Issue Dividends",tooltip:"Manage the dividends that are paid out to shareholders (including yourself)"});return a.a.createElement("div",null,e.getStarterGuide,s,c,a.a.createElement("br",null),d,g,a.a.createElement("br",null),e.bribeFactions)}renderUpgrades(){if(this.corp().divisions.length<=0)return;const e=[];Object.values(c.CorporationUnlockUpgrades).forEach(t=>{0===this.corp().unlockUpgrades[t[0]]&&e.push(this.renderUnlockUpgrade(t))});const t=[];for(let e=0;ethis.renderLevelableUpgrade(e)))}renderUnlockUpgrade(e){return a.a.createElement(s.a,d({},this.props,{upgradeData:e,key:e[0]}))}renderLevelableUpgrade(e){return a.a.createElement(o.a,d({},this.props,{upgradeData:e.upgradeData,upgradeLevel:e.upgradeLevel,key:e.upgradeData[0]}))}render(){return a.a.createElement("div",null,a.a.createElement("p",{dangerouslySetInnerHTML:{__html:this.getOverviewText()}}),this.renderButtons(),a.a.createElement("br",null),this.renderUpgrades())}}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"a",function(){return IndustryWarehouse});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(0),react__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__),_BaseReactComponent__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(77),_Corporation__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(43),_Material__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(297),_Material__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_Material__WEBPACK_IMPORTED_MODULE_3__),_Product__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(210),_Product__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(_Product__WEBPACK_IMPORTED_MODULE_4__),_Warehouse__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(128),_Warehouse__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(_Warehouse__WEBPACK_IMPORTED_MODULE_5__),_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(3),_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6___default=__webpack_require__.n(_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__),_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(65),_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7___default=__webpack_require__.n(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__);function ProductComponent(e){const t=e.corp,n=e.division,r=e.city,a=e.product,i=e.eventHandler,o="0.000",s="0.000a",l=n.hasResearch("uPgrade: Dashboard"),c=a.data[r][1]-a.data[r][2];let u;if(u=a.sllman[r][0]?Object(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__.isString)(a.sllman[r][1])?`Sell (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][2],s)}/${a.sllman[r][1]})`:`Sell (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][2],s)}/${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.sllman[r][1],s)})`:"Sell (0.000/0.000)",a.marketTa2)u+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a.marketTa2Price[r]);else if(a.marketTa1){const e=a.rat/a.mku;u+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a.pCost+e)}else a.sCost&&(Object(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__.isString)(a.sCost)?u+=" @ "+a.sCost:u+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.sCost,"$0.000a"));const m=i.createSellProductPopup.bind(i,a,r);let p="Limit Production";a.prdman[r][0]&&(p+=" ("+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.prdman[r][1],o)+")");const h=i.createLimitProductProdutionPopup.bind(i,a,r),d=i.createDiscontinueProductPopup.bind(i,a,n),_=i.createProductMarketTaPopup.bind(i,a,n);return a.fin?react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-product-div"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},a.name,": ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][0],s)," (",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(c,s),"/s)",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Prod: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][1],s),"/s",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Sell: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][2],s)," /s")),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"Rating: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.rat,o),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Quality: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.qlt,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Performance: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.per,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Durability: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.dur,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Reliability: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.rel,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Aesthetics: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.aes,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Features: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.fea,o),1===t.unlockUpgrades[2]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),1===t.unlockUpgrades[2]&&"Demand: "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.dmd,o),1===t.unlockUpgrades[3]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),1===t.unlockUpgrades[3]&&"Competition: "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.cmp,o))),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"Est. Production Cost: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a.pCost/_Corporation__WEBPACK_IMPORTED_MODULE_2__.j),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"An estimate of the material cost it takes to create this Product.")),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"Est. Market Price: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a.pCost),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"An estimate of how much consumers are willing to pay for this product. Setting the sale price above this may result in less sales. Setting the sale price below this may result in more sales.")),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",null,react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:m},u),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:h},p),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:d},"Discontinue"),n.hasResearch("Market-TA.I")&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:_},"Market-TA"))):l?react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-product-div"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,"Designing ",a.name,"..."),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.prog,"0.00"),"% complete"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",null,react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:m},u),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:h},p),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:d},"Discontinue"),n.hasResearch("Market-TA.I")&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:_},"Market-TA"))):react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-product-div"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,"Designing ",a.name,"..."),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.prog,"0.00"),"% complete"))}function MaterialComponent(props){const corp=props.corp,division=props.division,warehouse=props.warehouse,city=props.city,mat=props.mat,eventHandler=props.eventHandler,markupLimit=mat.getMarkupLimit(),office=division.offices[city];if(!(office instanceof _Corporation__WEBPACK_IMPORTED_MODULE_2__.i))throw new Error(`Could not get OfficeSpace object for this city (${city})`);const nf="0.000",nfB="0.000a",totalGain=mat.buy+mat.prd+mat.imp-mat.sll-mat.totalExp,tutorial=division.newInd&&Object.keys(division.reqMats).includes(mat.name)&&0===mat.buy&&0===mat.imp,purchaseButtonText=`Buy (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.buy,nfB)})`,purchaseButtonClass=tutorial?"std-button flashing-button tooltip":"std-button",purchaseButtonOnClick=eventHandler.createPurchaseMaterialPopup.bind(eventHandler,mat,division,warehouse),exportButtonOnClick=eventHandler.createExportMaterialPopup.bind(eventHandler,mat);let sellButtonText;if(mat.sllman[0]){if(sellButtonText=Object(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__.isString)(mat.sllman[1])?`Sell (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.sll,nfB)}/${mat.sllman[1]})`:`Sell (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.sll,nfB)}/${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.sllman[1],nfB)})`,mat.marketTa2)sellButtonText+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(mat.marketTa2Price);else if(mat.marketTa1)sellButtonText+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(mat.bCost+markupLimit);else if(mat.sCost)if(Object(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__.isString)(mat.sCost)){var sCost=mat.sCost.replace(/MP/g,mat.bCost);sellButtonText+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(eval(sCost))}else sellButtonText+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(mat.sCost)}else sellButtonText="Sell (0.000/0.000)";const sellButtonOnClick=eventHandler.createSellMaterialPopup.bind(eventHandler,mat),marketTaButtonOnClick=eventHandler.createMaterialMarketTaPopup.bind(eventHandler,mat,division);return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-material-div"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{style:{display:"inline-block"}},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},mat.name,": ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.qty,nfB)," (",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(totalGain,nfB),"/s)",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Buy: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.buy,nfB)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Prod: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.prd,nfB)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Sell: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.sll,nfB)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Export: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.totalExp,nfB)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Import: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.imp,nfB),1===corp.unlockUpgrades[2]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),1===corp.unlockUpgrades[2]&&"Demand: "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.dmd,nf),1===corp.unlockUpgrades[3]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),1===corp.unlockUpgrades[3]&&"Competition: "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.cmp,nf))),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"MP: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(mat.bCost),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Market Price: The price you would pay if you were to buy this material on the market"))," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"Quality: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.qlt,"0.00a"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"The quality of your material. Higher quality will lead to more sales"))),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{style:{display:"inline-block"}},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:purchaseButtonClass,onClick:purchaseButtonOnClick},purchaseButtonText,tutorial&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Purchase your required materials to get production started!")),1===corp.unlockUpgrades[0]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:exportButtonOnClick},"Export"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:sellButtonOnClick},sellButtonText),division.hasResearch("Market-TA.I")&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:marketTaButtonOnClick},"Market-TA")))}class IndustryWarehouse extends _BaseReactComponent__WEBPACK_IMPORTED_MODULE_1__.a{isRelevantMaterial(e,t){return!!Object.keys(t.reqMats).includes(e)||(!!t.prodMats.includes(e)||!!["Hardware","Robots","AICores","RealEstate"].includes(e))}renderWarehouseUI(){const e=this.corp(),t=this.routing().currentDivision,n=t.warehouses[this.props.currentCity],r={color:n.sizeUsed>=n.size?"red":"white",margin:"5px"},a=_Corporation__WEBPACK_IMPORTED_MODULE_2__.o*Math.pow(1.07,n.level+1),i=e.funds.gt(a)?"std-button":"a-link-button-inactive";let o="This Industry uses ["+Object.keys(t.reqMats).join(", ")+"] in order to ";t.prodMats.length>0?(o+="produce ["+t.prodMats.join(", ")+"] ",t.makesProducts&&(o+=" and "+t.getProductDescriptionText())):t.makesProducts&&(o+=t.getProductDescriptionText()+".");const s=[];for(const e in t.reqMats)if(t.reqMats.hasOwnProperty(e)){const n=[" *",t.reqMats[e],e].join(" ");s.push(react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{key:e},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,n)))}let l,c="in order to create ";switch(t.prodMats.length>0?(c+="one of each produced Material ("+t.prodMats.join(", ")+") ",t.makesProducts&&(c+="or to create one of its Products")):t.makesProducts&&(c+="one of its Products"),t.state){case"START":l="Current state: Preparing...";break;case"PURCHASE":l="Current state: Purchasing materials...";break;case"PRODUCTION":l="Current state: Producing materials and/or products...";break;case"SALE":l="Current state: Selling materials and/or products...";break;case"EXPORT":l="Current state: Exporting materials and/or products...";break;default:console.error(`Invalid state: ${t.state}`)}const u=[];for(const r in n.materials)n.materials[r]instanceof _Material__WEBPACK_IMPORTED_MODULE_3__.Material&&this.isRelevantMaterial(r,t)&&u.push(react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(MaterialComponent,{city:this.props.currentCity,corp:e,division:t,eventHandler:this.eventHandler(),key:r,mat:n.materials[r],warehouse:n}));const m=[];if(t.makesProducts&&Object.keys(t.products).length>0)for(const r in t.products)t.products[r]instanceof _Product__WEBPACK_IMPORTED_MODULE_4__.Product&&m.push(react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(ProductComponent,{city:this.props.currentCity,corp:e,division:t,eventHandler:this.eventHandler(),key:r,product:t.products[r],warehouse:n}));return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-panel"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip",style:r},"Storage: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatBigNumber(n.sizeUsed)," / ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatBigNumber(n.size),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext",dangerouslySetInnerHTML:{__html:n.breakdown}})),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:i,onClick:()=>{++n.level,n.updateSize(e,t),e.funds=e.funds.minus(a),e.rerender()}},"Upgrade Warehouse Size - ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a)),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,o,". The exact requirements for production are:"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),s,react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,c),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,"To get started with production, purchase your required materials or import them from another of your company's divisions."),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,l),e.unlockUpgrades[1]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",null,react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("label",{style:{color:"white"},htmlFor:"cmpy-mgmt-smart-supply-checkbox"},"Enable Smart Supply"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input",{type:"checkbox",id:"cmpy-mgmt-smart-supply-checkbox",onChange:t=>{n.smartSupplyEnabled=t.target.checked,e.rerender()},style:{margin:"3px"},checked:n.smartSupplyEnabled})),u,m)}render(){const e=this.routing().currentDivision;if(null==e)throw new Error("Routing does not hold reference to the current Industry");const t=e.warehouses[this.props.currentCity],n=this.eventHandler().purchaseWarehouse.bind(this.eventHandler(),e,this.props.currentCity);return t instanceof _Warehouse__WEBPACK_IMPORTED_MODULE_5__.Warehouse?this.renderWarehouseUI():react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-panel"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:n},"Purchase Warehouse (",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(_Corporation__WEBPACK_IMPORTED_MODULE_2__.m),")"))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return p});var r=n(0),a=n.n(r),i=n(77),o=n(43),s=n(36),l=n(311),c=n(3),u=n(12),m=n(160);class p extends i.a{renderMakeProductButton(){const e=this.routing().currentDivision;var t,n;switch(e.type){case s.Industries.Food:t="Build Restaurant",n="Build and manage a new restaurant!";break;case s.Industries.Tobacco:t="Create Product",n="Create a new tobacco product!";break;case s.Industries.Pharmaceutical:t="Create Drug",n="Design and develop a new pharmaceutical drug!";break;case s.Industries.Computer:case"Computer":t="Create Product",n="Design and manufacture a new computer hardware product!";break;case s.Industries.Robotics:t="Design Robot",n="Design and create a new robot or robotic system!";break;case s.Industries.Software:t="Develop Software",n="Develop a new piece of software!";break;case s.Industries.Healthcare:t="Build Hospital",n="Build and manage a new hospital!";break;case s.Industries.RealEstate:t="Develop Property",n="Develop a new piece of real estate property!";break;default:return t="Create Product",n="Create a new product!",""}n+="

To begin developing a product, first choose the city in which it will be designed. The stats of your employees in the selected city affect the properties of the finished product, such as its quality, performance, and durability.

You can also choose to invest money in the design and marketing of the product. Investing money in its design will result in a superior product. Investing money in marketing the product will help the product's sales.";const r=e.hasMaximumNumberProducts(),i=r?"a-link-button-inactive tooltip":"std-button",o=this.eventHandler().createMakeProductPopup.bind(this.eventHandler(),n,e);return a.a.createElement("button",{className:i,onClick:o,style:{margin:"6px",display:"inline-block"}},t,r&&a.a.createElement("span",{className:"tooltiptext"},"You have reached the maximum number of products: ",e.getMaximumNumberProducts()))}renderText(){const e=this.corp(),t=this.routing().currentDivision,n=1===e.unlockUpgrades[4],r=t.lastCycleRevenue.minus(t.lastCycleExpenses).toNumber(),i=`Industry: ${t.type} (Corp Funds: ${c.numeralWrapper.formatMoney(e.funds.toNumber())})`,o=`Awareness: ${c.numeralWrapper.format(t.awareness,"0.000")}`,s=`Popularity: ${c.numeralWrapper.format(t.popularity,"0.000")}`;let l=!1;const p=t.getAdvertisingFactors(),h=p[1],d=p[2],_=p[3],g=p[0];n&&(l=!0);const y=`Revenue: ${c.numeralWrapper.formatMoney(t.lastCycleRevenue.toNumber())} / s`,f=`Expenses: ${c.numeralWrapper.formatMoney(t.lastCycleExpenses.toNumber())} /s`,b=`Profit: ${c.numeralWrapper.formatMoney(r)} / s`;return a.a.createElement("div",null,i,a.a.createElement("br",null)," ",a.a.createElement("br",null),o," ",a.a.createElement("br",null),s," ",a.a.createElement("br",null),!1!==l&&a.a.createElement("p",{className:"tooltip"},"Advertising Multiplier: x",c.numeralWrapper.format(g,"0.000"),a.a.createElement("span",{className:"tooltiptext cmpy-mgmt-advertising-info"},"Total multiplier for this industrys sales due to its awareness and popularity",a.a.createElement("br",null),"Awareness Bonus: x",c.numeralWrapper.format(Math.pow(h,.85),"0.000"),a.a.createElement("br",null),"Popularity Bonus: x",c.numeralWrapper.format(Math.pow(d,.85),"0.000"),a.a.createElement("br",null),"Ratio Multiplier: x",c.numeralWrapper.format(Math.pow(_,.85),"0.000"))),l,a.a.createElement("br",null),a.a.createElement("br",null),y," ",a.a.createElement("br",null),f," ",a.a.createElement("br",null),b,a.a.createElement("br",null)," ",a.a.createElement("br",null),a.a.createElement("p",{className:"tooltip"},"Production Multiplier: ",c.numeralWrapper.format(t.prodMult,"0.00"),a.a.createElement("span",{className:"tooltiptext"},"Production gain from owning production-boosting materials such as hardware, Robots, AI Cores, and Real Estate")),a.a.createElement("div",{className:"help-tip",onClick:()=>{function e(e){return Object(m.createProgressBarText)({progress:e,totalTicks:20})}Object(u.dialogBoxCreate)("Owning Hardware, Robots, AI Cores, and Real Estate can boost your Industry's production. The effect these materials have on your production varies between Industries. For example, Real Estate may be very effective for some Industries, but ineffective for others.

This division's production multiplier is calculated by summing the individual production multiplier of each of its office locations. This production multiplier is applied to each office. Therefore, it is beneficial to expand into new cities as this can greatly increase the production multiplier of your entire Division.

Below are approximations for how effective each material is at boosting this industry's production multiplier (Bigger bars = more effective):

"+`Hardware:    ${e(t.hwFac)}
`+`Robots:      ${e(t.robFac)}
`+`AI Cores:    ${e(t.aiFac)}
`+`Real Estate: ${e(t.reFac)}`)}},"?"),a.a.createElement("br",null)," ",a.a.createElement("br",null),a.a.createElement("p",{className:"tooltip"},"Scientific Research: ",c.numeralWrapper.format(t.sciResearch.qty,"0.000a"),a.a.createElement("span",{className:"tooltiptext"},"Scientific Research increases the quality of the materials and products that you produce.")),a.a.createElement("button",{className:"help-tip",onClick:t.createResearchBox.bind(t)},"Research"))}renderUpgrades(){const e=this.corp(),t=this.routing().currentDivision,n=t.offices[this.props.currentCity];if(!(n instanceof o.i))throw new Error(`Current City (${this.props.currentCity}) for UI does not have an OfficeSpace object`);const r=[];for(const a in l.IndustryUpgrades){const i=l.IndustryUpgrades[a];if(t.hasResearch("AutoBrew")&&"Coffee"===i[4])continue;const o=i[0],s=i[1],m=i[2];let p=0;switch(o){case 0:p=n.employees.length*s;break;default:p=s*Math.pow(m,t.upgrades[o])}const h=()=>{e.funds.lt(p)?Object(u.dialogBoxCreate)("Insufficient funds"):(e.funds=e.funds.minus(p),t.upgrade(i,{corporation:e,office:n}),e.rerender())};r.push(this.renderUpgrade({onClick:h,text:`${i[4]} - ${c.numeralWrapper.formatMoney(p)}`,tooltip:i[5]}))}return r}renderUpgrade(e){return a.a.createElement("div",{className:"cmpy-mgmt-upgrade-div tooltip",onClick:e.onClick,key:e.text},e.text,null!=e.tooltip&&a.a.createElement("span",{className:"tooltiptext"},e.tooltip))}render(){const e=this.routing().currentDivision;if(null==e)throw new Error("Routing does not hold reference to the current Industry");const t=this.renderMakeProductButton();return a.a.createElement("div",{className:"cmpy-mgmt-industry-overview-panel"},this.renderText(),a.a.createElement("br",null),a.a.createElement("u",{className:"industry-purchases-and-upgrades-header"},"Purchases & Upgrades"),a.a.createElement("br",null),this.renderUpgrades()," ",a.a.createElement("br",null),e.makesProducts&&t)}}},function(e,t,n){"use strict";n.d(t,"a",function(){return u});var r=n(0),a=n.n(r),i=n(77),o=n(43),s=n(28),l=n(3),c=n(180);class u extends i.a{constructor(e){super(e),this.state={city:"",division:"",employeeManualAssignMode:!1,employee:null,numEmployees:0,numOperations:0,numEngineers:0,numBusiness:0,numManagement:0,numResearch:0,numUnassigned:0,numTraining:0},this.updateEmployeeCount()}resetEmployeeCount(){this.state.numEmployees=0,this.state.numOperations=0,this.state.numEngineers=0,this.state.numBusiness=0,this.state.numManagement=0,this.state.numResearch=0,this.state.numUnassigned=0,this.state.numTraining=0}updateEmployeeCount(){const e=this.routing().currentDivision;if(null==e)throw new Error("Routing does not hold reference to the current Industry");const t=e.offices[this.props.currentCity];if(!(t instanceof o.i))throw new Error(`Current City (${this.props.currentCity}) for UI does not have an OfficeSpace object`);e.name===this.state.division&&this.props.currentCity===this.state.city||(this.resetEmployeeCount(),this.state.division=e.name,this.state.city=this.props.currentCity);const n=t.employees.length;for(let e=this.state.numEmployees;e0&&(u=r/t.employees.length,m=i/t.employees.length,p=o/t.employees.length);const h=n=>{if(this.state.numUnassigned<=0)console.warn("Cannot assign employee. No unassigned employees available");else{switch(n){case s.EmployeePositions.Operations:++this.state.numOperations;break;case s.EmployeePositions.Engineer:++this.state.numEngineers;break;case s.EmployeePositions.Business:++this.state.numBusiness;break;case s.EmployeePositions.Management:++this.state.numManagement;break;case s.EmployeePositions.RandD:++this.state.numResearch;break;case s.EmployeePositions.Unassigned:++this.state.numUnassigned;break;case s.EmployeePositions.Training:++this.state.numTraining;break;default:console.error("Unrecognized employee position: "+n)}--this.state.numUnassigned,t.assignEmployeeToJob(n),t.calculateEmployeeProductivity({corporation:this.corp(),industry:e}),this.corp().rerender()}},d=n=>{function r(e){console.warn(`Cannot unassign from ${e} because there is nobody assigned to that position`)}switch(n){case s.EmployeePositions.Operations:if(this.state.numOperations<=0)return r(s.EmployeePositions.Operations);--this.state.numOperations;break;case s.EmployeePositions.Engineer:if(this.state.numEngineers<=0)return r(s.EmployeePositions.Operations);--this.state.numEngineers;break;case s.EmployeePositions.Business:if(this.state.numBusiness<=0)return r(s.EmployeePositions.Operations);--this.state.numBusiness;break;case s.EmployeePositions.Management:if(this.state.numManagement<=0)return r(s.EmployeePositions.Operations);--this.state.numManagement;break;case s.EmployeePositions.RandD:if(this.state.numResearch<=0)return r(s.EmployeePositions.Operations);--this.state.numResearch;break;case s.EmployeePositions.Unassigned:console.warn("Tried to unassign from the Unassigned position");break;case s.EmployeePositions.Training:if(this.state.numTraining<=0)return r(s.EmployeePositions.Operations);--this.state.numTraining;break;default:console.error("Unrecognized employee position: "+n)}++this.state.numUnassigned,t.unassignEmployeeFromJob(n),t.calculateEmployeeProductivity({corporation:this.corp(),industry:e}),this.corp().rerender()},_={fontSize:"15px",margin:"5px 0px 5px 0px",width:"50%"},g=this.state.numUnassigned>0?"std-button":"a-link-button-inactive",y=this.state.numOperations>0?"std-button":"a-link-button-inactive",f=this.state.numEngineers>0?"std-button":"a-link-button-inactive",b=this.state.numBusiness>0?"std-button":"a-link-button-inactive",E=this.state.numManagement>0?"std-button":"a-link-button-inactive",v=this.state.numResearch>0?"std-button":"a-link-button-inactive",k=this.state.numTraining>0?"std-button":"a-link-button-inactive";return a.a.createElement("div",null,a.a.createElement("button",{className:"std-button tooltip",onClick:()=>{this.state.employeeManualAssignMode=!0,this.corp().rerender()}},"Switch to Manual Mode",a.a.createElement("span",{className:"tooltiptext"},"Switch to Manual Assignment Mode, which allows you to specify which employees should get which jobs")),a.a.createElement("p",null,a.a.createElement("strong",null,"Unassigned Employees: ",this.state.numUnassigned)),a.a.createElement("br",null),a.a.createElement("p",null,"Avg Employee Morale: ",l.numeralWrapper.format(u,"0.000")),a.a.createElement("p",null,"Avg Employee Happiness: ",l.numeralWrapper.format(m,"0.000")),a.a.createElement("p",null,"Avg Employee Energy: ",l.numeralWrapper.format(p,"0.000")),a.a.createElement("p",null,"Total Employee Salary: ",l.numeralWrapper.formatMoney(c)),n&&a.a.createElement("p",{className:"tooltip",style:{display:"inline-block"}},"Material Production: ",l.numeralWrapper.format(e.getOfficeProductivity(t),"0.000"),a.a.createElement("span",{className:"tooltiptext"},"The base amount of material this office can produce. Does not include production multipliers from upgrades and materials. This value is based off the productivity of your Operations, Engineering, and Management employees")),n&&a.a.createElement("br",null),n&&a.a.createElement("p",{className:"tooltip",style:{display:"inline-block"}},"Product Production: ",l.numeralWrapper.format(e.getOfficeProductivity(t,{forProduct:!0}),"0.000"),a.a.createElement("span",{className:"tooltiptext"},"The base amount of any given Product this office can produce. Does not include production multipliers from upgrades and materials. This value is based off the productivity of your Operations, Engineering, and Management employees")),n&&a.a.createElement("br",null),n&&a.a.createElement("p",{className:"tooltip",style:{display:"inline-block"}},"Business Multiplier: x",l.numeralWrapper.format(e.getBusinessFactor(t),"0.000"),a.a.createElement("span",{className:"tooltiptext"},"The effect this office's 'Business' employees has on boosting sales")),n&&a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Operations," (",this.state.numOperations,")",a.a.createElement("span",{className:"tooltiptext"},"Manages supply chain operations. Improves the amount of Materials and Products you produce.")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Operations),this.corp().rerender()}},"+"),a.a.createElement("button",{className:y,onClick:()=>{d(s.EmployeePositions.Operations),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Engineer," (",this.state.numEngineers,")",a.a.createElement("span",{className:"tooltiptext"},"Develops and maintains products and production systems. Increases the quality of everything you produce. Also increases the amount you produce (not as much as Operations, however)")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Engineer),this.corp().rerender()}},"+"),a.a.createElement("button",{className:f,onClick:()=>{d(s.EmployeePositions.Engineer),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Business," (",this.state.numBusiness,")",a.a.createElement("span",{className:"tooltiptext"},"Handles sales and finances. Improves the amount of Materials and Products you can sell.")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Business),this.corp().rerender()}},"+"),a.a.createElement("button",{className:b,onClick:()=>{d(s.EmployeePositions.Business),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Management," (",this.state.numManagement,")",a.a.createElement("span",{className:"tooltiptext"},"Leads and oversees employees and office operations. Improves the effectiveness of Engineer and Operations employees")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Management),this.corp().rerender()}},"+"),a.a.createElement("button",{className:E,onClick:()=>{d(s.EmployeePositions.Management),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.RandD," (",this.state.numResearch,")",a.a.createElement("span",{className:"tooltiptext"},"Research new innovative ways to improve the company. Generates Scientific Research")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.RandD),this.corp().rerender()}},"+"),a.a.createElement("button",{className:v,onClick:()=>{d(s.EmployeePositions.RandD),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Training," (",this.state.numTraining,")",a.a.createElement("span",{className:"tooltiptext"},"Set employee to training, which will increase some of their stats. Employees in training do not affect any company operations.")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Training),this.corp().rerender()}},"+"),a.a.createElement("button",{className:k,onClick:()=>{d(s.EmployeePositions.Training),this.corp().rerender()}},"-"))}renderManualEmployeeManagement(){const e=this.corp(),t=this.routing().currentDivision,n=t.offices[this.props.currentCity],r=[];for(let e=0;e{this.state.employeeManualAssignMode=!1,this.corp().rerender()}},"Switch to Auto Mode",a.a.createElement("span",{className:"tooltiptext"},"Switch to Automatic Assignment Mode, which will automatically assign employees to your selected jobs. You simply have to select the number of assignments for each job")),a.a.createElement("div",{style:{color:"white",margin:"4px",padding:"4px"}},a.a.createElement("select",{onChange:t=>{const r=Object(c.getSelectText)(t.target);for(let e=0;e{const n=Object(c.getSelectText)(t.target);this.state.employee.pos=n,this.resetEmployeeCount(),e.rerender()},value:o},u)))}render(){const e=this.corp(),t=this.routing().currentDivision,n=t.offices[this.props.currentCity],r={fontSize:"13px"};let i="tooltip";n.atCapacity()?i+=" a-link-button-inactive":(i+=" std-button",0===n.employees.length&&(i+=" flashing-button"));let o="tooltip";n.atCapacity()?o+=" a-link-button-inactive":o+=" std-button";const s=this.eventHandler().createUpgradeOfficeSizePopup.bind(this.eventHandler(),n),l=this.eventHandler().createThrowOfficePartyPopup.bind(this.eventHandler(),n);return a.a.createElement("div",{className:"cmpy-mgmt-employee-panel"},a.a.createElement("h1",{style:{margin:"4px 0px 5px 0px"}},"Office Space"),a.a.createElement("p",null,"Size: ",n.employees.length," / ",n.size," employees"),a.a.createElement("button",{className:i,onClick:()=>{n.findEmployees({corporation:e,industry:t})},style:r},"Hire Employee",0===n.employees.length&&a.a.createElement("span",{className:"tooltiptext"},"You'll need to hire some employees to get your operations started! It's recommended to have at least one employee in every position")),a.a.createElement("button",{className:o,onClick:()=>{n.atCapacity()||(n.hireRandomEmployee(),this.corp().rerender())},style:r},"Autohire Employee",a.a.createElement("span",{className:"tooltiptext"},"Automatically hires an employee and gives him/her a random name")),a.a.createElement("br",null),a.a.createElement("button",{className:"std-button tooltip",onClick:s,style:r},"Upgrade size",a.a.createElement("span",{className:"tooltiptext"},"Upgrade the office's size so that it can hold more employees!")),!t.hasResearch("AutoPartyManager")&&a.a.createElement("button",{className:"std-button tooltip",onClick:l,style:r},"Throw Party",a.a.createElement("span",{className:"tooltiptext"},'"Throw an office party to increase your employee\'s morale and happiness"')),a.a.createElement("br",null),this.renderEmployeeManagement())}}},function(e,t,n){"use strict";n.d(t,"a",function(){return c});var r=n(0),a=n.n(r),i=n(77),o=n(776),s=n(775),l=n(774);class c extends i.a{constructor(e){if(null==e.currentCity)throw new Error("Industry component constructed without 'city' prop");super(e)}render(){return a.a.createElement("div",null,a.a.createElement("div",{className:"cmpy-mgmt-industry-left-panel"},a.a.createElement(s.a,this.props),a.a.createElement(o.a,this.props)),a.a.createElement("div",{className:"cmpy-mgmt-industry-right-panel"},a.a.createElement(l.a,this.props)))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r=n(0),a=n.n(r),i=n(77);class o extends i.a{constructor(e){if(null==e.onClicks)throw new Error("CityTabs component constructed without onClick handlers");if(null==e.city)throw new Error("CityTabs component constructed without 'city' property");if(null==e.cityStateSetter)throw new Error("CityTabs component constructed without 'cityStateSetter' property");super(e)}renderTab(e){let t="cmpy-mgmt-city-tab";return e.current&&(t+=" current"),a.a.createElement("button",{className:t,onClick:e.onClick,key:e.key},e.key)}render(){const e=this.routing().currentDivision,t=[];for(const e in this.props.onClicks)t.push(this.renderTab({current:this.props.city===e,key:e,onClick:this.props.onClicks[e]}));const n=this.eventHandler().createNewCityPopup.bind(this.eventHandler(),e,this.props.cityStateSetter);return t.push(this.renderTab({current:!1,key:"Expand into new City",onClick:n})),t}}},function(e,t,n){"use strict";n.d(t,"a",function(){return p});var r=n(0),a=n.n(r),i=n(77),o=n(778),s=n(777),l=n(773),c=n(43),u=n(39);function m(){return(m=Object.assign||function(e){for(var t=1;t{this.state.city=n,this.corp().rerender()}));const n=a.a.createElement(o.a,m({},this.props,{city:this.state.city,onClicks:t,cityStateSetter:this.changeCityState.bind(this)})),r=a.a.createElement(s.a,m({},this.props,{currentCity:this.state.city}));return a.a.createElement("div",{id:"cmpy-mgmt-panel"},n,r)}render(){return this.renderContent()}}},function(e,t,n){"use strict";n.d(t,"a",function(){return s});var r=n(0),a=n.n(r),i=n(77);function o(e){let t="cmpy-mgmt-header-tab";return e.current&&(t+=" current"),a.a.createElement("button",{className:t,onClick:e.onClick},e.text)}class s extends i.a{renderTab(e){return a.a.createElement(o,{current:e.current,key:e.key,onClick:e.onClick,text:e.text})}render(){const e={};for(const t of this.corp().divisions){const n=t.name,r=()=>{this.routing().routeTo(n),this.corp().rerender()};e[n]=r}return a.a.createElement("div",null,this.renderTab({current:this.routing().isOnOverviewPage(),key:"overview",onClick:()=>{this.routing().routeToOverviewPage(),this.corp().rerender()},text:this.corp().name}),this.corp().divisions.map(t=>this.renderTab({current:this.routing().isOn(t.name),key:t.name,onClick:e[t.name],text:t.name})),this.renderTab({onClick:this.eventHandler().createNewIndustryPopup.bind(this.eventHandler()),text:"Expand into new Industry"}))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(77),o=n(780),s=n(779);class l extends i.a{render(){return a.a.createElement("div",null,a.a.createElement(o.a,this.props),a.a.createElement(s.a,this.props))}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.clearSelector=void 0,t.clearSelector=function(e){for(let t=e.options.length-1;t>=0;t--)e.remove(t)}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"a",function(){return CorporationEventHandler});var _Routing__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(452),_Routing__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_Routing__WEBPACK_IMPORTED_MODULE_0__),_Corporation__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(43),_IndustryData__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(36),_IndustryData__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_IndustryData__WEBPACK_IMPORTED_MODULE_2__),_MaterialSizes__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(142),_MaterialSizes__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_MaterialSizes__WEBPACK_IMPORTED_MODULE_3__),_Product__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(210),_Product__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(_Product__WEBPACK_IMPORTED_MODULE_4__),_Player__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(1),_Faction_Factions__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(19),_Faction_Factions__WEBPACK_IMPORTED_MODULE_6___default=__webpack_require__.n(_Faction_Factions__WEBPACK_IMPORTED_MODULE_6__),_Locations_Cities__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(172),_Locations_Cities__WEBPACK_IMPORTED_MODULE_7___default=__webpack_require__.n(_Locations_Cities__WEBPACK_IMPORTED_MODULE_7__),_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(3),_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8___default=__webpack_require__.n(_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__),_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(12),_utils_helpers_getRandomInt__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(22),_utils_helpers_getRandomInt__WEBPACK_IMPORTED_MODULE_10___default=__webpack_require__.n(_utils_helpers_getRandomInt__WEBPACK_IMPORTED_MODULE_10__),_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(34),_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11___default=__webpack_require__.n(_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__),_utils_uiHelpers_clearSelector__WEBPACK_IMPORTED_MODULE_12__=__webpack_require__(782),_utils_uiHelpers_clearSelector__WEBPACK_IMPORTED_MODULE_12___default=__webpack_require__.n(_utils_uiHelpers_clearSelector__WEBPACK_IMPORTED_MODULE_12__),_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__=__webpack_require__(5),_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13___default=__webpack_require__.n(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__),_utils_uiHelpers_createOptionElement__WEBPACK_IMPORTED_MODULE_14__=__webpack_require__(79),_utils_uiHelpers_createOptionElement__WEBPACK_IMPORTED_MODULE_14___default=__webpack_require__.n(_utils_uiHelpers_createOptionElement__WEBPACK_IMPORTED_MODULE_14__),_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__=__webpack_require__(51),_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15___default=__webpack_require__.n(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__),_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__=__webpack_require__(74),_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16___default=__webpack_require__.n(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__),_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17__=__webpack_require__(180),_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17___default=__webpack_require__.n(_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17__),_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__=__webpack_require__(44),_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18___default=__webpack_require__.n(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__);class CorporationEventHandler{constructor(e,t){if(!(e instanceof _Corporation__WEBPACK_IMPORTED_MODULE_1__.c))throw new Error("CorporationEventHandler constructed without proper Corporation instance");if(!(t instanceof _Routing__WEBPACK_IMPORTED_MODULE_0__.CorporationRouting))throw new Error("CorporationEventHandler constructed without proper CorporationRouting instance");this.corp=e,this.routing=t}createBribeFactionsPopup(){const e="cmpy-mgmt-bribe-factions-popup",t=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"You can use Corporation funds or stock shares to bribe Faction Leaders in exchange for faction reputation"}),n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown",margin:"3px"});for(let e=0;e<_Player__WEBPACK_IMPORTED_MODULE_5__.Player.factions.length;++e){const t=_Player__WEBPACK_IMPORTED_MODULE_5__.Player.factions[e];_Faction_Factions__WEBPACK_IMPORTED_MODULE_6__.Factions[t].getInfo().offersWork()&&n.add(Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("option",{text:t,value:t}))}var r,a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p"),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",type:"number",placeholder:"Corporation funds",margin:"5px",inputListener:()=>{var e=null==i.value||""==i.value?0:parseFloat(i.value),t=this.corp.sharePrice,o=null==r.value||""==r.value?0:Math.round(parseFloat(r.value));if(isNaN(e)||isNaN(o)||e<0||o<0)a.innerText="ERROR: Invalid value(s) entered";else if(this.corp.funds.lt(e))a.innerText="ERROR: You do not have this much money to bribe with";else if(this.corp.stockShares>this.corp.numShares)a.innerText="ERROR: You do not have this many shares to bribe with";else{var s=(Number(e)+o*t)/_Corporation__WEBPACK_IMPORTED_MODULE_1__.b;a.innerText="You will gain "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(s,"0,0")+" reputation with "+n.options[n.selectedIndex].value+" with this bribe"}}});r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",type:"number",placeholder:"Stock Shares",margin:"5px",inputListener:()=>{var e=null==i.value||""==i.value?0:parseFloat(i.value),t=this.corp.sharePrice,o=null==r.value||""==r.value?0:Math.round(r.value);if(isNaN(e)||isNaN(o)||e<0||o<0)a.innerText="ERROR: Invalid value(s) entered";else if(this.corp.funds.lt(e))a.innerText="ERROR: You do not have this much money to bribe with";else if(this.corp.stockShares>this.corp.numShares)a.innerText="ERROR: You do not have this many shares to bribe with";else{var s=(e+o*t)/_Corporation__WEBPACK_IMPORTED_MODULE_1__.b;a.innerText="You will gain "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(s,"0,0")+" reputation with "+n.options[n.selectedIndex].value+" with this bribe"}}});var o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"a-link-button",innerText:"Bribe",display:"inline-block",clickListener:()=>{var t=null==i.value||""==i.value?0:parseFloat(i.value),a=this.corp.sharePrice,o=null==r.value||""==r.value?0:Math.round(parseFloat(r.value)),s=_Faction_Factions__WEBPACK_IMPORTED_MODULE_6__.Factions[n.options[n.selectedIndex].value];if(null==s)return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You must select a faction to bribe"),!1;if(isNaN(t)||isNaN(o)||t<0||o<0)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: Invalid value(s) entered");else if(this.corp.funds.lt(t))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You do not have this much money to bribe with");else{if(!(o>this.corp.numShares)){var l=(t+o*a)/_Corporation__WEBPACK_IMPORTED_MODULE_1__.b;return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You gained "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(l,"0,0")+" reputation with "+s.name+" by bribing them."),s.playerReputation+=l,this.corp.funds=this.corp.funds.minus(t),this.corp.numShares-=o,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),!1}Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You do not have this many shares to bribe with")}}});const s=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[t,n,a,i,r,o,s])}createBuybackSharesPopup(){const e="cmpy-mgmt-buyback-shares-popup",t=1.1*this.corp.sharePrice,n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Enter the number of outstanding shares you would like to buy back. These shares must be bought at a 10% premium. However, repurchasing shares from the market tends to lead to an increase in stock price.

To purchase these shares, you must use your own money (NOT your Corporation's funds).

The current buyback price of your company's stock is "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t,"$0.000a")+". Your company currently has "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatBigNumber(this.corp.issuedShares)+" outstanding stock shares"});var r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"number",placeholder:"Shares to buyback",margin:"5px",inputListener:()=>{var e=Math.round(a.value);isNaN(e)||e<=0?r.innerText="ERROR: Invalid value entered for number of shares to buyback":e>this.corp.issuedShares?r.innerText="There are not this many shares available to buy back. There are only "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatBigNumber(this.corp.issuedShares)+" outstanding shares.":r.innerText="Purchase "+e+" shares for a total of "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(e*t,"$0.000a")}}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"a-link-button",innerText:"Buy shares",display:"inline-block",clickListener:()=>{var t=Math.round(a.value);const n=1.1*this.corp.sharePrice;if(isNaN(t)||t<=0)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: Invalid value for number of shares");else if(t>this.corp.issuedShares)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: There are not this many oustanding shares to buy back");else if(t*n>_Player__WEBPACK_IMPORTED_MODULE_5__.Player.money)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You do not have enough money to purchase this many shares (you need "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t*n,"$0.000a")+")");else{if(this.corp.numShares+=t,isNaN(this.corp.issuedShares)){console.warn("Corporation issuedShares is NaN: "+this.corp.issuedShares),console.warn("Converting to number now");const e=parseInt(this.corp.issuedShares);isNaN(e)?this.corp.issuedShares=0:this.corp.issuedShares=e}this.corp.issuedShares-=t,_Player__WEBPACK_IMPORTED_MODULE_5__.Player.loseMoney(t*n),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),this.rerender()}return!1}}),o=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[n,r,a,i,o]),a.focus()}createDiscontinueProductPopup(e,t){const n="cmpy-mgmt-discontinue-product-popup",r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Are you sure you want to do this? Discontinuing a product removes it completely and permanently. You will no longer produce this product and all of its existing stock will be removed and left unsold"}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"popup-box-button",innerText:"Discontinue",clickListener:()=>(t.discontinueProduct(e),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n),this.rerender(),!1)}),i=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[r,i,a])}createExportMaterialPopup(mat){const corp=this.corp,popupId="cmpy-mgmt-export-popup",exportTxt=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Select the industry and city to export this material to, as well as how much of this material to export per second. You can set the export amount to 'MAX' to export all of the materials in this warehouse."}),citySelector=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown"}),industrySelector=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown",changeListener:()=>{const e=Object(_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17__.getSelectValue)(industrySelector);for(let t=0;t{const industryName=Object(_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17__.getSelectText)(industrySelector),cityName=citySelector.options[citySelector.selectedIndex].text,amt=exportAmount.value;let sanitizedAmt=amt.replace(/\s+/g,"");sanitizedAmt=sanitizedAmt.replace(/[^-()\d/*+.MAX]/g,"");let temp=sanitizedAmt.replace(/MAX/g,1);try{temp=eval(temp)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid expression entered for export amount: "+e),!1}if(!(null==temp||isNaN(temp)||temp<0)){var exportObj={ind:industryName,city:cityName,amt:sanitizedAmt};return mat.exp.push(exportObj),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(popupId),!1}Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid amount entered for export")}}),cancelBtn=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(popupId,{innerText:"Cancel"}),currExportsText=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Below is a list of all current exports of this material from this warehouse. Clicking on one of the exports below will REMOVE that export."}),currExports=[];for(var i=0;iCity: "+t.exp[e].city+"
Amount/s: "+t.exp[e].amt,clickListener:()=>{t.exp.splice(e,1),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(popupId),createExportMaterialPopup(t)}}))}(i,mat,currExports);Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(popupId,[exportTxt,industrySelector,citySelector,exportAmount,exportBtn,cancelBtn,currExportsText].concat(currExports))}createIssueDividendsPopup(){const e="cmpy-mgmt-issue-dividends-popup",t="Dividends are a distribution of a portion of the corporation's profits to the shareholders. This includes yourself, as well.

In order to issue dividends, simply allocate some percentage of your corporation's profits to dividends. This percentage must be an "+`integer between 0 and ${_Corporation__WEBPACK_IMPORTED_MODULE_1__.d}. (A percentage of 0 means no dividends will be `+"issued

Two important things to note:
* Issuing dividends will negatively affect your corporation's stock price
* Dividends are taxed. Taxes start at 50%, but can be decreased

Example: Assume your corporation makes $100m / sec in profit and you allocate 40% of that towards dividends. That means your corporation will gain $60m / sec in funds and the remaining $40m / sec will be paid as dividends. Since your corporation starts with 1 billion shares, every shareholder will be paid $0.04 per share per second before taxes.",n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:t});let r;const a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"Dividend %",type:"number",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&r.click()}});r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",display:"inline-block",innerText:"Allocate Dividend Percentage",clickListener:()=>{const t=Math.round(parseInt(a.value));return isNaN(t)||t<0||t>_Corporation__WEBPACK_IMPORTED_MODULE_1__.d?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)(`Invalid value. Must be an integer between 0 and ${_Corporation__WEBPACK_IMPORTED_MODULE_1__.d}`):(this.corp.dividendPercentage=t,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),this.rerender(),!1)}});const i=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[n,a,r,i]),a.focus()}createIssueNewSharesPopup(){const e="cmpy-mgmt-issue-new-shares-popup",t=Math.round(.2*this.corp.totalShares),n=t-t%1e6,r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"You can issue new equity shares (i.e. stocks) in order to raise capital for your corporation.

"+` * You can issue at most ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(n,"0.000a")} new shares
`+" * New shares are sold at a 10% discount
 * You can only issue new shares once every 12 hours
 * Issuing new shares causes dilution, resulting in a decrease in stock price and lower dividends per share
 * Number of new shares issued must be a multiple of 10 million

When you choose to issue new equity, private shareholders have first priority for up to 50% of the new shares. If they choose to exercise this option, these newly issued shares become private, restricted shares, which means you cannot buy them back."});let a,i;const o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{display:"block"});i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"# New Shares",type:"number",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER?a.click():function(e){const t=Math.round(.9*e.sharePrice);let r=parseInt(i.value);isNaN(r)?o.innerText="Invalid input":(r/=1e7,r=1e7*Math.round(r),o.innerText=r<1e7?"Must issue at least 10 million new shares":r>n?"You cannot issue that many shares":`Issue ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(r,"0.000a")} new shares `+`for ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(r*t)}?`)}(this.corp)}}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",display:"inline-block",innerText:"Issue New Shares",clickListener:()=>{const t=Math.round(.9*this.corp.sharePrice);let r=parseInt(i.value);if(isNaN(r))return void Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid input for number of new shares");if((r=1e7*Math.round(r/1e7))<1e7||r>n)return void Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid input for number of new shares");const a=r*t;this.corp.issueNewSharesCooldown=_Corporation__WEBPACK_IMPORTED_MODULE_1__.f,this.corp.totalShares+=r;let o=Object(_utils_helpers_getRandomInt__WEBPACK_IMPORTED_MODULE_10__.getRandomInt)(0,Math.round(r/2));return o=1e6*Math.round(o/1e6),this.corp.issuedShares+=r-o,this.corp.funds=this.corp.funds.plus(a),this.corp.immediatelyUpdateSharePrice(),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)(`Issued ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(r,"0.000a")} and raised `+`${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(a)}. ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(o,"0.000a")} `+"of these shares were bought by private investors.

"+`Stock price decreased to ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(this.corp.sharePrice)}`),this.rerender(),!1}});const s=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[r,o,i,a,s]),i.focus()}createLimitProductProdutionPopup(e,t){const n="cmpy-mgmt-limit-product-production-popup",r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Enter a limit to the amount of this product you would like to product per second. Leave the box empty to set no limit."});let a;const i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"Limit",type:"number",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&a.click()}});a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",display:"inline-block",innerText:"Limit production",margin:"5px",clickListener:()=>{if(""===i.value)return e.prdman[t][0]=!1,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n),!1;var r=parseFloat(i.value);return isNaN(r)?(Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value entered"),!1):(r<0?e.prdman[t][0]=!1:(e.prdman[t][0]=!0,e.prdman[t][1]=r),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n),this.rerender(),!1)}});const o=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{innerText:"Cancel"});o.style.margin="6px",Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[r,i,a,o]),i.focus()}createMakeProductPopup(e,t){if(t.hasMaximumNumberProducts())return;const n="cmpy-mgmt-create-product-popup",r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:e}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown",margin:"5px"});for(const e in t.offices)t.offices[e]instanceof _Corporation__WEBPACK_IMPORTED_MODULE_1__.i&&a.add(Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("option",{value:e,text:e}));let i="Product Name";t.type===_IndustryData__WEBPACK_IMPORTED_MODULE_2__.Industries.Food?i="Restaurant Name":t.type===_IndustryData__WEBPACK_IMPORTED_MODULE_2__.Industries.Healthcare?i="Hospital Name":t.type===_IndustryData__WEBPACK_IMPORTED_MODULE_2__.Industries.RealEstate&&(i="Property Name");var o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",margin:"5px",placeholder:i}),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("br"),l=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",margin:"5px",placeholder:"Design investment",type:"number"});let c;var u=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",margin:"5px",placeholder:"Marketing investment",type:"number",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&c.click()}});c=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Develop Product",clickListener:()=>{(null==l.value||l.value<0)&&(l.value=0),(null==u.value||u.value<0)&&(u.value=0);var e=parseFloat(l.value),r=parseFloat(u.value);if(null==o.value||""===o.value)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You must specify a name for your product!");else if(isNaN(e))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value for design investment");else if(isNaN(r))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value for marketing investment");else if(this.corp.funds.lt(e+r))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to make this large of an investment");else{const i=new _Product__WEBPACK_IMPORTED_MODULE_4__.Product({name:o.value.replace(/[<>]/g,""),createCity:a.options[a.selectedIndex].value,designCost:e,advCost:r});if(t.products[i.name]instanceof _Product__WEBPACK_IMPORTED_MODULE_4__.Product)return void Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You already have a product with this name!");this.corp.funds=this.corp.funds.minus(e+r),t.products[i.name]=i,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n)}return this.rerender(),!1}});const m=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{class:"std-button",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[r,a,o,s,l,u,c,m]),o.focus()}createMaterialMarketTaPopup(e,t){const n="cmpy-mgmt-marketta-popup",r=e.getMarkupLimit(),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Market-TA.I
The maximum sale price you can mark this up to is "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(e.bCost+r)+". This means that if you set the sale price higher than this, you will begin to experience a loss in number of sales"}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("div",{display:"block"}),o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{color:"white",for:"cmpy-mgmt-marketa1-checkbox",innerText:"Use Market-TA.I for Auto-Sale Price",tooltip:"If this is enabled, then this Material will automatically be sold at the price identified by Market-TA.I (i.e. the price shown above)"}),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{checked:e.marketTa1,id:"cmpy-mgmt-marketa1-checkbox",margin:"3px",type:"checkbox",changeListener:t=>{e.marketTa1=t.target.checked}});i.appendChild(o),i.appendChild(s);const l=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{class:"std-button",display:"block",innerText:"Close"});if(t.hasResearch("Market-TA.II")){let t;const o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p"),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{marginTop:"4px",onkeyup:e=>{e.preventDefault(),t()},type:"number",value:e.bCost});(t=function(){const t=parseFloat(s.value);let n=1;t>e.bCost?t-e.bCost>r&&(n=Math.pow(r/(t-e.bCost),2)):t{e.marketTa2=t.target.checked}});u.appendChild(m),u.appendChild(p);const h=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Note that Market-TA.II overrides Market-TA.I. This means that if both are enabled, then Market-TA.II will take effect, not Market-TA.I"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[a,i,o,s,u,h,l])}else Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[a,i,l])}createNewCityPopup(e,t){const n="cmpy-mgmt-expand-city-popup",r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Would you like to expand into a new city by opening an office? This would cost "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(_Corporation__WEBPACK_IMPORTED_MODULE_1__.g,"$0.000a")}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown",margin:"5px"});for(const t in e.offices)e.offices[t]instanceof _Corporation__WEBPACK_IMPORTED_MODULE_1__.i||a.add(Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("option",{text:t,value:t}));const i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",display:"inline-block",innerText:"Confirm",clickListener:()=>{if(a.length<=0)return!1;let r=a.options[a.selectedIndex].value;return this.corp.funds.lt(_Corporation__WEBPACK_IMPORTED_MODULE_1__.g)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to open a new office!"):(this.corp.funds=this.corp.funds.minus(_Corporation__WEBPACK_IMPORTED_MODULE_1__.g),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Opened a new office in "+r+"!"),e.offices[r]=new _Corporation__WEBPACK_IMPORTED_MODULE_1__.i({loc:r,size:_Corporation__WEBPACK_IMPORTED_MODULE_1__.h})),t(r),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n),this.rerender(),!1}}),o=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{class:"std-button",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[r,a,i,o])}createNewIndustryPopup(){const e="cmpy-mgmt-expand-industry-popup";if(null!=document.getElementById(e))return;var t,n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Create a new division to expand into a new industry:"}),r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown"}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"text",id:"cmpy-mgmt-expand-industry-name-input",class:"text-input",display:"block",maxLength:30,pattern:"[a-zA-Z0-9-_]",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&t.click()}}),o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{for:"cmpy-mgmt-expand-industry-name-input",innerText:"Division name: "});t=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("span",{class:"popup-box-button",innerText:"Create Division",clickListener:()=>{const e=r.options[r.selectedIndex].value,t=i.value;for(let e=0;e
",r.addEventListener("change",function(){var e=r.options[r.selectedIndex].value;a.innerHTML=_IndustryData__WEBPACK_IMPORTED_MODULE_2__.IndustryDescriptions[e]+"

"});const m=[];return m.push(n),m.push(r),m.push(a),m.push(o),m.push(i),m.push(s),m.push(t),Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,m),i.focus(),!1}createProductMarketTaPopup(e,t){const n="cmpy-mgmt-marketta-popup",r=e.rat/e.mku,a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Market-TA.I
The maximum sale price you can mark this up to is "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(e.pCost+r)+". This means that if you set the sale price higher than this, you will begin to experience a loss in number of sales"}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("div",{display:"block"}),o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{color:"white",for:"cmpy-mgmt-marketa1-checkbox",innerText:"Use Market-TA.I for Auto-Sale Price",tooltip:"If this is enabled, then this Product will automatically be sold at the price identified by Market-TA.I (i.e. the price shown above)"}),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{checked:e.marketTa1,id:"cmpy-mgmt-marketa1-checkbox",margin:"3px",type:"checkbox",changeListener:t=>{e.marketTa1=t.target.checked}});i.appendChild(o),i.appendChild(s);const l=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{class:"std-button",display:"block",innerText:"Close"});if(t.hasResearch("Market-TA.II")){let t;const o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p"),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{marginTop:"4px",onkeyup:e=>{e.preventDefault(),t()},type:"number",value:e.pCost});(t=function(){const t=parseFloat(s.value);let n=1;t>e.pCost&&t-e.pCost>r&&(n=r/(t-e.pCost)),o.innerHTML="
Market-TA.II
"+`If you sell at ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(t)}, `+`then you will sell ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(n,"0.00000")}x as much compared `+"to if you sold at market price."})();const c="cmpy-mgmt-marketa2-checkbox",u=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("div",{display:"block"}),m=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{color:"white",for:c,innerText:"Use Market-TA.II for Auto-Sale Price",tooltip:"If this is enabled, then this Product will automatically be sold at the optimal price such that the amount sold matches the amount produced. (i.e. the highest possible price, while still ensuring that all produced materials will be sold)"}),p=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{checked:e.marketTa2,id:c,margin:"3px",type:"checkbox",changeListener:t=>{e.marketTa2=t.target.checked}});u.appendChild(m),u.appendChild(p);const h=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Note that Market-TA.II overrides Market-TA.I. This means that if both are enabled, then Market-TA.II will take effect, not Market-TA.I"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[a,i,o,s,u,h,l])}else Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[a,i,l])}createPurchaseMaterialPopup(e,t,n){const r=this.corp,a="cmpy-mgmt-material-purchase-popup",i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Enter the amount of "+e.name+" you would like to purchase per second. This material's cost changes constantly"});let o,s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"Purchase amount",type:"number",value:e.buy?e.buy:null,onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&o.click()}});o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{innerText:"Confirm",class:"std-button",clickListener:()=>{if(!isNaN(s.value))return e.buy=parseFloat(s.value),isNaN(e.buy)&&(e.buy=0),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(a),this.rerender(),!1;Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid amount")}});const l=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{innerText:"Clear Purchase",class:"std-button",clickListener:()=>(e.buy=0,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(a),this.rerender(),!1)}),c=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(a,{class:"std-button",innerText:"Cancel"}),u=[i,s,o,l,c];if(t.hasResearch("Bulk Purchasing")){const t=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Enter the amount of "+e.name+" you would like to bulk purchase. This purchases the specified amount instantly (all at once)."});let i,o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p");const s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"Bulk Purchase amount",type:"number",onkeyup:t=>{t.preventDefault(),function(t){const r=parseFloat(t),a=r*e.bCost,i=_MaterialSizes__WEBPACK_IMPORTED_MODULE_3__.MaterialSizes[e.name];r*i>(n.size-n.sizeUsed)/i?o.innerText="Not enough warehouse space to purchase this amount":isNaN(a)?o.innerText="Invalid put for Bulk Purchase amount":o.innerText=`Purchasing ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(r,"0,0.00")} of `+`${e.name} will cost ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(a)}`}(t.target.value),t.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&i.click()}});i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Confirm Bulk Purchase",clickListener:()=>{const t=parseFloat(s.value),i=_MaterialSizes__WEBPACK_IMPORTED_MODULE_3__.MaterialSizes[e.name];if(t*i>(n.size-n.sizeUsed)/i)return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You do not have enough warehouse size to fit this purchase"),!1;if(!isNaN(t)){const n=t*e.bCost;return r.funds.gt(n)?(r.funds=r.funds.minus(n),e.qty+=t,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(a),!1):(Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You cannot afford this purchase."),!1)}Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid input amount")}}),u.push(t),u.push(o),u.push(s),u.push(i)}Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(a,u),s.focus()}createSellMaterialPopup(mat){const sellPopupId="cmpy-mgmt-material-sell-popup",txt=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Enter the maximum amount of "+mat.name+" you would like to sell per second, as well as the price at which you would like to sell at.

If the sell amount is set to 0, then the material will not be sold. If the sell price if set to 0, then the material will be discarded

Setting the sell amount to 'MAX' will result in you always selling the maximum possible amount of the material.

When setting the sell amount, you can use the 'PROD' variable to designate a dynamically changing amount that depends on your production. For example, if you set the sell amount to 'PROD-5' then you will always sell 5 less of the material than you produce.

When setting the sell price, you can use the 'MP' variable to designate a dynamically changing price that depends on the market price. For example, if you set the sell price to 'MP+10' then it will always be sold at $10 above the market price."}),br=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("br");let confirmBtn;const inputQty=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"text",marginTop:"4px",value:mat.sllman[1]?mat.sllman[1]:null,placeholder:"Sell amount",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&confirmBtn.click()}});let inputButtonInitValue=mat.sCost?mat.sCost:null;mat.marketTa2?inputButtonInitValue+=" (Market-TA.II)":mat.marketTa1&&(inputButtonInitValue+=" (Market-TA.I)");const inputPx=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"text",marginTop:"4px",value:inputButtonInitValue,placeholder:"Sell price",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&confirmBtn.click()}});confirmBtn=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Confirm",clickListener:()=>{let cost=inputPx.value.replace(/\s+/g,"");cost=cost.replace(/[^-()\d/*+.MP]/g,"");let temp=cost.replace(/MP/g,mat.bCost);try{temp=eval(temp)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field: "+e),!1}if(null==temp||isNaN(temp))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field"),!1;if(cost.includes("MP")?mat.sCost=cost:mat.sCost=temp,inputQty.value.includes("MAX")||inputQty.value.includes("PROD")){let qty=inputQty.value.replace(/\s+/g,"");qty=qty.replace(/[^-()\d/*+.MAXPROD]/g,"");let tempQty=qty.replace(/MAX/g,1);tempQty=tempQty.replace(/PROD/g,1);try{tempQty=eval(tempQty)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field: "+e),!1}if(null==tempQty||isNaN(tempQty))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field"),!1;mat.sllman[0]=!0,mat.sllman[1]=qty}else{if(isNaN(inputQty.value))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value for sell quantity field! Must be numeric or 'MAX'"),!1;var qty=parseFloat(inputQty.value);isNaN(qty)&&(qty=0),0===qty?(mat.sllman[0]=!1,mat.sllman[1]=0):(mat.sllman[0]=!0,mat.sllman[1]=qty)}return Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(sellPopupId),this.rerender(),!1}});const cancelBtn=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(sellPopupId,{class:"std-button",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(sellPopupId,[txt,br,inputQty,inputPx,confirmBtn,cancelBtn]),inputQty.focus()}createSellProductPopup(product,city){const popupId="cmpy-mgmt-sell-product-popup",txt=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Enter the maximum amount of "+product.name+" you would like to sell per second, as well as the price at which you would like to sell it at.

If the sell amount is set to 0, then the product will not be sold. If the sell price is set to 0, then the product will be discarded.

Setting the sell amount to 'MAX' will result in you always selling the maximum possible amount of the material.

When setting the sell amount, you can use the 'PROD' variable to designate a dynamically changing amount that depends on your production. For example, if you set the sell amount to 'PROD-1' then you will always sell 1 less of the material than you produce.

When setting the sell price, you can use the 'MP' variable to set a dynamically changing price that depends on the Product's estimated market price. For example, if you set it to 'MP*5' then it will always be sold at five times the estimated market price."});let confirmBtn;const inputQty=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px 0px 5px 0px",placeholder:"Sell amount",type:"text",value:product.sllman[city][1]?product.sllman[city][1]:null,onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&confirmBtn.click()}});let inputButtonInitValue=product.sCost?product.sCost:null;product.marketTa2?inputButtonInitValue+=" (Market-TA.II)":product.marketTa1&&(inputButtonInitValue+=" (Market-TA.I)");const inputPx=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px 0px 5px 0px",placeholder:"Sell price",type:"text",value:inputButtonInitValue,onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&confirmBtn.click()}}),checkboxDiv=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("div",{border:"1px solid white",display:"inline-block"}),checkboxLabel=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{for:popupId+"-checkbox",innerText:"Use same 'Sell Amount' for all cities"}),checkbox=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{checked:!0,id:popupId+"-checkbox",margin:"2px",type:"checkbox"});checkboxDiv.appendChild(checkboxLabel),checkboxDiv.appendChild(checkbox),confirmBtn=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Confirm",clickListener:()=>{if(inputPx.value.includes("MP")){var price=inputPx.value.replace(/\s+/g,"");price=price.replace(/[^-()\d/*+.MP]/g,"");var temp=price.replace(/MP/g,1);try{temp=eval(temp)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell quantity field: "+e),!1}if(null==temp||isNaN(temp))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell quantity field."),!1;product.sCost=price}else{var cost=parseFloat(inputPx.value);if(isNaN(cost))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value for sell price field"),!1;product.sCost=cost}const cities=Object.keys(_Locations_Cities__WEBPACK_IMPORTED_MODULE_7__.Cities);if(inputQty.value.includes("MAX")||inputQty.value.includes("PROD")){var qty=inputQty.value.replace(/\s+/g,"");qty=qty.replace(/[^-()\d/*+.MAXPROD]/g,"");var temp=qty.replace(/MAX/g,1);temp=temp.replace(/PROD/g,1);try{temp=eval(temp)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field: "+e),!1}if(null==temp||isNaN(temp))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field"),!1;if(checkbox.checked)for(let e=0;e
Selling your shares will cause your corporation's stock price to fall due to dilution. Furthermore, selling a large number of shares all at once will have an immediate effect in reducing your stock price.

The current price of your company's stock is "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t,"$0.000a")}),r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p"),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",type:"number",placeholder:"Shares to sell",margin:"5px",inputListener:()=>{var e=Math.round(a.value);if(isNaN(e)||e<=0)r.innerText="ERROR: Invalid value entered for number of shares to sell";else if(e>this.corp.numShares)r.innerText="You don't have this many shares to sell!";else{const t=this.corp.calculateShareSale(e)[0];r.innerText="Sell "+e+" shares for a total of "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t,"$0.000a")}}}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"a-link-button",innerText:"Sell shares",display:"inline-block",clickListener:()=>{var t=Math.round(a.value);if(isNaN(t)||t<=0)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: Invalid value for number of shares");else{if(!(t>this.corp.numShares)){const r=this.corp.calculateShareSale(t),a=r[0],i=r[1],o=r[2];if(this.corp.numShares-=t,isNaN(this.corp.issuedShares)){console.error(`Corporation issuedShares is NaN: ${this.corp.issuedShares}`);var n=parseInt(this.corp.issuedShares);isNaN(n)?this.corp.issuedShares=0:this.corp.issuedShares=n}return this.corp.issuedShares+=t,this.corp.sharePrice=i,this.corp.shareSalesUntilPriceUpdate=o,this.corp.shareSaleCooldown=_Corporation__WEBPACK_IMPORTED_MODULE_1__.k,_Player__WEBPACK_IMPORTED_MODULE_5__.Player.gainMoney(a),_Player__WEBPACK_IMPORTED_MODULE_5__.Player.recordMoneySource(a,"corporation"),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)(`Sold ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(t,"0.000a")} shares for `+`${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(a,"$0.000a")}. `+`The corporation's stock price fell to ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(this.corp.sharePrice)} `+"as a result of dilution."),this.rerender(),!1}Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You don't have this many shares to sell")}}}),o=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[n,r,a,i,o]),a.focus()}createThrowOfficePartyPopup(e){const t="cmpy-mgmt-throw-office-party-popup",n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Enter the amount of money you would like to spend PER EMPLOYEE on this office party"}),r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Throwing this party will cost a total of $0"});let a;const i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"number",margin:"5px",placeholder:"$ / employee",inputListener:()=>{if(isNaN(i.value)||i.value<0)r.innerText="Invalid value entered!";else{const t=i.value*e.employees.length;r.innerText="Throwing this party will cost a total of "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t,"$0.000a")}},onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&a.click()}});a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Throw Party",clickListener:()=>{if(isNaN(i.value)||i.value<0)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value entered");else{var n=i.value*e.employees.length;if(this.corp.funds.lt(n))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to throw this.corp party!");else{var r;this.corp.funds=this.corp.funds.minus(n);for(let t=0;t=o);){let e=Math.pow(1.09,n+s);if(a+e>o)break;a+=e,++s}const l=_Corporation__WEBPACK_IMPORTED_MODULE_1__.g*a,c=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Increase the size of your office space to fit additional employees!"}),u=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Upgrade size: "}),m=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:this.corp.funds.lt(r)?"a-link-button-inactive":"a-link-button",display:"inline-block",margin:"4px",innerText:"by 3",tooltip:_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(r,"$0.000a"),clickListener:()=>(this.corp.funds.lt(r)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to purchase this upgrade!"):(e.size+=_Corporation__WEBPACK_IMPORTED_MODULE_1__.h,this.corp.funds=this.corp.funds.minus(r),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Office space increased! It can now hold "+e.size+" employees"),this.rerender()),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(t),!1)}),p=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:this.corp.funds.lt(i)?"a-link-button-inactive":"a-link-button",display:"inline-block",margin:"4px",innerText:"by 15",tooltip:_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(i,"$0.000a"),clickListener:()=>(this.corp.funds.lt(i)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to purchase this upgrade!"):(e.size+=5*_Corporation__WEBPACK_IMPORTED_MODULE_1__.h,this.corp.funds=this.corp.funds.minus(i),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Office space increased! It can now hold "+e.size+" employees"),this.rerender()),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(t),!1)}),h=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:this.corp.funds.lt(l)?"a-link-button-inactive":"a-link-button",display:"inline-block",margin:"4px",innerText:"by MAX ("+s*_Corporation__WEBPACK_IMPORTED_MODULE_1__.h+")",tooltip:_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(l,"$0.000a"),clickListener:()=>(this.corp.funds.lt(l)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to purchase this upgrade!"):(e.size+=_Corporation__WEBPACK_IMPORTED_MODULE_1__.h*s,this.corp.funds=this.corp.funds.minus(l),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Office space increased! It can now hold "+e.size+" employees"),this.rerender()),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(t),!1)}),d=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(t,{innerText:"Cancel"});d.style.margin="4px",Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(t,[c,u,m,p,h,d])}purchaseWarehouse(e,t){const n=this.corp;n.funds.lt(_Corporation__WEBPACK_IMPORTED_MODULE_1__.m)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You do not have enough funds to do this!"):(e.warehouses[t]=new _Corporation__WEBPACK_IMPORTED_MODULE_1__.l({corp:n,industry:e,loc:t,size:_Corporation__WEBPACK_IMPORTED_MODULE_1__.n}),n.funds=n.funds.minus(_Corporation__WEBPACK_IMPORTED_MODULE_1__.m),this.rerender())}rerender(){this.corp.rerender()}}},function(e,t,n){"use strict";function r(e,t,n){return(t<=0||t>=1)&&console.warn(`Exponential factor is ${t}. This is not an intended value for it`),n<1&&console.warn(`Linear factor is ${n}. This is not an intended value for it`),Math.pow(e,t)+e/n}Object.defineProperty(t,"__esModule",{value:!0}),t.EffectWithFactors=t.calculateEffectWithFactors=void 0,t.calculateEffectWithFactors=r;t.EffectWithFactors=class{constructor(e,t){this.expFac=e,this.linearFac=t}calculate(e){return r(e,this.expFac,this.linearFac)}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AugmentationsRoot=void 0;const o=i(n(0)),s=n(1218),l=n(913),c=n(912),u=n(1),m=n(71),p=n(161);t.AugmentationsRoot=class extends o.Component{constructor(e){super(e),this.state={rerender:!1},this.export=this.export.bind(this)}export(){this.props.exportGameFn(),this.setState({rerender:!this.state.rerender})}render(){return o.createElement("div",{id:"augmentations-content"},o.createElement("h1",null,"Purchased Augmentations"),o.createElement("p",null,"Below is a list of all Augmentations you have purchased but not yet installed. Click the button below to install them."),o.createElement("p",null,"WARNING: Installing your Augmentations resets most of your progress, including:"),o.createElement("br",null),o.createElement("p",null,"- Stats/Skill levels and Experience"),o.createElement("p",null,"- Money"),o.createElement("p",null,"- Scripts on every computer but your home computer"),o.createElement("p",null,"- Purchased servers"),o.createElement("p",null,"- Hacknet Nodes"),o.createElement("p",null,"- Faction/Company reputation"),o.createElement("p",null,"- Stocks"),o.createElement("br",null),o.createElement("p",null,"Installing Augmentations lets you start over with the perks and benefits granted by all of the Augmentations you have ever installed. Also, you will keep any scripts and RAM/Core upgrades on your home computer (but you will lose all programs besides NUKE.exe)"),o.createElement(m.StdButton,{onClick:this.props.installAugmentationsFn,text:"Install Augmentations",tooltip:"'I never asked for this'"}),o.createElement(m.StdButton,{addClasses:"flashing-button",onClick:this.export,text:`Backup Save ${p.canGetBonus()?"(+1 favor to all factions)":""}`,tooltip:"It's always a good idea to backup/export your save!"}),o.createElement(c.PurchasedAugmentations,null),o.createElement("h1",null,"Installed Augmentations"),o.createElement("p",null,`List of all Augmentations ${u.Player.sourceFiles.length>0?"and Source Files ":""} `+"that have been installed. You have gained the effects of these."),o.createElement(s.InstalledAugmentationsAndSourceFiles,null),o.createElement("br",null)," ",o.createElement("br",null),o.createElement(l.PlayerMultipliers,null))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.DialogBox=void 0;const o=i(n(0));t.DialogBox=function(e){return o.createElement("div",{className:"dialog-box-content text"},o.createElement("span",{className:"dialog-box-close-button "},"×"),e)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),a=n(174);!function(){function e(e){if(!(e.target&&e.target instanceof Element))return;"none"===window.getComputedStyle(e.target).display&&e.isTrusted&&r.Player.giveExploit(a.Exploit.Unclickable)}document.addEventListener("DOMContentLoaded",function t(){const n=document.getElementById("unclickable");null!=n?(n.addEventListener("click",e),document.removeEventListener("DOMContentLoaded",t)):console.error("Could not find the unclickable elem for the related exploit.")})}()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),a=n(174);setInterval(function(){"5.5e+1"!==55..toExponential()&&r.Player.giveExploit(a.Exploit.PrototypeTampering)},9e5)},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AccordionButton=void 0;const o=i(n(0));t.AccordionButton=function(e){const t=null!=e.tooltip&&""!==e.tooltip;let n="accordion-button";t&&(n+=" tooltip"),"string"==typeof e.addClasses&&(n+=` ${e.addClasses}`);const r={__html:e.tooltip?e.tooltip:""};return o.createElement("button",{className:n,id:e.id,onClick:e.onClick,style:e.style},e.text,t&&o.createElement("span",{className:"tooltiptext",dangerouslySetInnerHTML:r}))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.WorkerScriptAccordion=void 0;const o=i(n(0)),s=n(3),l=n(232),c=n(855),u=n(84),m=n(12),p=n(143),h=n(13),d=n(119),_=n(31);t.WorkerScriptAccordion=function(e){const t=e.workerScript.scriptRef,n=p.logBoxCreate.bind(null,t),r=u.killWorkerScript.bind(null,t,t.server),a=t.onlineMoneyMade/t.onlineRunningTime,i=t.onlineExpGained/t.onlineRunningTime,g=t.offlineMoneyMade/t.offlineRunningTime,y=t.offlineExpGained/t.offlineRunningTime;return o.createElement(l.Accordion,{headerClass:"active-scripts-script-header",headerContent:o.createElement(o.Fragment,null,e.workerScript.name),panelClass:"active-scripts-script-panel",panelContent:o.createElement(o.Fragment,null,o.createElement("pre",null,"Threads: ",s.numeralWrapper.formatThreads(e.workerScript.scriptRef.threads)),o.createElement("pre",null,"Args: ",d.arrayToString(e.workerScript.args)),o.createElement("pre",null,"Online Time: ",h.convertTimeMsToTimeElapsedString(1e3*t.onlineRunningTime)),o.createElement("pre",null,"Offline Time: ",h.convertTimeMsToTimeElapsedString(1e3*t.offlineRunningTime)),o.createElement("pre",null,"Total online production: ",_.Money(t.onlineMoneyMade)),o.createElement("pre",null,Array(26).join(" ")+s.numeralWrapper.formatExp(t.onlineExpGained)+" hacking exp"),o.createElement("pre",null,"Online production rate: ",_.Money(a)," / second"),o.createElement("pre",null,Array(25).join(" ")+s.numeralWrapper.formatExp(i)+" hacking exp / second"),o.createElement("pre",null,"Total offline production: ",_.Money(t.offlineMoneyMade)),o.createElement("pre",null,Array(27).join(" ")+s.numeralWrapper.formatExp(t.offlineExpGained)+" hacking exp"),o.createElement("pre",null,"Offline production rate: ",_.Money(g)," / second"),o.createElement("pre",null,Array(26).join(" ")+s.numeralWrapper.formatExp(y)+" hacking exp / second"),o.createElement(c.AccordionButton,{onClick:n,text:"Log"}),o.createElement(c.AccordionButton,{onClick:function(){r(),m.dialogBoxCreate("Killing script")},text:"Kill Script"}))})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ServerAccordion=void 0;const o=i(n(0)),s=n(856),l=n(232),c=n(160);t.ServerAccordion=function(e){const t=e.server,n=`${t.hostname}${" ".repeat(18)}`.slice(0,Math.max(t.hostname.length,18)),r={progress:t.ramUsed/t.maxRam,totalTicks:30},a=`${n} ${c.createProgressBarText(r)}`,i=e.workerScripts.map(e=>o.createElement(s.WorkerScriptAccordion,{key:`${e.name}_${e.args}`,workerScript:e}));return o.createElement(l.Accordion,{headerContent:o.createElement("pre",null,a),panelContent:o.createElement("ul",null,i)})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ServerAccordions=void 0;const o=i(n(0)),s=n(857),l=n(158),c=n(29),u="ActiveScriptsUI";t.ServerAccordions=class extends o.Component{constructor(e){super(e),this.serverToScriptMap={},this.state={rerenderFlag:!1},this.updateServerToScriptsMap(),this.rerender=this.rerender.bind(this)}componentDidMount(){l.WorkerScriptStartStopEventEmitter.addSubscriber({cb:this.rerender,id:u})}componentWillUnmount(){l.WorkerScriptStartStopEventEmitter.removeSubscriber(u)}updateServerToScriptsMap(){const e={};for(const t of this.props.workerScripts.values()){const n=c.getServer(t.serverIp);null!=n?(null==e[n.hostname]&&(e[n.hostname]={server:n,workerScripts:[]}),e[n.hostname].workerScripts.push(t)):console.warn(`WorkerScript has invalid IP address: ${t.serverIp}`)}this.serverToScriptMap=e}rerender(){this.updateServerToScriptsMap(),this.setState(e=>({rerenderFlag:!e.rerenderFlag}))}render(){const e=Object.keys(this.serverToScriptMap).map(e=>{const t=this.serverToScriptMap[e];return o.createElement(s.ServerAccordion,{key:e,server:t.server,workerScripts:t.workerScripts})});return o.createElement("ul",{className:"active-scripts-list",id:"active-scripts-list"},e)}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ScriptProduction=void 0;const o=i(n(0)),s=n(31);t.ScriptProduction=function(e){const t=e.p.scriptProdSinceLastAug/(e.p.playtimeSinceLastAug/1e3);let n=0;for(const t of e.workerScripts.values())n+=t.scriptRef.onlineMoneyMade/t.scriptRef.onlineRunningTime;return o.createElement("p",{id:"active-scripts-total-prod"},"Total online production of Active scripts: ",o.createElement("span",{className:"money-gold"},o.createElement("span",{id:"active-scripts-total-production-active"},s.Money(n))," / sec"),o.createElement("br",null),"Total online production since last Aug installation: ",o.createElement("span",{id:"active-scripts-total-prod-aug-total",className:"money-gold"},s.Money(e.p.scriptProdSinceLastAug))," (",o.createElement("span",{className:"money-gold"},o.createElement("span",{id:"active-scripts-total-prod-aug-avg",className:"money-gold"},s.Money(t))," / sec"),")")}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Resleeve=void 0;const r=n(681),a=n(15),i=n(24);class o extends r.Person{constructor(){super()}getCost(){const e=this.hacking_exp+this.strength_exp+this.defense_exp+this.dexterity_exp+this.agility_exp+this.charisma_exp;let t=0;for(let e=0;e=0;--e)t.augmentations[e].name!==o.AugmentationNames.NeuroFluxGovernor?t.augmentations.splice(e,1):a.Augmentations[o.AugmentationNames.NeuroFluxGovernor].owned=!0;for(let n=0;n=0;--e){const n=t.queuedAugmentations[e].name;t.augmentations.filter(e=>e.name!==o.AugmentationNames.NeuroFluxGovernor&&e.name===n).length>=1&&t.queuedAugmentations.splice(e,1)}return t.reapplyAllAugmentations(!0),t.reapplyAllSourceFiles(),!0},t.generateResleeves=function(){const e=[];for(let t=0;t<40;++t){const n=new r.Resleeve,i=5*t+1;n.hacking_exp=i*s.getRandomInt(1e3,5e3),n.strength_exp=i*s.getRandomInt(1e3,5e3),n.defense_exp=i*s.getRandomInt(1e3,5e3),n.dexterity_exp=i*s.getRandomInt(1e3,5e3),n.agility_exp=i*s.getRandomInt(1e3,5e3),n.charisma_exp=i*s.getRandomInt(1e3,5e3);const l=Math.max(2,Math.ceil((t+3)/2)),c=s.getRandomInt(l,l+2),u=Object.keys(a.Augmentations);for(let e=0;eo.createElement("tr",{key:t},e.map((e,t)=>{let n={};return 0!==t&&(n={textAlign:"right"}),o.createElement("td",{style:n,key:t},e)}))))))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SleeveFaq=void 0;const o=i(n(0));t.SleeveFaq=o.createElement(o.Fragment,null,o.createElement("strong",null,o.createElement("u",null,"How do Duplicate Sleeves work?")),o.createElement("br",null),"Duplicate Sleeves are essentially clones. You can use them to perform any work type action, such as working for a company/faction or committing a crime. Having sleeves perform these tasks earns you money, experience, and reputation.",o.createElement("br",null),o.createElement("br",null),"Sleeves are their own individuals, which means they each have their own experience and stats.",o.createElement("br",null),o.createElement("br",null),"When a sleeve earns experience, it earns experience for itself, the player's original 'consciousness', as well as all of the player's other sleeves.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"What is Synchronization (Sync)?")),o.createElement("br",null),"Synchronization is a measure of how aligned your consciousness is with that of your Duplicate Sleeves. It is a numerical value between 1 and 100, and it affects how much experience is earned when the sleeve is performing a task.",o.createElement("br",null),o.createElement("br",null),"Let N be the sleeve's synchronization. When the sleeve earns experience by performing a task, both the sleeve and the player's original host consciousness earn N% of the amount of experience normally earned by the task. All of the player's other sleeves earn ((N/100)^2 * 100)% of the experience.",o.createElement("br",null),o.createElement("br",null),"Synchronization can be increased by assigning sleeves to the 'Synchronize' task.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"What is Shock?")),o.createElement("br",null),"Sleeve shock is a measure of how much trauma the sleeve has due to being placed in a new body. It is a numerical value between 0 and 99, where 99 indicates full shock and 0 indicates no shock. Shock affects the amount of experience earned by the sleeve.",o.createElement("br",null),o.createElement("br",null),"Sleeve shock slowly decreases over time. You can further increase the rate at which it decreases by assigning sleeves to the 'Shock Recovery' task.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"Why can't I work for this company or faction?")),o.createElement("br",null),"Only one of your sleeves can work for a given company/faction a time. To clarify further, if you have two sleeves they can work for two different companies, but they cannot both work for the same company.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"Why did my Sleeve stop working?")),o.createElement("br",null),"Sleeves are subject to the same time restrictions as you. This means that they automatically stop working at a company after 8 hours, and stop working for a faction after 20 hours.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"How do I buy Augmentations for my Sleeves?")),o.createElement("br",null),"Your Sleeve needs to have a Shock of 0 in order for you to buy Augmentations for it.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"Why can't I buy the X Augmentation for my sleeve?")),o.createElement("br",null),"Certain Augmentations, like Bladeburner-specific ones and NeuroFlux Governor, are not available for sleeves.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"Do sleeves get reset when installing Augmentations or switching BitNodes?")),o.createElement("br",null),"Sleeves are reset when switching BitNodes, but not when installing Augmentations.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"What is Memory?")),o.createElement("br",null),"Sleeve memory dictates what a sleeve's synchronization will be when its reset by switching BitNodes. For example, if a sleeve has a memory of 25, then when you switch BitNodes its synchronization will initially be set to 25, rather than 1.",o.createElement("br",null),o.createElement("br",null),"Memory can only be increased by purchasing upgrades from The Covenant. It is a persistent stat, meaning it never gets resets back to 1. The maximum possible value for a sleeve's memory is 100.")},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createSleevePurchaseAugsPopup=void 0;const r=n(520),a=n(15),i=n(31),o=n(12),s=n(5),l=n(51),c=n(74),u=n(44),m=n(236);t.createSleevePurchaseAugsPopup=function e(t,n){const p=t.augmentations.map(e=>e.name),h=r.findSleevePurchasableAugs(t,n),d="purchase-sleeve-augs-popup",_=[c.createPopupCloseButton(d,{innerText:"Cancel"}),s.createElement("p",{display:"block",innerHTML:"Owned Augmentations:"})],g=s.createElement("div",{width:"70%"});for(const e of p){const t=a.Augmentations[e];if(null==t){console.warn(`Invalid Augmentation: ${e}`);continue}let n=t.info;"string"!=typeof n&&(n=m.renderToStaticMarkup(n)),g.appendChild(s.createElement("div",{class:"gang-owned-upgrade",innerText:e,tooltip:n}))}_.push(g);const y=s.createElement("p",{innerHTML:["You can purchase Augmentations for your Duplicate Sleeves. These Augmentations","have the same effect as they would for you. You can only purchase Augmentations","that you have unlocked through Factions.

","When purchasing an Augmentation for a Duplicate Sleeve, they are immediately","installed. This means that the Duplicate Sleeve will immediately lose all of","its stat experience."].join(" ")});_.push(y);for(const r of h){const a=s.createElement("div",{class:"cmpy-mgmt-upgrade-div"});let l=r.info;"string"!=typeof l&&(l=m.renderToStaticMarkup(l)),a.appendChild(s.createElement("p",{fontSize:"12px",innerHTML:[`

${r.name}


`,`Cost: ${m.renderToStaticMarkup(i.Money(r.startingCost))}

`,`${l}`].join(" "),padding:"2px",clickListener:()=>{t.tryBuyAugmentation(n,r)?(o.dialogBoxCreate(`Installed ${r.name} on Duplicate Sleeve!`,!1),u.removeElementById(d),e(t,n)):o.dialogBoxCreate(`You cannot afford ${r.name}`,!1)}})),_.push(a)}l.createPopup(d,_)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Milestones=void 0;const r=n(19),a=n(29);function i(e,t){const n=t.augmentations.slice().filter(e=>"NeuroFlux Governor"!==e);for(const t of n)if(!e.augmentations.some(e=>e.name==t))return!1;return!0}t.Milestones=[{title:"Gain root access on CSEC",fulfilled:()=>{const e=a.GetServerByHostname("CSEC");return!(!e||!e.hasOwnProperty("hasAdminRights"))&&e.hasAdminRights}},{title:"Install the backdoor on CSEC",fulfilled:()=>{const e=a.GetServerByHostname("CSEC");return!(!e||!e.hasOwnProperty("backdoorInstalled"))&&e.backdoorInstalled}},{title:"Join the faction hinted at in csec-test.msg",fulfilled:e=>e.factions.includes("CyberSec")},{title:"Install all the Augmentations from CSEC",fulfilled:e=>i(e,r.Factions.CyberSec)},{title:"Join the faction hinted at in nitesec-test.msg",fulfilled:e=>e.factions.includes("NiteSec")},{title:"Install all the Augmentations from NiteSec",fulfilled:e=>i(e,r.Factions.NiteSec)},{title:"Join the faction hinted at in j3.msg",fulfilled:e=>e.factions.includes("The Black Hand")},{title:"Install all the Augmentations from The Black Hand",fulfilled:e=>i(e,r.Factions["The Black Hand"])},{title:"Join the faction hinted at in 19dfj3l1nd.msg",fulfilled:e=>e.factions.includes("BitRunners")},{title:"Install all the Augmentations from BitRunners",fulfilled:e=>i(e,r.Factions.BitRunners)},{title:"Complete fl1ght.exe",fulfilled:e=>e.factions.includes("Daedalus")},{title:"Install the special Augmentation from Daedalus",fulfilled:e=>e.augmentations.some(e=>"The Red Pill"==e.name)},{title:"Install the final backdoor and free yourself.",fulfilled:()=>!1}]},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Root=void 0;const o=n(868),s=i(n(0));t.Root=function(e){const t=function(e,t){let n=-1;for(let r=0;r{if(r<=t+1)return s.createElement("ul",{key:r},s.createElement("p",null,"[",n.fulfilled(e.player)?"x":" ","] ",n.title))});return s.createElement(s.Fragment,null,s.createElement("h1",null,"Milestones"),s.createElement("p",null,"Milestones don't reward you for completing them. They are here to guide you if you're lost. They will reset when you install Augmentations."),s.createElement("br",null),s.createElement("h2",null,"Completing fl1ght.exe"),s.createElement("li",null,n))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CorruptableText=void 0;const o=i(n(0));t.CorruptableText=function(e){const[t,n]=o.useState(e.content);return o.useEffect(()=>{let e=5;const r=setInterval(()=>{if(--e>0)return;e=5*Math.random();const r=Math.random()*t.length,a=t.charAt(r);n(function(e,t,n){return e.substring(0,t)+n+e.substring(t+1)}(t,r,function(e){const t=e=>e[Math.floor(Math.random()*e.length)],n=["abcdefghijklmnopqrstuvwxyz","ABCDEFGHIJKLMNOPQRSTUVWXYZ","1234567890"," _","()[]{}<>"];for(const r of n)if(r.includes(e))return t(r);return t("!@#$%^&*()_+|\\';\"/.,?`~")}(a))),setTimeout(()=>{n(t)},50)},100);return()=>{clearInterval(r)}},[]),o.default.createElement("span",null,t)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SlotMachine=void 0;const o=i(n(0)),s=n(71),l=n(31),c=n(290),u=n(396),m=n(464),p=["D","C","$","?","♥","A","C","B","C","E","B","E","C","*","D","♥","B","A","A","A","C","A","D","B","E","?","D","*","@","♥","B","E","?"];function h(e,t){switch(e){case"$":return[20,200,1e3][t];case"@":return[8,80,400][t];case"♥":case"?":return[6,20,150][t];case"D":case"E":return[1,8,30][t];default:return[1,5,20][t]}}const d=[[[0,0],[0,1],[0,2],[0,3],[0,4]],[[1,0],[1,1],[1,2],[1,3],[1,4]],[[2,0],[2,1],[2,2],[2,3],[2,4]],[[2,0],[1,1],[0,2],[1,3],[2,4]],[[0,0],[1,1],[2,2],[1,3],[0,4]],[[0,0],[1,1],[1,2],[1,3],[0,4]],[[2,0],[1,1],[1,2],[1,3],[2,4]],[[1,0],[0,1],[0,2],[0,3],[1,4]],[[1,0],[2,1],[2,2],[2,3],[1,4]]],_=0,g=1e6;t.SlotMachine=class extends u.Game{constructor(e){super(e),this.interval=-1,this.rng=new c.WHRNG(this.props.p.totalPlaytime),this.state={index:[0,0,0,0,0],investment:1e3,locks:[0,0,0,0,0],canPlay:!0,status:"waiting"},this.play=this.play.bind(this),this.lock=this.lock.bind(this),this.unlock=this.unlock.bind(this),this.step=this.step.bind(this),this.checkWinnings=this.checkWinnings.bind(this),this.getTable=this.getTable.bind(this),this.updateInvestment=this.updateInvestment.bind(this)}componentDidMount(){this.interval=setInterval(this.step,50)}step(){let e=!1;const t=this.state.index.slice();for(const n in t)(t[n]!==this.state.locks[n]||e)&&(t[n]=(t[n]+1)%p.length,e=!0);this.setState({index:t}),e&&t.every((e,t)=>e===this.state.locks[t])&&this.checkWinnings()}componentWillUnmount(){clearInterval(this.interval)}getTable(){return[[p[(this.state.index[0]+p.length-1)%p.length],p[(this.state.index[1]+p.length-1)%p.length],p[(this.state.index[2]+p.length-1)%p.length],p[(this.state.index[3]+p.length-1)%p.length],p[(this.state.index[4]+p.length-1)%p.length]],[p[this.state.index[0]],p[this.state.index[1]],p[this.state.index[2]],p[this.state.index[3]],p[this.state.index[4]]],[p[(this.state.index[0]+1)%p.length],p[(this.state.index[1]+1)%p.length],p[(this.state.index[2]+1)%p.length],p[(this.state.index[3]+1)%p.length],p[(this.state.index[4]+1)%p.length]]]}play(){this.reachedLimit(this.props.p)||(this.setState({status:"playing"}),this.win(this.props.p,-this.state.investment),this.state.canPlay&&(this.unlock(),setTimeout(this.lock,2e3*this.rng.random()+1e3)))}lock(){this.setState({locks:[Math.floor(this.rng.random()*p.length),Math.floor(this.rng.random()*p.length),Math.floor(this.rng.random()*p.length),Math.floor(this.rng.random()*p.length),Math.floor(this.rng.random()*p.length)]})}checkWinnings(){const e=this.getTable(),t=function(t){const n=[];for(const r of t)n.push(e[r[0]][r[1]]);return n},n=function(e){let t=1;for(let n=1;n0?"gained":"lost"," ",l.Money(Math.abs(r))),canPlay:!0}),this.reachedLimit(this.props.p)}unlock(){this.setState({locks:[-1,-1,-1,-1,-1],canPlay:!1})}updateInvestment(e){let t=parseInt(e.currentTarget.value);isNaN(t)&&(t=_),t>g&&(t=g),t<_&&(t=_),this.setState({investment:t})}render(){const e=this.getTable();return o.createElement(o.Fragment,null,o.createElement("pre",null,"+———————————————————————+",o.createElement("br",null),"| | ",e[0][0]," | ",e[0][1]," | ",e[0][2]," | ",e[0][3]," | ",e[0][4]," | |",o.createElement("br",null),"| | | | | | | |",o.createElement("br",null),"| | ",p[this.state.index[0]]," | ",p[this.state.index[1]]," | ",p[this.state.index[2]]," | ",p[this.state.index[3]]," | ",p[this.state.index[4]]," | |",o.createElement("br",null),"| | | | | | | |",o.createElement("br",null),"| | ",p[(this.state.index[0]+1)%p.length]," | ",p[(this.state.index[1]+1)%p.length]," | ",p[(this.state.index[2]+1)%p.length]," | ",p[(this.state.index[3]+1)%p.length]," | ",p[(this.state.index[4]+1)%p.length]," | |",o.createElement("br",null),"+———————————————————————+",o.createElement("br",null)),o.createElement("input",{type:"number",className:"text-input",onChange:this.updateInvestment,placeholder:"Amount to play",value:this.state.investment,disabled:!this.state.canPlay}),o.createElement(s.StdButton,{onClick:m.trusted(this.play),text:"Spin!",disabled:!this.state.canPlay}),o.createElement("h1",null,this.state.status),o.createElement("h2",null,"Pay lines"),o.createElement("pre",null,"----- ····· ····· ",o.createElement("br",null),"····· ----- ····· ",o.createElement("br",null),"····· ····· ----- ",o.createElement("br",null)),o.createElement("br",null),o.createElement("pre",null,"··^·· \\···/ \\···/",o.createElement("br",null),"·/·\\· ·\\·/· ·---·",o.createElement("br",null),"/···\\ ··v·· ·····",o.createElement("br",null)),o.createElement("br",null),o.createElement("pre",null,"····· ·---· ·····",o.createElement("br",null),"·---· /···\\ \\···/",o.createElement("br",null),"/···\\ ····· ·---·",o.createElement("br",null)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Roulette=void 0;const o=i(n(0)),s=n(71),l=n(31),c=n(396),u=n(290),m=n(464),p=0,h=1e7;const d=[1,3,5,7,9,12,14,16,18,19,21,23,25,27,30,32,34,36],_={Red:{match:e=>0!==e&&d.includes(e),payout:1},Black:{match:e=>!d.includes(e),payout:1},Odd:{match:e=>0!==e&&e%2==1,payout:1},Even:{match:e=>0!==e&&e%2==0,payout:1},High:{match:e=>0!==e&&e>18,payout:1},Low:{match:e=>0!==e&&e<19,payout:1},Third1:{match:e=>0!==e&&e<=12,payout:2},Third2:{match:e=>0!==e&&(e>=13&&e<=24),payout:2},Third3:{match:e=>0!==e&&e>=25,payout:2}};function g(e){return{match:t=>e===t,payout:36}}t.Roulette=class extends c.Game{constructor(e){super(e),this.interval=-1,this.rng=new u.WHRNG((new Date).getTime()),this.state={investment:1e3,canPlay:!0,status:"waiting",n:0,lock:!0,strategy:{payout:0,match:()=>!1}},this.step=this.step.bind(this),this.currentNumber=this.currentNumber.bind(this),this.updateInvestment=this.updateInvestment.bind(this)}componentDidMount(){this.interval=setInterval(this.step,50)}step(){this.state.lock||this.setState({n:Math.floor(37*Math.random())})}componentWillUnmount(){clearInterval(this.interval)}updateInvestment(e){let t=parseInt(e.currentTarget.value);isNaN(t)&&(t=p),t>h&&(t=h),t{let e=Math.floor(37*this.rng.random()),t=o.createElement(o.Fragment,null),n=0,r=this.state.strategy.match(e);if(r&&Math.random()>.9)for(r=!1;this.state.strategy.match(e);)e++;r?(n=this.state.investment*this.state.strategy.payout,t=o.createElement(o.Fragment,null,"won ",l.Money(n))):(n=-this.state.investment,t=o.createElement(o.Fragment,null,"lost ",l.Money(-n))),this.win(this.props.p,n),this.setState({canPlay:!0,lock:!0,status:t,n:e}),this.reachedLimit(this.props.p)},1600))}render(){return o.createElement(o.Fragment,null,o.createElement("h1",null,this.currentNumber()),o.createElement("input",{type:"number",className:"text-input",onChange:this.updateInvestment,placeholder:"Amount to play",value:this.state.investment,disabled:!this.state.canPlay}),o.createElement("h1",null,this.state.status),o.createElement("table",null,o.createElement("tbody",null,o.createElement("tr",null,o.createElement("td",null,o.createElement(s.StdButton,{text:"3",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(3)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"6",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(6)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"9",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(9)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"12",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(12)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"15",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(15)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"18",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(18)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"21",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(21)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"24",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(24)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"27",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(27)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"30",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(30)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"33",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(33)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"36",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(36)))}))),o.createElement("tr",null,o.createElement("td",null,o.createElement(s.StdButton,{text:"2",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(2)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"5",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(5)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"8",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(8)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"11",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(11)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"14",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(14)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"17",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(17)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"20",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(20)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"23",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(23)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"26",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(26)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"29",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(29)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"32",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(32)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"35",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(35)))}))),o.createElement("tr",null,o.createElement("td",null,o.createElement(s.StdButton,{text:"1",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(1)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"4",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(4)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"7",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(7)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"10",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(10)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"13",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(13)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"16",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(16)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"19",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(19)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"22",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(22)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"25",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(25)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"28",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(28)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"31",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(31)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"34",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(34)))}))),o.createElement("tr",null,o.createElement("td",{colSpan:4},o.createElement(s.StdButton,{text:"1 to 12",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Third1))})),o.createElement("td",{colSpan:4},o.createElement(s.StdButton,{text:"13 to 24",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Third2))})),o.createElement("td",{colSpan:4},o.createElement(s.StdButton,{text:"25 to 36",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Third3))}))),o.createElement("tr",null,o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Red",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Red))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Black",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Black))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Odd",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Odd))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Even",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Even))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"High",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.High))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Low",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Low))}))),o.createElement("tr",null,o.createElement("td",null,o.createElement(s.StdButton,{text:"0",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(0)))}))))))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CoinFlip=void 0;const o=i(n(0)),s=n(71),l=n(290),c=n(396),u=n(464),m=0,p=1e4;t.CoinFlip=class extends c.Game{constructor(e){super(e),this.state={investment:1e3,result:o.createElement("span",null," "),status:"",playLock:!1},this.play=this.play.bind(this),this.updateInvestment=this.updateInvestment.bind(this)}updateInvestment(e){let t=parseInt(e.currentTarget.value);isNaN(t)&&(t=m),t>p&&(t=p),tthis.setState({playLock:!1}),250),n?this.win(this.props.p,this.state.investment):this.win(this.props.p,-this.state.investment),this.reachedLimit(this.props.p)}render(){return o.createElement(o.Fragment,null,o.createElement("pre",null,"+———————+",o.createElement("br",null),"| | | |",o.createElement("br",null),"| | ",this.state.result," | |",o.createElement("br",null),"| | | |",o.createElement("br",null),"+———————+",o.createElement("br",null)),o.createElement("span",{className:"text"},"Play for: "),o.createElement("input",{type:"number",className:"text-input",onChange:this.updateInvestment,value:this.state.investment}),o.createElement("br",null),o.createElement(s.StdButton,{onClick:u.trusted(()=>this.play("H")),text:"Head!",disabled:this.state.playLock}),o.createElement(s.StdButton,{onClick:u.trusted(()=>this.play("T")),text:"Tail!",disabled:this.state.playLock}),o.createElement("h1",null,this.state.status))}}},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MuiPaper=void 0;const a=r(n(0)),i=n(395),o=i.makeStyles({root:{backgroundColor:"rgb(30, 30, 30)",border:"2px solid #000",borderRadius:"10px",display:"inline-block",flexWrap:"wrap",padding:"10px"}});t.MuiPaper=(e=>a.default.createElement(i.Paper,Object.assign({},e,{classes:Object.assign(Object.assign({},o()),e.classes)})))},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MuiButton=void 0;const a=r(n(0)),i=n(395),o=i.makeStyles({root:{backgroundColor:"#555",border:"1px solid #333",color:"white",margin:"5px",padding:"3px 5px","&:hover":{backgroundColor:"#666"}},textPrimary:{color:"rgb( 144, 202, 249)"},textSecondary:{color:"rgb(244, 143, 177)"},disabled:{backgroundColor:"#333",color:"#fff",cursor:"default"}});t.MuiButton=(e=>a.default.createElement(i.Button,Object.assign({},e,{classes:Object.assign(Object.assign({},o()),e.classes)})))},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MuiTextField=void 0;const a=r(n(0)),i=n(395),o={backgroundColor:"rgba(57, 54, 54, 0.9)","&:hover":{backgroundColor:"rgba(70, 70, 70, 0.9)"}},s=Object.assign({border:"1px solid #e2e2e1",overflow:"hidden",borderRadius:4,color:"white"},o),l=i.makeStyles({root:Object.assign({},s)}),c=i.makeStyles({root:Object.assign(Object.assign({},o),{color:"white"}),focused:{backgroundColor:"rgba(70, 70, 70, 0.9)"},disabled:{color:"white"}}),u=i.makeStyles({root:{color:"white"},focused:{color:"white !important"},disabled:{color:"white !important"}});t.MuiTextField=(e=>{var t,n;return a.default.createElement(i.TextField,Object.assign({},e,{classes:Object.assign(Object.assign({},l()),e.classes),InputProps:Object.assign({classes:Object.assign(Object.assign({},c()),null===(t=e.InputProps)||void 0===t?void 0:t.classes)},e.InputProps),InputLabelProps:Object.assign({classes:Object.assign(Object.assign({},u()),null===(n=e.InputLabelProps)||void 0===n?void 0:n.classes)},e.InputLabelProps)}))})},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.ReactCard=void 0;const a=r(n(0)),i=n(627);t.ReactCard=(({card:e,hidden:t})=>{let n;switch(e.suit){case i.Suit.Clubs:n=a.default.createElement("span",null,"♣");break;case i.Suit.Diamonds:n=a.default.createElement("span",null,"♦");break;case i.Suit.Hearts:n=a.default.createElement("span",null,"♥");break;case i.Suit.Spades:n=a.default.createElement("span",null,"♠");break;default:throw new Error(`MissingCaseException: ${e.suit}`)}return a.default.createElement("div",{className:`casino-card ${e.isRedSuit()?"red":"black"}`},a.default.createElement(a.default.Fragment,null,a.default.createElement("div",{className:"value"},t?" - ":e.formatValue()),a.default.createElement("div",{className:"suit"},t?" - ":n)))})},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Hand=void 0;class r{constructor(e){this.cards=e}addCards(...e){return new r([...this.cards,...e])}removeByIndex(e){if(e>=this.cards.length)throw new Error(`Tried to remove invalid card from Hand by index: ${e}`);return new r([...this.cards.slice().splice(e,1)])}}t.Hand=r},,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Deck=void 0;const r=n(627),a=n(879);t.Deck=class{constructor(e=1){this.numDecks=e,this.cards=[],this.reset()}shuffle(){this.cards=a.shuffle(this.cards)}drawCard(){if(0==this.cards.length)throw new Error("Tried to draw card from empty deck");return this.cards.shift()}safeDrawCard(){return 0===this.cards.length&&this.reset(),this.drawCard()}reset(){this.cards=[];for(let e=1;e<=13;++e)for(let t=0;t{const{p:e}=this.props,{bet:t}=this.state;return e.canAfford(t)}),this.startGame=(()=>{if(!this.canStartGame())return;this.props.p.loseMoney(this.state.bet);const e=new u.Hand([this.deck.safeDrawCard(),this.deck.safeDrawCard()]),t=new u.Hand([this.deck.safeDrawCard(),this.deck.safeDrawCard()]);this.setState({playerHand:e,dealerHand:t,gameInProgress:!0,result:y.Pending}),21===this.getTrueHandValue(e)?21===this.getTrueHandValue(t)?this.finishGame(y.Tie):this.finishGame(y.PlayerWonByBlackjack):21===this.getTrueHandValue(t)&&this.finishGame(y.DealerWon)}),this.getHandValue=(e=>{let t=[0];for(let n=0;n=10?t.map(e=>e+10):1===r?t.flatMap(e=>[e+1,e+11]):t.map(e=>e+r)}return t}),this.getTrueHandValue=(e=>{const t=this.getHandValue(e),n=t.filter(e=>e<=21);return n.length>0?(n.sort((e,t)=>e-t),n[n.length-1]):t[0]}),this.getHandDisplayValues=(e=>{const t=this.getHandValue(e);return this.isHandBusted(e)?[...new Set([t[0]])]:[...new Set(t.filter(e=>e<=21))]}),this.isHandBusted=(e=>this.getTrueHandValue(e)>21),this.playerHit=(e=>{if(!e.isTrusted)return;const t=this.state.playerHand.addCards(this.deck.safeDrawCard());this.setState({playerHand:t}),this.isHandBusted(t)&&this.finishGame(y.DealerWon)}),this.playerStay=(e=>{if(!e.isTrusted)return;let t=this.state.dealerHand;for(;this.getTrueHandValue(t)<=16;)t=t.addCards(this.deck.safeDrawCard());if(this.setState({dealerHand:t}),this.isHandBusted(t))this.finishGame(y.PlayerWon);else{const e=this.getTrueHandValue(t),n=this.getTrueHandValue(this.state.playerHand);if(e>21||n>21)throw new Error("Someone busted when not expected to");n>e?this.finishGame(y.PlayerWon):n{let t=0;this.isPlayerWinResult(e)?(t=this.state.bet,this.win(this.props.p,2*t)):e===y.DealerWon?t=-1*this.state.bet:e===y.Tie&&this.win(this.props.p,this.state.bet),this.setState({gameInProgress:!1,result:e,gains:this.state.gains+t})}),this.isPlayerWinResult=(e=>e===y.PlayerWon||e===y.PlayerWonByBlackjack),this.wagerOnChange=(e=>{const{p:t}=this.props,n=e.target.value,r=Math.round(parseFloat(n));isNaN(r)?this.setState({bet:0,betInput:n,wagerInvalid:!0,wagerInvalidHelperText:"Not a valid number"}):r<=0?this.setState({bet:0,betInput:n,wagerInvalid:!0,wagerInvalidHelperText:"Must bet a postive amount"}):r>g?this.setState({bet:0,betInput:n,wagerInvalid:!0,wagerInvalidHelperText:"Exceeds max bet"}):t.canAfford(r)?this.setState({bet:r,betInput:n,wagerInvalid:!1,wagerInvalidHelperText:"",result:y.Pending}):this.setState({bet:0,betInput:n,wagerInvalid:!0,wagerInvalidHelperText:"Not enough money"})}),this.startOnClick=(e=>{e.isTrusted&&(this.state.wagerInvalid||this.startGame())}),this.deck=new c.Deck(5),this.state={playerHand:new u.Hand([]),dealerHand:new u.Hand([]),bet:1e6,betInput:String(1e6),gameInProgress:!1,result:y.Pending,gains:0,wagerInvalid:!1,wagerInvalidHelperText:""}}render(){const{betInput:e,playerHand:t,dealerHand:n,gameInProgress:r,result:a,wagerInvalid:i,wagerInvalidHelperText:l,gains:c}=this.state,u=this.getHandDisplayValues(t),f=this.getHandDisplayValues(n);return o.createElement("div",null,o.createElement("div",null,o.createElement(h.MuiTextField,{value:e,label:o.createElement(o.Fragment,null,"Wager (Max: ",s.Money(g),")"),disabled:r,onChange:this.wagerOnChange,error:i,helperText:i?l:"",type:"number",variant:"filled",style:{width:"200px"},InputProps:{startAdornment:o.createElement(m.InputAdornment,{position:"start"},"$")}}),o.createElement("p",null,"Total earnings this session: ",s.Money(c))),r?o.createElement("div",null,o.createElement(d.MuiButton,{color:"primary",onClick:this.playerHit},"Hit"),o.createElement(d.MuiButton,{color:"secondary",onClick:this.playerStay},"Stay")):o.createElement("div",null,o.createElement(d.MuiButton,{color:"primary",onClick:this.startOnClick,disabled:i||!this.canStartGame()},"Start")),(r||a!==y.Pending)&&o.createElement("div",null,o.createElement(_.MuiPaper,{variant:"outlined",elevation:2},o.createElement("pre",null,"Player"),t.cards.map((e,t)=>o.createElement(p.ReactCard,{card:e,key:t})),o.createElement("pre",null,"Value(s): "),u.map((e,t)=>o.createElement("pre",{key:t},e))),o.createElement("br",null),o.createElement(_.MuiPaper,{variant:"outlined",elevation:2},o.createElement("pre",null,"Dealer"),n.cards.map((e,t)=>o.createElement(p.ReactCard,{card:e,hidden:r&&0!==t,key:t})),!r&&o.createElement(o.Fragment,null,o.createElement("pre",null,"Value(s): "),f.map((e,t)=>o.createElement("pre",{key:t},e))))),a!==y.Pending&&o.createElement("p",null,a,this.isPlayerWinResult(a)&&o.createElement(o.Fragment,null," You gained ",s.Money(this.state.bet)),a===y.DealerWon&&o.createElement(o.Fragment,null," You lost ",s.Money(this.state.bet))))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CasinoLocation=void 0;const o=i(n(0)),s=n(881),l=n(873),c=n(872),u=n(871),m=n(71);var p;!function(e){e.None="none",e.Coin="coin",e.Slots="slots",e.Roulette="roulette",e.Blackjack="blackjack"}(p||(p={}));t.CasinoLocation=class extends o.Component{constructor(e){super(e),this.state={game:p.None},this.updateGame=this.updateGame.bind(this)}updateGame(e){this.setState({game:e})}renderGames(){return o.createElement(o.Fragment,null,o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.Coin),text:"Play coin flip"}),o.createElement("br",null),o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.Slots),text:"Play slots"}),o.createElement("br",null),o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.Roulette),text:"Play roulette"}),o.createElement("br",null),o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.Blackjack),text:"Play blackjack"}))}renderGame(){let e=null;switch(this.state.game){case p.Coin:e=o.createElement(l.CoinFlip,{p:this.props.p});break;case p.Slots:e=o.createElement(u.SlotMachine,{p:this.props.p});break;case p.Roulette:e=o.createElement(c.Roulette,{p:this.props.p});break;case p.Blackjack:e=o.createElement(s.Blackjack,{p:this.props.p});break;case p.None:break;default:throw new Error(`MissingCaseException: ${this.state.game}`)}return o.createElement(o.Fragment,null,o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.None),text:"Stop playing"}),e)}render(){return this.state.game===p.None?this.renderGames():this.renderGame()}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.UniversityLocation=void 0;const o=i(n(0)),s=n(11),l=n(29),c=n(47),u=n(71),m=n(31);t.UniversityLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.take=this.take.bind(this),this.study=this.study.bind(this),this.dataStructures=this.dataStructures.bind(this),this.networks=this.networks.bind(this),this.algorithms=this.algorithms.bind(this),this.management=this.management.bind(this),this.leadership=this.leadership.bind(this),this.calculateCost=this.calculateCost.bind(this)}calculateCost(){const e=c.SpecialServerIps.getIp(this.props.loc.name),t=l.getServer(e);if(null==t||!t.hasOwnProperty("backdoorInstalled"))return this.props.loc.costMult;const n=t.backdoorInstalled?.9:1;return this.props.loc.costMult*n}take(e){const t=this.props.loc;this.props.p.startClass(this.calculateCost(),t.expMult,e)}study(){this.take(s.CONSTANTS.ClassStudyComputerScience)}dataStructures(){this.take(s.CONSTANTS.ClassDataStructures)}networks(){this.take(s.CONSTANTS.ClassNetworks)}algorithms(){this.take(s.CONSTANTS.ClassAlgorithms)}management(){this.take(s.CONSTANTS.ClassManagement)}leadership(){this.take(s.CONSTANTS.ClassLeadership)}render(){const e=this.calculateCost(),t=s.CONSTANTS.ClassDataStructuresBaseCost*e,n=s.CONSTANTS.ClassNetworksBaseCost*e,r=s.CONSTANTS.ClassAlgorithmsBaseCost*e,a=s.CONSTANTS.ClassManagementBaseCost*e,i=s.CONSTANTS.ClassLeadershipBaseCost*e;return o.createElement("div",null,o.createElement(u.StdButton,{onClick:this.study,style:this.btnStyle,text:"Study Computer Science (free)",tooltip:"Gain hacking experience!"}),o.createElement(u.StdButton,{onClick:this.dataStructures,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Data Structures course (",m.Money(t)," / sec)"),tooltip:"Gain hacking experience!"}),o.createElement(u.StdButton,{onClick:this.networks,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Networks course (",m.Money(n)," / sec)"),tooltip:"Gain hacking experience!"}),o.createElement(u.StdButton,{onClick:this.algorithms,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Algorithms course (",m.Money(r)," / sec)"),tooltip:"Gain hacking experience!"}),o.createElement(u.StdButton,{onClick:this.management,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Management course (",m.Money(a)," / sec)"),tooltip:"Gain charisma experience!"}),o.createElement(u.StdButton,{onClick:this.leadership,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Leadership course (",m.Money(i)," / sec)"),tooltip:"Gain charisma experience!"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.TravelAgencyLocation=void 0;const o=i(n(0)),s=n(39),l=n(467),c=n(11),u=n(18),m=n(71),p=n(31);t.TravelAgencyLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"}}asciiWorldMap(){const e=e=>e.city!==this.props.p.city?o.createElement("span",{className:"tooltip",style:{color:"blue",whiteSpace:"nowrap",margin:"0px",padding:"0px"},onClick:l.createTravelPopup.bind(null,e.city,this.props.travel)},o.createElement("span",{className:"tooltiptext"},e.city),e.city[0]):o.createElement("span",null,e.city[0]);return o.createElement("div",null,o.createElement("p",null,"From here, you can travel to any other city! A ticket costs ",p.Money(c.CONSTANTS.TravelCost),"."),o.createElement("pre",null," ,_ . ._. _. ."),o.createElement("pre",null," , _-\\','|~\\~ ~/ ;-'_ _-' ,;_;_, ~~-"),o.createElement("pre",null," /~~-\\_/-'~'--' \\~~| ', ,' / / ~|-_\\_/~/~ ~~--~~~~'--_"),o.createElement("pre",null," / ,/'-/~ '\\ ,' _ , '",o.createElement(e,{city:"Volhaven"}),",'|~ ._/-, /~"),o.createElement("pre",null," ~/-'~\\_, '-,| '|. ' ~ ,\\ /'~ / /_ /~"),o.createElement("pre",null,".-~ '| '',\\~|\\ _\\~ ,_ , ",o.createElement(e,{city:"Chongqing"})," /,"),o.createElement("pre",null," '\\ ",o.createElement(e,{city:"Sector-12"})," /'~ |_/~\\\\,-,~ \\ \" ,_,/ |"),o.createElement("pre",null," | / ._-~'\\_ _~| \\ ) ",o.createElement(e,{city:"New Tokyo"})),o.createElement("pre",null," \\ __-\\ '/ ~ |\\ \\_ / ~"),o.createElement("pre",null," ., '\\ |, ~-_ - | \\\\_' ~| /\\ \\~ ,"),o.createElement("pre",null," ~-_' _; '\\ '-, \\,' /\\/ |"),o.createElement("pre",null," '\\_,~'\\_ \\_ _, /' ' |, /|'"),o.createElement("pre",null," / \\_ ~ | / \\ ~'; -,_."),o.createElement("pre",null," | ~\\ | | , '-_, ,; ~ ~\\"),o.createElement("pre",null," \\, ",o.createElement(e,{city:"Aevum"})," / \\ / /| ,-, , -,"),o.createElement("pre",null," | ,/ | |' |/ ,- ~ \\ '."),o.createElement("pre",null," ,| ,/ \\ ,/ \\ ",o.createElement(e,{city:"Ishima"})," |"),o.createElement("pre",null," / | ~ -~~-, / _"),o.createElement("pre",null," | ,-' ~ /"),o.createElement("pre",null," / ,' ~"),o.createElement("pre",null," ',| ~"),o.createElement("pre",null," ~'"))}listWorldMap(){const e=[];for(const t in s.CityName){const n=s.CityName[t];n!==this.props.p.city&&e.push(o.createElement(m.StdButton,{key:n,onClick:l.createTravelPopup.bind(null,n,this.props.travel),style:this.btnStyle,text:`Travel to ${n}`}))}return o.createElement("div",null,o.createElement("p",null,"From here, you can travel to any other city! A ticket costs ",p.Money(c.CONSTANTS.TravelCost),"."),e)}render(){return u.Settings.DisableASCIIArt?this.listWorldMap():this.asciiWorldMap()}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.TechVendorLocation=void 0;const o=i(n(0)),s=n(467),l=n(11),c=n(152),u=n(642),m=n(71),p=n(31);t.TechVendorLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.state={torPurchased:e.p.hasTorRouter()},this.createUpgradeHomeCoresPopup=this.createUpgradeHomeCoresPopup.bind(this),this.createUpgradeHomeRamPopup=this.createUpgradeHomeRamPopup.bind(this),this.purchaseTorRouter=this.purchaseTorRouter.bind(this)}createUpgradeHomeCoresPopup(){s.createUpgradeHomeCoresPopup(this.props.p)}createUpgradeHomeRamPopup(){s.createUpgradeHomeRamPopup(this.props.p)}purchaseTorRouter(){s.purchaseTorRouter(this.props.p),this.setState({torPurchased:this.props.p.hasTorRouter()})}render(){const e=this.props.loc,t=[];for(let n=e.techVendorMinRam;n<=e.techVendorMaxRam;n*=2){const e=c.getPurchaseServerCost(n);t.push(o.createElement(m.StdButton,{key:n,onClick:()=>s.createPurchaseServerPopup(n,this.props.p),style:this.btnStyle,text:o.createElement(o.Fragment,null,"Purchase ",n,"GB Server - ",p.Money(e))}))}return o.createElement("div",null,t,this.state.torPurchased?o.createElement(u.StdButtonPurchased,{style:this.btnStyle,text:"TOR Router - Purchased"}):o.createElement(m.StdButton,{onClick:this.purchaseTorRouter,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Purchase TOR Router - ",p.Money(l.CONSTANTS.TorRouterCost))}),o.createElement(m.StdButton,{onClick:this.createUpgradeHomeRamPopup,style:this.btnStyle,text:"Purchase additional RAM for Home computer"}),o.createElement(m.StdButton,{onClick:this.createUpgradeHomeCoresPopup,style:this.btnStyle,text:"Purchase additional Core for Home computer"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SpecialLocation=void 0;const o=i(n(0)),s=n(467),l=n(50),c=n(468),u=n(71),m=n(12);t.SpecialLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.createCorporationPopup=this.createCorporationPopup.bind(this),this.handleBladeburner=this.handleBladeburner.bind(this),this.handleResleeving=this.handleResleeving.bind(this),this.state={inBladeburner:this.props.p.inBladeburner()}}createCorporationPopup(){s.createStartCorporationPopup(this.props.p)}handleBladeburner(){const e=this.props.p;if(e.inBladeburner())this.props.engine.loadBladeburnerContent();else if(e.strength>=100&&e.defense>=100&&e.dexterity>=100&&e.agility>=100){e.startBladeburner({new:!0}),m.dialogBoxCreate("You have been accepted into the Bladeburner division!"),this.setState({inBladeburner:!0});const t=document.getElementById("world-menu-header");t instanceof HTMLElement&&(t.click(),t.click())}else m.dialogBoxCreate("Rejected! Please apply again when you have 100 of each combat stat (str, def, dex, agi)")}handleResleeving(){this.props.engine.loadResleevingContent()}renderBladeburner(){if(!this.props.p.canAccessBladeburner())return null;const e=this.state.inBladeburner?"Enter Bladeburner Headquarters":"Apply to Bladeburner Division";return o.createElement(u.StdButton,{onClick:this.handleBladeburner,style:this.btnStyle,text:e})}renderCreateCorporation(){return this.props.p.canAccessCorporation()?o.createElement(c.AutoupdatingStdButton,{disabled:!this.props.p.canAccessCorporation()||this.props.p.hasCorporation(),onClick:this.createCorporationPopup,style:this.btnStyle,text:"Create a Corporation"}):o.createElement(o.Fragment,null,o.createElement("p",null,o.createElement("i",null,"A business man is yelling at a clerk. You should come back later.")))}renderResleeving(){return this.props.p.canAccessResleeving()?o.createElement(u.StdButton,{onClick:this.handleResleeving,style:this.btnStyle,text:"Re-Sleeve"}):null}render(){switch(this.props.loc.name){case l.LocationName.NewTokyoVitaLife:return this.renderResleeving();case l.LocationName.Sector12CityHall:return this.renderCreateCorporation();case l.LocationName.Sector12NSA:return this.renderBladeburner();default:console.error(`Location ${this.props.loc.name} doesn't have any special properties`)}}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SlumsLocation=void 0;const o=i(n(0)),s=n(175),l=n(3),c=n(468);t.SlumsLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.shoplift=this.shoplift.bind(this),this.robStore=this.robStore.bind(this),this.mug=this.mug.bind(this),this.larceny=this.larceny.bind(this),this.dealDrugs=this.dealDrugs.bind(this),this.bondForgery=this.bondForgery.bind(this),this.traffickArms=this.traffickArms.bind(this),this.homicide=this.homicide.bind(this),this.grandTheftAuto=this.grandTheftAuto.bind(this),this.kidnap=this.kidnap.bind(this),this.assassinate=this.assassinate.bind(this),this.heist=this.heist.bind(this)}shoplift(e){e.isTrusted&&s.Crimes.Shoplift.commit(this.props.p)}robStore(e){e.isTrusted&&s.Crimes.RobStore.commit(this.props.p)}mug(e){e.isTrusted&&s.Crimes.Mug.commit(this.props.p)}larceny(e){e.isTrusted&&s.Crimes.Larceny.commit(this.props.p)}dealDrugs(e){e.isTrusted&&s.Crimes.DealDrugs.commit(this.props.p)}bondForgery(e){e.isTrusted&&s.Crimes.BondForgery.commit(this.props.p)}traffickArms(e){e.isTrusted&&s.Crimes.TraffickArms.commit(this.props.p)}homicide(e){e.isTrusted&&s.Crimes.Homicide.commit(this.props.p)}grandTheftAuto(e){e.isTrusted&&s.Crimes.GrandTheftAuto.commit(this.props.p)}kidnap(e){e.isTrusted&&s.Crimes.Kidnap.commit(this.props.p)}assassinate(e){e.isTrusted&&s.Crimes.Assassination.commit(this.props.p)}heist(e){e.isTrusted&&s.Crimes.Heist.commit(this.props.p)}render(){const e=s.Crimes.Shoplift.successRate(this.props.p),t=s.Crimes.RobStore.successRate(this.props.p),n=s.Crimes.Mug.successRate(this.props.p),r=s.Crimes.Larceny.successRate(this.props.p),a=s.Crimes.DealDrugs.successRate(this.props.p),i=s.Crimes.BondForgery.successRate(this.props.p),u=s.Crimes.TraffickArms.successRate(this.props.p),m=s.Crimes.Homicide.successRate(this.props.p),p=s.Crimes.GrandTheftAuto.successRate(this.props.p),h=s.Crimes.Kidnap.successRate(this.props.p),d=s.Crimes.Assassination.successRate(this.props.p),_=s.Crimes.Heist.successRate(this.props.p);return o.createElement("div",null,o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.shoplift,style:this.btnStyle,text:`Shoplift (${l.numeralWrapper.formatPercentage(e)} chance of success)`,tooltip:"Attempt to shoplift from a low-end retailer"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.robStore,style:this.btnStyle,text:`Rob store (${l.numeralWrapper.formatPercentage(t)} chance of success)`,tooltip:"Attempt to commit armed robbery on a high-end store"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.mug,style:this.btnStyle,text:`Mug someone (${l.numeralWrapper.formatPercentage(n)} chance of success)`,tooltip:"Attempt to mug a random person on the street"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.larceny,style:this.btnStyle,text:`Larceny (${l.numeralWrapper.formatPercentage(r)} chance of success)`,tooltip:"Attempt to rob property from someone's house"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.dealDrugs,style:this.btnStyle,text:`Deal Drugs (${l.numeralWrapper.formatPercentage(a)} chance of success)`,tooltip:"Attempt to deal drugs"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.bondForgery,style:this.btnStyle,text:`Bond Forgery (${l.numeralWrapper.formatPercentage(i)} chance of success)`,tooltip:"Attempt to forge corporate bonds"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.traffickArms,style:this.btnStyle,text:`Traffick illegal Arms (${l.numeralWrapper.formatPercentage(u)} chance of success)`,tooltip:"Attempt to smuggle illegal arms into the city"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.homicide,style:this.btnStyle,text:`Homicide (${l.numeralWrapper.formatPercentage(m)} chance of success)`,tooltip:"Attempt to murder a random person on the street"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.grandTheftAuto,style:this.btnStyle,text:`Grand theft Auto (${l.numeralWrapper.formatPercentage(p)} chance of success)`,tooltip:"Attempt to commit grand theft auto"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.kidnap,style:this.btnStyle,text:`Kidnap and Ransom (${l.numeralWrapper.formatPercentage(h)} chance of success)`,tooltip:"Attempt to kidnap and ransom a high-profile-target"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.assassinate,style:this.btnStyle,text:`Assassinate (${l.numeralWrapper.formatPercentage(d)} chance of success)`,tooltip:"Attempt to assassinate a high-profile target"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.heist,style:this.btnStyle,text:`Heist (${l.numeralWrapper.formatPercentage(_)} chance of success)`,tooltip:"Attempt to pull off the ultimate heist"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.HospitalLocation=void 0;const o=i(n(0)),s=n(250),l=n(468),c=n(31),u=n(12);t.HospitalLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.getCost=this.getCost.bind(this),this.getHealed=this.getHealed.bind(this),this.state={currHp:this.props.p.hp}}getCost(){return s.getHospitalizationCost(this.props.p)}getHealed(e){if(!e.isTrusted)return;if(this.props.p.hp<0&&(this.props.p.hp=0),this.props.p.hp>=this.props.p.max_hp)return;const t=this.getCost();this.props.p.loseMoney(t),this.props.p.hp=this.props.p.max_hp,this.props.p.recordMoneySource(-1*t,"hospitalization"),this.setState({currHp:this.props.p.hp}),u.dialogBoxCreate(o.createElement(o.Fragment,null,"You were healed to full health! The hospital billed you for ",c.Money(t)))}render(){const e=this.getCost();return o.createElement(l.AutoupdatingStdButton,{onClick:this.getHealed,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Get treatment for wounds - ",c.Money(e))})}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.GymLocation=void 0;const o=i(n(0)),s=n(11),l=n(29),c=n(47),u=n(71),m=n(31);t.GymLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.trainStrength=this.trainStrength.bind(this),this.trainDefense=this.trainDefense.bind(this),this.trainDexterity=this.trainDexterity.bind(this),this.trainAgility=this.trainAgility.bind(this),this.calculateCost=this.calculateCost.bind(this)}calculateCost(){const e=c.SpecialServerIps.getIp(this.props.loc.name),t=l.getServer(e);if(null==t||!t.hasOwnProperty("backdoorInstalled"))return this.props.loc.costMult;const n=t.backdoorInstalled?.9:1;return this.props.loc.costMult*n}train(e){const t=this.props.loc;this.props.p.startClass(this.calculateCost(),t.expMult,e)}trainStrength(){this.train(s.CONSTANTS.ClassGymStrength)}trainDefense(){this.train(s.CONSTANTS.ClassGymDefense)}trainDexterity(){this.train(s.CONSTANTS.ClassGymDexterity)}trainAgility(){this.train(s.CONSTANTS.ClassGymAgility)}render(){const e=s.CONSTANTS.ClassGymBaseCost*this.calculateCost();return o.createElement("div",null,o.createElement(u.StdButton,{onClick:this.trainStrength,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Train Strength (",m.Money(e)," / sec)")}),o.createElement(u.StdButton,{onClick:this.trainDefense,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Train Defense (",m.Money(e)," / sec)")}),o.createElement(u.StdButton,{onClick:this.trainDexterity,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Train Dexterity (",m.Money(e)," / sec)")}),o.createElement(u.StdButton,{onClick:this.trainAgility,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Train Agility (",m.Money(e)," / sec)")}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ApplyToJobButton=void 0;const o=i(n(0)),s=n(443),l=n(71);t.ApplyToJobButton=class extends o.Component{constructor(e){super(e),this.getJobRequirementTooltip=this.getJobRequirementTooltip.bind(this)}getJobRequirementTooltip(){const e=this.props.p.getNextCompanyPosition(this.props.company,this.props.entryPosType);return null==e?"":this.props.company.hasPosition(e)?s.getJobRequirementText(this.props.company,e,!0):""}render(){return o.createElement(l.StdButton,{onClick:this.props.onClick,style:this.props.style,text:this.props.text,tooltip:this.getJobRequirementTooltip()})}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CompanyLocation=void 0;const o=i(n(0)),s=n(890),l=n(411),c=n(35),u=n(292),m=n(62),p=i(n(70)),h=n(71),d=n(68),_=n(683),g=n(58),y={display:"block"};t.CompanyLocation=class extends o.Component{constructor(e){if(super(e),this.companyPosition=null,this.jobTitle=null,this.btnStyle={display:"block"},this.quit=this.quit.bind(this),this.applyForAgentJob=this.applyForAgentJob.bind(this),this.applyForBusinessConsultantJob=this.applyForBusinessConsultantJob.bind(this),this.applyForBusinessJob=this.applyForBusinessJob.bind(this),this.applyForEmployeeJob=this.applyForEmployeeJob.bind(this),this.applyForItJob=this.applyForItJob.bind(this),this.applyForPartTimeEmployeeJob=this.applyForPartTimeEmployeeJob.bind(this),this.applyForPartTimeWaiterJob=this.applyForPartTimeWaiterJob.bind(this),this.applyForSecurityJob=this.applyForSecurityJob.bind(this),this.applyForSoftwareConsultantJob=this.applyForSoftwareConsultantJob.bind(this),this.applyForSoftwareJob=this.applyForSoftwareJob.bind(this),this.applyForWaiterJob=this.applyForWaiterJob.bind(this),this.startInfiltration=this.startInfiltration.bind(this),this.work=this.work.bind(this),this.location=l.Locations[e.locName],null==this.location)throw new Error(`CompanyLocation component constructed with invalid location: ${e.locName}`);if(this.company=c.Companies[e.locName],null==this.company)throw new Error(`CompanyLocation component constructed with invalid company: ${e.locName}`);this.state={employedHere:!1},this.checkIfEmployedHere(!1)}applyForAgentJob(e){e.isTrusted&&(this.props.p.applyForAgentJob(),this.checkIfEmployedHere(!0))}applyForBusinessConsultantJob(e){e.isTrusted&&(this.props.p.applyForBusinessConsultantJob(),this.checkIfEmployedHere(!0))}applyForBusinessJob(e){e.isTrusted&&(this.props.p.applyForBusinessJob(),this.checkIfEmployedHere(!0))}applyForEmployeeJob(e){e.isTrusted&&(this.props.p.applyForEmployeeJob(),this.checkIfEmployedHere(!0))}applyForItJob(e){e.isTrusted&&(this.props.p.applyForItJob(),this.checkIfEmployedHere(!0))}applyForPartTimeEmployeeJob(e){e.isTrusted&&(this.props.p.applyForPartTimeEmployeeJob(),this.checkIfEmployedHere(!0))}applyForPartTimeWaiterJob(e){e.isTrusted&&(this.props.p.applyForPartTimeWaiterJob(),this.checkIfEmployedHere(!0))}applyForSecurityJob(e){e.isTrusted&&(this.props.p.applyForSecurityJob(),this.checkIfEmployedHere(!0))}applyForSoftwareConsultantJob(e){e.isTrusted&&(this.props.p.applyForSoftwareConsultantJob(),this.checkIfEmployedHere(!0))}applyForSoftwareJob(e){e.isTrusted&&(this.props.p.applyForSoftwareJob(),this.checkIfEmployedHere(!0))}applyForWaiterJob(e){e.isTrusted&&(this.props.p.applyForWaiterJob(),this.checkIfEmployedHere(!0))}checkIfEmployedHere(e=!1){this.jobTitle=this.props.p.jobs[this.props.locName],null!=this.jobTitle&&(this.companyPosition=m.CompanyPositions[this.jobTitle]),e&&this.setState({employedHere:null!=this.jobTitle})}startInfiltration(e){if(!e.isTrusted)return;const t=this.location;t.infiltrationData?(this.props.engine.loadInfiltrationContent(this.props.locName,t.infiltrationData.startingSecurityLevel,t.infiltrationData.maxClearanceLevel),t.infiltrationData):console.error(`trying to start infiltration at ${this.props.locName} but the infiltrationData is null`)}work(e){if(!e.isTrusted)return;const t=this.companyPosition;t instanceof u.CompanyPosition&&(t.isPartTimeJob()||t.isSoftwareConsultantJob()||t.isBusinessConsultantJob()?this.props.p.startWorkPartTime(this.props.locName):this.props.p.startWork(this.props.locName))}quit(e){if(!e.isTrusted)return;const t=g.yesNoBoxGetYesButton(),n=g.yesNoBoxGetNoButton();null!=t&&null!=n&&(t.innerHTML="Quit job",n.innerHTML="Cancel",t.addEventListener("click",()=>{this.props.p.quitJob(this.props.locName),this.checkIfEmployedHere(!0),g.yesNoBoxClose()}),n.addEventListener("click",()=>{g.yesNoBoxClose()}),g.yesNoBoxCreate(o.createElement(o.Fragment,null,"Would you like to quit your job at ",this.company.name,"?")))}render(){const e=null!=this.jobTitle,t=this.company.getFavorGain();return o.createElement("div",null,e&&o.createElement("div",null,o.createElement("p",null,"Job Title: ",this.jobTitle),o.createElement("br",null),o.createElement("p",{style:y},"-------------------------"),o.createElement("br",null),o.createElement("p",{className:"tooltip"},"Company reputation: ",d.Reputation(this.company.playerReputation),o.createElement("span",{className:"tooltiptext"},"You will earn ",_.Favor(t[0])," company favor upon resetting after installing Augmentations")),o.createElement("br",null),o.createElement("br",null),o.createElement("p",{style:y},"-------------------------"),o.createElement("br",null),o.createElement("p",{className:"tooltip"},"Company Favor: ",_.Favor(this.company.favor),o.createElement("span",{className:"tooltiptext"},"Company favor increases the rate at which you earn reputation for this company by 1% per favor. Company favor is gained whenever you reset after installing Augmentations. The amount of favor you gain depends on how much reputation you have with the comapny.")),o.createElement("br",null),o.createElement("br",null),o.createElement("p",{style:y},"-------------------------"),o.createElement("br",null),o.createElement(h.StdButton,{onClick:this.work,text:"Work"}),"    ",o.createElement(h.StdButton,{onClick:this.quit,text:"Quit"})),this.company.hasAgentPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.AgentCompanyPositions[0]],onClick:this.applyForAgentJob,p:this.props.p,style:this.btnStyle,text:"Apply for Agent Job"}),this.company.hasBusinessConsultantPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.BusinessConsultantCompanyPositions[0]],onClick:this.applyForBusinessConsultantJob,p:this.props.p,style:this.btnStyle,text:"Apply for Business Consultant Job"}),this.company.hasBusinessPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.BusinessCompanyPositions[0]],onClick:this.applyForBusinessJob,p:this.props.p,style:this.btnStyle,text:"Apply for Business Job"}),this.company.hasEmployeePositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.MiscCompanyPositions[1]],onClick:this.applyForEmployeeJob,p:this.props.p,style:this.btnStyle,text:"Apply to be an Employee"}),this.company.hasEmployeePositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.PartTimeCompanyPositions[1]],onClick:this.applyForPartTimeEmployeeJob,p:this.props.p,style:this.btnStyle,text:"Apply to be a part-time Employee"}),this.company.hasITPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.ITCompanyPositions[0]],onClick:this.applyForItJob,p:this.props.p,style:this.btnStyle,text:"Apply for IT Job"}),this.company.hasSecurityPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.SecurityCompanyPositions[2]],onClick:this.applyForSecurityJob,p:this.props.p,style:this.btnStyle,text:"Apply for Security Job"}),this.company.hasSoftwareConsultantPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.SoftwareConsultantCompanyPositions[0]],onClick:this.applyForSoftwareConsultantJob,p:this.props.p,style:this.btnStyle,text:"Apply for Software Consultant Job"}),this.company.hasSoftwarePositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.SoftwareCompanyPositions[0]],onClick:this.applyForSoftwareJob,p:this.props.p,style:this.btnStyle,text:"Apply for Software Job"}),this.company.hasWaiterPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.MiscCompanyPositions[0]],onClick:this.applyForWaiterJob,p:this.props.p,style:this.btnStyle,text:"Apply to be a Waiter"}),this.company.hasWaiterPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.PartTimeCompanyPositions[0]],onClick:this.applyForPartTimeWaiterJob,p:this.props.p,style:this.btnStyle,text:"Apply to be a part-time Waiter"}),null!=this.location.infiltrationData&&o.createElement(h.StdButton,{onClick:this.startInfiltration,style:this.btnStyle,text:"Infiltrate Company"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.GenericLocation=void 0;const o=i(n(0)),s=n(891),l=n(889),c=n(888),u=n(887),m=n(886),p=n(885),h=n(884),d=n(883),_=n(882),g=n(475),y=n(18),f=n(47),b=n(29),E=n(71),v=n(870);t.GenericLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"}}getLocationSpecificContent(){const e=[];return this.props.loc.types.includes(g.LocationType.Company)&&e.push(o.createElement(s.CompanyLocation,{engine:this.props.engine,key:"companylocation",locName:this.props.loc.name,p:this.props.p})),this.props.loc.types.includes(g.LocationType.Gym)&&e.push(o.createElement(l.GymLocation,{key:"gymlocation",loc:this.props.loc,p:this.props.p})),this.props.loc.types.includes(g.LocationType.Hospital)&&e.push(o.createElement(c.HospitalLocation,{key:"hospitallocation",p:this.props.p})),this.props.loc.types.includes(g.LocationType.Slums)&&e.push(o.createElement(u.SlumsLocation,{key:"slumslocation",p:this.props.p})),this.props.loc.types.includes(g.LocationType.Special)&&e.push(o.createElement(m.SpecialLocation,{engine:this.props.engine,key:"speciallocation",loc:this.props.loc,p:this.props.p})),this.props.loc.types.includes(g.LocationType.TechVendor)&&e.push(o.createElement(p.TechVendorLocation,{key:"techvendorlocation",loc:this.props.loc,p:this.props.p})),this.props.loc.types.includes(g.LocationType.TravelAgency)&&e.push(o.createElement(h.TravelAgencyLocation,{key:"travelagencylocation",p:this.props.p,travel:this.props.travel})),this.props.loc.types.includes(g.LocationType.University)&&e.push(o.createElement(d.UniversityLocation,{key:"universitylocation",loc:this.props.loc,p:this.props.p})),this.props.loc.types.includes(g.LocationType.Casino)&&e.push(o.createElement(_.CasinoLocation,{key:"casinoLocation",p:this.props.p})),e}render(){const e=this.getLocationSpecificContent(),t=f.SpecialServerIps.getIp(this.props.loc.name),n=b.getServer(t),r=null!==n&&b.isBackdoorInstalled(n);return o.createElement("div",null,o.createElement(E.StdButton,{onClick:this.props.returnToCity,style:this.btnStyle,text:"Return to World"}),o.createElement("h1",null,r&&!y.Settings.DisableTextEffects?o.createElement(v.CorruptableText,{content:this.props.loc.name}):this.props.loc.name),e)}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.LocationCity=void 0;const o=i(n(0)),s=n(18),l=n(71);t.LocationCity=class extends o.Component{asciiCity(){const e=e=>e?o.createElement("span",{key:e,className:"tooltip",style:{color:"blue",whiteSpace:"nowrap",margin:"0px",padding:"0px",cursor:"pointer"},onClick:this.props.enterLocation.bind(this,e)},"X"):o.createElement("span",null,"*"),t=/[A-Z]/g,n={A:0,B:1,C:2,D:3,E:4,F:5,G:6,H:7,I:8,J:9,K:10,L:11,M:12,N:13,O:14,P:15,Q:16,R:17,S:18,T:19,U:20,V:21,W:22,X:23,Y:24,Z:25},r=r=>{const a=[],i=[];let o;for(;null!==(o=t.exec(r));)i.push(o);if(0===i.length)return a.push(r),a;for(let t=0;to.createElement("li",{key:e},o.createElement(l.StdButton,{onClick:this.props.enterLocation.bind(this,e),text:e})));return o.createElement("ul",null,e)}render(){return o.createElement(o.Fragment,null,s.Settings.DisableASCIIArt?this.listCity():this.asciiCity())}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Victory=void 0;const s=n(19),l=i(n(0)),c=n(71),u=o(n(101)),m=n(31),p=n(68),h=n(25);t.Victory=function(e){const[t,n]=l.useState("none");function r(){const t=document.getElementById("mainmenu-container");if(!t)throw new Error("mainmenu-container somehow null");t.style.visibility="visible",e.Engine.loadLocationContent()}const a=e.MaxLevel*Math.pow(1.01,e.MaxLevel),i=Math.pow(e.Difficulty+1,1.1)*Math.pow(e.StartingDifficulty,1.2)*30*a*h.BitNodeMultipliers.InfiltrationRep,o=Math.pow(e.Difficulty+1,2)*Math.pow(e.StartingDifficulty,3)*3e3*a*h.BitNodeMultipliers.InfiltrationMoney;return l.default.createElement(l.default.Fragment,null,l.default.createElement(u.default,{container:!0,spacing:3},l.default.createElement(u.default,{item:!0,xs:10},l.default.createElement("h1",null,"Infiltration successful!")),l.default.createElement(u.default,{item:!0,xs:10},l.default.createElement("h2",null,"You can trade the confidential information you found for money or reputation."),l.default.createElement("select",{className:"dropdown",onChange:function(e){n(e.target.value)}},l.default.createElement("option",{key:"none",value:"none"},"none"),e.Player.factions.filter(e=>s.Factions[e].getInfo().offersWork()).map(e=>l.default.createElement("option",{key:e,value:e},e))),l.default.createElement(c.StdButton,{onClick:function(){"none"!==t&&(s.Factions[t].playerReputation+=i,r())},text:l.default.createElement(l.default.Fragment,null,"Trade for ",p.Reputation(i)," reputation")})),l.default.createElement(u.default,{item:!0,xs:3},l.default.createElement(c.StdButton,{onClick:function(){e.Player.gainMoney(o),e.Player.recordMoneySource(o,"infiltration"),r()},text:l.default.createElement(l.default.Fragment,null,"Sell for ",m.Money(o))})),l.default.createElement(u.default,{item:!0,xs:3},l.default.createElement(c.StdButton,{onClick:r,text:"Quit"}))))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.WireCuttingGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(228),p=n(167),h={Trivial:{timer:9e3,wiresmin:4,wiresmax:4,rules:2},Normal:{timer:7e3,wiresmin:6,wiresmax:6,rules:2},Hard:{timer:5e3,wiresmin:8,wiresmax:8,rules:3},Impossible:{timer:4e3,wiresmin:9,wiresmax:9,rules:4}},d=["|",".","/","-","█","#"],_=["red","#FFC107","blue","white"],g={red:"red","#FFC107":"yellow",blue:"blue",white:"white"};function y(e){const t=Math.floor(Math.random()*e.length);return{toString:()=>`Cut wires number ${t+1}.`,shouldCut:(e,n)=>t===n}}function f(e){const t=e[Math.floor(Math.random()*e.length)].colors[0];return{toString:()=>`Cut all wires colored ${g[t]}.`,shouldCut:e=>e.colors.includes(t)}}t.WireCuttingGame=function(e){const t={timer:0,wiresmin:0,wiresmax:0,rules:0};p.interpolate(h,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=[],n=m.random(e.wiresmin,e.wiresmax);for(let e=0;es.default.createElement("h3",{key:t},e.toString())),s.default.createElement("pre",null,new Array(r.length).fill(0).map((e,t)=>s.default.createElement("span",{key:t}," ",t+1,"    "))),new Array(8).fill(0).map((e,t)=>s.default.createElement("div",{key:t},s.default.createElement("pre",null,r.map((e,n)=>3!==t&&4!==t||!a[n]?s.default.createElement("span",{key:n,style:{color:e.colors[t%e.colors.length]}},"|",e.tpe,"|   "):s.default.createElement("span",{key:n},"      "))))),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){t.preventDefault();const n=parseInt(t.key);n<1||n>r.length||isNaN(n)||i(t=>{const a=[...t];a[n-1]=!0,o.some(e=>e.shouldCut(r[n-1],n-1))||e.onFailure();const i=[];for(let e=0;ee===a[t])&&e.onSuccess(),a})}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MinesweeperGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(167),p=n(228),h={Trivial:{timer:15e3,width:3,height:3,mines:4},Normal:{timer:15e3,width:4,height:4,mines:7},Hard:{timer:15e3,width:5,height:5,mines:11},Impossible:{timer:15e3,width:6,height:6,mines:15}};function d(e){const t=[];for(let n=0;n{const e=setTimeout(()=>y(!1),2e3);return()=>clearInterval(e)},[]),s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(u.GameTimer,{millis:n,onExpire:e.onFailure}),s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",{className:"noselect"},g?"Remember all the mines!":"Mark all the mines!"),r.map((e,t)=>s.default.createElement("div",{key:t},s.default.createElement("pre",null,e.map((e,n)=>g?r[t][n]?s.default.createElement("span",{key:n},"[?] "):s.default.createElement("span",{key:n},"[ ] "):n==o[0]&&t==o[1]?s.default.createElement("span",{key:n},"[X] "):a[t][n]?s.default.createElement("span",{key:n},"[.] "):s.default.createElement("span",{key:n},"[ ] "))),s.default.createElement("br",null))),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){if(t.preventDefault(),g)return;const n=[0,0];switch(p.getArrow(t)){case"↑":n[1]--;break;case"←":n[0]--;break;case"↓":n[1]++;break;case"→":n[0]++}const a=[o[0]+n[0],o[1]+n[1]];if(a[0]=(a[0]+r[0].length)%r[0].length,a[1]=(a[1]+r.length)%r.length,_(a),32==t.keyCode){if(!r[o[1]][o[0]])return void e.onFailure();i(t=>(t[o[1]][o[0]]=!0,function(e,t){function n(e){return e.flat().reduce((e,t)=>e+(t?1:0),0)}return n(e)===n(t)}(r,t)&&e.onSuccess(),t))}}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Cyberpunk2077Game=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(167),p=n(228),h={Trivial:{timer:12500,width:3,height:3,symbols:6},Normal:{timer:15e3,width:4,height:4,symbols:7},Hard:{timer:12500,width:5,height:5,symbols:8},Impossible:{timer:1e4,width:6,height:6,symbols:9}};function d(){return"ABCDEF0123456789"[Math.floor(16*Math.random())]}t.Cyberpunk2077Game=function(e){const t={timer:0,width:0,height:0,symbols:0};m.interpolate(h,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=[];for(let n=0;nt==i?s.default.createElement("span",{key:`${t}`,style:{fontSize:"1em",color:"blue"}},e," "):s.default.createElement("span",{key:`${t}`,style:{fontSize:"1em"}},e," "))),s.default.createElement("br",null),r.map((e,t)=>s.default.createElement("div",{key:t},s.default.createElement("pre",null,e.map((e,n)=>n==_[0]&&t==_[1]?s.default.createElement("span",{key:`${n}${t}`,style:{fontSize:"2em",color:"blue"}},e," "):s.default.createElement("span",{key:`${n}${t}`,style:{fontSize:"2em"}},e," "))),s.default.createElement("br",null))),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){t.preventDefault();const n=[0,0];switch(p.getArrow(t)){case"↑":n[1]--;break;case"←":n[0]--;break;case"↓":n[1]++;break;case"→":n[0]++}const s=[_[0]+n[0],_[1]+n[1]];if(s[0]=(s[0]+r[0].length)%r[0].length,s[1]=(s[1]+r.length)%r.length,g(s),32==t.keyCode){if(r[_[1]][_[0]]!==a[i])return void e.onFailure();o(i+1),a.length===i+1&&e.onSuccess()}}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.CheatCodeGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(228),p=n(167),h={Trivial:{timer:13e3,min:6,max:8},Normal:{timer:7e3,min:7,max:8},Hard:{timer:5e3,min:8,max:9},Impossible:{timer:3e3,min:9,max:9}};t.CheatCodeGame=function(e){const t={timer:0,min:0,max:0};p.interpolate(h,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=["←","→","↑","↓"];let n="";for(let r=0;r=r.length&&e.onSuccess()):e.onFailure()}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BribeGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(167),p={Trivial:{timer:12e3,size:6},Normal:{timer:9e3,size:8},Hard:{timer:5e3,size:9},Impossible:{timer:2500,size:12}};t.BribeGame=function(e){const t={timer:0,size:0};m.interpolate(p,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=[];t.push(h[Math.floor(Math.random()*h.length)]);for(let n=0;n0;t--){const n=Math.floor(Math.random()*(t+1)),r=e[t];e[t]=e[n],e[n]=r}}(t),t}(t)),[a,i]=s.useState(0);return s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(u.GameTimer,{millis:n,onExpire:e.onFailure}),s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",null,"Say something nice about the guard."),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){t.preventDefault();const n=t.keyCode;if(32===n)return void(h.includes(r[a])?e.onSuccess():e.onFailure());let o=a;for([38,87,68,39].includes(n)&&o++,[65,37,83,40].includes(n)&&o--;o<0;)o+=r.length;for(;o>r.length-1;)o-=r.length;i(o)}})),s.default.createElement(l.default,{item:!0,xs:6},s.default.createElement("h2",{style:{fontSize:"2em"}},"↑"),s.default.createElement("h2",{style:{fontSize:"2em"}},r[a]),s.default.createElement("h2",{style:{fontSize:"2em"}},"↓")))};const h=["affectionate","agreeable","bright","charming","creative","determined","energetic","friendly","funny","generous","polite","likable","diplomatic","helpful","giving","kind","hardworking","patient","dynamic","loyal"],d=["aggressive","aloof","arrogant","big-headed","boastful","boring","bossy","careless","clingy","couch potato","cruel","cynical","grumpy","hot air","know it all","obnoxious","pain in the neck","picky","tactless","thoughtless"]},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BackwardGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(228),p=n(167),h=n(628),d={Trivial:{timer:16e3,min:3,max:4},Normal:{timer:12500,min:2,max:3},Hard:{timer:15e3,min:3,max:4},Impossible:{timer:8e3,min:4,max:4}};t.BackwardGame=function(e){const t={timer:0,min:0,max:0};p.interpolate(d,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=m.random(e.min,e.max);let n="";for(let e=0;e0&&(n+=" "),n+=_[Math.floor(Math.random()*_.length)];return n}(t)),[a,i]=s.useState("");return s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(u.GameTimer,{millis:n,onExpire:e.onFailure}),s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",{className:"noselect"},"Type it backward"),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){if(t.preventDefault(),16===t.keyCode)return;const n=a+t.key.toUpperCase();r.startsWith(n)?r===n?e.onSuccess():i(n):e.onFailure()}})),s.default.createElement(l.default,{item:!0,xs:6},s.default.createElement("p",{style:{transform:"scaleX(-1)"}},r)),s.default.createElement(l.default,{item:!0,xs:6},s.default.createElement("p",null,a,s.default.createElement(h.BlinkingCursor,null))))};const _=["ALGORITHM","ANALOG","APP","APPLICATION","ARRAY","BACKUP","BANDWIDTH","BINARY","BIT","BITE","BITMAP","BLOG","BLOGGER","BOOKMARK","BOOT","BROADBAND","BROWSER","BUFFER","BUG","BUS","BYTE","CACHE","CAPS LOCK","CAPTCHA","CD","CD-ROM","CLIENT","CLIPBOARD","CLOUD","COMPUTING","COMMAND","COMPILE","COMPRESS","COMPUTER","CONFIGURE","COOKIE","COPY","CPU","CYBERCRIME","CYBERSPACE","DASHBOARD","DATA","MINING","DATABASE","DEBUG","DECOMPRESS","DELETE","DESKTOP","DEVELOPMENT","DIGITAL","DISK","DNS","DOCUMENT","DOMAIN","DOMAIN NAME","DOT","DOT MATRIX","DOWNLOAD","DRAG","DVD","DYNAMIC","EMAIL","EMOTICON","ENCRYPT","ENCRYPTION","ENTER","EXABYTE","FAQ","FILE","FINDER","FIREWALL","FIRMWARE","FLAMING","FLASH","FLASH DRIVE","FLOPPY DISK","FLOWCHART","FOLDER","FONT","FORMAT","FRAME","FREEWARE","GIGABYTE","GRAPHICS","HACK","HACKER","HARDWARE","HOME PAGE","HOST","HTML","HYPERLINK","HYPERTEXT","ICON","INBOX","INTEGER","INTERFACE","INTERNET","IP ADDRESS","ITERATION","JAVA","JOYSTICK","JUNKMAIL","KERNEL","KEY","KEYBOARD","KEYWORD","LAPTOP","LASER PRINTER","LINK","LINUX","LOG OUT","LOGIC","LOGIN","LURKING","MACINTOSH","MACRO","MAINFRAME","MALWARE","MEDIA","MEMORY","MIRROR","MODEM","MONITOR","MOTHERBOARD","MOUSE","MULTIMEDIA","NET","NETWORK","NODE","NOTEBOOK","COMPUTER","OFFLINE","ONLINE","OPENSOURCE","OPERATING","SYSTEM","OPTION","OUTPUT","PAGE","PASSWORD","PASTE","PATH","PHISHING","PIRACY","PIRATE","PLATFORM","PLUGIN","PODCAST","POPUP","PORTAL","PRINT","PRINTER","PRIVACY","PROCESS","PROGRAM","PROGRAMMER","PROTOCOL","QUEUE","QWERTY","RAM","REALTIME","REBOOT","RESOLUTION","RESTORE","ROM","ROOT","ROUTER","RUNTIME","SAVE","SCAN","SCANNER","SCREEN","SCREENSHOT","SCRIPT","SCROLL","SCROLL","SEARCH","ENGINE","SECURITY","SERVER","SHAREWARE","SHELL","SHIFT","SHIFT KEY","SNAPSHOT","SOCIAL NETWORKING","SOFTWARE","SPAM","SPAMMER","SPREADSHEET","SPYWARE","STATUS","STORAGE","SUPERCOMPUTER","SURF","SYNTAX","TABLE","TAG","TERMINAL","TEMPLATE","TERABYTE","TEXT EDITOR","THREAD","TOOLBAR","TRASH","TROJAN HORSE","TYPEFACE","UNDO","UNIX","UPLOAD","URL","USER","USER INTERFACE","USERNAME","UTILITY","VERSION","VIRTUAL","VIRTUAL MEMORY","VIRUS","WEB","WEBMASTER","WEBSITE","WIDGET","WIKI","WINDOW","WINDOWS","WIRELESS","PROCESSOR","WORKSTATION","WEB","WORM","WWW","XML","ZIP"]},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.SlashGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(167),p={Trivial:{window:600},Normal:{window:325},Hard:{window:250},Impossible:{window:150}};t.SlashGame=function(e){const t={window:0};m.interpolate(p,e.difficulty,t);const[n,r]=s.useState(!0);return s.useEffect(()=>{let e=-1;const n=setTimeout(()=>{r(!1),e=setTimeout(()=>r(!0),t.window)},3250*Math.random()+1500);return()=>{clearInterval(n),-1!==e&&clearInterval(e)}},[]),s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(u.GameTimer,{millis:5e3,onExpire:e.onFailure}),s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",{className:"noselect"},"Slash when his guard is down!"),s.default.createElement("p",{style:{fontSize:"5em"}},n?"!Guarding!":"!ATTACKING!"),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){t.preventDefault(),32===t.keyCode&&(n?e.onFailure():e.onSuccess())}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BracketGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(228),p=n(167),h=n(628),d={Trivial:{timer:8e3,min:2,max:3},Normal:{timer:6e3,min:4,max:5},Hard:{timer:4e3,min:4,max:6},Impossible:{timer:2500,min:7,max:7}};t.BracketGame=function(e){const t={timer:0,min:0,max:0};p.interpolate(d,e.difficulty,t);const n=t.timer,[r,a]=s.useState(""),[i]=s.useState(function(e){let t="";const n=m.random(e.min,e.max);for(let e=0;e":"":"]"}(t);n&&(function(e,t){return"["===e&&"]"===t||"<"===e&&">"===t||"("===e&&")"===t||"{"===e&&"}"===t}(i[i.length-r.length-1],n)?i.length!==r.length+1?a(r+n):e.onSuccess():e.onFailure())}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Countdown=void 0;const s=i(n(0)),l=o(n(101));t.Countdown=function(e){const[t,n]=s.useState(3);return s.useEffect(()=>{0!==t?setTimeout(()=>n(t-1),200):e.onFinish()}),s.default.createElement(s.default.Fragment,null,s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",null,"Get Ready!"),s.default.createElement("h1",null,t))))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Game=void 0;const s=i(n(0)),l=o(n(101)),c=n(903),u=n(902),m=n(901),p=n(900),h=n(899),d=n(898),_=n(897),g=n(896),y=n(895),f=n(894);var b;!function(e){e[e.Countdown=0]="Countdown",e[e.Minigame=1]="Minigame",e[e.Result=2]="Result",e[e.Sell=3]="Sell"}(b||(b={}));const E=[m.SlashGame,u.BracketGame,p.BackwardGame,h.BribeGame,d.CheatCodeGame,_.Cyberpunk2077Game,g.MinesweeperGame,y.WireCuttingGame];t.Game=function(e){const[t,n]=s.useState(1),[r,a]=s.useState(b.Countdown),[i,o]=s.useState(""),[u,m]=s.useState({lastGames:[-1,-1],id:Math.floor(Math.random()*E.length)});function p(){m({lastGames:[u.lastGames[1],u.id],id:function(){let e=u.lastGames[0];const t=[u.lastGames[0],u.lastGames[1],u.id];for(;t.includes(e);)e=Math.floor(Math.random()*E.length);return e}()})}function h(e){o(t=>{let n=t;return(n+=e?"✓":"✗").length>15&&(n=n.slice(1)),n})}let d;switch(r){case b.Countdown:d=s.default.createElement(c.Countdown,{onFinish:()=>a(b.Minigame)});break;case b.Minigame:{const r=E[u.id];d=s.default.createElement(r,{onSuccess:function(){h(!0),t===e.MaxLevel?a(b.Sell):(a(b.Countdown),n(t+1)),p()},onFailure:function(){if(a(b.Countdown),h(!1),e.Player.takeDamage(3*e.StartingDifficulty)){const t=document.getElementById("mainmenu-container");if(null===t)throw new Error("mainmenu-container not found");t.style.visibility="visible",e.Engine.loadLocationContent()}p()},difficulty:e.Difficulty+t/50});break}case b.Sell:d=s.default.createElement(f.Victory,{Player:e.Player,Engine:e.Engine,StartingDifficulty:e.StartingDifficulty,Difficulty:e.Difficulty,MaxLevel:e.MaxLevel})}return s.default.createElement(s.default.Fragment,null,s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(l.default,{item:!0,xs:3},s.default.createElement("h3",null,"Level: ",t," / ",e.MaxLevel),s.default.createElement(function(){return s.default.createElement("h4",null,s.default.createElement("span",{style:{color:"gray"}},i.slice(0,i.length-1)),i[i.length-1])},null)),s.default.createElement(l.default,{item:!0,xs:12},d)))}},,,,,,function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Intro=void 0;const a=r(n(0)),i=n(71),o=r(n(101));t.Intro=function(e){return a.default.createElement(a.default.Fragment,null,a.default.createElement(o.default,{container:!0,spacing:3},a.default.createElement(o.default,{item:!0,xs:10},a.default.createElement("h1",null,"Infiltrating ",e.Location)),a.default.createElement(o.default,{item:!0,xs:10},a.default.createElement("h2",null,"Difficulty: ",function(e){return e<=.5?"trivial":e<=1.5?"normal":e<=2.5?"hard":"impossible"}(e.Difficulty),", Maximum level: ",e.MaxLevel)),a.default.createElement(o.default,{item:!0,xs:10},a.default.createElement("p",null,"Infiltration is a series of short minigames that get progressively harder. You take damage for failing them. Reaching the maximum level rewards you with intel you can trade for money or reputation."),a.default.createElement("br",null),a.default.createElement("p",null,"The minigames you play are randomly selected. It might take you few tries to get used to them."),a.default.createElement("br",null),a.default.createElement("p",null,"No game require use of the mouse."),a.default.createElement("br",null),a.default.createElement("p",null,"Spacebar is the default action/confirm button."),a.default.createElement("br",null),a.default.createElement("p",null,"Everything that uses arrow can also use WASD"),a.default.createElement("br",null),a.default.createElement("p",null,"Sometimes the rest of the keyboard is used.")),a.default.createElement(o.default,{item:!0,xs:3},a.default.createElement(i.StdButton,{onClick:e.start,text:"Start"})),a.default.createElement(o.default,{item:!0,xs:3},a.default.createElement(i.StdButton,{onClick:e.cancel,text:"Cancel"}))))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Root=void 0;const o=i(n(0)),s=n(910),l=n(904);t.Root=function(e){const[t,n]=o.useState(!1);return t?o.default.createElement(l.Game,{Player:e.Player,Engine:e.Engine,StartingDifficulty:e.StartingDifficulty,Difficulty:e.Difficulty,MaxLevel:e.MaxLevel}):o.default.createElement(s.Intro,{Player:e.Player,Engine:e.Engine,Location:e.Location,Difficulty:e.Difficulty,MaxLevel:e.MaxLevel,start:()=>n(!0),cancel:function(){const t=document.getElementById("mainmenu-container");if(null===t)throw new Error("mainmenu-container not found");t.style.visibility="visible",e.Engine.loadLocationContent()}})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.PurchasedAugmentations=void 0;const o=i(n(0)),s=n(15),l=n(4),c=n(1),u=n(637);t.PurchasedAugmentations=function(){const e=[];let t=-1;for(let e=c.Player.queuedAugmentations.length-1;e>=0;e--)if(c.Player.queuedAugmentations[e].name===l.AugmentationNames.NeuroFluxGovernor){t=e;break}for(let n=0;no.createElement("tr",{key:e[0]},o.createElement("td",{key:"0"},o.createElement("span",null,e[0]," multiplier: ")),o.createElement("td",{key:"1",style:{textAlign:"right"}},l.numeralWrapper.formatPercentage(e[1])),function(e){let t=[];return e&&(t=[o.createElement("td",{key:"2"}," ","=>"," "),o.createElement("td",{key:"3"},l.numeralWrapper.formatPercentage(e))]),t}(e[2])))))}return o.createElement(o.Fragment,null,o.createElement("p",null,o.createElement("strong",null,o.createElement("u",null,"Multipliers:"))),o.createElement("br",null),t([["Hacking Chance ",s.Player.hacking_chance_mult,s.Player.hacking_chance_mult*e.hacking_chance_mult],["Hacking Speed ",s.Player.hacking_speed_mult,s.Player.hacking_speed_mult*e.hacking_speed_mult],["Hacking Money ",s.Player.hacking_money_mult,s.Player.hacking_money_mult*e.hacking_money_mult],["Hacking Growth ",s.Player.hacking_grow_mult,s.Player.hacking_grow_mult*e.hacking_grow_mult]]),o.createElement("br",null),t([["Hacking Level ",s.Player.hacking_mult,s.Player.hacking_mult*e.hacking_mult],["Hacking Experience ",s.Player.hacking_exp_mult,s.Player.hacking_exp_mult*e.hacking_exp_mult]]),o.createElement("br",null),t([["Strength Level ",s.Player.strength_mult,s.Player.strength_mult*e.strength_mult],["Strength Experience ",s.Player.strength_exp_mult,s.Player.strength_exp_mult*e.strength_exp_mult]]),o.createElement("br",null),t([["Defense Level ",s.Player.defense_mult,s.Player.defense_mult*e.defense_mult],["Defense Experience ",s.Player.defense_exp_mult,s.Player.defense_exp_mult*e.defense_exp_mult]]),o.createElement("br",null),t([["Dexterity Level ",s.Player.dexterity_mult,s.Player.dexterity_mult*e.dexterity_mult],["Dexterity Experience ",s.Player.dexterity_exp_mult,s.Player.dexterity_exp_mult*e.dexterity_exp_mult]]),o.createElement("br",null),t([["Agility Level ",s.Player.agility_mult,s.Player.agility_mult*e.agility_mult],["Agility Experience ",s.Player.agility_exp_mult,s.Player.agility_exp_mult*e.agility_exp_mult]]),o.createElement("br",null),t([["Charisma Level ",s.Player.charisma_mult,s.Player.charisma_mult*e.charisma_mult],["Charisma Experience ",s.Player.charisma_exp_mult,s.Player.charisma_exp_mult*e.charisma_exp_mult]]),o.createElement("br",null),t([["Hacknet Node production ",s.Player.hacknet_node_money_mult,s.Player.hacknet_node_money_mult*e.hacknet_node_money_mult],["Hacknet Node purchase cost ",s.Player.hacknet_node_purchase_cost_mult,s.Player.hacknet_node_purchase_cost_mult*e.hacknet_node_purchase_cost_mult],["Hacknet Node RAM upgrade cost ",s.Player.hacknet_node_ram_cost_mult,s.Player.hacknet_node_ram_cost_mult*e.hacknet_node_ram_cost_mult],["Hacknet Node Core purchase cost ",s.Player.hacknet_node_core_cost_mult,s.Player.hacknet_node_core_cost_mult*e.hacknet_node_core_cost_mult],["Hacknet Node level upgrade cost ",s.Player.hacknet_node_level_cost_mult,s.Player.hacknet_node_level_cost_mult*e.hacknet_node_level_cost_mult]]),o.createElement("br",null),t([["Company reputation gain ",s.Player.company_rep_mult,s.Player.company_rep_mult*e.company_rep_mult],["Faction reputation gain ",s.Player.faction_rep_mult,s.Player.faction_rep_mult*e.faction_rep_mult],["Salary ",s.Player.work_money_mult,s.Player.work_money_mult*e.work_money_mult]]),o.createElement("br",null),t([["Crime success ",s.Player.crime_success_mult,s.Player.crime_success_mult*e.crime_success_mult],["Crime money ",s.Player.crime_money_mult,s.Player.crime_money_mult*e.crime_money_mult]]),o.createElement("br",null),o.createElement(function(){return s.Player.canAccessBladeburner()?o.createElement(o.Fragment,null,t([["Bladeburner Success Chance",s.Player.bladeburner_success_chance_mult,s.Player.bladeburner_success_chance_mult*e.bladeburner_success_chance_mult],["Bladeburner Max Stamina",s.Player.bladeburner_max_stamina_mult,s.Player.bladeburner_max_stamina_mult*e.bladeburner_max_stamina_mult],["Bladeburner Stamina Gain",s.Player.bladeburner_stamina_gain_mult,s.Player.bladeburner_stamina_gain_mult*e.bladeburner_stamina_gain_mult],["Bladeburner Field Analysis",s.Player.bladeburner_analysis_mult,s.Player.bladeburner_analysis_mult*e.bladeburner_analysis_mult]]),o.createElement("br",null)):o.createElement(o.Fragment,null)},null))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SourceFileMinus1=void 0;const o=i(n(0)),s=n(1),l=n(174),c=n(232);t.SourceFileMinus1=function(){const e=s.Player.exploits;return 0===e.length?o.createElement(o.Fragment,null):o.createElement("li",{key:-1},o.createElement(c.Accordion,{headerContent:o.createElement(o.Fragment,null,"Source-File -1: Exploits in the BitNodes",o.createElement("br",null),"Level ",e.length," / ?"),panelContent:o.createElement(o.Fragment,null,o.createElement("p",null,"This Source-File can only be acquired with obscure knowledge of the game, javascript, and the web ecosystem."),o.createElement("p",null,"It increases all of the player's multipliers by 0.1%"),o.createElement("br",null),o.createElement("p",null,"You have found the following exploits:"),o.createElement("ul",null,e.map(e=>o.createElement("li",{key:e},"* ",l.ExploitName(e)))))}))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SourceFileAccordion=void 0;const o=i(n(0)),s=n(232);t.SourceFileAccordion=function(e){const t=12===e.sf.n?"∞":"3";return o.createElement(s.Accordion,{headerContent:o.createElement(o.Fragment,null,e.sf.name,o.createElement("br",null),`Level ${e.level} / ${t}`),panelContent:o.createElement("p",{dangerouslySetInnerHTML:{__html:e.sf.info}})})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.OwnedSourceFiles=void 0;const o=i(n(0)),s=n(1),l=n(18),c=n(69),u=n(239),m=n(915);t.OwnedSourceFiles=function(){const e=s.Player.sourceFiles.slice();l.Settings.OwnedAugmentationsOrder===c.OwnedAugmentationsOrderSetting.Alphabetically&&e.sort((e,t)=>e.n-t.n);const t=e.map(e=>{const t="SourceFile"+e.n,n=u.SourceFiles[t];return null==n?(console.error(`Invalid source file number: ${e.n}`),null):o.createElement("li",{key:e.n},o.createElement(m.SourceFileAccordion,{level:e.lvl,sf:n}))});return o.createElement(o.Fragment,null,t)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ListConfiguration=void 0;const o=i(n(0)),s=n(71);t.ListConfiguration=function(e){return o.createElement(o.Fragment,null,o.createElement(s.StdButton,{onClick:e.expandAllButtonsFn,text:"Expand All"}),o.createElement(s.StdButton,{onClick:e.collapseAllButtonsFn,text:"Collapse All"}),o.createElement(s.StdButton,{onClick:e.sortInOrderFn,text:"Sort in Order",tooltip:"Sorts the Augmentations alphabetically and Source-Files in numeral order"}),o.createElement(s.StdButton,{onClick:e.sortByAcquirementTimeFn,text:"Sort by Acquirement Time",tooltip:"Sorts the Augmentations and Source-Files based on when you acquired them (same as default)"}))}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LocationsMetadata=void 0;const r=n(39),a=n(50),i=n(475);t.LocationsMetadata=[{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:8.18},name:a.LocationName.AevumAeroCorp,types:[i.LocationType.Company]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:15,startingSecurityLevel:8.19},name:a.LocationName.AevumBachmanAndAssociates,types:[i.LocationType.Company]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:18,startingSecurityLevel:9.55},name:a.LocationName.AevumClarkeIncorporated,types:[i.LocationType.Company]},{city:r.CityName.Aevum,costMult:3,expMult:2,name:a.LocationName.AevumCrushFitnessGym,types:[i.LocationType.Gym]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:37,startingSecurityLevel:17.02},name:a.LocationName.AevumECorp,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:512,techVendorMinRam:128},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:15.54},name:a.LocationName.AevumFulcrumTechnologies,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:1024,techVendorMinRam:256},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:7.89},name:a.LocationName.AevumGalacticCybersystems,types:[i.LocationType.Company]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:6,startingSecurityLevel:3.29},name:a.LocationName.AevumNetLinkTechnologies,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:64,techVendorMinRam:8},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:6,startingSecurityLevel:5.35},name:a.LocationName.AevumPolice,types:[i.LocationType.Company]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:5,startingSecurityLevel:5.02},name:a.LocationName.AevumRhoConstruction,types:[i.LocationType.Company]},{city:r.CityName.Aevum,costMult:10,expMult:5,name:a.LocationName.AevumSnapFitnessGym,types:[i.LocationType.Gym]},{city:r.CityName.Aevum,costMult:4,expMult:3,name:a.LocationName.AevumSummitUniversity,types:[i.LocationType.University]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:7,startingSecurityLevel:5.85},name:a.LocationName.AevumWatchdogSecurity,types:[i.LocationType.Company]},{city:r.CityName.Aevum,name:a.LocationName.AevumCasino,types:[i.LocationType.Casino]},{city:r.CityName.Chongqing,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:16.25},name:a.LocationName.ChongqingKuaiGongInternational,types:[i.LocationType.Company]},{city:r.CityName.Chongqing,infiltrationData:{maxClearanceLevel:18,startingSecurityLevel:12.59},name:a.LocationName.ChongqingSolarisSpaceSystems,types:[i.LocationType.Company]},{city:r.CityName.Ishima,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:5.02},name:a.LocationName.IshimaNovaMedical,types:[i.LocationType.Company]},{city:r.CityName.Ishima,infiltrationData:{maxClearanceLevel:10,startingSecurityLevel:3.2},name:a.LocationName.IshimaOmegaSoftware,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:128,techVendorMinRam:4},{city:r.CityName.Ishima,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:5.38},name:a.LocationName.IshimaStormTechnologies,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:512,techVendorMinRam:32},{city:r.CityName.NewTokyo,infiltrationData:{maxClearanceLevel:17,startingSecurityLevel:7.18},name:a.LocationName.NewTokyoDefComm,types:[i.LocationType.Company]},{city:r.CityName.NewTokyo,infiltrationData:{maxClearanceLevel:20,startingSecurityLevel:5.9},name:a.LocationName.NewTokyoGlobalPharmaceuticals,types:[i.LocationType.Company]},{city:r.CityName.NewTokyo,name:a.LocationName.NewTokyoNoodleBar,types:[i.LocationType.Company]},{city:r.CityName.NewTokyo,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:5.52},name:a.LocationName.NewTokyoVitaLife,types:[i.LocationType.Company,i.LocationType.Special]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:10,startingSecurityLevel:3.62},name:a.LocationName.Sector12AlphaEnterprises,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:8,techVendorMinRam:2},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:10.59},name:a.LocationName.Sector12BladeIndustries,types:[i.LocationType.Company]},{city:r.CityName.Sector12,name:a.LocationName.Sector12CIA,types:[i.LocationType.Company]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:15,startingSecurityLevel:4.66},name:a.LocationName.Sector12CarmichaelSecurity,types:[i.LocationType.Company]},{city:r.CityName.Sector12,name:a.LocationName.Sector12CityHall,types:[i.LocationType.Special]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:5.9},name:a.LocationName.Sector12DeltaOne,types:[i.LocationType.Company]},{city:r.CityName.Sector12,name:a.LocationName.Sector12FoodNStuff,types:[i.LocationType.Company]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:8.18},name:a.LocationName.Sector12FourSigma,types:[i.LocationType.Company]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:17,startingSecurityLevel:6.02},name:a.LocationName.Sector12IcarusMicrosystems,types:[i.LocationType.Company]},{city:r.CityName.Sector12,expMult:1,costMult:1,name:a.LocationName.Sector12IronGym,types:[i.LocationType.Gym]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:5,startingSecurityLevel:3.13},name:a.LocationName.Sector12JoesGuns,types:[i.LocationType.Company]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:31,startingSecurityLevel:16.36},name:a.LocationName.Sector12MegaCorp,types:[i.LocationType.Company]},{city:r.CityName.Sector12,name:a.LocationName.Sector12NSA,types:[i.LocationType.Company,i.LocationType.Special]},{city:r.CityName.Sector12,costMult:20,expMult:10,name:a.LocationName.Sector12PowerhouseGym,types:[i.LocationType.Gym]},{city:r.CityName.Sector12,costMult:3,expMult:2,name:a.LocationName.Sector12RothmanUniversity,types:[i.LocationType.University]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:5.9},name:a.LocationName.Sector12UniversalEnergy,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:15,startingSecurityLevel:3.59},name:a.LocationName.VolhavenCompuTek,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:256,techVendorMinRam:8},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:18,startingSecurityLevel:7.28},name:a.LocationName.VolhavenHeliosLabs,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:15,startingSecurityLevel:4.35},name:a.LocationName.VolhavenLexoCorp,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,costMult:7,expMult:4,name:a.LocationName.VolhavenMilleniumFitnessGym,types:[i.LocationType.Gym]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:50,startingSecurityLevel:8.53},name:a.LocationName.VolhavenNWO,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:7.74},name:a.LocationName.VolhavenOmniTekIncorporated,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:1024,techVendorMinRam:128},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:22,startingSecurityLevel:6},name:a.LocationName.VolhavenOmniaCybersystems,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:18,startingSecurityLevel:4.77},name:a.LocationName.VolhavenSysCoreSecurities,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,costMult:5,expMult:4,name:a.LocationName.VolhavenZBInstituteOfTechnology,types:[i.LocationType.University]},{city:null,name:a.LocationName.Hospital,types:[i.LocationType.Hospital]},{city:null,name:a.LocationName.Slums,types:[i.LocationType.Slums]},{city:null,name:a.LocationName.TravelAgency,types:[i.LocationType.TravelAgency]},{city:null,name:a.LocationName.WorldStockExchange,types:[i.LocationType.StockMarket]}],function(){for(const e of t.LocationsMetadata)e&&e.infiltrationData&&console.log(e.infiltrationData.startingSecurityLevel+2)}()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Location=void 0;const r=n(50);t.Location=class{constructor(e){this.city=null,this.costMult=0,this.expMult=0,this.name=r.LocationName.Void,this.types=[],this.techVendorMaxRam=0,this.techVendorMinRam=0,e.city&&(this.city=e.city),e.costMult&&(this.costMult=e.costMult),e.expMult&&(this.expMult=e.expMult),e.infiltrationData&&(this.infiltrationData=e.infiltrationData),e.name&&(this.name=e.name),e.types&&(this.types=e.types),e.techVendorMaxRam&&(this.techVendorMaxRam=e.techVendorMaxRam),e.techVendorMinRam&&(this.techVendorMinRam=e.techVendorMinRam)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.City=void 0;t.City=class{constructor(e,t=[],n=""){this.name=e,this.locations=t,this.asciiArt=n}addLocation(e){this.locations.push(e)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SkillNames=void 0,t.SkillNames={BladesIntuition:"Blade's Intuition",Cloak:"Cloak",Marksman:"Marksman",WeaponProficiency:"Weapon Proficiency",ShortCircuit:"Short-Circuit",DigitalObserver:"Digital Observer",Tracer:"Tracer",Overclock:"Overclock",Reaper:"Reaper",EvasiveSystem:"Evasive System",Datamancer:"Datamancer",CybersEdge:"Cyber's Edge",HandsOfMidas:"Hands of Midas",Hyperdrive:"Hyperdrive"}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SourceFile=void 0;const r=n(141);t.SourceFile=class{constructor(e,t=""){this.lvl=1,this.owned=!1;const n="BitNode"+e,a=r.BitNodes[n];if(null==a)throw new Error("Invalid Bit Node for this Source File");this.n=e,this.name=`Source-File ${e}: ${a.name}`,this.info=t}}},,,,,,,,,,,,,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ErrorBoundary=void 0;const o=i(n(0)),s=n(489),l={border:"1px solid red",display:"inline-block",margin:"4px",padding:"4px"};t.ErrorBoundary=class extends o.Component{constructor(e){super(e),this.state={errorInfo:"",hasError:!1}}componentDidCatch(e,t){console.error("Caught error in React ErrorBoundary. Component stack:"),console.error(t.componentStack)}componentDidMount(){const e=()=>{this.setState({hasError:!1})};this.hasEventEmitter()&&this.props.eventEmitterForReset.addSubscriber({cb:e,id:this.props.id})}componentWillUnmount(){this.hasEventEmitter()&&this.props.eventEmitterForReset.removeSubscriber(this.props.id)}hasEventEmitter(){return null!=this.props.eventEmitterForReset&&this.props.eventEmitterForReset instanceof s.EventEmitter&&null!=this.props.id&&"string"==typeof this.props.id}render(){return this.state.hasError?o.createElement("div",{style:l},o.createElement("p",null,"Error rendering UI. This is (probably) a bug. Please report to game developer."),o.createElement("p",null,"In the meantime, try refreshing the game WITHOUT saving."),o.createElement("p",null,`Error info: ${this.state.errorInfo}`)):this.props.children}static getDerivedStateFromError(e){return{errorInfo:e.message,hasError:!0}}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickersConfig=t.TickerDisplayMode=void 0;const o=i(n(0)),s=n(71);var l;!function(e){e[e.AllStocks=0]="AllStocks",e[e.Portfolio=1]="Portfolio"}(l=t.TickerDisplayMode||(t.TickerDisplayMode={}));t.StockTickersConfig=class extends o.Component{constructor(e){super(e)}renderDisplayModeButton(){let e="",t="";return this.props.tickerDisplayMode===l.Portfolio?(e="Switch to 'All Stocks' Mode",t="Displays all stocks on the WSE"):(e="Switch to 'Portfolio' Mode",t="Displays only the stocks for which you have shares or orders"),o.createElement(s.StdButton,{onClick:this.props.changeDisplayMode,text:e,tooltip:t})}render(){return o.createElement("div",null,this.renderDisplayModeButton(),o.createElement(s.StdButton,{onClick:this.props.expandAllTickers,text:"Expand Tickers"}),o.createElement(s.StdButton,{onClick:this.props.collapseAllTickers,text:"Collapse Tickers"}),o.createElement("input",{className:"text-input",id:"stock-market-watchlist-filter",onChange:this.props.changeWatchlistFilter,placeholder:"Filter Stocks by symbol (comma-separated list)",type:"text"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickerTxButton=void 0;const o=i(n(0));t.StockTickerTxButton=function(e){let t="stock-market-input std-button";return null!=e.tooltip&&(t+=" tooltip"),o.createElement("button",{className:t,onClick:e.onClick},e.text,null!=e.tooltip&&o.createElement("span",{className:"tooltiptext"},e.tooltip))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickerPositionText=void 0;const o=i(n(0)),s=n(3),l=n(31),c=n(48),u={display:"block"};t.StockTickerPositionText=class extends o.Component{renderLongPosition(){const e=this.props.stock,t=e.playerShares*e.playerAvgPx,n=(e.getBidPrice()-e.playerAvgPx)*e.playerShares;let r=n/t;return isNaN(r)&&(r=0),o.createElement("div",null,o.createElement("h3",{className:"tooltip"},"Long Position:",o.createElement("span",{className:"tooltiptext"},"Shares in the long position will increase in value if the price of the corresponding stock increases")),o.createElement("br",null),o.createElement("p",null,"Shares: ",s.numeralWrapper.formatShares(e.playerShares)),o.createElement("br",null),o.createElement("p",null,"Average Price: ",l.Money(e.playerAvgPx)," (Total Cost: ",l.Money(t),")"),o.createElement("br",null),o.createElement("p",null,"Profit: ",l.Money(n)," (",s.numeralWrapper.formatPercentage(r),")"),o.createElement("br",null))}renderShortPosition(){const e=this.props.stock,t=e.playerShortShares*e.playerAvgShortPx,n=(e.playerAvgShortPx-e.getAskPrice())*e.playerShortShares;let r=n/t;return isNaN(r)&&(r=0),8===this.props.p.bitNodeN||c.SourceFileFlags[8]>=2?o.createElement("div",null,o.createElement("h3",{className:"tooltip"},"Short Position:",o.createElement("span",{className:"tooltiptext"},"Shares in the short position will increase in value if the price of the corresponding stock decreases")),o.createElement("br",null),o.createElement("p",null,"Shares: ",s.numeralWrapper.formatShares(e.playerShortShares)),o.createElement("br",null),o.createElement("p",null,"Average Price: ",l.Money(e.playerAvgShortPx)," (Total Cost: ",l.Money(t),")"),o.createElement("br",null),o.createElement("p",null,"Profit: ",l.Money(n)," (",s.numeralWrapper.formatPercentage(r),")"),o.createElement("br",null)):null}render(){const e=this.props.stock;return o.createElement("div",{className:"stock-market-position-text"},o.createElement("p",{style:u},"Max Shares: ",s.numeralWrapper.formatShares(e.maxShares)),o.createElement("p",{className:"tooltip"},"Ask Price: ",l.Money(e.getAskPrice()),o.createElement("span",{className:"tooltiptext"},"See Investopedia for details on what this is")),o.createElement("br",null),o.createElement("p",{className:"tooltip"},"Bid Price: ",l.Money(e.getBidPrice()),o.createElement("span",{className:"tooltiptext"},"See Investopedia for details on what this is")),this.renderLongPosition(),this.renderShortPosition())}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickerOrder=void 0;const o=i(n(0)),s=n(107),l=n(3),c=n(31);t.StockTickerOrder=class extends o.Component{constructor(e){super(e),this.handleCancelOrderClick=this.handleCancelOrderClick.bind(this)}handleCancelOrderClick(){this.props.cancelOrder({order:this.props.order})}render(){const e=this.props.order,t=e.pos===s.PositionTypes.Long?"Long Position":"Short Position",n=o.createElement(o.Fragment,null,e.type," - ",t," - ",l.numeralWrapper.formatShares(e.shares)," @ ",c.Money(e.price));return o.createElement("li",null,n,o.createElement("button",{className:"std-button stock-market-order-cancel-btn",onClick:this.handleCancelOrderClick},"Cancel Order"))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickerOrderList=void 0;const o=i(n(0)),s=n(940);t.StockTickerOrderList=class extends o.Component{render(){const e=[];for(let t=0;tt.price&&(p.color="red"),o.createElement("pre",{style:p},m)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTicker=void 0;const o=i(n(0)),s=n(943),l=n(941),c=n(939),u=n(938),m=n(295),p=n(124),h=n(107),d=n(48),_=n(3),g=n(232),y=n(31),f=n(12),b=n(58);var E;!function(e){e.Market="Market Order",e.Limit="Limit Order",e.Stop="Stop Order"}(E||(E={}));t.StockTicker=class extends o.Component{constructor(e){super(e),this.state={orderType:E.Market,position:h.PositionTypes.Long,qty:""},this.getBuyTransactionCostContent=this.getBuyTransactionCostContent.bind(this),this.getSellTransactionCostContent=this.getSellTransactionCostContent.bind(this),this.handleBuyButtonClick=this.handleBuyButtonClick.bind(this),this.handleBuyMaxButtonClick=this.handleBuyMaxButtonClick.bind(this),this.handleHeaderClick=this.handleHeaderClick.bind(this),this.handleOrderTypeChange=this.handleOrderTypeChange.bind(this),this.handlePositionTypeChange=this.handlePositionTypeChange.bind(this),this.handleQuantityChange=this.handleQuantityChange.bind(this),this.handleSellButtonClick=this.handleSellButtonClick.bind(this),this.handleSellAllButtonClick=this.handleSellAllButtonClick.bind(this)}createPlaceOrderPopupBox(e,t,n){const r=b.yesNoTxtInpBoxGetYesButton(),a=b.yesNoTxtInpBoxGetNoButton();r.innerText=e,r.addEventListener("click",()=>{const e=parseFloat(b.yesNoTxtInpBoxGetInput());if(isNaN(e))return f.dialogBoxCreate(`Invalid input for price: ${b.yesNoTxtInpBoxGetInput()}`),!1;n(e),b.yesNoTxtInpBoxClose()}),a.innerText="Cancel Order",a.addEventListener("click",()=>{b.yesNoTxtInpBoxClose()}),b.yesNoTxtInpBoxCreate(t)}getBuyTransactionCostContent(){const e=this.props.stock,t=this.getQuantity();if(isNaN(t))return null;const n=m.getBuyTransactionCost(e,t,this.state.position);return null==n?null:o.createElement(o.Fragment,null,"Purchasing ",_.numeralWrapper.formatShares(t)," shares (",this.state.position===h.PositionTypes.Long?"Long":"Short",") will cost ",y.Money(n),".")}getQuantity(){return Math.round(parseFloat(this.state.qty))}getSellTransactionCostContent(){const e=this.props.stock,t=this.getQuantity();if(isNaN(t))return null;if(this.state.position===h.PositionTypes.Long){if(t>e.playerShares)return o.createElement(o.Fragment,null,"You do not have this many shares in the Long position")}else if(t>e.playerShortShares)return o.createElement(o.Fragment,null,"You do not have this many shares in the Short position");const n=m.getSellTransactionGain(e,t,this.state.position);return null==n?null:o.createElement(o.Fragment,null,"Selling ",_.numeralWrapper.formatShares(t)," shares (",this.state.position===h.PositionTypes.Long?"Long":"Short",") will result in a gain of ",y.Money(n),".")}handleBuyButtonClick(){const e=this.getQuantity();if(isNaN(e))f.dialogBoxCreate(`Invalid input for quantity (number of shares): ${this.state.qty}`);else switch(this.state.orderType){case E.Market:this.state.position===h.PositionTypes.Short?this.props.buyStockShort(this.props.stock,e):this.props.buyStockLong(this.props.stock,e),this.props.rerenderAllTickers();break;case E.Limit:this.createPlaceOrderPopupBox("Place Buy Limit Order","Enter the price for your Limit Order",t=>{this.props.placeOrder(this.props.stock,e,t,p.OrderTypes.LimitBuy,this.state.position)});break;case E.Stop:this.createPlaceOrderPopupBox("Place Buy Stop Order","Enter the price for your Stop Order",t=>{this.props.placeOrder(this.props.stock,e,t,p.OrderTypes.StopBuy,this.state.position)})}}handleBuyMaxButtonClick(){const e=this.props.p.money.toNumber(),t=this.props.stock;let n=m.calculateBuyMaxAmount(t,this.state.position,e);switch(n=Math.min(n,Math.round(t.maxShares-t.playerShares-t.playerShortShares)),this.state.orderType){case E.Market:this.state.position===h.PositionTypes.Short?this.props.buyStockShort(t,n):this.props.buyStockLong(t,n),this.props.rerenderAllTickers();break;default:f.dialogBoxCreate("ERROR: 'Buy Max' only works for Market Orders")}}handleHeaderClick(e){const t=e.currentTarget;t.classList.toggle("active");const n=t.nextElementSibling;"block"===n.style.display?n.style.display="none":n.style.display="block"}handleOrderTypeChange(e){switch(e.target.value){case E.Limit:this.setState({orderType:E.Limit});break;case E.Stop:this.setState({orderType:E.Stop});break;case E.Market:default:this.setState({orderType:E.Market})}}handlePositionTypeChange(e){e.target.value===h.PositionTypes.Short?this.setState({position:h.PositionTypes.Short}):this.setState({position:h.PositionTypes.Long})}handleQuantityChange(e){this.setState({qty:e.target.value})}handleSellButtonClick(){const e=this.getQuantity();if(isNaN(e))f.dialogBoxCreate(`Invalid input for quantity (number of shares): ${this.state.qty}`);else switch(this.state.orderType){case E.Market:this.state.position===h.PositionTypes.Short?this.props.sellStockShort(this.props.stock,e):this.props.sellStockLong(this.props.stock,e),this.props.rerenderAllTickers();break;case E.Limit:this.createPlaceOrderPopupBox("Place Sell Limit Order","Enter the price for your Limit Order",t=>{this.props.placeOrder(this.props.stock,e,t,p.OrderTypes.LimitSell,this.state.position)});break;case E.Stop:this.createPlaceOrderPopupBox("Place Sell Stop Order","Enter the price for your Stop Order",t=>{this.props.placeOrder(this.props.stock,e,t,p.OrderTypes.StopSell,this.state.position)})}}handleSellAllButtonClick(){const e=this.props.stock;switch(this.state.orderType){case E.Market:this.state.position===h.PositionTypes.Short?this.props.sellStockShort(e,e.playerShortShares):this.props.sellStockLong(e,e.playerShares),this.props.rerenderAllTickers();break;default:f.dialogBoxCreate("ERROR: 'Sell All' only works for Market Orders")}}hasOrderAccess(){return 8===this.props.p.bitNodeN||d.SourceFileFlags[8]>=3}hasShortAccess(){return 8===this.props.p.bitNodeN||d.SourceFileFlags[8]>=2}render(){return o.createElement("li",null,o.createElement(g.Accordion,{headerContent:o.createElement(s.StockTickerHeaderText,{p:this.props.p,stock:this.props.stock}),panelContent:o.createElement("div",null,o.createElement("input",{className:"stock-market-input",onChange:this.handleQuantityChange,placeholder:"Quantity (Shares)",value:this.state.qty}),o.createElement("select",{className:"stock-market-input dropdown",onChange:this.handlePositionTypeChange,value:this.state.position},o.createElement("option",{value:h.PositionTypes.Long},"Long"),this.hasShortAccess()&&o.createElement("option",{value:h.PositionTypes.Short},"Short")),o.createElement("select",{className:"stock-market-input dropdown",onChange:this.handleOrderTypeChange,value:this.state.orderType},o.createElement("option",{value:E.Market},E.Market),this.hasOrderAccess()&&o.createElement("option",{value:E.Limit},E.Limit),this.hasOrderAccess()&&o.createElement("option",{value:E.Stop},E.Stop)),o.createElement(u.StockTickerTxButton,{onClick:this.handleBuyButtonClick,text:"Buy",tooltip:this.getBuyTransactionCostContent()}),o.createElement(u.StockTickerTxButton,{onClick:this.handleSellButtonClick,text:"Sell",tooltip:this.getSellTransactionCostContent()}),o.createElement(u.StockTickerTxButton,{onClick:this.handleBuyMaxButtonClick,text:"Buy MAX"}),o.createElement(u.StockTickerTxButton,{onClick:this.handleSellAllButtonClick,text:"Sell ALL"}),o.createElement(c.StockTickerPositionText,{p:this.props.p,stock:this.props.stock}),o.createElement(l.StockTickerOrderList,{cancelOrder:this.props.cancelOrder,orders:this.props.orders,p:this.props.p,stock:this.props.stock}))}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickers=void 0;const o=i(n(0)),s=n(944),l=n(937),c=n(199),u=n(936);t.StockTickers=class extends o.Component{constructor(e){super(e),this.state={rerenderFlag:!1,tickerDisplayMode:l.TickerDisplayMode.AllStocks,watchlistFilter:"",watchlistSymbols:[]},this.changeDisplayMode=this.changeDisplayMode.bind(this),this.changeWatchlistFilter=this.changeWatchlistFilter.bind(this),this.collapseAllTickers=this.collapseAllTickers.bind(this),this.expandAllTickers=this.expandAllTickers.bind(this),this.rerender=this.rerender.bind(this),this.listRef=o.createRef()}changeDisplayMode(){this.state.tickerDisplayMode===l.TickerDisplayMode.AllStocks?this.setState({tickerDisplayMode:l.TickerDisplayMode.Portfolio}):this.setState({tickerDisplayMode:l.TickerDisplayMode.AllStocks})}changeWatchlistFilter(e){const t=e.target.value,n=t.replace(/\s/g,"");this.setState({watchlistFilter:t}),""!==n?this.setState({watchlistSymbols:n.split(",")}):this.setState({watchlistSymbols:[]})}collapseAllTickers(){const e=this.listRef.current;if(null==e)return;const t=e.getElementsByClassName("accordion-header");for(let e=0;e({rerenderFlag:!e.rerenderFlag}))}render(){const e=[];for(const t in this.props.stockMarket){const n=this.props.stockMarket[t];if(n instanceof c.Stock){if(this.state.watchlistSymbols.length>0&&!this.state.watchlistSymbols.includes(n.symbol))continue;let t=this.props.stockMarket.Orders[n.symbol];if(null==t&&(t=[]),this.state.tickerDisplayMode===l.TickerDisplayMode.Portfolio&&0===n.playerShares&&0===n.playerShortShares&&0===t.length)continue;e.push(o.createElement(s.StockTicker,{buyStockLong:this.props.buyStockLong,buyStockShort:this.props.buyStockShort,cancelOrder:this.props.cancelOrder,key:n.symbol,orders:t,p:this.props.p,placeOrder:this.props.placeOrder,rerenderAllTickers:this.rerender,sellStockLong:this.props.sellStockLong,sellStockShort:this.props.sellStockShort,stock:n}))}}const t={eventEmitterForReset:this.props.eventEmitterForReset,id:"StockTickersErrorBoundary"};return o.createElement(u.ErrorBoundary,Object.assign({},t),o.createElement(l.StockTickersConfig,{changeDisplayMode:this.changeDisplayMode,changeWatchlistFilter:this.changeWatchlistFilter,collapseAllTickers:this.collapseAllTickers,expandAllTickers:this.expandAllTickers,tickerDisplayMode:this.state.tickerDisplayMode}),o.createElement("ul",{id:"stock-market-list",ref:this.listRef},e))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.InfoAndPurchases=void 0;const o=i(n(0)),s=n(255),l=n(11),c=n(71),u=n(642),m=n(31),p=n(12),h={display:"block"};t.InfoAndPurchases=class extends o.Component{constructor(e){super(e),this.handleClick4SMarketDataHelpTip=this.handleClick4SMarketDataHelpTip.bind(this),this.purchaseWseAccount=this.purchaseWseAccount.bind(this),this.purchaseTixApiAccess=this.purchaseTixApiAccess.bind(this),this.purchase4SMarketData=this.purchase4SMarketData.bind(this),this.purchase4SMarketDataTixApiAccess=this.purchase4SMarketDataTixApiAccess.bind(this)}handleClick4SMarketDataHelpTip(){p.dialogBoxCreate("Access to the 4S Market Data feed will display two additional pieces of information about each stock: Price Forecast & Volatility

Price Forecast indicates the probability the stock has of increasing or decreasing. A '+' forecast means the stock has a higher chance of increasing than decreasing, and a '-' means the opposite. The number of '+/-' symbols is used to illustrate the magnitude of these probabilities. For example, '+++' means that the stock has a significantly higher chance of increasing than decreasing, while '+' means that the stock only has a slightly higher chance of increasing than decreasing.

Volatility represents the maximum percentage by which a stock's price can change every tick (a tick occurs every few seconds while the game is running).

A stock's price forecast can change over time. This is also affected by volatility. The more volatile a stock is, the more its price forecast will change.")}purchaseWseAccount(){if(this.props.p.hasWseAccount)return;if(!this.props.p.canAfford(l.CONSTANTS.WSEAccountCost))return;this.props.p.hasWseAccount=!0,this.props.initStockMarket(),this.props.p.loseMoney(l.CONSTANTS.WSEAccountCost),this.props.rerender();const e=document.getElementById("world-menu-header");e instanceof HTMLElement&&(e.click(),e.click())}purchaseTixApiAccess(){this.props.p.hasTixApiAccess||this.props.p.canAfford(l.CONSTANTS.TIXAPICost)&&(this.props.p.hasTixApiAccess=!0,this.props.p.loseMoney(l.CONSTANTS.TIXAPICost),this.props.rerender())}purchase4SMarketData(){this.props.p.has4SData||this.props.p.canAfford(s.getStockMarket4SDataCost())&&(this.props.p.has4SData=!0,this.props.p.loseMoney(s.getStockMarket4SDataCost()),this.props.rerender())}purchase4SMarketDataTixApiAccess(){this.props.p.has4SDataTixApi||this.props.p.canAfford(s.getStockMarket4STixApiCost())&&(this.props.p.has4SDataTixApi=!0,this.props.p.loseMoney(s.getStockMarket4STixApiCost()),this.props.rerender())}renderPurchaseWseAccountButton(){if(this.props.p.hasWseAccount)return o.createElement(u.StdButtonPurchased,{text:"WSE Account - Purchased"});{const e=l.CONSTANTS.WSEAccountCost;return o.createElement(c.StdButton,{disabled:!this.props.p.canAfford(e),onClick:this.purchaseWseAccount,text:o.createElement(o.Fragment,null,"Buy WSE Account - ",m.Money(e))})}}renderPurchaseTixApiAccessButton(){if(this.props.p.hasTixApiAccess)return o.createElement(u.StdButtonPurchased,{text:"TIX API Access - Purchased"});{const e=l.CONSTANTS.TIXAPICost;return o.createElement(c.StdButton,{disabled:!this.props.p.canAfford(e)||!this.props.p.hasWseAccount,onClick:this.purchaseTixApiAccess,style:h,text:o.createElement(o.Fragment,null,"Buy Trade Information eXchange (TIX) API Access - ",m.Money(e))})}}renderPurchase4SMarketDataButton(){if(this.props.p.has4SData)return o.createElement(u.StdButtonPurchased,{text:"4S Market Data - Purchased",tooltip:"Lets you view additional pricing and volatility information about stocks"});{const e=s.getStockMarket4SDataCost();return o.createElement(c.StdButton,{disabled:!this.props.p.canAfford(e)||!this.props.p.hasWseAccount,onClick:this.purchase4SMarketData,text:o.createElement(o.Fragment,null,"Buy 4S Market Data Access - ",m.Money(e)),tooltip:"Lets you view additional pricing and volatility information about stocks"})}}renderPurchase4SMarketDataTixApiAccessButton(){if(this.props.p.hasTixApiAccess){if(this.props.p.has4SDataTixApi)return o.createElement(u.StdButtonPurchased,{text:"4S Market Data TIX API - Purchased",tooltip:"Let you access 4S Market Data through Netscript"});{const e=s.getStockMarket4STixApiCost();return o.createElement(c.StdButton,{disabled:!this.props.p.canAfford(e),onClick:this.purchase4SMarketDataTixApiAccess,text:o.createElement(o.Fragment,null,"Buy 4S Market Data TIX API Access - ",m.Money(e)),tooltip:"Let you access 4S Market Data through Netscript"})}}return o.createElement(c.StdButton,{disabled:!0,text:"Buy 4S Market Data TIX API Access",tooltip:"Requires TIX API Access"})}render(){return o.createElement("div",{className:"stock-market-info-and-purchases"},o.createElement("p",null,"Welcome to the World Stock Exchange (WSE)!"),o.createElement("button",{className:"std-button"},o.createElement("a",{href:"https://bitburner.readthedocs.io/en/latest/basicgameplay/stockmarket.html",target:"_blank"},"Investopedia")),o.createElement("br",null),o.createElement("p",null,"To begin trading, you must first purchase an account:"),this.renderPurchaseWseAccountButton(),o.createElement("h2",null,"Trade Information eXchange (TIX) API"),o.createElement("p",null,"TIX, short for Trade Information eXchange, is the communications protocol used by the WSE. Purchasing access to the TIX API lets you write code to create your own algorithmic/automated trading strategies."),this.renderPurchaseTixApiAccessButton(),o.createElement("h2",null,"Four Sigma (4S) Market Data Feed"),o.createElement("p",null,"Four Sigma's (4S) Market Data Feed provides information about stocks that will help your trading strategies."),this.renderPurchase4SMarketDataButton(),o.createElement("button",{className:"help-tip-big",onClick:this.handleClick4SMarketDataHelpTip},"?"),this.renderPurchase4SMarketDataTixApiAccessButton(),o.createElement("p",null,"Commission Fees: Every transaction you make has a ",m.Money(l.CONSTANTS.StockMarketCommission)," commission fee."),o.createElement("br",null),o.createElement("p",null,"WARNING: When you reset after installing Augmentations, the Stock Market is reset. You will retain your WSE Account, access to the TIX API, and 4S Market Data access. However, all of your stock positions are lost, so make sure to sell your stocks before installing Augmentations!"))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockMarketRoot=void 0;const o=i(n(0)),s=n(946),l=n(945);t.StockMarketRoot=class extends o.Component{constructor(e){super(e),this.state={rerenderFlag:!1},this.rerender=this.rerender.bind(this)}rerender(){this.setState(e=>({rerenderFlag:!e.rerenderFlag}))}render(){return o.createElement("div",null,o.createElement(s.InfoAndPurchases,{initStockMarket:this.props.initStockMarket,p:this.props.p,rerender:this.rerender}),this.props.p.hasWseAccount&&o.createElement(l.StockTickers,{buyStockLong:this.props.buyStockLong,buyStockShort:this.props.buyStockShort,cancelOrder:this.props.cancelOrder,eventEmitterForReset:this.props.eventEmitterForReset,p:this.props.p,placeOrder:this.props.placeOrder,sellStockLong:this.props.sellStockLong,sellStockShort:this.props.sellStockShort,stockMarket:this.props.stockMarket}))}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.InitStockMetadata=void 0;const r=n(291),a=n(50);t.InitStockMetadata=[{b:!0,initPrice:{max:28e3,min:17e3},marketCap:24e11,mv:{divisor:100,max:50,min:40},name:a.LocationName.AevumECorp,otlkMag:19,spreadPerc:{divisor:10,max:5,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.AevumECorp]},{b:!0,initPrice:{max:34e3,min:24e3},marketCap:24e11,mv:{divisor:100,max:50,min:40},name:a.LocationName.Sector12MegaCorp,otlkMag:19,spreadPerc:{divisor:10,max:5,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.Sector12MegaCorp]},{b:!0,initPrice:{max:25e3,min:12e3},marketCap:16e11,mv:{divisor:100,max:80,min:70},name:a.LocationName.Sector12BladeIndustries,otlkMag:13,spreadPerc:{divisor:10,max:6,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.Sector12BladeIndustries]},{b:!0,initPrice:{max:25e3,min:1e4},marketCap:15e11,mv:{divisor:100,max:75,min:65},name:a.LocationName.AevumClarkeIncorporated,otlkMag:12,spreadPerc:{divisor:10,max:5,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.AevumClarkeIncorporated]},{b:!0,initPrice:{max:43e3,min:32e3},marketCap:18e11,mv:{divisor:100,max:70,min:60},name:a.LocationName.VolhavenOmniTekIncorporated,otlkMag:12,spreadPerc:{divisor:10,max:6,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.VolhavenOmniTekIncorporated]},{b:!0,initPrice:{max:8e4,min:5e4},marketCap:2e12,mv:{divisor:100,max:110,min:100},name:a.LocationName.Sector12FourSigma,otlkMag:17,spreadPerc:{divisor:10,max:10,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.Sector12FourSigma]},{b:!0,initPrice:{max:28e3,min:16e3},marketCap:19e11,mv:{divisor:100,max:85,min:75},name:a.LocationName.ChongqingKuaiGongInternational,otlkMag:10,spreadPerc:{divisor:10,max:7,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.ChongqingKuaiGongInternational]},{b:!0,initPrice:{max:36e3,min:29e3},marketCap:2e12,mv:{divisor:100,max:130,min:120},name:a.LocationName.AevumFulcrumTechnologies,otlkMag:16,spreadPerc:{divisor:10,max:10,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.AevumFulcrumTechnologies]},{b:!0,initPrice:{max:25e3,min:2e4},marketCap:12e11,mv:{divisor:100,max:90,min:80},name:a.LocationName.IshimaStormTechnologies,otlkMag:7,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.IshimaStormTechnologies]},{b:!0,initPrice:{max:19e3,min:6e3},marketCap:9e11,mv:{divisor:100,max:70,min:60},name:a.LocationName.NewTokyoDefComm,otlkMag:10,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.NewTokyoDefComm]},{b:!0,initPrice:{max:18e3,min:1e4},marketCap:825e9,mv:{divisor:100,max:65,min:55},name:a.LocationName.VolhavenHeliosLabs,otlkMag:9,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.VolhavenHeliosLabs]},{b:!0,initPrice:{max:14e3,min:8e3},marketCap:1e12,mv:{divisor:100,max:80,min:70},name:a.LocationName.NewTokyoVitaLife,otlkMag:7,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.NewTokyoVitaLife]},{b:!0,initPrice:{max:24e3,min:12e3},marketCap:8e11,mv:{divisor:100,max:70,min:60},name:a.LocationName.Sector12IcarusMicrosystems,otlkMag:7.5,spreadPerc:{divisor:10,max:10,min:3},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.Sector12IcarusMicrosystems]},{b:!0,initPrice:{max:29e3,min:16e3},marketCap:9e11,mv:{divisor:100,max:60,min:50},name:a.LocationName.Sector12UniversalEnergy,otlkMag:10,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.Sector12UniversalEnergy]},{b:!0,initPrice:{max:17e3,min:8e3},marketCap:64e10,mv:{divisor:100,max:65,min:55},name:a.LocationName.AevumAeroCorp,otlkMag:6,spreadPerc:{divisor:10,max:10,min:3},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.AevumAeroCorp]},{b:!0,initPrice:{max:15e3,min:6e3},marketCap:6e11,mv:{divisor:100,max:75,min:65},name:a.LocationName.VolhavenOmniaCybersystems,otlkMag:4.5,spreadPerc:{divisor:10,max:11,min:4},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.VolhavenOmniaCybersystems]},{b:!0,initPrice:{max:28e3,min:14e3},marketCap:705e9,mv:{divisor:100,max:80,min:70},name:a.LocationName.ChongqingSolarisSpaceSystems,otlkMag:8.5,spreadPerc:{divisor:10,max:12,min:4},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.ChongqingSolarisSpaceSystems]},{b:!0,initPrice:{max:3e4,min:12e3},marketCap:695e9,mv:{divisor:100,max:65,min:55},name:a.LocationName.NewTokyoGlobalPharmaceuticals,otlkMag:10.5,spreadPerc:{divisor:10,max:10,min:4},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.NewTokyoGlobalPharmaceuticals]},{b:!0,initPrice:{max:27e3,min:15e3},marketCap:6e11,mv:{divisor:100,max:80,min:70},name:a.LocationName.IshimaNovaMedical,otlkMag:5,spreadPerc:{divisor:10,max:11,min:4},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.IshimaNovaMedical]},{b:!0,initPrice:{max:8500,min:4e3},marketCap:45e10,mv:{divisor:100,max:260,min:240},name:a.LocationName.AevumWatchdogSecurity,otlkMag:1.5,spreadPerc:{divisor:10,max:12,min:5},shareTxForMovement:{max:54e3,min:12e3},symbol:r.StockSymbols[a.LocationName.AevumWatchdogSecurity]},{b:!0,initPrice:{max:8e3,min:4500},marketCap:3e11,mv:{divisor:100,max:135,min:115},name:a.LocationName.VolhavenLexoCorp,otlkMag:6,spreadPerc:{divisor:10,max:12,min:5},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.VolhavenLexoCorp]},{b:!0,initPrice:{max:7e3,min:2e3},marketCap:18e10,mv:{divisor:100,max:70,min:50},name:a.LocationName.AevumRhoConstruction,otlkMag:1,spreadPerc:{divisor:10,max:10,min:3},shareTxForMovement:{max:126e3,min:6e4},symbol:r.StockSymbols[a.LocationName.AevumRhoConstruction]},{b:!0,initPrice:{max:8500,min:4e3},marketCap:24e10,mv:{divisor:100,max:205,min:175},name:a.LocationName.Sector12AlphaEnterprises,otlkMag:10,spreadPerc:{divisor:10,max:16,min:5},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.Sector12AlphaEnterprises]},{b:!0,initPrice:{max:8e3,min:3e3},marketCap:2e11,mv:{divisor:100,max:170,min:150},name:a.LocationName.VolhavenSysCoreSecurities,otlkMag:3,spreadPerc:{divisor:10,max:12,min:5},shareTxForMovement:{max:9e4,min:15e3},symbol:r.StockSymbols[a.LocationName.VolhavenSysCoreSecurities]},{b:!0,initPrice:{max:6e3,min:1e3},marketCap:185e9,mv:{divisor:100,max:100,min:80},name:a.LocationName.VolhavenCompuTek,otlkMag:4,spreadPerc:{divisor:10,max:12,min:4},shareTxForMovement:{max:126e3,min:6e4},symbol:r.StockSymbols[a.LocationName.VolhavenCompuTek]},{b:!0,initPrice:{max:5e3,min:1e3},marketCap:58e9,mv:{divisor:100,max:400,min:200},name:a.LocationName.AevumNetLinkTechnologies,otlkMag:1,spreadPerc:{divisor:10,max:20,min:5},shareTxForMovement:{max:54e3,min:18e3},symbol:r.StockSymbols[a.LocationName.AevumNetLinkTechnologies]},{b:!0,initPrice:{max:8e3,min:1e3},marketCap:6e10,mv:{divisor:100,max:110,min:90},name:a.LocationName.IshimaOmegaSoftware,otlkMag:.5,spreadPerc:{divisor:10,max:13,min:4},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.IshimaOmegaSoftware]},{b:!1,initPrice:{max:4500,min:500},marketCap:45e9,mv:{divisor:100,max:80,min:70},name:a.LocationName.Sector12FoodNStuff,otlkMag:1,spreadPerc:{divisor:10,max:10,min:6},shareTxForMovement:{max:18e4,min:6e4},symbol:r.StockSymbols[a.LocationName.Sector12FoodNStuff]},{b:!0,initPrice:{max:3500,min:1500},marketCap:3e10,mv:{divisor:100,max:275,min:100},name:"Sigma Cosmetics",otlkMag:0,spreadPerc:{divisor:10,max:14,min:6},shareTxForMovement:{max:7e4,min:2e4},symbol:r.StockSymbols["Sigma Cosmetics"]},{b:!0,initPrice:{max:1500,min:250},marketCap:42e9,mv:{divisor:100,max:350,min:200},name:"Joes Guns",otlkMag:1,spreadPerc:{divisor:10,max:14,min:6},shareTxForMovement:{max:52e3,min:15e3},symbol:r.StockSymbols["Joes Guns"]},{b:!0,initPrice:{max:1500,min:250},marketCap:1e11,mv:{divisor:100,max:175,min:120},name:"Catalyst Ventures",otlkMag:13.5,spreadPerc:{divisor:10,max:14,min:5},shareTxForMovement:{max:72e3,min:24e3},symbol:r.StockSymbols["Catalyst Ventures"]},{b:!0,initPrice:{max:3e4,min:15e3},marketCap:36e10,mv:{divisor:100,max:80,min:70},name:"Microdyne Technologies",otlkMag:8,spreadPerc:{divisor:10,max:10,min:3},shareTxForMovement:{max:216e3,min:9e4},symbol:r.StockSymbols["Microdyne Technologies"]},{b:!0,initPrice:{max:24e3,min:12e3},marketCap:42e10,mv:{divisor:100,max:70,min:50},name:"Titan Laboratories",otlkMag:11,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:216e3,min:9e4},symbol:r.StockSymbols["Titan Laboratories"]}]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TicksPerCycle=void 0,t.TicksPerCycle=75},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.processOrders=void 0;const o=n(181),s=n(199),l=n(124),c=n(107),u=n(3),m=n(31),p=n(12),h=i(n(0));function d(e,t){const n=t.symbolToStockMap[e.stockSymbol];if(!(n instanceof s.Stock))return void console.error(`Could not find stock for this order: ${e.stockSymbol}`);const r=t.stockMarket.Orders[n.symbol],a={rerenderFn:t.rerenderFn,suppressDialog:!0};let i=!0,d=!1;switch(e.type){case l.OrderTypes.LimitBuy:case l.OrderTypes.StopBuy:d=!0,e.pos===c.PositionTypes.Long?i=o.buyStock(n,e.shares,null,a)&&i:e.pos===c.PositionTypes.Short&&(i=o.shortStock(n,e.shares,null,a)&&i);break;case l.OrderTypes.LimitSell:case l.OrderTypes.StopSell:e.pos===c.PositionTypes.Long?i=o.sellStock(n,e.shares,null,a)&&i:e.pos===c.PositionTypes.Short&&(i=o.sellShort(n,e.shares,null,a)&&i);break;default:return void console.warn(`Invalid order type: ${e.type}`)}const _=e.pos===c.PositionTypes.Long?"Long":"Short";if(i){for(let a=0;a=a.price&&d(a,r);break;case l.OrderTypes.LimitSell:case l.OrderTypes.StopBuy:a.pos===c.PositionTypes.Long&&e.price>=a.price?d(a,r):a.pos===c.PositionTypes.Short&&e.price<=a.price&&d(a,r);break;case l.OrderTypes.StopSell:a.pos===c.PositionTypes.Long&&e.price<=a.price?d(a,r):a.pos===c.PositionTypes.Short&&e.price>=a.price&&d(a,r);break;default:return void console.warn(`Invalid order type: ${a.type}`)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Order=void 0;const r=n(124),a=n(107),i=n(24);class o{constructor(e="",t=0,n=0,i=r.OrderTypes.LimitBuy,o=a.PositionTypes.Long){let s=!1;if("number"==typeof t&&"number"==typeof n||(s=!0),(isNaN(t)||isNaN(n))&&(s=!0),"string"!=typeof e&&(s=!0),s)throw new Error("Invalid constructor paramters for Order");this.stockSymbol=e,this.shares=t,this.price=n,this.type=i,this.pos=o}toJSON(){return i.Generic_toJSON("Order",this)}static fromJSON(e){return i.Generic_fromJSON(o,e.data)}}t.Order=o,i.Reviver.constructors.Order=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isPowerOfTwo=void 0,t.isPowerOfTwo=function(e){return!isNaN(e)&&0!==e&&0==(e&e-1)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){},,function(e,t){},,,,,function(e,t,n){!function(e){"use strict";e.registerHelper("lint","netscript",function(t,n){if(!window.JSHINT)return window.console&&window.console.error("Error: window.JSHINT not defined, CodeMirror JavaScript linting cannot run."),[];const r=t.split("\n");for(let e=0;e-1&&(o+=s)}var l={message:a.reason,severity:a.code&&a.code.startsWith("W")?"warning":"error",from:e.Pos(a.line-1,i),to:e.Pos(a.line-1,o)};n.push(l)}}}(i,o),o})}(n(53))},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";var r=n(53),a=n.n(r),i=n(139);!function(t){"object"==typeof exports&&"object"==typeof e?t(n(53)):"function"==typeof define&&n(677)?define(["codemirror/lib/codemirror.js"],t):t(a.a)}(function(e){e.defineMode("netscript",function(t,n){var r,a,o=t.indentUnit,s=n.statementIndent,l=n.jsonld,c=n.json||l,u=n.typescript,m=n.wordCharacters||/[\w$\xa1-\uffff]/,p=function(){function e(e){return{type:e,style:"keyword"}}var t=e("keyword a"),n=e("keyword b"),r=e("keyword c"),a=e("keyword d"),o=e("operator"),s={type:"atom",style:"atom"};const l={if:e("if"),while:t,with:t,else:n,do:n,try:n,finally:n,return:a,break:a,continue:a,new:e("new"),delete:r,void:r,throw:r,debugger:e("debugger"),var:e("var"),const:e("var"),let:e("var"),function:e("function"),catch:e("catch"),for:e("for"),switch:e("switch"),case:e("case"),default:e("default"),in:o,typeof:o,instanceof:o,true:s,false:s,null:s,undefined:s,NaN:s,Infinity:s,this:e("this"),class:e("class"),super:e("atom"),yield:r,export:e("export"),import:e("import"),extends:r,await:r,hack:s};return function e(t){for(const n of Object.keys(t))"function"==typeof t[n]&&(l[n]=s),"object"==typeof t[n]&&e(t[n])}(Object(i.a)(null)),l}(),h=/[+\-*&%=<>!?|~^@]/,d=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;function _(e,t,n){return r=e,a=n,t}function g(e,t){var n=e.next();if('"'==n||"'"==n)return t.tokenize=function(e){return function(t,n){var r,a=!1;if(l&&"@"==t.peek()&&t.match(d))return n.tokenize=g,_("jsonld-keyword","meta");for(;null!=(r=t.next())&&(r!=e||a);)a=!a&&"\\"==r;return a||(n.tokenize=g),_("string","string")}}(n),t.tokenize(e,t);if("."==n&&e.match(/^\d+(?:[eE][+\-]?\d+)?/))return _("number","number");if("."==n&&e.match(".."))return _("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(n))return _(n);if("="==n&&e.eat(">"))return _("=>","operator");if("0"==n&&e.match(/^(?:x[\da-f]+|o[0-7]+|b[01]+)n?/i))return _("number","number");if(/\d/.test(n))return e.match(/^\d*(?:n|(?:\.\d*)?(?:[eE][+\-]?\d+)?)?/),_("number","number");if("/"==n)return e.eat("*")?(t.tokenize=y,y(e,t)):e.eat("/")?(e.skipToEnd(),_("comment","comment")):Je(e,t,1)?(function(e){for(var t,n=!1,r=!1;null!=(t=e.next());){if(!n){if("/"==t&&!r)return;"["==t?r=!0:r&&"]"==t&&(r=!1)}n=!n&&"\\"==t}}(e),e.match(/^\b(([gimyus])(?![gimyus]*\2))+\b/),_("regexp","string-2")):(e.eat("="),_("operator","operator",e.current()));if("`"==n)return t.tokenize=f,f(e,t);if("#"==n)return e.skipToEnd(),_("error","error");if(h.test(n))return">"==n&&t.lexical&&">"==t.lexical.type||(e.eat("=")?"!"!=n&&"="!=n||e.eat("="):/[<>*+\-]/.test(n)&&(e.eat(n),">"==n&&e.eat(n))),_("operator","operator",e.current());if(m.test(n)){e.eatWhile(m);var r=e.current();if("."!=t.lastType){if(p.propertyIsEnumerable(r)){var a=p[r];return _(a.type,a.style,r)}if("async"==r&&e.match(/^(\s|\/\*.*?\*\/)*[\[\(\w]/,!1))return _("async","keyword",r)}return _("variable","variable",r)}}function y(e,t){for(var n,r=!1;n=e.next();){if("/"==n&&r){t.tokenize=g;break}r="*"==n}return _("comment","comment")}function f(e,t){for(var n,r=!1;null!=(n=e.next());){if(!r&&("`"==n||"$"==n&&e.eat("{"))){t.tokenize=g;break}r=!r&&"\\"==n}return _("quasi","string-2",e.current())}var b="([{}])";function E(e,t){t.fatArrowAt&&(t.fatArrowAt=null);var n=e.string.indexOf("=>",e.start);if(!(n<0)){if(u){var r=/:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(e.string.slice(e.start,n));r&&(n=r.index)}for(var a=0,i=!1,o=n-1;o>=0;--o){var s=e.string.charAt(o),l=b.indexOf(s);if(l>=0&&l<3){if(!a){++o;break}if(0==--a){"("==s&&(i=!0);break}}else if(l>=3&&l<6)++a;else if(m.test(s))i=!0;else{if(/["'\/]/.test(s))return;if(i&&!a){++o;break}}}i&&!a&&(t.fatArrowAt=o)}}var v={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,this:!0,"jsonld-keyword":!0};function k(e,t,n,r,a,i){this.indented=e,this.column=t,this.type=n,this.prev=a,this.info=i,null!=r&&(this.align=r)}function C(e,t){for(var n=e.localVars;n;n=n.next)if(n.name==t)return!0;for(var r=e.context;r;r=r.prev)for(n=r.vars;n;n=n.next)if(n.name==t)return!0}var P={state:null,column:null,marked:null,cc:null};function O(){for(var e=arguments.length-1;e>=0;e--)P.cc.push(arguments[e])}function S(){return O.apply(null,arguments),!0}function T(e,t){for(var n=t;n;n=n.next)if(n.name==e)return!0;return!1}function M(e){var t=P.state;if(P.marked="def",t.context)if("var"==t.lexical.info&&t.context&&t.context.block){var r=function e(t,n){if(n){if(n.block){var r=e(t,n.prev);return r?r==n.prev?n:new w(r,n.vars,!0):null}return T(t,n.vars)?n:new w(n.prev,new A(t,n.vars),!1)}return null}(e,t.context);if(null!=r)return void(t.context=r)}else if(!T(e,t.localVars))return void(t.localVars=new A(e,t.localVars));n.globalVars&&!T(e,t.globalVars)&&(t.globalVars=new A(e,t.globalVars))}function x(e){return"public"==e||"private"==e||"protected"==e||"abstract"==e||"readonly"==e}function w(e,t,n){this.prev=e,this.vars=t,this.block=n}function A(e,t){this.name=e,this.next=t}var R=new A("this",new A("arguments",null));function N(){P.state.context=new w(P.state.context,P.state.localVars,!1),P.state.localVars=R}function D(){P.state.context=new w(P.state.context,P.state.localVars,!0),P.state.localVars=null}function I(){P.state.localVars=P.state.context.vars,P.state.context=P.state.context.prev}function B(e,t){var n=function(){var n=P.state,r=n.indented;if("stat"==n.lexical.type)r=n.lexical.indented;else for(var a=n.lexical;a&&")"==a.type&&a.align;a=a.prev)r=a.indented;n.lexical=new k(r,P.stream.column(),e,null,n.lexical,t)};return n.lex=!0,n}function L(){var e=P.state;e.lexical.prev&&(")"==e.lexical.type&&(e.indented=e.lexical.indented),e.lexical=e.lexical.prev)}function j(e){return function t(n){return n==e?S():";"==e||"}"==n||")"==n||"]"==n?O():S(t)}}function W(e,t){return"var"==e?S(B("vardef",t),be,j(";"),L):"keyword a"==e?S(B("form"),G,W,L):"keyword b"==e?S(B("form"),W,L):"keyword d"==e?P.stream.match(/^\s*$/,!1)?S():S(B("stat"),q,j(";"),L):"debugger"==e?S(j(";")):"{"==e?S(B("}"),D,se,L,I):";"==e?S():"if"==e?("else"==P.state.lexical.info&&P.state.cc[P.state.cc.length-1]==L&&P.state.cc.pop()(),S(B("form"),G,W,L,Oe)):"function"==e?S(Ae):"for"==e?S(B("form"),Se,W,L):"class"==e||u&&"interface"==t?(P.marked="keyword",S(B("form","class"==e?e:t),Be,L)):"variable"==e?u&&"declare"==t?(P.marked="keyword",S(W)):u&&("module"==t||"enum"==t||"type"==t)&&P.stream.match(/^\s*\w/,!1)?(P.marked="keyword","enum"==t?S(Ye):"type"==t?S(Ne,j("operator"),me,j(";")):S(B("form"),Ee,j("{"),B("}"),se,L,L)):u&&"namespace"==t?(P.marked="keyword",S(B("form"),U,W,L)):u&&"abstract"==t?(P.marked="keyword",S(W)):S(B("stat"),ee):"switch"==e?S(B("form"),G,j("{"),B("}","switch"),D,se,L,L,I):"case"==e?S(U,j(":")):"default"==e?S(j(":")):"catch"==e?S(B("form"),N,F,W,L,I):"export"==e?S(B("stat"),Fe,L):"import"==e?S(B("stat"),He,L):"async"==e?S(W):"@"==t?S(U,W):O(B("stat"),U,j(";"),L)}function F(e){if("("==e)return S(De,j(")"))}function U(e,t){return K(e,t,!1)}function H(e,t){return K(e,t,!0)}function G(e){return"("!=e?O():S(B(")"),U,j(")"),L)}function K(e,t,n){if(P.state.fatArrowAt==P.stream.start){var r=n?X:J;if("("==e)return S(N,B(")"),ie(De,")"),L,j("=>"),r,I);if("variable"==e)return O(N,Ee,j("=>"),r,I)}var a=n?z:$;return v.hasOwnProperty(e)?S(a):"function"==e?S(Ae,a):"class"==e||u&&"interface"==t?(P.marked="keyword",S(B("form"),Ie,L)):"keyword c"==e||"async"==e?S(n?H:U):"("==e?S(B(")"),q,j(")"),L,a):"operator"==e||"spread"==e?S(n?H:U):"["==e?S(B("]"),ze,L,a):"{"==e?oe(ne,"}",null,a):"quasi"==e?O(Y,a):"new"==e?S(function(e){return function(t){return"."==t?S(e?Z:Q):"variable"==t&&u?S(ge,e?z:$):O(e?H:U)}}(n)):"import"==e?S(U):S()}function q(e){return e.match(/[;\}\)\],]/)?O():O(U)}function $(e,t){return","==e?S(U):z(e,t,!1)}function z(e,t,n){var r=0==n?$:z,a=0==n?U:H;return"=>"==e?S(N,n?X:J,I):"operator"==e?/\+\+|--/.test(t)||u&&"!"==t?S(r):u&&"<"==t&&P.stream.match(/^([^>]|<.*?>)*>\s*\(/,!1)?S(B(">"),ie(me,">"),L,r):"?"==t?S(U,j(":"),a):S(a):"quasi"==e?O(Y,r):";"!=e?"("==e?oe(H,")","call",r):"."==e?S(te,r):"["==e?S(B("]"),q,j("]"),L,r):u&&"as"==t?(P.marked="keyword",S(me,r)):"regexp"==e?(P.state.lastType=P.marked="operator",P.stream.backUp(P.stream.pos-P.stream.start-1),S(a)):void 0:void 0}function Y(e,t){return"quasi"!=e?O():"${"!=t.slice(t.length-2)?S(Y):S(U,V)}function V(e){if("}"==e)return P.marked="string-2",P.state.tokenize=f,S(Y)}function J(e){return E(P.stream,P.state),O("{"==e?W:U)}function X(e){return E(P.stream,P.state),O("{"==e?W:H)}function Q(e,t){if("target"==t)return P.marked="keyword",S($)}function Z(e,t){if("target"==t)return P.marked="keyword",S(z)}function ee(e){return":"==e?S(L,W):O($,j(";"),L)}function te(e){if("variable"==e)return P.marked="property",S()}function ne(e,t){if("async"==e)return P.marked="property",S(ne);if("variable"==e||"keyword"==P.style){return P.marked="property","get"==t||"set"==t?S(re):(u&&P.state.fatArrowAt==P.stream.start&&(n=P.stream.match(/^\s*:\s*/,!1))&&(P.state.fatArrowAt=P.stream.pos+n[0].length),S(ae));var n}else{if("number"==e||"string"==e)return P.marked=l?"property":P.style+" property",S(ae);if("jsonld-keyword"==e)return S(ae);if(u&&x(t))return P.marked="keyword",S(ne);if("["==e)return S(U,le,j("]"),ae);if("spread"==e)return S(H,ae);if("*"==t)return P.marked="keyword",S(ne);if(":"==e)return O(ae)}}function re(e){return"variable"!=e?O(ae):(P.marked="property",S(Ae))}function ae(e){return":"==e?S(H):"("==e?O(Ae):void 0}function ie(e,t,n){function r(a,i){if(n?n.indexOf(a)>-1:","==a){var o=P.state.lexical;return"call"==o.info&&(o.pos=(o.pos||0)+1),S(function(n,r){return n==t||r==t?O():O(e)},r)}return a==t||i==t?S():n&&n.indexOf(";")>-1?O(e):S(j(t))}return function(n,a){return n==t||a==t?S():O(e,r)}}function oe(e,t,n){for(var r=3;r"),me):void 0}function pe(e){if("=>"==e)return S(me)}function he(e,t){return"variable"==e||"keyword"==P.style?(P.marked="property",S(he)):"?"==t||"number"==e||"string"==e?S(he):":"==e?S(me):"["==e?S(j("variable"),le,j("]"),he):"("==e?O(Re,he):void 0}function de(e,t){return"variable"==e&&P.stream.match(/^\s*[?:]/,!1)||"?"==t?S(de):":"==e?S(me):"spread"==e?S(de):O(me)}function _e(e,t){return"<"==t?S(B(">"),ie(me,">"),L,_e):"|"==t||"."==e||"&"==t?S(me):"["==e?S(me,j("]"),_e):"extends"==t||"implements"==t?(P.marked="keyword",S(me)):"?"==t?S(me,j(":"),me):void 0}function ge(e,t){if("<"==t)return S(B(">"),ie(me,">"),L,_e)}function ye(){return O(me,fe)}function fe(e,t){if("="==t)return S(me)}function be(e,t){return"enum"==t?(P.marked="keyword",S(Ye)):O(Ee,le,Ce,Pe)}function Ee(e,t){return u&&x(t)?(P.marked="keyword",S(Ee)):"variable"==e?(M(t),S()):"spread"==e?S(Ee):"["==e?oe(ke,"]"):"{"==e?oe(ve,"}"):void 0}function ve(e,t){return"variable"!=e||P.stream.match(/^\s*:/,!1)?("variable"==e&&(P.marked="property"),"spread"==e?S(Ee):"}"==e?O():"["==e?S(U,j("]"),j(":"),ve):S(j(":"),Ee,Ce)):(M(t),S(Ce))}function ke(){return O(Ee,Ce)}function Ce(e,t){if("="==t)return S(H)}function Pe(e){if(","==e)return S(be)}function Oe(e,t){if("keyword b"==e&&"else"==t)return S(B("form","else"),W,L)}function Se(e,t){return"await"==t?S(Se):"("==e?S(B(")"),Te,j(")"),L):void 0}function Te(e){return"var"==e?S(be,j(";"),xe):";"==e?S(xe):"variable"==e?S(Me):O(U,j(";"),xe)}function Me(e,t){return"in"==t||"of"==t?(P.marked="keyword",S(U)):S($,xe)}function xe(e,t){return";"==e?S(we):"in"==t||"of"==t?(P.marked="keyword",S(U)):O(U,j(";"),we)}function we(e){")"!=e&&S(U)}function Ae(e,t){return"*"==t?(P.marked="keyword",S(Ae)):"variable"==e?(M(t),S(Ae)):"("==e?S(N,B(")"),ie(De,")"),L,ce,W,I):u&&"<"==t?S(B(">"),ie(ye,">"),L,Ae):void 0}function Re(e,t){return"*"==t?(P.marked="keyword",S(Re)):"variable"==e?(M(t),S(Re)):"("==e?S(N,B(")"),ie(De,")"),L,ce,I):u&&"<"==t?S(B(">"),ie(ye,">"),L,Re):void 0}function Ne(e,t){return"keyword"==e||"variable"==e?(P.marked="type",S(Ne)):"<"==t?S(B(">"),ie(ye,">"),L):void 0}function De(e,t){return"@"==t&&S(U,De),"spread"==e?S(De):u&&x(t)?(P.marked="keyword",S(De)):O(Ee,le,Ce)}function Ie(e,t){return"variable"==e?Be(e,t):Le(e,t)}function Be(e,t){if("variable"==e)return M(t),S(Le)}function Le(e,t){return"<"==t?S(B(">"),ie(ye,">"),L,Le):"extends"==t||"implements"==t||u&&","==e?("implements"==t&&(P.marked="keyword"),S(u?me:U,Le)):"{"==e?S(B("}"),je,L):void 0}function je(e,t){return"async"==e||"variable"==e&&("static"==t||"get"==t||"set"==t||u&&x(t))&&P.stream.match(/^\s+[\w$\xa1-\uffff]/,!1)?(P.marked="keyword",S(je)):"variable"==e||"keyword"==P.style?(P.marked="property",S(u?We:Ae,je)):"number"==e||"string"==e?S(u?We:Ae,je):"["==e?S(U,le,j("]"),u?We:Ae,je):"*"==t?(P.marked="keyword",S(je)):u&&"("==e?O(Re,je):";"==e||","==e?S(je):"}"==e?S():"@"==t?S(U,je):void 0}function We(e,t){if("?"==t)return S(We);if(":"==e)return S(me,Ce);if("="==t)return S(H);var n=P.state.lexical.prev;return O(n&&"interface"==n.info?Re:Ae)}function Fe(e,t){return"*"==t?(P.marked="keyword",S($e,j(";"))):"default"==t?(P.marked="keyword",S(U,j(";"))):"{"==e?S(ie(Ue,"}"),$e,j(";")):O(W)}function Ue(e,t){return"as"==t?(P.marked="keyword",S(j("variable"))):"variable"==e?O(H,Ue):void 0}function He(e){return"string"==e?S():"("==e?O(U):O(Ge,Ke,$e)}function Ge(e,t){return"{"==e?oe(Ge,"}"):("variable"==e&&M(t),"*"==t&&(P.marked="keyword"),S(qe))}function Ke(e){if(","==e)return S(Ge,Ke)}function qe(e,t){if("as"==t)return P.marked="keyword",S(Ge)}function $e(e,t){if("from"==t)return P.marked="keyword",S(U)}function ze(e){return"]"==e?S():O(ie(H,"]"))}function Ye(){return O(B("form"),Ee,j("{"),B("}"),ie(Ve,"}"),L,L)}function Ve(){return O(Ee,Ce)}function Je(e,t,n){return t.tokenize==g&&/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(t.lastType)||"quasi"==t.lastType&&/\{\s*$/.test(e.string.slice(0,e.pos-(n||0)))}return I.lex=!0,L.lex=!0,{startState:function(e){var t={tokenize:g,lastType:"sof",cc:[],lexical:new k((e||0)-o,0,"block",!1),localVars:n.localVars,context:n.localVars&&new w(null,null,!1),indented:e||0};return n.globalVars&&"object"==typeof n.globalVars&&(t.globalVars=n.globalVars),t},token:function(e,t){if(e.sol()&&(t.lexical.hasOwnProperty("align")||(t.lexical.align=!1),t.indented=e.indentation(),E(e,t)),t.tokenize!=y&&e.eatSpace())return null;var n=t.tokenize(e,t);return"comment"==r?n:(t.lastType="operator"!=r||"++"!=a&&"--"!=a?r:"incdec",function(e,t,n,r,a){var i=e.cc;for(P.state=e,P.stream=a,P.marked=null,P.cc=i,P.style=t,e.lexical.hasOwnProperty("align")||(e.lexical.align=!0);;)if((i.length?i.pop():c?U:W)(n,r)){for(;i.length&&i[i.length-1].lex;)i.pop()();return P.marked?P.marked:"variable"==n&&C(e,r)?"variable-2":t}}(t,n,r,a,e))},indent:function(t,r){if(t.tokenize==y)return e.Pass;if(t.tokenize!=g)return 0;var a,i=r&&r.charAt(0),l=t.lexical;if(!/^\s*else\b/.test(r))for(var c=t.cc.length-1;c>=0;--c){var u=t.cc[c];if(u==L)l=l.prev;else if(u!=Oe)break}for(;("stat"==l.type||"form"==l.type)&&("}"==i||(a=t.cc[t.cc.length-1])&&(a==$||a==z)&&!/^[,\.=+\-*:?[\(]/.test(r));)l=l.prev;s&&")"==l.type&&"stat"==l.prev.type&&(l=l.prev);var m=l.type,p=i==m;return"vardef"==m?l.indented+("operator"==t.lastType||","==t.lastType?l.info.length+1:0):"form"==m&&"{"==i?l.indented:"form"==m?l.indented+o:"stat"==m?l.indented+(function(e,t){return"operator"==e.lastType||","==e.lastType||h.test(t.charAt(0))||/[,.]/.test(t.charAt(0))}(t,r)?s||o:0):"switch"!=l.info||p||0==n.doubleIndentSwitch?l.align?l.column+(p?0:1):l.indented+(p?0:o):l.indented+(/^(?:case|default)\b/.test(r)?o:2*o)},electricInput:/^\s*(?:case .*?:|default:|\{|\})$/,blockCommentStart:c?null:"/*",blockCommentEnd:c?null:"*/",blockCommentContinue:c?null:" * ",lineComment:c?null:"//",fold:"brace",closeBrackets:"()[]{}''\"\"``",helperType:c?"json":"netscript",jsonldMode:l,jsonMode:c,expressionAllowed:Je,skipExpression:function(e){var t=e.cc[e.cc.length-1];t!=U&&t!=H||e.cc.pop()}}}),e.registerHelper("wordChars","netscript",/[\w$]/),e.defineMIME("text/netscript","netscript"),e.defineMIME("text/ecmascript","netscript"),e.defineMIME("application/netscript","netscript"),e.defineMIME("application/x-netscript","netscript"),e.defineMIME("application/ecmascript","netscript"),e.defineMIME("application/json",{name:"netscript",json:!0}),e.defineMIME("application/x-json",{name:"netscript",json:!0}),e.defineMIME("application/ld+json",{name:"netscript",jsonld:!0}),e.defineMIME("text/typescript",{name:"netscript",typescript:!0}),e.defineMIME("application/typescript",{name:"netscript",typescript:!0})})},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";var r=n(139);ace.define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t){var n=e("../lib/oop"),r=e("./text_highlight_rules").TextHighlightRules,a=function(){this.$rules={start:[{token:"comment.doc.tag",regex:"@[\\w\\d_]+"},a.getTagRule(),{defaultToken:"comment.doc",caseInsensitive:!0}]}};n.inherits(a,r),a.getTagRule=function(){return{token:"comment.doc.tag.storage.type",regex:"\\b(?:TODO|FIXME|XXX|HACK)\\b"}},a.getStartRule=function(e){return{token:"comment.doc",regex:"\\/\\*(?=\\*)",next:e}},a.getEndRule=function(e){return{token:"comment.doc",regex:"\\*\\/",next:e}},t.DocCommentHighlightRules=a}),ace.define("ace/mode/netscript_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/doc_comment_highlight_rules","ace/mode/text_highlight_rules"],function(e,t){var n=e("../lib/oop"),a=e("./doc_comment_highlight_rules").DocCommentHighlightRules,i=e("./text_highlight_rules").TextHighlightRules,o="[a-zA-Z\\$_¡-￿][a-zA-Z\\d\\$_¡-￿]*";let s=function(){return function e(t){let n=[];for(const r of Object.keys(t))n.push(r),"object"==typeof t[r]&&(n=n.concat(e(t[r])));return n}(Object(r.a)(null)).sort().reverse().join("|")}();var l=function(e){var t=this.createKeywordMapper({"variable.language":"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|Namespace|QName|XML|XMLList|ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|SyntaxError|TypeError|URIError|decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|isNaN|parseFloat|parseInt|ns|"+s+"|JSON|Math|this|arguments|prototype|window|document",keyword:"const|yield|import|get|set|async|await|break|case|catch|continue|default|delete|do|else|finally|for|function|if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|__parent__|__count__|escape|unescape|with|__proto__|class|enum|extends|super|export|implements|private|public|interface|package|protected|static","storage.type":"const|let|var|function","constant.language":"null|Infinity|NaN|undefined","support.function":"alert","constant.language.boolean":"true|false"},"identifier"),n="\\\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|u{[0-9a-fA-F]{1,6}}|[0-2][0-7]{0,2}|3[0-7][0-7]?|[4-7][0-7]?|.)";this.$rules={no_regex:[a.getStartRule("doc-start"),c("no_regex"),{token:"string",regex:"'(?=.)",next:"qstring"},{token:"string",regex:'"(?=.)',next:"qqstring"},{token:"constant.numeric",regex:/0(?:[xX][0-9a-fA-F]+|[bB][01]+)\b/},{token:"constant.numeric",regex:/[+-]?\d[\d_]*(?:(?:\.\d*)?(?:[eE][+-]?\d+)?)?\b/},{token:["storage.type","punctuation.operator","support.function","punctuation.operator","entity.name.function","text","keyword.operator"],regex:"("+o+")(\\.)(prototype)(\\.)("+o+")(\\s*)(=)",next:"function_arguments"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","paren.lparen"],regex:"("+o+")(\\.)("+o+")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["entity.name.function","text","keyword.operator","text","storage.type","text","paren.lparen"],regex:"("+o+")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","entity.name.function","text","paren.lparen"],regex:"("+o+")(\\.)("+o+")(\\s*)(=)(\\s*)(function)(\\s+)(\\w+)(\\s*)(\\()",next:"function_arguments"},{token:["storage.type","text","entity.name.function","text","paren.lparen"],regex:"(function)(\\s+)("+o+")(\\s*)(\\()",next:"function_arguments"},{token:["entity.name.function","text","punctuation.operator","text","storage.type","text","paren.lparen"],regex:"("+o+")(\\s*)(:)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["text","text","storage.type","text","paren.lparen"],regex:"(:)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:"keyword",regex:"(?:case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void)\\b",next:"start"},{token:["support.constant"],regex:/that\b/},{token:["storage.type","punctuation.operator","support.function.firebug"],regex:/(console)(\.)(warn|info|log|error|time|trace|timeEnd|assert)\b/},{token:t,regex:o},{token:"punctuation.operator",regex:/[.](?![.])/,next:"property"},{token:"keyword.operator",regex:/--|\+\+|\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\|\||\?:|[!$%&*+\-~\/^]=?/,next:"start"},{token:"punctuation.operator",regex:/[?:,;.]/,next:"start"},{token:"paren.lparen",regex:/[\[({]/,next:"start"},{token:"paren.rparen",regex:/[\])}]/},{token:"comment",regex:/^#!.*$/}],property:[{token:"text",regex:"\\s+"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","entity.name.function","text","paren.lparen"],regex:"("+o+")(\\.)("+o+")(\\s*)(=)(\\s*)(function)(?:(\\s+)(\\w+))?(\\s*)(\\()",next:"function_arguments"},{token:"punctuation.operator",regex:/[.](?![.])/},{token:"support.function",regex:"/|"+s+"|/"},{token:"support.function",regex:/(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\b(?=\()/},{token:"support.function.dom",regex:/(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\b(?=\()/},{token:"support.constant",regex:/(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\b/},{token:"identifier",regex:o},{regex:"",token:"empty",next:"no_regex"}],start:[a.getStartRule("doc-start"),c("start"),{token:"string.regexp",regex:"\\/",next:"regex"},{token:"text",regex:"\\s+|^$",next:"start"},{token:"empty",regex:"",next:"no_regex"}],regex:[{token:"regexp.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"string.regexp",regex:"/[sxngimy]*",next:"no_regex"},{token:"invalid",regex:/\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/},{token:"constant.language.escape",regex:/\(\?[:=!]|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/},{token:"constant.language.delimiter",regex:/\|/},{token:"constant.language.escape",regex:/\[\^?/,next:"regex_character_class"},{token:"empty",regex:"$",next:"no_regex"},{defaultToken:"string.regexp"}],regex_character_class:[{token:"regexp.charclass.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"constant.language.escape",regex:"]",next:"regex"},{token:"constant.language.escape",regex:"-"},{token:"empty",regex:"$",next:"no_regex"},{defaultToken:"string.regexp.charachterclass"}],function_arguments:[{token:"variable.parameter",regex:o},{token:"punctuation.operator",regex:"[, ]+"},{token:"punctuation.operator",regex:"$"},{token:"empty",regex:"",next:"no_regex"}],qqstring:[{token:"constant.language.escape",regex:n},{token:"string",regex:"\\\\$",next:"qqstring"},{token:"string",regex:'"|$',next:"no_regex"},{defaultToken:"string"}],qstring:[{token:"constant.language.escape",regex:n},{token:"string",regex:"\\\\$",next:"qstring"},{token:"string",regex:"'|$",next:"no_regex"},{defaultToken:"string"}]},e&&e.noES6||(this.$rules.no_regex.unshift({regex:"[{}]",onMatch:function(e,t,n){if(this.next="{"==e?this.nextState:"","{"==e&&n.length)n.unshift("start",t);else if("}"==e&&n.length&&(n.shift(),this.next=n.shift(),-1!=this.next.indexOf("string")||-1!=this.next.indexOf("jsx")))return"paren.quasi.end";return"{"==e?"paren.lparen":"paren.rparen"},nextState:"start"},{token:"string.quasi.start",regex:/`/,push:[{token:"constant.language.escape",regex:n},{token:"paren.quasi.start",regex:/\${/,push:"start"},{token:"string.quasi.end",regex:/`/,next:"pop"},{defaultToken:"string.quasi"}]}),e&&0==e.jsx||function(){var e=o.replace("\\d","\\d\\-"),t={onMatch:function(e,t,n){var r="/"==e.charAt(1)?2:1;return 1==r?(t!=this.nextState?n.unshift(this.next,this.nextState,0):n.unshift(this.next),n[2]++):2==r&&t==this.nextState&&(n[1]--,(!n[1]||n[1]<0)&&(n.shift(),n.shift())),[{type:"meta.tag.punctuation."+(1==r?"":"end-")+"tag-open.xml",value:e.slice(0,r)},{type:"meta.tag.tag-name.xml",value:e.substr(r)}]},regex:"",onMatch:function(e,t,n){return t==n[0]&&n.shift(),2==e.length&&(n[0]==this.nextState&&n[1]--,(!n[1]||n[1]<0)&&n.splice(0,2)),this.next=n[0]||"start",[{type:this.token,value:e}]},nextState:"jsx"},n,c("jsxAttributes"),{token:"entity.other.attribute-name.xml",regex:e},{token:"keyword.operator.attribute-equals.xml",regex:"="},{token:"text.tag-whitespace.xml",regex:"\\s+"},{token:"string.attribute-value.xml",regex:"'",stateName:"jsx_attr_q",push:[{token:"string.attribute-value.xml",regex:"'",next:"pop"},{include:"reference"},{defaultToken:"string.attribute-value.xml"}]},{token:"string.attribute-value.xml",regex:'"',stateName:"jsx_attr_qq",push:[{token:"string.attribute-value.xml",regex:'"',next:"pop"},{include:"reference"},{defaultToken:"string.attribute-value.xml"}]},t],this.$rules.reference=[{token:"constant.language.escape.reference.xml",regex:"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"}]}.call(this)),this.embedRules(a,"doc-",[a.getEndRule("no_regex")]),this.normalizeRules()};function c(e){return[{token:"comment",regex:/\/\*/,next:[a.getTagRule(),{token:"comment",regex:"\\*\\/",next:e||"pop"},{defaultToken:"comment",caseInsensitive:!0}]},{token:"comment",regex:"\\/\\/",next:[a.getTagRule(),{token:"comment",regex:"$|^",next:e||"pop"},{defaultToken:"comment",caseInsensitive:!0}]}]}n.inherits(l,i),t.NetscriptHighlightRules=l}),ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(e,t){var n=e("../range").Range,r=function(){};(function(){this.checkOutdent=function(e,t){return!!/^\s+$/.test(e)&&/^\s*\}/.test(t)},this.autoOutdent=function(e,t){var r=e.getLine(t).match(/^(\s*\})/);if(!r)return 0;var a=r[1].length,i=e.findMatchingBracket({row:t,column:a});if(!i||i.row==t)return 0;var o=this.$getIndent(e.getLine(i.row));e.replace(new n(t,0,t,a-1),o)},this.$getIndent=function(e){return e.match(/^\s*/)[0]}}).call(r.prototype),t.MatchingBraceOutdent=r}),ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(e,t){var n=e("../../lib/oop"),r=e("../../range").Range,a=e("./fold_mode").FoldMode,i=t.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};n.inherits(i,a),function(){this.foldingStartMarker=/(\{|\[)[^\}\]]*$|^\s*(\/\*)/,this.foldingStopMarker=/^[^\[\{]*(\}|\])|^[\s\*]*(\*\/)/,this.singleLineBlockCommentRe=/^\s*(\/\*).*\*\/\s*$/,this.tripleStarBlockCommentRe=/^\s*(\/\*\*\*).*\*\/\s*$/,this.startRegionRe=/^\s*(\/\*|\/\/)#?region\b/,this._getFoldWidgetBase=this.getFoldWidget,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);if(this.singleLineBlockCommentRe.test(r)&&!this.startRegionRe.test(r)&&!this.tripleStarBlockCommentRe.test(r))return"";var a=this._getFoldWidgetBase(e,t,n);return!a&&this.startRegionRe.test(r)?"start":a},this.getFoldWidgetRange=function(e,t,n,r){var a,i=e.getLine(n);if(this.startRegionRe.test(i))return this.getCommentRegionBlock(e,i,n);if(a=i.match(this.foldingStartMarker)){var o=a.index;if(a[1])return this.openingBracketBlock(e,a[1],n,o);var s=e.getCommentFoldRange(n,o+a[0].length,1);return s&&!s.isMultiLine()&&(r?s=this.getSectionRange(e,n):"all"!=t&&(s=null)),s}if("markbegin"!==t&&(a=i.match(this.foldingStopMarker))){o=a.index+a[0].length;return a[1]?this.closingBracketBlock(e,a[1],n,o):e.getCommentFoldRange(n,o,-1)}},this.getSectionRange=function(e,t){for(var n=e.getLine(t),a=n.search(/\S/),i=t,o=n.length,s=t+=1,l=e.getLength();++tc)break;var u=this.getFoldWidgetRange(e,"all",t);if(u){if(u.start.row<=i)break;if(u.isMultiLine())t=u.end.row;else if(a==c)break}s=t}}return new r(i,o,s,e.getLine(s).length)},this.getCommentRegionBlock=function(e,t,n){for(var a=t.search(/\s*$/),i=e.getLength(),o=n,s=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,l=1;++no)return new r(o,a,n,t.length)}}.call(i.prototype)}),ace.define("ace/mode/netscript",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/netscript_highlight_rules","ace/mode/matching_brace_outdent","ace/worker/worker_client","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle"],function(e,t){var r=e("../lib/oop"),a=e("./text").Mode,i=e("./netscript_highlight_rules").NetscriptHighlightRules,o=e("./matching_brace_outdent").MatchingBraceOutdent,s=e("../worker/worker_client").WorkerClient,l=e("./behaviour/cstyle").CstyleBehaviour,c=e("./folding/cstyle").FoldMode,u=function(){this.HighlightRules=i,this.$outdent=new o,this.$behaviour=new l,this.foldingRules=new c};r.inherits(u,a),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t),a=this.getTokenizer().getLineTokens(t,e),i=a.tokens,o=a.state;if(i.length&&"comment"==i[i.length-1].type)return r;if("start"==e||"no_regex"==e)(s=t.match(/^.*(?:\bcase\b.*:|[\{\(\[])\s*$/))&&(r+=n);else if("doc-start"==e){if("start"==o||"no_regex"==o)return"";var s;(s=t.match(/^\s*(\/?)\*/))&&(s[1]&&(r+=" "),r+="* ")}return r},this.checkOutdent=function(e,t,n){return this.$outdent.checkOutdent(t,n)},this.autoOutdent=function(e,t,n){this.$outdent.autoOutdent(t,n)},this.createWorker=function(e){var t=new s(["ace"],n(678),"JavaScriptWorker");return t.attachToDocument(e.getDocument()),t.on("annotate",function(t){e.setAnnotations(t.data)}),t.on("terminate",function(){e.clearAnnotations()}),t},this.$id="ace/mode/netscript"}.call(u.prototype),t.Mode=u})},,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getSubdirectories=void 0;const r=n(103);t.getSubdirectories=function(e,t){const n=[];if(!r.isValidDirectoryPath(t))return n;let a=t;function i(e){if("/"===a&&r.isInRootDirectory(e)){const t=r.getFirstParentDirectory(e);"/"===t||n.includes(t)||n.push(t)}else if(e.startsWith(a)){const t=e.slice(a.length),i=r.getFirstParentDirectory(t);"/"===i||n.includes(i)||n.push(i)}}a.endsWith("/")||(a+="/");for(const t of e.scripts)i(t.filename);for(const t of e.textFiles)i(t.fn);return n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DarkWebItem=void 0;t.DarkWebItem=class{constructor(e,t,n){this.program=e,this.price=t,this.description=n}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isValidNumber=void 0,t.isValidNumber=function(e){return"number"==typeof e&&!isNaN(e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.HashUpgradesMetadata=void 0,t.HashUpgradesMetadata=[{cost:4,costPerLevel:4,desc:"Sell hashes for $1m",name:"Sell for Money",value:1e6},{costPerLevel:100,desc:"Sell hashes for $1b in Corporation funds",name:"Sell for Corporation Funds",value:1e9},{costPerLevel:50,desc:"Use hashes to decrease the minimum security of a single server by 2%. Note that a server's minimum security cannot go below 1. This effect persists until you install Augmentations (since servers are reset at that time).",hasTargetServer:!0,name:"Reduce Minimum Security",value:.98},{costPerLevel:50,desc:"Use hashes to increase the maximum amount of money on a single server by 2%. This effect persists until you install Augmentations (since servers are reset at that time).",hasTargetServer:!0,name:"Increase Maximum Money",value:1.02},{costPerLevel:50,desc:"Use hashes to improve the experience earned when studying at a university by 20%. This effect persists until you install Augmentations",name:"Improve Studying",value:20},{costPerLevel:50,desc:"Use hashes to improve the experience earned when training at the gym by 20%. This effect persists until you install Augmentations",name:"Improve Gym Training",value:20},{costPerLevel:200,desc:"Exchange hashes for 1k Scientific Research in all of your Corporation's Industries",name:"Exchange for Corporation Research",value:1e3},{costPerLevel:250,desc:"Exchange hashes for 100 Bladeburner Rank",name:"Exchange for Bladeburner Rank",value:100},{costPerLevel:250,desc:"Exchanges hashes for 10 Bladeburner Skill Points",name:"Exchange for Bladeburner SP",value:10},{costPerLevel:200,desc:"Generate a random Coding Contract somewhere on the network",name:"Generate Coding Contract",value:1}]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.HashUpgrade=void 0;t.HashUpgrade=class{constructor(e){this.costPerLevel=0,this.desc="",this.hasTargetServer=!1,this.name="",this.value=0,null!=e.cost&&(this.cost=e.cost),this.costPerLevel=e.costPerLevel,this.desc=e.desc,this.hasTargetServer=!!e.hasTargetServer&&e.hasTargetServer,this.name=e.name,this.value=e.value}getCost(e){return"number"==typeof this.cost?this.cost:Math.round((e+1)*this.costPerLevel)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.programsMetadata=void 0;const r=n(11);function a(e){return function(t){return t.hacking_skill>=e}}t.programsMetadata=[{key:"NukeProgram",name:"NUKE.exe",create:{level:1,tooltip:"This virus is used to gain root access to a machine if enough ports are opened.",req:a(1),time:r.CONSTANTS.MillisecondsPerFiveMinutes}},{key:"BruteSSHProgram",name:"BruteSSH.exe",create:{level:50,tooltip:"This program executes a brute force attack that opens SSH ports",req:a(50),time:2*r.CONSTANTS.MillisecondsPerFiveMinutes}},{key:"FTPCrackProgram",name:"FTPCrack.exe",create:{level:100,tooltip:"This program cracks open FTP ports",req:a(100),time:r.CONSTANTS.MillisecondsPerHalfHour}},{key:"RelaySMTPProgram",name:"relaySMTP.exe",create:{level:250,tooltip:"This program opens SMTP ports by redirecting data",req:a(250),time:r.CONSTANTS.MillisecondsPer2Hours}},{key:"HTTPWormProgram",name:"HTTPWorm.exe",create:{level:500,tooltip:"This virus opens up HTTP ports",req:a(500),time:r.CONSTANTS.MillisecondsPer4Hours}},{key:"SQLInjectProgram",name:"SQLInject.exe",create:{level:750,tooltip:"This virus opens SQL ports",req:a(750),time:r.CONSTANTS.MillisecondsPer8Hours}},{key:"DeepscanV1",name:"DeepscanV1.exe",create:{level:75,tooltip:"This program allows you to use the scan-analyze command with a depth up to 5",req:a(75),time:r.CONSTANTS.MillisecondsPerQuarterHour}},{key:"DeepscanV2",name:"DeepscanV2.exe",create:{level:400,tooltip:"This program allows you to use the scan-analyze command with a depth up to 10",req:a(400),time:r.CONSTANTS.MillisecondsPer2Hours}},{key:"ServerProfiler",name:"ServerProfiler.exe",create:{level:75,tooltip:"This program is used to display hacking and Netscript-related information about servers",req:a(75),time:r.CONSTANTS.MillisecondsPerHalfHour}},{key:"AutoLink",name:"AutoLink.exe",create:{level:25,tooltip:"This program allows you to directly connect to other servers through the 'scan-analyze' command",req:a(25),time:r.CONSTANTS.MillisecondsPerQuarterHour}},{key:"BitFlume",name:"b1t_flum3.exe",create:{level:1,tooltip:"This program creates a portal to the BitNode Nexus (allows you to restart and switch BitNodes)",req:function(e){return e.sourceFiles.length>0&&e.hacking_skill>=1},time:r.CONSTANTS.MillisecondsPerFiveMinutes/20}},{key:"Flight",name:"fl1ght.exe",create:null}]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Program=void 0;t.Program=class{constructor(e,t){this.name="",this.name=e,this.create=t}htmlID(){return"create-program-"+(this.name.endsWith(".exe")?this.name.slice(0,-".exe".length):this.name)}}},,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.companyPositionMetadata=void 0;const o=i(n(70));t.companyPositionMetadata=[{name:o.SoftwareCompanyPositions[0],nextPosition:o.SoftwareCompanyPositions[1],baseSalary:33,charismaEffectiveness:15,charismaExpGain:.02,hackingEffectiveness:85,hackingExpGain:.05,reqdHacking:1,repMultiplier:.9},{name:o.SoftwareCompanyPositions[1],nextPosition:o.SoftwareCompanyPositions[2],baseSalary:80,charismaEffectiveness:15,charismaExpGain:.05,hackingEffectiveness:85,hackingExpGain:.1,reqdHacking:51,reqdReputation:8e3,repMultiplier:1.1},{name:o.SoftwareCompanyPositions[2],nextPosition:o.SoftwareCompanyPositions[3],baseSalary:165,charismaEffectiveness:20,charismaExpGain:.08,hackingEffectiveness:80,hackingExpGain:.4,reqdCharisma:51,reqdHacking:251,reqdReputation:4e4,repMultiplier:1.3},{name:o.SoftwareCompanyPositions[3],nextPosition:o.SoftwareCompanyPositions[4],baseSalary:500,charismaEffectiveness:25,charismaExpGain:.1,hackingEffectiveness:75,hackingExpGain:.8,reqdCharisma:151,reqdHacking:401,reqdReputation:2e5,repMultiplier:1.5},{name:o.SoftwareCompanyPositions[4],nextPosition:o.SoftwareCompanyPositions[5],baseSalary:800,charismaEffectiveness:25,charismaExpGain:.5,hackingEffectiveness:75,hackingExpGain:1,reqdCharisma:251,reqdHacking:501,reqdReputation:4e5,repMultiplier:1.6},{name:o.SoftwareCompanyPositions[5],nextPosition:o.SoftwareCompanyPositions[6],baseSalary:1650,charismaEffectiveness:25,charismaExpGain:.5,hackingEffectiveness:75,hackingExpGain:1.1,reqdCharisma:251,reqdHacking:501,reqdReputation:8e5,repMultiplier:1.6},{name:o.SoftwareCompanyPositions[6],nextPosition:o.SoftwareCompanyPositions[7],baseSalary:2310,charismaEffectiveness:30,charismaExpGain:.6,hackingEffectiveness:70,hackingExpGain:1.2,reqdCharisma:401,reqdHacking:601,reqdReputation:16e5,repMultiplier:1.75},{name:o.SoftwareCompanyPositions[7],nextPosition:null,baseSalary:2640,charismaEffectiveness:35,charismaExpGain:1,hackingEffectiveness:65,hackingExpGain:1.5,reqdCharisma:501,reqdHacking:751,reqdReputation:32e5,repMultiplier:2},{name:o.ITCompanyPositions[0],nextPosition:o.ITCompanyPositions[1],baseSalary:26,charismaEffectiveness:10,charismaExpGain:.01,hackingEffectiveness:90,hackingExpGain:.04,reqdHacking:1,repMultiplier:.9},{name:o.ITCompanyPositions[1],nextPosition:o.ITCompanyPositions[2],baseSalary:66,charismaEffectiveness:15,charismaExpGain:.02,hackingEffectiveness:85,hackingExpGain:.08,reqdHacking:26,reqdReputation:7e3,repMultiplier:1.1},{name:o.ITCompanyPositions[2],nextPosition:o.ITCompanyPositions[3],baseSalary:132,charismaEffectiveness:20,charismaExpGain:.1,hackingEffectiveness:80,hackingExpGain:.3,reqdCharisma:51,reqdHacking:151,reqdReputation:35e3,repMultiplier:1.3},{name:o.ITCompanyPositions[3],nextPosition:o.SoftwareCompanyPositions[5],baseSalary:410,charismaEffectiveness:20,charismaExpGain:.2,hackingEffectiveness:80,hackingExpGain:.5,reqdCharisma:76,reqdHacking:251,reqdReputation:175e3,repMultiplier:1.4},{name:o.SecurityEngineerCompanyPositions[0],nextPosition:o.SoftwareCompanyPositions[5],baseSalary:121,charismaEffectiveness:15,charismaExpGain:.05,hackingEffectiveness:85,hackingExpGain:.4,reqdCharisma:26,reqdHacking:151,reqdReputation:35e3,repMultiplier:1.2},{name:o.NetworkEngineerCompanyPositions[0],nextPosition:o.NetworkEngineerCompanyPositions[1],baseSalary:121,charismaEffectiveness:15,charismaExpGain:.05,hackingEffectiveness:85,hackingExpGain:.4,reqdCharisma:26,reqdHacking:151,reqdReputation:35e3,repMultiplier:1.2},{name:o.NetworkEngineerCompanyPositions[1],nextPosition:o.SoftwareCompanyPositions[5],baseSalary:410,charismaEffectiveness:20,charismaExpGain:.1,hackingEffectiveness:80,hackingExpGain:.5,reqdCharisma:76,reqdHacking:251,reqdReputation:175e3,repMultiplier:1.3},{name:o.BusinessCompanyPositions[0],nextPosition:o.BusinessCompanyPositions[1],baseSalary:46,charismaEffectiveness:90,charismaExpGain:.08,hackingEffectiveness:10,hackingExpGain:.01,reqdCharisma:1,reqdHacking:1,repMultiplier:.9},{name:o.BusinessCompanyPositions[1],nextPosition:o.BusinessCompanyPositions[2],baseSalary:100,charismaEffectiveness:85,charismaExpGain:.15,hackingEffectiveness:15,hackingExpGain:.02,reqdCharisma:51,reqdHacking:6,reqdReputation:8e3,repMultiplier:1.1},{name:o.BusinessCompanyPositions[2],nextPosition:o.BusinessCompanyPositions[3],baseSalary:200,charismaEffectiveness:85,charismaExpGain:.3,hackingEffectiveness:15,hackingExpGain:.02,reqdCharisma:101,reqdHacking:51,reqdReputation:4e4,repMultiplier:1.3},{name:o.BusinessCompanyPositions[3],nextPosition:o.BusinessCompanyPositions[4],baseSalary:660,charismaEffectiveness:85,charismaExpGain:.4,hackingEffectiveness:15,hackingExpGain:.02,reqdCharisma:226,reqdHacking:51,reqdReputation:2e5,repMultiplier:1.5},{name:o.BusinessCompanyPositions[4],nextPosition:o.BusinessCompanyPositions[5],baseSalary:1950,charismaEffectiveness:90,charismaExpGain:1,hackingEffectiveness:10,hackingExpGain:.05,reqdCharisma:501,reqdHacking:76,reqdReputation:8e5,repMultiplier:1.6},{name:o.BusinessCompanyPositions[5],nextPosition:null,baseSalary:3900,charismaEffectiveness:90,charismaExpGain:1.5,hackingEffectiveness:10,hackingExpGain:.05,reqdCharisma:751,reqdHacking:101,reqdReputation:32e5,repMultiplier:1.75},{name:o.SecurityCompanyPositions[0],nextPosition:o.SecurityCompanyPositions[1],baseSalary:82,hackingEffectiveness:5,strengthEffectiveness:20,defenseEffectiveness:20,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.02,strengthExpGain:.08,defenseExpGain:.08,dexterityExpGain:.08,agilityExpGain:.08,charismaExpGain:.04,reqdHacking:11,reqdStrength:101,reqdDefense:101,reqdDexterity:101,reqdAgility:101,reqdCharisma:51,reqdReputation:8e3,repMultiplier:1},{name:o.SecurityCompanyPositions[1],nextPosition:null,baseSalary:460,hackingEffectiveness:5,strengthEffectiveness:20,defenseEffectiveness:20,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.02,strengthExpGain:.1,defenseExpGain:.1,dexterityExpGain:.1,agilityExpGain:.1,charismaExpGain:.1,reqdHacking:101,reqdStrength:301,reqdDefense:301,reqdDexterity:301,reqdAgility:301,reqdCharisma:151,reqdReputation:36e3,repMultiplier:1.25},{name:o.SecurityCompanyPositions[2],nextPosition:o.SecurityCompanyPositions[3],baseSalary:50,hackingEffectiveness:5,strengthEffectiveness:20,defenseEffectiveness:20,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.01,strengthExpGain:.04,defenseExpGain:.04,dexterityExpGain:.04,agilityExpGain:.04,charismaExpGain:.02,reqdStrength:51,reqdDefense:51,reqdDexterity:51,reqdAgility:51,reqdCharisma:1,repMultiplier:1},{name:o.SecurityCompanyPositions[3],nextPosition:o.SecurityCompanyPositions[4],baseSalary:195,hackingEffectiveness:10,strengthEffectiveness:20,defenseEffectiveness:20,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:10,hackingExpGain:.02,strengthExpGain:.1,defenseExpGain:.1,dexterityExpGain:.1,agilityExpGain:.1,charismaExpGain:.05,reqdHacking:26,reqdStrength:151,reqdDefense:151,reqdDexterity:151,reqdAgility:151,reqdCharisma:51,reqdReputation:8e3,repMultiplier:1.1},{name:o.SecurityCompanyPositions[4],nextPosition:o.SecurityCompanyPositions[5],baseSalary:660,hackingEffectiveness:10,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:15,agilityEffectiveness:15,charismaEffectiveness:30,hackingExpGain:.02,strengthExpGain:.12,defenseExpGain:.12,dexterityExpGain:.12,agilityExpGain:.12,charismaExpGain:.1,reqdHacking:26,reqdStrength:251,reqdDefense:251,reqdDexterity:251,reqdAgility:251,reqdCharisma:101,reqdReputation:36e3,repMultiplier:1.25},{name:o.SecurityCompanyPositions[5],nextPosition:null,baseSalary:1320,hackingEffectiveness:10,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:15,agilityEffectiveness:15,charismaEffectiveness:30,hackingExpGain:.05,strengthExpGain:.15,defenseExpGain:.15,dexterityExpGain:.15,agilityExpGain:.15,charismaExpGain:.15,reqdHacking:51,reqdStrength:501,reqdDefense:501,reqdDexterity:501,reqdAgility:501,reqdCharisma:151,reqdReputation:144e3,repMultiplier:1.4},{name:o.AgentCompanyPositions[0],nextPosition:o.AgentCompanyPositions[1],baseSalary:330,hackingEffectiveness:10,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:20,hackingExpGain:.04,strengthExpGain:.08,defenseExpGain:.08,dexterityExpGain:.08,agilityExpGain:.08,charismaExpGain:.05,reqdHacking:101,reqdStrength:101,reqdDefense:101,reqdDexterity:101,reqdAgility:101,reqdCharisma:101,reqdReputation:8e3,repMultiplier:1},{name:o.AgentCompanyPositions[1],nextPosition:o.AgentCompanyPositions[2],baseSalary:990,hackingEffectiveness:15,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.1,strengthExpGain:.15,defenseExpGain:.15,dexterityExpGain:.15,agilityExpGain:.15,charismaExpGain:.1,reqdHacking:201,reqdStrength:251,reqdDefense:251,reqdDexterity:251,reqdAgility:251,reqdCharisma:201,reqdReputation:32e3,repMultiplier:1.25},{name:o.AgentCompanyPositions[2],nextPosition:null,baseSalary:2e3,hackingEffectiveness:15,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.15,strengthExpGain:.2,defenseExpGain:.2,dexterityExpGain:.2,agilityExpGain:.2,charismaExpGain:.15,reqdHacking:251,reqdStrength:501,reqdDefense:501,reqdDexterity:501,reqdAgility:501,reqdCharisma:251,reqdReputation:162e3,repMultiplier:1.5},{name:o.MiscCompanyPositions[0],nextPosition:null,baseSalary:22,strengthEffectiveness:10,dexterityEffectiveness:10,agilityEffectiveness:10,charismaEffectiveness:70,strengthExpGain:.02,defenseExpGain:.02,dexterityExpGain:.02,agilityExpGain:.02,charismaExpGain:.05,repMultiplier:1},{name:o.MiscCompanyPositions[1],nextPosition:null,baseSalary:22,strengthEffectiveness:10,dexterityEffectiveness:10,agilityEffectiveness:10,charismaEffectiveness:70,strengthExpGain:.02,defenseExpGain:.02,dexterityExpGain:.02,agilityExpGain:.02,charismaExpGain:.04,repMultiplier:1},{name:o.SoftwareConsultantCompanyPositions[0],nextPosition:o.SoftwareConsultantCompanyPositions[1],baseSalary:66,hackingEffectiveness:80,charismaEffectiveness:20,hackingExpGain:.08,charismaExpGain:.03,reqdHacking:51,repMultiplier:1},{name:o.SoftwareConsultantCompanyPositions[1],nextPosition:null,baseSalary:132,hackingEffectiveness:75,charismaEffectiveness:25,hackingExpGain:.25,charismaExpGain:.06,reqdHacking:251,reqdCharisma:51,repMultiplier:1.2},{name:o.BusinessConsultantCompanyPositions[0],nextPosition:o.BusinessConsultantCompanyPositions[1],baseSalary:66,hackingEffectiveness:20,charismaEffectiveness:80,hackingExpGain:.015,charismaExpGain:.15,reqdHacking:6,reqdCharisma:51,repMultiplier:1},{name:o.BusinessConsultantCompanyPositions[1],nextPosition:null,baseSalary:525,hackingEffectiveness:15,charismaEffectiveness:85,hackingExpGain:.015,charismaExpGain:.3,reqdHacking:51,reqdCharisma:226,repMultiplier:1.2},{name:o.PartTimeCompanyPositions[0],nextPosition:null,baseSalary:20,strengthEffectiveness:10,dexterityEffectiveness:10,agilityEffectiveness:10,charismaEffectiveness:70,strengthExpGain:.0075,defenseExpGain:.0075,dexterityExpGain:.0075,agilityExpGain:.0075,charismaExpGain:.04,repMultiplier:1},{name:o.PartTimeCompanyPositions[1],nextPosition:null,baseSalary:20,strengthEffectiveness:10,dexterityEffectiveness:10,agilityEffectiveness:10,charismaEffectiveness:70,strengthExpGain:.0075,defenseExpGain:.0075,dexterityExpGain:.0075,agilityExpGain:.0075,charismaExpGain:.03,repMultiplier:1}]},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.companiesMetadata=void 0;const o=i(n(70)),s=n(50),l={},c={},u={},m={},p={},h={},d={},_={},g={},y={},f={},b={},E={},v={},k={},C={},P={},O={},S={};o.SoftwareCompanyPositions.forEach(e=>{l[e]=!0,p[e]=!0}),o.ITCompanyPositions.forEach(e=>{c[e]=!0,p[e]=!0}),o.NetworkEngineerCompanyPositions.forEach(e=>{u[e]=!0,p[e]=!0}),p[o.SecurityEngineerCompanyPositions[0]]=!0,m[o.SecurityEngineerCompanyPositions[0]]=!0,o.BusinessCompanyPositions.forEach(e=>{h[e]=!0}),o.SecurityCompanyPositions.forEach(e=>{_[e]=!0}),o.AgentCompanyPositions.forEach(e=>{d[e]=!0}),o.SoftwareConsultantCompanyPositions.forEach(e=>{g[e]=!0}),o.BusinessConsultantCompanyPositions.forEach(e=>{y[e]=!0});for(let e=0;en&&(t=n),this.setState({amt:t})}getPurchaseCost(){if(isNaN(this.state.amt))return 1/0;const e=100-this.props.sleeve.memory;return this.state.amt>e?1/0:this.props.sleeve.getMemoryUpgradeCost(this.state.amt)}purchaseMemory(){const e=this.getPurchaseCost();this.props.p.canAfford(e)&&(this.props.sleeve.upgradeMemory(this.state.amt),this.props.p.loseMoney(e),this.props.rerender())}render(){const e=`sleeve-${this.props.index}-memory-upgrade-input`,t=100-this.props.sleeve.memory,n=this.getPurchaseCost(),r=!this.props.p.canAfford(n);let a;return a=isNaN(this.state.amt)?o.createElement(o.Fragment,null,"Invalid value"):this.state.amt>t?o.createElement(o.Fragment,null,"Memory cannot exceed 100?"):o.createElement(o.Fragment,null,"Purchase ",this.state.amt," memory - ",c.Money(n),"?"),o.createElement("div",null,o.createElement("h2",null,o.createElement("u",null,"Upgrade Memory")),o.createElement("p",null,"Purchase a memory upgrade for your sleeve. Note that a sleeve's max memory is 100 (current: ",s.numeralWrapper.formatSleeveMemory(this.props.sleeve.memory),")"),o.createElement("label",{htmlFor:e},"Amount of memory to purchase (must be an integer):"),o.createElement("input",{className:"text-input",id:e,onChange:this.changePurchaseAmount,type:"number",value:this.state.amt}),o.createElement("br",null),o.createElement(l.StdButton,{disabled:r,onClick:this.purchaseMemory,text:a}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CovenantSleeveUpgrades=void 0;const o=i(n(0)),s=n(1184);t.CovenantSleeveUpgrades=class extends o.Component{render(){return o.createElement("div",{className:"bladeburner-action"},o.createElement("h1",null,"Duplicate Sleeve ",this.props.index),o.createElement(s.CovenantSleeveMemoryUpgrade,Object.assign({},this.props)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CovenantPurchasesRoot=void 0;const o=i(n(0)),s=n(1185),l=n(184),c=n(682),u=n(415),m=n(71),p=n(31),h=n(12);t.CovenantPurchasesRoot=class extends o.Component{constructor(e){super(e),this.state={update:0},this.rerender=this.rerender.bind(this)}purchaseCost(){return(this.props.p.sleevesFromCovenant+1)*c.BaseCostPerSleeve}rerender(){this.setState(e=>({update:e.update+1}))}render(){let e=!1;this.props.p.canAfford(this.purchaseCost())||(e=!0),this.props.p.sleevesFromCovenant>=c.MaxSleevesFromCovenant&&(e=!0);const t=[];for(let e=0;e{this.props.p.sleevesFromCovenant>=c.MaxSleevesFromCovenant||(this.props.p.canAfford(this.purchaseCost())?(this.props.p.loseMoney(this.purchaseCost()),this.props.p.sleevesFromCovenant+=1,this.props.p.sleeves.push(new l.Sleeve(this.props.p)),this.rerender()):h.dialogBoxCreate("You cannot afford to purchase a Duplicate Sleeve",!1))},text:"Purchase"}),o.createElement("br",null),o.createElement("br",null),o.createElement("p",null,"Here, you can also purchase upgrades for your Duplicate Sleeves. These upgrades are also permanent, meaning they persist across BitNodes."),t)}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Option=void 0;const o=i(n(0)),s=n(71);t.Option=class extends o.Component{render(){return o.createElement("div",{className:"faction-work-div"},o.createElement("div",{className:"faction-work-div-wrapper"},o.createElement(s.StdButton,{onClick:this.props.onClick,text:this.props.buttonText}),o.createElement("p",null,this.props.infoText)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ParagraphWithTooltip=void 0;const o=i(n(0));t.ParagraphWithTooltip=class extends o.Component{render(){return o.createElement("p",{className:"tooltip",style:this.props.style},this.props.content,o.createElement("span",{className:"tooltiptext"},this.props.tooltip))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AutoupdatingParagraph=void 0;const o=i(n(0));t.AutoupdatingParagraph=class extends o.Component{constructor(e){super(e),this.interval=0,this.state={i:0}}componentDidMount(){const e=this.props.intervalTime?this.props.intervalTime:1e3;this.interval=setInterval(()=>this.tick(),e)}componentWillUnmount(){clearInterval(this.interval)}tick(){this.setState(e=>({i:e.i+1}))}hasTooltip(){return null==this.props.getTooltip||!!this.props.getTooltip()}tooltip(){return this.props.getTooltip?this.props.getTooltip():o.createElement(o.Fragment,null)}render(){return o.createElement("p",{className:"tooltip",style:this.props.style},this.props.getContent(),this.hasTooltip()&&o.createElement("span",{className:"tooltiptext"},this.tooltip()))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Info=void 0;const o=i(n(0)),s=n(1189),l=n(1188),c=n(68),u=n(683),m={display:"block"},p={display:"block",width:"70%"};t.Info=class extends o.Component{constructor(e){super(e),this.getFavorGainContent=this.getFavorGainContent.bind(this),this.getReputationContent=this.getReputationContent.bind(this)}getFavorGainContent(){const e=this.props.faction.getFavorGain()[0];return o.createElement(o.Fragment,null,"You will earn ",u.Favor(e)," faction favor upon resetting after installing an Augmentation")}getReputationContent(){return o.createElement(o.Fragment,null,"Reputation: ",c.Reputation(this.props.faction.playerReputation))}render(){const e={__html:this.props.factionInfo.infoText};return o.createElement("div",null,o.createElement("pre",null,o.createElement("i",{className:"text",dangerouslySetInnerHTML:e})),o.createElement("p",{style:m},"-------------------------"),o.createElement(s.AutoupdatingParagraph,{intervalTime:5e3,getContent:this.getReputationContent,getTooltip:this.getFavorGainContent}),o.createElement("p",{style:m},"-------------------------"),o.createElement(l.ParagraphWithTooltip,{content:o.createElement(o.Fragment,null,"Faction Favor: ",u.Favor(this.props.faction.favor)),tooltip:"Faction favor increases the rate at which you earn reputation for this faction by 1% per favor. Faction favor is gained whenever you reset after installing an Augmentation. The amount of favor you gain depends on how much reputation you have with the faction"}),o.createElement("p",{style:m},"-------------------------"),o.createElement("p",{style:p},"Perform work/carry out assignments for your faction to help further its cause! By doing so you will earn reputation for your faction. You will also gain reputation passively over time, although at a very slow rate. Earning reputation will allow you to purchase Augmentations through this faction, which are powerful upgrades that enhance your abilities."))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.DonateOption=void 0;const o=i(n(0)),s=n(11),l=n(31),c=n(68),u=n(71),m=n(3),p=n(12),h={margin:"5px",height:"26px"};t.DonateOption=class extends o.Component{constructor(e){super(e),this.blockStyle={display:"block"},this.state={donateAmt:0,status:e.disabled?o.createElement(o.Fragment,null,"Unlocked at ",e.favorToDonate," favor with ",e.faction.name):o.createElement(o.Fragment,null)},this.calculateRepGain=this.calculateRepGain.bind(this),this.donate=this.donate.bind(this),this.handleChange=this.handleChange.bind(this)}calculateRepGain(e){return e/s.CONSTANTS.DonateMoneyToRepDivisor*this.props.p.faction_rep_mult}donate(){const e=this.props.faction,t=this.state.donateAmt;if(isNaN(t)||t<=0)p.dialogBoxCreate("Invalid amount entered!");else if(this.props.p.canAfford(t)){this.props.p.loseMoney(t);const n=this.calculateRepGain(t);this.props.faction.playerReputation+=n,p.dialogBoxCreate(o.createElement(o.Fragment,null,"You just donated ",l.Money(t)," to ",e.name," to gain ",c.Reputation(n)," reputation")),this.props.rerender()}else p.dialogBoxCreate("You cannot afford to donate this much money!")}handleChange(e){const t=m.numeralWrapper.parseMoney(e.target.value);if(isNaN(t))this.setState({donateAmt:0,status:o.createElement(o.Fragment,null,"Invalid donate amount entered!")});else{const e=this.calculateRepGain(t);this.setState({donateAmt:t,status:o.createElement(o.Fragment,null,"This donation will result in ",c.Reputation(e)," reputation gain")})}}render(){return o.createElement("div",{className:"faction-work-div"},o.createElement("div",{className:"faction-work-div-wrapper"},o.createElement("input",{className:"text-input",onChange:this.handleChange,placeholder:"Donation amount",style:h,disabled:this.props.disabled}),o.createElement(u.StdButton,{onClick:this.donate,text:"Donate Money",disabled:this.props.disabled}),o.createElement("p",{style:this.blockStyle},this.state.status)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Augmentation=void 0;const o=i(n(0));t.Augmentation=function(e){return o.createElement("span",{className:"samefont",style:{color:"white"}},e)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.PurchaseableAugmentation=void 0;const o=i(n(0)),s=n(72),l=n(15),c=n(4),u=n(18),m=n(31),p=n(68),h=n(71),d=n(1192),_={margin:"4px",padding:"4px"},g={display:"inline-block"};t.PurchaseableAugmentation=class extends o.Component{constructor(e){super(e);const t=l.Augmentations[this.props.augName];if(null==t)throw new Error(`aug ${this.props.augName} does not exists`);this.aug=t,this.handleClick=this.handleClick.bind(this)}getMoneyCost(){return this.aug.baseCost*this.props.faction.getInfo().augmentationPriceMult}getRepCost(){return this.aug.baseRepRequirement*this.props.faction.getInfo().augmentationRepRequirementMult}handleClick(){u.Settings.SuppressBuyAugmentationConfirmation?s.purchaseAugmentation(this.aug,this.props.faction):s.purchaseAugmentationBoxCreate(this.aug,this.props.faction)}hasPrereqs(){return s.hasAugmentationPrereqs(this.aug)}hasReputation(){return this.props.faction.playerReputation>=this.getRepCost()}owned(){let e=!1;for(const t of this.props.p.queuedAugmentations)if(t.name===this.props.augName){e=!0;break}for(const t of this.props.p.augmentations)if(t.name===this.props.augName){e=!0;break}return e}render(){if(null==this.aug)return console.error(`Invalid Augmentation when trying to create PurchaseableAugmentation display element: ${this.props.augName}`),null;const e=this.getMoneyCost(),t=this.getRepCost();let n=!1,r=o.createElement(o.Fragment,null),a="";this.hasPrereqs()?this.aug.name!==c.AugmentationNames.NeuroFluxGovernor&&(this.aug.owned||this.owned())?n=!0:this.hasReputation()?r=o.createElement(o.Fragment,null,"UNLOCKED (at ",p.Reputation(t)," faction reputation) - ",m.Money(e)):(n=!0,r=o.createElement(o.Fragment,null,"LOCKED (Requires ",p.Reputation(t)," faction reputation - ",m.Money(e),")"),a="red"):(n=!0,r=o.createElement(o.Fragment,null,"LOCKED (Requires ",this.aug.prereqs.map(e=>d.Augmentation(e))," as prerequisite)"),a="red");const i={display:"inline-block"};""!==a&&(i.color=a);let l=this.aug.name;return this.aug.name===c.AugmentationNames.NeuroFluxGovernor&&(l+=` - Level ${s.getNextNeurofluxLevel()}`),o.createElement("li",null,o.createElement("span",{style:_},o.createElement(h.StdButton,{disabled:n,onClick:this.handleClick,style:g,text:l,tooltip:this.aug.info}),o.createElement("p",{style:i},r)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AugmentationsPage=void 0;const o=i(n(0)),s=n(1193),l=n(15),c=n(4),u=n(69),m=n(18),p=n(71),h={width:"70%"};t.AugmentationsPage=class extends o.Component{constructor(e){super(e),this.isPlayersGang=e.p.inGang()&&e.p.getGangName()===e.faction.name,this.state={rerenderFlag:!1,sortOrder:u.PurchaseAugmentationsOrderSetting.Default},this.rerender=this.rerender.bind(this)}getAugs(){if(this.isPlayersGang){const e=[];for(const t in l.Augmentations)l.Augmentations[t].isSpecial||e.push(t);return e}return this.props.faction.augmentations.slice()}getAugsSorted(){switch(m.Settings.PurchaseAugmentationsOrder){case u.PurchaseAugmentationsOrderSetting.Cost:return this.getAugsSortedByCost();case u.PurchaseAugmentationsOrderSetting.Reputation:return this.getAugsSortedByReputation();default:return this.getAugsSortedByDefault()}}getAugsSortedByCost(){const e=this.getAugs();return e.sort((e,t)=>{const n=l.Augmentations[e],r=l.Augmentations[t];if(null==n||null==r)throw new Error("Invalid Augmentation Names");return n.baseCost-r.baseCost}),e}getAugsSortedByReputation(){const e=this.getAugs();return e.sort((e,t)=>{const n=l.Augmentations[e],r=l.Augmentations[t];if(null==n||null==r)throw new Error("Invalid Augmentation Names");return n.baseRepRequirement-r.baseRepRequirement}),e}getAugsSortedByDefault(){return this.getAugs()}switchSortOrder(e){m.Settings.PurchaseAugmentationsOrder=e,this.rerender()}rerender(){this.setState(e=>({rerenderFlag:!e.rerenderFlag}))}render(){const e=this.getAugsSorted(),t=e.filter(e=>e===c.AugmentationNames.NeuroFluxGovernor||!this.props.p.augmentations.some(t=>t.name===e)&&!this.props.p.queuedAugmentations.some(t=>t.name===e)),n=e=>o.createElement(s.PurchaseableAugmentation,{augName:e,faction:this.props.faction,key:e,p:this.props.p,rerender:this.rerender}),r=t.map(e=>n(e));let a=o.createElement(o.Fragment,null);const i=e.filter(e=>!t.includes(e));return 0!==i.length&&(a=o.createElement(o.Fragment,null,o.createElement("br",null),o.createElement("h2",null,"Purchased Augmentations"),o.createElement("p",{style:h},"This factions also offers these augmentations but you already own them."),i.map(e=>n(e)))),o.createElement("div",null,o.createElement(p.StdButton,{onClick:this.props.routeToMainPage,text:"Back"}),o.createElement("h1",null,"Faction Augmentations"),o.createElement("p",{style:h},"These are all of the Augmentations that are available to purchase from ",this.props.faction.name,". Augmentations are powerful upgrades that will enhance your abilities."),o.createElement(p.StdButton,{onClick:()=>this.switchSortOrder(u.PurchaseAugmentationsOrderSetting.Cost),text:"Sort by Cost"}),o.createElement(p.StdButton,{onClick:()=>this.switchSortOrder(u.PurchaseAugmentationsOrderSetting.Reputation),text:"Sort by Reputation"}),o.createElement(p.StdButton,{onClick:()=>this.switchSortOrder(u.PurchaseAugmentationsOrderSetting.Default),text:"Sort by Default Order"}),o.createElement("br",null),r,a)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Literature=void 0;t.Literature=class{constructor(e,t,n){this.title=e,this.fn=t,this.txt=n}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Literatures=void 0;const r=n(1195),a=n(147);t.Literatures={},function(){let e,n,i;e="The Beginner's Guide to Hacking",n=a.LiteratureNames.HackersStartingHandbook,i="Some resources:

Learn to Program

For Experienced JavaScript Developers: NetscriptJS

Netscript Documentation

When starting out, hacking is the most profitable way to earn money and progress. This is a brief collection of tips/pointers on how to make the most out of your hacking scripts.

-hack() and grow() both work by percentages. hack() steals a certain percentage of the money on a server, and grow() increases the amount of money on a server by some percentage (multiplicatively)

-Because hack() and grow() work by percentages, they are more effective if the target server has a high amount of money. Therefore, you should try to increase the amount of money on a server (using grow()) to a certain amount before hacking it. Two import Netscript functions for this are getServerMoneyAvailable() and getServerMaxMoney()

-Keep security level low. Security level affects everything when hacking. Two important Netscript functions for this are getServerSecurityLevel() and getServerMinSecurityLevel()

-Purchase additional servers by visiting 'Alpha Enterprises' in the city. They are relatively cheap and give you valuable RAM to run more scripts early in the game

-Prioritize upgrading the RAM on your home computer. This can also be done at 'Alpha Enterprises'

-Many low level servers have free RAM. You can use this RAM to run your scripts. Use the scp Terminal or Netscript command to copy your scripts onto these servers and then run them.",t.Literatures[n]=new r.Literature(e,n,i),e="The Complete Handbook for Creating a Successful Corporation",n=a.LiteratureNames.CorporationManagementHandbook,i="Getting Started with Corporations
To get started, visit the City Hall in Sector-12 in order to create a Corporation. This requires $150b of your own money, but this $150b will get put into your Corporation's funds. After creating your Corporation, you will see it listed as one of the locations in the city. Click on your Corporation in order to manage it.

Your Corporation can have many different divisions, each in a different Industry. There are many different types of Industries, each with different properties. To create your first division, click the 'Expand into new Industry' button at the top of the management UI. The Agriculture and Software industries are recommended for your first division.

The first thing you'll need to do is hire some employees. Employees can be assigned to five different positions. Each position has a different effect on various aspects of your Corporation. It is recommended to have at least one employee at each position.

Each industry uses some combination of Materials in order to produce other Materials and/or create Products. Specific information about this is displayed in each of your divisions' UI.

Products are special, industry-specific objects. They are different than Materials because you must manually choose to develop them, and you can choose to develop any number of Products. Developing a Product takes time, but a Product typically generates significantly more revenue than any Material. Not all industries allow you to create Products. To create a Product, look for a button in the top-left panel of the division UI (e.g. For the Software Industry, the button says 'Develop Software').

To get your supply chain system started, purchase the Materials that your industry needs to produce other Materials/Products. This can be done by clicking the 'Buy' button next to the corresponding Material(s). After you have the required Materials, you will immediately start production. The amount of Materials/Products you produce is based on a variety of factors, one of which is your employees and their productivity.

Once you start producing Materials/Products, you can sell them in order to start earning revenue. This can be done by clicking the 'Sell' button next to the corresponding Material or Product. The amount of Material/Product you sell is dependent on a wide variety of different factors.

These are the basics of getting your Corporation up and running! Now, you can start purchasing upgrades to improve your bottom line. If you need money, consider looking for seed investors, who will give you money in exchange for stock shares. Otherwise, once you feel you are ready, take your Corporation public! Once your Corporation goes public, you can no longer find investors. Instead, your Corporation will be publicly traded and its stock price will change based on how well it's performing financially. You can then sell your stock shares in order to make money.

Tips/Pointers
-The 'Smart Supply' upgrade is extremely useful. Consider purchasing it as soon as possible.

-Purchasing Hardware, Robots, AI Cores, and Real Estate can potentially increase your production. The effects of these depend on what industry you are in.

-In order to optimize your production, you will need a good balance of Operators, Managers, and Engineers

-Different employees excel in different jobs. For example, the highly intelligent employees will probably do best if they are assigned to do Engineering work or Research & Development.

-If your employees have low morale, energy, or happiness, their production will greatly suffer.

-Tech is important, but don't neglect sales! Having several Businessmen can boost your sales and your bottom line.

-Don't forget to advertise your company. You won't have any business if nobody knows you.

-Having company awareness is great, but what's really important is your company's popularity. Try to keep your popularity as high as possible to see the biggest benefit for your sales

-Remember, you need to spend money to make money!

-Corporations do not reset when installing Augmentations, but they do reset when destroying a BitNode",t.Literatures[n]=new r.Literature(e,n,i),e="A Brief History of Synthoids",n=a.LiteratureNames.HistoryOfSynthoids,i="Synthetic androids, or Synthoids for short, are genetically engineered robots and, short of Augmentations, are composed entirely of organic substances. For this reason, Synthoids are virtually identical to humans in form, composition, and appearance.

Synthoids were first designed and manufactured by OmniTek Incorporated sometime around the middle of the century. Their original purpose was to be used for manual labor and as emergency responders for disasters. As such, they were initially programmed only for their specific tasks. Each iteration that followed improved upon the intelligence and capabilities of the Synthoids. By the 6th iteration, called MK-VI, the Synthoids were so smart and capable enough of making their own decisions that many argued OmniTek had created the first sentient AI. These MK-VI Synthoids were produced in mass quantities (estimates up to 50 billion) with the hopes of increasing society's productivity and bolstering the global economy. Stemming from humanity's desire for technological advancement, optimism and excitement about the future had never been higher.

All of that excitement and optimism quickly turned to fear, panic, and dread in 2070, when a terrorist group called Ascendis Totalis hacked into OmniTek and uploaded a rogue AI into severeal of their Synthoid manufacturing facilities. This hack went undetected and for months OmniTek unknowingly churned out legions of Synthoids embedded with this rogue AI. Then, on December 24th, 2070, Omnica activated dormant protocols in the rogue AI, causing all of the infected Synthoids to immediately launch a military campaign to seek and destroy all of humanity.

What ensued was the deadlist conflict in human history. This crisis, now commonly known as the Synthoid Uprising, resulted in almost ten billion deaths over the course of a year. Despite the nations of the world banding together to combat the threat, the MK-VI Synthoids were simply stronger, faster, more intelligent, and more adaptable than humans, outsmarting them at every turn.

It wasn't until the sacrifice of an elite international military taskforce, called the Bladeburners, that humanity was finally able to defeat the Synthoids. The Bladeburners' final act was a suicide bombing mission that destroyed a large portion of the MK-VI Synthoids, including many of its leaders. In the following weeks militaries from around the world were able to round up and shut down the remaining rogue MK-VI Synthoids, ending the Synthoid Uprising.

In the aftermath of the bloodshed, the Synthoid Accords were drawn up. These Accords banned OmniTek Incorporated from manufacturing any Synthoids beyond the MK-III series. They also banned any other corporation from constructing androids with advanced, near-sentient AI. MK-VI Synthoids that did not have the rogue Ascendis Totalis AI were allowed to continue their existence, but they were stripped of all rights and protections as they were not considered humans. They were also banned from doing anything that may pose a global security threat, such as working for any military/defense organization or conducting any bioengineering, computing, or robotics related research.

Unfortunately, many believe that not all of the rogue MK-VI Synthoids from the Uprising were found and destroyed, and that many of them are blending in as normal humans in society today. In response, many nations have created Bladeburner divisions, special military branches that are tasked with investigating and dealing with any Synthoid threads.

To this day, tensions still exist between the remaining Synthoids and humans as a result of the Uprising.

Nobody knows what happened to the terrorist group Ascendis Totalis.",t.Literatures[n]=new r.Literature(e,n,i),e="A Green Tomorrow",n=a.LiteratureNames.AGreenTomorrow,i="Starting a few decades ago, there was a massive global movement towards the generation of renewable energy in an effort to combat global warming and climate change. The shift towards renewable energy was a big success, or so it seemed. In 2045 a staggering 80% of the world's energy came from non-renewable fossil fuels. Now, about three decades later, that number is down to only 15%. Most of the world's energy now comes from nuclear power and renewable sources such as solar and geothermal energy. Unfortunately, these efforts were not the huge success that they seem to be.

Since 2045 primary energy use has soared almost tenfold. This was mainly due to growing urban populations and the rise of increasingly advanced (and power-hungry) technology that has become ubiquitous in our lives. So, despite the fact that the percentage of our energy that comes from fossil fuels has drastically decreased, the total amount of energy we are producing from fossil fuels has actually increased.

The grim effects of our species' irresponsible use of energy and neglect of our mother world have become increasingly apparent. Last year a temperature of 190F was recorded in the Death Valley desert, which is over 50% higher than the highest recorded temperature at the beginning of the century. In the last two decades numerous major cities such as Manhattan, Boston, and Los Angeles have been partially or fully submerged by rising sea levels. In the present day, over 75% of the world's agriculture is done in climate-controlled vertical farms, as most traditional farmland has become unusable due to severe climate conditions.

Despite all of this, the greedy and corrupt corporations that rule the world have done nothing to address these problems that threaten our species. And so it's up to us, the common people. Each and every one of us can make a difference by doing what these corporations won't: taking responsibility. If we don't, pretty soon there won't be an Earth left to save. We are the last hope for a green tomorrow.",t.Literatures[n]=new r.Literature(e,n,i),e="Alpha and Omega",n=a.LiteratureNames.AlphaOmega,i="Then we saw a new Heaven and a new Earth, for our first Heaven and Earth had gone away, and our sea was no more. And we saw a new holy city, new Aeria, coming down out of this new Heaven, prepared as a bride adorned for her husband. And we heard a loud voice saying, 'Behold, the new dwelling place of the Gods. We will dwell with them, and they will be our people, and we will be with them as their Gods. We will wipe away every tear from their eyes, and death shall be no more, neither shall there be mourning, nor crying, nor pain anymore, for the former things have passed away.'

And once we were seated on the throne we said 'Behold, I am making all things new.' Also we said, 'Write this down, for these words are trustworthy and true.' And we said to you, 'It is done! I am the Alpha and the Omega, the beginning and the end. To the thirsty I will give from the spring of the water of life without payment. The one who conquers will have this heritage, and we will be his God and he will be our son. But as for the cowardly, the faithless, the detestable, as for murderers, the sexually immoral, sorcerers, idolaters, and all liars, their portion will be in the lake that burns with fire and sulfur, for it is the second true death.'",t.Literatures[n]=new r.Literature(e,n,i),e="Are We Living in a Computer Simulation?",n=a.LiteratureNames.SimulatedReality,i="The idea that we are living in a virtual world is not new. It's a trope that has been explored constantly in literature and pop culture. However, it is also a legitimate scientific hypothesis that many notable physicists and philosophers have debated for years.

Proponents for this simulated reality theory often point to how advanced our technology has become, as well as the incredibly fast pace at which it has advanced over the past decades. The amount of computing power available to us has increased over 100-fold since 2060 due to the development of nanoprocessors and quantum computers. Artifical Intelligence has advanced to the point where our entire lives are controlled by robots and machines that handle our day-to-day activities such as autonomous transportation and scheduling. If we consider the pace at which this technology has advanced and assume that these developments continue, it's reasonable to assume that at some point in the future our technology would be advanced enough that we could create simulations that are indistinguishable from reality. However, if continued technological advancement is a reasonable outcome, then it is very likely that such a scenario has already happened.

Statistically speaking, somewhere out there in the infinite universe there is an advanced, intelligent species that already has such technology. Who's to say that they haven't already created such a virtual reality: our own?",t.Literatures[n]=new r.Literature(e,n,i),e="Beyond Man",n=a.LiteratureNames.BeyondMan,i="Humanity entered a 'transhuman' era a long time ago. And despite the protests and criticisms of many who cried out against human augmentation at the time, the transhuman movement continued and prospered. Proponents of the movement ignored the critics, arguing that it was in our inherent nature to better ourselves. To improve. To be more than we were. They claimed that not doing so would be to go against every living organism's biological purpose: evolution and survival of the fittest.

And here we are today, with technology that is advanced enough to augment humans to a state that can only be described as posthuman. But what do we have to show for it when this augmentation technology is only available to the so-called 'elite'? Are we really better off than before when only 5% of the world's population has access to this technology? When the powerful corporations and organizations of the world keep it all to themselves, have we really evolved?

Augmentation technology has only further increased the divide between the rich and the poor, between the powerful and the oppressed. We have not become 'more than human'. We have not evolved from nature's original design. We are still the greedy, corrupted, and evil men that we always were.",t.Literatures[n]=new r.Literature(e,n,i),e="Brighter than the Sun",n=a.LiteratureNames.BrighterThanTheSun,i="When people think about the corporations that dominate the East, they typically think of KuaiGong International, which holds a complete monopoly for manufacturing and commerce in Asia, or Global Pharmaceuticals, the world's largest drug company, or OmniTek Incorporated, the global leader in intelligent and autonomous robots. But there's one company that has seen a rapid rise in the last year and is poised to dominate not only the East, but the entire world: TaiYang Digital.

TaiYang Digital is a Chinese internet-technology corporation that provides services such as online advertising, search engines, gaming, media, entertainment, and cloud computing/storage. Its name TaiYang comes from the Chinese word for 'sun'. In Chinese culture, the sun is a 'yang' symbol associated with life, heat, masculinity, and heaven.

The company was founded less than 5 years ago and is already the third highest valued company in all of Asia. In 2076 it generated a total revenue of over 10 trillion yuan. It's services are used daily by over a billion people worldwide.

TaiYang Digital's meteoric rise is extremely surprising in modern society. This sort of growth is something you'd commonly see in the first half of the century, especially for tech companies. However in the last two decades the number of corporations has significantly declined as the largest entities quickly took over the economy. Corporations such as ECorp, MegaCorp, and KuaiGong have established such strong monopolies in their market sectors that they have effectively killed off all of the smaller and new corporations that have tried to start up over the years. This is what makes the rise of TaiYang Digital so impressive. And if TaiYang continues down this path, then they have a bright future ahead of them.",t.Literatures[n]=new r.Literature(e,n,i),e="Democracy is Dead: The Fall of an Empire",n=a.LiteratureNames.DemocracyIsDead,i="They rose from the shadows in the street.
From the places where the oppressed meet.
Their cries echoed loudly through the air.
As they once did in Tiananmen Square.
Loudness in the silence, Darkness in the light.
They came forth with power and might.
Once the beacon of democracy, America was first.
Its pillars of society destroyed and dispersed.
Soon the cries rose everywhere, with revolt and riot.
Until one day, finally, all was quiet.
From the ashes rose a new order, corporatocracy was its name.
Rome, Mongol, Byzantine, all of history is just the same.
For man will never change in a fundamental way.
And now democracy is dead, in the USA.",t.Literatures[n]=new r.Literature(e,n,i),e="Figures Show Rising Crime Rates in Sector-12",n=a.LiteratureNames.Sector12Crime,i="A recent study by analytics company Wilson Inc. shows a significant rise in criminal activity in Sector-12. Perhaps the most alarming part of the statistic is that most of the rise is in violent crime such as homicide and assault. According to the study, the city saw a total of 21,406 reported homicides in 2076, which is over a 20% increase compared to 2075.

CIA director David Glarow says its too early to know whether these figures indicate the beginning of a sustained increase in crime rates, or whether the year was just an unfortunate outlier. He states that many intelligence and law enforcement agents have noticed an increase in organized crime activites, and believes that these figures may be the result of an uprising from criminal organizations such as The Syndicate or the Slum Snakes.",t.Literatures[n]=new r.Literature(e,n,i),e="Man and the Machine",n=a.LiteratureNames.ManAndMachine,i="In 2005 Ray Kurzweil popularized his theory of the Singularity. He predicted that the rate of technological advancement would continue to accelerate faster and faster until one day machines would be become infinitely more intelligent than humans. This point, called the Singularity, would result in a drastic transformation of the world as we know it. He predicted that the Singularity would arrive by 2045. And yet here we are, more than three decades later, where most would agree that we have not yet reached a point where computers and machines are vastly more intelligent than we are. So what gives?

The answer is that we have reached the Singularity, just not in the way we expected. The artifical superintelligence that was predicted by Kurzweil and others exists in the world today - in the form of Augmentations. Yes, those Augmentations that the rich and powerful keep to themselves enable humans to become superintelligent beings. The Singularity did not lead to a world where our machines are infinitely more intelligent than us, it led to a world where man and machine can merge to become something greater. Most of the world just doesn't know it yet.",t.Literatures[n]=new r.Literature(e,n,i),e="Secret Societies",n=a.LiteratureNames.SecretSocieties,i="The idea of secret societies has long intrigued the general public by inspiring curiosity, fascination, and distrust. People have long wondered about who these secret society members are and what they do, with the most radical of conspiracy theorists claiming that they control everything in the entire world. And while the world may never know for sure, it is likely that many secret societies do actually exist, even today.

However, the secret societies of the modern world are nothing like those that (supposedly) existed decades and centuries ago. The Freemasons, Knights Templar, and Illuminati, while they may have been around at the turn of the 21st century, almost assuredly do not exist today. The dominance of the Web in our everyday lives and the fact that so much of the world is now digital has given rise to a new breed of secret societies: Internet-based ones.

Commonly called 'hacker groups', Internet-based secret societies have become well-known in today's world. Some of these, such as The Black Hand, are black hat groups that claim they are trying to help the oppressed by attacking the elite and powerful. Others, such as NiteSec, are hacktivist groups that try to push political and social agendas. Perhaps the most intriguing hacker group is the mysterious Bitrunners, whose purpose still remains unknown.",t.Literatures[n]=new r.Literature(e,n,i),e="Space: The Failed Frontier",n=a.LiteratureNames.TheFailedFrontier,i="Humans have long dreamed about spaceflight. With enduring interest, we were driven to explore the unknown and discover new worlds. We dreamed about conquering the stars. And in our quest, we pushed the boundaries of our scientific limits, and then pushed further. Space exploration lead to the development of many important technologies and new industries.

But sometime in the middle of the 21st century, all of that changed. Humanity lost its ambitions and aspirations of exploring the cosmos. The once-large funding for agencies like NASA and the European Space Agency gradually whittled away until their eventual disbanding in the 2060's. Not even militaries are fielding flights into space nowadays. The only remnants of the once great mission for cosmic conquest are the countless satellites in near-earth orbit, used for communications, espionage, and other corporate interests.

And as we continue to look at the state of space technology, it becomes more and more apparent that we will never return to that golden age of space exploration, that age where everyone dreamed of going beyond earth for the sake of discovery.",t.Literatures[n]=new r.Literature(e,n,i),e="Coded Intelligence: Myth or Reality?",n=a.LiteratureNames.CodedIntelligence,i="Tremendous progress has been made in the field of Artificial Intelligence over the past few decades. Our autonomous vehicles and transporation systems. The electronic personal assistants that control our everyday lives. Medical, service, and manufacturing robots. All of these are examples of how far AI has come and how much it has improved our daily lives. However, the question still remains of whether AI will ever be advanced enough to re-create human intelligence.

We've certainly come close to artificial intelligence that is similar to humans. For example OmniTek Incorporated's CompanionBot, a robot meant to act as a comforting friend for lonely and grieving people, is eerily human-like in its appearance, speech, mannerisms, and even movement. However its artificial intelligence isn't the same as that of humans. Not yet. It doesn't have sentience or self-awareness or consciousness.

Many neuroscientists believe that we won't ever reach the point of creating artificial human intelligence. 'At the end of the the day, AI comes down to 1's and 0's, while the human brain does not. We'll never see AI that is identical to that of humans.'",t.Literatures[n]=new r.Literature(e,n,i),e="Synthetic Muscles",n=a.LiteratureNames.SyntheticMuscles,i="Initial versions of synthetic muscles weren't made of anything organic but were actually crude devices made to mimic human muscle function. Some of the early iterations were actually made of common materials such as fishing lines and sewing threads due to their high strength for a cheap cost.

As technology progressed, however, advances in biomedical engineering paved the way for a new method of creating synthetic muscles. Instead of creating something that closely imitated the functionality of human muscle, scientists discovered a way of forcing the human body itself to augment its own muscle tissue using both synthetic and organic materials. This is typically done using gene therapy or chemical injections.",t.Literatures[n]=new r.Literature(e,n,i),e="Tensions rise in global tech race",n=a.LiteratureNames.TensionsInTechRace,i="Have we entered a new Cold War? Is WWIII just beyond the horizon?

After rumors came out that OmniTek Incorporated had begun developing advanced robotic supersoldiers, geopolitical tensions quickly flared between the USA, Russia, and several Asian superpowers. In a rare show of cooperation between corporations, MegaCorp and ECorp have reportedly launched hundreds of new surveillance and espionage satellites. Defense contractors such as DeltaOne and AeroCorp have been working with the CIA and NSA to prepare for conflict. Meanwhile, the rest of the world sits in earnest hoping that it never reaches full-scale war. With today's technology and firepower, a World War would assuredly mean the end of human civilization.",t.Literatures[n]=new r.Literature(e,n,i),e="The Cost of Immortality",n=a.LiteratureNames.CostOfImmortality,i="Evolution and advances in medical and augmentation technology has lead to drastic improvements in human mortality rates. Recent figures show that the life expectancy for humans that live in a first-world country is about 130 years of age, almost double of what it was at the turn of the century. However, this increase in average lifespan has had some significant effects on society and culture.

Due to longer lifespans and a better quality of life, many adults are holding off on having kids until much later. As a result, the percentage of youth in first-world countries has been decreasing, while the number of senior citizens is significantly increasing.

Perhaps the most alarming result of all of this is the rapidly shrinking workforce. Despite the increase in life expectancy, the typical retirement age for workers in America has remained about the same, meaning a larger and larger percentage of people in America are retirees. Furthermore, many young adults are holding off on joining the workforce because they feel that they have plenty of time left in their lives for employment, and want to 'enjoy life while they're young.' For most industries, this shrinking workforce is not a major issue as most things are handled by robots anyways. However, there are still several key industries such as engineering and education that have not been automated, and these remain in danger to this cultural phenomenon.",t.Literatures[n]=new r.Literature(e,n,i),e="The Hidden World",n=a.LiteratureNames.TheHiddenWorld,i="WAKE UP SHEEPLE

THE GOVERNMENT DOES NOT EXIST. CORPORATIONS DO NOT RUN SOCIETY

THE ILLUMINATI ARE THE SECRET RULERS OF THE WORLD!

Yes, the Illuminati of legends. The ancient secret society that controls the entire world from the shadows with their invisible hand. The group of the rich and wealthy that have penetrated every major government, financial agency, and corporation in the last three hundred years.

OPEN YOUR EYES

It was the Illuminati that brought an end to democracy in the world. They are the driving force behind everything that happens.

THEY ARE ALL AROUND YOU

After destabilizing the world's governments, they are now entering the final stage of their master plan. They will secretly initiate global crises. Terrorism. Pandemics. World War. And out of the chaos that ensues they will build their New World Order.",t.Literatures[n]=new r.Literature(e,n,i),e="The New God",n=a.LiteratureNames.TheNewGod,i="Everyone has a moment in their life when they wonder about the bigger questions.

What's the point of all this? What is my purpose?

Some people dare to think even bigger.

What will the fate of the human race be?

We live in an era vastly different from that of 15 or even 20 years ago. We have gone beyond the limits of humanity. We have stripped ourselves of the tyranny of flesh.

The Singularity is here. The merging of man and machine. This is where humanity evolves into ",t.Literatures[n]=new r.Literature(e,n,i),e="The New Triads",n=a.LiteratureNames.NewTriads,i="The Triads were an ancient transnational crime syndicate based in China, Hong Kong, and other Asian territories. They were often considered one of the first and biggest criminal secret societies. While most of the branches of the Triads have been destroyed over the past few decades, the crime faction has spawned and inspired a number of other Asian crime organizations over the past few years. The most notable of these is the Tetrads.

It is widely believed that the Tetrads are a rogue group that splintered off from the Triads sometime in the mid 21st century. The founders of the Tetrads, all of whom were ex-Triad members, believed that the Triads were losing their purpose and direction. The Tetrads started off as a small group that mainly engaged in fraud and extortion. They were largely unknown until just a few years ago when they took over the illegal drug trade in all of the major Asian cities. They quickly became the most powerful crime syndicate in the continent.

Not much else is known about the Tetrads, or about the efforts the Asian governments and corporations are making to take down this large new crime organization. Many believe that the Tetrads have infiltrated the governments and powerful corporations in Asia, which has helped faciliate their recent rapid rise.",t.Literatures[n]=new r.Literature(e,n,i),e="The Secret War",n=a.LiteratureNames.TheSecretWar,i="",t.Literatures[n]=new r.Literature(e,n,i)}()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createCityMap=void 0;const r=n(172);t.createCityMap=function(e){const t={},n=Object.keys(r.Cities);for(let r=0;r0&&(this.children=e.children),null!=e.parent&&(this.parent=e.parent)}addChild(e){this.children.push(e),e.parent=this}createTreantMarkup(){const e=[];for(let t=0;t`+`${this.text}
${a.numeralWrapper.format(this.cost,"0,0")} Scientific Research`+''+`${n.desc}`+"",text:{name:this.text}}}findNode(e){if(this.text===e)return this;let t=null;for(let n=0;ne.name<=t.name?-1:1);const t=e.map(e=>{const t=l.Augmentations[e.name];let n=null;return e.name===c.AugmentationNames.NeuroFluxGovernor&&(n=e.level),o.createElement("li",{key:e.name},o.createElement(p.AugmentationAccordion,{aug:t,level:n}))});return o.createElement(o.Fragment,null,t)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.InstalledAugmentationsAndSourceFiles=void 0;const o=i(n(0)),s=n(1217),l=n(917),c=n(916),u=n(914),m=n(18),p=n(69);t.InstalledAugmentationsAndSourceFiles=class extends o.Component{constructor(e){super(e),this.state={rerenderFlag:!1},this.collapseAllHeaders=this.collapseAllHeaders.bind(this),this.expandAllHeaders=this.expandAllHeaders.bind(this),this.sortByAcquirementTime=this.sortByAcquirementTime.bind(this),this.sortInOrder=this.sortInOrder.bind(this),this.listRef=o.createRef()}collapseAllHeaders(){const e=this.listRef.current;if(null==e)return;const t=e.getElementsByClassName("accordion-header");for(let e=0;e({rerenderFlag:!e.rerenderFlag}))}sortByAcquirementTime(){m.Settings.OwnedAugmentationsOrder=p.OwnedAugmentationsOrderSetting.AcquirementTime,this.rerender()}sortInOrder(){m.Settings.OwnedAugmentationsOrder=p.OwnedAugmentationsOrderSetting.Alphabetically,this.rerender()}render(){return o.createElement(o.Fragment,null,o.createElement(l.ListConfiguration,{collapseAllButtonsFn:this.collapseAllHeaders,expandAllButtonsFn:this.expandAllHeaders,sortByAcquirementTimeFn:this.sortByAcquirementTime,sortInOrderFn:this.sortInOrder}),o.createElement("ul",{className:"augmentations-list",ref:this.listRef},o.createElement(u.SourceFileMinus1,null),o.createElement(c.OwnedSourceFiles,null),o.createElement(s.InstalledAugmentations,null)))}}},,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.serverMetadata=void 0;const r=n(50),a=n(147);t.serverMetadata=[{hackDifficulty:99,hostname:"ecorp",moneyAvailable:{max:7e10,min:3e10},networkLayer:15,numOpenPortsRequired:5,organizationName:r.LocationName.AevumECorp,requiredHackingSkill:{max:1400,min:1050},serverGrowth:99,specialName:r.LocationName.AevumECorp},{hackDifficulty:99,hostname:"megacorp",moneyAvailable:{max:6e10,min:4e10},networkLayer:15,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12MegaCorp,requiredHackingSkill:{max:1350,min:1100},serverGrowth:99,specialName:r.LocationName.Sector12MegaCorp},{hackDifficulty:{max:88,min:72},hostname:"b-and-a",moneyAvailable:{max:3e10,min:15e9},networkLayer:14,numOpenPortsRequired:5,organizationName:r.LocationName.AevumBachmanAndAssociates,requiredHackingSkill:{max:1150,min:900},serverGrowth:{max:80,min:60},specialName:r.LocationName.AevumBachmanAndAssociates},{hackDifficulty:{max:97,min:88},hostname:"blade",literature:[a.LiteratureNames.BeyondMan],maxRamExponent:{max:9,min:5},moneyAvailable:{max:4e10,min:1e10},networkLayer:14,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12BladeIndustries,requiredHackingSkill:{max:1200,min:900},serverGrowth:{max:85,min:55},specialName:r.LocationName.Sector12BladeIndustries},{hackDifficulty:99,hostname:"nwo",literature:[a.LiteratureNames.TheHiddenWorld],moneyAvailable:{max:4e10,min:2e10},networkLayer:14,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenNWO,requiredHackingSkill:{max:1300,min:950},serverGrowth:{max:95,min:65},specialName:r.LocationName.VolhavenNWO},{hackDifficulty:{max:65,min:45},hostname:"clarkinc",literature:[a.LiteratureNames.BeyondMan,a.LiteratureNames.CostOfImmortality],moneyAvailable:{max:25e9,min:15e9},networkLayer:14,numOpenPortsRequired:5,organizationName:r.LocationName.AevumClarkeIncorporated,requiredHackingSkill:{max:1250,min:950},serverGrowth:{max:75,min:45},specialName:r.LocationName.AevumClarkeIncorporated},{hackDifficulty:{max:99,min:90},hostname:"omnitek",literature:[a.LiteratureNames.CodedIntelligence,a.LiteratureNames.HistoryOfSynthoids],maxRamExponent:{max:9,min:7},moneyAvailable:{max:22e9,min:13e9},networkLayer:13,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenOmniTekIncorporated,requiredHackingSkill:{max:1100,min:900},serverGrowth:{max:99,min:95},specialName:r.LocationName.VolhavenOmniTekIncorporated},{hackDifficulty:{max:75,min:55},hostname:"4sigma",moneyAvailable:{max:25e9,min:15e9},networkLayer:13,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12FourSigma,requiredHackingSkill:{max:1250,min:900},serverGrowth:{max:99,min:75},specialName:r.LocationName.Sector12FourSigma},{hackDifficulty:{max:99,min:95},hostname:"kuai-gong",moneyAvailable:{max:3e10,min:2e10},networkLayer:13,numOpenPortsRequired:5,organizationName:r.LocationName.ChongqingKuaiGongInternational,requiredHackingSkill:{max:1300,min:950},serverGrowth:{max:99,min:90},specialName:r.LocationName.ChongqingKuaiGongInternational},{hackDifficulty:{max:97,min:83},hostname:"fulcrumtech",literature:[a.LiteratureNames.SimulatedReality],maxRamExponent:{max:11,min:7},moneyAvailable:{max:18e8,min:14e8},networkLayer:12,numOpenPortsRequired:5,organizationName:r.LocationName.AevumFulcrumTechnologies,requiredHackingSkill:{max:1250,min:950},serverGrowth:{max:99,min:80},specialName:r.LocationName.AevumFulcrumTechnologies},{hackDifficulty:99,hostname:"fulcrumassets",moneyAvailable:1e6,networkLayer:15,numOpenPortsRequired:5,organizationName:r.LocationName.AevumFulcrumTechnologies,requiredHackingSkill:{max:1600,min:1100},serverGrowth:1,specialName:"Fulcrum Secret Technologies Server"},{hackDifficulty:{max:92,min:78},hostname:"stormtech",moneyAvailable:{max:12e8,min:1e9},networkLayer:12,numOpenPortsRequired:5,organizationName:r.LocationName.IshimaStormTechnologies,requiredHackingSkill:{max:1075,min:875},serverGrowth:{max:92,min:68},specialName:r.LocationName.IshimaStormTechnologies},{hackDifficulty:{max:96,min:84},hostname:"defcomm",moneyAvailable:{max:95e7,min:8e8},networkLayer:9,numOpenPortsRequired:5,organizationName:r.LocationName.NewTokyoDefComm,requiredHackingSkill:{max:1050,min:850},serverGrowth:{max:73,min:47},specialName:r.LocationName.NewTokyoDefComm},{hackDifficulty:{max:90,min:70},hostname:"infocomm",moneyAvailable:{max:9e8,min:6e8},networkLayer:10,numOpenPortsRequired:5,organizationName:"InfoComm",requiredHackingSkill:{max:950,min:875},serverGrowth:{max:75,min:35}},{hackDifficulty:{max:95,min:85},hostname:"helios",literature:[a.LiteratureNames.BeyondMan],maxRamExponent:{max:8,min:5},moneyAvailable:{max:75e7,min:55e7},networkLayer:12,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenHeliosLabs,requiredHackingSkill:{max:900,min:800},serverGrowth:{max:80,min:70},specialName:r.LocationName.VolhavenHeliosLabs},{hackDifficulty:{max:90,min:80},hostname:"vitalife",literature:[a.LiteratureNames.AGreenTomorrow],maxRamExponent:{max:7,min:4},moneyAvailable:{max:8e8,min:7e8},networkLayer:12,numOpenPortsRequired:5,organizationName:r.LocationName.NewTokyoVitaLife,requiredHackingSkill:{max:900,min:775},serverGrowth:{max:80,min:60},specialName:r.LocationName.NewTokyoVitaLife},{hackDifficulty:{max:95,min:85},hostname:"icarus",moneyAvailable:{max:1e9,min:9e8},networkLayer:9,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12IcarusMicrosystems,requiredHackingSkill:{max:925,min:850},serverGrowth:{max:95,min:85},specialName:r.LocationName.Sector12IcarusMicrosystems},{hackDifficulty:{max:90,min:80},hostname:"univ-energy",maxRamExponent:{max:7,min:4},moneyAvailable:{max:12e8,min:11e8},networkLayer:9,numOpenPortsRequired:4,organizationName:r.LocationName.Sector12UniversalEnergy,requiredHackingSkill:{max:900,min:800},serverGrowth:{max:90,min:80},specialName:r.LocationName.Sector12UniversalEnergy},{hackDifficulty:{max:80,min:70},hostname:"titan-labs",literature:[a.LiteratureNames.CodedIntelligence],maxRamExponent:{max:7,min:4},moneyAvailable:{max:9e8,min:75e7},networkLayer:11,numOpenPortsRequired:5,organizationName:"Titan Laboratories",requiredHackingSkill:{max:875,min:800},serverGrowth:{max:80,min:60}},{hackDifficulty:{max:75,min:65},hostname:"microdyne",literature:[a.LiteratureNames.SyntheticMuscles],maxRamExponent:{max:6,min:4},moneyAvailable:{max:7e8,min:5e8},networkLayer:11,numOpenPortsRequired:5,organizationName:"Microdyne Technologies",requiredHackingSkill:{max:875,min:800},serverGrowth:{max:90,min:70}},{hackDifficulty:{max:80,min:70},hostname:"taiyang-digital",literature:[a.LiteratureNames.AGreenTomorrow,a.LiteratureNames.BrighterThanTheSun],moneyAvailable:{max:9e8,min:8e8},networkLayer:10,numOpenPortsRequired:5,organizationName:"Taiyang Digital",requiredHackingSkill:{max:950,min:850},serverGrowth:{max:80,min:70}},{hackDifficulty:{max:65,min:55},hostname:"galactic-cyber",moneyAvailable:{max:85e7,min:75e7},networkLayer:7,numOpenPortsRequired:5,organizationName:r.LocationName.AevumGalacticCybersystems,requiredHackingSkill:{max:875,min:825},serverGrowth:{max:90,min:70},specialName:r.LocationName.AevumGalacticCybersystems},{hackDifficulty:{max:90,min:80},hostname:"aerocorp",literature:[a.LiteratureNames.ManAndMachine],moneyAvailable:{max:12e8,min:1e9},networkLayer:7,numOpenPortsRequired:5,organizationName:r.LocationName.AevumAeroCorp,requiredHackingSkill:{max:925,min:850},serverGrowth:{max:65,min:55},specialName:r.LocationName.AevumAeroCorp},{hackDifficulty:{max:95,min:85},hostname:"omnia",literature:[a.LiteratureNames.HistoryOfSynthoids],maxRamExponent:{max:6,min:4},moneyAvailable:{max:1e9,min:9e8},networkLayer:8,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenOmniaCybersystems,requiredHackingSkill:{max:950,min:850},serverGrowth:{max:70,min:60},specialName:r.LocationName.VolhavenOmniaCybersystems},{hackDifficulty:{max:65,min:55},hostname:"zb-def",literature:[a.LiteratureNames.SyntheticMuscles],moneyAvailable:{max:11e8,min:9e8},networkLayer:10,numOpenPortsRequired:4,organizationName:"ZB Defense Industries",requiredHackingSkill:{max:825,min:775},serverGrowth:{max:75,min:65}},{hackDifficulty:{max:80,min:60},hostname:"applied-energetics",moneyAvailable:{max:1e9,min:7e8},networkLayer:11,numOpenPortsRequired:4,organizationName:"Applied Energetics",requiredHackingSkill:{max:850,min:775},serverGrowth:{max:75,min:70}},{hackDifficulty:{max:80,min:70},hostname:"solaris",literature:[a.LiteratureNames.AGreenTomorrow,a.LiteratureNames.TheFailedFrontier],maxRamExponent:{max:7,min:4},moneyAvailable:{max:9e8,min:7e8},networkLayer:9,numOpenPortsRequired:5,organizationName:r.LocationName.ChongqingSolarisSpaceSystems,requiredHackingSkill:{max:850,min:750},serverGrowth:{max:80,min:70},specialName:r.LocationName.ChongqingSolarisSpaceSystems},{hackDifficulty:{max:85,min:75},hostname:"deltaone",moneyAvailable:{max:17e8,min:13e8},networkLayer:8,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12DeltaOne,requiredHackingSkill:{max:900,min:800},serverGrowth:{max:70,min:50},specialName:r.LocationName.Sector12DeltaOne},{hackDifficulty:{max:85,min:75},hostname:"global-pharm",literature:[a.LiteratureNames.AGreenTomorrow],maxRamExponent:{max:6,min:3},moneyAvailable:{max:175e7,min:15e8},networkLayer:7,numOpenPortsRequired:4,organizationName:r.LocationName.NewTokyoGlobalPharmaceuticals,requiredHackingSkill:{max:850,min:750},serverGrowth:{max:90,min:80},specialName:r.LocationName.NewTokyoGlobalPharmaceuticals},{hackDifficulty:{max:80,min:60},hostname:"nova-med",moneyAvailable:{max:125e7,min:11e8},networkLayer:10,numOpenPortsRequired:4,organizationName:r.LocationName.IshimaNovaMedical,requiredHackingSkill:{max:850,min:775},serverGrowth:{max:85,min:65},specialName:r.LocationName.IshimaNovaMedical},{hackDifficulty:{max:90,min:70},hostname:"zeus-med",moneyAvailable:{max:15e8,min:13e8},networkLayer:9,numOpenPortsRequired:5,organizationName:"Zeus Medical",requiredHackingSkill:{max:850,min:800},serverGrowth:{max:80,min:70}},{hackDifficulty:{max:80,min:70},hostname:"unitalife",maxRamExponent:{max:6,min:4},moneyAvailable:{max:11e8,min:1e9},networkLayer:8,numOpenPortsRequired:4,organizationName:"UnitaLife Group",requiredHackingSkill:{max:825,min:775},serverGrowth:{max:80,min:70}},{hackDifficulty:{max:80,min:60},hostname:"lexo-corp",maxRamExponent:{max:7,min:4},moneyAvailable:{max:8e8,min:7e8},networkLayer:6,numOpenPortsRequired:4,organizationName:r.LocationName.VolhavenLexoCorp,requiredHackingSkill:{max:750,min:650},serverGrowth:{max:65,min:55},specialName:r.LocationName.VolhavenLexoCorp},{hackDifficulty:{max:60,min:40},hostname:"rho-construction",maxRamExponent:{max:6,min:4},moneyAvailable:{max:7e8,min:5e8},networkLayer:6,numOpenPortsRequired:3,organizationName:r.LocationName.AevumRhoConstruction,requiredHackingSkill:{max:525,min:475},serverGrowth:{max:60,min:40},specialName:r.LocationName.AevumRhoConstruction},{hackDifficulty:{max:70,min:50},hostname:"alpha-ent",literature:[a.LiteratureNames.Sector12Crime],maxRamExponent:{max:7,min:4},moneyAvailable:{max:75e7,min:6e8},networkLayer:6,numOpenPortsRequired:4,organizationName:r.LocationName.Sector12AlphaEnterprises,requiredHackingSkill:{max:600,min:500},serverGrowth:{max:60,min:50},specialName:r.LocationName.Sector12AlphaEnterprises},{hackDifficulty:{max:80,min:70},hostname:"aevum-police",maxRamExponent:{max:6,min:4},moneyAvailable:{max:4e8,min:2e8},networkLayer:6,numOpenPortsRequired:4,organizationName:r.LocationName.AevumPolice,requiredHackingSkill:{max:450,min:400},serverGrowth:{max:50,min:30},specialName:r.LocationName.AevumPolice},{hackDifficulty:{max:55,min:45},hostname:"rothman-uni",literature:[a.LiteratureNames.SecretSocieties,a.LiteratureNames.TheFailedFrontier,a.LiteratureNames.TensionsInTechRace],maxRamExponent:{max:7,min:4},moneyAvailable:{max:25e7,min:175e6},networkLayer:5,numOpenPortsRequired:3,organizationName:r.LocationName.Sector12RothmanUniversity,requiredHackingSkill:{max:430,min:370},serverGrowth:{max:45,min:35},specialName:r.LocationName.Sector12RothmanUniversity},{hackDifficulty:{max:85,min:65},hostname:"zb-institute",maxRamExponent:{max:7,min:4},moneyAvailable:{max:11e8,min:8e8},networkLayer:5,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenZBInstituteOfTechnology,requiredHackingSkill:{max:775,min:725},serverGrowth:{max:85,min:75},specialName:r.LocationName.VolhavenZBInstituteOfTechnology},{hackDifficulty:{max:65,min:45},hostname:"summit-uni",literature:[a.LiteratureNames.SecretSocieties,a.LiteratureNames.TheFailedFrontier,a.LiteratureNames.SyntheticMuscles],maxRamExponent:{max:6,min:4},moneyAvailable:{max:35e7,min:2e8},networkLayer:5,numOpenPortsRequired:3,organizationName:r.LocationName.AevumSummitUniversity,requiredHackingSkill:{max:475,min:425},serverGrowth:{max:60,min:40},specialName:r.LocationName.AevumSummitUniversity},{hackDifficulty:{max:80,min:60},hostname:"syscore",moneyAvailable:{max:6e8,min:4e8},networkLayer:5,numOpenPortsRequired:4,organizationName:r.LocationName.VolhavenSysCoreSecurities,requiredHackingSkill:{max:650,min:550},serverGrowth:{max:70,min:60},specialName:r.LocationName.VolhavenSysCoreSecurities},{hackDifficulty:{max:70,min:60},hostname:"catalyst",literature:[a.LiteratureNames.TensionsInTechRace],maxRamExponent:{max:7,min:4},moneyAvailable:{max:55e7,min:3e8},networkLayer:5,numOpenPortsRequired:3,organizationName:"Catalyst Ventures",requiredHackingSkill:{max:450,min:400},serverGrowth:{max:55,min:25}},{hackDifficulty:{max:45,min:35},hostname:"the-hub",maxRamExponent:{max:6,min:3},moneyAvailable:{max:2e8,min:15e7},networkLayer:4,numOpenPortsRequired:2,organizationName:"The Hub",requiredHackingSkill:{max:325,min:275},serverGrowth:{max:55,min:45}},{hackDifficulty:{max:65,min:55},hostname:"comptek",literature:[a.LiteratureNames.ManAndMachine],moneyAvailable:{max:25e7,min:22e7},networkLayer:4,numOpenPortsRequired:3,organizationName:r.LocationName.VolhavenCompuTek,requiredHackingSkill:{max:400,min:300},serverGrowth:{max:65,min:45},specialName:r.LocationName.VolhavenCompuTek},{hackDifficulty:{max:80,min:60},hostname:"netlink",literature:[a.LiteratureNames.SimulatedReality],maxRamExponent:{max:7,min:4},moneyAvailable:275e6,networkLayer:4,numOpenPortsRequired:3,organizationName:r.LocationName.AevumNetLinkTechnologies,requiredHackingSkill:{max:425,min:375},serverGrowth:{max:75,min:45},specialName:r.LocationName.AevumNetLinkTechnologies},{hackDifficulty:{max:65,min:35},hostname:"johnson-ortho",moneyAvailable:{max:85e6,min:7e7},networkLayer:4,numOpenPortsRequired:2,organizationName:"Johnson Orthopedics",requiredHackingSkill:{max:300,min:250},serverGrowth:{max:65,min:35}},{hackDifficulty:1,hostname:"n00dles",literature:[],maxRamExponent:2,moneyAvailable:7e4,networkLayer:1,numOpenPortsRequired:0,organizationName:r.LocationName.NewTokyoNoodleBar,requiredHackingSkill:1,serverGrowth:3e3,specialName:r.LocationName.NewTokyoNoodleBar},{hackDifficulty:10,hostname:"foodnstuff",literature:[a.LiteratureNames.Sector12Crime],maxRamExponent:4,moneyAvailable:2e6,networkLayer:1,numOpenPortsRequired:0,organizationName:r.LocationName.Sector12FoodNStuff,requiredHackingSkill:1,serverGrowth:5,specialName:r.LocationName.Sector12FoodNStuff},{hackDifficulty:10,hostname:"sigma-cosmetics",maxRamExponent:4,moneyAvailable:23e5,networkLayer:1,numOpenPortsRequired:0,organizationName:"Sigma Cosmetics",requiredHackingSkill:5,serverGrowth:10},{hackDifficulty:15,hostname:"joesguns",maxRamExponent:4,moneyAvailable:25e5,networkLayer:1,numOpenPortsRequired:0,organizationName:r.LocationName.Sector12JoesGuns,requiredHackingSkill:10,serverGrowth:20,specialName:r.LocationName.Sector12JoesGuns},{hackDifficulty:25,hostname:"zer0",maxRamExponent:5,moneyAvailable:75e5,networkLayer:2,numOpenPortsRequired:1,organizationName:"ZER0 Nightclub",requiredHackingSkill:75,serverGrowth:40},{hackDifficulty:20,hostname:"nectar-net",maxRamExponent:4,moneyAvailable:275e4,networkLayer:2,numOpenPortsRequired:0,organizationName:"Nectar Nightclub Network",requiredHackingSkill:20,serverGrowth:25},{hackDifficulty:25,hostname:"neo-net",literature:[a.LiteratureNames.TheHiddenWorld],maxRamExponent:5,moneyAvailable:5e6,networkLayer:3,numOpenPortsRequired:1,organizationName:"Neo Nightclub Network",requiredHackingSkill:50,serverGrowth:25},{hackDifficulty:30,hostname:"silver-helix",literature:[a.LiteratureNames.NewTriads],maxRamExponent:6,moneyAvailable:45e6,networkLayer:3,numOpenPortsRequired:2,organizationName:"Silver Helix",requiredHackingSkill:150,serverGrowth:30},{hackDifficulty:15,hostname:"hong-fang-tea",literature:[a.LiteratureNames.BrighterThanTheSun],maxRamExponent:4,moneyAvailable:3e6,networkLayer:1,numOpenPortsRequired:0,organizationName:"HongFang Teahouse",requiredHackingSkill:30,serverGrowth:20},{hackDifficulty:15,hostname:"harakiri-sushi",maxRamExponent:4,moneyAvailable:4e6,networkLayer:1,numOpenPortsRequired:0,organizationName:"HaraKiri Sushi Bar Network",requiredHackingSkill:40,serverGrowth:40},{hackDifficulty:20,hostname:"phantasy",maxRamExponent:5,moneyAvailable:24e6,networkLayer:3,numOpenPortsRequired:2,organizationName:"Phantasy Club",requiredHackingSkill:100,serverGrowth:35},{hackDifficulty:15,hostname:"max-hardware",maxRamExponent:5,moneyAvailable:1e7,networkLayer:2,numOpenPortsRequired:1,organizationName:"Max Hardware Store",requiredHackingSkill:80,serverGrowth:30},{hackDifficulty:{max:35,min:25},hostname:"omega-net",literature:[a.LiteratureNames.TheNewGod],maxRamExponent:5,moneyAvailable:{max:7e7,min:6e7},networkLayer:3,numOpenPortsRequired:2,organizationName:r.LocationName.IshimaOmegaSoftware,requiredHackingSkill:{max:220,min:180},serverGrowth:{max:40,min:30},specialName:r.LocationName.IshimaOmegaSoftware},{hackDifficulty:{max:45,min:35},hostname:"crush-fitness",moneyAvailable:{max:6e7,min:4e7},networkLayer:4,numOpenPortsRequired:2,organizationName:"Crush Fitness",requiredHackingSkill:{max:275,min:225},serverGrowth:{max:33,min:27},specialName:r.LocationName.AevumCrushFitnessGym},{hackDifficulty:30,hostname:"iron-gym",maxRamExponent:5,moneyAvailable:2e7,networkLayer:1,numOpenPortsRequired:1,organizationName:"Iron Gym Network",requiredHackingSkill:100,serverGrowth:20,specialName:r.LocationName.Sector12IronGym},{hackDifficulty:{max:55,min:45},hostname:"millenium-fitness",maxRamExponent:{max:8,min:4},moneyAvailable:25e7,networkLayer:6,numOpenPortsRequired:3,organizationName:"Millenium Fitness Network",requiredHackingSkill:{max:525,min:475},serverGrowth:{max:45,min:25},specialName:r.LocationName.VolhavenMilleniumFitnessGym},{hackDifficulty:{max:65,min:55},hostname:"powerhouse-fitness",maxRamExponent:{max:6,min:4},moneyAvailable:9e8,networkLayer:14,numOpenPortsRequired:5,organizationName:"Powerhouse Fitness",requiredHackingSkill:{max:1100,min:950},serverGrowth:{max:60,min:50},specialName:r.LocationName.Sector12PowerhouseGym},{hackDifficulty:{max:60,min:40},hostname:"snap-fitness",moneyAvailable:45e7,networkLayer:7,numOpenPortsRequired:4,organizationName:"Snap Fitness",requiredHackingSkill:{max:800,min:675},serverGrowth:{max:60,min:40},specialName:r.LocationName.AevumSnapFitnessGym},{hackDifficulty:0,hostname:"run4theh111z",literature:[a.LiteratureNames.SimulatedReality,a.LiteratureNames.TheNewGod],maxRamExponent:{max:9,min:5},moneyAvailable:0,networkLayer:11,numOpenPortsRequired:4,organizationName:"The Runners",requiredHackingSkill:{max:550,min:505},serverGrowth:0,specialName:"BitRunners Server"},{hackDifficulty:0,hostname:"I.I.I.I",literature:[a.LiteratureNames.DemocracyIsDead],maxRamExponent:{max:8,min:4},moneyAvailable:0,networkLayer:5,numOpenPortsRequired:3,organizationName:"I.I.I.I",requiredHackingSkill:{max:365,min:340},serverGrowth:0,specialName:"The Black Hand Server"},{hackDifficulty:0,hostname:"avmnite-02h",literature:[a.LiteratureNames.DemocracyIsDead],maxRamExponent:{max:7,min:4},moneyAvailable:0,networkLayer:4,numOpenPortsRequired:2,organizationName:"NiteSec",requiredHackingSkill:{max:220,min:202},serverGrowth:0,specialName:"NiteSec Server"},{hackDifficulty:0,hostname:".",maxRamExponent:4,moneyAvailable:0,networkLayer:13,numOpenPortsRequired:4,organizationName:".",requiredHackingSkill:{max:550,min:505},serverGrowth:0,specialName:"The Dark Army Server"},{hackDifficulty:0,hostname:"CSEC",literature:[a.LiteratureNames.DemocracyIsDead],maxRamExponent:3,moneyAvailable:0,networkLayer:2,numOpenPortsRequired:1,organizationName:"CyberSec",requiredHackingSkill:{max:60,min:51},serverGrowth:0,specialName:"CyberSec Server"},{hackDifficulty:0,hostname:"The-Cave",literature:[a.LiteratureNames.AlphaOmega],moneyAvailable:0,networkLayer:15,numOpenPortsRequired:5,organizationName:"Helios",requiredHackingSkill:925,serverGrowth:0,specialName:"Daedalus Server"},{hackDifficulty:0,hostname:"w0r1d_d43m0n",moneyAvailable:0,numOpenPortsRequired:5,organizationName:"w0r1d_d43m0n",requiredHackingSkill:3e3,serverGrowth:0,specialName:"w0r1d_d43m0n"}]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createRandomString=void 0;const r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";t.createRandomString=function(e){let t="";for(let n=0;n"}}));return o.createElement("div",null,o.createElement(c.CopyableText,{value:this.props.c.type,tag:c.ClickableTag.Tag_h1}),o.createElement("br",null),o.createElement("br",null),o.createElement("p",null,"You are attempting to solve a Coding Contract. You have ",this.props.c.getMaxNumTries()-this.props.c.tries," tries remaining, after which the contract will self-destruct."),o.createElement("br",null),o.createElement("p",null,t),o.createElement("br",null),o.createElement("input",{className:"text-input",style:{width:"50%",marginTop:"8px"},autoFocus:!0,placeholder:"Enter Solution here",value:this.state.answer,onChange:this.setAnswer,onKeyDown:this.onInputKeydown}),o.createElement(u.PopupCloseButton,{popup:this.props.popupId,onClose:()=>this.props.onAttempt(this.state.answer),text:"Solve"}),o.createElement(u.PopupCloseButton,{popup:this.props.popupId,onClose:this.props.onClose,text:"Close"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Popup=void 0;const o=i(n(0));t.Popup=function(e){return o.createElement("div",{className:"popup-box-content",id:`${e.id}-content`},o.createElement(e.content,e.props))}},,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.codingContractTypesMetadata=void 0;const r=n(22);function a(e){let t=e;return t.startsWith("[")&&(t=t.slice(1)),t.endsWith("]")&&(t=t.slice(0,-1)),t}function i(e){let t=e;return(t.startsWith('"')||t.startsWith("'"))&&(t=t.slice(1)),(t.endsWith('"')||t.endsWith("'"))&&(t=t.slice(0,-1)),t}function o(e){const t=[];return e.forEach(e=>{let n=e.toString();n=["[",n,"]"].join(""),t.push(n)}),t.join(",").replace(/\s/g,"")}t.codingContractTypesMetadata=[{desc:e=>["A prime factor is a factor that is a prime number.",`What is the largest prime factor of ${e}?`].join(" "),difficulty:1,gen:()=>r.getRandomInt(500,1e9),name:"Find Largest Prime Factor",numTries:10,solver:(e,t)=>{let n=2,r=e;for(;r>(n-1)*(n-1);){for(;r%n==0;)r=Math.round(r/n);++n}return(1===r?n-1:r)===parseInt(t,10)}},{desc:e=>["Given the following integer array, find the contiguous subarray","(containing at least one number) which has the largest sum and return that sum.","'Sum' refers to the sum of all the numbers in the subarray.\n",`${e.toString()}`].join(" "),difficulty:1,gen:()=>{const e=r.getRandomInt(5,40),t=[];t.length=e;for(let n=0;n{const n=e.slice();for(let e=1;e["It is possible write four as a sum in exactly four different ways:\n\n","    3 + 1\n","    2 + 2\n","    2 + 1 + 1\n","    1 + 1 + 1 + 1\n\n",`How many different ways can the number ${e} be written as a sum of at least`,"two positive integers?"].join(" "),difficulty:1.5,gen:()=>r.getRandomInt(8,100),name:"Total Ways to Sum",numTries:10,solver:(e,t)=>{const n=[1];n.length=e+1,n.fill(0,1);for(let t=1;t{let t=["Given the following array of array of numbers representing a 2D matrix,","return the elements of the matrix as an array in spiral order:\n\n"].join(" ");for(const n of e)t+=`${n.toString()},\n`;return t+=["\nHere is an example of what spiral order should be:","\nExample:","    [\n","        [1, 2, 3],\n","        [4, 5, 6],\n","        [7, 8, 9]\n","    ] should result in [1, 2, 3, 6, 9, 8 ,7, 4, 5]\n\n","Note that the matrix will not always be square:\n","    [\n","        [1, 2, 3, 4]\n","        [5, 6, 7, 8]\n","        [9, 10, 11, 12]\n","    ] should result in [1, 2, 3, 4, 8, 12, 11, 10, 9, 5, 6, 7"].join(" ")},difficulty:2,gen:()=>{const e=r.getRandomInt(1,15),t=r.getRandomInt(1,15),n=[];n.length=e;for(let r=0;r{const n=[];let r=0,i=e.length-1,o=0,s=e[0].length-1,l=0;for(;;){for(let t=o;t<=s;t++)n[l]=e[r][t],++l;if(++r>i)break;for(let t=r;t<=i;t++)n[l]=e[t][s],++l;if(--s=o;t--)n[l]=e[i][t],++l;if(--i=r;t--)n[l]=e[t][o],++l;if(++o>s)break}const c=a(t).replace(/\s/g,"").split(",");for(let e=0;e["You are given the following array of integers:\n\n",`${e}\n\n`,"Each element in the array represents your MAXIMUM jump length","at that position. This means that if you are at position i and your","maximum jump length is n, you can jump to any position from","i to i+n.","\n\nAssuming you are initially positioned","at the start of the array, determine whether you are","able to reach the last index exactly.\n\n","Your answer should be submitted as 1 or 0, representing true and false respectively"].join(" "),difficulty:2.5,gen:()=>{const e=r.getRandomInt(3,25),t=[];t.length=e;for(let e=0;e{const n=e.length;let r=0;for(let t=0;r["Given the following array of array of numbers representing a list of","intervals, merge all overlapping intervals.\n\n",`[${o(e)}]\n\n`,"Example:\n\n","[[1, 3], [8, 10], [2, 6], [10, 16]]\n\n","would merge into [[1, 6], [8, 16]].\n\n","The intervals must be returned in ASCENDING order.","You can assume that in an interval, the first number will always be","smaller than the second."].join(" "),difficulty:3,gen:()=>{const e=[],t=r.getRandomInt(3,20);for(let n=0;n{const n=e.slice();n.sort((e,t)=>e[0]-t[0]);const r=[];let i=n[0][0],s=n[0][1];for(const e of n)e[0]<=s?s=Math.max(s,e[1]):(r.push([i,s]),i=e[0],s=e[1]);r.push([i,s]);const l=o(r),c=t.replace(/\s/g,"");return l===c||l===a(c)}},{desc:e=>["Given the following string containing only digits, return","an array with all possible valid IP address combinations","that can be created from the string:\n\n",`${e}\n\n`,"Note that an octet cannot begin with a '0' unless the number","itself is actually 0. For example, '192.168.010.1' is not a valid IP.\n\n","Examples:\n\n","25525511135 -> [255.255.11.135, 255.255.111.35]\n","1938718066 -> [193.87.180.66]"].join(" "),difficulty:3,gen:()=>{let e="";for(let t=0;t<4;++t){e+=r.getRandomInt(0,255).toString()}return e},name:"Generate IP Addresses",numTries:10,solver:(e,t)=>{const n=[];for(let t=1;t<=3;++t)for(let r=1;r<=3;++r)for(let a=1;a<=3;++a)for(let i=1;i<=3;++i)if(t+r+a+i===e.length){const o=parseInt(e.substring(0,t),10),s=parseInt(e.substring(t,t+r),10),l=parseInt(e.substring(t+r,t+r+a),10),c=parseInt(e.substring(t+r+a,t+r+a+i),10);if(o<=255&&s<=255&&l<=255&&c<=255){const t=[o.toString(),".",s.toString(),".",l.toString(),".",c.toString()].join("");t.length===e.length+3&&n.push(t)}}const r=a(t).replace(/\s/g,"").split(",");if(r.length!==n.length)return!1;for(const e of r)if(!n.includes(e))return!1;return!0}},{desc:e=>["You are given the following array of stock prices (which are numbers)","where the i-th element represents the stock price on day i:\n\n",`${e}\n\n`,"Determine the maximum possible profit you can earn using at most","one transaction (i.e. you can only buy and sell the stock once). If no profit can be made","then the answer should be 0. Note","that you have to buy the stock before you can sell it"].join(" "),difficulty:1,gen:()=>{const e=r.getRandomInt(3,50),t=[];t.length=e;for(let n=0;n{let n=0,r=0;for(let t=1;t["You are given the following array of stock prices (which are numbers)","where the i-th element represents the stock price on day i:\n\n",`${e}\n\n`,"Determine the maximum possible profit you can earn using as many","transactions as you'd like. A transaction is defined as buying","and then selling one share of the stock. Note that you cannot","engage in multiple transactions at once. In other words, you","must sell the stock before you buy it again.\n\n","If no profit can be made, then the answer should be 0"].join(" "),difficulty:2,gen:()=>{const e=r.getRandomInt(3,50),t=[];t.length=e;for(let n=0;n{let n=0;for(let t=1;t["You are given the following array of stock prices (which are numbers)","where the i-th element represents the stock price on day i:\n\n",`${e}\n\n`,"Determine the maximum possible profit you can earn using at most","two transactions. A transaction is defined as buying","and then selling one share of the stock. Note that you cannot","engage in multiple transactions at once. In other words, you","must sell the stock before you buy it again.\n\n","If no profit can be made, then the answer should be 0"].join(" "),difficulty:5,gen:()=>{const e=r.getRandomInt(3,50),t=[];t.length=e;for(let n=0;n{let n=Number.MIN_SAFE_INTEGER,r=Number.MIN_SAFE_INTEGER,a=0,i=0;for(const t of e)i=Math.max(i,r+t),r=Math.max(r,a-t),a=Math.max(a,n+t),n=Math.max(n,-1*t);return i.toString()===t}},{desc:e=>{return["You are given the following array with two elements:\n\n",`[${e[0]}, [${e[1]}]]\n\n`,"The first element is an integer k. The second element is an","array of stock prices (which are numbers) where the i-th element","represents the stock price on day i.\n\n","Determine the maximum possible profit you can earn using at most","k transactions. A transaction is defined as buying and then selling","one share of the stock. Note that you cannot engage in multiple","transactions at once. In other words, you must sell the stock before","you can buy it again.\n\n","If no profit can be made, then the answer should be 0."].join(" ")},difficulty:8,gen:()=>{const e=r.getRandomInt(2,10),t=r.getRandomInt(3,50),n=[];n.length=t;for(let e=0;e{const n=e[0],r=e[1],a=r.length;if(a<2)return 0===parseInt(t);if(n>a/2){let e=0;for(let t=1;t0;--e)o[e]=Math.max(o[e],i[e]+s),i[e]=Math.max(i[e],o[e-1]-s)}return parseInt(t)===o[n]}},{desc:e=>{return["Given a triangle, find the minimum path sum from top to bottom. In each step","of the path, you may only move to adjacent numbers in the row below.","The triangle is represented as a 2D array of numbers:\n\n",`${function(e){return["[\n",function e(t,n=0){const r=t.length;if(n>=r)return"";let a=[" ".repeat(r-n+1),"[",t[n].toString(),"]"].join("");return n 3 -> 5 -> 1)."].join(" ")},difficulty:5,gen:()=>{const e=[],t=r.getRandomInt(3,12);e.length=t;for(let n=0;n{const n=e.length,r=e[n-1].slice();for(let t=n-2;t>-1;--t)for(let n=0;n{const t=e[0],n=e[1];return["You are in a grid with",`${t} rows and ${n} columns, and you are`,"positioned in the top-left corner of that grid. You are trying to","reach the bottom-right corner of the grid, but you can only","move down or right on each step. Determine how many","unique paths there are from start to finish.\n\n","NOTE: The data returned for this contract is an array","with the number of rows and columns:\n\n",`[${t}, ${n}]`].join(" ")},difficulty:3,gen:()=>{return[r.getRandomInt(2,14),r.getRandomInt(2,14)]},name:"Unique Paths in a Grid I",numTries:10,solver:(e,t)=>{const n=e[0],r=e[1],a=[];a.length=n;for(let e=0;e{let t="";for(const n of e)t+=`${n.toString()},\n`;return["You are located in the top-left corner of the following grid:\n\n",`${t}\n`,"You are trying reach the bottom-right corner of the grid, but you can only","move down or right on each step. Furthermore, there are obstacles on the grid","that you cannot move onto. These obstacles are denoted by '1', while empty","spaces are denoted by 0.\n\n","Determine how many unique paths there are from start to finish.\n\n","NOTE: The data returned for this contract is an 2D array of numbers representing the grid."].join(" ")},difficulty:5,gen:()=>{const e=r.getRandomInt(2,12),t=r.getRandomInt(2,12),n=[];n.length=e;for(let r=0;r{const n=[];n.length=e.length;for(let t=0;t0?n[e-1][t]:0)+(t>0?n[e][t-1]:0);return n[n.length-1][n[0].length-1]===parseInt(t)}},{desc:e=>["Given the following string:\n\n",`${e}\n\n`,"remove the minimum number of invalid parentheses in order to validate","the string. If there are multiple minimal ways to validate the string,","provide all of the possible results. The answer should be provided","as an array of strings. If it is impossible to validate the string","the result should be an array with only an empty string.\n\n","IMPORTANT: The string may contain letters, not just parentheses.","Examples:\n",'"()())()" -> [()()(), (())()]\n','"(a)())()" -> [(a)()(), (a())()]\n','")( -> [""]'].join(" "),difficulty:10,gen:()=>{const e=r.getRandomInt(6,20),t=[];t.length=e,Math.random()<.8?t[0]="(":t[0]=")";for(let n=1;n{let n=0,r=0;const i=[];for(let t=0;t0?--n:++r);!function e(t,n,r,a,i,o,s){if(i.length!==n)"("===i[n]?(r>0&&e(t,n+1,r-1,a,i,o,s),e(t+1,n+1,r,a,i,o+i[n],s)):")"===i[n]?(a>0&&e(t,n+1,r,a-1,i,o,s),t>0&&e(t-1,n+1,r,a,i,o+i[n],s)):e(t,n+1,r,a,i,o+i[n],s);else if(0===r&&0===a&&0===t){for(let e=0;e{const t=e[0],n=e[1];return["You are given the following string which contains only digits between 0 and 9:\n\n",`${t}\n\n`,`You are also given a target number of ${n}. Return all possible ways`,"you can add the +, -, and * operators to the string such that it evaluates","to the target number.\n\n","The provided answer should be an array of strings containing the valid expressions.","The data provided by this problem is an array with two elements. The first element","is the string of digits, while the second element is the target number:\n\n",`["${t}", ${n}]\n\n`,"NOTE: Numbers in the expression cannot have leading 0's. In other words,",'"1+01" is not a valid expression',"Examples:\n\n",'Input: digits = "123", target = 6\n',"Output: [1+2+3, 1*2*3]\n\n",'Input: digits = "105", target = 5\n',"Output: [1*0+5, 10-5]"].join(" ")},difficulty:10,gen:()=>{const e=r.getRandomInt(4,12),t=[];t.length=e;for(let e=0;e{const n=e[0],r=e[1];const o=a(t).split(",");for(let e=0;e>> 0;","if (arguments.length > 1) T = thisArg;","k = 0;","while (k < len) {","if (k in O && !callbackfn.call(T, O[k], k, O)) return false;","k++;","}","return true;","}","});","Object.defineProperty(Array.prototype, 'filter',","{configurable: true, writable: true, value:","function(fun/*, thisArg*/) {","if (this === void 0 || this === null || typeof fun !== 'function') throw TypeError();","var t = Object(this);","var len = t.length >>> 0;","var res = [];","var thisArg = arguments.length >= 2 ? arguments[1] : void 0;","for (var i = 0; i < len; i++) {","if (i in t) {","var val = t[i];","if (fun.call(thisArg, val, i, t)) res.push(val);","}","}","return res;","}","});","if (!Array.prototype.find) {","Object.defineProperty(Array.prototype, 'find', {","value: function(predicate) {","if (this == null) {","throw new TypeError('\"this\" is null or not defined');","}","var o = Object(this);","var len = o.length >>> 0;","if (typeof predicate !== 'function') {","throw new TypeError('predicate must be a function');","}","var thisArg = arguments[1];","var k = 0;","while (k < len) {","var kValue = o[k];","if (predicate.call(thisArg, kValue, k, o)) {","return kValue;","}","k++;","}","return undefined;","},","configurable: true,","writable: true","});","}","if (!Array.prototype.findIndex) {","Object.defineProperty(Array.prototype, 'findIndex', {","value: function(predicate) {","if (this == null) {","throw new TypeError('\"this\" is null or not defined');","}","var o = Object(this);","var len = o.length >>> 0;","if (typeof predicate !== 'function') {","throw new TypeError('predicate must be a function');","}","var thisArg = arguments[1];","var k = 0;","while (k < len) {","var kValue = o[k];","if (predicate.call(thisArg, kValue, k, o)) {","return k;","}","k++;","}","return -1;","},","configurable: true,","writable: true","});","}","Object.defineProperty(Array.prototype, 'forEach',","{configurable: true, writable: true, value:","function(callback, thisArg) {","if (!this || typeof callback !== 'function') throw TypeError();","var T, k;","var O = Object(this);","var len = O.length >>> 0;","if (arguments.length > 1) T = thisArg;","k = 0;","while (k < len) {","if (k in O) callback.call(T, O[k], k, O);","k++;","}","}","});","Object.defineProperty(Array.prototype, 'includes', {","value: function(searchElement, fromIndex) {","if (this == null) {","throw new TypeError('\"this\" is null or not defined');","}","// 1. Let O be ? ToObject(this value).","var o = Object(this);",'// 2. Let len be ? ToLength(? Get(O, "length")).',"var len = o.length >>> 0;","// 3. If len is 0, return false.","if (len === 0) {","return false;","}","// 4. Let n be ? ToInteger(fromIndex).","// (If fromIndex is undefined, this step produces the value 0.)","var n = fromIndex | 0;","// 5. If n ≥ 0, then","// a. Let k be n.","// 6. Else n < 0,","// a. Let k be len + n.","// b. If k < 0, let k be 0.","var k = Math.max(n >= 0 ? n : len - Math.abs(n), 0);","function sameValueZero(x, y) {","return x === y || (typeof x === 'number' && typeof y === 'number' && isNaN(x) && isNaN(y));","}","// 7. Repeat, while k < len","while (k < len) {","// a. Let elementK be the result of ? Get(O, ! ToString(k)).","// b. If SameValueZero(searchElement, elementK) is true, return true.","if (sameValueZero(o[k], searchElement)) {","return true;","}","// c. Increase k by 1. ","k++;","}","// 8. Return false","return false;","}","});","Object.defineProperty(Array.prototype, 'map',","{configurable: true, writable: true, value:","function(callback, thisArg) {","if (!this || typeof callback !== 'function') new TypeError;","var T, A, k;","var O = Object(this);","var len = O.length >>> 0;","if (arguments.length > 1) T = thisArg;","A = new Array(len);","k = 0;","while (k < len) {","if (k in O) A[k] = callback.call(T, O[k], k, O);","k++;","}","return A;","}","});","Object.defineProperty(Array.prototype, 'reduce',","{configurable: true, writable: true, value:","function(callback /*, initialValue*/) {","if (!this || typeof callback !== 'function') throw TypeError();","var t = Object(this), len = t.length >>> 0, k = 0, value;","if (arguments.length === 2) {","value = arguments[1];","} else {","while (k < len && !(k in t)) k++;","if (k >= len) {","throw TypeError('Reduce of empty array with no initial value');","}","value = t[k++];","}","for (; k < len; k++) {","if (k in t) value = callback(value, t[k], k, t);","}","return value;","}","});","Object.defineProperty(Array.prototype, 'reduceRight',","{configurable: true, writable: true, value:","function(callback /*, initialValue*/) {","if (null === this || 'undefined' === typeof this || 'function' !== typeof callback) throw TypeError();","var t = Object(this), len = t.length >>> 0, k = len - 1, value;","if (arguments.length >= 2) {","value = arguments[1];","} else {","while (k >= 0 && !(k in t)) k--;","if (k < 0) {","throw TypeError('Reduce of empty array with no initial value');","}","value = t[k--];","}","for (; k >= 0; k--) {","if (k in t) value = callback(value, t[k], k, t);","}","return value;","}","});","Object.defineProperty(Array.prototype, 'some',","{configurable: true, writable: true, value:","function(fun/*, thisArg*/) {","if (!this || typeof fun !== 'function') throw TypeError();","var t = Object(this);","var len = t.length >>> 0;","var thisArg = arguments.length >= 2 ? arguments[1] : void 0;","for (var i = 0; i < len; i++) {","if (i in t && fun.call(thisArg, t[i], i, t)) {","return true;","}","}","return false;","}","});","(function() {","var sort_ = Array.prototype.sort;","Array.prototype.sort = function(opt_comp) {","if (typeof opt_comp !== 'function') {","return sort_.call(this);","}","for (var i = 0; i < this.length; i++) {","var changes = 0;","for (var j = 0; j < this.length - i - 1; j++) {","if (opt_comp(this[j], this[j + 1]) > 0) {","var swap = this[j];","this[j] = this[j + 1];","this[j + 1] = swap;","changes++;","}","}","if (!changes) break;","}","return this;","};","})();","Object.defineProperty(Array.prototype, 'toLocaleString',","{configurable: true, writable: true, value:","function() {","var out = [];","for (var i = 0; i < this.length; i++) {","out[i] = (this[i] === null || this[i] === undefined) ? '' : this[i].toLocaleString();","}","return out.join(',');","}","});","")},a.prototype.initString=function(e){var t,n=this;t=function(e){return e=String(e),n.calledWithNew()?(this.data=e,this):e},this.STRING=this.createNativeFunction(t,!0),this.setProperty(e,"String",this.STRING),this.setProperty(this.STRING,"fromCharCode",this.createNativeFunction(String.fromCharCode,!1),a.NONENUMERABLE_DESCRIPTOR);for(var r=["charAt","charCodeAt","concat","indexOf","lastIndexOf","slice","substr","substring","toLocaleLowerCase","toLocaleUpperCase","toLowerCase","toUpperCase","trim"],i=0;i= 0; i--) {","str = str.substring(0, subs[i][0]) + subs[i][2] + str.substring(subs[i][0] + subs[i][1]);","}","} else {","var i = str.indexOf(substr);","if (i !== -1) {","var inject = newSubstr(str.substr(i, substr.length), i, str);","str = str.substring(0, i) + inject + str.substring(i + substr.length);","}","}","return str;","};","})();","if (!String.prototype.endsWith) {","String.prototype.endsWith = function(search, this_len) {","if (this_len === undefined || this_len > this.length) {","this_len = this.length;","}","return this.substring(this_len - search.length, this_len) === search;","};","}","if (!String.prototype.includes) {","String.prototype.includes = function(search, start) {","'use strict';","if (typeof start !== 'number') {","start = 0;","}"," ","if (start + search.length > this.length) {","return false;","} else {","return this.indexOf(search, start) !== -1;","}","};","}","if (!String.prototype.startsWith) {","String.prototype.startsWith = function(search, pos) {","return this.substr(!pos || pos < 0 ? 0 : +pos, search.length) === search;","};","}","")},a.prototype.initBoolean=function(e){var t,n=this;t=function(e){return e=Boolean(e),n.calledWithNew()?(this.data=e,this):e},this.BOOLEAN=this.createNativeFunction(t,!0),this.setProperty(e,"Boolean",this.BOOLEAN)},a.prototype.initNumber=function(e){var t,n=this;t=function(e){return e=Number(e),n.calledWithNew()?(this.data=e,this):e},this.NUMBER=this.createNativeFunction(t,!0),this.setProperty(e,"Number",this.NUMBER);for(var r=["MAX_VALUE","MIN_VALUE","NaN","NEGATIVE_INFINITY","POSITIVE_INFINITY"],i=0;i>>0;return t===Number(e)?t:NaN},a.legalArrayIndex=function(e){var t=e>>>0;return String(t)===String(e)&&4294967295!==t?t:NaN},a.Value,a.Object=function(e){this.getter=Object.create(null),this.setter=Object.create(null),this.properties=Object.create(null),this.proto=e},a.Object.prototype.proto=null,a.Object.prototype.isObject=!0,a.Object.prototype.class="Object",a.Object.prototype.data=null,a.Object.prototype.toString=function(){if("Array"===this.class){(r=a.toStringCycles_).push(this);try{for(var e=[],t=0;t0;i.pop()){var o=i[i.length-1];switch(o.node.type){case"TryStatement":return void(o.cv={type:e,value:t,label:n});case"CallExpression":case"NewExpression":if(e===a.Completion.RETURN)return void(o.value=t);if(e!==a.Completion.THROW)throw Error("Unsynatctic break/continue not rejected by Acorn")}if(e===a.Completion.BREAK){if(n?o.labels&&-1!==o.labels.indexOf(n):o.isLoop||o.isSwitch)return void i.pop()}else if(e===a.Completion.CONTINUE&&(n?o.labels&&-1!==o.labels.indexOf(n):o.isLoop))return}var s;if(this.isa(t,this.ERROR)){var l={EvalError:EvalError,RangeError:RangeError,ReferenceError:ReferenceError,SyntaxError:SyntaxError,TypeError:TypeError,URIError:URIError},c=this.getProperty(t,"name").toString(),u=this.getProperty(t,"message").valueOf();s=(e=l[c]||Error)(u+r)}else s=String(t)+r;throw s},a.prototype.createGetter_=function(e,t){var n=Array.isArray(t)?t[0]:t,r=new this.nodeConstructor;r.type="CallExpression";var i=new a.State(r,this.stateStack[this.stateStack.length-1].scope);return i.doneCallee_=!0,i.funcThis_=n,i.func_=e,i.doneArgs_=!0,i.arguments_=[],i},a.prototype.createSetter_=function(e,t,n){var r=Array.isArray(t)?t[0]:this.global,i=new this.nodeConstructor;i.type="CallExpression";var o=new a.State(i,this.stateStack[this.stateStack.length-1].scope);return o.doneCallee_=!0,o.funcThis_=r,o.func_=e,o.doneArgs_=!0,o.arguments_=[n],o},a.State=function(e,t){this.node=e,this.scope=t},a.prototype.stepArrayExpression=function(e,t,n){var r=n.elements,i=t.n_||0;for(t.array_?(this.setProperty(t.array_,i,t.value),i++):(t.array_=this.createObjectProto(this.ARRAY_PROTO),t.array_.properties.length=r.length);i>=":s>>=l;break;case">>>=":s>>>=l;break;case"&=":s&=l;break;case"^=":s^=l;break;case"|=":s|=l;break;default:throw SyntaxError("Unknown assignment expression: "+n.operator)}var c=this.setValue(t.leftReference_,s);if(c)return t.doneSetter_=!0,t.setterValue_=s,this.createSetter_(c,t.leftReference_,s);e.pop(),e[e.length-1].value=s},a.prototype.stepBinaryExpression=function(e,t,n){if(!t.doneLeft_)return t.doneLeft_=!0,new a.State(n.left,t.scope);if(!t.doneRight_)return t.doneRight_=!0,t.leftValue_=t.value,new a.State(n.right,t.scope);e.pop();var r,i=t.leftValue_,o=t.value;switch(n.operator){case"==":r=i==o;break;case"!=":r=i!=o;break;case"===":r=i===o;break;case"!==":r=i!==o;break;case">":r=i>o;break;case">=":r=i>=o;break;case"<":r=i>":r=i>>o;break;case">>>":r=i>>>o;break;case"in":if(!o||!o.isObject){let e=this.getErrorLineNumber(n);this.throwException(this.TYPE_ERROR,"'in' expects an object, not '"+o+"'",e)}r=this.hasProperty(o,i);break;case"instanceof":if(!this.isa(o,this.FUNCTION)){let e=this.getErrorLineNumber(n);this.throwException(this.TYPE_ERROR,"Right-hand side of instanceof is not an object",e)}r=!!i.isObject&&this.isa(i,o);break;default:throw SyntaxError("Unknown binary operator: "+n.operator)}e[e.length-1].value=r},a.prototype.stepBlockStatement=function(e,t,n){var r=t.n_||0,i=n.body[r];if(i)return t.n_=r+1,new a.State(i,t.scope);e.pop()},a.prototype.stepBreakStatement=function(e,t,n){var r=n.label&&n.label.name;this.unwind(a.Completion.BREAK,void 0,r)},a.prototype.stepCallExpression=function(e,t,n){if(!t.doneCallee_){t.doneCallee_=1;var i=new a.State(n.callee,t.scope);return i.components=!0,i}if(1===t.doneCallee_){t.doneCallee_=2;var o=t.value;if(Array.isArray(o)){if(t.func_=this.getValue(o,n),o[0]===a.SCOPE_REFERENCE?t.directEval_="eval"===o[1]:t.funcThis_=o[0],(o=t.func_)&&"object"==typeof o&&o.isGetter)return o.isGetter=!1,t.doneCallee_=1,this.createGetter_(o,t.value)}else t.func_=o;t.arguments_=[],t.n_=0}o=t.func_;if(!t.doneArgs_){if(0!==t.n_&&t.arguments_.push(t.value),n.arguments[t.n_])return new a.State(n.arguments[t.n_++],t.scope);if("NewExpression"===n.type){if(o.illegalConstructor){let e=this.getErrorLineNumber(n);this.throwException(this.TYPE_ERROR,o+" is not a constructor",e)}var s=o.properties.prototype;"object"==typeof s&&null!==s||(s=this.OBJECT_PROTO),t.funcThis_=this.createObjectProto(s),t.isConstructor=!0}else void 0===t.funcThis_&&(t.funcThis_=t.scope.strict?void 0:this.global);t.doneArgs_=!0}if(t.doneExec_)e.pop(),t.isConstructor&&"object"!=typeof t.value?e[e.length-1].value=t.funcThis_:e[e.length-1].value=t.value;else{if(t.doneExec_=!0,!o||!o.isObject){let e=this.getErrorLineNumber(n);this.throwException(this.TYPE_ERROR,o+" is not a function",e)}var l=o.node;if(l){for(var c=this.createScope(l.body,o.parentScope),u=0;uu?t.arguments_[u]:void 0;this.setProperty(c,m,p)}var h=this.createObjectProto(this.ARRAY_PROTO);for(u=0;u=0&&this.recalculateTotalProduction()}recalculateTotalProduction(){let e=0;for(let t=0;t{if(Object(p.h)()){const t=d.AllServers[e];if(null==t)throw new Error(`Could not find Hacknet Server object in AllServers map for IP: ${e}`);return a.a.createElement(s.a,{key:t.hostname,node:t,purchaseMultiplier:this.state.purchaseMultiplier,recalculate:this.recalculateTotalProduction})}return a.a.createElement(o.a,{key:e.name,node:e,purchaseMultiplier:this.state.purchaseMultiplier,recalculate:this.recalculateTotalProduction})});return a.a.createElement("div",null,a.a.createElement("h1",null,"Hacknet ",Object(p.h)()?"Servers":"Nodes"),a.a.createElement(i.a,null),a.a.createElement(m.a,{cost:e,multiplier:this.state.purchaseMultiplier,onClick:this.handlePurchaseButtonClick}),a.a.createElement("br",null),a.a.createElement("div",{id:"hacknet-nodes-money-multipliers-div"},a.a.createElement(u.a,{totalProduction:this.state.totalProduction}),a.a.createElement(c.a,{onClicks:t,purchaseMultiplier:this.state.purchaseMultiplier})),Object(p.h)()&&a.a.createElement("button",{className:"std-button",onClick:this.createHashUpgradesPopup,style:{display:"block"}},"Spend Hashes on Upgrades"),a.a.createElement("ul",{id:"hacknet-nodes-list"},n))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return c}),n.d(t,"b",function(){return u});var r=n(17),a=n(82),i=n(60),o=n(5),s=n(67),l=n(65);let c=!1;function u(e){if(c=!0,e.constructor!==Array)throw new Error("Invalid non-array argument passed into writeCinematicText()");r.Engine.loadCinematicTextContent();const t=document.getElementById("cinematic-text-container");if(t.style.width="75%",null==t)throw new Error("Could not find cinematic-text-container for writeCinematicText()");Object(i.removeChildrenFromElement)(t);for(let t=0;t=t.length)return Promise.resolve(!0);return function(e){return new Promise(function(t,n){const r=document.getElementById("cinematic-text-container"),i=document.createElement("p");r.appendChild(i);const o=function e(t,n,r=0){return new Promise(function(i,o){Object(a.setTimeoutRef)(function(){const a=n.substring(0,r);if(r>=n.length)return t.innerHTML=a,i(!0);t.innerHTML=a+"";const s=e(t,n,r+1);s.then(function(e){i(e)},function(e){o(e)})},15)})}(i,e,0);o.then(function(e){t(e)},function(e){n(e)})})}(t[n]).then(function(){return e(t,n+1)})}(e).then(function(){return function(){var e=document.getElementById("cinematic-text-container"),t=document.getElementById("mainmenu-container");return e.appendChild(Object(o.createElement)("br")),new Promise(function(n){e.appendChild(Object(o.createElement)("a",{class:"a-link-button",innerText:"Continue...",clickListener:()=>{Object(i.removeChildrenFromElement)(e),r.Engine.loadTerminalContent(),t.style.visibility="visible",c=!1,n()}}))})}()}).catch(function(e){Object(s.exceptionAlert)(e)})}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CorporationRouting=t.overviewPage=void 0,t.overviewPage="Overview";t.CorporationRouting=class{constructor(e){this.currentPage=t.overviewPage,this.currentDivision=null,this.corp=e}current(){return this.currentPage}isValidPage(e){if(e===t.overviewPage)return!0;for(const t of this.corp.divisions)if(t.name===e)return!0;return!1}isOn(e){return!!this.isValidPage(e)&&e===this.currentPage}isOnOverviewPage(){return this.currentPage===t.overviewPage}routeTo(e){if(this.isValidPage(e)){if(this.currentDivision=null,e!==t.overviewPage){for(let t=0;t${t.title}

${t.txt}`;a.dialogBoxCreate(n)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CorporationUpgrades=void 0,t.CorporationUpgrades={0:[0,2e9,1.06,.03,"Smart Factories","Advanced AI automatically optimizes the operation and productivity of factories. Each level of this upgrade increases your global production by 3% (additive)."],1:[1,2e9,1.06,.1,"Smart Storage","Advanced AI automatically optimizes your warehouse storage methods. Each level of this upgrade increases your global warehouse storage size by 10% (additive)."],2:[2,4e9,1.1,.001,"DreamSense","Use DreamSense LCC Technologies to advertise your corporation to consumers through their dreams. Each level of this upgrade provides a passive increase in awareness of all of your companies (divisions) by 0.004 / market cycle,and in popularity by 0.001 / market cycle. A market cycle is approximately 15 seconds."],3:[3,4e9,1.12,.005,"Wilson Analytics","Purchase data and analysis from Wilson, a marketing research firm. Each level of this upgrades increases the effectiveness of your advertising by 0.5% (additive)."],4:[4,1e9,1.06,.1,"Nuoptimal Nootropic Injector Implants","Purchase the Nuoptimal Nootropic Injector augmentation for your employees. Each level of this upgrade globally increases the creativity of your employees by 10% (additive)."],5:[5,1e9,1.06,.1,"Speech Processor Implants","Purchase the Speech Processor augmentation for your employees. Each level of this upgrade globally increases the charisma of your employees by 10% (additive)."],6:[6,1e9,1.06,.1,"Neural Accelerators","Purchase the Neural Accelerator augmentation for your employees. Each level of this upgrade globally increases the intelligence of your employees by 10% (additive)."],7:[7,1e9,1.06,.1,"FocusWires","Purchase the FocusWire augmentation for your employees. Each level of this upgrade globally increases the efficiency of your employees by 10% (additive)."],8:[8,1e9,1.07,.01,"ABC SalesBots","Always Be Closing. Purchase these robotic salesmen to increase the amount of materials and products you sell. Each level of this upgrade globally increases your sales by 1% (additive)."],9:[9,5e9,1.07,.05,"Project Insight","Purchase 'Project Insight', a R&D service provided by the secretive Fulcrum Technologies. Each level of this upgrade globally increases the amount of Scientific Research you produce by 5% (additive)."]}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.CorporationUnlockUpgrades=void 0,t.CorporationUnlockUpgrades={0:[0,2e10,"Export","Develop infrastructure to export your materials to your other facilities. This allows you to move materials around between different divisions and cities."],1:[1,25e9,"Smart Supply","Use advanced AI to anticipate your supply needs. This allows you to purchase exactly however many materials you need for production."],2:[2,5e9,"Market Research - Demand","Mine and analyze market data to determine the demand of all resources. The demand attribute, which affects sales, will be displayed for every material and product."],3:[3,5e9,"Market Data - Competition","Mine and analyze market data to determine how much competition there is on the market for all resources. The competition attribute, which affects sales, will be displayed for for every material and product."],4:[4,1e10,"VeChain","Use AI and blockchain technology to identify where you can improve your supply chain systems. This upgrade will allow you to view a wide array of useful statistics about your Corporation."],5:[5,5e11,"Shady Accounting","Utilize unscrupulous accounting practices and pay off government officials to save money on taxes. This reduces the dividend tax rate by 5%."],6:[6,2e12,"Government Partnership","Help national governments further their agendas in exchange for lowered taxes. This reduces the dividend tax rate by 10%"]}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.clearSleevesPage=t.updateSleevesPage=t.createSleevesPage=void 0;const o=n(867),s=n(252),l=n(866),c=n(11),u=n(19),m=n(412),p=n(175),h=n(172),d=n(39),_=n(50),g=n(3),y=n(16),f=n(12),b=n(160),E=n(67),v=n(54),k=n(5),C=n(79),P=n(51),O=n(74),S=n(180),T=n(60),M=n(111),x=n(44),w=n(865),A=n(31),R=n(125),N=n(442),D=n(864),I=n(863),B=n(862),L=i(n(26)),j=n(236),W={container:null,docButton:null,faqButton:null,info:null,sleeveList:null,sleeves:null};let F;function U(){if(y.routing.isOn(y.Page.Sleeves)){if(null===F)throw new Error("playerRef is null in updateSleevesPage()");if(null===W.sleeves)throw new Error("UIElems.sleeves is null in updateSleevesPage()");try{for(let e=0;e{f.dialogBoxCreate(I.MoreStatsContent(e))}}),n.travelButton=k.createElement("button",{class:"std-button",innerText:"Travel",clickListener:()=>{const r="sleeve-travel-popup",a=[];a.push(O.createPopupCloseButton(r,{class:"std-button"})),a.push(k.createElement("p",{innerHTML:"Have this sleeve travel to a different city. This affects the gyms and universities at which this sleeve can study. "+`Traveling to a different city costs ${j.renderToStaticMarkup(A.Money(c.CONSTANTS.TravelCost))}. `+"It will also CANCEL the sleeve's current task (setting it to idle)"}));for(const i in h.Cities)e.city!==i&&function(e,i){a.push(k.createElement("div",{class:"cmpy-mgmt-find-employee-option",innerText:i,clickListener:()=>{if(null==F)throw new Error("playerRef is null in popupArguments.click()");return F.canAfford(c.CONSTANTS.TravelCost)?(e.city=i,F.loseMoney(c.CONSTANTS.TravelCost),e.resetTaskStatus(),x.removeElementById(r),G(e,n),$(e,n,t),!1):(f.dialogBoxCreate("You cannot afford to have this sleeve travel to another city",!1),!1)}}))}(e,i);P.createPopup(r,a)}}),n.purchaseAugsButton=k.createElement("button",{class:"std-button",display:"block",innerText:"Manage Augmentations",clickListener:()=>{if(null==F)throw new Error("playerRef is null in purchaseAugsButton.click()");o.createSleevePurchaseAugsPopup(e,F)}}),n.statsPanel.appendChild(n.stats),n.statsPanel.appendChild(n.moreStatsButton),n.statsPanel.appendChild(n.travelButton),e.shock>=100&&n.statsPanel.appendChild(n.purchaseAugsButton),n.taskPanel=k.createElement("div",{class:"sleeve-panel",width:"40%"}),n.taskSelector=k.createElement("select",{class:"dropdown"}),n.taskSelector.add(C.createOptionElement("------")),n.taskSelector.add(C.createOptionElement("Work for Company")),n.taskSelector.add(C.createOptionElement("Work for Faction")),n.taskSelector.add(C.createOptionElement("Commit Crime")),n.taskSelector.add(C.createOptionElement("Take University Course")),n.taskSelector.add(C.createOptionElement("Workout at Gym")),n.taskSelector.add(C.createOptionElement("Shock Recovery")),n.taskSelector.add(C.createOptionElement("Synchronize")),n.taskDetailsSelector=k.createElement("select",{class:"dropdown"}),n.taskDetailsSelector2=k.createElement("select",{class:"dropdown"}),n.taskDescription=k.createElement("p"),n.taskProgressBar=k.createElement("p"),n.taskSelector.addEventListener("change",()=>{$(e,n,t)}),n.taskSelector.selectedIndex=e.currentTask,n.taskSelector.dispatchEvent(new Event("change")),z(e,n),n.taskSetButton=k.createElement("button",{class:"std-button",innerText:"Set Task",clickListener:()=>{!function(e,t){try{if(null==F)throw new Error("playerRef is null in Sleeve UI's setSleeveTask()");if(null==t.taskDescription)throw new Error("elems.taskDescription is null");const n=S.getSelectValue(t.taskSelector),r=S.getSelectValue(t.taskDetailsSelector),a=S.getSelectValue(t.taskDetailsSelector2);let i=!1;switch(n){case"------":t.taskDescription.innerText="This sleeve is currently idle";break;case"Work for Company":i=e.workForCompany(F,r);break;case"Work for Faction":i=e.workForFaction(F,r,a);break;case"Commit Crime":i=e.commitCrime(F,r);break;case"Take University Course":i=e.takeUniversityCourse(F,a,r);break;case"Workout at Gym":i=e.workoutAtGym(F,a,r);break;case"Shock Recovery":e.currentTask=s.SleeveTaskType.Recovery,i=e.shockRecovery(F);break;case"Synchronize":i=e.synchronize(F);break;default:console.error(`Invalid/Unrecognized taskValue in setSleeveTask(): ${n}`)}if(i)z(e,t);else switch(n){case"Work for Faction":t.taskDescription.innerText="Failed to assign sleeve to task. This is most likely because the selected faction does not offer the selected work type.";break;default:t.taskDescription.innerText="Failed to assign sleeve to task. Invalid choice(s)."}if(y.routing.isOn(y.Page.Sleeves)){if(U(),null==W.sleeves)throw new Error("UIElems.sleeves is null");for(const e of W.sleeves){if(null==e.taskSelector)throw new Error("e.taskSelector is null");e.taskSelector.dispatchEvent(new Event("change"))}}}catch(e){return console.error(`Exception caught in setSleeveTask(): ${e}`),E.exceptionAlert(e),!1}}(e,n)}}),n.taskPanel.appendChild(n.taskSelector),n.taskPanel.appendChild(n.taskDetailsSelector),n.taskPanel.appendChild(n.taskDetailsSelector2),n.taskPanel.appendChild(n.taskSetButton),n.taskPanel.appendChild(n.taskDescription),n.taskPanel.appendChild(n.taskProgressBar),n.earningsPanel=k.createElement("div",{class:"sleeve-panel",width:"35%"}),n.currentEarningsInfo=k.createElement("div"),n.totalEarningsButton=k.createElement("button",{class:"std-button",innerText:"More Earnings Info",clickListener:()=>{f.dialogBoxCreate(B.MoreEarningsContent(e))}}),n.earningsPanel.appendChild(n.currentEarningsInfo),n.earningsPanel.appendChild(n.totalEarningsButton),G(e,n),n.container.appendChild(n.statsPanel),n.container.appendChild(n.taskPanel),n.container.appendChild(n.earningsPanel),n):n}function G(e,t){if(y.routing.isOn(y.Page.Sleeves)){if(null==F)throw new Error("playerRef is null in updateSleeveUi()");if(null==t.taskProgressBar)throw new Error("elems.taskProgressBar is null");if(null==t.stats)throw new Error("elems.stats is null");if(null==t.currentEarningsInfo)throw new Error("elems.currentEarningsInfo is null");if(L.render(D.StatsElement(e),t.stats),e.currentTask===s.SleeveTaskType.Crime){const n=[["Money",A.Money(parseFloat(e.currentTaskLocation)),"(on success)"],["Hacking Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.hack),"(2x on success)"],["Strength Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.str),"(2x on success)"],["Defense Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.def),"(2x on success)"],["Dexterity Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.dex),"(2x on success)"],["Agility Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.agi),"(2x on success)"],["Charisma Exp",g.numeralWrapper.formatExp(e.gainRatesForTask.cha),"(2x on success)"]];L.render(w.EarningsTableElement("Earnings (Pre-Synchronization)",n),t.currentEarningsInfo),t.taskProgressBar.innerText=b.createProgressBarText({progress:e.currentTaskTime/e.currentTaskMaxTime,totalTicks:25})}else{const n=[["Money:",R.MoneyRate(5*e.gainRatesForTask.money)],["Hacking Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.hack)} / s`],["Strength Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.str)} / s`],["Defense Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.def)} / s`],["Dexterity Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.dex)} / s`],["Agility Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.agi)} / s`],["Charisma Exp:",`${g.numeralWrapper.formatExp(5*e.gainRatesForTask.cha)} / s`]];if(e.currentTask===s.SleeveTaskType.Company||e.currentTask===s.SleeveTaskType.Faction){const t=e.getRepGain(F);n.push(["Reputation:",N.ReputationRate(5*t)])}L.render(w.EarningsTableElement("Earnings (Pre-Synchronization)",n),t.currentEarningsInfo),t.taskProgressBar.innerText=""}}}t.createSleevesPage=function(e){if(y.routing.isOn(y.Page.Sleeves))try{F=e,W.container=k.createElement("div",{class:"generic-menupage-container",id:"sleeves-container",position:"fixed"}),W.info=k.createElement("p",{class:"sleeves-page-info",innerHTML:"

Sleeves

Duplicate Sleeves are MK-V Synthoids (synthetic androids) into which your consciousness has been copied. In other words, these Synthoids contain a perfect duplicate of your mind.

Sleeves can be used to perform different tasks synchronously.

"}),W.faqButton=k.createElement("button",{class:"std-button",display:"inline-block",innerText:"FAQ",clickListener:()=>{f.dialogBoxCreate(l.SleeveFaq,!1)}}),W.docButton=k.createElement("a",{class:"std-button",display:"inline-block",href:"https://bitburner.readthedocs.io/en/latest/advancedgameplay/sleeves.html#duplicate-sleeves",innerText:"Documentation",target:"_blank"}),W.sleeveList=k.createElement("ul"),W.sleeves=[];for(const t of e.sleeves){const n=H(t,e.sleeves);if(null==n.container)throw new Error("sleeveUi.container is null in createSleevesPage()");W.sleeveList.appendChild(n.container),W.sleeves.push(n)}W.container.appendChild(W.info),W.container.appendChild(W.faqButton),W.container.appendChild(W.docButton),W.container.appendChild(W.sleeveList);const t=document.getElementById("entire-game-container");if(null===t)throw new Error("entire-game-container not found in createSleevesPage()");t.appendChild(W.container)}catch(e){E.exceptionAlert(e)}},t.updateSleevesPage=U,t.clearSleevesPage=function(){W.container instanceof HTMLElement&&M.removeElement(W.container);for(const e in W)W[e]=null;F=null};const K=["Study Computer Science","Data Structures","Networks","Algorithms","Management","Leadership"],q=["Train Strength","Train Defense","Train Dexterity","Train Agility"];function $(e,t,n){if(null==F)throw new Error("playerRef is null in updateSleeveTaskSelector()");const r=[];for(const t of n)e!==t&&t.currentTask===s.SleeveTaskType.Company&&r.push(t.currentTaskLocation);const a=[];for(const t of n)e!==t&&t.currentTask===s.SleeveTaskType.Faction&&a.push(t.currentTaskLocation);if(null===t.taskDetailsSelector)throw new Error("elems.taskDetailsSelector is null");if(null===t.taskDetailsSelector2)throw new Error("elems.taskDetailsSelector is null");switch(T.removeChildrenFromElement(t.taskDetailsSelector),T.removeChildrenFromElement(t.taskDetailsSelector2),t.taskDetailsSelector2=v.clearEventListeners(t.taskDetailsSelector2),S.getSelectValue(t.taskSelector)){case"Work for Company":{let n=0;const a=Object.keys(F.jobs);for(let i=0;i{if(null===t.taskDetailsSelector2)throw new Error("elems.taskDetailsSelector2 is null");const n=S.getSelectValue(t.taskDetailsSelector),r=u.Factions[n];if(null==r)return void console.warn(`Invalid faction name when trying to update Sleeve Task Selector: ${n}`);const a=r.getInfo();T.removeChildrenFromElement(t.taskDetailsSelector2);let i=0;a.offerHackingWork&&(t.taskDetailsSelector2.add(C.createOptionElement("Hacking Contracts")),e.factionWorkType===m.FactionWorkType.Hacking&&(t.taskDetailsSelector2.selectedIndex=i),++i),a.offerFieldWork&&(t.taskDetailsSelector2.add(C.createOptionElement("Field Work")),e.factionWorkType===m.FactionWorkType.Field&&(t.taskDetailsSelector2.selectedIndex=i),++i),a.offerSecurityWork&&(t.taskDetailsSelector2.add(C.createOptionElement("Security Work")),e.factionWorkType===m.FactionWorkType.Security&&(t.taskDetailsSelector2.selectedIndex=i),++i)}),t.taskDetailsSelector.dispatchEvent(new Event("change"));break}case"Commit Crime":{let n=0;for(const r in p.Crimes){const a=p.Crimes[r].name;if(t.taskDetailsSelector.add(C.createOptionElement(a,r)),""===e.crimeType)continue;const i=p.Crimes[e.crimeType];null!==i&&(a===i.name&&(t.taskDetailsSelector.selectedIndex=n),++n)}t.taskDetailsSelector2.add(C.createOptionElement("------"));break}case"Take University Course":for(let n=0;nanalyze Get information about the current machine
backdoor Install a backdoor on the current machine
buy [-l/program] Purchase a program through the Dark Web
cat [file] Display a .msg, .lit, or .txt file
cd [dir] Change to a new directory
check [script] [args...] Print a script's logs to Terminal
clear Clear all text on the terminal
cls See 'clear' command
connect [ip/hostname] Connects to a remote server
download [script/text file] Downloads scripts or text files to your computer
expr [math expression] Evaluate a mathematical expression
free Check the machine's memory (RAM) usage
hack Hack the current machine
help [command] Display this help text, or the help text for a command
home Connect to home computer
hostname Displays the hostname of the machine
ifconfig Displays the IP address of the machine
kill [script/pid] [args...] Stops the specified script on the current server
killall Stops all running scripts on the current machine
ls [dir] [| grep pattern] Displays all files on the machine
lscpu Displays the number of CPU cores on the machine
mem [script] [-t] [n] Displays the amount of RAM required to run the script
mv [src] [dest] Move/rename a text or script file
nano [file] Text editor - Open up and edit a script or text file
ps Display all scripts that are currently running
rm [file] Delete a file from the server
run [name] [-t] [n] [args...] Execute a program or script
scan Prints all immediately-available network connections
scan-analyze [d] [-a] Prints info for all servers up to d nodes away
scp [file] [server] Copies a file to a destination server
sudov Shows whether you have root access on this computer
tail [script] [args...] Displays dynamic logs for the specified script
theme [preset] | bg txt hlgt Change the color scheme of the UI
top Displays all running scripts and their RAM usage
unalias [alias name] Deletes the specified alias
wget [url] [target file] Retrieves code/text from a web server
",t.HelpTexts={alias:"alias [-g] [name=\"value\"]
Create or display aliases. An alias enables a replacement of a word with another string. It can be used to abbreviate a commonly used command, or commonly used parts of a command. The NAME of an alias defines the word that will be replaced, while the VALUE defines what it will be replaced by. For example, you could create the alias 'nuke' for the Terminal command 'run NUKE.exe' using the following:

alias nuke=\"run NUKE.exe\"

Then, to run the NUKE.exe program you would just have to enter 'nuke' in Terminal rather than the full command. It is important to note that 'default' aliases will only be substituted for the first word of a Terminal command. For example, if the following alias was set:

alias worm=\"HTTPWorm.exe\"

and then you tried to run the following terminal command:

run worm

This would fail because the worm alias is not the first word of a Terminal command. To allow an alias to be substituted anywhere in a Terminal command, rather than just the first word, you must set it to be a global alias using the -g flag:

alias -g worm=\"HTTPWorm.exe\"

Now, the 'worm' alias will be substituted anytime it shows up as an individual word in a Terminal command.

Entering just the command 'alias' without any arguments prints the list of all defined aliases in the reusable form 'alias NAME=VALUE' on the Terminal.

The 'unalias' command can be used to remove aliases.

",analyze:"analze
Prints details and statistics about the current server. The information that is printed includes basic server details such as the hostname, whether the player has root access, what ports are opened/closed, and also hacking-related information such as an estimated chance to successfully hack, an estimate of how much money is available on the server, etc.",backdoor:"backdoor
Install a backdoor on the current machine, grants a secret bonus depending on the machine.
Requires root access to run.
",buy:"buy [-l / program]
Purchase a program through the Dark Web. Requires a TOR router to use.

If this command is ran with the '-l' flag, it will display a list of all programs that can be bought through the dark web to the Terminal, as well as their costs.

Otherwise, the name of the program must be passed in as a parameter. This name is NOT case-sensitive.",cat:"cat [file]
Display message (.msg), literature (.lit), or text (.txt) files. Examples:

cat j1.msg
cat foo.lit
cat servers.txt",cd:"cd [dir]
Change to the specified directory. Note that this works even for directories that don't exist. If you change to a directory that does not exist, it will not be 'created'. Examples:

cd scripts/hacking
cd /logs
cd ../",check:"check [script name] [args...]
Print the logs of the script specified by the script name and arguments to the Terminal. Each argument must be separated by a space. Remember that a running script is uniquely identified both by its name and the arguments that are used to start it. So, if a script was ran with the following arguments:

run foo.script 1 2 foodnstuff

Then to run the 'check' command on this script you would have to pass the same arguments in:

check foo.script 1 2 foodnstuff",clear:"clear
Clear the Terminal screen, deleting all of the text. Note that this does not delete the user's command history, so using the up and down arrow keys is still valid. Also note that this is permanent and there is no way to undo this. Synonymous with 'cls' command",cls:"cls
Clear the Terminal screen, deleting all of the text. Note that this does not delete the user's command history, so using the up and down arrow keys is still valid. Also note that this is permanent and there is no way to undo this. Synonymous with 'clear' command",connect:"connect [hostname/ip]
Connect to a remote server. The hostname or IP address of the remote server must be given as the argument to this command. Note that only servers that are immediately adjacent to the current server in the network can be connected to. To see which servers can be connected to, use the 'scan' command.",download:"download [script/text file]
Downloads a script or text file to your computer (like your real life computer).
You can also download all of your scripts/text files as a zip file using the following Terminal commands:

Download all scripts and text files: download *
Download all scripts: download *.script
Download all text files: download *.txt
",expr:"expr [mathematical expression]
Evaluate a simple mathematical expression. Supports native JavaScript operators:
+, -, /, *, **, %
Example:
expr 25 * 2 ** 10
Note that letters (non-digits) are not allowed and will be removed from the input.",free:"free
Display's the memory usage on the current machine. Print the amount of RAM that is available on the current server as well as how much of it is being used.",hack:"hack
Attempt to hack the current server. Requires root access in order to be run. See the wiki page for hacking mechanics
",help:"help [command]
Display Terminal help information. Without arguments, 'help' prints a list of all valid Terminal commands and a brief description of their functionality. You can also pass the name of a Terminal command as an argument to 'help' to print more detailed information about the Terminal command. Examples:

help alias
help scan-analyze",home:"home
Connect to your home computer. This will work no matter what server you are currently connected to.",hostname:"hostname
Prints the hostname of the current server",ifconfig:"ipconfig
Prints the IP address of the current server",kill:"kill [script name] [args...]
kill [pid]
Kill the script specified by the script name and arguments OR by its PID.

If you are killing the script using its filename and arguments, then each argument must be separated by a space. Remember that a running script is uniquely identified by both its name and the arguments that are used to start it. So, if a script was ran with the following arguments:

run foo.script 1 sigma-cosmetics

Then to kill this script the same arguments would have to be used:

kill foo.script 1 sigma-cosmetics

If you are killing the script using its PID, then the PID argument must be numeric",killall:"killall
Kills all scripts on the current server. Note that after the 'kill' command is issued for a script, it may take a while for the script to actually stop running. This will happen if the script is in the middle of a command such as grow() or weaken() that takes time to execute. The script will not be stopped/killed until after that time has elapsed.",ls:"ls [dir] [| grep pattern]
The ls command, with no arguments, prints all files and directories on the current server's directory to the Terminal screen. The files will be displayed in alphabetical order.

The 'dir' optional parameter can be used to display files/directories in another directory.

The '| grep pattern' optional parameter can be used to only display files whose filenames match the specified pattern.

Examples:

List all files with the '.script' extension in the current directory:
ls | grep .script

List all files with the '.js' extension in the root directory:
ls / | grep .js

List all files with the word 'purchase' in the filename, in the 'scripts' directory:
ls scripts | grep purchase",lscpu:"lscpu
Prints the number of CPU Cores the current server has",mem:"mem [script name] [-t] [num threads]
Displays the amount of RAM needed to run the specified script with a single thread. The command can also be used to print the amount of RAM needed to run a script with multiple threads using the '-t' flag. If the '-t' flag is specified, then an argument for the number of threads must be passed in afterwards. Examples:

mem foo.script
mem foo.script -t 50
The first example above will print the amount of RAM needed to run 'foo.script' with a single thread. The second example above will print the amount of RAM needed to run 'foo.script' with 50 threads.",mv:"mv [src] [dest]
Move the source file to the specified destination. This can also be used to rename files. This command only works for scripts and text files (.txt). This command CANNOT be used to convert to different file types

Note that, unlike the Linux 'mv' command, the destination argument must be the full filepath. Examples:

mv hacking-controller.script scripts/hacking-controller.script
mv myScript.js myOldScript.js",nano:"nano [file name]
Opens up the specified file in the Text Editor. Only scripts (.script) or text files (.txt) can be edited using the Text Editor. If the file does not already exist, then a new, empty one will be created",ps:"ps
Prints all scripts that are running on the current server",rm:"rm [file]
Removes the specified file from the current server. A file can be a script, a program, or a message file.

WARNING: This is permanent and cannot be undone",run:"run [file name] [-t] [num threads] [args...]
Execute a program or a script.

The '[-t]', '[num threads]', and '[args...]' arguments are only valid when running a script. The '-t' flag is used to indicate that the script should be run with the specified number of threads. If the flag is omitted, then the script will be run with a single thread by default. If the '-t' flag is used, then it MUST come immediately after the script name, and the [num threads] argument MUST come immediately afterwards.

[args...] represents a variable number of arguments that will be passed into the script. See the documentation about script arguments. Each specified argument must be separated by a space.

",scan:"scan
Prints all immediately-available network connection. This will print a list of all servers that you can currently connect to using the 'connect' Terminal command.","scan-analyze":"scan-analyze [depth] [-a]
Prints detailed information about all servers up to [depth] nodes away on the network. Calling 'scan-analyze 1' will display information for the same servers that are shown by the 'scan' Terminal command. This command also shows the relative paths to reach each server.

By default, the maximum depth that can be specified for 'scan-analyze' is 3. However, once you have the DeepscanV1.exe and DeepscanV2.exe programs, you can execute 'scan-analyze' with a depth up to 5 and 10, respectively.

The information 'scan-analyze' displays about each server includes whether or not you have root access to it, its required hacking level, the number of open ports required to run NUKE.exe on it, and how much RAM it has.

By default, this command will not display servers that you have purchased. However, you can pass in the -a flag at the end of the command if you would like to enable that.",scp:"scp [filename] [target server]
Copies the specified file from the current server to the target server. This command only works for script files (.script extension), literature files (.lit extension), and text files (.txt extension). The second argument passed in must be the hostname or IP of the target server.",sudov:"sudov
Prints whether or not you have root access to the current machine",tail:"tail [script name] [args...]
Displays dynamic logs for the script specified by the script name and arguments. Each argument must be separated by a space. Remember that a running script is uniquely identified by both its name and the arguments that were used to run it. So, if a script was ran with the following arguments:

run foo.script 10 50000

Then in order to check its logs with 'tail' the same arguments must be used:

tail foo.script 10 50000",theme:"theme [preset] | [#background #text #highlight]
Change the color of the game's user interface

This command can be called with a preset theme. Currently, the supported presets are 'default', 'muted', and 'solarized'. However, you can also specify your own color scheme using hex values. To do so, you must specify three hex color values for the background color, the text color, and the highlight color. These hex values must be preceded by a pound sign (#) and must be either 3 or 6 digits. Example:

theme #ffffff #385 #235012

A color picker such as Google's can be used to get your desired hex color values

Themes are not saved, so when the game is closed and then re-opened or reloaded then it will revert back to the default theme.",top:"top
Prints a list of all scripts running on the current server as well as their thread count and how much RAM they are using in total.",unalias:"unalias [alias name]
Deletes the specified alias. Note that the double quotation marks are required.

As an example, if an alias was declared using:

alias r=\"run\"

Then it could be removed using:

unalias r

It is not necessary to differentiate between global and non-global aliases when using 'unalias'",wget:"wget [url] [target file]
Retrieves data from a URL and downloads it to a file on the current server. The data can only be downloaded to a script (.script, .ns, .js) or a text file (.txt). If the file already exists, it will be overwritten by this command.

Note that it will not be possible to download data from many websites because they do not allow cross-origin resource sharing (CORS). Example:

wget https://raw.githubusercontent.com/danielyxie/bitburner/master/README.md game_readme.txt"}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.trusted=void 0,t.trusted=function(e){return function(t){t.isTrusted&&e()}}},,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.purchaseTorRouter=t.createUpgradeHomeRamPopup=t.createUpgradeHomeCoresPopup=t.createStartCorporationPopup=t.createPurchaseServerPopup=t.createTravelPopup=void 0;const o=n(11),s=n(27),l=n(29),c=n(152),u=n(47),m=n(18),p=n(3),h=n(31),d=n(12),_=n(58),g=n(5),y=n(51),f=n(74),b=n(44),E=i(n(0));t.createTravelPopup=function(e,t){const n=o.CONSTANTS.TravelCost;if(m.Settings.SuppressTravelConfirmation)return void t(e);const r=_.yesNoBoxGetYesButton(),a=_.yesNoBoxGetNoButton();null!=r&&null!=a?(r.innerHTML="Yes",r.addEventListener("click",()=>(_.yesNoBoxClose(),t(e),!1)),a.innerHTML="No",a.addEventListener("click",()=>(_.yesNoBoxClose(),!1)),_.yesNoBoxCreate(E.createElement("span",null,"Would you like to travel to ",e,"? The trip will cost ",h.Money(n),"."))):console.warn("Could not find YesNo pop-up box buttons")},t.createPurchaseServerPopup=function(e,t){const n=c.getPurchaseServerCost(e);if(n===1/0)return void d.dialogBoxCreate("Something went wrong when trying to purchase this server. Please contact developer.");const r=_.yesNoTxtInpBoxGetYesButton(),a=_.yesNoTxtInpBoxGetNoButton();null!=r&&null!=a&&(r.innerHTML="Purchase Server",a.innerHTML="Cancel",r.addEventListener("click",function(){c.purchaseServer(e,t),_.yesNoTxtInpBoxClose()}),a.addEventListener("click",function(){_.yesNoTxtInpBoxClose()}),_.yesNoTxtInpBoxCreate(E.createElement(E.Fragment,null,"Would you like to purchase a new server with ",p.numeralWrapper.formatRAM(e)," of RAM for ",h.Money(n),"?",E.createElement("br",null),E.createElement("br",null),"Please enter the server hostname below:",E.createElement("br",null))))},t.createStartCorporationPopup=function(e){if(!e.canAccessCorporation()||e.hasCorporation())return;const t="create-corporation-popup",n=g.createElement("p",{innerHTML:"Would you like to start a corporation? This will require $150b for registration and initial funding. This $150b can either be self-funded, or you can obtain the seed money from the government in exchange for 500 million shares

If you would like to start one, please enter a name for your corporation below:"}),r=g.createElement("input",{class:"text-input",placeholder:"Corporation Name"}),a=g.createElement("button",{class:"popup-box-button",innerText:"Self-Fund",clickListener:()=>{if(!e.canAfford(15e10))return d.dialogBoxCreate("You don't have enough money to create a corporation! You need $150b."),!1;const n=r.value;if(null==n||""==n)return d.dialogBoxCreate("Invalid company name!"),!1;e.startCorporation(n),e.loseMoney(15e10);const a=document.getElementById("world-menu-header");return a instanceof HTMLElement&&(a.click(),a.click()),d.dialogBoxCreate("Congratulations! You just self-funded your own corporation. You can visit and manage your company in the City."),b.removeElementById(t),!1}}),i=g.createElement("button",{class:"popup-box-button",innerText:"Use Seed Money",clickListener:()=>{const n=r.value;if(null==n||""==n)return d.dialogBoxCreate("Invalid company name!"),!1;e.startCorporation(n,5e8);const a=document.getElementById("world-menu-header");return a instanceof HTMLElement&&(a.click(),a.click()),d.dialogBoxCreate("Congratulations! You just started your own corporation with government seed money. You can visit and manage your company in the City."),b.removeElementById(t),!1}}),o=f.createPopupCloseButton(t,{class:"popup-box-button"});y.createPopup(t,[n,r,o,a,i]),r.focus()},t.createUpgradeHomeCoresPopup=function(e){const t=e.getHomeComputer().cpuCores;if(t>=8)return void d.dialogBoxCreate(E.createElement(E.Fragment,null,"You have the maximum amount of CPU cores on your home computer."));const n=[0,1e10,25e10,5e12,1e14,1e15,2e16,2e17][t],r=_.yesNoBoxGetYesButton(),a=_.yesNoBoxGetNoButton();null!=r&&null!=a&&(r.innerHTML="Purchase",r.addEventListener("click",()=>{e.canAfford(n)?(e.loseMoney(n),e.getHomeComputer().cpuCores++,d.dialogBoxCreate("You purchased an additional CPU Core for your home computer! It now has "+e.getHomeComputer().cpuCores+" cores.")):d.dialogBoxCreate("You do not have enough money to purchase an additional CPU Core for your home computer!"),_.yesNoBoxClose()}),a.innerHTML="Cancel",a.addEventListener("click",()=>{_.yesNoBoxClose()}),_.yesNoBoxCreate(E.createElement(E.Fragment,null,"Would you like to purchase an additional CPU Core for your home computer? Each CPU Core lets you start with an additional Core Node in Hacking Missions.",E.createElement("br",null),E.createElement("br",null),"Purchasing an additional core (for a total of ",e.getHomeComputer().cpuCores+1,") will cost ",h.Money(n))))},t.createUpgradeHomeRamPopup=function(e){const t=e.getUpgradeHomeRamCost(),n=e.getHomeComputer().maxRam,r=_.yesNoBoxGetYesButton(),a=_.yesNoBoxGetNoButton();null!=r&&null!=a&&(e.getHomeComputer().maxRam>=o.CONSTANTS.HomeComputerMaxRam?d.dialogBoxCreate(E.createElement(E.Fragment,null,"You have the maximum amount of RAM on your home computer.")):(r.innerText="Purchase",r.addEventListener("click",()=>{c.purchaseRamForHomeComputer(t,e),_.yesNoBoxClose()}),a.innerText="Cancel",a.addEventListener("click",()=>{_.yesNoBoxClose()}),_.yesNoBoxCreate(E.createElement(E.Fragment,null,"Would you like to purchase additional RAM for your home computer? ",E.createElement("br",null),E.createElement("br",null),"This will upgrade your RAM from ",p.numeralWrapper.formatRAM(n)," to ",p.numeralWrapper.formatRAM(2*n),". ",E.createElement("br",null),E.createElement("br",null),"This will cost ",h.Money(t)))))},t.purchaseTorRouter=function(e){if(e.hasTorRouter())return void d.dialogBoxCreate("You already have a TOR Router!");if(!e.canAfford(o.CONSTANTS.TorRouterCost))return void d.dialogBoxCreate("You cannot afford to purchase the TOR router!");e.loseMoney(o.CONSTANTS.TorRouterCost);const t=l.safetlyCreateUniqueServer({ip:s.createUniqueRandomIp(),hostname:"darkweb",organizationName:"",isConnectedTo:!1,adminRights:!1,purchasedByPlayer:!1,maxRam:1});s.AddToAllServers(t),u.SpecialServerIps.addIp("Darkweb Server",t.ip),e.getHomeComputer().serversOnNetwork.push(t.ip),t.serversOnNetwork.push(e.getHomeComputer().ip),d.dialogBoxCreate("You have purchased a TOR router!
You now have access to the dark web from your home computer.
Use the scan/scan-analyze commands to search for the dark web connection.")}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AutoupdatingStdButton=void 0;const o=i(n(0));t.AutoupdatingStdButton=class extends o.Component{constructor(e){super(e),this.interval=0,this.state={i:0}}componentDidMount(){const e=this.props.intervalTime?this.props.intervalTime:1e3;this.interval=setInterval(()=>this.tick(),e)}componentWillUnmount(){clearInterval(this.interval)}tick(){this.setState(e=>({i:e.i+1}))}render(){const e=null!=this.props.tooltip&&""!==this.props.tooltip;let t=this.props.disabled?"std-button-disabled":"std-button";e&&(t+=" tooltip");const n={__html:this.props.tooltip?this.props.tooltip:""};return o.createElement("button",{className:t,onClick:this.props.onClick,style:this.props.style},this.props.text,e&&o.createElement("span",{className:"tooltiptext",dangerouslySetInnerHTML:n}))}}},,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LocationType=void 0,function(e){e[e.Company=0]="Company",e[e.Gym=1]="Gym",e[e.Hospital=2]="Hospital",e[e.Slums=3]="Slums",e[e.Special=4]="Special",e[e.StockMarket=5]="StockMarket",e[e.TechVendor=6]="TechVendor",e[e.TravelAgency=7]="TravelAgency",e[e.University=8]="University",e[e.Casino=9]="Casino"}(t.LocationType||(t.LocationType={}))},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Action=void 0;const r=n(1),a=n(22),i=n(135),o=n(24),s=n(45);class l{constructor(e=null){this.name="",this.desc="",this.level=1,this.maxLevel=1,this.autoLevel=!0,this.baseDifficulty=100,this.difficultyFac=1.01,this.rewardFac=1.02,this.successes=0,this.failures=0,this.rankGain=0,this.rankLoss=0,this.hpLoss=0,this.hpLost=0,this.isStealth=!1,this.isKill=!1,this.count=a.getRandomInt(1e3,25e3),this.countGrowth=a.getRandomInt(1,5),this.weights={hack:1/7,str:1/7,def:1/7,dex:1/7,agi:1/7,cha:1/7,int:1/7},this.decays={hack:.9,str:.9,def:.9,dex:.9,agi:.9,cha:.9,int:.9},this.teamCount=0,e&&e.name&&(this.name=e.name),e&&e.desc&&(this.desc=e.desc),e&&e.baseDifficulty&&(this.baseDifficulty=i.addOffset(e.baseDifficulty,10)),e&&e.difficultyFac&&(this.difficultyFac=e.difficultyFac),e&&e.rewardFac&&(this.rewardFac=e.rewardFac),e&&e.rankGain&&(this.rankGain=e.rankGain),e&&e.rankLoss&&(this.rankLoss=e.rankLoss),e&&e.hpLoss&&(this.hpLoss=e.hpLoss),e&&e.isStealth&&(this.isStealth=e.isStealth),e&&e.isKill&&(this.isKill=e.isKill),e&&e.count&&(this.count=e.count),e&&e.countGrowth&&(this.countGrowth=e.countGrowth),e&&e.weights&&(this.weights=e.weights),e&&e.decays&&(this.decays=e.decays);let t=0;for(const e in this.weights)this.weights.hasOwnProperty(e)&&(t+=this.weights[e]);if(t-1>=10*Number.EPSILON)throw new Error("Invalid weights when constructing Action "+this.name+". The weights should sum up to 1. They sum up to :1");for(const e in this.decays)if(this.decays.hasOwnProperty(e)&&this.decays[e]>1)throw new Error("Invalid decays when constructing Action "+this.name+". Decay value cannot be greater than 1")}getDifficulty(){const e=this.baseDifficulty*Math.pow(this.difficultyFac,this.level-1);if(isNaN(e))throw new Error("Calculated NaN in Action.getDifficulty()");return e}attempt(e){return Math.random()s.BladeburnerConstants.ChaosThreshold){const e=t.chaos-s.BladeburnerConstants.ChaosThreshold+1;return Math.pow(e,.1)}return 1}getSuccessChance(e,t={est:!1}){if(null==e)throw new Error("Invalid Bladeburner instance passed into Action.getSuccessChance");let n=this.getDifficulty(),a=0;for(const t in this.weights)if(this.weights.hasOwnProperty(t)){const n=r.Player.queryStatFromString(t),i="eff"+t.charAt(0).toUpperCase()+t.slice(1);let o=e.skillMultipliers[i];null==o&&(console.error(`Failed to find Bladeburner Skill multiplier for: ${t}`),o=1),a+=this.weights[t]*Math.pow(o*n,this.decays[t])}if(a*=r.Player.getIntelligenceBonus(.75),a*=e.calculateStaminaPenalty(),a*=this.getTeamSuccessBonus(e),a*=this.getChaosCompetencePenalty(e,t),n*=this.getChaosDifficultyBonus(e),"Raid"==this.name&&e.getCurrentCity().comms<=0)return 0;if(a*=e.skillMultipliers.successChanceAll,a*=this.getActionTypeSkillSuccessBonus(e),this.isStealth&&(a*=e.skillMultipliers.successChanceStealth),this.isKill&&(a*=e.skillMultipliers.successChanceKill),a*=r.Player.bladeburner_success_chance_mult,isNaN(a))throw new Error("Competence calculated as NaN in Action.getSuccessChance()");return Math.min(1,a/n)}getSuccessesNeededForNextLevel(e){return Math.ceil(.5*this.maxLevel*(2*e+(this.maxLevel-1)))}setMaxLevel(e){this.successes>=this.getSuccessesNeededForNextLevel(e)&&++this.maxLevel}toJSON(){return o.Generic_toJSON("Action",this)}static fromJSON(e){return o.Generic_fromJSON(l,e.data)}}t.Action=l,o.Reviver.constructors.Action=l},,,,,,,,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.EventEmitter=void 0;t.EventEmitter=class{constructor(e){if(this.subscribers={},Array.isArray(e))for(const t of e)this.addSubscriber(t)}addSubscriber(e){this.subscribers[e.id]=e.cb}emitEvent(...e){for(const t in this.subscribers)(0,this.subscribers[t])(e)}removeSubscriber(e){delete this.subscribers[e]}}},,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Server=void 0;const r=n(685),a=n(25),i=n(1221),o=n(406),s=n(24);class l extends r.BaseServer{constructor(e={hostname:"",ip:o.createRandomIp()}){super(e),this.backdoorInstalled=!1,this.baseDifficulty=1,this.hackDifficulty=1,this.minDifficulty=1,this.moneyAvailable=0,this.moneyMax=0,this.numOpenPortsRequired=5,this.openPortCount=0,this.purchasedByPlayer=!1,this.requiredHackingSkill=1,this.serverGrowth=1,this.hostname.startsWith("hacknet-node-")&&(this.hostname=i.createRandomString(10)),this.purchasedByPlayer=null!=e.purchasedByPlayer&&e.purchasedByPlayer,this.maxRam=null!=e.maxRam?e.maxRam:0,this.requiredHackingSkill=null!=e.requiredHackingSkill?e.requiredHackingSkill:1,this.moneyAvailable=null!=e.moneyAvailable?e.moneyAvailable*a.BitNodeMultipliers.ServerStartingMoney:0,this.moneyMax=25*this.moneyAvailable*a.BitNodeMultipliers.ServerMaxMoney,this.hackDifficulty=null!=e.hackDifficulty?e.hackDifficulty*a.BitNodeMultipliers.ServerStartingSecurity:1,this.baseDifficulty=this.hackDifficulty,this.minDifficulty=Math.max(1,Math.round(this.hackDifficulty/3)),this.serverGrowth=null!=e.serverGrowth?e.serverGrowth:1,this.numOpenPortsRequired=null!=e.numOpenPortsRequired?e.numOpenPortsRequired:5}capDifficulty(){this.hackDifficulty100&&(this.hackDifficulty=100)}changeMinimumSecurity(e,t=!1){t?this.minDifficulty*=e:this.minDifficulty+=e,this.minDifficulty=Math.max(1,this.minDifficulty)}changeMaximumMoney(e,t=!1){t?this.moneyMax*=e:this.moneyMax+=e}fortify(e){this.hackDifficulty+=e,this.capDifficulty()}weaken(e){this.hackDifficulty-=e*a.BitNodeMultipliers.ServerWeakenRate,this.capDifficulty()}toJSON(){return s.Generic_toJSON("Server",this)}static fromJSON(e){return s.Generic_fromJSON(l,e.data)}}t.Server=l,s.Reviver.constructors.Server=l},,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BlackOperation=void 0;const r=n(186),a=n(24);class i extends r.Operation{constructor(e=null){super(e),this.count=1,this.countGrowth=0}getActionTimePenalty(){return 1.5}getChaosCompetencePenalty(){return 1}getChaosDifficultyBonus(){return 1}toJSON(){return a.Generic_toJSON("BlackOperation",this)}static fromJSON(e){return a.Generic_fromJSON(i,e.data)}}t.BlackOperation=i,a.Reviver.constructors.BlackOperation=i},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Skill=void 0;const r=n(25);t.Skill=class{constructor(e={name:"foo",desc:"foo"}){if(this.baseCost=1,this.costInc=1,this.maxLvl=0,this.successChanceAll=0,this.successChanceStealth=0,this.successChanceKill=0,this.successChanceContract=0,this.successChanceOperation=0,this.successChanceEstimate=0,this.actionTime=0,this.effHack=0,this.effStr=0,this.effDef=0,this.effDex=0,this.effAgi=0,this.effCha=0,this.stamina=0,this.money=0,this.expGain=0,!e.name)throw new Error("Failed to initialize Bladeburner Skill. No name was specified in ctor");if(!e.desc)throw new Error("Failed to initialize Bladeburner Skills. No desc was specified in ctor");this.name=e.name,this.desc=e.desc,this.baseCost=e.baseCost?e.baseCost:1,this.costInc=e.costInc?e.costInc:1,e.maxLvl&&(this.maxLvl=e.maxLvl),e.successChanceAll&&(this.successChanceAll=e.successChanceAll),e.successChanceStealth&&(this.successChanceStealth=e.successChanceStealth),e.successChanceKill&&(this.successChanceKill=e.successChanceKill),e.successChanceContract&&(this.successChanceContract=e.successChanceContract),e.successChanceOperation&&(this.successChanceOperation=e.successChanceOperation),e.successChanceEstimate&&(this.successChanceEstimate=e.successChanceEstimate),e.actionTime&&(this.actionTime=e.actionTime),e.effHack&&(this.effHack=e.effHack),e.effStr&&(this.effStr=e.effStr),e.effDef&&(this.effDef=e.effDef),e.effDex&&(this.effDex=e.effDex),e.effAgi&&(this.effAgi=e.effAgi),e.effCha&&(this.effCha=e.effCha),e.stamina&&(this.stamina=e.stamina),e.money&&(this.money=e.money),e.expGain&&(this.expGain=e.expGain)}calculateCost(e){return Math.floor((this.baseCost+e*this.costInc)*r.BitNodeMultipliers.BladeburnerSkillCost)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.findSleevePurchasableAugs=void 0;const r=n(15),a=n(4),i=n(19);t.findSleevePurchasableAugs=function(e,t){const n=e.augmentations.map(e=>e.name),o=[];function s(e){return e.name!==a.AugmentationNames.NeuroFluxGovernor&&!n.includes(e.name)&&!o.includes(e)&&!e.isSpecial}if(t.inGang()){const e=t.getGangFaction();for(const t in r.Augmentations){const n=r.Augmentations[t];s(n)&&e.playerReputation>n.baseRepRequirement&&o.push(n)}return o}for(const e of t.factions){if("Bladeburners"===e)continue;if("Netburners"===e)continue;const t=i.Factions[e];if(null!=t)for(const e of t.augmentations){const n=r.Augmentations[e];s(n)&&t.playerReputation>n.baseRepRequirement&&o.push(n)}}return o}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.calculateServerGrowth=void 0;const r=n(11),a=n(25);t.calculateServerGrowth=function(e,t,n){const i=Math.max(Math.floor(t),0);let o=1+(r.CONSTANTS.ServerBaseGrowthRate-1)/e.hackDifficulty;o>r.CONSTANTS.ServerMaxGrowthRate&&(o=r.CONSTANTS.ServerMaxGrowthRate);const s=i*(e.serverGrowth/100)*a.BitNodeMultipliers.ServerGrowthRate;return Math.pow(o,s*n.hacking_grow_mult)}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.r(__webpack_exports__),__webpack_require__.d(__webpack_exports__,"calculateRamUsage",function(){return calculateRamUsage});var acorn_walk__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(214),acorn__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(116),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(145),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__),_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(10),_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__);const specialReferenceIF="__SPECIAL_referenceIf",specialReferenceFOR="__SPECIAL_referenceFor",specialReferenceWHILE="__SPECIAL_referenceWhile",memCheckGlobalKey=".__GLOBAL__";async function parseOnlyRamCalculate(otherScripts,code,workerScript){try{let dependencyMap={};const completedParses=new Set,parseQueue=[];function parseCode(e,t){const n=parseOnlyCalculateDeps(e,t);completedParses.add(t);for(let e=0;e0;){const nextModule=parseQueue.shift();let code;if(nextModule.startsWith("https://")||nextModule.startsWith("http://"))try{const module=await eval("import(nextModule)");code="";for(const e in module)"function"==typeof module[e]&&(code+=module[e].toString()+";\n")}catch(e){return console.error(`Error dynamically importing module from ${nextModule} for RAM calculations: ${e}`),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.URLImportError}else{if(!Array.isArray(otherScripts))return console.warn("parseOnlyRamCalculate() not called with array of scripts"),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.ImportError;let e=null,t=nextModule.startsWith("./")?nextModule.slice(2):nextModule;for(const n of otherScripts)if(n.filename===t){e=n;break}if(null==e)return _RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.ImportError;code=e.code}parseCode(code,nextModule)}let ram=_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCostConstants.ScriptBaseRamCost;const unresolvedRefs=Object.keys(dependencyMap).filter(e=>e.startsWith(initialModule)),resolvedRefs=new Set;for(;unresolvedRefs.length>0;){const e=unresolvedRefs.shift();if("hacknet"!==e||resolvedRefs.has("hacknet")||(ram+=_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCostConstants.ScriptHacknetNodesRamCost),"document"!==e||resolvedRefs.has("document")||(ram+=_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCostConstants.ScriptDomRamCost),"window"!==e||resolvedRefs.has("window")||(ram+=_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCostConstants.ScriptDomRamCost),resolvedRefs.add(e),e.endsWith(".*")){const t=e.slice(0,e.length-2);for(let e of Object.keys(dependencyMap).filter(e=>e.startsWith(t)))for(let t of dependencyMap[e]||[])resolvedRefs.has(t)||unresolvedRefs.push(t)}else for(let t of dependencyMap[e]||[])resolvedRefs.has(t)||unresolvedRefs.push(t);try{function applyFuncRam(e){if("function"!=typeof e)return 0;try{let t;return"number"==typeof(t="AsyncFunction"===e.constructor.name?0:e.apply(null,[]))?t:0}catch(e){return console.error(`Error applying function: ${e}`),0}}if(workerScript.loadedFns[e])continue;let t;workerScript.loadedFns[e]=!0,t=e in workerScript.env.vars.bladeburner?workerScript.env.vars.bladeburner[e]:e in workerScript.env.vars.codingcontract?workerScript.env.vars.codingcontract[e]:e in workerScript.env.vars.gang?workerScript.env.vars.gang[e]:e in workerScript.env.vars.sleeve?workerScript.env.vars.sleeve[e]:workerScript.env.vars[e],ram+=applyFuncRam(t)}catch(e){continue}}return ram}catch(e){return _RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.SyntaxError}}function parseOnlyCalculateDeps(e,t){const n=Object(acorn__WEBPACK_IMPORTED_MODULE_1__.b)(e,{sourceType:"module",ecmaVersion:9}),r=t+memCheckGlobalKey,a={};a[r]=new Set;let i={};var o=[];function s(e,n){const r=a[e]||(a[e]=new Set);n in i&&r.add(i[n]),r.add(t+"."+n),r.add(n)}const l=Object.getOwnPropertyNames(Object.prototype);function c(){return{Identifier:(e,t)=>{l.includes(e.name)||s(t.key,e.name)},WhileStatement:(e,t,n)=>{s(t.key,specialReferenceWHILE),e.test&&n(e.test,t),e.body&&n(e.body,t)},DoWhileStatement:(e,t,n)=>{s(t.key,specialReferenceWHILE),e.test&&n(e.test,t),e.body&&n(e.body,t)},ForStatement:(e,t,n)=>{s(t.key,specialReferenceFOR),e.init&&n(e.init,t),e.test&&n(e.test,t),e.update&&n(e.update,t),e.body&&n(e.body,t)},IfStatement:(e,t,n)=>{s(t.key,specialReferenceIF),e.test&&n(e.test,t),e.consequent&&n(e.consequent,t),e.alternate&&n(e.alternate,t)},MemberExpression:(e,t,n)=>{e.object&&n(e.object,t),e.property&&n(e.property,t)}}}return acorn_walk__WEBPACK_IMPORTED_MODULE_0__.a(n,{key:r},Object.assign({ImportDeclaration:(e,t)=>{const n=e.source.value;o.push(n),a[t.key].add(n+memCheckGlobalKey);for(let r=0;r{const n=t+"."+e.id.name;acorn_walk__WEBPACK_IMPORTED_MODULE_0__.a(e,{key:n},c())}},c())),{dependencyMap:a,additionalModules:o}}async function calculateRamUsage(e,t){const n={loadedFns:{},env:{vars:_Netscript_RamCostGenerator__WEBPACK_IMPORTED_MODULE_3__.RamCosts}};try{return await parseOnlyRamCalculate(t,e,n)}catch(e){return console.error("Failed to parse script for RAM calculations:"),console.error(e),_RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.SyntaxError}return _RamCalculationErrorCodes__WEBPACK_IMPORTED_MODULE_2__.RamCalculationErrorCode.SyntaxError}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.removeLoadingScreen=void 0;const r=n(198),a=n(44);t.removeLoadingScreen=function(){a.removeElementById("loader"),r.getElementById("entire-game-container").style.visibility="visible"}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ActiveScriptsRoot=void 0;const o=i(n(0)),s=n(859),l=n(858);t.ActiveScriptsRoot=class extends o.Component{constructor(e){super(e)}render(){return o.createElement(o.Fragment,null,o.createElement("p",null,"This page displays a list of all of your scripts that are currently running across every machine. It also provides information about each script's production. The scripts are categorized by the hostname of the servers on which they are running."),o.createElement(s.ScriptProduction,Object.assign({},this.props)),o.createElement(l.ServerAccordions,Object.assign({},this.props)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.clearResleevesPage=t.createResleevesPage=void 0;const o=n(861),s=n(15),l=n(3),c=n(31),u=n(16),m=n(12),p=n(67),h=n(5),d=n(79),_=n(180),g=n(60),y=n(111),f=i(n(0)),b=n(236),E={container:null,info:null,sortTag:null,sortSelector:null,resleeveList:null,resleeves:null};let v;function k(e){const t={container:null,statsPanel:null,stats:null,multipliersButton:null,augPanel:null,augSelector:null,augDescription:null,costPanel:null,costText:null,buyButton:null};if(!u.routing.isOn(u.Page.Resleeves))return t;t.container=h.createElement("div",{class:"resleeve-container",display:"block"}),t.statsPanel=h.createElement("div",{class:"resleeve-panel",width:"30%"}),t.stats=h.createElement("p",{class:"resleeve-stats-text",innerHTML:`Hacking: ${l.numeralWrapper.formatSkill(e.hacking_skill)} (${l.numeralWrapper.formatExp(e.hacking_exp)} exp)
`+`Strength: ${l.numeralWrapper.formatSkill(e.strength)} (${l.numeralWrapper.formatExp(e.strength_exp)} exp)
`+`Defense: ${l.numeralWrapper.formatSkill(e.defense)} (${l.numeralWrapper.formatExp(e.defense_exp)} exp)
`+`Dexterity: ${l.numeralWrapper.formatSkill(e.dexterity)} (${l.numeralWrapper.formatExp(e.dexterity_exp)} exp)
`+`Agility: ${l.numeralWrapper.formatSkill(e.agility)} (${l.numeralWrapper.formatExp(e.agility_exp)} exp)
`+`Charisma: ${l.numeralWrapper.formatSkill(e.charisma)} (${l.numeralWrapper.formatExp(e.charisma_exp)} exp)
`+`# Augmentations: ${e.augmentations.length}`}),t.multipliersButton=h.createElement("button",{class:"std-button",innerText:"Multipliers",clickListener:()=>{m.dialogBoxCreate(["

Total Multipliers:

",`Hacking Level multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_mult)}`,`Hacking Experience multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_exp_mult)}`,`Strength Level multiplier: ${l.numeralWrapper.formatPercentage(e.strength_mult)}`,`Strength Experience multiplier: ${l.numeralWrapper.formatPercentage(e.strength_exp_mult)}`,`Defense Level multiplier: ${l.numeralWrapper.formatPercentage(e.defense_mult)}`,`Defense Experience multiplier: ${l.numeralWrapper.formatPercentage(e.defense_exp_mult)}`,`Dexterity Level multiplier: ${l.numeralWrapper.formatPercentage(e.dexterity_mult)}`,`Dexterity Experience multiplier: ${l.numeralWrapper.formatPercentage(e.dexterity_exp_mult)}`,`Agility Level multiplier: ${l.numeralWrapper.formatPercentage(e.agility_mult)}`,`Agility Experience multiplier: ${l.numeralWrapper.formatPercentage(e.agility_exp_mult)}`,`Charisma Level multiplier: ${l.numeralWrapper.formatPercentage(e.charisma_mult)}`,`Charisma Experience multiplier: ${l.numeralWrapper.formatPercentage(e.charisma_exp_mult)}`,`Hacking Chance multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_chance_mult)}`,`Hacking Speed multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_speed_mult)}`,`Hacking Money multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_money_mult)}`,`Hacking Growth multiplier: ${l.numeralWrapper.formatPercentage(e.hacking_grow_mult)}`,`Salary multiplier: ${l.numeralWrapper.formatPercentage(e.work_money_mult)}`,`Company Reputation Gain multiplier: ${l.numeralWrapper.formatPercentage(e.company_rep_mult)}`,`Faction Reputation Gain multiplier: ${l.numeralWrapper.formatPercentage(e.faction_rep_mult)}`,`Crime Money multiplier: ${l.numeralWrapper.formatPercentage(e.crime_money_mult)}`,`Crime Success multiplier: ${l.numeralWrapper.formatPercentage(e.crime_success_mult)}`,`Hacknet Income multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_money_mult)}`,`Hacknet Purchase Cost multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_purchase_cost_mult)}`,`Hacknet Level Upgrade Cost multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_level_cost_mult)}`,`Hacknet Ram Upgrade Cost multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_ram_cost_mult)}`,`Hacknet Core Upgrade Cost multiplier: ${l.numeralWrapper.formatPercentage(e.hacknet_node_core_cost_mult)}`,`Bladeburner Max Stamina multiplier: ${l.numeralWrapper.formatPercentage(e.bladeburner_max_stamina_mult)}`,`Bladeburner Stamina Gain multiplier: ${l.numeralWrapper.formatPercentage(e.bladeburner_stamina_gain_mult)}`,`Bladeburner Field Analysis multiplier: ${l.numeralWrapper.formatPercentage(e.bladeburner_analysis_mult)}`,`Bladeburner Success Chance multiplier: ${l.numeralWrapper.formatPercentage(e.bladeburner_success_chance_mult)}`].join("
"),!1)}}),t.statsPanel.appendChild(t.stats),t.statsPanel.appendChild(t.multipliersButton),t.augPanel=h.createElement("div",{class:"resleeve-panel",width:"50%"}),t.augSelector=h.createElement("select",{class:"resleeve-aug-selector dropdown"}),t.augDescription=h.createElement("p");for(let n=0;n{!function(e){if(null==e.augDescription)throw new Error("elems.augDescription is null in updateAugDescription()");const t=_.getSelectValue(e.augSelector),n=s.Augmentations[t];if(null==n)return void console.warn(`Could not find Augmentation with name ${t}`);let r=n.info;"string"!=typeof r&&(r=b.renderToStaticMarkup(r));e.augDescription.innerHTML=r}(t)}),t.augSelector.dispatchEvent(new Event("change")),t.augPanel.appendChild(t.augSelector),t.augPanel.appendChild(t.augDescription);const n=e.getCost();return t.costPanel=h.createElement("div",{class:"resleeve-panel",width:"20%"}),t.costText=h.createElement("p",{innerHTML:`It costs ${b.renderToStaticMarkup(c.Money(n))} `+"to purchase this Sleeve."}),t.buyButton=h.createElement("button",{class:"std-button",innerText:"Purchase",clickListener:()=>{if(null==v)throw new Error("playerRef is null in buyButton.click()");o.purchaseResleeve(e,v)?m.dialogBoxCreate(f.createElement(f.Fragment,null,"You re-sleeved for ",c.Money(n),"!"),!1):m.dialogBoxCreate("You cannot afford to re-sleeve into this body",!1)}}),t.costPanel.appendChild(t.costText),t.costPanel.appendChild(t.buyButton),t.container.appendChild(t.statsPanel),t.container.appendChild(t.augPanel),t.container.appendChild(t.costPanel),t}t.createResleevesPage=function(e){if(u.routing.isOn(u.Page.Resleeves))try{let t;v=e,E.container=h.createElement("div",{class:"generic-menupage-container",id:"resleeves-container",position:"fixed"}),E.info=h.createElement("p",{display:"block",innerHTML:"Re-sleeving is the process of digitizing and transferring your consciousness into a new human body, or 'sleeve'. Here at VitaLife, you can purchase new specially-engineered bodies for the re-sleeve process. Many of these bodies even come with genetic and cybernetic Augmentations!

Re-sleeving will change your experience for every stat. It will also REMOVE all of your currently-installed Augmentations, and replace them with the ones provided by the purchased sleeve. However, Augmentations that you have purchased but not installed will NOT be removed. If you have purchased an Augmentation and then re-sleeve into a body which already has that Augmentation, it will be removed (since you cannot have duplicate Augmentations).

NOTE: The stats and multipliers displayed on this page do NOT include your bonuses from Source-File.",width:"75%"}),0===e.resleeves.length&&(e.resleeves=o.generateResleeves()),E.sortTag=h.createElement("p",{display:"inline-block",innerText:"Sort By: "}),E.sortSelector=h.createElement("select",{class:"dropdown"}),function(e){e.Cost="Cost",e.Hacking="Hacking",e.Strength="Strength",e.Defense="Defense",e.Dexterity="Dexterity",e.Agility="Agility",e.Charisma="Charisma",e.AverageCombatStats="AverageCombat",e.AverageAllStats="AverageAllStats",e.TotalNumAugmentations="TotalNumAugmentations"}(t||(t={})),E.sortSelector.add(d.createOptionElement("Cost",t.Cost)),E.sortSelector.add(d.createOptionElement("Hacking Level",t.Hacking)),E.sortSelector.add(d.createOptionElement("Strength Level",t.Strength)),E.sortSelector.add(d.createOptionElement("Defense Level",t.Defense)),E.sortSelector.add(d.createOptionElement("Dexterity Level",t.Dexterity)),E.sortSelector.add(d.createOptionElement("Agility Level",t.Agility)),E.sortSelector.add(d.createOptionElement("Charisma Level",t.Charisma)),E.sortSelector.add(d.createOptionElement("Average Combat Stats",t.AverageCombatStats)),E.sortSelector.add(d.createOptionElement("Average Stats",t.AverageAllStats)),E.sortSelector.add(d.createOptionElement("Number of Augmentations",t.TotalNumAugmentations)),E.resleeveList=h.createElement("ul"),E.sortSelector.onchange=(()=>{function n(...e){let t=0;for(let n=0;ne.hacking_skill-t.hacking_skill);break;case t.Strength:e.resleeves.sort((e,t)=>e.strength-t.strength);break;case t.Defense:e.resleeves.sort((e,t)=>e.defense-t.defense);break;case t.Dexterity:e.resleeves.sort((e,t)=>e.dexterity-t.dexterity);break;case t.Agility:e.resleeves.sort((e,t)=>e.agility-t.agility);break;case t.Charisma:e.resleeves.sort((e,t)=>e.charisma-t.charisma);break;case t.AverageCombatStats:e.resleeves.sort((e,t)=>n(e.strength,e.defense,e.dexterity,e.agility)-n(t.strength,t.defense,t.dexterity,t.agility));break;case t.AverageAllStats:e.resleeves.sort((e,t)=>n(e.hacking_skill,e.strength,e.defense,e.dexterity,e.agility,e.charisma)-n(t.hacking_skill,t.strength,t.defense,t.dexterity,t.agility,t.charisma));break;case t.TotalNumAugmentations:e.resleeves.sort((e,t)=>e.augmentations.length-t.augmentations.length);break;case t.Cost:default:e.resleeves.sort((e,t)=>e.getCost()-t.getCost())}if(null==E.resleeveList)throw new Error("UIElems.resleeveList is null in sortSelector.click()");if(null==E.resleeves)throw new Error("UIElems.resleeves is null in sortSelector.click()");for(const t of e.resleeves){const e=k(t);if(null==e.container)throw new Error("resleeveUi.container is null in sortSelector.click()");E.resleeveList.appendChild(e.container),E.resleeves.push(e)}}),E.sortSelector.dispatchEvent(new Event("change")),E.container.appendChild(E.info),E.container.appendChild(h.createElement("br")),E.container.appendChild(E.sortTag),E.container.appendChild(E.sortSelector),E.container.appendChild(E.resleeveList);const n=document.getElementById("entire-game-container");if(null==n)throw new Error("Could not find entire-game-container in createResleevesPage()");n.appendChild(E.container)}catch(e){p.exceptionAlert(e)}},t.clearResleevesPage=function(){E.container instanceof HTMLElement&&y.removeElement(E.container);for(const e in E)E[e]=null;v=null}},,,,,function(e,t,n){"use strict";n.d(t,"b",function(){return s}),n.d(t,"a",function(){return l});n(4),n(104),n(182),n(35),n(42),n(19),n(1),n(444),n(27),n(29),n(97),n(56),n(98),n(199),n(17),n(127),n(12),n(5);var r=n(44),a=(n(31),n(0)),i=n.n(a);n(26);i.a.Component;const o="dev-menu-container";function s(){throw new Error("Cannot create Dev Menu because you are not in a dev build")}function l(){Object(r.removeElementById)(o)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ConsoleHelpText=void 0,t.ConsoleHelpText={helpList:["Use 'help [command]' to get more information about a particular Bladeburner console command.",""," automate [var] [val] [hi/low] Configure simple automation for Bladeburner tasks"," clear/cls Clear the console"," help [cmd] Display this help text, or help text for a specific command"," log [en/dis] [type] Enable or disable logging for events and actions"," skill [action] [name] Level or display info about your Bladeburner skills"," start [type] [name] Start a Bladeburner action/task"," stop Stops your current Bladeburner action/task"],automate:["automate [var] [val] [hi/low]","","A simple way to automate your Bladeburner actions. This console command can be used to automatically start an action when your stamina rises above a certain threshold, and automatically switch to another action when your stamina drops below another threshold."," automate status - Check the current status of your automation and get a brief description of what it'll do"," automate en - Enable the automation feature"," automate dis - Disable the automation feature","","There are four properties that must be set for this automation to work properly. Here is how to set them:",""," automate stamina 100 high"," automate contract Tracking high"," automate stamina 50 low"," automate general 'Field Analysis' low","","Using the four console commands above will set the automation to perform Tracking contracts if your stamina is 100 or higher, and then switch to Field Analysis if your stamina drops below 50. Note that when setting the action, the name of the action is CASE-SENSITIVE. It must exactly match whatever the name is in the UI."],clear:["clear","","Clears the console"],cls:["cls","","Clears the console"],help:["help [command]","","Running 'help' with no arguments displays the general help text, which lists all console commands and a brief description of what they do. A command can be specified to get more specific help text about that particular command. For example:",""," help automate","","will display specific information about using the automate console command"],log:["log [en/dis] [type]","","Enable or disable logging. By default, the results of completing actions such as contracts/operations are logged in the console. There are also random events that are logged in the console as well. The five categories of things that get logged are:","","[general, contracts, ops, blackops, events]","","The logging for these categories can be enabled or disabled like so:",""," log dis contracts - Disables logging that occurs when contracts are completed"," log en contracts - Enables logging that occurs when contracts are completed"," log dis events - Disables logging for Bladeburner random events","","Logging can be universally enabled/disabled using the 'all' keyword:",""," log dis all"," log en all"],skill:["skill [action] [name]","","Level or display information about your skills.","","To display information about all of your skills and your multipliers, use:",""," skill list","","To display information about a specific skill, specify the name of the skill afterwards. Note that the name of the skill is case-sensitive. Enter it exactly as seen in the UI. If the name of the skill has whitespace, enclose the name of the skill in double quotation marks:",""," skill list Reaper
skill list 'Digital Observer'","","This console command can also be used to level up skills:",""," skill level [skill name]"],start:["start [type] [name]","","Start an action. An action is specified by its type and its name. The name is case-sensitive. It must appear exactly as it does in the UI. If the name of the action has whitespace, enclose it in double quotation marks. Valid action types include:","","[general, contract, op, blackop]","","Examples:",""," start contract Tracking"," start op 'Undercover Operation'"],stop:["stop","","Stop your current action and go idle."]}},,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.executeDarkwebTerminalCommand=t.checkIfConnectedToDarkweb=void 0;const o=i(n(0)),s=n(296),l=n(1),c=n(47),u=n(8),m=n(31),p=n(679);t.checkIfConnectedToDarkweb=function(){if(c.SpecialServerIps.hasOwnProperty("Darkweb Server")){const e=c.SpecialServerIps.getIp("Darkweb Server");if(!p.isValidIPAddress(e))return;e==l.Player.getCurrentServer().ip&&u.post("You are now connected to the dark web. From the dark web you can purchase illegal items. Use the 'buy -l' command to display a list of all the items you can buy. Use 'buy [item-name] to purchase an item.")}},t.executeDarkwebTerminalCommand=function(e){if(0!=e.length)switch(e[0]){case"buy":{if(2!=e.length)return u.post("Incorrect number of arguments. Usage: "),u.post("buy -l"),void u.post("buy [item name]");const t=e[1];"-l"==t?function(){for(const e in s.DarkWebItems){const t=s.DarkWebItems[e];u.postElement(o.createElement(o.Fragment,null,t.program," - ",m.Money(t.price)," - ",t.description))}}():function(e){e=e.toLowerCase();let t=null;for(const n in s.DarkWebItems){const r=s.DarkWebItems[n];r.program.toLowerCase()==e&&(t=r)}null!==t?l.Player.hasProgram(t.program)?u.post("You already have the "+t.program+" program"):l.Player.money.lt(t.price)?u.post("Not enough money to purchase "+t.program):(l.Player.loseMoney(t.price),l.Player.getHomeComputer().programs.push(t.program),u.post("You have purchased the "+t.program+" program. The new program can be found on your home computer.")):u.post("Unrecognized item: "+e)}(t);break}default:u.post("Command not found")}}},,function(e,t,n){"use strict";n.d(t,"b",function(){return s}),n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(27),o=n(90);const s={All:0,Foreign:1,Owned:2,Purchased:3};class l extends a.a.Component{isValidServer(e){const t=this.props.serverType;switch(t){case s.All:return!0;case s.Foreign:return"home"!==e.hostname&&!e.purchasedByPlayer;case s.Owned:return e.purchasedByPlayer||e instanceof o.HacknetServer||"home"===e.hostname;case s.Purchased:return e.purchasedByPlayer||e instanceof o.HacknetServer;default:return console.warn(`Invalid ServerType specified for ServerDropdown component: ${t}`),!1}}renderOption(e){return a.a.createElement("option",{key:e.hostname,value:e.hostname},e.hostname)}render(){const e=[];for(const t in i.AllServers){const n=i.AllServers[t];this.isValidServer(n)&&e.push(this.renderOption(n))}return a.a.createElement("select",{className:"dropdown",onChange:this.props.onChange,style:this.props.style},e)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.HacknetNode=void 0;const r=n(11),a=n(162),i=n(37),o=n(12),s=n(24);class l{constructor(e="",t=1){this.cores=1,this.level=1,this.moneyGainRatePerSecond=0,this.onlineTimeSeconds=0,this.ram=1,this.totalMoneyGenerated=0,this.name=e,this.updateMoneyGainRate(t)}calculateCoreUpgradeCost(e=1,t){return a.calculateCoreUpgradeCost(this.cores,e,t)}calculateLevelUpgradeCost(e=1,t){return a.calculateLevelUpgradeCost(this.level,e,t)}calculateRamUpgradeCost(e=1,t){return a.calculateRamUpgradeCost(this.ram,e,t)}process(e=1){const t=e*r.CONSTANTS.MilliPerCycle/1e3;let n=this.moneyGainRatePerSecond*t;return isNaN(n)&&(console.error(`Hacknet Node ${this.name} calculated earnings of NaN`),n=0),this.totalMoneyGenerated+=n,this.onlineTimeSeconds+=t,n}upgradeCore(e=1,t){this.cores=Math.min(i.HacknetNodeConstants.MaxCores,Math.round(this.cores+e)),this.updateMoneyGainRate(t)}upgradeLevel(e=1,t){this.level=Math.min(i.HacknetNodeConstants.MaxLevel,Math.round(this.level+e)),this.updateMoneyGainRate(t)}upgradeRam(e=1,t){for(let t=0;t=t.AllCorporationStates.length)&&(this.state=0),++this.state,this.state>=t.AllCorporationStates.length&&(this.state=0)}toJSON(){return r.Generic_toJSON("CorporationState",this)}static fromJSON(e){return r.Generic_fromJSON(a,e.data)}}t.CorporationState=a,r.Reviver.constructors.CorporationState=a},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";var r;Object.defineProperty(t,"__esModule",{value:!0}),t.Card=t.Suit=void 0,function(e){e.Clubs="clubs",e.Diamonds="diamonds",e.Hearts="hearts",e.Spades="spades"}(r=t.Suit||(t.Suit={}));t.Card=class{constructor(e,t){if(this.value=e,this.suit=t,e<1||e>13)throw new Error(`Card instantiated with improper value: ${e}`)}formatValue(){switch(this.value){case 1:return"A";case 11:return"J";case 12:return"Q";case 13:return"K";default:return`${this.value}`}}isRedSuit(){return this.suit===r.Hearts||this.suit===r.Diamonds}getStringRepresentation(){return`${this.formatValue()} of ${this.suit}`}}},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BlinkingCursor=void 0;const a=r(n(0));t.BlinkingCursor=function(){return a.default.createElement("span",{style:{fontSize:"1em"},className:"blinking-cursor"},"|")}},,,,,,,,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AugmentationAccordion=void 0;const o=i(n(0)),s=n(232),l=n(4);t.AugmentationAccordion=function(e){let t=e.aug.name;return null!=e.level&&e.aug.name===l.AugmentationNames.NeuroFluxGovernor&&(t+=` - Level ${e.level}`),"string"==typeof e.aug.info?o.createElement(s.Accordion,{headerContent:o.createElement(o.Fragment,null,t),panelContent:o.createElement("p",{dangerouslySetInnerHTML:{__html:e.aug.info}})}):o.createElement(s.Accordion,{headerContent:o.createElement(o.Fragment,null,t),panelContent:o.createElement("p",null,e.aug.info)})}},,,,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StdButtonPurchased=void 0;const o=i(n(0));t.StdButtonPurchased=class extends o.Component{constructor(e){super(e),this.hasTooltip=this.hasTooltip.bind(this),this.tooltip=this.tooltip.bind(this)}hasTooltip(){return null!=this.props.tooltip&&""!==this.props.tooltip}tooltip(){return this.props.tooltip?this.props.tooltip:""}render(){let e="std-button-bought";this.hasTooltip()&&(e+=" tooltip");let t={__html:""};return this.hasTooltip()&&(t={__html:this.tooltip()}),o.createElement("button",{className:e,onClick:this.props.onClick,style:this.props.style},this.props.text,this.hasTooltip()&&o.createElement("span",{className:"tooltiptext",dangerouslySetInnerHTML:t}))}}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isValidIPAddress=void 0,t.isValidIPAddress=function(e){const t="(25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)",n=`^${t}.${t}.${t}.${t}$`;return new RegExp(n).test(e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Crime=void 0;const r=n(11);t.Crime=class{constructor(e="",t="",n=0,r=0,a=0,i=0,o={}){this.difficulty=0,this.karma=0,this.kills=0,this.money=0,this.name="",this.time=0,this.type="",this.hacking_success_weight=0,this.strength_success_weight=0,this.defense_success_weight=0,this.dexterity_success_weight=0,this.agility_success_weight=0,this.charisma_success_weight=0,this.hacking_exp=0,this.strength_exp=0,this.defense_exp=0,this.dexterity_exp=0,this.agility_exp=0,this.charisma_exp=0,this.intelligence_exp=0,this.name=e,this.type=t,this.time=n,this.money=r,this.difficulty=a,this.karma=i,this.hacking_success_weight=o.hacking_success_weight?o.hacking_success_weight:0,this.strength_success_weight=o.strength_success_weight?o.strength_success_weight:0,this.defense_success_weight=o.defense_success_weight?o.defense_success_weight:0,this.dexterity_success_weight=o.dexterity_success_weight?o.dexterity_success_weight:0,this.agility_success_weight=o.agility_success_weight?o.agility_success_weight:0,this.charisma_success_weight=o.charisma_success_weight?o.charisma_success_weight:0,this.hacking_exp=o.hacking_exp?o.hacking_exp:0,this.strength_exp=o.strength_exp?o.strength_exp:0,this.defense_exp=o.defense_exp?o.defense_exp:0,this.dexterity_exp=o.dexterity_exp?o.dexterity_exp:0,this.agility_exp=o.agility_exp?o.agility_exp:0,this.charisma_exp=o.charisma_exp?o.charisma_exp:0,this.intelligence_exp=o.intelligence_exp?o.intelligence_exp:0,this.kills=o.kills?o.kills:0}commit(e,t=1,n=null){return t<=0&&(t=1),e.startCrime(this.type,this.hacking_exp/t,this.strength_exp/t,this.defense_exp/t,this.dexterity_exp/t,this.agility_exp/t,this.charisma_exp/t,this.money/t,this.time,n),this.time}successRate(e){let t=this.hacking_success_weight*e.hacking_skill+this.strength_success_weight*e.strength+this.defense_success_weight*e.defense+this.dexterity_success_weight*e.dexterity+this.agility_success_weight*e.agility+this.charisma_success_weight*e.charisma+r.CONSTANTS.IntelligenceCrimeWeight*e.intelligence;return t/=r.CONSTANTS.MaxSkillLevel,t/=this.difficulty,t*=e.crime_success_mult,t*=e.getIntelligenceBonus(1),Math.min(t,1)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Person=t.createTaskTracker=void 0;const r=n(25),a=n(39),i=n(11),o=n(136),s=n(413);t.createTaskTracker=function(){return{hack:0,str:0,def:0,dex:0,agi:0,cha:0,money:0}};t.Person=class{constructor(){this.hacking_skill=1,this.strength=1,this.defense=1,this.dexterity=1,this.agility=1,this.charisma=1,this.intelligence=1,this.hp=10,this.max_hp=10,this.hacking_exp=0,this.strength_exp=0,this.defense_exp=0,this.dexterity_exp=0,this.agility_exp=0,this.charisma_exp=0,this.intelligence_exp=0,this.hacking_mult=1,this.strength_mult=1,this.defense_mult=1,this.dexterity_mult=1,this.agility_mult=1,this.charisma_mult=1,this.hacking_exp_mult=1,this.strength_exp_mult=1,this.defense_exp_mult=1,this.dexterity_exp_mult=1,this.agility_exp_mult=1,this.charisma_exp_mult=1,this.hacking_chance_mult=1,this.hacking_speed_mult=1,this.hacking_money_mult=1,this.hacking_grow_mult=1,this.company_rep_mult=1,this.faction_rep_mult=1,this.crime_money_mult=1,this.crime_success_mult=1,this.work_money_mult=1,this.hacknet_node_money_mult=1,this.hacknet_node_purchase_cost_mult=1,this.hacknet_node_ram_cost_mult=1,this.hacknet_node_core_cost_mult=1,this.hacknet_node_level_cost_mult=1,this.bladeburner_max_stamina_mult=1,this.bladeburner_stamina_gain_mult=1,this.bladeburner_analysis_mult=1,this.bladeburner_success_chance_mult=1,this.augmentations=[],this.queuedAugmentations=[],this.city=a.CityName.Sector12}applyAugmentation(e){for(const t in e.mults)null==this[t]?console.warn(`Augmentation has unrecognized multiplier property: ${t}`):this[t]*=e.mults[t]}calculateStat(e,t=1){return o.calculateSkill(e,t)}getFactionFieldWorkRepGain(){return.9*(this.hacking_skill/i.CONSTANTS.MaxSkillLevel+this.strength/i.CONSTANTS.MaxSkillLevel+this.defense/i.CONSTANTS.MaxSkillLevel+this.dexterity/i.CONSTANTS.MaxSkillLevel+this.agility/i.CONSTANTS.MaxSkillLevel+this.charisma/i.CONSTANTS.MaxSkillLevel)/5.5*this.faction_rep_mult}getFactionHackingWorkRepGain(){return this.hacking_skill/i.CONSTANTS.MaxSkillLevel*this.faction_rep_mult}getFactionSecurityWorkRepGain(){return.9*(this.hacking_skill/i.CONSTANTS.MaxSkillLevel+this.strength/i.CONSTANTS.MaxSkillLevel+this.defense/i.CONSTANTS.MaxSkillLevel+this.dexterity/i.CONSTANTS.MaxSkillLevel+this.agility/i.CONSTANTS.MaxSkillLevel)/4.5*this.faction_rep_mult}resetMultipliers(){this.hacking_mult=1,this.strength_mult=1,this.defense_mult=1,this.dexterity_mult=1,this.agility_mult=1,this.charisma_mult=1,this.hacking_exp_mult=1,this.strength_exp_mult=1,this.defense_exp_mult=1,this.dexterity_exp_mult=1,this.agility_exp_mult=1,this.charisma_exp_mult=1,this.company_rep_mult=1,this.faction_rep_mult=1,this.crime_money_mult=1,this.crime_success_mult=1,this.work_money_mult=1}updateStatLevels(){this.hacking_skill=Math.max(1,Math.floor(this.calculateStat(this.hacking_exp,this.hacking_mult*r.BitNodeMultipliers.HackingLevelMultiplier))),this.strength=Math.max(1,Math.floor(this.calculateStat(this.strength_exp,this.strength_mult*r.BitNodeMultipliers.StrengthLevelMultiplier))),this.defense=Math.max(1,Math.floor(this.calculateStat(this.defense_exp,this.defense_mult*r.BitNodeMultipliers.DefenseLevelMultiplier))),this.dexterity=Math.max(1,Math.floor(this.calculateStat(this.dexterity_exp,this.dexterity_mult*r.BitNodeMultipliers.DexterityLevelMultiplier))),this.agility=Math.max(1,Math.floor(this.calculateStat(this.agility_exp,this.agility_mult*r.BitNodeMultipliers.AgilityLevelMultiplier))),this.charisma=Math.max(1,Math.floor(this.calculateStat(this.charisma_exp,this.charisma_mult*r.BitNodeMultipliers.CharismaLevelMultiplier)));const e=this.hp/this.max_hp;this.max_hp=Math.floor(10+this.defense/10),this.hp=Math.round(this.max_hp*e)}getIntelligenceBonus(e){return s.calculateIntelligenceBonus(this.intelligence,e)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createSleevePurchasesFromCovenantPopup=t.PopupId=t.BaseCostPerSleeve=t.MaxSleevesFromCovenant=void 0;const r=n(1186),a=n(416);t.MaxSleevesFromCovenant=5,t.BaseCostPerSleeve=1e13,t.PopupId="covenant-sleeve-purchases-popup",t.createSleevePurchasesFromCovenantPopup=function(e){const n=a.removePopup.bind(null,t.PopupId);a.createPopup(t.PopupId,r.CovenantPurchasesRoot,{p:e,closeFn:n})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Favor=void 0;const o=i(n(0)),s=n(3);t.Favor=function(e){return o.createElement("span",{className:"light-yellow samefont"},"number"==typeof e?s.numeralWrapper.formatFavor(e):e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.FactionInfos=t.FactionInfo=void 0;class r{constructor(e,t,n,r,a,i){this.infoText=e,this.enemies=t,this.offerHackingMission=n,this.offerHackingWork=r,this.offerFieldWork=a,this.offerSecurityWork=i,this.augmentationPriceMult=1,this.augmentationRepRequirementMult=1}offersWork(){return this.offerFieldWork||this.offerHackingMission||this.offerHackingWork||this.offerSecurityWork}}t.FactionInfo=r,t.FactionInfos={Illuminati:new r("Humanity never changes. No matter how civilized society becomes, it will eventually fall back into chaos. And from this chaos, we are the invisible hand that guides them to order. ",[],!0,!0,!0,!1),Daedalus:new r("Yesterday we obeyed kings and bent our necks to emperors. Today we kneel only to truth.",[],!0,!0,!0,!1),"The Covenant":new r("Surrender yourself. Give up your empty individuality to become part of something great, something eternal. Become a slave. Submit your mind, body, and soul. Only then can you set yourself free.

Only then can you discover immortality.",[],!0,!0,!0,!1),ECorp:new r("ECorp's mission is simple: to connect the world of today with the technology of tomorrow. With our wide range of Internet-related software and commercial hardware, ECorp makes the world's information universally accessible.",[],!0,!0,!0,!0),MegaCorp:new r("MegaCorp does what no other dares to do. We imagine. We create. We invent. We create what others have never even dreamed of. Our work fills the world's needs for food, water, power, and transporation on an unprecendented scale, in ways that no other company can.

In our labs and factories and on the ground with customers, MegaCorp is ushering in a new era for the world.",[],!0,!0,!0,!0),"Bachman & Associates":new r("Where Law and Business meet - thats where we are.

Legal Insight - Business Instinct - Innovative Experience.",[],!0,!0,!0,!0),"Blade Industries":new r("Augmentation is Salvation.",[],!0,!0,!0,!0),NWO:new r("Humans don't truly desire freedom. They want to be observed, understood, and judged. They want to be given purpose and direction in life. That is why they created God. And that is why they created civilization - not because of willingness, but because of a need to be incorporated into higher orders of structure and meaning.",[],!0,!0,!0,!0),"Clarke Incorporated":new r("The Power of the Genome - Unlocked.",[],!0,!0,!0,!0),"OmniTek Incorporated":new r("Simply put, our mission is to design and build robots that make a difference.",[],!0,!0,!0,!0),"Four Sigma":new r("The scientific method is the best way to approach investing. Big strategies backed up with big data. Driven by deep learning and innovative ideas. And improved by iteration. That's Four Sigma.",[],!0,!0,!0,!0),"KuaiGong International":new r("Dream big. Work hard. Make history.",[],!0,!0,!0,!0),"Fulcrum Secret Technologies":new r("The human organism has an innate desire to worship. That is why they created gods. If there were no gods, it would be necessary to create them. And now we can.",[],!0,!0,!1,!0),BitRunners:new r("Our entire lives are controlled by bits. All of our actions, our thoughts, our personal information. It's all transformed into bits, stored in bits, communicated through bits. It’s impossible for any person to move, to live, to operate at any level without the use of bits. And when a person moves, lives, and operates, they leave behind their bits, mere traces of seemingly meaningless fragments of information. But these bits can be reconstructed. Transformed. Used.

Those who run the bits, run the world.",[],!0,!0,!1,!1),"The Black Hand":new r("The world, so afraid of strong government, now has no government. Only power - Digital power. Financial power. Technological power. And those at the top rule with an invisible hand. They built a society where the rich get richer, and everyone else suffers.

So much pain. So many lives. Their darkness must end.",[],!0,!0,!0,!1),NiteSec:new r(" __..__
_.nITESECNIt.
.-'NITESECNITESEc.
.' NITESECNITESECn
/ NITESECNITESEC;
: :NITESECNITESEC;
; $ NITESECNITESECN
: _, ,N'ITESECNITESEC
: .+^^`, : `NITESECNIT
) /), `-,-=,NITESECNI
/ ^ ,-;|NITESECN;
/ _.' '-';NITESECN
( , ,-''`^NITE'
)` :`. .'
)-- ; `- /
' _.-' :
( _.-' .
------.
.
_.nIt
_.nITESECNi
nITESECNIT^'
NITE^' ___
/ .gP''''Tp.
: d' . `b
; d' o `b ;
/ d; `b|
/, $; @ `:
/' $$ ;
.' $$b o |
.' d$$$; :
/ .d$$$$; , ;
d .dNITESEC $ |
:bp.__.gNITESEC$$ :$ ;
NITESECNITESECNIT $$b :
",[],!0,!0,!1,!1),Aevum:new r("The Silicon City.",["Chongqing","New Tokyo","Ishima","Volhaven"],!0,!0,!0,!0),Chongqing:new r("Serve the People.",["Sector-12","Aevum","Volhaven"],!0,!0,!0,!0),Ishima:new r("The East Asian Order of the Future.",["Sector-12","Aevum","Volhaven"],!0,!0,!0,!0),"New Tokyo":new r("Asia's World City.",["Sector-12","Aevum","Volhaven"],!0,!0,!0,!0),"Sector-12":new r("The City of the Future.",["Chongqing","New Tokyo","Ishima","Volhaven"],!0,!0,!0,!0),Volhaven:new r("Benefit, Honor, and Glory.",["Chongqing","Sector-12","New Tokyo","Aevum","Ishima"],!0,!0,!0,!0),"Speakers for the Dead":new r("It is better to reign in Hell than to serve in Heaven.",[],!0,!0,!0,!0),"The Dark Army":new r("The World doesn't care about right or wrong. It only cares about power.",[],!0,!0,!0,!1),"The Syndicate":new r("Honor holds you back.",[],!0,!0,!0,!0),Silhouette:new r("Corporations have filled the void of power left behind by the collapse of Western government. The issue is they've become so big that you don't know who they're working for. And if you're employed at one of these corporations, you don't even know who you're working for.

That's terror. Terror, fear, and corruption. All born into the system, all propagated by the system.",[],!0,!0,!0,!1),Tetrads:new r("Following the mandate of Heaven and carrying out the way.",[],!1,!1,!0,!0),"Slum Snakes":new r("Slum Snakes rule!",[],!1,!1,!0,!0),Netburners:new r("~~//*>H4CK||3T 8URN3R5**>?>\\~~",[],!0,!0,!1,!1),"Tian Di Hui":new r("Obey Heaven and work righteously.",[],!0,!0,!1,!0),CyberSec:new r("The Internet is the first thing that was built that we don't fully understand, the largest experiment in anarchy that we have ever had. And as the world becomes increasingly dominated by it, society approaches the brink of total chaos. We serve only to protect society, to protect humanity, to protect the world from imminent collapse.",[],!0,!0,!1,!1),Bladeburners:new r("It's too bad they won't live. But then again, who does?

Note that for this faction, reputation can only be gained through Bladeburner actions. Completing Bladeburner contracts/operations will increase your reputation.",[],!1,!1,!1,!1)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.BaseServer=void 0;const r=n(104),a=n(211),i=n(103),o=n(155),s=n(76),l=n(406),c=n(204);t.BaseServer=class{constructor(e={hostname:"",ip:l.createRandomIp()}){this.contracts=[],this.cpuCores=1,this.ftpPortOpen=!1,this.hasAdminRights=!1,this.hostname="",this.httpPortOpen=!1,this.ip="",this.isConnectedTo=!1,this.maxRam=0,this.messages=[],this.organizationName="",this.programs=[],this.ramUsed=0,this.runningScripts=[],this.scripts=[],this.serversOnNetwork=[],this.smtpPortOpen=!1,this.sqlPortOpen=!1,this.sshPortOpen=!1,this.textFiles=[],this.ip=e.ip?e.ip:l.createRandomIp(),this.hostname=e.hostname,this.organizationName=null!=e.organizationName?e.organizationName:"",this.isConnectedTo=null!=e.isConnectedTo&&e.isConnectedTo,this.hasAdminRights=null!=e.adminRights&&e.adminRights}addContract(e){this.contracts.push(e)}getContract(e){for(const t of this.contracts)if(t.fn===e)return t;return null}getRunningScript(e,t){for(const n of this.runningScripts)if(n.filename===e&&c.compareArrays(n.args,t))return n;return null}getScript(e){for(let t=0;tt.fn!==e.fn):this.contracts=this.contracts.filter(t=>t.fn!==e)}removeFile(e){if(e.endsWith(".exe")||null!=e.match(/^.+\.exe-\d+(?:\.\d*)?%-INC$/)){for(let t=0;t0?"list-item":"none",this.classList.toggle("opened");const c=[t,n,o,s,l],u=[r.MainMenuLinks.Stats,r.MainMenuLinks.Factions,r.MainMenuLinks.Augmentations,r.MainMenuLinks.HacknetNodes,r.MainMenuLinks.Sleeves];t.style.maxHeight?a(!1,c,u):a(!0,c,u)},t.MainMenuHeaders.World.onclick=function(){const t=i("city-tab"),n=i("travel-tab"),o=i("job-tab"),s=i("stock-market-tab"),l=i("bladeburner-tab"),c=i("corporation-tab"),u=i("gang-tab");o.style.display=""!==e.companyName?"list-item":"none",s.style.display=e.hasWseAccount?"list-item":"none",l.style.display=e.inBladeburner()?"list-item":"none",c.style.display=e.hasCorporation()?"list-item":"none",u.style.display=e.inGang()?"list-item":"none",this.classList.toggle("opened");const m=[t,n,o,s,l,c,u],p=[r.MainMenuLinks.City,r.MainMenuLinks.Travel,r.MainMenuLinks.Job,r.MainMenuLinks.StockMarket,r.MainMenuLinks.Bladeburner,r.MainMenuLinks.Corporation,r.MainMenuLinks.Gang];t.style.maxHeight?a(!1,m,p):a(!0,m,p)},t.MainMenuHeaders.Help.onclick=function(){const e=i("milestones-tab"),t=i("tutorial-tab"),o=i("options-tab");this.classList.toggle("opened");const s=[e,t,o],l=[r.MainMenuLinks.Milestones,r.MainMenuLinks.Tutorial,r.MainMenuLinks.Options];n&&(s.push(i("dev-tab")),l.push(i("dev-menu-link"))),t.style.maxHeight?a(!1,s,l):a(!0,s,l)},!0}catch(e){return console.error(`Failed to initialize Main Menu Headers: ${e}`),!1}}},function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r=n(17),a=n(18),i=n(3);function o(){function e(e){0===a.Settings.AutosaveInterval?e.innerHTML="disabled":e.innerHTML=`every ${a.Settings.AutosaveInterval}s`}const t=document.getElementById("settingsNSExecTimeRangeValLabel"),n=document.getElementById("settingsNSLogRangeValLabel"),o=document.getElementById("settingsNSPortRangeValLabel"),s=document.getElementById("settingsSuppressMessages"),l=document.getElementById("settingsSuppressFactionInvites"),c=document.getElementById("settingsSuppressTravelConfirmation"),u=document.getElementById("settingsSuppressBuyAugmentationConfirmation"),m=document.getElementById("settingsSuppressHospitalizationPopup"),p=document.getElementById("settingsSuppressBladeburnerPopup"),h=document.getElementById("settingsAutosaveIntervalValLabel"),d=document.getElementById("settingsDisableHotkeys"),_=document.getElementById("settingsDisableASCIIArt"),g=document.getElementById("settingsDisableTextEffects"),y=document.getElementById("settingsLocale");t.innerHTML=a.Settings.CodeInstructionRunTime+"ms",n.innerHTML=a.Settings.MaxLogCapacity,o.innerHTML=a.Settings.MaxPortCapacity,s.checked=a.Settings.SuppressMessages,l.checked=a.Settings.SuppressFactionInvites,c.checked=a.Settings.SuppressTravelConfirmation,u.checked=a.Settings.SuppressBuyAugmentationConfirmation,m.checked=a.Settings.SuppressHospitalizationPopup,p.checked=a.Settings.SuppressBladeburnerPopup,e(h),d.checked=a.Settings.DisableHotkeys,_.checked=a.Settings.CityListView,g.checked=a.Settings.DisableTextEffects,y.value=a.Settings.Locale,i.numeralWrapper.updateLocale(a.Settings.Locale);const f=document.getElementById("settingsNSExecTimeRangeVal"),b=document.getElementById("settingsNSLogRangeVal"),E=document.getElementById("settingsNSPortRangeVal"),v=document.getElementById("settingsAutosaveIntervalVal");f.value=a.Settings.CodeInstructionRunTime,b.value=a.Settings.MaxLogCapacity,E.value=a.Settings.MaxPortCapacity,v.value=a.Settings.AutosaveInterval,f.oninput=function(){t.innerHTML=this.value+"ms",a.Settings.CodeInstructionRunTime=this.value},b.oninput=function(){n.innerHTML=this.value,a.Settings.MaxLogCapacity=this.value},E.oninput=function(){o.innerHTML=this.value,a.Settings.MaxPortCapacity=this.value},v.oninput=function(){a.Settings.AutosaveInterval=Number(this.value),e(h),0===Number(this.value)?r.Engine.Counters.autoSaveCounter=1/0:r.Engine.Counters.autoSaveCounter=5*Number(this.value)},s.onclick=function(){a.Settings.SuppressMessages=this.checked},l.onclick=function(){a.Settings.SuppressFactionInvites=this.checked},c.onclick=function(){a.Settings.SuppressTravelConfirmation=this.checked},u.onclick=function(){a.Settings.SuppressBuyAugmentationConfirmation=this.checked},m.onclick=function(){a.Settings.SuppressHospitalizationPopup=this.checked},p.onclick=function(){a.Settings.SuppressBladeburnerPopup=this.checked},d.onclick=function(){a.Settings.DisableHotkeys=this.checked},_.onclick=function(){a.Settings.DisableASCIIArt=this.checked},g.onclick=function(){a.Settings.DisableTextEffects=this.checked},y.onchange=function(){if(!i.numeralWrapper.updateLocale(y.value)){console.warn(`Invalid locale for numeral: ${y.value}`);let e="en";return a.Settings.Locale=e,void(y.value=e)}a.Settings.Locale=y.value}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CharacterInfo=void 0;const o=i(n(0)),s=n(3),l=n(141),c=n(12),u=n(13),m=n(25),p=n(48),h=n(152),d=n(37),_=n(200),g=n(31);t.CharacterInfo=function(e){function t(e){const t=[["Total:",g.Money(e.total)]];return e.bladeburner&&t.push(["Bladeburner:",g.Money(e.bladeburner)]),e.codingcontract&&t.push(["Coding Contracts:",g.Money(e.codingcontract)]),e.work&&t.push(["Company Work:",g.Money(e.work)]),e.class&&t.push(["Class:",g.Money(e.class)]),e.corporation&&t.push(["Corporation:",g.Money(e.corporation)]),e.crime&&t.push(["Crimes:",g.Money(e.crime)]),e.gang&&t.push(["Gang:",g.Money(e.gang)]),e.hacking&&t.push(["Hacking:",g.Money(e.hacking)]),e.hacknetnode&&t.push(["Hacknet Nodes:",g.Money(e.hacknetnode)]),e.hospitalization&&t.push(["Hospitalization:",g.Money(e.hospitalization)]),e.infiltration&&t.push(["Infiltration:",g.Money(e.infiltration)]),e.stock&&t.push(["Stock Market:",g.Money(e.stock)]),e.casino&&t.push(["Casino:",g.Money(e.casino)]),e.sleeves&&t.push(["Sleeves:",g.Money(e.sleeves)]),_.StatsTable(t,"")}function n(e){return o.createElement(o.Fragment,null,o.createElement("table",null,o.createElement("tbody",null,e.rows.map(e=>o.createElement("tr",{key:e[0]},o.createElement("td",{key:"0"},`${e[0]} multiplier:`),o.createElement("td",{key:"1",style:{textAlign:"right",paddingLeft:"5px"}},s.numeralWrapper.formatPercentage(e[1])),function(e){return p.SourceFileFlags[5]>0&&e.length>2&&e[1]!=e[2]?o.createElement("td",{key:"2",style:{textAlign:"right"}}," (",s.numeralWrapper.formatPercentage(e[2]),")"):o.createElement(o.Fragment,null)}(e))))))}const r=[["Time played since last Augmentation:",u.convertTimeMsToTimeElapsedString(e.playtimeSinceLastAug)]];return e.sourceFiles.length>0&&r.push(["Time played since last Bitnode destroyed:",u.convertTimeMsToTimeElapsedString(e.playtimeSinceLastBitnode)]),r.push(["Total Time played:",u.convertTimeMsToTimeElapsedString(e.totalPlaytime)]),o.createElement("pre",null,o.createElement("b",null,"General"),o.createElement("br",null),o.createElement("br",null),o.createElement("span",null,"Current City: ",e.city),o.createElement("br",null),o.createElement(function(){return e.companyName?o.createElement(o.Fragment,null,o.createElement("span",null,"Employer at which you last worked: ",e.companyName),o.createElement("br",null)):o.createElement(o.Fragment,null)},null),o.createElement(function(){return""!==e.companyName?o.createElement(o.Fragment,null,o.createElement("span",null,"Job you last worked: ",e.jobs[e.companyName]),o.createElement("br",null)):o.createElement(o.Fragment,null)},null),o.createElement(function(){return e.jobs&&0!==Object.keys(e.jobs).length?o.createElement(o.Fragment,null,o.createElement("span",null,"All Employers:"),o.createElement("br",null),o.createElement("ul",null,Object.keys(e.jobs).map(e=>o.createElement("li",{key:e}," * ",e))),o.createElement("br",null),o.createElement("br",null)):o.createElement(o.Fragment,null)},null),o.createElement("span",null,"Money: ",g.Money(e.money.toNumber())),o.createElement("button",{className:"popup-box-button",style:{display:"inline-block",float:"none"},onClick:function(){let n=o.createElement(o.Fragment,null,o.createElement("u",null,"Money earned since you last installed Augmentations:"),o.createElement("br",null),t(e.moneySourceA));0!==e.sourceFiles.length&&(n=o.createElement(o.Fragment,null,n,o.createElement("br",null),o.createElement("br",null),o.createElement("u",null,"Money earned in this BitNode:"),o.createElement("br",null),t(e.moneySourceB))),c.dialogBoxCreate(n,!1)}},"Money Statistics & Breakdown"),o.createElement("br",null),o.createElement("br",null),o.createElement("b",null,"Stats"),o.createElement("table",null,o.createElement("tbody",null,o.createElement("tr",{key:"0"},o.createElement("td",{key:"0"},"Hacking:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.hacking_skill)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.hacking_exp)," exp)")),o.createElement("tr",{key:"1"},o.createElement("td",{key:"0"},"Strength:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.strength)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.strength_exp)," exp)")),o.createElement("tr",{key:"2"},o.createElement("td",{key:"0"},"Defense:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.defense)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.defense_exp)," exp)")),o.createElement("tr",{key:"3"},o.createElement("td",{key:"0"},"Dexterity:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.dexterity)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.dexterity_exp)," exp)")),o.createElement("tr",{key:"4"},o.createElement("td",{key:"0"},"Agility:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.agility)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.agility_exp)," exp)")),o.createElement("tr",{key:"5"},o.createElement("td",{key:"0"},"Charisma:"),o.createElement("td",{key:"1",style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.charisma)),o.createElement("td",{key:"2",style:{textAlign:"right"}},"(",s.numeralWrapper.formatExp(e.charisma_exp)," exp)")),o.createElement(function(){return e.intelligence>0&&(5===e.bitNodeN||p.SourceFileFlags[5]>0)?o.createElement("tr",{key:"5"},o.createElement("td",null,"Intelligence:"),o.createElement("td",{style:{textAlign:"right"}},s.numeralWrapper.formatSkill(e.intelligence))):o.createElement(o.Fragment,null)},null))),o.createElement("br",null),o.createElement(n,{rows:[["Hacking Chance",e.hacking_chance_mult],["Hacking Speed",e.hacking_speed_mult],["Hacking Money",e.hacking_money_mult,e.hacking_money_mult*m.BitNodeMultipliers.ScriptHackMoney],["Hacking Growth",e.hacking_grow_mult,e.hacking_grow_mult*m.BitNodeMultipliers.ServerGrowthRate]]}),o.createElement("br",null),o.createElement(n,{rows:[["Hacking Level",e.hacking_mult,e.hacking_mult*m.BitNodeMultipliers.HackingLevelMultiplier],["Hacking Experience",e.hacking_exp_mult,e.hacking_exp_mult*m.BitNodeMultipliers.HackExpGain]]}),o.createElement("br",null),o.createElement(n,{rows:[["Strength Level",e.strength_mult,e.strength_mult*m.BitNodeMultipliers.StrengthLevelMultiplier],["Strength Experience",e.strength_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Defense Level",e.defense_mult,e.defense_mult*m.BitNodeMultipliers.DefenseLevelMultiplier],["Defense Experience",e.defense_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Dexterity Level",e.dexterity_mult,e.dexterity_mult*m.BitNodeMultipliers.DexterityLevelMultiplier],["Dexterity Experience",e.dexterity_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Agility Level",e.agility_mult,e.agility_mult*m.BitNodeMultipliers.AgilityLevelMultiplier],["Agility Experience",e.agility_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Charisma Level",e.charisma_mult,e.charisma_mult*m.BitNodeMultipliers.CharismaLevelMultiplier],["Charisma Experience",e.charisma_exp_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Hacknet Node production",e.hacknet_node_money_mult,e.hacknet_node_money_mult*m.BitNodeMultipliers.HacknetNodeMoney],["Hacknet Node purchase cost",e.hacknet_node_purchase_cost_mult],["Hacknet Node RAM upgrade cost",e.hacknet_node_ram_cost_mult],["Hacknet Node Core purchase cost",e.hacknet_node_core_cost_mult],["Hacknet Node level upgrade cost",e.hacknet_node_level_cost_mult]]}),o.createElement("br",null),o.createElement(n,{rows:[["Company reputation gain",e.company_rep_mult],["Faction reputation gain",e.faction_rep_mult,e.faction_rep_mult*m.BitNodeMultipliers.FactionWorkRepGain],["Salary",e.work_money_mult,e.work_money_mult*m.BitNodeMultipliers.CompanyWorkMoney]]}),o.createElement("br",null),o.createElement(n,{rows:[["Crime success",e.crime_success_mult],["Crime money",e.crime_money_mult,e.crime_money_mult*m.BitNodeMultipliers.CrimeMoney]]}),o.createElement("br",null),o.createElement(function(){return e.canAccessBladeburner()?o.createElement(o.Fragment,null,o.createElement(n,{rows:[["Bladeburner Success Chance",e.bladeburner_max_stamina_mult],["Bladeburner Max Stamina",e.bladeburner_stamina_gain_mult],["Bladeburner Stamina Gain",e.bladeburner_analysis_mult],["Bladeburner Field Analysis",e.bladeburner_success_chance_mult]]}),o.createElement("br",null)):o.createElement(o.Fragment,null)},null),o.createElement("br",null),o.createElement("b",null,"Misc."),o.createElement("br",null),o.createElement("br",null),o.createElement("span",null,`Servers owned: ${e.purchasedServers.length} / ${h.getPurchaseServerLimit()}`),o.createElement("br",null),o.createElement(function(){return 9===e.bitNodeN||p.SourceFileFlags[9]>0?o.createElement(o.Fragment,null,o.createElement("span",null,`Hacknet Servers owned: ${e.hacknetNodes.length} / ${d.HacknetServerConstants.MaxServers}`),o.createElement("br",null)):o.createElement(o.Fragment,null,o.createElement("span",null,`Hacknet Nodes owned: ${e.hacknetNodes.length}`),o.createElement("br",null))},null),o.createElement("span",null,`Augmentations installed: ${e.augmentations.length}`),o.createElement("br",null),o.createElement("br",null),_.StatsTable(r,null),o.createElement("br",null),o.createElement(function(){if(e.sourceFiles.length>0){const t="BitNode"+e.bitNodeN;return o.createElement(o.Fragment,null,o.createElement("span",null,"Current BitNode: ",e.bitNodeN," (",l.BitNodes[t].name,")"),o.createElement("br",null),o.createElement("br",null),o.createElement("div",{style:{width:"60%",fontSize:"13px",marginLeft:"4%"}},l.BitNodes[t].info.split("
").map((e,t)=>o.createElement("div",{key:t},o.createElement("span",{style:{whiteSpace:"pre-wrap",overflowWrap:"break-word"}},e),o.createElement("br",null)))))}return o.createElement(o.Fragment,null)},null))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.displayMilestonesContent=void 0;const o=n(16),s=n(869),l=n(1),c=i(n(0)),u=i(n(26));let m=null;!function(){document.addEventListener("DOMContentLoaded",function e(){m=document.getElementById("milestones-container"),document.removeEventListener("DOMContentLoaded",e)})}(),t.displayMilestonesContent=function(){o.routing.isOn(o.Page.Milestones)&&m instanceof HTMLElement&&u.render(c.createElement(s.Root,{player:l.Player}),m)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.displayInfiltrationContent=void 0;const o=n(16),s=n(911),l=i(n(0)),c=i(n(26));let u=document.createElement("div");!function(){document.addEventListener("DOMContentLoaded",function e(){const t=document.getElementById("infiltration-container");if(null===t)throw new Error("huh?");u=t,document.removeEventListener("DOMContentLoaded",e)})}(),t.displayInfiltrationContent=function(e,t,n,r,a){if(!o.routing.isOn(o.Page.Infiltration))return;const i=function(e,t){const n=e.strength+e.defense+e.dexterity+e.agility+e.charisma,r=t-Math.pow(n,.9)/250-e.intelligence/1600;return r<0?0:r>3?3:r}(t,r);c.render(l.createElement(s.Root,{Engine:e,Player:t,Location:n,StartingDifficulty:r,Difficulty:i,MaxLevel:a}),u)}},function(e,t,n){"use strict";n.d(t,"a",function(){return c});var r=n(0),a=n.n(r),i=n(1),o=n(3),s=n(68);const l=a.a.Component;class c extends l{render(){const e=a.a.createElement("tr",{id:"character-int-wrapper"},a.a.createElement("td",{className:"character-int-cell"},"Int: "),a.a.createElement("td",{id:"character-int-text",className:"character-int-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.intelligence))),t=a.a.createElement(a.a.Fragment,null,a.a.createElement("tr",{className:"character-divider"},a.a.createElement("td",{colSpan:"2"},"Work progress:")),a.a.createElement("tr",null,a.a.createElement("td",{colSpan:"2"},"+",Object(s.Reputation)(i.Player.workRepGained)," rep")),a.a.createElement("tr",null,a.a.createElement("td",{colSpan:"2"},a.a.createElement("button",{onClick:()=>i.Player.startFocusing(),id:"character-overview-options-button",className:"character-overview-btn"},"Focus"))));return a.a.createElement(a.a.Fragment,null,a.a.createElement("table",null,a.a.createElement("tbody",null,a.a.createElement("tr",{id:"character-hp-wrapper"},a.a.createElement("td",{className:"character-hp-cell"},"HP:"),a.a.createElement("td",{id:"character-hp-text",className:"character-hp-cell character-stat-cell"},o.numeralWrapper.formatHp(i.Player.hp)+" / "+o.numeralWrapper.formatHp(i.Player.max_hp))),a.a.createElement("tr",{id:"character-money-wrapper"},a.a.createElement("td",{className:"character-money-cell"},"Money: "),a.a.createElement("td",{id:"character-money-text",className:"character-money-cell character-stat-cell"},o.numeralWrapper.formatMoney(i.Player.money.toNumber()))),a.a.createElement("tr",{id:"character-hack-wrapper"},a.a.createElement("td",{className:"character-hack-cell"},"Hack: "),a.a.createElement("td",{id:"character-hack-text",className:"character-hack-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.hacking_skill))),a.a.createElement("tr",{id:"character-str-wrapper",className:"character-divider"},a.a.createElement("td",{className:"character-combat-cell"},"Str: "),a.a.createElement("td",{id:"character-str-text",className:"character-combat-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.strength))),a.a.createElement("tr",{id:"character-def-wrapper"},a.a.createElement("td",{className:"character-combat-cell"},"Def: "),a.a.createElement("td",{id:"character-def-text",className:"character-combat-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.defense))),a.a.createElement("tr",{id:"character-dex-wrapper"},a.a.createElement("td",{className:"character-combat-cell"},"Dex: "),a.a.createElement("td",{id:"character-dex-text",className:"character-combat-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.dexterity))),a.a.createElement("tr",{id:"character-agi-wrapper"},a.a.createElement("td",{className:"character-combat-cell"},"Agi: "),a.a.createElement("td",{id:"character-agi-text",className:"character-combat-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.agility))),a.a.createElement("tr",{id:"character-cha-wrapper",className:"character-divider"},a.a.createElement("td",{className:"character-cha-cell"},"Cha: "),a.a.createElement("td",{id:"character-cha-text",className:"character-cha-cell character-stat-cell"},o.numeralWrapper.formatSkill(i.Player.charisma))),i.Player.intelligence>=1&&e,i.Player.isWorking&&!i.Player.focus&&t)))}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createHacknetServer=t.getUpgradeHomeRamCost=t.getHomeComputer=t.getCurrentServer=t.hasTorRouter=void 0;const r=n(11),a=n(25),i=n(90),o=n(27),s=n(47);t.hasTorRouter=function(){return s.SpecialServerIps.hasOwnProperty("Darkweb Server")},t.getCurrentServer=function(){return o.AllServers[this.currentServer]},t.getHomeComputer=function(){return o.AllServers[this.homeComputer]},t.getUpgradeHomeRamCost=function(){const e=this.getHomeComputer().maxRam,t=Math.log2(e),n=Math.pow(1.58,t);return e*r.CONSTANTS.BaseCostFor1GBOfRamHome*n*a.BitNodeMultipliers.HomeComputerRamCost},t.createHacknetServer=function(){const e=`hacknet-node-${this.hacknetNodes.length}`,t=new i.HacknetServer({adminRights:!0,hostname:e,ip:o.createUniqueRandomIp()});this.hacknetNodes.push(t.ip),o.AddToAllServers(t);const n=this.getHomeComputer();return n.serversOnNetwork.push(t.ip),t.serversOnNetwork.push(n.ip),t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.applyExploit=void 0;const r=n(1);t.applyExploit=function(){if(r.Player.exploits&&0===r.Player.exploits.length)return;const e=Math.pow(1.001,r.Player.exploits.length),t=Math.pow(.999,r.Player.exploits.length);r.Player.hacking_chance_mult*=e,r.Player.hacking_speed_mult*=e,r.Player.hacking_money_mult*=e,r.Player.hacking_grow_mult*=e,r.Player.hacking_mult*=e,r.Player.strength_mult*=e,r.Player.defense_mult*=e,r.Player.dexterity_mult*=e,r.Player.agility_mult*=e,r.Player.charisma_mult*=e,r.Player.hacking_exp_mult*=e,r.Player.strength_exp_mult*=e,r.Player.defense_exp_mult*=e,r.Player.dexterity_exp_mult*=e,r.Player.agility_exp_mult*=e,r.Player.charisma_exp_mult*=e,r.Player.company_rep_mult*=e,r.Player.faction_rep_mult*=e,r.Player.crime_money_mult*=e,r.Player.crime_success_mult*=e,r.Player.hacknet_node_money_mult*=e,r.Player.hacknet_node_purchase_cost_mult*=t,r.Player.hacknet_node_ram_cost_mult*=t,r.Player.hacknet_node_core_cost_mult*=t,r.Player.hacknet_node_level_cost_mult*=t,r.Player.work_money_mult*=e}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.applySourceFile=void 0;const r=n(239),a=n(1);t.applySourceFile=function(e){const t="SourceFile"+e.n,n=r.SourceFiles[t];if(null!=n){switch(e.n){case 1:{let t=0;for(let n=0;n=100?this.sleeves[e].synchronize(this):this.sleeves[e].shockRecovery(this));this.isWorking=!1,this.currentWorkFactionName="",this.currentWorkFactionDescription="",this.createProgramName="",this.className="",this.crimeType="",this.workHackExpGainRate=0,this.workStrExpGainRate=0,this.workDefExpGainRate=0,this.workDexExpGainRate=0,this.workAgiExpGainRate=0,this.workChaExpGainRate=0,this.workRepGainRate=0,this.workMoneyGainRate=0,this.workHackExpGained=0,this.workStrExpGained=0,this.workDefExpGained=0,this.workDexExpGained=0,this.workAgiExpGained=0,this.workChaExpGained=0,this.workRepGained=0,this.workMoneyGained=0,this.timeWorked=0,this.lastUpdate=(new Date).getTime(),this.playtimeSinceLastAug=0,this.scriptProdSinceLastAug=0,this.moneySourceA.reset(),this.hacknetNodes.length=0,this.hashManager.prestige(),this.updateSkillLevels(),this.hp=this.max_hp}function oe(){var e=this.getHomeComputer();this.currentServer=e.ip,this.homeComputer=e.ip,this.numPeopleKilled=0,this.karma=0,this.hacking_skill=1,this.strength=1,this.defense=1,this.dexterity=1,this.agility=1,this.charisma=1,this.hacking_exp=0,this.strength_exp=0,this.defense_exp=0,this.dexterity_exp=0,this.agility_exp=0,this.charisma_exp=0,this.money=new G.a(1e3),this.city=T.CityName.Sector12,this.location="",this.companyName="",this.jobs={},this.purchasedServers=[],this.factions=[],this.factionInvitations=[],this.queuedAugmentations=[],this.augmentations=[],this.resleeves=[],this.sleeves.length=F.SourceFileFlags[10]+this.sleevesFromCovenant;for(let e=0;e0?this.intelligence=Math.floor(this.calculateSkill(this.intelligence_exp)):this.intelligence=0;var e=this.hp/this.max_hp;this.max_hp=Math.floor(10+this.defense/10),this.hp=Math.round(this.max_hp*e)}function ue(){this.hacking_chance_mult=1,this.hacking_speed_mult=1,this.hacking_money_mult=1,this.hacking_grow_mult=1,this.hacking_mult=1,this.strength_mult=1,this.defense_mult=1,this.dexterity_mult=1,this.agility_mult=1,this.charisma_mult=1,this.hacking_exp_mult=1,this.strength_exp_mult=1,this.defense_exp_mult=1,this.dexterity_exp_mult=1,this.agility_exp_mult=1,this.charisma_exp_mult=1,this.company_rep_mult=1,this.faction_rep_mult=1,this.crime_money_mult=1,this.crime_success_mult=1,this.hacknet_node_money_mult=1,this.hacknet_node_purchase_cost_mult=1,this.hacknet_node_ram_cost_mult=1,this.hacknet_node_core_cost_mult=1,this.hacknet_node_level_cost_mult=1,this.work_money_mult=1,this.bladeburner_max_stamina_mult=1,this.bladeburner_stamina_gain_mult=1,this.bladeburner_analysis_mult=1,this.bladeburner_success_chance_mult=1}function me(e){const t=this.getHomeComputer();if(null==t)return!1;for(var n=0;n0||this.intelligence>0)&&(this.intelligence_exp+=e)}function Pe(e){const t=e.toLowerCase();return t.includes("hack")?this.hacking_skill:t.includes("str")?this.strength:t.includes("def")?this.defense:t.includes("dex")?this.dexterity:t.includes("agi")?this.agility:t.includes("cha")?this.charisma:t.includes("int")?this.intelligence:void 0}function Oe(e,t,n){e===this.workType&&t===this.companyName||e===this.workType&&t===this.currentWorkFactionName&&n===this.factionWorkType||(this.isWorking&&this.singularityStopWork(),this.workHackExpGainRate=0,this.workStrExpGainRate=0,this.workDefExpGainRate=0,this.workDexExpGainRate=0,this.workAgiExpGainRate=0,this.workChaExpGainRate=0,this.workRepGainRate=0,this.workMoneyGainRate=0,this.workMoneyLossRate=0,this.workHackExpGained=0,this.workStrExpGained=0,this.workDefExpGained=0,this.workDexExpGained=0,this.workAgiExpGained=0,this.workChaExpGained=0,this.workRepGained=0,this.workMoneyGained=0,this.timeWorked=0,this.timeWorkedCreateProgram=0,this.currentWorkFactionName="",this.currentWorkFactionDescription="",this.createProgramName="",this.className="",ne.a.unmountComponentAtNode(document.getElementById("work-in-progress-text")))}function Se(e=1){const t=this.focus?1:.8,n=t*this.workHackExpGainRate*e,r=t*this.workStrExpGainRate*e,a=t*this.workDefExpGainRate*e,i=t*this.workDexExpGainRate*e,o=t*this.workAgiExpGainRate*e,s=t*this.workChaExpGainRate*e,l=(this.workMoneyGainRate-this.workMoneyLossRate)*e;this.gainHackingExp(n),this.gainStrengthExp(r),this.gainDefenseExp(a),this.gainDexterityExp(i),this.gainAgilityExp(o),this.gainCharismaExp(s),this.gainMoney(l),this.className?this.recordMoneySource(l,"class"):this.recordMoneySource(l,"work"),this.workHackExpGained+=n,this.workStrExpGained+=r,this.workDefExpGained+=a,this.workDexExpGained+=i,this.workAgiExpGained+=o,this.workChaExpGained+=s,this.workRepGained+=t*this.workRepGainRate*e,this.workMoneyGained+=t*this.workMoneyGainRate*e,this.workMoneyGained-=t*this.workMoneyLossRate*e}function Te(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeCompany,e),this.isWorking=!0,this.focus=!0,this.companyName=e,this.workType=_.CONSTANTS.WorkTypeCompany,this.workHackExpGainRate=this.getWorkHackExpGain(),this.workStrExpGainRate=this.getWorkStrExpGain(),this.workDefExpGainRate=this.getWorkDefExpGain(),this.workDexExpGainRate=this.getWorkDexExpGain(),this.workAgiExpGainRate=this.getWorkAgiExpGain(),this.workChaExpGainRate=this.getWorkChaExpGain(),this.workRepGainRate=this.getWorkRepGain(),this.workMoneyGainRate=this.getWorkMoneyGain(),this.timeNeededToCompleteWork=_.CONSTANTS.MillisecondsPer8Hours;var t=Object(z.clearEventListeners)("work-in-progress-cancel-button");t.innerHTML="Cancel Work",t.addEventListener("click",()=>(this.finishWork(!0),!1));const n=Object(z.clearEventListeners)("work-in-progress-something-else-button");n.style.visibility="visible",n.innerHTML="Do something else simultaneously",n.addEventListener("click",()=>(this.stopFocusing(),!1)),b.Engine.loadWorkInProgressContent()}function Me(){const e=B.SpecialServerIps[this.companyName];if(e){const t=N.AllServers[e];if(t&&t.backdoorInstalled)return.75}return.5}function xe(e){var t=!1;if(this.timeWorked+b.Engine._idleSpeed*e>=_.CONSTANTS.MillisecondsPer8Hours&&(t=!0,e=Math.round((_.CONSTANTS.MillisecondsPer8Hours-this.timeWorked)/b.Engine._idleSpeed)),this.timeWorked+=b.Engine._idleSpeed*e,this.workRepGainRate=this.getWorkRepGain(),this.processWorkEarnings(e),t||this.timeWorked>=_.CONSTANTS.MillisecondsPer8Hours)return this.finishWork(!1);const n=u.Companies[this.companyName];let r="0";null!=n&&n instanceof c.Company?r=n.playerReputation:console.error(`Could not find Company: ${this.companyName}`),Object(U.influenceStockThroughCompanyWork)(n,this.workRepGainRate,e);const a=this.jobs[this.companyName],i=.5===this.cancelationPenalty()?"half":"three-quarters";var o=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You are currently working as a ",a," at ",this.companyName," (Current Company Reputation: ",Object(V.Reputation)(r),")",ee.a.createElement("br",null),ee.a.createElement("br",null),"You have been working for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"You have earned: ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained)," (",Object(X.MoneyRate)(this.workMoneyGainRate*re),") ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," (",Object(Q.ReputationRate)(this.workRepGainRate*re),") reputation for this company ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," (",`${K.numeralWrapper.formatExp(this.workHackExpGainRate*re)} / sec`,") hacking exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," (",`${K.numeralWrapper.formatExp(this.workStrExpGainRate*re)} / sec`,") strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," (",`${K.numeralWrapper.formatExp(this.workDefExpGainRate*re)} / sec`,") defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," (",`${K.numeralWrapper.formatExp(this.workDexExpGainRate*re)} / sec`,") dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," (",`${K.numeralWrapper.formatExp(this.workAgiExpGainRate*re)} / sec`,") agility exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," (",`${K.numeralWrapper.formatExp(this.workChaExpGainRate*re)} / sec`,") charisma exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You will automatically finish after working for 8 hours. You can cancel earlier if you wish, but you will only gain ",i," of the reputation you've earned so far."),o)}function we(e,t=!1){e&&(this.workRepGained*=this.cancelationPenalty()),u.Companies[this.companyName].playerReputation+=this.workRepGained,this.updateSkillLevels();let n=ee.a.createElement(ee.a.Fragment,null,"You earned a total of: ",ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," reputation for the company ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma exp",ee.a.createElement("br",null));if(n=e?ee.a.createElement(ee.a.Fragment,null,"You worked a short shift of ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)," ",ee.a.createElement("br",null),ee.a.createElement("br",null),"Since you cancelled your work early, you only gained half of the reputation you earned. ",ee.a.createElement("br",null),ee.a.createElement("br",null),n):ee.a.createElement(ee.a.Fragment,null,"You worked a full shift of 8 hours! ",ee.a.createElement("br",null),ee.a.createElement("br",null),n),t||Object($.dialogBoxCreate)(n),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadLocationContent(!1),t){var r="You worked a short shift of "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)+" and earned $"+K.numeralWrapper.formatMoney(this.workMoneyGained)+", "+K.numeralWrapper.formatReputation(this.workRepGained)+" reputation, "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hacking exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" strength exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" defense exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dexterity exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agility exp, and "+K.numeralWrapper.formatExp(this.workChaExpGained)+" charisma exp.";return this.resetWorkStatus(),r}this.resetWorkStatus()}function Ae(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeCompanyPartTime,e),this.isWorking=!0,this.focus=!0,this.companyName=e,this.workType=_.CONSTANTS.WorkTypeCompanyPartTime,this.workHackExpGainRate=this.getWorkHackExpGain(),this.workStrExpGainRate=this.getWorkStrExpGain(),this.workDefExpGainRate=this.getWorkDefExpGain(),this.workDexExpGainRate=this.getWorkDexExpGain(),this.workAgiExpGainRate=this.getWorkAgiExpGain(),this.workChaExpGainRate=this.getWorkChaExpGain(),this.workRepGainRate=this.getWorkRepGain(),this.workMoneyGainRate=this.getWorkMoneyGain(),this.timeNeededToCompleteWork=_.CONSTANTS.MillisecondsPer8Hours;var t=Object(z.clearEventListeners)("work-in-progress-cancel-button");t.innerHTML="Stop Working",t.addEventListener("click",()=>(this.finishWorkPartTime(),!1)),b.Engine.loadWorkInProgressContent()}function Re(e){var t=!1;if(this.timeWorked+b.Engine._idleSpeed*e>=_.CONSTANTS.MillisecondsPer8Hours&&(t=!0,e=Math.round((_.CONSTANTS.MillisecondsPer8Hours-this.timeWorked)/b.Engine._idleSpeed)),this.timeWorked+=b.Engine._idleSpeed*e,this.workRepGainRate=this.getWorkRepGain(),this.processWorkEarnings(e),t||this.timeWorked>=_.CONSTANTS.MillisecondsPer8Hours)return this.finishWorkPartTime();var n=u.Companies[this.companyName],r="0";null!=n&&n instanceof c.Company?r=n.playerReputation:console.error(`Could not find Company: ${this.companyName}`);const a=this.jobs[this.companyName],i=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You are currently working as a ",a," at ",this.companyName," (Current Company Reputation: ",Object(V.Reputation)(r),")",ee.a.createElement("br",null),ee.a.createElement("br",null),"You have been working for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"You have earned: ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained)," (",Object(X.MoneyRate)(this.workMoneyGainRate*re),") ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," (",Object(V.Reputation)(`${K.numeralWrapper.formatExp(this.workRepGainRate*re)} / sec`),") reputation for this company ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," (",`${K.numeralWrapper.formatExp(this.workHackExpGainRate*re)} / sec`,") hacking exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," (",`${K.numeralWrapper.formatExp(this.workStrExpGainRate*re)} / sec`,") strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," (",`${K.numeralWrapper.formatExp(this.workDefExpGainRate*re)} / sec`,") defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," (",`${K.numeralWrapper.formatExp(this.workDexExpGainRate*re)} / sec`,") dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," (",`${K.numeralWrapper.formatExp(this.workAgiExpGainRate*re)} / sec`,") agility exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," (",`${K.numeralWrapper.formatExp(this.workChaExpGainRate*re)} / sec`,") charisma exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You will automatically finish after working for 8 hours. You can cancel earlier if you wish, and there will be no penalty because this is a part-time job."),i)}function Ne(e=!1){u.Companies[this.companyName].playerReputation+=this.workRepGained,this.updateSkillLevels();const t=ee.a.createElement(ee.a.Fragment,null,"You worked for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"You earned a total of: ",ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," reputation for the company ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma exp",ee.a.createElement("br",null));if(e||Object($.dialogBoxCreate)(t),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadLocationContent(!1),e){var n="You worked for "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)+" and earned a total of $"+K.numeralWrapper.formatMoney(this.workMoneyGained)+", "+K.numeralWrapper.formatReputation(this.workRepGained)+" reputation, "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hacking exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" strength exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" defense exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dexterity exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agility exp, and "+K.numeralWrapper.formatExp(this.workChaExpGained)+" charisma exp";return this.resetWorkStatus(),n}this.resetWorkStatus()}function De(){document.getElementById("mainmenu-container").style.visibility="hidden",this.focus=!0,b.Engine.loadWorkInProgressContent()}function Ie(){document.getElementById("mainmenu-container").style.visibility="visible",this.focus=!1,b.Engine.loadTerminalContent()}function Be(e){var t=1+e.favor/100;isNaN(t)&&(t=1),this.workRepGainRate*=t,this.workRepGainRate*=s.BitNodeMultipliers.FactionWorkRepGain,this.isWorking=!0,this.focus=!0,this.workType=_.CONSTANTS.WorkTypeFaction,this.currentWorkFactionName=e.name,this.timeNeededToCompleteWork=_.CONSTANTS.MillisecondsPer20Hours;const n=Object(z.clearEventListeners)("work-in-progress-cancel-button");n.innerHTML="Stop Faction Work",n.addEventListener("click",()=>(this.finishFactionWork(!0),!1));const r=Object(z.clearEventListeners)("work-in-progress-something-else-button");r.style.visibility="visible",r.innerHTML="Do something else simultaneously",r.addEventListener("click",()=>(this.stopFocusing(),!1)),b.Engine.loadWorkInProgressContent()}function Le(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeFaction,e.name,_.CONSTANTS.FactionWorkHacking),this.workHackExpGainRate=.15*this.hacking_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workRepGainRate=(this.hacking_skill+this.intelligence)/_.CONSTANTS.MaxSkillLevel*this.faction_rep_mult*this.getIntelligenceBonus(.5),this.factionWorkType=_.CONSTANTS.FactionWorkHacking,this.currentWorkFactionDescription="carrying out hacking contracts",this.startFactionWork(e)}function je(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeFaction,e.name,_.CONSTANTS.FactionWorkField),this.workHackExpGainRate=.1*this.hacking_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workStrExpGainRate=.1*this.strength_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workDefExpGainRate=.1*this.defense_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workDexExpGainRate=.1*this.dexterity_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workAgiExpGainRate=.1*this.agility_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workChaExpGainRate=.1*this.charisma_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workRepGainRate=Object(R.getFactionFieldWorkRepGain)(this,e),this.factionWorkType=_.CONSTANTS.FactionWorkField,this.currentWorkFactionDescription="carrying out field missions",this.startFactionWork(e)}function We(e){this.resetWorkStatus(_.CONSTANTS.WorkTypeFaction,e.name,_.CONSTANTS.FactionWorkSecurity),this.workHackExpGainRate=.05*this.hacking_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workStrExpGainRate=.15*this.strength_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workDefExpGainRate=.15*this.defense_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workDexExpGainRate=.15*this.dexterity_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workAgiExpGainRate=.15*this.agility_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workChaExpGainRate=0*this.charisma_exp_mult*s.BitNodeMultipliers.FactionWorkExpGain,this.workRepGainRate=Object(R.getFactionSecurityWorkRepGain)(this,e),this.factionWorkType=_.CONSTANTS.FactionWorkSecurity,this.currentWorkFactionDescription="performing security detail",this.startFactionWork(e)}function Fe(e){const t=v.Factions[this.currentWorkFactionName];switch(this.factionWorkType){case _.CONSTANTS.FactionWorkHacking:this.workRepGainRate=Object(R.getHackingWorkRepGain)(this,t);break;case _.CONSTANTS.FactionWorkField:this.workRepGainRate=Object(R.getFactionFieldWorkRepGain)(this,t);break;case _.CONSTANTS.FactionWorkSecurity:this.workRepGainRate=Object(R.getFactionSecurityWorkRepGain)(this,t)}var n=!1;if(this.timeWorked+b.Engine._idleSpeed*e>=_.CONSTANTS.MillisecondsPer20Hours&&(n=!0,e=Math.round((_.CONSTANTS.MillisecondsPer20Hours-this.timeWorked)/b.Engine._idleSpeed)),this.timeWorked+=b.Engine._idleSpeed*e,this.processWorkEarnings(e),n||this.timeWorked>=_.CONSTANTS.MillisecondsPer20Hours)return this.finishFactionWork(!1);const r=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You are currently ",this.currentWorkFactionDescription," for your faction ",t.name,ee.a.createElement("br",null),"(Current Faction Reputation: ",Object(V.Reputation)(t.playerReputation),"). ",ee.a.createElement("br",null),"You have been doing this for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"You have earned: ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained)," (",Object(X.MoneyRate)(this.workMoneyGainRate*re),") ",ee.a.createElement("br",null),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," (",Object(Q.ReputationRate)(this.workRepGainRate*re),") reputation for this faction ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," (",K.numeralWrapper.formatExp(this.workHackExpGainRate*re)," / sec) hacking exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," (",K.numeralWrapper.formatExp(this.workStrExpGainRate*re)," / sec) strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," (",K.numeralWrapper.formatExp(this.workDefExpGainRate*re)," / sec) defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," (",K.numeralWrapper.formatExp(this.workDexExpGainRate*re)," / sec) dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," (",K.numeralWrapper.formatExp(this.workAgiExpGainRate*re)," / sec) agility exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," (",K.numeralWrapper.formatExp(this.workChaExpGainRate*re)," / sec) charisma exp ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You will automatically finish after working for 20 hours. You can cancel earlier if you wish.",ee.a.createElement("br",null),"There is no penalty for cancelling earlier."),r)}function Ue(e,t=!1){var n=v.Factions[this.currentWorkFactionName];if(n.playerReputation+=this.workRepGained,this.updateSkillLevels(),t||Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"You worked for your faction ",n.name," for a total of ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)," ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You earned a total of: ",ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained),ee.a.createElement("br",null),Object(V.Reputation)(this.workRepGained)," reputation for the faction ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma exp",ee.a.createElement("br",null))),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadFactionContent(),Object(k.displayFactionContent)(n.name),t){var r="You worked for your faction "+n.name+" for a total of "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)+". You earned "+K.numeralWrapper.formatReputation(this.workRepGained)+" rep, "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hacking exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" str exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" def exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dex exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agi exp, and "+K.numeralWrapper.formatExp(this.workChaExpGained)+" cha exp.";return this.resetWorkStatus(),r}this.resetWorkStatus()}function He(){let e=1;const t=u.Companies[this.companyName];F.SourceFileFlags[11]>0&&(e=1+t.favor/100);const n=this.jobs[this.companyName],r=h.CompanyPositions[n];return null==r?(console.error(`Could not find CompanyPosition object for ${n}. Work salary will be 0`),0):r.baseSalary*t.salaryMultiplier*this.work_money_mult*s.BitNodeMultipliers.CompanyWorkMoney*e}function Ge(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work hack exp gain will be 0"].join(" ")),0):n.hackingExpGain*e.expMultiplier*this.hacking_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function Ke(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work str exp gain will be 0"].join(" ")),0):n.strengthExpGain*e.expMultiplier*this.strength_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function qe(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work def exp gain will be 0"].join(" ")),0):n.defenseExpGain*e.expMultiplier*this.defense_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function $e(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work dex exp gain will be 0"].join(" ")),0):n.dexterityExpGain*e.expMultiplier*this.dexterity_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function ze(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work agi exp gain will be 0"].join(" ")),0):n.agilityExpGain*e.expMultiplier*this.agility_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function Ye(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];return null==e||null==n?(console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work cha exp gain will be 0"].join(" ")),0):n.charismaExpGain*e.expMultiplier*this.charisma_exp_mult*s.BitNodeMultipliers.CompanyWorkExpGain}function Ve(){const e=u.Companies[this.companyName],t=this.jobs[this.companyName],n=h.CompanyPositions[t];if(null==e||null==n)return console.error([`Could not find Company object for ${this.companyName}`,`or CompanyPosition object for ${t}.`,"Work rep gain will be 0"].join(" ")),0;var r=n.calculateJobPerformance(this.hacking_skill,this.strength,this.defense,this.dexterity,this.agility,this.charisma);r+=this.intelligence/_.CONSTANTS.MaxSkillLevel;var a=1+e.favor/100;return isNaN(a)&&(a=1),r*this.company_rep_mult*a}function Je(e,t,n){this.resetWorkStatus(),this.isWorking=!0,this.focus=!0,this.workType=_.CONSTANTS.WorkTypeCreateProgram,this.createProgramReqLvl=n,this.timeNeededToCompleteWork=t;for(var r=0;r=100)break;this.timeWorkedCreateProgram=o/100*this.timeNeededToCompleteWork,this.getHomeComputer().programs.splice(r,1)}}this.createProgramName=e;var s=Object(z.clearEventListeners)("work-in-progress-cancel-button");s.innerHTML="Cancel work on creating program",s.addEventListener("click",()=>(this.finishCreateProgramWork(!0),!1)),Object(z.clearEventListeners)("work-in-progress-something-else-button").style.visibility="hidden",b.Engine.loadWorkInProgressContent()}function Xe(e){var t=this.createProgramReqLvl,n=this.hacking_skill/t*this.getIntelligenceBonus(3);n=1+(n-1)/5,this.timeWorked+=b.Engine._idleSpeed*e,this.timeWorkedCreateProgram+=b.Engine._idleSpeed*e*n;var r=this.createProgramName;this.timeWorkedCreateProgram>=this.timeNeededToCompleteWork&&this.finishCreateProgramWork(!1);const a=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You are currently working on coding ",r,".",ee.a.createElement("br",null),ee.a.createElement("br",null),"You have been working for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"The program is ",(this.timeWorkedCreateProgram/this.timeNeededToCompleteWork*100).toFixed(2),"% complete. ",ee.a.createElement("br",null),"If you cancel, your work will be saved and you can come back to complete the program later."),a)}function Qe(e){var t=this.createProgramName;if(!1===e)Object($.dialogBoxCreate)("You've finished creating "+t+"!
The new program can be found on your home computer."),this.getHomeComputer().programs.push(t);else{var n=t+"-"+(Math.floor(this.timeWorkedCreateProgram/this.timeNeededToCompleteWork*1e4)/100).toString()+"%-INC";this.getHomeComputer().programs.push(n)}e||this.gainIntelligenceExp(this.createProgramReqLvl/_.CONSTANTS.IntelligenceProgramBaseExpGain),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadTerminalContent(),this.resetWorkStatus()}function Ze(e,t,n){this.resetWorkStatus(),this.isWorking=!0,this.focus=!0,this.workType=_.CONSTANTS.WorkTypeStudyClass,this.className=n;const r=1e3/b.Engine._idleSpeed;var a=0,i=0,o=0,l=0,c=0,u=0,m=0;const p=this.hashManager;switch(n){case _.CONSTANTS.ClassStudyComputerScience:i=_.CONSTANTS.ClassStudyComputerScienceBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassDataStructures:a=_.CONSTANTS.ClassDataStructuresBaseCost*e/r,i=_.CONSTANTS.ClassDataStructuresBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassNetworks:a=_.CONSTANTS.ClassNetworksBaseCost*e/r,i=_.CONSTANTS.ClassNetworksBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassAlgorithms:a=_.CONSTANTS.ClassAlgorithmsBaseCost*e/r,i=_.CONSTANTS.ClassAlgorithmsBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassManagement:a=_.CONSTANTS.ClassManagementBaseCost*e/r,m=_.CONSTANTS.ClassManagementBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassLeadership:a=_.CONSTANTS.ClassLeadershipBaseCost*e/r,m=_.CONSTANTS.ClassLeadershipBaseExp*t/r*p.getStudyMult();break;case _.CONSTANTS.ClassGymStrength:a=_.CONSTANTS.ClassGymBaseCost*e/r,o=t/r*p.getTrainingMult();break;case _.CONSTANTS.ClassGymDefense:a=_.CONSTANTS.ClassGymBaseCost*e/r,l=t/r*p.getTrainingMult();break;case _.CONSTANTS.ClassGymDexterity:a=_.CONSTANTS.ClassGymBaseCost*e/r,c=t/r*p.getTrainingMult();break;case _.CONSTANTS.ClassGymAgility:a=_.CONSTANTS.ClassGymBaseCost*e/r,u=t/r*p.getTrainingMult();break;default:throw new Error("ERR: Invalid/unrecognized class name")}this.workMoneyLossRate=a,this.workHackExpGainRate=i*this.hacking_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workStrExpGainRate=o*this.strength_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workDefExpGainRate=l*this.defense_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workDexExpGainRate=c*this.dexterity_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workAgiExpGainRate=u*this.agility_exp_mult*s.BitNodeMultipliers.ClassGymExpGain,this.workChaExpGainRate=m*this.charisma_exp_mult*s.BitNodeMultipliers.ClassGymExpGain;var h=Object(z.clearEventListeners)("work-in-progress-cancel-button");n==_.CONSTANTS.ClassGymStrength||n==_.CONSTANTS.ClassGymDefense||n==_.CONSTANTS.ClassGymDexterity||n==_.CONSTANTS.ClassGymAgility?h.innerHTML="Stop training at gym":h.innerHTML="Stop taking course",h.addEventListener("click",()=>(this.finishClass(),!1)),Object(z.clearEventListeners)("work-in-progress-something-else-button").style.visibility="hidden",b.Engine.loadWorkInProgressContent()}function et(e){this.timeWorked+=b.Engine._idleSpeed*e;var t=this.className;this.processWorkEarnings(e);const n=document.getElementById("work-in-progress-text");ne.a.render(ee.a.createElement(ee.a.Fragment,null,"You have been ",t," for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),ee.a.createElement("br",null),ee.a.createElement("br",null),"This has cost you: ",ee.a.createElement("br",null),Object(J.Money)(-this.workMoneyGained)," (",Object(X.MoneyRate)(this.workMoneyLossRate*re),") ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You have gained: ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," (",K.numeralWrapper.formatExp(this.workHackExpGainRate*re)," / sec) hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," (",K.numeralWrapper.formatExp(this.workStrExpGainRate*re)," / sec) strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," (",K.numeralWrapper.formatExp(this.workDefExpGainRate*re)," / sec) defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," (",K.numeralWrapper.formatExp(this.workDexExpGainRate*re)," / sec) dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," (",K.numeralWrapper.formatExp(this.workAgiExpGainRate*re)," / sec) agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," (",K.numeralWrapper.formatExp(this.workChaExpGainRate*re)," / sec) charisma exp ",ee.a.createElement("br",null),"You may cancel at any time"),n)}function tt(e=!1){if(this.gainIntelligenceExp(_.CONSTANTS.IntelligenceClassBaseExpGain*Math.round(this.timeWorked/1e3)),this.workMoneyGained>0)throw new Error("ERR: Somehow gained money while taking class");if(this.updateSkillLevels(),e||Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"After ",this.className," for ",Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked),", ",ee.a.createElement("br",null),"you spent a total of ",Object(J.Money)(-1*this.workMoneyGained),". ",ee.a.createElement("br",null),ee.a.createElement("br",null),"You earned a total of: ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility exp ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma exp",ee.a.createElement("br",null))),document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,b.Engine.loadLocationContent(!1),e){var t="After "+this.className+" for "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeWorked)+", you spent a total of "+K.numeralWrapper.formatMoney(-1*this.workMoneyGained)+". You earned a total of: "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hacking exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" strength exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" defense exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dexterity exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agility exp, and "+K.numeralWrapper.formatExp(this.workChaExpGained)+" charisma exp";return this.resetWorkStatus(),t}this.resetWorkStatus()}function nt(e,t,n,r,a,i,o,l,c,u=null){this.crimeType=e,this.resetWorkStatus(),this.isWorking=!0,this.focus=!0,this.workType=_.CONSTANTS.WorkTypeCrime,u&&u.workerscript&&(this.committingCrimeThruSingFn=!0,this.singFnCrimeWorkerScript=u.workerscript),this.workHackExpGained=t*this.hacking_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workStrExpGained=n*this.strength_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workDefExpGained=r*this.defense_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workDexExpGained=a*this.dexterity_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workAgiExpGained=i*this.agility_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workChaExpGained=o*this.charisma_exp_mult*s.BitNodeMultipliers.CrimeExpGain,this.workMoneyGained=l*this.crime_money_mult*s.BitNodeMultipliers.CrimeMoney,this.timeNeededToCompleteWork=c;const m=Object(z.clearEventListeners)("work-in-progress-cancel-button");m.innerHTML="Cancel crime",m.addEventListener("click",()=>(this.finishCrime(!0),!1)),Object(z.clearEventListeners)("work-in-progress-something-else-button").style.visibility="hidden",b.Engine.loadWorkInProgressContent()}function rt(e){if(this.timeWorked+=b.Engine._idleSpeed*e,this.timeWorked>=this.timeNeededToCompleteWork)this.finishCrime(!1);else{var t=Math.round(this.timeWorked/this.timeNeededToCompleteWork*100),n=Math.round(t/5);n<0&&(n=0),n>20&&(n=20);var r="["+Array(n+1).join("|")+Array(20-n+1).join(" ")+"]";document.getElementById("work-in-progress-text").innerHTML="You are attempting to "+this.crimeType+".
Time remaining: "+Object(Y.convertTimeMsToTimeElapsedString)(this.timeNeededToCompleteWork-this.timeWorked)+"
"+r.replace(/ /g," ")}}function at(e){if(!e){if(Object(y.determineCrimeSuccess)(this,this.crimeType)){let e=null;for(const t in f.Crimes)if(f.Crimes[t].type==this.crimeType){e=f.Crimes[t];break}null==e&&Object($.dialogBoxCreate)(`ERR: Unrecognized crime type (${this.crimeType}). This is probably a bug please contact the developer`),this.gainMoney(this.workMoneyGained),this.recordMoneySource(this.workMoneyGained,"crime"),this.karma-=e.karma,this.numPeopleKilled+=e.kills,e.intelligence_exp>0&&this.gainIntelligenceExp(e.intelligence_exp),this.workHackExpGained*=2,this.workStrExpGained*=2,this.workDefExpGained*=2,this.workDexExpGained*=2,this.workAgiExpGained*=2,this.workChaExpGained*=2,this.committingCrimeThruSingFn?null==this.singFnCrimeWorkerScript.disableLogs.ALL&&null==this.singFnCrimeWorkerScript.disableLogs.commitCrime&&this.singFnCrimeWorkerScript.scriptRef.log("Crime successful! Gained "+K.numeralWrapper.formatMoney(this.workMoneyGained)+", "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hack exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" str exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" def exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dex exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agi exp, "+K.numeralWrapper.formatExp(this.workChaExpGained)+" cha exp."):Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"Crime successful!",ee.a.createElement("br",null),ee.a.createElement("br",null),"You gained:",ee.a.createElement("br",null),Object(J.Money)(this.workMoneyGained),ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking experience ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma experience"))}else this.workHackExpGained/=2,this.workStrExpGained/=2,this.workDefExpGained/=2,this.workDexExpGained/=2,this.workAgiExpGained/=2,this.workChaExpGained/=2,this.committingCrimeThruSingFn?null==this.singFnCrimeWorkerScript.disableLogs.ALL&&null==this.singFnCrimeWorkerScript.disableLogs.commitCrime&&this.singFnCrimeWorkerScript.scriptRef.log("Crime failed! Gained "+K.numeralWrapper.formatExp(this.workHackExpGained)+" hack exp, "+K.numeralWrapper.formatExp(this.workStrExpGained)+" str exp, "+K.numeralWrapper.formatExp(this.workDefExpGained)+" def exp, "+K.numeralWrapper.formatExp(this.workDexExpGained)+" dex exp, "+K.numeralWrapper.formatExp(this.workAgiExpGained)+" agi exp, "+K.numeralWrapper.formatExp(this.workChaExpGained)+" cha exp."):Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"Crime failed!",ee.a.createElement("br",null),ee.a.createElement("br",null),"You gained:",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workHackExpGained)," hacking experience ",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workStrExpGained)," strength experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDefExpGained)," defense experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workDexExpGained)," dexterity experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workAgiExpGained)," agility experience",ee.a.createElement("br",null),K.numeralWrapper.formatExp(this.workChaExpGained)," charisma experience"));this.gainHackingExp(this.workHackExpGained),this.gainStrengthExp(this.workStrExpGained),this.gainDefenseExp(this.workDefExpGained),this.gainDexterityExp(this.workDexExpGained),this.gainAgilityExp(this.workAgiExpGained),this.gainCharismaExp(this.workChaExpGained)}this.committingCrimeThruSingFn=!1,this.singFnCrimeWorkerScript=null,document.getElementById("mainmenu-container").style.visibility="visible",this.isWorking=!1,this.resetWorkStatus(),b.Engine.loadLocationContent(!1)}function it(){if(!this.isWorking)return"";var e;switch(this.workType){case _.CONSTANTS.WorkTypeStudyClass:e=this.finishClass(!0);break;case _.CONSTANTS.WorkTypeCompany:e=this.finishWork(!0,!0);break;case _.CONSTANTS.WorkTypeCompanyPartTime:e=this.finishWorkPartTime(!0);break;case _.CONSTANTS.WorkTypeFaction:e=this.finishFactionWork(!0,!0);break;case _.CONSTANTS.WorkTypeCreateProgram:e=this.finishCreateProgramWork(!0);break;case _.CONSTANTS.WorkTypeCrime:e=this.finishCrime(!0);break;default:return console.error(`Unrecognized work type (${this.workType})`),""}return e}function ot(e){if("number"==typeof e)return this.hp-=e,this.hp<=0&&(this.hospitalize(),!0);console.warn(`Player.takeDamage() called without a numeric argument: ${e}`)}function st(e){"number"==typeof e?(this.hp+=e,this.hp>this.max_hp&&(this.hp=this.max_hp)):console.warn(`Player.regenerateHp() called without a numeric argument: ${e}`)}function lt(){const e=Object(H.getHospitalizationCost)(this);return!1===I.Settings.SuppressHospitalizationPopup&&Object($.dialogBoxCreate)(ee.a.createElement(ee.a.Fragment,null,"You were in critical condition! You were taken to the hospital where luckily they were able to save your life. You were charged ",Object(J.Money)(e))),this.loseMoney(e),this.recordMoneySource(-1*e,"hospitalization"),this.hp=this.max_hp,e}function ct(e,t=!1){let n=null;""!==this.companyName&&(n=u.Companies[this.companyName]);const r=this.jobs[this.companyName],a=u.Companies[this.location];if(!(a instanceof c.Company))return t?"ERROR: Invalid company name: "+this.location+". applyToCompany() failed":void console.error(`Could not find company that matches the location: ${this.location}. Player.applyToCompany() failed`);let i=e;if(!this.isQualified(a,i)){var o=Object(p.getJobRequirementText)(a,i);return!t&&void Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position
"+o)}for(;;){let e=Object(m.getNextCompanyPositionHelper)(i);if(null==e)break;if(!a.hasPosition(e))break;if(!this.isQualified(a,e))break;i=e}if(null==n||n.name!=a.name||i.name!=r){if(this.jobs[a.name]=i.name,document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),t)return!0;Object($.dialogBoxCreate)("Congratulations! You were offered a new job at "+this.companyName+" as a "+i.name+"!")}else{var s=Object(m.getNextCompanyPositionHelper)(i);if(null==s){if(t)return!1;Object($.dialogBoxCreate)("You are already at the highest position for your field! No promotion available")}else if(a.hasPosition(s)){if(t)return!1;o=Object(p.getJobRequirementText)(a,s);Object($.dialogBoxCreate)("Unfortunately, you do not qualify for a promotion
"+o)}else{if(t)return!1;Object($.dialogBoxCreate)("You are already at the highest position for your field! No promotion available")}}}function ut(e,t){var n=null;if(""!==this.companyName&&(n=u.Companies[this.companyName]),null==n||n.name!=e.name)return t;const r=this.jobs[this.companyName],a=h.CompanyPositions[r];return a.isSoftwareJob()&&t.isSoftwareJob()||a.isITJob()&&t.isITJob()||a.isBusinessJob()&&t.isBusinessJob()||a.isSecurityEngineerJob()&&t.isSecurityEngineerJob()||a.isNetworkEngineerJob()&&t.isNetworkEngineerJob()||a.isSecurityJob()&&t.isSecurityJob()||a.isAgentJob()&&t.isAgentJob()||a.isSoftwareConsultantJob()&&t.isSoftwareConsultantJob()||a.isBusinessConsultantJob()&&t.isBusinessConsultantJob()||a.isPartTimeJob()&&t.isPartTimeJob()?Object(m.getNextCompanyPositionHelper)(a):t}function mt(e){this.companyName="",delete this.jobs[e]}function pt(e=!1){return this.applyForJob(h.CompanyPositions[d.SoftwareCompanyPositions[0]],e)}function ht(e=!1){return this.applyForJob(h.CompanyPositions[d.SoftwareConsultantCompanyPositions[0]],e)}function dt(e=!1){return this.applyForJob(h.CompanyPositions[d.ITCompanyPositions[0]],e)}function _t(e=!1){var t=u.Companies[this.location];return this.isQualified(t,h.CompanyPositions[d.SecurityEngineerCompanyPositions[0]])?this.applyForJob(h.CompanyPositions[d.SecurityEngineerCompanyPositions[0]],e):!e&&void Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}function gt(e=!1){var t=u.Companies[this.location];return this.isQualified(t,h.CompanyPositions[d.NetworkEngineerCompanyPositions[0]])?this.applyForJob(h.CompanyPositions[d.NetworkEngineerCompanyPositions[0]],e):!e&&void Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}function yt(e=!1){return this.applyForJob(h.CompanyPositions[d.BusinessCompanyPositions[0]],e)}function ft(e=!1){return this.applyForJob(h.CompanyPositions[d.BusinessConsultantCompanyPositions[0]],e)}function bt(e=!1){return this.applyForJob(h.CompanyPositions[d.SecurityCompanyPositions[2]],e)}function Et(e=!1){var t=u.Companies[this.location];return this.isQualified(t,h.CompanyPositions[d.AgentCompanyPositions[0]])?this.applyForJob(h.CompanyPositions[d.AgentCompanyPositions[0]],e):!e&&void Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}function vt(e=!1){var t=u.Companies[this.location];if(this.isQualified(t,h.CompanyPositions[d.MiscCompanyPositions[1]])){if(this.companyName=t.name,this.jobs[t.name]=d.MiscCompanyPositions[1],document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),e)return!0;Object($.dialogBoxCreate)("Congratulations, you are now employed at "+this.companyName)}else{if(e)return!1;Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}}function kt(e=!1){var t=u.Companies[this.location];if(this.isQualified(t,h.CompanyPositions[d.PartTimeCompanyPositions[1]])){if(this.jobs[t.name]=d.PartTimeCompanyPositions[1],document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),e)return!0;Object($.dialogBoxCreate)("Congratulations, you are now employed part-time at "+this.companyName)}else{if(e)return!1;Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}}function Ct(e=!1){var t=u.Companies[this.location];if(this.isQualified(t,h.CompanyPositions[d.MiscCompanyPositions[0]])){if(this.companyName=t.name,this.jobs[t.name]=d.MiscCompanyPositions[0],document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),e)return!0;Object($.dialogBoxCreate)("Congratulations, you are now employed as a waiter at "+this.companyName)}else{if(e)return!1;Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}}function Pt(e=!1){var t=u.Companies[this.location];if(this.isQualified(t,h.CompanyPositions[d.PartTimeCompanyPositions[0]])){if(this.companyName=t.name,this.jobs[t.name]=d.PartTimeCompanyPositions[0],document.getElementById("world-menu-header").click(),document.getElementById("world-menu-header").click(),e)return!0;Object($.dialogBoxCreate)("Congratulations, you are now employed as a part-time waiter at "+this.companyName)}else{if(e)return!1;Object($.dialogBoxCreate)("Unforunately, you do not qualify for this position")}}function Ot(e,t){var n=e.jobStatReqOffset,r=t.requiredHacking>0?t.requiredHacking+n:0,a=t.requiredStrength>0?t.requiredStrength+n:0,i=t.requiredDefense>0?t.requiredDefense+n:0,o=t.requiredDexterity>0?t.requiredDexterity+n:0,s=t.requiredDexterity>0?t.requiredDexterity+n:0,l=t.requiredCharisma>0?t.requiredCharisma+n:0;return this.hacking_skill>=r&&this.strength>=a&&this.defense>=i&&this.dexterity>=o&&this.agility>=s&&this.charisma>=l&&e.playerReputation>=t.requiredReputation}function St(e=!0){e&&this.resetMultipliers();for(let e=0;et}var i=v.Factions.Illuminati;!i.isBanned&&!i.isMember&&!i.alreadyInvited&&t>=30&&this.money.gte(15e10)&&this.hacking_skill>=1500&&this.strength>=1200&&this.defense>=1200&&this.dexterity>=1200&&this.agility>=1200&&e.push(i);var o=v.Factions.Daedalus;!o.isBanned&&!o.isMember&&!o.alreadyInvited&&t>=Math.round(30*s.BitNodeMultipliers.DaedalusAugsRequirement)&&this.money.gte(1e11)&&(this.hacking_skill>=2500||this.strength>=1500&&this.defense>=1500&&this.dexterity>=1500&&this.agility>=1500)&&e.push(o);var l=v.Factions["The Covenant"];!l.isBanned&&!l.isMember&&!l.alreadyInvited&&t>=20&&this.money.gte(75e9)&&this.hacking_skill>=850&&this.strength>=850&&this.defense>=850&&this.dexterity>=850&&this.agility>=850&&e.push(l);var c=v.Factions.ECorp;c.isBanned||c.isMember||c.alreadyInvited||!a(M.LocationName.AevumECorp)||e.push(c);var m=v.Factions.MegaCorp;m.isBanned||m.isMember||m.alreadyInvited||!a(M.LocationName.Sector12MegaCorp)||e.push(m);var p=v.Factions["Bachman & Associates"];p.isBanned||p.isMember||p.alreadyInvited||!a(M.LocationName.AevumBachmanAndAssociates)||e.push(p);var h=v.Factions["Blade Industries"];h.isBanned||h.isMember||h.alreadyInvited||!a(M.LocationName.Sector12BladeIndustries)||e.push(h);var d=v.Factions.NWO;d.isBanned||d.isMember||d.alreadyInvited||!a(M.LocationName.VolhavenNWO)||e.push(d);var g=v.Factions["Clarke Incorporated"];g.isBanned||g.isMember||g.alreadyInvited||!a(M.LocationName.AevumClarkeIncorporated)||e.push(g);var y=v.Factions["OmniTek Incorporated"];y.isBanned||y.isMember||y.alreadyInvited||!a(M.LocationName.VolhavenOmniTekIncorporated)||e.push(y);var f=v.Factions["Four Sigma"];f.isBanned||f.isMember||f.alreadyInvited||!a(M.LocationName.Sector12FourSigma)||e.push(f);var b=v.Factions["KuaiGong International"];b.isBanned||b.isMember||b.alreadyInvited||!a(M.LocationName.ChongqingKuaiGongInternational)||e.push(b);var E=v.Factions["Fulcrum Secret Technologies"],k=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.FulcrumSecretTechnologies]];null==k?console.error("Could not find Fulcrum Secret Technologies Server"):E.isBanned||E.isMember||E.alreadyInvited||!k.backdoorInstalled||!a(M.LocationName.AevumFulcrumTechnologies,25e4)||e.push(E);var C=v.Factions.BitRunners,O=this.getHomeComputer(),S=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.BitRunnersServer]];null==S?console.error("Could not find BitRunners Server"):!C.isBanned&&!C.isMember&&S.backdoorInstalled&&!C.alreadyInvited&&O.maxRam>=128&&e.push(C);var x=v.Factions["The Black Hand"],w=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.TheBlackHandServer]];null==w?console.error("Could not find The Black Hand Server"):!x.isBanned&&!x.isMember&&w.backdoorInstalled&&!x.alreadyInvited&&O.maxRam>=64&&e.push(x);var A=v.Factions.NiteSec,R=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.NiteSecServer]];null==R?console.error("Could not find NiteSec Server"):!A.isBanned&&!A.isMember&&R.backdoorInstalled&&!A.alreadyInvited&&O.maxRam>=32&&e.push(A);var D=v.Factions.Chongqing;D.isBanned||D.isMember||D.alreadyInvited||!this.money.gte(2e7)||this.city!=T.CityName.Chongqing||e.push(D);var I=v.Factions["Sector-12"];I.isBanned||I.isMember||I.alreadyInvited||!this.money.gte(15e6)||this.city!=T.CityName.Sector12||e.push(I);var L=v.Factions["New Tokyo"];L.isBanned||L.isMember||L.alreadyInvited||!this.money.gte(2e7)||this.city!=T.CityName.NewTokyo||e.push(L);var j=v.Factions.Aevum;j.isBanned||j.isMember||j.alreadyInvited||!this.money.gte(4e7)||this.city!=T.CityName.Aevum||e.push(j);var W=v.Factions.Ishima;W.isBanned||W.isMember||W.alreadyInvited||!this.money.gte(3e7)||this.city!=T.CityName.Ishima||e.push(W);var F=v.Factions.Volhaven;F.isBanned||F.isMember||F.alreadyInvited||!this.money.gte(5e7)||this.city!=T.CityName.Volhaven||e.push(F);var U=v.Factions["Speakers for the Dead"];!U.isBanned&&!U.isMember&&!U.alreadyInvited&&this.hacking_skill>=100&&this.strength>=300&&this.defense>=300&&this.dexterity>=300&&this.agility>=300&&this.numPeopleKilled>=30&&this.karma<=-45&&!n.includes(M.LocationName.Sector12CIA)&&!n.includes(M.LocationName.Sector12NSA)&&e.push(U);var H=v.Factions["The Dark Army"];!H.isBanned&&!H.isMember&&!H.alreadyInvited&&this.hacking_skill>=300&&this.strength>=300&&this.defense>=300&&this.dexterity>=300&&this.agility>=300&&this.city==T.CityName.Chongqing&&this.numPeopleKilled>=5&&this.karma<=-45&&!n.includes(M.LocationName.Sector12CIA)&&!n.includes(M.LocationName.Sector12NSA)&&e.push(H);var G=v.Factions["The Syndicate"];!G.isBanned&&!G.isMember&&!G.alreadyInvited&&this.hacking_skill>=200&&this.strength>=200&&this.defense>=200&&this.dexterity>=200&&this.agility>=200&&(this.city==T.CityName.Aevum||this.city==T.CityName.Sector12)&&this.money.gte(1e7)&&this.karma<=-90&&!n.includes(M.LocationName.Sector12CIA)&&!n.includes(M.LocationName.Sector12NSA)&&e.push(G);var K=v.Factions.Silhouette;!K.isBanned&&!K.isMember&&!K.alreadyInvited&&(r.includes("Chief Technology Officer")||r.includes("Chief Financial Officer")||r.includes("Chief Executive Officer"))&&this.money.gte(15e6)&&this.karma<=-22&&e.push(K);var q=v.Factions.Tetrads;!q.isBanned&&!q.isMember&&!q.alreadyInvited&&(this.city==T.CityName.Chongqing||this.city==T.CityName.NewTokyo||this.city==T.CityName.Ishima)&&this.strength>=75&&this.defense>=75&&this.dexterity>=75&&this.agility>=75&&this.karma<=-18&&e.push(q);var $=v.Factions["Slum Snakes"];!$.isBanned&&!$.isMember&&!$.alreadyInvited&&this.strength>=30&&this.defense>=30&&this.dexterity>=30&&this.agility>=30&&this.karma<=-9&&this.money.gte(1e6)&&e.push($);var z=v.Factions.Netburners,Y=0,V=0,J=0;for(let e=0;e=80&&Y>=8&&V>=4&&J>=100&&e.push(z);var X=v.Factions["Tian Di Hui"];X.isBanned||X.isMember||X.alreadyInvited||!this.money.gte(1e6)||!(this.hacking_skill>=50)||this.city!=T.CityName.Chongqing&&this.city!=T.CityName.NewTokyo&&this.city!=T.CityName.Ishima||e.push(X);var Q=v.Factions.CyberSec,Z=N.AllServers[B.SpecialServerIps[B.SpecialServerNames.CyberSecServer]];return null==Z?console.error("Could not find CyberSec Server"):Q.isBanned||Q.isMember||!Z.backdoorInstalled||Q.alreadyInvited||e.push(Q),e}function xt(e){this.bitNodeN=e}function wt(e){for(const t in this.queuedAugmentations)if(this.queuedAugmentations[t].name==e)return void console.warn(`tried to queue ${e} twice, this may be a bug`);for(const t in this.augmentations)if(this.augmentations[t].name==e)return void console.warn(`tried to queue ${e} twice, this may be a bug`);this.firstAugPurchased=!0,this.queuedAugmentations.push(new i.PlayerOwnedAugmentation(e))}function At(e,t=1){if(null==e||null==e.type||null==e)return"No reward for this contract";switch(e.type){case l.CodingContractRewardType.FactionReputation:if(null==e.name||!(v.Factions[e.name]instanceof E.Faction))return e.type=l.CodingContractRewardType.FactionReputationAll,this.gainCodingContractReward(e);var n=_.CONSTANTS.CodingContractBaseFactionRepGain*t;return v.Factions[e.name].playerReputation+=n,`Gained ${n} faction reputation for ${e.name}`;case l.CodingContractRewardType.FactionReputationAll:const i=_.CONSTANTS.CodingContractBaseFactionRepGain*t,o=["Bladeburners"];var r=this.factions.slice();if(0==(r=r.filter(e=>!o.includes(e))).length)return e.type=l.CodingContractRewardType.Money,this.gainCodingContractReward(e,t);const m=Math.floor(i/r.length);for(const e of r)v.Factions[e]instanceof E.Faction&&(v.Factions[e].playerReputation+=m);return`Gained ${m} reputation for each of the following factions: ${r.toString()}`;case l.CodingContractRewardType.CompanyReputation:if(null==e.name||!(u.Companies[e.name]instanceof c.Company))return e.type=l.CodingContractRewardType.FactionReputationAll,this.gainCodingContractReward(e);n=_.CONSTANTS.CodingContractBaseCompanyRepGain*t;return u.Companies[e.name].playerReputation+=n,`Gained ${n} company reputation for ${e.name}`;case l.CodingContractRewardType.Money:default:var a=_.CONSTANTS.CodingContractBaseMoneyGain*t*s.BitNodeMultipliers.CodingContractMoney;return this.gainMoney(a),this.recordMoneySource(a,"codingcontract"),`Gained ${K.numeralWrapper.formatMoney(a)}`}}function Rt(e){return null==O.Cities[e]?(console.warn(`Player.travel() called with invalid city: ${e}`),!1):(this.city=e,!0)}function Nt(e){return null==S.Locations[e]?(console.warn(`Player.gotoLocation() called with invalid location: ${e}`),!1):(this.location=e,!0)}function Dt(){return 10===this.bitNodeN||F.SourceFileFlags[10]>0}function It(e){this.exploits.includes(e)||this.exploits.push(e)}function Bt(e){return Object(A.calculateIntelligenceBonus)(this.intelligence,e)}function Lt(){return this.moneySourceA.casino}},function(e,t,n){"use strict";n.r(t),n.d(t,"canAccessGang",function(){return l}),n.d(t,"getGangFaction",function(){return c}),n.d(t,"getGangName",function(){return u}),n.d(t,"hasGangWith",function(){return m}),n.d(t,"inGang",function(){return p}),n.d(t,"startGang",function(){return h});var r=n(19),a=n(86),i=n(48),o=n(25);const s=-54e3;function l(){return 2===this.bitNodeN||!(i.SourceFileFlags[2]<=0)&&this.karma<=o.BitNodeMultipliers.GangKarmaRequirement*s}function c(){const e=r.Factions[this.gang.facName];if(null==e)throw new Error(`Gang has invalid faction name: ${this.gang.facName}`);return e}function u(){return this.inGang()?this.gang.facName:""}function m(e){return this.inGang()&&this.gang.facName===e}function p(){return null!=this.gang&&void 0!=this.gang&&this.gang instanceof a.b}function h(e,t){this.gang=new a.b(e,t);const n=r.Factions[e];if(null==n)throw new Error(`Invalid faction name when creating gang: ${e}`);n.playerReputation=0}},function(e,t,n){"use strict";n.r(t),n.d(t,"canAccessCorporation",function(){return i}),n.d(t,"hasCorporation",function(){return o}),n.d(t,"startCorporation",function(){return s});var r=n(43),a=n(48);function i(){return 3===this.bitNodeN||a.SourceFileFlags[3]>0}function o(){return null!=this.corporation&&this.corporation instanceof r.c}function s(e,t=0){this.corporation=new r.c({name:e}),this.corporation.totalShares+=t}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.ScriptUrl=void 0;t.ScriptUrl=class{constructor(e,t){this.filename=e,this.url=t}}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"a",function(){return executeJSScript});var _NetscriptEvaluator__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(81),_Script_ScriptUrl__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(745),_Script_ScriptUrl__WEBPACK_IMPORTED_MODULE_1___default=__webpack_require__.n(_Script_ScriptUrl__WEBPACK_IMPORTED_MODULE_1__);function makeScriptBlob(e){return new Blob([e],{type:"text/javascript"})}async function executeJSScript(scripts=[],workerScript){let loadedModule,urls=null,script=workerScript.getScript();shouldCompile(script,scripts)&&(script.markUpdated(),urls=_getScriptUrls(script,scripts,[]),script.url=urls[urls.length-1].url,script.module=new Promise(resolve=>resolve(eval("import(urls[urls.length - 1].url)"))),script.dependencies=urls),loadedModule=await script.module;let ns=workerScript.env.vars;try{if(!loadedModule.main)throw Object(_NetscriptEvaluator__WEBPACK_IMPORTED_MODULE_0__.b)(workerScript,`${script.filename} cannot be run because it does not have a main function.`);return loadedModule.main(ns)}finally{if(null!=urls)for(const e in urls)URL.revokeObjectURL(e.url)}}function shouldCompile(e,t){return""===e.module||e.dependencies.some(n=>{const r=t.find(e=>e.filename==n.filename);return!r||r.moduleSequenceNumber>e.moduleSequenceNumber})}function _getScriptUrls(e,t,n){const r=[];n.push(e);try{let a=e.code.replace(/((?:from|import)\s+(?:'|"))(?:\.\/)?([^'"]+)('|")/g,(e,a,i,o)=>{if(!t.some(e=>e.filename==i))return e;const[s]=t.filter(e=>e.filename==i),l=_getScriptUrls(s,t,n);return r.push(...l),[a,l[l.length-1].url,o].join("")});return a+='\n\nfunction print() {throw new Error("Invalid call to window.print(). Did you mean to use Netscript\'s print()?");}',r.push(new _Script_ScriptUrl__WEBPACK_IMPORTED_MODULE_1__.ScriptUrl(e.filename,URL.createObjectURL(makeScriptBlob(a)))),r}catch(e){for(const e in r)URL.revokeObjectURL(e);throw e}finally{n.pop()}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.is2DArray=void 0,t.is2DArray=function(e){return e.constructor===Array&&e.every(e=>e.constructor===Array)}},,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.tabCompletion=void 0;const r=n(8),a=n(13);t.tabCompletion=function(e,t,n){if(n.constructor!==Array)return;if(!a.containsAllStrings(n))return;if(""===t)for(let t=n.length-1;t>=0;--t)n[t].toLowerCase().startsWith(e.toLowerCase())||n.splice(t,1);else for(let e=n.length-1;e>=0;--e)n[e].toLowerCase().startsWith(t.toLowerCase())||n.splice(e,1);const i=document.getElementById("terminal-input-text-box");if(null==i)return void console.warn("Couldn't find terminal input DOM element (id=terminal-input-text-box) when trying to autocomplete");const o=i,s=o.value.lastIndexOf(";");let l="";if(0!==n.length)if(1===n.length)l=""===t?n[0]+" ":e+" "+n[0],o.value=-1===s?l:o.value.slice(0,s+1)+" "+l,o.focus();else{const i=a.longestCommonStart(n);let l="";for(let e=0;e "+e),r.post(l)):(o.value=-1===s?i:`${o.value.slice(0,s+1)} ${i}`,o.focus()):i===t?(r.post("> "+e+" "+t),r.post(l)):(o.value=-1==s?`${e} ${i}`:`${o.value.slice(0,s+1)} ${e} ${i}`,o.focus())}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.determineAllPossibilitiesForTabCompletion=void 0;const r=n(103),a=n(1174),i=n(80),o=n(296),s=n(85),l=n(27),c=["alias","analyze","backdoor","cat","cd","check","clear","cls","connect","download","expr","free","hack","help","home","hostname","ifconfig","kill","killall","ls","lscpu","mem","mv","nano","ps","rm","run","scan","scan-analyze","scp","sudov","tail","theme","top"];t.determineAllPossibilitiesForTabCompletion=function(e,t,n,u=""){let m=[];m=m.concat(Object.keys(i.GlobalAliases));const p=e.getCurrentServer(),h=e.getHomeComputer();let d="",_=null;function g(){for(const e of p.contracts)m.push(e.fn)}function y(){for(const e of p.messages)e instanceof s.Message||m.push(e)}function f(){for(const e of h.programs)m.push(e)}function b(){for(const e of p.scripts){const t=k(e.filename);t&&m.push(t)}}function E(){for(const e of p.textFiles){const t=k(e.fn);t&&m.push(t)}}function v(){const e=a.getSubdirectories(p,null==_?"/":_);for(let t=0;t
Earns money - Slightly increases respect - Slightly increases wanted level",isCombat:!1,isHacking:!0,name:"Ransomware",params:{baseRespect:5e-5,baseWanted:1e-4,baseMoney:1,hackWeight:100,difficulty:1}},{desc:"Assign this gang member to attempt phishing scams and attacks

Earns money - Slightly increases respect - Slightly increases wanted level",isCombat:!1,isHacking:!0,name:"Phishing",params:{baseRespect:8e-5,baseWanted:.003,baseMoney:2.5,hackWeight:85,chaWeight:15,difficulty:3.5}},{desc:"Assign this gang member to attempt identity theft

Earns money - Increases respect - Increases wanted level",isCombat:!1,isHacking:!0,name:"Identity Theft",params:{baseRespect:1e-4,baseWanted:.075,baseMoney:6,hackWeight:80,chaWeight:20,difficulty:5}},{desc:"Assign this gang member to carry out DDoS attacks

Increases respect - Increases wanted level",isCombat:!1,isHacking:!0,name:"DDoS Attacks",params:{baseRespect:4e-4,baseWanted:.2,hackWeight:100,difficulty:8}},{desc:"Assign this gang member to create and distribute malicious viruses

Increases respect - Increases wanted level",isCombat:!1,isHacking:!0,name:"Plant Virus",params:{baseRespect:6e-4,baseWanted:.4,hackWeight:100,difficulty:12}},{desc:"Assign this gang member to commit financial fraud and digital counterfeiting

Earns money - Slightly increases respect - Slightly increases wanted level",isCombat:!1,isHacking:!0,name:"Fraud & Counterfeiting",params:{baseRespect:4e-4,baseWanted:.3,baseMoney:15,hackWeight:80,chaWeight:20,difficulty:20}},{desc:"Assign this gang member to launder money

Earns money - Increases respect - Increases wanted level",isCombat:!1,isHacking:!0,name:"Money Laundering",params:{baseRespect:.001,baseWanted:1.25,baseMoney:120,hackWeight:75,chaWeight:25,difficulty:25}},{desc:"Assign this gang member to commit acts of cyberterrorism

Greatly increases respect - Greatly increases wanted level",isCombat:!1,isHacking:!0,name:"Cyberterrorism",params:{baseRespect:.01,baseWanted:6,hackWeight:80,chaWeight:20,difficulty:36}},{desc:"Assign this gang member to be an ethical hacker for corporations

Earns money - Lowers wanted level",isCombat:!1,isHacking:!0,name:"Ethical Hacking",params:{baseWanted:-.001,baseMoney:1,hackWeight:90,chaWeight:10,difficulty:1}},{desc:"Assign this gang member to mug random people on the streets

Earns money - Slightly increases respect - Very slightly increases wanted level",isCombat:!0,isHacking:!1,name:"Mug People",params:{baseRespect:5e-5,baseWanted:5e-5,baseMoney:1.2,strWeight:25,defWeight:25,dexWeight:25,agiWeight:10,chaWeight:15,difficulty:1}},{desc:"Assign this gang member to sell drugs

Earns money - Slightly increases respect - Slightly increases wanted level - Scales slightly with territory",isCombat:!0,isHacking:!1,name:"Deal Drugs",params:{baseRespect:6e-5,baseWanted:.002,baseMoney:5,agiWeight:20,dexWeight:20,chaWeight:60,difficulty:3.5,territory:{money:1.2,respect:1,wanted:1.15}}},{desc:"Assign this gang member to extort civilians in your territory

Earns money - Slightly increases respect - Increases wanted - Scales heavily with territory",isCombat:!0,isHacking:!1,name:"Strongarm Civilians",params:{baseRespect:4e-5,baseWanted:.02,baseMoney:2.5,hackWeight:10,strWeight:25,defWeight:25,dexWeight:20,agiWeight:10,chaWeight:10,difficulty:5,territory:{money:1.6,respect:1.1,wanted:1.5}}},{desc:"Assign this gang member to run cons

Earns money - Increases respect - Increases wanted level",isCombat:!0,isHacking:!1,name:"Run a Con",params:{baseRespect:12e-5,baseWanted:.05,baseMoney:15,strWeight:5,defWeight:5,agiWeight:25,dexWeight:25,chaWeight:40,difficulty:14}},{desc:"Assign this gang member to commit armed robbery on stores, banks and armored cars

Earns money - Increases respect - Increases wanted level",isCombat:!0,isHacking:!1,name:"Armed Robbery",params:{baseRespect:14e-5,baseWanted:.1,baseMoney:38,hackWeight:20,strWeight:15,defWeight:15,agiWeight:10,dexWeight:20,chaWeight:20,difficulty:20}},{desc:"Assign this gang member to traffick illegal arms

Earns money - Increases respect - Increases wanted level - Scales heavily with territory",isCombat:!0,isHacking:!1,name:"Traffick Illegal Arms",params:{baseRespect:2e-4,baseWanted:.24,baseMoney:58,hackWeight:15,strWeight:20,defWeight:20,dexWeight:20,chaWeight:25,difficulty:32,territory:{money:1.4,respect:1.3,wanted:1.25}}},{desc:"Assign this gang member to threaten and black mail high-profile targets

Earns money - Slightly increases respect - Slightly increases wanted level",isCombat:!0,isHacking:!1,name:"Threaten & Blackmail",params:{baseRespect:2e-4,baseWanted:.125,baseMoney:24,hackWeight:25,strWeight:25,dexWeight:25,chaWeight:25,difficulty:28}},{desc:"Assign this gang member to engage in human trafficking operations

Earns money - Increases respect - Increases wanted level - Scales heavily with territory",isCombat:!0,isHacking:!1,name:"Human Trafficking",params:{baseRespect:.004,baseWanted:1.25,baseMoney:120,hackWeight:30,strWeight:5,defWeight:5,dexWeight:30,chaWeight:30,difficulty:36,territory:{money:1.5,respect:1.5,wanted:1.6}}},{desc:"Assign this gang member to commit acts of terrorism

Greatly increases respect - Greatly increases wanted level - Scales heavily with territory",isCombat:!0,isHacking:!1,name:"Terrorism",params:{baseRespect:.01,baseWanted:6,hackWeight:20,strWeight:20,defWeight:20,dexWeight:20,chaWeight:20,difficulty:36,territory:{money:1,respect:2,wanted:2}}},{desc:"Assign this gang member to be a vigilante and protect the city from criminals

Decreases wanted level",isCombat:!0,isHacking:!0,name:"Vigilante Justice",params:{baseWanted:-.001,hackWeight:20,strWeight:20,defWeight:20,dexWeight:20,agiWeight:20,difficulty:1,territory:{money:1,respect:1,wanted:.9}}},{desc:"Assign this gang member to increase their combat stats (str, def, dex, agi)",isCombat:!0,isHacking:!0,name:"Train Combat",params:{strWeight:25,defWeight:25,dexWeight:25,agiWeight:25,difficulty:5}},{desc:"Assign this gang member to train their hacking skills",isCombat:!0,isHacking:!0,name:"Train Hacking",params:{hackWeight:100,difficulty:8}},{desc:"Assign this gang member to train their charisma",isCombat:!0,isHacking:!0,name:"Train Charisma",params:{chaWeight:100,difficulty:8}},{desc:"Assign this gang member to engage in territorial warfare with other gangs. Members assigned to this task will help increase your gang's territory and will defend your territory from being taken.",isCombat:!0,isHacking:!0,name:"Territory Warfare",params:{hackWeight:15,strWeight:20,defWeight:20,dexWeight:20,agiWeight:20,chaWeight:5,difficulty:5}}]},,function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(30),o=n(1),s=n(31);function l(e){if(null==e.multiplier||null==e.onClick)throw new Error("PurchaseButton constructed without required props");const t=e.cost;let n,r=o.Player.canAfford(t)?"std-button":"std-button-disabled",l=null;return Object(i.h)()?Object(i.i)()?(r="std-button-disabled",n=a.a.createElement(a.a.Fragment,null,"Hacknet Server limit reached"),l={color:"red"}):n=a.a.createElement(a.a.Fragment,null,"Purchase Hacknet Server - ",Object(s.Money)(t)):n=a.a.createElement(a.a.Fragment,null,"Purchase Hacknet Node - ",Object(s.Money)(t)),a.a.createElement("button",{className:r,onClick:e.onClick,style:l},n)}},function(e,t,n){"use strict";n.d(t,"a",function(){return m});var r=n(0),a=n.n(r),i=n(30),o=n(1),s=n(31),l=n(125),c=n(449),u=n(140);function m(e){const t=Object(i.h)();let n;return n=t?Object(c.HashRate)(e.totalProduction):Object(l.MoneyRate)(e.totalProduction),a.a.createElement("p",{id:"hacknet-nodes-money"},a.a.createElement("span",null,"Money: "),Object(s.Money)(o.Player.money.toNumber()),a.a.createElement("br",null),t&&a.a.createElement(a.a.Fragment,null,a.a.createElement("span",null,"Hashes: ",Object(u.Hashes)(o.Player.hashManager.hashes)," / ",Object(u.Hashes)(o.Player.hashManager.capacity)),a.a.createElement("br",null)),a.a.createElement("span",null,"Total Hacknet ",t?"Server":"Node"," Production: "),n)}},function(e,t,n){"use strict";n.d(t,"a",function(){return s});var r=n(0),a=n.n(r),i=n(450);function o(e){return a.a.createElement("button",{className:e.className,onClick:e.onClick},e.text)}function s(e){if(null==e.purchaseMultiplier)throw new Error("MultiplierButtons constructed without required props");const t=["x1","x5","x10","MAX"],n=e.onClicks,r=[];for(let s=0;s=e.getUpgradeCost(t.name)){Object(i.n)(t.name,this.state.selectedServer)?this.props.rerender():Object(p.dialogBoxCreate)("Failed to purchase upgrade. This may be because you do not have enough hashes, or because you do not have access to the feature this upgrade affects.")}}render(){const e=this.props.hashManager,t=this.props.upg,n=e.getUpgradeCost(t.name),r=e.hashes>=n?"std-button":"std-button-disabled";return a.a.createElement("div",{className:"bladeburner-action"},a.a.createElement(h.CopyableText,{value:t.name}),a.a.createElement("p",null,"Cost: ",Object(d.Hashes)(n)),a.a.createElement("p",null,t.desc),a.a.createElement("button",{className:r,onClick:this.purchase},"Purchase"),t.hasTargetServer&&a.a.createElement(m.a,{serverType:m.b.Foreign,onChange:this.changeTargetServer,style:{margin:"5px"}}))}}class g extends a.a.Component{constructor(e){super(e),this.state={totalHashes:l.Player.hashManager.hashes}}componentDidMount(){this.interval=setInterval(()=>this.tick(),1e3)}componentWillUnmount(){clearInterval(this.interval)}tick(){this.setState({totalHashes:l.Player.hashManager.hashes})}render(){const e=this.props.rerender,t=l.Player.hashManager;if(!(t instanceof o.HashManager))throw new Error("Player does not have a HashManager)");const n=Object.keys(s.HashUpgrades).map(n=>{const r=s.HashUpgrades[n];return a.a.createElement(_,{upg:r,hashManager:t,key:r.name,rerender:e})});return a.a.createElement("div",null,a.a.createElement(u.PopupCloseButton,{popup:this.props.popupId,text:"Close"}),a.a.createElement("p",null,"Spend your hashes on a variety of different upgrades"),a.a.createElement("p",null,"Hashes: ",c.numeralWrapper.formatHashes(this.state.totalHashes)),n)}}},function(e,t,n){"use strict";n.d(t,"a",function(){return m});var r=n(0),a=n.n(r),i=n(37),o=n(30),s=n(1),l=n(31),c=n(140),u=n(449);class m extends a.a.Component{render(){const e=this.props.node,t=this.props.purchaseMultiplier,n=this.props.recalculate;let r,m;if(e.level>=i.HacknetServerConstants.MaxLevel)r=a.a.createElement(a.a.Fragment,null,"MAX LEVEL"),m="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.f)(e,i.HacknetServerConstants.MaxLevel);else{const r=i.HacknetServerConstants.MaxLevel-e.level;n=Math.min(r,t)}const c=e.calculateLevelUpgradeCost(n,s.Player.hacknet_node_level_cost_mult);r=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(c)),m=s.Player.money.lt(c)?"std-button-disabled":"std-button"}let p,h;if(e.maxRam>=i.HacknetServerConstants.MaxRam)p=a.a.createElement(a.a.Fragment,null,"MAX RAM"),h="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.g)(e,i.HacknetServerConstants.MaxRam);else{const r=Math.round(Math.log2(i.HacknetServerConstants.MaxRam/e.maxRam));n=Math.min(r,t)}const r=e.calculateRamUpgradeCost(n,s.Player.hacknet_node_ram_cost_mult);p=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),h=s.Player.money.lt(r)?"std-button-disabled":"std-button"}let d,_;if(e.cores>=i.HacknetServerConstants.MaxCores)d=a.a.createElement(a.a.Fragment,null,"MAX CORES"),_="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.e)(e,i.HacknetServerConstants.MaxCores);else{const r=i.HacknetServerConstants.MaxCores-e.cores;n=Math.min(r,t)}const r=e.calculateCoreUpgradeCost(n,s.Player.hacknet_node_core_cost_mult);d=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),_=s.Player.money.lt(r)?"std-button-disabled":"std-button"}let g,y;if(e.cache>=i.HacknetServerConstants.MaxCache)g=a.a.createElement(a.a.Fragment,null,"MAX CACHE"),y="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.d)(e,i.HacknetServerConstants.MaxCache);else{const r=i.HacknetServerConstants.MaxCache-e.cache;n=Math.min(r,t)}const r=e.calculateCacheUpgradeCost(n);g=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),y=s.Player.money.lt(r)?"std-button-disabled":"std-button"}return a.a.createElement("li",{className:"hacknet-node"},a.a.createElement("div",{className:"hacknet-node-container"},a.a.createElement("div",{className:"row"},a.a.createElement("h1",{style:{fontSize:"1em"}},e.hostname)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Production:"),a.a.createElement("span",{className:"text money-gold"},Object(c.Hashes)(e.totalHashesGenerated)," (",Object(u.HashRate)(e.hashRate),")")),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Hash Capacity:"),a.a.createElement("span",{className:"text"},Object(c.Hashes)(e.hashCapacity))),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Level:"),a.a.createElement("span",{className:"text upgradable-info"},e.level),a.a.createElement("button",{className:m,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.f)(e,i.HacknetServerConstants.MaxLevel)),Object(o.o)(e,r),n(),!1}},r)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"RAM:"),a.a.createElement("span",{className:"text upgradable-info"},e.maxRam,"GB"),a.a.createElement("button",{className:h,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.g)(e,i.HacknetServerConstants.MaxRam)),Object(o.p)(e,r),n(),!1}},p)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Cores:"),a.a.createElement("span",{className:"text upgradable-info"},e.cores),a.a.createElement("button",{className:_,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.e)(e,i.HacknetServerConstants.MaxCores)),Object(o.l)(e,r),n(),!1}},d)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Cache Level:"),a.a.createElement("span",{className:"text upgradable-info"},e.cache),a.a.createElement("button",{className:y,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.d)(e,i.HacknetServerConstants.MaxCache)),Object(o.k)(e,r),n(),Object(o.r)(),!1}},g))))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return u});var r=n(0),a=n.n(r),i=n(37),o=n(30),s=n(1),l=n(31),c=n(125);class u extends a.a.Component{render(){const e=this.props.node,t=this.props.purchaseMultiplier,n=this.props.recalculate;let r,u;if(e.level>=i.HacknetNodeConstants.MaxLevel)r=a.a.createElement(a.a.Fragment,null,"MAX LEVEL"),u="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.f)(e,i.HacknetNodeConstants.MaxLevel);else{const r=i.HacknetNodeConstants.MaxLevel-e.level;n=Math.min(r,t)}const c=e.calculateLevelUpgradeCost(n,s.Player.hacknet_node_level_cost_mult);r=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(c)),u=s.Player.money.lt(c)?"std-button-disabled":"std-button"}let m,p;if(e.ram>=i.HacknetNodeConstants.MaxRam)m=a.a.createElement(a.a.Fragment,null,"MAX RAM"),p="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.g)(e,i.HacknetNodeConstants.MaxRam);else{const r=Math.round(Math.log2(i.HacknetNodeConstants.MaxRam/e.ram));n=Math.min(r,t)}const r=e.calculateRamUpgradeCost(n,s.Player.hacknet_node_ram_cost_mult);m=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),p=s.Player.money.lt(r)?"std-button-disabled":"std-button"}let h,d;if(e.cores>=i.HacknetNodeConstants.MaxCores)h=a.a.createElement(a.a.Fragment,null,"MAX CORES"),d="std-button-disabled";else{let n=0;if("MAX"===t)n=Object(o.e)(e,i.HacknetNodeConstants.MaxCores);else{const r=i.HacknetNodeConstants.MaxCores-e.cores;n=Math.min(r,t)}const r=e.calculateCoreUpgradeCost(n,s.Player.hacknet_node_core_cost_mult);h=a.a.createElement(a.a.Fragment,null,"Upgrade x",n," - ",Object(l.Money)(r)),d=s.Player.money.lt(r)?"std-button-disabled":"std-button"}return a.a.createElement("li",{className:"hacknet-node"},a.a.createElement("div",{className:"hacknet-node-container"},a.a.createElement("div",{className:"row"},a.a.createElement("h1",{style:{fontSize:"1em"}},e.name)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Production:"),a.a.createElement("span",{className:"text money-gold"},Object(l.Money)(e.totalMoneyGenerated)," (",Object(c.MoneyRate)(e.moneyGainRatePerSecond),")")),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Level:"),a.a.createElement("span",{className:"text upgradable-info"},e.level),a.a.createElement("button",{className:u,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.f)(e,i.HacknetNodeConstants.MaxLevel)),Object(o.o)(e,r),n(),!1}},r)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"RAM:"),a.a.createElement("span",{className:"text upgradable-info"},e.ram,"GB"),a.a.createElement("button",{className:p,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.g)(e,i.HacknetNodeConstants.MaxRam)),Object(o.p)(e,r),n(),!1}},m)),a.a.createElement("div",{className:"row"},a.a.createElement("p",null,"Cores:"),a.a.createElement("span",{className:"text upgradable-info"},e.cores),a.a.createElement("button",{className:d,onClick:()=>{let r=t;return"MAX"===t&&(r=Object(o.e)(e,i.HacknetNodeConstants.MaxCores)),Object(o.l)(e,r),n(),!1}},h))))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r=n(0),a=n.n(r),i=n(30);class o extends a.a.Component{getSecondParagraph(){return Object(i.h)()?"Here, you can purchase a Hacknet Server, an upgraded version of the Hacknet Node. Hacknet Servers will perform computations and operations on the network, earning you hashes. Hashes can be spent on a variety of different upgrades.":"Here, you can purchase a Hacknet Node, a specialized machine that can connect and contribute its resources to the Hacknet network. This allows you to take a small percentage of profits from hacks performed on the network. Essentially, you are renting out your Node's computing power."}getThirdParagraph(){return Object(i.h)()?"Hacknet Servers can also be used as servers to run scripts. However, running scripts on a server will reduce its hash rate (hashes generated per second). A Hacknet Server's hash rate will be reduced by the percentage of RAM that is being used by that Server to run scripts.":"Each Hacknet Node you purchase will passively earn you money. Each Hacknet Node can be upgraded in order to increase its computing power and thereby increase the profit you earn from it."}render(){return a.a.createElement("div",null,a.a.createElement("p",{className:"hacknet-general-info"},"The Hacknet is a global, decentralized network of machines. It is used by hackers all around the world to anonymously share computing power and perform distributed cyberattacks without the fear of being traced."),a.a.createElement("p",{className:"hacknet-general-info"},this.getSecondParagraph()),a.a.createElement("p",{className:"hacknet-general-info"},this.getThirdParagraph()))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return c});var r=n(72),a=n(17),i=n(1),o=n(54),s=n(16);function l(){document.getElementById("faction-invitation-box-container").style.display="none"}function c(e){!function(e){document.getElementById("faction-invitation-box-text").innerHTML=e}("You have received a faction invitation from "+e.name),e.alreadyInvited=!0,i.Player.factionInvitations.push(e.name),s.routing.isOn(s.Page.Factions)&&a.Engine.loadFactionsContent(),Object(o.clearEventListeners)("faction-invitation-box-yes").addEventListener("click",function(){return-1===i.Player.factionInvitations.findIndex(t=>t===e.name)&&console.error("Could not find faction in Player.factionInvitations"),Object(r.joinFaction)(e),l(),s.routing.isOn(s.Page.Factions)&&a.Engine.loadFactionsContent(),!1}),Object(o.clearEventListeners)("faction-invitation-box-no").addEventListener("click",function(){return l(),!1}),document.getElementById("faction-invitation-box-container").style.display="flex"}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.FactionRoot=void 0;const o=i(n(0)),s=n(1194),l=n(1191),c=n(1190),u=n(1187),m=n(11),p=n(25),h=n(682),d=n(48),_=n(58),g="Create and manage a gang for this Faction. Gangs will earn you money and faction reputation",y="Attempt a hacking mission for your faction. A mission is a mini game that, if won, earns you significant reputation with this faction. (Recommended hacking level: 200+)",f="Complete hacking contracts for your faction. Your effectiveness, which determines how much reputation you gain for this faction, is based on your hacking skill. You will gain hacking exp.",b="Carry out field missions for your faction. Your effectiveness, which determines how much reputation you gain for this faction, is based on all of your stats. You will gain exp for all stats.",E="Serve in a security detail for your faction. Your effectiveness, which determines how much reputation you gain for this faction, is based on your combat stats. You will gain exp for all combat stats.",v="As your reputation with this faction rises, you will unlock Augmentations, which you can purchase to enhance your abilities.",k="Purchase Duplicate Sleeves and upgrades. These are permanent!",C=["Slum Snakes","Tetrads","The Syndicate","The Dark Army","Speakers for the Dead","NiteSec","The Black Hand"];t.FactionRoot=class extends o.Component{constructor(e){super(e),this.state={rerenderFlag:!1,purchasingAugs:!!e.initiallyOnAugmentationsPage&&e.initiallyOnAugmentationsPage},this.manageGang=this.manageGang.bind(this),this.rerender=this.rerender.bind(this),this.routeToMain=this.routeToMain.bind(this),this.routeToPurchaseAugs=this.routeToPurchaseAugs.bind(this),this.sleevePurchases=this.sleevePurchases.bind(this),this.startFieldWork=this.startFieldWork.bind(this),this.startHackingContracts=this.startHackingContracts.bind(this),this.startHackingMission=this.startHackingMission.bind(this),this.startSecurityWork=this.startSecurityWork.bind(this)}manageGang(){if(this.props.p.inGang())return this.props.engine.loadGangContent();const e=this.props.faction.name;let t=!1;"NiteSec"!==e&&"The Black Hand"!==e||(t=!0);const n=_.yesNoBoxGetYesButton(),r=_.yesNoBoxGetNoButton();if(null==n||null==r)return;n.innerHTML="Create Gang",n.addEventListener("click",()=>{this.props.p.startGang(e,t);const n=document.getElementById("world-menu-header");n instanceof HTMLElement&&(n.click(),n.click()),this.props.engine.loadGangContent(),_.yesNoBoxClose()}),r.innerHTML="Cancel",r.addEventListener("click",()=>{_.yesNoBoxClose()});let a="";a=t?"This is a HACKING gang. Members in this gang will have different tasks than COMBAT gangs. Compared to combat gangs, progression with hacking gangs is more straightforward as territory warfare is not as important.

":"This is a COMBAT gang. Members in this gang will have different tasks than HACKING gangs. Compared to hacking gangs, progression with combat gangs can be more difficult as territory management is more important. However, well-managed combat gangs can progress faster than hacking ones.

",_.yesNoBoxCreate(`Would you like to create a new Gang with ${e}?

`+"Note that this will prevent you from creating a Gang with any other Faction until this BitNode is destroyed. It also resets your reputation with this faction.

"+a+"Other than hacking vs combat, there are NO differences between the Factions you can create a Gang with, and each of these Factions have all Augmentations available.")}rerender(){this.setState(e=>({rerenderFlag:!e.rerenderFlag}))}routeToMain(){this.setState({purchasingAugs:!1})}routeToPurchaseAugs(){this.setState({purchasingAugs:!0})}sleevePurchases(){h.createSleevePurchasesFromCovenantPopup(this.props.p)}startFieldWork(){this.props.p.startFactionFieldWork(this.props.faction)}startHackingContracts(){this.props.p.startFactionHackWork(this.props.faction)}startHackingMission(){const e=this.props.faction;this.props.p.singularityStopWork(),this.props.engine.loadMissionContent(),this.props.startHackingMissionFn(e)}startSecurityWork(){this.props.p.startFactionSecurityWork(this.props.faction)}render(){return this.state.purchasingAugs?this.renderAugmentationsPage():this.renderMainPage()}renderMainPage(){const e=this.props.p,t=this.props.faction,n=t.getInfo(),r=e.inGang()&&e.getGangName()===t.name,a=Math.floor(m.CONSTANTS.BaseFavorToDonate*p.BitNodeMultipliers.RepToDonateToFaction),i=t.favor>=a,s="The Covenant"===t.name&&e.bitNodeN>=10&&d.SourceFileFlags[10];let h=e.canAccessGang()&&C.includes(t.name);return e.inGang()&&(e.getGangName()!==t.name?h=!1:e.getGangName()===t.name&&(h=!0)),o.createElement("div",null,o.createElement("h1",null,t.name),o.createElement(c.Info,{faction:t,factionInfo:n}),h&&o.createElement(u.Option,{buttonText:"Manage Gang",infoText:g,onClick:this.manageGang}),!r&&n.offerHackingMission&&o.createElement(u.Option,{buttonText:"Hacking Mission",infoText:y,onClick:this.startHackingMission}),!r&&n.offerHackingWork&&o.createElement(u.Option,{buttonText:"Hacking Contracts",infoText:f,onClick:this.startHackingContracts}),!r&&n.offerFieldWork&&o.createElement(u.Option,{buttonText:"Field Work",infoText:b,onClick:this.startFieldWork}),!r&&n.offerSecurityWork&&o.createElement(u.Option,{buttonText:"Security Work",infoText:E,onClick:this.startSecurityWork}),!r&&n.offersWork()&&o.createElement(l.DonateOption,{faction:this.props.faction,p:this.props.p,rerender:this.rerender,favorToDonate:a,disabled:!i}),o.createElement(u.Option,{buttonText:"Purchase Augmentations",infoText:v,onClick:this.routeToPurchaseAugs}),s&&o.createElement(u.Option,{buttonText:"Purchase & Upgrade Duplicate Sleeves",infoText:k,onClick:this.sleevePurchases}))}renderAugmentationsPage(){return o.createElement("div",null,o.createElement(s.AugmentationsPage,{faction:this.props.faction,p:this.props.p,routeToMainPage:this.routeToMain}))}}},function(e,t,n){"use strict";n.r(t),n.d(t,"canAccessBladeburner",function(){return i}),n.d(t,"inBladeburner",function(){return o}),n.d(t,"startBladeburner",function(){return s});var r=n(98),a=n(48);function i(){return 8!==this.bitNodeN&&(6===this.bitNodeN||7===this.bitNodeN||a.SourceFileFlags[6]>0||a.SourceFileFlags[7]>0)}function o(){return null!=this.bladeburner&&this.bladeburner instanceof r.a}function s(){this.bladeburner=new r.a({new:!0})}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.hasAugmentation=void 0;const r=n(21);t.hasAugmentation=function(e){const t=e instanceof r.Augmentation?e.name:e;for(const e of this.augmentations)if(e.name===t)return!0;for(const e of this.queuedAugmentations)if(e.name===t)return!0;return!1}},function(e,t,n){"use strict";n.d(t,"a",function(){return d});var r=n(769),a=n(768),i=n(744),o=n(743),s=n(742),l=n(739),c=n(183),u=n(39),m=n(185),p=n(24),h=n(59);function d(){this.hacking_skill=1,this.hp=10,this.max_hp=10,this.strength=1,this.defense=1,this.dexterity=1,this.agility=1,this.charisma=1,this.intelligence=0,this.hacking_chance_mult=1,this.hacking_speed_mult=1,this.hacking_money_mult=1,this.hacking_grow_mult=1,this.hacking_exp=0,this.strength_exp=0,this.defense_exp=0,this.dexterity_exp=0,this.agility_exp=0,this.charisma_exp=0,this.intelligence_exp=0,this.hacking_mult=1,this.strength_mult=1,this.defense_mult=1,this.dexterity_mult=1,this.agility_mult=1,this.charisma_mult=1,this.hacking_exp_mult=1,this.strength_exp_mult=1,this.defense_exp_mult=1,this.dexterity_exp_mult=1,this.agility_exp_mult=1,this.charisma_exp_mult=1,this.company_rep_mult=1,this.faction_rep_mult=1,this.money=new h.a(1e3),this.homeComputer="",this.city=u.CityName.Sector12,this.location="",this.jobs={},this.companyName="",this.currentServer="",this.purchasedServers=[],this.hacknetNodes=[],this.hashManager=new c.HashManager,this.factions=[],this.factionInvitations=[],this.queuedAugmentations=[],this.augmentations=[],this.sourceFiles=[],this.numPeopleKilled=0,this.karma=0,this.crime_money_mult=1,this.crime_success_mult=1,this.isWorking=!1,this.focus=!1,this.workType="",this.currentWorkFactionName="",this.currentWorkFactionDescription="",this.workHackExpGainRate=0,this.workStrExpGainRate=0,this.workDefExpGainRate=0,this.workDexExpGainRate=0,this.workAgiExpGainRate=0,this.workChaExpGainRate=0,this.workRepGainRate=0,this.workMoneyGainRate=0,this.workMoneyLossRate=0,this.workHackExpGained=0,this.workStrExpGained=0,this.workDefExpGained=0,this.workDexExpGained=0,this.workAgiExpGained=0,this.workChaExpGained=0,this.workRepGained=0,this.workMoneyGained=0,this.createProgramName="",this.createProgramReqLvl=0,this.className="",this.crimeType="",this.timeWorked=0,this.timeWorkedCreateProgram=0,this.timeNeededToCompleteWork=0,this.work_money_mult=1,this.hacknet_node_money_mult=1,this.hacknet_node_purchase_cost_mult=1,this.hacknet_node_ram_cost_mult=1,this.hacknet_node_core_cost_mult=1,this.hacknet_node_level_cost_mult=1,this.hasWseAccount=!1,this.hasTixApiAccess=!1,this.has4SData=!1,this.has4SDataTixApi=!1,this.gang=0,this.corporation=0,this.bladeburner=0,this.bladeburner_max_stamina_mult=1,this.bladeburner_stamina_gain_mult=1,this.bladeburner_analysis_mult=1,this.bladeburner_success_chance_mult=1,this.sleeves=[],this.resleeves=[],this.sleevesFromCovenant=0,this.bitNodeN=1,this.firstFacInvRecvd=!1,this.firstAugPurchased=!1,this.firstTimeTraveled=!1,this.firstProgramAvailable=!1,this.lastUpdate=0,this.totalPlaytime=0,this.playtimeSinceLastAug=0,this.playtimeSinceLastBitnode=0,this.moneySourceA=new m.MoneySourceTracker,this.moneySourceB=new m.MoneySourceTracker,this.scriptProdSinceLastAug=0,this.exploits=[]}Object.assign(d.prototype,s,l,a,i,o,r),d.prototype.toJSON=function(){return Object(p.Generic_toJSON)("PlayerObject",this)},d.fromJSON=function(e){return Object(p.Generic_fromJSON)(d,e.data)},p.Reviver.constructors.PlayerObject=d},function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(77),o=n(3),s=n(12);class l extends i.a{render(){const e=this.props.upgradeData,t=`${e[2]} - ${o.numeralWrapper.formatMoney(e[1])}`,n=e[3];return a.a.createElement("div",{className:"cmpy-mgmt-upgrade-div tooltip",style:{width:"45%"},onClick:()=>{const t=this.corp();t.funds.lt(e[1])?Object(s.dialogBoxCreate)("Insufficient funds"):(t.unlock(e),t.rerender())}},t,a.a.createElement("span",{className:"tooltiptext"},n))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(77),o=n(3),s=n(12);class l extends i.a{render(){const e=this.props.upgradeData,t=this.props.upgradeLevel,n=e[1],r=e[2],i=n*Math.pow(r,t),l=`${e[4]} - ${o.numeralWrapper.formatMoney(i)}`,c=e[5];return a.a.createElement("div",{className:"cmpy-mgmt-upgrade-div tooltip",style:{width:"45%"},onClick:()=>{const t=this.corp();t.funds.lt(i)?Object(s.dialogBoxCreate)("Insufficient funds"):(t.upgrade(e),t.rerender())}},l,a.a.createElement("span",{className:"tooltiptext"},c))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return _});var r=n(0),a=n.n(r),i=n(77),o=n(772),s=n(771),l=n(43),c=n(455),u=n(454),m=n(11),p=n(3),h=n(13);function d(){return(d=Object.assign||function(e){for(var t=1;t=0?p.numeralWrapper.formatMoney(e):"-"+p.numeralWrapper.format(-1*e,"$0.000a");let n="";if(this.corp().dividendPercentage>0&&e>0){const t=this.corp().dividendPercentage/100*e,r=e-t,a=t/this.corp().totalShares,i=this.corp().numShares*a;n=`Retained Profits (after dividends): ${p.numeralWrapper.format(r,"$0.000a")} / s

`+`Dividend Percentage: ${p.numeralWrapper.format(this.corp().dividendPercentage/100,"0%")}
`+`Dividends per share: ${p.numeralWrapper.format(a,"$0.000a")} / s
`+`Your earnings as a shareholder (Pre-Tax): ${p.numeralWrapper.format(i,"$0.000a")} / s
`+`Dividend Tax Rate: ${this.corp().dividendTaxPercentage}%
`+`Your earnings as a shareholder (Post-Tax): ${p.numeralWrapper.format(i*(1-this.corp().dividendTaxPercentage/100),"$0.000a")} / s

`}let r="Total Funds: "+p.numeralWrapper.format(this.corp().funds.toNumber(),"$0.000a")+"
Total Revenue: "+p.numeralWrapper.format(this.corp().revenue.toNumber(),"$0.000a")+" / s
Total Expenses: "+p.numeralWrapper.format(this.corp().expenses.toNumber(),"$0.000a")+" / s
Total Profits: "+t+" / s
"+n+"Publicly Traded: "+(this.corp().public?"Yes":"No")+"
Owned Stock Shares: "+p.numeralWrapper.format(this.corp().numShares,"0.000a")+"
Stock Price: "+(this.corp().public?p.numeralWrapper.formatMoney(this.corp().sharePrice):"N/A")+"

Total Stock Shares: "+p.numeralWrapper.format(this.corp().totalShares,"0.000a")+""+`Outstanding Shares: ${p.numeralWrapper.format(this.corp().issuedShares,"0.000a")}
`+`Private Shares: ${p.numeralWrapper.format(this.corp().totalShares-this.corp().issuedShares-this.corp().numShares,"0.000a")}`+"



";const a=this.corp().storedCycles*m.CONSTANTS.MilliPerCycle;a>15e3&&(r+=`Bonus time: ${Object(h.convertTimeMsToTimeElapsedString)(a)}

`);let i=this.corp().getProductionMultiplier(),o=this.corp().getStorageMultiplier(),s=this.corp().getAdvertisingMultiplier(),l=this.corp().getEmployeeCreMultiplier(),c=this.corp().getEmployeeChaMultiplier(),u=this.corp().getEmployeeIntMultiplier(),d=this.corp().getEmployeeEffMultiplier(),_=this.corp().getSalesMultiplier(),g=this.corp().getScientificResearchMultiplier();return i>1&&(r+="Production Multiplier: "+p.numeralWrapper.format(i,"0.000")+"
"),o>1&&(r+="Storage Multiplier: "+p.numeralWrapper.format(o,"0.000")+"
"),s>1&&(r+="Advertising Multiplier: "+p.numeralWrapper.format(s,"0.000")+"
"),l>1&&(r+="Empl. Creativity Multiplier: "+p.numeralWrapper.format(l,"0.000")+"
"),c>1&&(r+="Empl. Charisma Multiplier: "+p.numeralWrapper.format(c,"0.000")+"
"),u>1&&(r+="Empl. Intelligence Multiplier: "+p.numeralWrapper.format(u,"0.000")+"
"),d>1&&(r+="Empl. Efficiency Multiplier: "+p.numeralWrapper.format(d,"0.000")+"
"),_>1&&(r+="Sales Multiplier: "+p.numeralWrapper.format(_,"0.000")+"
"),g>1&&(r+="Scientific Research Multiplier: "+p.numeralWrapper.format(g,"0.000")+"
"),r}renderButtons(){const e=this.corp().getStarterGuide.bind(this.corp()),t=this.createButton({class:"a-link-button",display:"inline-block",onClick:e,text:"Getting Started Guide",tooltip:"Get a copy of and read 'The Complete Handbook for Creating a Successful Corporation.' This is a .lit file that guides you through the beginning of setting up a Corporation and provides some tips/pointers for helping you get started with managing it."}),n=this.corp().determineValuation()>=l.a,r=this.eventHandler().createBribeFactionsPopup.bind(this.eventHandler()),a=n?"a-link-button":"a-link-button-inactive",i={bribeFactions:this.createButton({class:a,display:"inline-block",onClick:r,text:"Bribe Factions",tooltip:n?"Use your Corporations power and influence to bribe Faction leaders in exchange for reputation":"Your Corporation is not powerful enough to bribe Faction leaders"}),getStarterGuide:t};return this.corp().public?this.renderPublicButtons(i):this.renderPrivateButtons(i)}renderPrivateButtons(e){const t=this.corp().fundingRound<4,n=t?"std-button":"a-link-button-inactive",r=t?"Search for private investors who will give you startup funding in exchangefor equity (stock shares) in your company":null,i=this.corp().getInvestment.bind(this.corp()),o=this.corp().goPublic.bind(this.corp()),s=this.createButton({class:n,onClick:i,style:"inline-block",text:"Find Investors",tooltip:r}),l=this.createButton({class:"std-button",onClick:o,style:"inline-block",text:"Go Public",tooltip:"Become a publicly traded and owned entity. Going public involves issuing shares for an IPO. Once you are a public company, your shares will be traded on the stock market."});return a.a.createElement("div",null,e.getStarterGuide,s,l,a.a.createElement("br",null),e.bribeFactions)}renderPublicButtons(e){const t=this.corp(),n=this.eventHandler().createSellSharesPopup.bind(this.eventHandler()),r=t.shareSaleCooldown>0,i=r?"a-link-button-inactive":"std-button",o=r?"Cannot sell shares for "+t.convertCooldownToString(t.shareSaleCooldown):"Sell your shares in the company. The money earned from selling your shares goes into your personal account, not the Corporation's. This is one of the only ways to profit from your business venture.",s=this.createButton({class:i,display:"inline-block",onClick:function(e){e.isTrusted&&n(e)},text:"Sell Shares",tooltip:o}),l=this.eventHandler().createBuybackSharesPopup.bind(this.eventHandler()),c=this.createButton({class:"std-button",display:"inline-block",onClick:l,text:"Buyback shares",tooltip:"Buy back shares you that previously issued or sold at market price."}),u=this.eventHandler().createIssueNewSharesPopup.bind(this.eventHandler()),m=t.issueNewSharesCooldown>0,p=m?"a-link-button-inactive":"std-button",h=m?"Cannot issue new shares for "+t.convertCooldownToString(t.issueNewSharesCooldown):"Issue new equity shares to raise capital.",d=this.createButton({class:p,display:"inline-block",onClick:u,text:"Issue New Shares",tooltip:h}),_=this.eventHandler().createIssueDividendsPopup.bind(this.eventHandler()),g=this.createButton({class:"std-button",display:"inline-block",onClick:_,text:"Issue Dividends",tooltip:"Manage the dividends that are paid out to shareholders (including yourself)"});return a.a.createElement("div",null,e.getStarterGuide,s,c,a.a.createElement("br",null),d,g,a.a.createElement("br",null),e.bribeFactions)}renderUpgrades(){if(this.corp().divisions.length<=0)return;const e=[];Object.values(c.CorporationUnlockUpgrades).forEach(t=>{0===this.corp().unlockUpgrades[t[0]]&&e.push(this.renderUnlockUpgrade(t))});const t=[];for(let e=0;ethis.renderLevelableUpgrade(e)))}renderUnlockUpgrade(e){return a.a.createElement(s.a,d({},this.props,{upgradeData:e,key:e[0]}))}renderLevelableUpgrade(e){return a.a.createElement(o.a,d({},this.props,{upgradeData:e.upgradeData,upgradeLevel:e.upgradeLevel,key:e.upgradeData[0]}))}render(){return a.a.createElement("div",null,a.a.createElement("p",{dangerouslySetInnerHTML:{__html:this.getOverviewText()}}),this.renderButtons(),a.a.createElement("br",null),this.renderUpgrades())}}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"a",function(){return IndustryWarehouse});var react__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(0),react__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(react__WEBPACK_IMPORTED_MODULE_0__),_BaseReactComponent__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(77),_Corporation__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(43),_Material__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(297),_Material__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_Material__WEBPACK_IMPORTED_MODULE_3__),_Product__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(210),_Product__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(_Product__WEBPACK_IMPORTED_MODULE_4__),_Warehouse__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(128),_Warehouse__WEBPACK_IMPORTED_MODULE_5___default=__webpack_require__.n(_Warehouse__WEBPACK_IMPORTED_MODULE_5__),_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(3),_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6___default=__webpack_require__.n(_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__),_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(65),_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7___default=__webpack_require__.n(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__);function ProductComponent(e){const t=e.corp,n=e.division,r=e.city,a=e.product,i=e.eventHandler,o="0.000",s="0.000a",l=n.hasResearch("uPgrade: Dashboard"),c=a.data[r][1]-a.data[r][2];let u;if(u=a.sllman[r][0]?Object(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__.isString)(a.sllman[r][1])?`Sell (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][2],s)}/${a.sllman[r][1]})`:`Sell (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][2],s)}/${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.sllman[r][1],s)})`:"Sell (0.000/0.000)",a.marketTa2)u+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a.marketTa2Price[r]);else if(a.marketTa1){const e=a.rat/a.mku;u+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a.pCost+e)}else a.sCost&&(Object(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__.isString)(a.sCost)?u+=" @ "+a.sCost:u+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.sCost,"$0.000a"));const m=i.createSellProductPopup.bind(i,a,r);let p="Limit Production";a.prdman[r][0]&&(p+=" ("+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.prdman[r][1],o)+")");const h=i.createLimitProductProdutionPopup.bind(i,a,r),d=i.createDiscontinueProductPopup.bind(i,a,n),_=i.createProductMarketTaPopup.bind(i,a,n);return a.fin?react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-product-div"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},a.name,": ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][0],s)," (",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(c,s),"/s)",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Prod: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][1],s),"/s",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Sell: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.data[r][2],s)," /s")),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"Rating: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.rat,o),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Quality: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.qlt,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Performance: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.per,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Durability: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.dur,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Reliability: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.rel,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Aesthetics: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.aes,o)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Features: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.fea,o),1===t.unlockUpgrades[2]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),1===t.unlockUpgrades[2]&&"Demand: "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.dmd,o),1===t.unlockUpgrades[3]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),1===t.unlockUpgrades[3]&&"Competition: "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.cmp,o))),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"Est. Production Cost: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a.pCost/_Corporation__WEBPACK_IMPORTED_MODULE_2__.j),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"An estimate of the material cost it takes to create this Product.")),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"Est. Market Price: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a.pCost),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"An estimate of how much consumers are willing to pay for this product. Setting the sale price above this may result in less sales. Setting the sale price below this may result in more sales.")),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",null,react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:m},u),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:h},p),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:d},"Discontinue"),n.hasResearch("Market-TA.I")&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:_},"Market-TA"))):l?react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-product-div"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,"Designing ",a.name,"..."),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.prog,"0.00"),"% complete"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",null,react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:m},u),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:h},p),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:d},"Discontinue"),n.hasResearch("Market-TA.I")&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:_},"Market-TA"))):react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-product-div"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,"Designing ",a.name,"..."),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(a.prog,"0.00"),"% complete"))}function MaterialComponent(props){const corp=props.corp,division=props.division,warehouse=props.warehouse,city=props.city,mat=props.mat,eventHandler=props.eventHandler,markupLimit=mat.getMarkupLimit(),office=division.offices[city];if(!(office instanceof _Corporation__WEBPACK_IMPORTED_MODULE_2__.i))throw new Error(`Could not get OfficeSpace object for this city (${city})`);const nf="0.000",nfB="0.000a",totalGain=mat.buy+mat.prd+mat.imp-mat.sll-mat.totalExp,tutorial=division.newInd&&Object.keys(division.reqMats).includes(mat.name)&&0===mat.buy&&0===mat.imp,purchaseButtonText=`Buy (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.buy,nfB)})`,purchaseButtonClass=tutorial?"std-button flashing-button tooltip":"std-button",purchaseButtonOnClick=eventHandler.createPurchaseMaterialPopup.bind(eventHandler,mat,division,warehouse),exportButtonOnClick=eventHandler.createExportMaterialPopup.bind(eventHandler,mat);let sellButtonText;if(mat.sllman[0]){if(sellButtonText=Object(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__.isString)(mat.sllman[1])?`Sell (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.sll,nfB)}/${mat.sllman[1]})`:`Sell (${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.sll,nfB)}/${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.sllman[1],nfB)})`,mat.marketTa2)sellButtonText+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(mat.marketTa2Price);else if(mat.marketTa1)sellButtonText+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(mat.bCost+markupLimit);else if(mat.sCost)if(Object(_utils_helpers_isString__WEBPACK_IMPORTED_MODULE_7__.isString)(mat.sCost)){var sCost=mat.sCost.replace(/MP/g,mat.bCost);sellButtonText+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(eval(sCost))}else sellButtonText+=" @ "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(mat.sCost)}else sellButtonText="Sell (0.000/0.000)";const sellButtonOnClick=eventHandler.createSellMaterialPopup.bind(eventHandler,mat),marketTaButtonOnClick=eventHandler.createMaterialMarketTaPopup.bind(eventHandler,mat,division);return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-material-div"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{style:{display:"inline-block"}},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},mat.name,": ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.qty,nfB)," (",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(totalGain,nfB),"/s)",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Buy: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.buy,nfB)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Prod: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.prd,nfB)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Sell: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.sll,nfB)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Export: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.totalExp,nfB)," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),"Import: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.imp,nfB),1===corp.unlockUpgrades[2]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),1===corp.unlockUpgrades[2]&&"Demand: "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.dmd,nf),1===corp.unlockUpgrades[3]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),1===corp.unlockUpgrades[3]&&"Competition: "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.cmp,nf))),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"MP: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(mat.bCost),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Market Price: The price you would pay if you were to buy this material on the market"))," ",react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip"},"Quality: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.format(mat.qlt,"0.00a"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"The quality of your material. Higher quality will lead to more sales"))),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{style:{display:"inline-block"}},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:purchaseButtonClass,onClick:purchaseButtonOnClick},purchaseButtonText,tutorial&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext"},"Purchase your required materials to get production started!")),1===corp.unlockUpgrades[0]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:exportButtonOnClick},"Export"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:sellButtonOnClick},sellButtonText),division.hasResearch("Market-TA.I")&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:marketTaButtonOnClick},"Market-TA")))}class IndustryWarehouse extends _BaseReactComponent__WEBPACK_IMPORTED_MODULE_1__.a{isRelevantMaterial(e,t){return!!Object.keys(t.reqMats).includes(e)||(!!t.prodMats.includes(e)||!!["Hardware","Robots","AICores","RealEstate"].includes(e))}renderWarehouseUI(){const e=this.corp(),t=this.routing().currentDivision,n=t.warehouses[this.props.currentCity],r={color:n.sizeUsed>=n.size?"red":"white",margin:"5px"},a=_Corporation__WEBPACK_IMPORTED_MODULE_2__.o*Math.pow(1.07,n.level+1),i=e.funds.gt(a)?"std-button":"a-link-button-inactive";let o="This Industry uses ["+Object.keys(t.reqMats).join(", ")+"] in order to ";t.prodMats.length>0?(o+="produce ["+t.prodMats.join(", ")+"] ",t.makesProducts&&(o+=" and "+t.getProductDescriptionText())):t.makesProducts&&(o+=t.getProductDescriptionText()+".");const s=[];for(const e in t.reqMats)if(t.reqMats.hasOwnProperty(e)){const n=[" *",t.reqMats[e],e].join(" ");s.push(react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{key:e},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,n)))}let l,c="in order to create ";switch(t.prodMats.length>0?(c+="one of each produced Material ("+t.prodMats.join(", ")+") ",t.makesProducts&&(c+="or to create one of its Products")):t.makesProducts&&(c+="one of its Products"),t.state){case"START":l="Current state: Preparing...";break;case"PURCHASE":l="Current state: Purchasing materials...";break;case"PRODUCTION":l="Current state: Producing materials and/or products...";break;case"SALE":l="Current state: Selling materials and/or products...";break;case"EXPORT":l="Current state: Exporting materials and/or products...";break;default:console.error(`Invalid state: ${t.state}`)}const u=[];for(const r in n.materials)n.materials[r]instanceof _Material__WEBPACK_IMPORTED_MODULE_3__.Material&&this.isRelevantMaterial(r,t)&&u.push(react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(MaterialComponent,{city:this.props.currentCity,corp:e,division:t,eventHandler:this.eventHandler(),key:r,mat:n.materials[r],warehouse:n}));const m=[];if(t.makesProducts&&Object.keys(t.products).length>0)for(const r in t.products)t.products[r]instanceof _Product__WEBPACK_IMPORTED_MODULE_4__.Product&&m.push(react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement(ProductComponent,{city:this.props.currentCity,corp:e,division:t,eventHandler:this.eventHandler(),key:r,product:t.products[r],warehouse:n}));return react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-panel"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",{className:"tooltip",style:r},"Storage: ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatBigNumber(n.sizeUsed)," / ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatBigNumber(n.size),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("span",{className:"tooltiptext",dangerouslySetInnerHTML:{__html:n.breakdown}})),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:i,onClick:()=>{++n.level,n.updateSize(e,t),e.funds=e.funds.minus(a),e.rerender()}},"Upgrade Warehouse Size - ",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(a)),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,o,". The exact requirements for production are:"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),s,react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,c),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,"To get started with production, purchase your required materials or import them from another of your company's divisions."),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("br",null),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("p",null,l),e.unlockUpgrades[1]&&react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",null,react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("label",{style:{color:"white"},htmlFor:"cmpy-mgmt-smart-supply-checkbox"},"Enable Smart Supply"),react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("input",{type:"checkbox",id:"cmpy-mgmt-smart-supply-checkbox",onChange:t=>{n.smartSupplyEnabled=t.target.checked,e.rerender()},style:{margin:"3px"},checked:n.smartSupplyEnabled})),u,m)}render(){const e=this.routing().currentDivision;if(null==e)throw new Error("Routing does not hold reference to the current Industry");const t=e.warehouses[this.props.currentCity],n=this.eventHandler().purchaseWarehouse.bind(this.eventHandler(),e,this.props.currentCity);return t instanceof _Warehouse__WEBPACK_IMPORTED_MODULE_5__.Warehouse?this.renderWarehouseUI():react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("div",{className:"cmpy-mgmt-warehouse-panel"},react__WEBPACK_IMPORTED_MODULE_0___default.a.createElement("button",{className:"std-button",onClick:n},"Purchase Warehouse (",_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_6__.numeralWrapper.formatMoney(_Corporation__WEBPACK_IMPORTED_MODULE_2__.m),")"))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return p});var r=n(0),a=n.n(r),i=n(77),o=n(43),s=n(36),l=n(311),c=n(3),u=n(12),m=n(160);class p extends i.a{renderMakeProductButton(){const e=this.routing().currentDivision;var t,n;switch(e.type){case s.Industries.Food:t="Build Restaurant",n="Build and manage a new restaurant!";break;case s.Industries.Tobacco:t="Create Product",n="Create a new tobacco product!";break;case s.Industries.Pharmaceutical:t="Create Drug",n="Design and develop a new pharmaceutical drug!";break;case s.Industries.Computer:case"Computer":t="Create Product",n="Design and manufacture a new computer hardware product!";break;case s.Industries.Robotics:t="Design Robot",n="Design and create a new robot or robotic system!";break;case s.Industries.Software:t="Develop Software",n="Develop a new piece of software!";break;case s.Industries.Healthcare:t="Build Hospital",n="Build and manage a new hospital!";break;case s.Industries.RealEstate:t="Develop Property",n="Develop a new piece of real estate property!";break;default:return t="Create Product",n="Create a new product!",""}n+="

To begin developing a product, first choose the city in which it will be designed. The stats of your employees in the selected city affect the properties of the finished product, such as its quality, performance, and durability.

You can also choose to invest money in the design and marketing of the product. Investing money in its design will result in a superior product. Investing money in marketing the product will help the product's sales.";const r=e.hasMaximumNumberProducts(),i=r?"a-link-button-inactive tooltip":"std-button",o=this.eventHandler().createMakeProductPopup.bind(this.eventHandler(),n,e);return a.a.createElement("button",{className:i,onClick:o,style:{margin:"6px",display:"inline-block"}},t,r&&a.a.createElement("span",{className:"tooltiptext"},"You have reached the maximum number of products: ",e.getMaximumNumberProducts()))}renderText(){const e=this.corp(),t=this.routing().currentDivision,n=1===e.unlockUpgrades[4],r=t.lastCycleRevenue.minus(t.lastCycleExpenses).toNumber(),i=`Industry: ${t.type} (Corp Funds: ${c.numeralWrapper.formatMoney(e.funds.toNumber())})`,o=`Awareness: ${c.numeralWrapper.format(t.awareness,"0.000")}`,s=`Popularity: ${c.numeralWrapper.format(t.popularity,"0.000")}`;let l=!1;const p=t.getAdvertisingFactors(),h=p[1],d=p[2],_=p[3],g=p[0];n&&(l=!0);const y=`Revenue: ${c.numeralWrapper.formatMoney(t.lastCycleRevenue.toNumber())} / s`,f=`Expenses: ${c.numeralWrapper.formatMoney(t.lastCycleExpenses.toNumber())} /s`,b=`Profit: ${c.numeralWrapper.formatMoney(r)} / s`;return a.a.createElement("div",null,i,a.a.createElement("br",null)," ",a.a.createElement("br",null),o," ",a.a.createElement("br",null),s," ",a.a.createElement("br",null),!1!==l&&a.a.createElement("p",{className:"tooltip"},"Advertising Multiplier: x",c.numeralWrapper.format(g,"0.000"),a.a.createElement("span",{className:"tooltiptext cmpy-mgmt-advertising-info"},"Total multiplier for this industrys sales due to its awareness and popularity",a.a.createElement("br",null),"Awareness Bonus: x",c.numeralWrapper.format(Math.pow(h,.85),"0.000"),a.a.createElement("br",null),"Popularity Bonus: x",c.numeralWrapper.format(Math.pow(d,.85),"0.000"),a.a.createElement("br",null),"Ratio Multiplier: x",c.numeralWrapper.format(Math.pow(_,.85),"0.000"))),l,a.a.createElement("br",null),a.a.createElement("br",null),y," ",a.a.createElement("br",null),f," ",a.a.createElement("br",null),b,a.a.createElement("br",null)," ",a.a.createElement("br",null),a.a.createElement("p",{className:"tooltip"},"Production Multiplier: ",c.numeralWrapper.format(t.prodMult,"0.00"),a.a.createElement("span",{className:"tooltiptext"},"Production gain from owning production-boosting materials such as hardware, Robots, AI Cores, and Real Estate")),a.a.createElement("div",{className:"help-tip",onClick:()=>{function e(e){return Object(m.createProgressBarText)({progress:e,totalTicks:20})}Object(u.dialogBoxCreate)("Owning Hardware, Robots, AI Cores, and Real Estate can boost your Industry's production. The effect these materials have on your production varies between Industries. For example, Real Estate may be very effective for some Industries, but ineffective for others.

This division's production multiplier is calculated by summing the individual production multiplier of each of its office locations. This production multiplier is applied to each office. Therefore, it is beneficial to expand into new cities as this can greatly increase the production multiplier of your entire Division.

Below are approximations for how effective each material is at boosting this industry's production multiplier (Bigger bars = more effective):

"+`Hardware:    ${e(t.hwFac)}
`+`Robots:      ${e(t.robFac)}
`+`AI Cores:    ${e(t.aiFac)}
`+`Real Estate: ${e(t.reFac)}`)}},"?"),a.a.createElement("br",null)," ",a.a.createElement("br",null),a.a.createElement("p",{className:"tooltip"},"Scientific Research: ",c.numeralWrapper.format(t.sciResearch.qty,"0.000a"),a.a.createElement("span",{className:"tooltiptext"},"Scientific Research increases the quality of the materials and products that you produce.")),a.a.createElement("button",{className:"help-tip",onClick:t.createResearchBox.bind(t)},"Research"))}renderUpgrades(){const e=this.corp(),t=this.routing().currentDivision,n=t.offices[this.props.currentCity];if(!(n instanceof o.i))throw new Error(`Current City (${this.props.currentCity}) for UI does not have an OfficeSpace object`);const r=[];for(const a in l.IndustryUpgrades){const i=l.IndustryUpgrades[a];if(t.hasResearch("AutoBrew")&&"Coffee"===i[4])continue;const o=i[0],s=i[1],m=i[2];let p=0;switch(o){case 0:p=n.employees.length*s;break;default:p=s*Math.pow(m,t.upgrades[o])}const h=()=>{e.funds.lt(p)?Object(u.dialogBoxCreate)("Insufficient funds"):(e.funds=e.funds.minus(p),t.upgrade(i,{corporation:e,office:n}),e.rerender())};r.push(this.renderUpgrade({onClick:h,text:`${i[4]} - ${c.numeralWrapper.formatMoney(p)}`,tooltip:i[5]}))}return r}renderUpgrade(e){return a.a.createElement("div",{className:"cmpy-mgmt-upgrade-div tooltip",onClick:e.onClick,key:e.text},e.text,null!=e.tooltip&&a.a.createElement("span",{className:"tooltiptext"},e.tooltip))}render(){const e=this.routing().currentDivision;if(null==e)throw new Error("Routing does not hold reference to the current Industry");const t=this.renderMakeProductButton();return a.a.createElement("div",{className:"cmpy-mgmt-industry-overview-panel"},this.renderText(),a.a.createElement("br",null),a.a.createElement("u",{className:"industry-purchases-and-upgrades-header"},"Purchases & Upgrades"),a.a.createElement("br",null),this.renderUpgrades()," ",a.a.createElement("br",null),e.makesProducts&&t)}}},function(e,t,n){"use strict";n.d(t,"a",function(){return u});var r=n(0),a=n.n(r),i=n(77),o=n(43),s=n(28),l=n(3),c=n(180);class u extends i.a{constructor(e){super(e),this.state={city:"",division:"",employeeManualAssignMode:!1,employee:null,numEmployees:0,numOperations:0,numEngineers:0,numBusiness:0,numManagement:0,numResearch:0,numUnassigned:0,numTraining:0},this.updateEmployeeCount()}resetEmployeeCount(){this.state.numEmployees=0,this.state.numOperations=0,this.state.numEngineers=0,this.state.numBusiness=0,this.state.numManagement=0,this.state.numResearch=0,this.state.numUnassigned=0,this.state.numTraining=0}updateEmployeeCount(){const e=this.routing().currentDivision;if(null==e)throw new Error("Routing does not hold reference to the current Industry");const t=e.offices[this.props.currentCity];if(!(t instanceof o.i))throw new Error(`Current City (${this.props.currentCity}) for UI does not have an OfficeSpace object`);e.name===this.state.division&&this.props.currentCity===this.state.city||(this.resetEmployeeCount(),this.state.division=e.name,this.state.city=this.props.currentCity);const n=t.employees.length;for(let e=this.state.numEmployees;e0&&(u=r/t.employees.length,m=i/t.employees.length,p=o/t.employees.length);const h=n=>{if(this.state.numUnassigned<=0)console.warn("Cannot assign employee. No unassigned employees available");else{switch(n){case s.EmployeePositions.Operations:++this.state.numOperations;break;case s.EmployeePositions.Engineer:++this.state.numEngineers;break;case s.EmployeePositions.Business:++this.state.numBusiness;break;case s.EmployeePositions.Management:++this.state.numManagement;break;case s.EmployeePositions.RandD:++this.state.numResearch;break;case s.EmployeePositions.Unassigned:++this.state.numUnassigned;break;case s.EmployeePositions.Training:++this.state.numTraining;break;default:console.error("Unrecognized employee position: "+n)}--this.state.numUnassigned,t.assignEmployeeToJob(n),t.calculateEmployeeProductivity({corporation:this.corp(),industry:e}),this.corp().rerender()}},d=n=>{function r(e){console.warn(`Cannot unassign from ${e} because there is nobody assigned to that position`)}switch(n){case s.EmployeePositions.Operations:if(this.state.numOperations<=0)return r(s.EmployeePositions.Operations);--this.state.numOperations;break;case s.EmployeePositions.Engineer:if(this.state.numEngineers<=0)return r(s.EmployeePositions.Operations);--this.state.numEngineers;break;case s.EmployeePositions.Business:if(this.state.numBusiness<=0)return r(s.EmployeePositions.Operations);--this.state.numBusiness;break;case s.EmployeePositions.Management:if(this.state.numManagement<=0)return r(s.EmployeePositions.Operations);--this.state.numManagement;break;case s.EmployeePositions.RandD:if(this.state.numResearch<=0)return r(s.EmployeePositions.Operations);--this.state.numResearch;break;case s.EmployeePositions.Unassigned:console.warn("Tried to unassign from the Unassigned position");break;case s.EmployeePositions.Training:if(this.state.numTraining<=0)return r(s.EmployeePositions.Operations);--this.state.numTraining;break;default:console.error("Unrecognized employee position: "+n)}++this.state.numUnassigned,t.unassignEmployeeFromJob(n),t.calculateEmployeeProductivity({corporation:this.corp(),industry:e}),this.corp().rerender()},_={fontSize:"15px",margin:"5px 0px 5px 0px",width:"50%"},g=this.state.numUnassigned>0?"std-button":"a-link-button-inactive",y=this.state.numOperations>0?"std-button":"a-link-button-inactive",f=this.state.numEngineers>0?"std-button":"a-link-button-inactive",b=this.state.numBusiness>0?"std-button":"a-link-button-inactive",E=this.state.numManagement>0?"std-button":"a-link-button-inactive",v=this.state.numResearch>0?"std-button":"a-link-button-inactive",k=this.state.numTraining>0?"std-button":"a-link-button-inactive";return a.a.createElement("div",null,a.a.createElement("button",{className:"std-button tooltip",onClick:()=>{this.state.employeeManualAssignMode=!0,this.corp().rerender()}},"Switch to Manual Mode",a.a.createElement("span",{className:"tooltiptext"},"Switch to Manual Assignment Mode, which allows you to specify which employees should get which jobs")),a.a.createElement("p",null,a.a.createElement("strong",null,"Unassigned Employees: ",this.state.numUnassigned)),a.a.createElement("br",null),a.a.createElement("p",null,"Avg Employee Morale: ",l.numeralWrapper.format(u,"0.000")),a.a.createElement("p",null,"Avg Employee Happiness: ",l.numeralWrapper.format(m,"0.000")),a.a.createElement("p",null,"Avg Employee Energy: ",l.numeralWrapper.format(p,"0.000")),a.a.createElement("p",null,"Total Employee Salary: ",l.numeralWrapper.formatMoney(c)),n&&a.a.createElement("p",{className:"tooltip",style:{display:"inline-block"}},"Material Production: ",l.numeralWrapper.format(e.getOfficeProductivity(t),"0.000"),a.a.createElement("span",{className:"tooltiptext"},"The base amount of material this office can produce. Does not include production multipliers from upgrades and materials. This value is based off the productivity of your Operations, Engineering, and Management employees")),n&&a.a.createElement("br",null),n&&a.a.createElement("p",{className:"tooltip",style:{display:"inline-block"}},"Product Production: ",l.numeralWrapper.format(e.getOfficeProductivity(t,{forProduct:!0}),"0.000"),a.a.createElement("span",{className:"tooltiptext"},"The base amount of any given Product this office can produce. Does not include production multipliers from upgrades and materials. This value is based off the productivity of your Operations, Engineering, and Management employees")),n&&a.a.createElement("br",null),n&&a.a.createElement("p",{className:"tooltip",style:{display:"inline-block"}},"Business Multiplier: x",l.numeralWrapper.format(e.getBusinessFactor(t),"0.000"),a.a.createElement("span",{className:"tooltiptext"},"The effect this office's 'Business' employees has on boosting sales")),n&&a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Operations," (",this.state.numOperations,")",a.a.createElement("span",{className:"tooltiptext"},"Manages supply chain operations. Improves the amount of Materials and Products you produce.")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Operations),this.corp().rerender()}},"+"),a.a.createElement("button",{className:y,onClick:()=>{d(s.EmployeePositions.Operations),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Engineer," (",this.state.numEngineers,")",a.a.createElement("span",{className:"tooltiptext"},"Develops and maintains products and production systems. Increases the quality of everything you produce. Also increases the amount you produce (not as much as Operations, however)")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Engineer),this.corp().rerender()}},"+"),a.a.createElement("button",{className:f,onClick:()=>{d(s.EmployeePositions.Engineer),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Business," (",this.state.numBusiness,")",a.a.createElement("span",{className:"tooltiptext"},"Handles sales and finances. Improves the amount of Materials and Products you can sell.")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Business),this.corp().rerender()}},"+"),a.a.createElement("button",{className:b,onClick:()=>{d(s.EmployeePositions.Business),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Management," (",this.state.numManagement,")",a.a.createElement("span",{className:"tooltiptext"},"Leads and oversees employees and office operations. Improves the effectiveness of Engineer and Operations employees")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Management),this.corp().rerender()}},"+"),a.a.createElement("button",{className:E,onClick:()=>{d(s.EmployeePositions.Management),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.RandD," (",this.state.numResearch,")",a.a.createElement("span",{className:"tooltiptext"},"Research new innovative ways to improve the company. Generates Scientific Research")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.RandD),this.corp().rerender()}},"+"),a.a.createElement("button",{className:v,onClick:()=>{d(s.EmployeePositions.RandD),this.corp().rerender()}},"-"),a.a.createElement("br",null),a.a.createElement("h2",{className:"tooltip",style:_},s.EmployeePositions.Training," (",this.state.numTraining,")",a.a.createElement("span",{className:"tooltiptext"},"Set employee to training, which will increase some of their stats. Employees in training do not affect any company operations.")),a.a.createElement("button",{className:g,onClick:()=>{h(s.EmployeePositions.Training),this.corp().rerender()}},"+"),a.a.createElement("button",{className:k,onClick:()=>{d(s.EmployeePositions.Training),this.corp().rerender()}},"-"))}renderManualEmployeeManagement(){const e=this.corp(),t=this.routing().currentDivision,n=t.offices[this.props.currentCity],r=[];for(let e=0;e{this.state.employeeManualAssignMode=!1,this.corp().rerender()}},"Switch to Auto Mode",a.a.createElement("span",{className:"tooltiptext"},"Switch to Automatic Assignment Mode, which will automatically assign employees to your selected jobs. You simply have to select the number of assignments for each job")),a.a.createElement("div",{style:{color:"white",margin:"4px",padding:"4px"}},a.a.createElement("select",{onChange:t=>{const r=Object(c.getSelectText)(t.target);for(let e=0;e{const n=Object(c.getSelectText)(t.target);this.state.employee.pos=n,this.resetEmployeeCount(),e.rerender()},value:o},u)))}render(){const e=this.corp(),t=this.routing().currentDivision,n=t.offices[this.props.currentCity],r={fontSize:"13px"};let i="tooltip";n.atCapacity()?i+=" a-link-button-inactive":(i+=" std-button",0===n.employees.length&&(i+=" flashing-button"));let o="tooltip";n.atCapacity()?o+=" a-link-button-inactive":o+=" std-button";const s=this.eventHandler().createUpgradeOfficeSizePopup.bind(this.eventHandler(),n),l=this.eventHandler().createThrowOfficePartyPopup.bind(this.eventHandler(),n);return a.a.createElement("div",{className:"cmpy-mgmt-employee-panel"},a.a.createElement("h1",{style:{margin:"4px 0px 5px 0px"}},"Office Space"),a.a.createElement("p",null,"Size: ",n.employees.length," / ",n.size," employees"),a.a.createElement("button",{className:i,onClick:()=>{n.findEmployees({corporation:e,industry:t})},style:r},"Hire Employee",0===n.employees.length&&a.a.createElement("span",{className:"tooltiptext"},"You'll need to hire some employees to get your operations started! It's recommended to have at least one employee in every position")),a.a.createElement("button",{className:o,onClick:()=>{n.atCapacity()||(n.hireRandomEmployee(),this.corp().rerender())},style:r},"Autohire Employee",a.a.createElement("span",{className:"tooltiptext"},"Automatically hires an employee and gives him/her a random name")),a.a.createElement("br",null),a.a.createElement("button",{className:"std-button tooltip",onClick:s,style:r},"Upgrade size",a.a.createElement("span",{className:"tooltiptext"},"Upgrade the office's size so that it can hold more employees!")),!t.hasResearch("AutoPartyManager")&&a.a.createElement("button",{className:"std-button tooltip",onClick:l,style:r},"Throw Party",a.a.createElement("span",{className:"tooltiptext"},'"Throw an office party to increase your employee\'s morale and happiness"')),a.a.createElement("br",null),this.renderEmployeeManagement())}}},function(e,t,n){"use strict";n.d(t,"a",function(){return c});var r=n(0),a=n.n(r),i=n(77),o=n(776),s=n(775),l=n(774);class c extends i.a{constructor(e){if(null==e.currentCity)throw new Error("Industry component constructed without 'city' prop");super(e)}render(){return a.a.createElement("div",null,a.a.createElement("div",{className:"cmpy-mgmt-industry-left-panel"},a.a.createElement(s.a,this.props),a.a.createElement(o.a,this.props)),a.a.createElement("div",{className:"cmpy-mgmt-industry-right-panel"},a.a.createElement(l.a,this.props)))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return o});var r=n(0),a=n.n(r),i=n(77);class o extends i.a{constructor(e){if(null==e.onClicks)throw new Error("CityTabs component constructed without onClick handlers");if(null==e.city)throw new Error("CityTabs component constructed without 'city' property");if(null==e.cityStateSetter)throw new Error("CityTabs component constructed without 'cityStateSetter' property");super(e)}renderTab(e){let t="cmpy-mgmt-city-tab";return e.current&&(t+=" current"),a.a.createElement("button",{className:t,onClick:e.onClick,key:e.key},e.key)}render(){const e=this.routing().currentDivision,t=[];for(const e in this.props.onClicks)t.push(this.renderTab({current:this.props.city===e,key:e,onClick:this.props.onClicks[e]}));const n=this.eventHandler().createNewCityPopup.bind(this.eventHandler(),e,this.props.cityStateSetter);return t.push(this.renderTab({current:!1,key:"Expand into new City",onClick:n})),t}}},function(e,t,n){"use strict";n.d(t,"a",function(){return p});var r=n(0),a=n.n(r),i=n(77),o=n(778),s=n(777),l=n(773),c=n(43),u=n(39);function m(){return(m=Object.assign||function(e){for(var t=1;t{this.state.city=n,this.corp().rerender()}));const n=a.a.createElement(o.a,m({},this.props,{city:this.state.city,onClicks:t,cityStateSetter:this.changeCityState.bind(this)})),r=a.a.createElement(s.a,m({},this.props,{currentCity:this.state.city}));return a.a.createElement("div",{id:"cmpy-mgmt-panel"},n,r)}render(){return this.renderContent()}}},function(e,t,n){"use strict";n.d(t,"a",function(){return s});var r=n(0),a=n.n(r),i=n(77);function o(e){let t="cmpy-mgmt-header-tab";return e.current&&(t+=" current"),a.a.createElement("button",{className:t,onClick:e.onClick},e.text)}class s extends i.a{renderTab(e){return a.a.createElement(o,{current:e.current,key:e.key,onClick:e.onClick,text:e.text})}render(){const e={};for(const t of this.corp().divisions){const n=t.name,r=()=>{this.routing().routeTo(n),this.corp().rerender()};e[n]=r}return a.a.createElement("div",null,this.renderTab({current:this.routing().isOnOverviewPage(),key:"overview",onClick:()=>{this.routing().routeToOverviewPage(),this.corp().rerender()},text:this.corp().name}),this.corp().divisions.map(t=>this.renderTab({current:this.routing().isOn(t.name),key:t.name,onClick:e[t.name],text:t.name})),this.renderTab({onClick:this.eventHandler().createNewIndustryPopup.bind(this.eventHandler()),text:"Expand into new Industry"}))}}},function(e,t,n){"use strict";n.d(t,"a",function(){return l});var r=n(0),a=n.n(r),i=n(77),o=n(780),s=n(779);class l extends i.a{render(){return a.a.createElement("div",null,a.a.createElement(o.a,this.props),a.a.createElement(s.a,this.props))}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.clearSelector=void 0,t.clearSelector=function(e){for(let t=e.options.length-1;t>=0;t--)e.remove(t)}},function(module,__webpack_exports__,__webpack_require__){"use strict";__webpack_require__.d(__webpack_exports__,"a",function(){return CorporationEventHandler});var _Routing__WEBPACK_IMPORTED_MODULE_0__=__webpack_require__(452),_Routing__WEBPACK_IMPORTED_MODULE_0___default=__webpack_require__.n(_Routing__WEBPACK_IMPORTED_MODULE_0__),_Corporation__WEBPACK_IMPORTED_MODULE_1__=__webpack_require__(43),_IndustryData__WEBPACK_IMPORTED_MODULE_2__=__webpack_require__(36),_IndustryData__WEBPACK_IMPORTED_MODULE_2___default=__webpack_require__.n(_IndustryData__WEBPACK_IMPORTED_MODULE_2__),_MaterialSizes__WEBPACK_IMPORTED_MODULE_3__=__webpack_require__(142),_MaterialSizes__WEBPACK_IMPORTED_MODULE_3___default=__webpack_require__.n(_MaterialSizes__WEBPACK_IMPORTED_MODULE_3__),_Product__WEBPACK_IMPORTED_MODULE_4__=__webpack_require__(210),_Product__WEBPACK_IMPORTED_MODULE_4___default=__webpack_require__.n(_Product__WEBPACK_IMPORTED_MODULE_4__),_Player__WEBPACK_IMPORTED_MODULE_5__=__webpack_require__(1),_Faction_Factions__WEBPACK_IMPORTED_MODULE_6__=__webpack_require__(19),_Faction_Factions__WEBPACK_IMPORTED_MODULE_6___default=__webpack_require__.n(_Faction_Factions__WEBPACK_IMPORTED_MODULE_6__),_Locations_Cities__WEBPACK_IMPORTED_MODULE_7__=__webpack_require__(172),_Locations_Cities__WEBPACK_IMPORTED_MODULE_7___default=__webpack_require__.n(_Locations_Cities__WEBPACK_IMPORTED_MODULE_7__),_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__=__webpack_require__(3),_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8___default=__webpack_require__.n(_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__),_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__=__webpack_require__(12),_utils_helpers_getRandomInt__WEBPACK_IMPORTED_MODULE_10__=__webpack_require__(22),_utils_helpers_getRandomInt__WEBPACK_IMPORTED_MODULE_10___default=__webpack_require__.n(_utils_helpers_getRandomInt__WEBPACK_IMPORTED_MODULE_10__),_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__=__webpack_require__(34),_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11___default=__webpack_require__.n(_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__),_utils_uiHelpers_clearSelector__WEBPACK_IMPORTED_MODULE_12__=__webpack_require__(782),_utils_uiHelpers_clearSelector__WEBPACK_IMPORTED_MODULE_12___default=__webpack_require__.n(_utils_uiHelpers_clearSelector__WEBPACK_IMPORTED_MODULE_12__),_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__=__webpack_require__(5),_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13___default=__webpack_require__.n(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__),_utils_uiHelpers_createOptionElement__WEBPACK_IMPORTED_MODULE_14__=__webpack_require__(79),_utils_uiHelpers_createOptionElement__WEBPACK_IMPORTED_MODULE_14___default=__webpack_require__.n(_utils_uiHelpers_createOptionElement__WEBPACK_IMPORTED_MODULE_14__),_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__=__webpack_require__(51),_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15___default=__webpack_require__.n(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__),_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__=__webpack_require__(74),_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16___default=__webpack_require__.n(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__),_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17__=__webpack_require__(180),_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17___default=__webpack_require__.n(_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17__),_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__=__webpack_require__(44),_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18___default=__webpack_require__.n(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__);class CorporationEventHandler{constructor(e,t){if(!(e instanceof _Corporation__WEBPACK_IMPORTED_MODULE_1__.c))throw new Error("CorporationEventHandler constructed without proper Corporation instance");if(!(t instanceof _Routing__WEBPACK_IMPORTED_MODULE_0__.CorporationRouting))throw new Error("CorporationEventHandler constructed without proper CorporationRouting instance");this.corp=e,this.routing=t}createBribeFactionsPopup(){const e="cmpy-mgmt-bribe-factions-popup",t=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"You can use Corporation funds or stock shares to bribe Faction Leaders in exchange for faction reputation"}),n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown",margin:"3px"});for(let e=0;e<_Player__WEBPACK_IMPORTED_MODULE_5__.Player.factions.length;++e){const t=_Player__WEBPACK_IMPORTED_MODULE_5__.Player.factions[e];_Faction_Factions__WEBPACK_IMPORTED_MODULE_6__.Factions[t].getInfo().offersWork()&&n.add(Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("option",{text:t,value:t}))}var r,a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p"),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",type:"number",placeholder:"Corporation funds",margin:"5px",inputListener:()=>{var e=null==i.value||""==i.value?0:parseFloat(i.value),t=this.corp.sharePrice,o=null==r.value||""==r.value?0:Math.round(parseFloat(r.value));if(isNaN(e)||isNaN(o)||e<0||o<0)a.innerText="ERROR: Invalid value(s) entered";else if(this.corp.funds.lt(e))a.innerText="ERROR: You do not have this much money to bribe with";else if(this.corp.stockShares>this.corp.numShares)a.innerText="ERROR: You do not have this many shares to bribe with";else{var s=(Number(e)+o*t)/_Corporation__WEBPACK_IMPORTED_MODULE_1__.b;a.innerText="You will gain "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(s,"0,0")+" reputation with "+n.options[n.selectedIndex].value+" with this bribe"}}});r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",type:"number",placeholder:"Stock Shares",margin:"5px",inputListener:()=>{var e=null==i.value||""==i.value?0:parseFloat(i.value),t=this.corp.sharePrice,o=null==r.value||""==r.value?0:Math.round(r.value);if(isNaN(e)||isNaN(o)||e<0||o<0)a.innerText="ERROR: Invalid value(s) entered";else if(this.corp.funds.lt(e))a.innerText="ERROR: You do not have this much money to bribe with";else if(this.corp.stockShares>this.corp.numShares)a.innerText="ERROR: You do not have this many shares to bribe with";else{var s=(e+o*t)/_Corporation__WEBPACK_IMPORTED_MODULE_1__.b;a.innerText="You will gain "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(s,"0,0")+" reputation with "+n.options[n.selectedIndex].value+" with this bribe"}}});var o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"a-link-button",innerText:"Bribe",display:"inline-block",clickListener:()=>{var t=null==i.value||""==i.value?0:parseFloat(i.value),a=this.corp.sharePrice,o=null==r.value||""==r.value?0:Math.round(parseFloat(r.value)),s=_Faction_Factions__WEBPACK_IMPORTED_MODULE_6__.Factions[n.options[n.selectedIndex].value];if(null==s)return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You must select a faction to bribe"),!1;if(isNaN(t)||isNaN(o)||t<0||o<0)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: Invalid value(s) entered");else if(this.corp.funds.lt(t))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You do not have this much money to bribe with");else{if(!(o>this.corp.numShares)){var l=(t+o*a)/_Corporation__WEBPACK_IMPORTED_MODULE_1__.b;return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You gained "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(l,"0,0")+" reputation with "+s.name+" by bribing them."),s.playerReputation+=l,this.corp.funds=this.corp.funds.minus(t),this.corp.numShares-=o,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),!1}Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You do not have this many shares to bribe with")}}});const s=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[t,n,a,i,r,o,s])}createBuybackSharesPopup(){const e="cmpy-mgmt-buyback-shares-popup",t=1.1*this.corp.sharePrice,n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Enter the number of outstanding shares you would like to buy back. These shares must be bought at a 10% premium. However, repurchasing shares from the market tends to lead to an increase in stock price.

To purchase these shares, you must use your own money (NOT your Corporation's funds).

The current buyback price of your company's stock is "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t,"$0.000a")+". Your company currently has "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatBigNumber(this.corp.issuedShares)+" outstanding stock shares"});var r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"number",placeholder:"Shares to buyback",margin:"5px",inputListener:()=>{var e=Math.round(a.value);isNaN(e)||e<=0?r.innerText="ERROR: Invalid value entered for number of shares to buyback":e>this.corp.issuedShares?r.innerText="There are not this many shares available to buy back. There are only "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatBigNumber(this.corp.issuedShares)+" outstanding shares.":r.innerText="Purchase "+e+" shares for a total of "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(e*t,"$0.000a")}}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"a-link-button",innerText:"Buy shares",display:"inline-block",clickListener:()=>{var t=Math.round(a.value);const n=1.1*this.corp.sharePrice;if(isNaN(t)||t<=0)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: Invalid value for number of shares");else if(t>this.corp.issuedShares)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: There are not this many oustanding shares to buy back");else if(t*n>_Player__WEBPACK_IMPORTED_MODULE_5__.Player.money)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You do not have enough money to purchase this many shares (you need "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t*n,"$0.000a")+")");else{if(this.corp.numShares+=t,isNaN(this.corp.issuedShares)){console.warn("Corporation issuedShares is NaN: "+this.corp.issuedShares),console.warn("Converting to number now");const e=parseInt(this.corp.issuedShares);isNaN(e)?this.corp.issuedShares=0:this.corp.issuedShares=e}this.corp.issuedShares-=t,_Player__WEBPACK_IMPORTED_MODULE_5__.Player.loseMoney(t*n),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),this.rerender()}return!1}}),o=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[n,r,a,i,o]),a.focus()}createDiscontinueProductPopup(e,t){const n="cmpy-mgmt-discontinue-product-popup",r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Are you sure you want to do this? Discontinuing a product removes it completely and permanently. You will no longer produce this product and all of its existing stock will be removed and left unsold"}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"popup-box-button",innerText:"Discontinue",clickListener:()=>(t.discontinueProduct(e),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n),this.rerender(),!1)}),i=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[r,i,a])}createExportMaterialPopup(mat){const corp=this.corp,popupId="cmpy-mgmt-export-popup",exportTxt=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Select the industry and city to export this material to, as well as how much of this material to export per second. You can set the export amount to 'MAX' to export all of the materials in this warehouse."}),citySelector=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown"}),industrySelector=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown",changeListener:()=>{const e=Object(_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17__.getSelectValue)(industrySelector);for(let t=0;t{const industryName=Object(_utils_uiHelpers_getSelectData__WEBPACK_IMPORTED_MODULE_17__.getSelectText)(industrySelector),cityName=citySelector.options[citySelector.selectedIndex].text,amt=exportAmount.value;let sanitizedAmt=amt.replace(/\s+/g,"");sanitizedAmt=sanitizedAmt.replace(/[^-()\d/*+.MAX]/g,"");let temp=sanitizedAmt.replace(/MAX/g,1);try{temp=eval(temp)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid expression entered for export amount: "+e),!1}if(!(null==temp||isNaN(temp)||temp<0)){var exportObj={ind:industryName,city:cityName,amt:sanitizedAmt};return mat.exp.push(exportObj),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(popupId),!1}Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid amount entered for export")}}),cancelBtn=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(popupId,{innerText:"Cancel"}),currExportsText=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Below is a list of all current exports of this material from this warehouse. Clicking on one of the exports below will REMOVE that export."}),currExports=[];for(var i=0;iCity: "+t.exp[e].city+"
Amount/s: "+t.exp[e].amt,clickListener:()=>{t.exp.splice(e,1),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(popupId),createExportMaterialPopup(t)}}))}(i,mat,currExports);Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(popupId,[exportTxt,industrySelector,citySelector,exportAmount,exportBtn,cancelBtn,currExportsText].concat(currExports))}createIssueDividendsPopup(){const e="cmpy-mgmt-issue-dividends-popup",t="Dividends are a distribution of a portion of the corporation's profits to the shareholders. This includes yourself, as well.

In order to issue dividends, simply allocate some percentage of your corporation's profits to dividends. This percentage must be an "+`integer between 0 and ${_Corporation__WEBPACK_IMPORTED_MODULE_1__.d}. (A percentage of 0 means no dividends will be `+"issued

Two important things to note:
* Issuing dividends will negatively affect your corporation's stock price
* Dividends are taxed. Taxes start at 50%, but can be decreased

Example: Assume your corporation makes $100m / sec in profit and you allocate 40% of that towards dividends. That means your corporation will gain $60m / sec in funds and the remaining $40m / sec will be paid as dividends. Since your corporation starts with 1 billion shares, every shareholder will be paid $0.04 per share per second before taxes.",n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:t});let r;const a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"Dividend %",type:"number",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&r.click()}});r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",display:"inline-block",innerText:"Allocate Dividend Percentage",clickListener:()=>{const t=Math.round(parseInt(a.value));return isNaN(t)||t<0||t>_Corporation__WEBPACK_IMPORTED_MODULE_1__.d?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)(`Invalid value. Must be an integer between 0 and ${_Corporation__WEBPACK_IMPORTED_MODULE_1__.d}`):(this.corp.dividendPercentage=t,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),this.rerender(),!1)}});const i=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[n,a,r,i]),a.focus()}createIssueNewSharesPopup(){const e="cmpy-mgmt-issue-new-shares-popup",t=Math.round(.2*this.corp.totalShares),n=t-t%1e6,r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"You can issue new equity shares (i.e. stocks) in order to raise capital for your corporation.

"+` * You can issue at most ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(n,"0.000a")} new shares
`+" * New shares are sold at a 10% discount
 * You can only issue new shares once every 12 hours
 * Issuing new shares causes dilution, resulting in a decrease in stock price and lower dividends per share
 * Number of new shares issued must be a multiple of 10 million

When you choose to issue new equity, private shareholders have first priority for up to 50% of the new shares. If they choose to exercise this option, these newly issued shares become private, restricted shares, which means you cannot buy them back."});let a,i;const o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{display:"block"});i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"# New Shares",type:"number",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER?a.click():function(e){const t=Math.round(.9*e.sharePrice);let r=parseInt(i.value);isNaN(r)?o.innerText="Invalid input":(r/=1e7,r=1e7*Math.round(r),o.innerText=r<1e7?"Must issue at least 10 million new shares":r>n?"You cannot issue that many shares":`Issue ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(r,"0.000a")} new shares `+`for ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(r*t)}?`)}(this.corp)}}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",display:"inline-block",innerText:"Issue New Shares",clickListener:()=>{const t=Math.round(.9*this.corp.sharePrice);let r=parseInt(i.value);if(isNaN(r))return void Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid input for number of new shares");if((r=1e7*Math.round(r/1e7))<1e7||r>n)return void Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid input for number of new shares");const a=r*t;this.corp.issueNewSharesCooldown=_Corporation__WEBPACK_IMPORTED_MODULE_1__.f,this.corp.totalShares+=r;let o=Object(_utils_helpers_getRandomInt__WEBPACK_IMPORTED_MODULE_10__.getRandomInt)(0,Math.round(r/2));return o=1e6*Math.round(o/1e6),this.corp.issuedShares+=r-o,this.corp.funds=this.corp.funds.plus(a),this.corp.immediatelyUpdateSharePrice(),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)(`Issued ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(r,"0.000a")} and raised `+`${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(a)}. ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(o,"0.000a")} `+"of these shares were bought by private investors.

"+`Stock price decreased to ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(this.corp.sharePrice)}`),this.rerender(),!1}});const s=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[r,o,i,a,s]),i.focus()}createLimitProductProdutionPopup(e,t){const n="cmpy-mgmt-limit-product-production-popup",r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Enter a limit to the amount of this product you would like to product per second. Leave the box empty to set no limit."});let a;const i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"Limit",type:"number",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&a.click()}});a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",display:"inline-block",innerText:"Limit production",margin:"5px",clickListener:()=>{if(""===i.value)return e.prdman[t][0]=!1,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n),!1;var r=parseFloat(i.value);return isNaN(r)?(Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value entered"),!1):(r<0?e.prdman[t][0]=!1:(e.prdman[t][0]=!0,e.prdman[t][1]=r),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n),this.rerender(),!1)}});const o=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{innerText:"Cancel"});o.style.margin="6px",Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[r,i,a,o]),i.focus()}createMakeProductPopup(e,t){if(t.hasMaximumNumberProducts())return;const n="cmpy-mgmt-create-product-popup",r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:e}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown",margin:"5px"});for(const e in t.offices)t.offices[e]instanceof _Corporation__WEBPACK_IMPORTED_MODULE_1__.i&&a.add(Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("option",{value:e,text:e}));let i="Product Name";t.type===_IndustryData__WEBPACK_IMPORTED_MODULE_2__.Industries.Food?i="Restaurant Name":t.type===_IndustryData__WEBPACK_IMPORTED_MODULE_2__.Industries.Healthcare?i="Hospital Name":t.type===_IndustryData__WEBPACK_IMPORTED_MODULE_2__.Industries.RealEstate&&(i="Property Name");var o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",margin:"5px",placeholder:i}),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("br"),l=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",margin:"5px",placeholder:"Design investment",type:"number"});let c;var u=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",margin:"5px",placeholder:"Marketing investment",type:"number",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&c.click()}});c=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Develop Product",clickListener:()=>{(null==l.value||l.value<0)&&(l.value=0),(null==u.value||u.value<0)&&(u.value=0);var e=parseFloat(l.value),r=parseFloat(u.value);if(null==o.value||""===o.value)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You must specify a name for your product!");else if(isNaN(e))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value for design investment");else if(isNaN(r))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value for marketing investment");else if(this.corp.funds.lt(e+r))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to make this large of an investment");else{const i=new _Product__WEBPACK_IMPORTED_MODULE_4__.Product({name:o.value.replace(/[<>]/g,""),createCity:a.options[a.selectedIndex].value,designCost:e,advCost:r});if(t.products[i.name]instanceof _Product__WEBPACK_IMPORTED_MODULE_4__.Product)return void Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You already have a product with this name!");this.corp.funds=this.corp.funds.minus(e+r),t.products[i.name]=i,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n)}return this.rerender(),!1}});const m=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{class:"std-button",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[r,a,o,s,l,u,c,m]),o.focus()}createMaterialMarketTaPopup(e,t){const n="cmpy-mgmt-marketta-popup",r=e.getMarkupLimit(),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Market-TA.I
The maximum sale price you can mark this up to is "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(e.bCost+r)+". This means that if you set the sale price higher than this, you will begin to experience a loss in number of sales"}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("div",{display:"block"}),o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{color:"white",for:"cmpy-mgmt-marketa1-checkbox",innerText:"Use Market-TA.I for Auto-Sale Price",tooltip:"If this is enabled, then this Material will automatically be sold at the price identified by Market-TA.I (i.e. the price shown above)"}),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{checked:e.marketTa1,id:"cmpy-mgmt-marketa1-checkbox",margin:"3px",type:"checkbox",changeListener:t=>{e.marketTa1=t.target.checked}});i.appendChild(o),i.appendChild(s);const l=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{class:"std-button",display:"block",innerText:"Close"});if(t.hasResearch("Market-TA.II")){let t;const o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p"),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{marginTop:"4px",onkeyup:e=>{e.preventDefault(),t()},type:"number",value:e.bCost});(t=function(){const t=parseFloat(s.value);let n=1;t>e.bCost?t-e.bCost>r&&(n=Math.pow(r/(t-e.bCost),2)):t{e.marketTa2=t.target.checked}});u.appendChild(m),u.appendChild(p);const h=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Note that Market-TA.II overrides Market-TA.I. This means that if both are enabled, then Market-TA.II will take effect, not Market-TA.I"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[a,i,o,s,u,h,l])}else Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[a,i,l])}createNewCityPopup(e,t){const n="cmpy-mgmt-expand-city-popup",r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Would you like to expand into a new city by opening an office? This would cost "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(_Corporation__WEBPACK_IMPORTED_MODULE_1__.g,"$0.000a")}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown",margin:"5px"});for(const t in e.offices)e.offices[t]instanceof _Corporation__WEBPACK_IMPORTED_MODULE_1__.i||a.add(Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("option",{text:t,value:t}));const i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",display:"inline-block",innerText:"Confirm",clickListener:()=>{if(a.length<=0)return!1;let r=a.options[a.selectedIndex].value;return this.corp.funds.lt(_Corporation__WEBPACK_IMPORTED_MODULE_1__.g)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to open a new office!"):(this.corp.funds=this.corp.funds.minus(_Corporation__WEBPACK_IMPORTED_MODULE_1__.g),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Opened a new office in "+r+"!"),e.offices[r]=new _Corporation__WEBPACK_IMPORTED_MODULE_1__.i({loc:r,size:_Corporation__WEBPACK_IMPORTED_MODULE_1__.h})),t(r),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(n),this.rerender(),!1}}),o=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{class:"std-button",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[r,a,i,o])}createNewIndustryPopup(){const e="cmpy-mgmt-expand-industry-popup";if(null!=document.getElementById(e))return;var t,n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Create a new division to expand into a new industry:"}),r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("select",{class:"dropdown"}),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"text",id:"cmpy-mgmt-expand-industry-name-input",class:"text-input",display:"block",maxLength:30,pattern:"[a-zA-Z0-9-_]",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&t.click()}}),o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{for:"cmpy-mgmt-expand-industry-name-input",innerText:"Division name: "});t=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("span",{class:"popup-box-button",innerText:"Create Division",clickListener:()=>{const e=r.options[r.selectedIndex].value,t=i.value;for(let e=0;e
",r.addEventListener("change",function(){var e=r.options[r.selectedIndex].value;a.innerHTML=_IndustryData__WEBPACK_IMPORTED_MODULE_2__.IndustryDescriptions[e]+"

"});const m=[];return m.push(n),m.push(r),m.push(a),m.push(o),m.push(i),m.push(s),m.push(t),Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,m),i.focus(),!1}createProductMarketTaPopup(e,t){const n="cmpy-mgmt-marketta-popup",r=e.rat/e.mku,a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Market-TA.I
The maximum sale price you can mark this up to is "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(e.pCost+r)+". This means that if you set the sale price higher than this, you will begin to experience a loss in number of sales"}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("div",{display:"block"}),o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{color:"white",for:"cmpy-mgmt-marketa1-checkbox",innerText:"Use Market-TA.I for Auto-Sale Price",tooltip:"If this is enabled, then this Product will automatically be sold at the price identified by Market-TA.I (i.e. the price shown above)"}),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{checked:e.marketTa1,id:"cmpy-mgmt-marketa1-checkbox",margin:"3px",type:"checkbox",changeListener:t=>{e.marketTa1=t.target.checked}});i.appendChild(o),i.appendChild(s);const l=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(n,{class:"std-button",display:"block",innerText:"Close"});if(t.hasResearch("Market-TA.II")){let t;const o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p"),s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{marginTop:"4px",onkeyup:e=>{e.preventDefault(),t()},type:"number",value:e.pCost});(t=function(){const t=parseFloat(s.value);let n=1;t>e.pCost&&t-e.pCost>r&&(n=r/(t-e.pCost)),o.innerHTML="
Market-TA.II
"+`If you sell at ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(t)}, `+`then you will sell ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(n,"0.00000")}x as much compared `+"to if you sold at market price."})();const c="cmpy-mgmt-marketa2-checkbox",u=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("div",{display:"block"}),m=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{color:"white",for:c,innerText:"Use Market-TA.II for Auto-Sale Price",tooltip:"If this is enabled, then this Product will automatically be sold at the optimal price such that the amount sold matches the amount produced. (i.e. the highest possible price, while still ensuring that all produced materials will be sold)"}),p=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{checked:e.marketTa2,id:c,margin:"3px",type:"checkbox",changeListener:t=>{e.marketTa2=t.target.checked}});u.appendChild(m),u.appendChild(p);const h=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Note that Market-TA.II overrides Market-TA.I. This means that if both are enabled, then Market-TA.II will take effect, not Market-TA.I"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[a,i,o,s,u,h,l])}else Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(n,[a,i,l])}createPurchaseMaterialPopup(e,t,n){const r=this.corp,a="cmpy-mgmt-material-purchase-popup",i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Enter the amount of "+e.name+" you would like to purchase per second. This material's cost changes constantly"});let o,s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"Purchase amount",type:"number",value:e.buy?e.buy:null,onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&o.click()}});o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{innerText:"Confirm",class:"std-button",clickListener:()=>{if(!isNaN(s.value))return e.buy=parseFloat(s.value),isNaN(e.buy)&&(e.buy=0),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(a),this.rerender(),!1;Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid amount")}});const l=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{innerText:"Clear Purchase",class:"std-button",clickListener:()=>(e.buy=0,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(a),this.rerender(),!1)}),c=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(a,{class:"std-button",innerText:"Cancel"}),u=[i,s,o,l,c];if(t.hasResearch("Bulk Purchasing")){const t=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Enter the amount of "+e.name+" you would like to bulk purchase. This purchases the specified amount instantly (all at once)."});let i,o=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p");const s=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px",placeholder:"Bulk Purchase amount",type:"number",onkeyup:t=>{t.preventDefault(),function(t){const r=parseFloat(t),a=r*e.bCost,i=_MaterialSizes__WEBPACK_IMPORTED_MODULE_3__.MaterialSizes[e.name];r*i>(n.size-n.sizeUsed)/i?o.innerText="Not enough warehouse space to purchase this amount":isNaN(a)?o.innerText="Invalid put for Bulk Purchase amount":o.innerText=`Purchasing ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(r,"0,0.00")} of `+`${e.name} will cost ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(a)}`}(t.target.value),t.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&i.click()}});i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Confirm Bulk Purchase",clickListener:()=>{const t=parseFloat(s.value),i=_MaterialSizes__WEBPACK_IMPORTED_MODULE_3__.MaterialSizes[e.name];if(t*i>(n.size-n.sizeUsed)/i)return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You do not have enough warehouse size to fit this purchase"),!1;if(!isNaN(t)){const n=t*e.bCost;return r.funds.gt(n)?(r.funds=r.funds.minus(n),e.qty+=t,Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(a),!1):(Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You cannot afford this purchase."),!1)}Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid input amount")}}),u.push(t),u.push(o),u.push(s),u.push(i)}Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(a,u),s.focus()}createSellMaterialPopup(mat){const sellPopupId="cmpy-mgmt-material-sell-popup",txt=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Enter the maximum amount of "+mat.name+" you would like to sell per second, as well as the price at which you would like to sell at.

If the sell amount is set to 0, then the material will not be sold. If the sell price if set to 0, then the material will be discarded

Setting the sell amount to 'MAX' will result in you always selling the maximum possible amount of the material.

When setting the sell amount, you can use the 'PROD' variable to designate a dynamically changing amount that depends on your production. For example, if you set the sell amount to 'PROD-5' then you will always sell 5 less of the material than you produce.

When setting the sell price, you can use the 'MP' variable to designate a dynamically changing price that depends on the market price. For example, if you set the sell price to 'MP+10' then it will always be sold at $10 above the market price."}),br=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("br");let confirmBtn;const inputQty=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"text",marginTop:"4px",value:mat.sllman[1]?mat.sllman[1]:null,placeholder:"Sell amount",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&confirmBtn.click()}});let inputButtonInitValue=mat.sCost?mat.sCost:null;mat.marketTa2?inputButtonInitValue+=" (Market-TA.II)":mat.marketTa1&&(inputButtonInitValue+=" (Market-TA.I)");const inputPx=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"text",marginTop:"4px",value:inputButtonInitValue,placeholder:"Sell price",onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&confirmBtn.click()}});confirmBtn=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Confirm",clickListener:()=>{let cost=inputPx.value.replace(/\s+/g,"");cost=cost.replace(/[^-()\d/*+.MP]/g,"");let temp=cost.replace(/MP/g,mat.bCost);try{temp=eval(temp)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field: "+e),!1}if(null==temp||isNaN(temp))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field"),!1;if(cost.includes("MP")?mat.sCost=cost:mat.sCost=temp,inputQty.value.includes("MAX")||inputQty.value.includes("PROD")){let qty=inputQty.value.replace(/\s+/g,"");qty=qty.replace(/[^-()\d/*+.MAXPROD]/g,"");let tempQty=qty.replace(/MAX/g,1);tempQty=tempQty.replace(/PROD/g,1);try{tempQty=eval(tempQty)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field: "+e),!1}if(null==tempQty||isNaN(tempQty))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field"),!1;mat.sllman[0]=!0,mat.sllman[1]=qty}else{if(isNaN(inputQty.value))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value for sell quantity field! Must be numeric or 'MAX'"),!1;var qty=parseFloat(inputQty.value);isNaN(qty)&&(qty=0),0===qty?(mat.sllman[0]=!1,mat.sllman[1]=0):(mat.sllman[0]=!0,mat.sllman[1]=qty)}return Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(sellPopupId),this.rerender(),!1}});const cancelBtn=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(sellPopupId,{class:"std-button",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(sellPopupId,[txt,br,inputQty,inputPx,confirmBtn,cancelBtn]),inputQty.focus()}createSellProductPopup(product,city){const popupId="cmpy-mgmt-sell-product-popup",txt=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerHTML:"Enter the maximum amount of "+product.name+" you would like to sell per second, as well as the price at which you would like to sell it at.

If the sell amount is set to 0, then the product will not be sold. If the sell price is set to 0, then the product will be discarded.

Setting the sell amount to 'MAX' will result in you always selling the maximum possible amount of the material.

When setting the sell amount, you can use the 'PROD' variable to designate a dynamically changing amount that depends on your production. For example, if you set the sell amount to 'PROD-1' then you will always sell 1 less of the material than you produce.

When setting the sell price, you can use the 'MP' variable to set a dynamically changing price that depends on the Product's estimated market price. For example, if you set it to 'MP*5' then it will always be sold at five times the estimated market price."});let confirmBtn;const inputQty=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px 0px 5px 0px",placeholder:"Sell amount",type:"text",value:product.sllman[city][1]?product.sllman[city][1]:null,onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&confirmBtn.click()}});let inputButtonInitValue=product.sCost?product.sCost:null;product.marketTa2?inputButtonInitValue+=" (Market-TA.II)":product.marketTa1&&(inputButtonInitValue+=" (Market-TA.I)");const inputPx=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{margin:"5px 0px 5px 0px",placeholder:"Sell price",type:"text",value:inputButtonInitValue,onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&confirmBtn.click()}}),checkboxDiv=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("div",{border:"1px solid white",display:"inline-block"}),checkboxLabel=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("label",{for:popupId+"-checkbox",innerText:"Use same 'Sell Amount' for all cities"}),checkbox=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{checked:!0,id:popupId+"-checkbox",margin:"2px",type:"checkbox"});checkboxDiv.appendChild(checkboxLabel),checkboxDiv.appendChild(checkbox),confirmBtn=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Confirm",clickListener:()=>{if(inputPx.value.includes("MP")){var price=inputPx.value.replace(/\s+/g,"");price=price.replace(/[^-()\d/*+.MP]/g,"");var temp=price.replace(/MP/g,1);try{temp=eval(temp)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell quantity field: "+e),!1}if(null==temp||isNaN(temp))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell quantity field."),!1;product.sCost=price}else{var cost=parseFloat(inputPx.value);if(isNaN(cost))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value for sell price field"),!1;product.sCost=cost}const cities=Object.keys(_Locations_Cities__WEBPACK_IMPORTED_MODULE_7__.Cities);if(inputQty.value.includes("MAX")||inputQty.value.includes("PROD")){var qty=inputQty.value.replace(/\s+/g,"");qty=qty.replace(/[^-()\d/*+.MAXPROD]/g,"");var temp=qty.replace(/MAX/g,1);temp=temp.replace(/PROD/g,1);try{temp=eval(temp)}catch(e){return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field: "+e),!1}if(null==temp||isNaN(temp))return Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value or expression for sell price field"),!1;if(checkbox.checked)for(let e=0;e
Selling your shares will cause your corporation's stock price to fall due to dilution. Furthermore, selling a large number of shares all at once will have an immediate effect in reducing your stock price.

The current price of your company's stock is "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t,"$0.000a")}),r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p"),a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{class:"text-input",type:"number",placeholder:"Shares to sell",margin:"5px",inputListener:()=>{var e=Math.round(a.value);if(isNaN(e)||e<=0)r.innerText="ERROR: Invalid value entered for number of shares to sell";else if(e>this.corp.numShares)r.innerText="You don't have this many shares to sell!";else{const t=this.corp.calculateShareSale(e)[0];r.innerText="Sell "+e+" shares for a total of "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t,"$0.000a")}}}),i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"a-link-button",innerText:"Sell shares",display:"inline-block",clickListener:()=>{var t=Math.round(a.value);if(isNaN(t)||t<=0)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: Invalid value for number of shares");else{if(!(t>this.corp.numShares)){const r=this.corp.calculateShareSale(t),a=r[0],i=r[1],o=r[2];if(this.corp.numShares-=t,isNaN(this.corp.issuedShares)){console.error(`Corporation issuedShares is NaN: ${this.corp.issuedShares}`);var n=parseInt(this.corp.issuedShares);isNaN(n)?this.corp.issuedShares=0:this.corp.issuedShares=n}return this.corp.issuedShares+=t,this.corp.sharePrice=i,this.corp.shareSalesUntilPriceUpdate=o,this.corp.shareSaleCooldown=_Corporation__WEBPACK_IMPORTED_MODULE_1__.k,_Player__WEBPACK_IMPORTED_MODULE_5__.Player.gainMoney(a),_Player__WEBPACK_IMPORTED_MODULE_5__.Player.recordMoneySource(a,"corporation"),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(e),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)(`Sold ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(t,"0.000a")} shares for `+`${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(a,"$0.000a")}. `+`The corporation's stock price fell to ${_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.formatMoney(this.corp.sharePrice)} `+"as a result of dilution."),this.rerender(),!1}Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("ERROR: You don't have this many shares to sell")}}}),o=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(e,{class:"std-button",display:"inline-block",innerText:"Cancel"});Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(e,[n,r,a,i,o]),a.focus()}createThrowOfficePartyPopup(e){const t="cmpy-mgmt-throw-office-party-popup",n=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Enter the amount of money you would like to spend PER EMPLOYEE on this office party"}),r=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Throwing this party will cost a total of $0"});let a;const i=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("input",{type:"number",margin:"5px",placeholder:"$ / employee",inputListener:()=>{if(isNaN(i.value)||i.value<0)r.innerText="Invalid value entered!";else{const t=i.value*e.employees.length;r.innerText="Throwing this party will cost a total of "+_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(t,"$0.000a")}},onkeyup:e=>{e.preventDefault(),e.keyCode===_utils_helpers_keyCodes__WEBPACK_IMPORTED_MODULE_11__.KEY.ENTER&&a.click()}});a=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:"std-button",innerText:"Throw Party",clickListener:()=>{if(isNaN(i.value)||i.value<0)Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Invalid value entered");else{var n=i.value*e.employees.length;if(this.corp.funds.lt(n))Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to throw this.corp party!");else{var r;this.corp.funds=this.corp.funds.minus(n);for(let t=0;t=o);){let e=Math.pow(1.09,n+s);if(a+e>o)break;a+=e,++s}const l=_Corporation__WEBPACK_IMPORTED_MODULE_1__.g*a,c=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Increase the size of your office space to fit additional employees!"}),u=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("p",{innerText:"Upgrade size: "}),m=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:this.corp.funds.lt(r)?"a-link-button-inactive":"a-link-button",display:"inline-block",margin:"4px",innerText:"by 3",tooltip:_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(r,"$0.000a"),clickListener:()=>(this.corp.funds.lt(r)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to purchase this upgrade!"):(e.size+=_Corporation__WEBPACK_IMPORTED_MODULE_1__.h,this.corp.funds=this.corp.funds.minus(r),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Office space increased! It can now hold "+e.size+" employees"),this.rerender()),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(t),!1)}),p=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:this.corp.funds.lt(i)?"a-link-button-inactive":"a-link-button",display:"inline-block",margin:"4px",innerText:"by 15",tooltip:_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(i,"$0.000a"),clickListener:()=>(this.corp.funds.lt(i)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to purchase this upgrade!"):(e.size+=5*_Corporation__WEBPACK_IMPORTED_MODULE_1__.h,this.corp.funds=this.corp.funds.minus(i),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Office space increased! It can now hold "+e.size+" employees"),this.rerender()),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(t),!1)}),h=Object(_utils_uiHelpers_createElement__WEBPACK_IMPORTED_MODULE_13__.createElement)("button",{class:this.corp.funds.lt(l)?"a-link-button-inactive":"a-link-button",display:"inline-block",margin:"4px",innerText:"by MAX ("+s*_Corporation__WEBPACK_IMPORTED_MODULE_1__.h+")",tooltip:_ui_numeralFormat__WEBPACK_IMPORTED_MODULE_8__.numeralWrapper.format(l,"$0.000a"),clickListener:()=>(this.corp.funds.lt(l)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You don't have enough company funds to purchase this upgrade!"):(e.size+=_Corporation__WEBPACK_IMPORTED_MODULE_1__.h*s,this.corp.funds=this.corp.funds.minus(l),Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("Office space increased! It can now hold "+e.size+" employees"),this.rerender()),Object(_utils_uiHelpers_removeElementById__WEBPACK_IMPORTED_MODULE_18__.removeElementById)(t),!1)}),d=Object(_utils_uiHelpers_createPopupCloseButton__WEBPACK_IMPORTED_MODULE_16__.createPopupCloseButton)(t,{innerText:"Cancel"});d.style.margin="4px",Object(_utils_uiHelpers_createPopup__WEBPACK_IMPORTED_MODULE_15__.createPopup)(t,[c,u,m,p,h,d])}purchaseWarehouse(e,t){const n=this.corp;n.funds.lt(_Corporation__WEBPACK_IMPORTED_MODULE_1__.m)?Object(_utils_DialogBox__WEBPACK_IMPORTED_MODULE_9__.dialogBoxCreate)("You do not have enough funds to do this!"):(e.warehouses[t]=new _Corporation__WEBPACK_IMPORTED_MODULE_1__.l({corp:n,industry:e,loc:t,size:_Corporation__WEBPACK_IMPORTED_MODULE_1__.n}),n.funds=n.funds.minus(_Corporation__WEBPACK_IMPORTED_MODULE_1__.m),this.rerender())}rerender(){this.corp.rerender()}}},function(e,t,n){"use strict";function r(e,t,n){return(t<=0||t>=1)&&console.warn(`Exponential factor is ${t}. This is not an intended value for it`),n<1&&console.warn(`Linear factor is ${n}. This is not an intended value for it`),Math.pow(e,t)+e/n}Object.defineProperty(t,"__esModule",{value:!0}),t.EffectWithFactors=t.calculateEffectWithFactors=void 0,t.calculateEffectWithFactors=r;t.EffectWithFactors=class{constructor(e,t){this.expFac=e,this.linearFac=t}calculate(e){return r(e,this.expFac,this.linearFac)}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AugmentationsRoot=void 0;const o=i(n(0)),s=n(1218),l=n(913),c=n(912),u=n(1),m=n(71),p=n(161);t.AugmentationsRoot=class extends o.Component{constructor(e){super(e),this.state={rerender:!1},this.export=this.export.bind(this)}export(){this.props.exportGameFn(),this.setState({rerender:!this.state.rerender})}render(){return o.createElement("div",{id:"augmentations-content"},o.createElement("h1",null,"Purchased Augmentations"),o.createElement("p",null,"Below is a list of all Augmentations you have purchased but not yet installed. Click the button below to install them."),o.createElement("p",null,"WARNING: Installing your Augmentations resets most of your progress, including:"),o.createElement("br",null),o.createElement("p",null,"- Stats/Skill levels and Experience"),o.createElement("p",null,"- Money"),o.createElement("p",null,"- Scripts on every computer but your home computer"),o.createElement("p",null,"- Purchased servers"),o.createElement("p",null,"- Hacknet Nodes"),o.createElement("p",null,"- Faction/Company reputation"),o.createElement("p",null,"- Stocks"),o.createElement("br",null),o.createElement("p",null,"Installing Augmentations lets you start over with the perks and benefits granted by all of the Augmentations you have ever installed. Also, you will keep any scripts and RAM/Core upgrades on your home computer (but you will lose all programs besides NUKE.exe)"),o.createElement(m.StdButton,{onClick:this.props.installAugmentationsFn,text:"Install Augmentations",tooltip:"'I never asked for this'"}),o.createElement(m.StdButton,{addClasses:"flashing-button",onClick:this.export,text:`Backup Save ${p.canGetBonus()?"(+1 favor to all factions)":""}`,tooltip:"It's always a good idea to backup/export your save!"}),o.createElement(c.PurchasedAugmentations,null),o.createElement("h1",null,"Installed Augmentations"),o.createElement("p",null,`List of all Augmentations ${u.Player.sourceFiles.length>0?"and Source Files ":""} `+"that have been installed. You have gained the effects of these."),o.createElement(s.InstalledAugmentationsAndSourceFiles,null),o.createElement("br",null)," ",o.createElement("br",null),o.createElement(l.PlayerMultipliers,null))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.DialogBox=void 0;const o=i(n(0));t.DialogBox=function(e){return o.createElement("div",{className:"dialog-box-content text"},o.createElement("span",{className:"dialog-box-close-button "},"×"),e)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),a=n(174);!function(){function e(e){if(!(e.target&&e.target instanceof Element))return;"none"===window.getComputedStyle(e.target).display&&e.isTrusted&&r.Player.giveExploit(a.Exploit.Unclickable)}document.addEventListener("DOMContentLoaded",function t(){const n=document.getElementById("unclickable");null!=n?(n.addEventListener("click",e),document.removeEventListener("DOMContentLoaded",t)):console.error("Could not find the unclickable elem for the related exploit.")})}()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0});const r=n(1),a=n(174);setInterval(function(){"5.5e+1"!==55..toExponential()&&r.Player.giveExploit(a.Exploit.PrototypeTampering)},9e5)},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AccordionButton=void 0;const o=i(n(0));t.AccordionButton=function(e){const t=null!=e.tooltip&&""!==e.tooltip;let n="accordion-button";t&&(n+=" tooltip"),"string"==typeof e.addClasses&&(n+=` ${e.addClasses}`);const r={__html:e.tooltip?e.tooltip:""};return o.createElement("button",{className:n,id:e.id,onClick:e.onClick,style:e.style},e.text,t&&o.createElement("span",{className:"tooltiptext",dangerouslySetInnerHTML:r}))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.WorkerScriptAccordion=void 0;const o=i(n(0)),s=n(3),l=n(232),c=n(855),u=n(84),m=n(12),p=n(143),h=n(13),d=n(119),_=n(31);t.WorkerScriptAccordion=function(e){const t=e.workerScript.scriptRef,n=p.logBoxCreate.bind(null,t),r=u.killWorkerScript.bind(null,t,t.server),a=t.onlineMoneyMade/t.onlineRunningTime,i=t.onlineExpGained/t.onlineRunningTime,g=t.offlineMoneyMade/t.offlineRunningTime,y=t.offlineExpGained/t.offlineRunningTime;return o.createElement(l.Accordion,{headerClass:"active-scripts-script-header",headerContent:o.createElement(o.Fragment,null,e.workerScript.name),panelClass:"active-scripts-script-panel",panelContent:o.createElement(o.Fragment,null,o.createElement("pre",null,"Threads: ",s.numeralWrapper.formatThreads(e.workerScript.scriptRef.threads)),o.createElement("pre",null,"Args: ",d.arrayToString(e.workerScript.args)),o.createElement("pre",null,"Online Time: ",h.convertTimeMsToTimeElapsedString(1e3*t.onlineRunningTime)),o.createElement("pre",null,"Offline Time: ",h.convertTimeMsToTimeElapsedString(1e3*t.offlineRunningTime)),o.createElement("pre",null,"Total online production: ",_.Money(t.onlineMoneyMade)),o.createElement("pre",null,Array(26).join(" ")+s.numeralWrapper.formatExp(t.onlineExpGained)+" hacking exp"),o.createElement("pre",null,"Online production rate: ",_.Money(a)," / second"),o.createElement("pre",null,Array(25).join(" ")+s.numeralWrapper.formatExp(i)+" hacking exp / second"),o.createElement("pre",null,"Total offline production: ",_.Money(t.offlineMoneyMade)),o.createElement("pre",null,Array(27).join(" ")+s.numeralWrapper.formatExp(t.offlineExpGained)+" hacking exp"),o.createElement("pre",null,"Offline production rate: ",_.Money(g)," / second"),o.createElement("pre",null,Array(26).join(" ")+s.numeralWrapper.formatExp(y)+" hacking exp / second"),o.createElement(c.AccordionButton,{onClick:n,text:"Log"}),o.createElement(c.AccordionButton,{onClick:function(){r(),m.dialogBoxCreate("Killing script")},text:"Kill Script"}))})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ServerAccordion=void 0;const o=i(n(0)),s=n(856),l=n(232),c=n(160);t.ServerAccordion=function(e){const t=e.server,n=`${t.hostname}${" ".repeat(18)}`.slice(0,Math.max(t.hostname.length,18)),r={progress:t.ramUsed/t.maxRam,totalTicks:30},a=`${n} ${c.createProgressBarText(r)}`,i=e.workerScripts.map(e=>o.createElement(s.WorkerScriptAccordion,{key:`${e.name}_${e.args}`,workerScript:e}));return o.createElement(l.Accordion,{headerContent:o.createElement("pre",null,a),panelContent:o.createElement("ul",null,i)})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ServerAccordions=void 0;const o=i(n(0)),s=n(857),l=n(158),c=n(29),u="ActiveScriptsUI";t.ServerAccordions=class extends o.Component{constructor(e){super(e),this.serverToScriptMap={},this.state={rerenderFlag:!1},this.updateServerToScriptsMap(),this.rerender=this.rerender.bind(this)}componentDidMount(){l.WorkerScriptStartStopEventEmitter.addSubscriber({cb:this.rerender,id:u})}componentWillUnmount(){l.WorkerScriptStartStopEventEmitter.removeSubscriber(u)}updateServerToScriptsMap(){const e={};for(const t of this.props.workerScripts.values()){const n=c.getServer(t.serverIp);null!=n?(null==e[n.hostname]&&(e[n.hostname]={server:n,workerScripts:[]}),e[n.hostname].workerScripts.push(t)):console.warn(`WorkerScript has invalid IP address: ${t.serverIp}`)}this.serverToScriptMap=e}rerender(){this.updateServerToScriptsMap(),this.setState(e=>({rerenderFlag:!e.rerenderFlag}))}render(){const e=Object.keys(this.serverToScriptMap).map(e=>{const t=this.serverToScriptMap[e];return o.createElement(s.ServerAccordion,{key:e,server:t.server,workerScripts:t.workerScripts})});return o.createElement("ul",{className:"active-scripts-list",id:"active-scripts-list"},e)}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ScriptProduction=void 0;const o=i(n(0)),s=n(31);t.ScriptProduction=function(e){const t=e.p.scriptProdSinceLastAug/(e.p.playtimeSinceLastAug/1e3);let n=0;for(const t of e.workerScripts.values())n+=t.scriptRef.onlineMoneyMade/t.scriptRef.onlineRunningTime;return o.createElement("p",{id:"active-scripts-total-prod"},"Total online production of Active scripts: ",o.createElement("span",{className:"money-gold"},o.createElement("span",{id:"active-scripts-total-production-active"},s.Money(n))," / sec"),o.createElement("br",null),"Total online production since last Aug installation: ",o.createElement("span",{id:"active-scripts-total-prod-aug-total",className:"money-gold"},s.Money(e.p.scriptProdSinceLastAug))," (",o.createElement("span",{className:"money-gold"},o.createElement("span",{id:"active-scripts-total-prod-aug-avg",className:"money-gold"},s.Money(t))," / sec"),")")}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Resleeve=void 0;const r=n(681),a=n(15),i=n(24);class o extends r.Person{constructor(){super()}getCost(){const e=this.hacking_exp+this.strength_exp+this.defense_exp+this.dexterity_exp+this.agility_exp+this.charisma_exp;let t=0;for(let e=0;e=0;--e)t.augmentations[e].name!==o.AugmentationNames.NeuroFluxGovernor?t.augmentations.splice(e,1):a.Augmentations[o.AugmentationNames.NeuroFluxGovernor].owned=!0;for(let n=0;n=0;--e){const n=t.queuedAugmentations[e].name;t.augmentations.filter(e=>e.name!==o.AugmentationNames.NeuroFluxGovernor&&e.name===n).length>=1&&t.queuedAugmentations.splice(e,1)}return t.reapplyAllAugmentations(!0),t.reapplyAllSourceFiles(),!0},t.generateResleeves=function(){const e=[];for(let t=0;t<40;++t){const n=new r.Resleeve,i=5*t+1;n.hacking_exp=i*s.getRandomInt(1e3,5e3),n.strength_exp=i*s.getRandomInt(1e3,5e3),n.defense_exp=i*s.getRandomInt(1e3,5e3),n.dexterity_exp=i*s.getRandomInt(1e3,5e3),n.agility_exp=i*s.getRandomInt(1e3,5e3),n.charisma_exp=i*s.getRandomInt(1e3,5e3);const l=Math.max(2,Math.ceil((t+3)/2)),c=s.getRandomInt(l,l+2),u=Object.keys(a.Augmentations);for(let e=0;eo.createElement("tr",{key:t},e.map((e,t)=>{let n={};return 0!==t&&(n={textAlign:"right"}),o.createElement("td",{style:n,key:t},e)}))))))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SleeveFaq=void 0;const o=i(n(0));t.SleeveFaq=o.createElement(o.Fragment,null,o.createElement("strong",null,o.createElement("u",null,"How do Duplicate Sleeves work?")),o.createElement("br",null),"Duplicate Sleeves are essentially clones. You can use them to perform any work type action, such as working for a company/faction or committing a crime. Having sleeves perform these tasks earns you money, experience, and reputation.",o.createElement("br",null),o.createElement("br",null),"Sleeves are their own individuals, which means they each have their own experience and stats.",o.createElement("br",null),o.createElement("br",null),"When a sleeve earns experience, it earns experience for itself, the player's original 'consciousness', as well as all of the player's other sleeves.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"What is Synchronization (Sync)?")),o.createElement("br",null),"Synchronization is a measure of how aligned your consciousness is with that of your Duplicate Sleeves. It is a numerical value between 1 and 100, and it affects how much experience is earned when the sleeve is performing a task.",o.createElement("br",null),o.createElement("br",null),"Let N be the sleeve's synchronization. When the sleeve earns experience by performing a task, both the sleeve and the player's original host consciousness earn N% of the amount of experience normally earned by the task. All of the player's other sleeves earn ((N/100)^2 * 100)% of the experience.",o.createElement("br",null),o.createElement("br",null),"Synchronization can be increased by assigning sleeves to the 'Synchronize' task.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"What is Shock?")),o.createElement("br",null),"Sleeve shock is a measure of how much trauma the sleeve has due to being placed in a new body. It is a numerical value between 0 and 99, where 99 indicates full shock and 0 indicates no shock. Shock affects the amount of experience earned by the sleeve.",o.createElement("br",null),o.createElement("br",null),"Sleeve shock slowly decreases over time. You can further increase the rate at which it decreases by assigning sleeves to the 'Shock Recovery' task.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"Why can't I work for this company or faction?")),o.createElement("br",null),"Only one of your sleeves can work for a given company/faction a time. To clarify further, if you have two sleeves they can work for two different companies, but they cannot both work for the same company.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"Why did my Sleeve stop working?")),o.createElement("br",null),"Sleeves are subject to the same time restrictions as you. This means that they automatically stop working at a company after 8 hours, and stop working for a faction after 20 hours.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"How do I buy Augmentations for my Sleeves?")),o.createElement("br",null),"Your Sleeve needs to have a Shock of 0 in order for you to buy Augmentations for it.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"Why can't I buy the X Augmentation for my sleeve?")),o.createElement("br",null),"Certain Augmentations, like Bladeburner-specific ones and NeuroFlux Governor, are not available for sleeves.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"Do sleeves get reset when installing Augmentations or switching BitNodes?")),o.createElement("br",null),"Sleeves are reset when switching BitNodes, but not when installing Augmentations.",o.createElement("br",null),o.createElement("br",null),o.createElement("strong",null,o.createElement("u",null,"What is Memory?")),o.createElement("br",null),"Sleeve memory dictates what a sleeve's synchronization will be when its reset by switching BitNodes. For example, if a sleeve has a memory of 25, then when you switch BitNodes its synchronization will initially be set to 25, rather than 1.",o.createElement("br",null),o.createElement("br",null),"Memory can only be increased by purchasing upgrades from The Covenant. It is a persistent stat, meaning it never gets resets back to 1. The maximum possible value for a sleeve's memory is 100.")},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createSleevePurchaseAugsPopup=void 0;const r=n(520),a=n(15),i=n(31),o=n(12),s=n(5),l=n(51),c=n(74),u=n(44),m=n(236);t.createSleevePurchaseAugsPopup=function e(t,n){const p=t.augmentations.map(e=>e.name),h=r.findSleevePurchasableAugs(t,n),d="purchase-sleeve-augs-popup",_=[c.createPopupCloseButton(d,{innerText:"Cancel"}),s.createElement("p",{display:"block",innerHTML:"Owned Augmentations:"})],g=s.createElement("div",{width:"70%"});for(const e of p){const t=a.Augmentations[e];if(null==t){console.warn(`Invalid Augmentation: ${e}`);continue}let n=t.info;"string"!=typeof n&&(n=m.renderToStaticMarkup(n)),g.appendChild(s.createElement("div",{class:"gang-owned-upgrade",innerText:e,tooltip:n}))}_.push(g);const y=s.createElement("p",{innerHTML:["You can purchase Augmentations for your Duplicate Sleeves. These Augmentations","have the same effect as they would for you. You can only purchase Augmentations","that you have unlocked through Factions.

","When purchasing an Augmentation for a Duplicate Sleeve, they are immediately","installed. This means that the Duplicate Sleeve will immediately lose all of","its stat experience."].join(" ")});_.push(y);for(const r of h){const a=s.createElement("div",{class:"cmpy-mgmt-upgrade-div"});let l=r.info;"string"!=typeof l&&(l=m.renderToStaticMarkup(l)),a.appendChild(s.createElement("p",{fontSize:"12px",innerHTML:[`

${r.name}


`,`Cost: ${m.renderToStaticMarkup(i.Money(r.startingCost))}

`,`${l}`].join(" "),padding:"2px",clickListener:()=>{t.tryBuyAugmentation(n,r)?(o.dialogBoxCreate(`Installed ${r.name} on Duplicate Sleeve!`,!1),u.removeElementById(d),e(t,n)):o.dialogBoxCreate(`You cannot afford ${r.name}`,!1)}})),_.push(a)}l.createPopup(d,_)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Milestones=void 0;const r=n(19),a=n(29);function i(e,t){const n=t.augmentations.slice().filter(e=>"NeuroFlux Governor"!==e);for(const t of n)if(!e.augmentations.some(e=>e.name==t))return!1;return!0}t.Milestones=[{title:"Gain root access on CSEC",fulfilled:()=>{const e=a.GetServerByHostname("CSEC");return!(!e||!e.hasOwnProperty("hasAdminRights"))&&e.hasAdminRights}},{title:"Install the backdoor on CSEC",fulfilled:()=>{const e=a.GetServerByHostname("CSEC");return!(!e||!e.hasOwnProperty("backdoorInstalled"))&&e.backdoorInstalled}},{title:"Join the faction hinted at in csec-test.msg",fulfilled:e=>e.factions.includes("CyberSec")},{title:"Install all the Augmentations from CSEC",fulfilled:e=>i(e,r.Factions.CyberSec)},{title:"Join the faction hinted at in nitesec-test.msg",fulfilled:e=>e.factions.includes("NiteSec")},{title:"Install all the Augmentations from NiteSec",fulfilled:e=>i(e,r.Factions.NiteSec)},{title:"Join the faction hinted at in j3.msg",fulfilled:e=>e.factions.includes("The Black Hand")},{title:"Install all the Augmentations from The Black Hand",fulfilled:e=>i(e,r.Factions["The Black Hand"])},{title:"Join the faction hinted at in 19dfj3l1nd.msg",fulfilled:e=>e.factions.includes("BitRunners")},{title:"Install all the Augmentations from BitRunners",fulfilled:e=>i(e,r.Factions.BitRunners)},{title:"Complete fl1ght.exe",fulfilled:e=>e.factions.includes("Daedalus")},{title:"Install the special Augmentation from Daedalus",fulfilled:e=>e.augmentations.some(e=>"The Red Pill"==e.name)},{title:"Install the final backdoor and free yourself.",fulfilled:()=>!1}]},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Root=void 0;const o=n(868),s=i(n(0));t.Root=function(e){const t=function(e,t){let n=-1;for(let r=0;r{if(r<=t+1)return s.createElement("ul",{key:r},s.createElement("p",null,"[",n.fulfilled(e.player)?"x":" ","] ",n.title))});return s.createElement(s.Fragment,null,s.createElement("h1",null,"Milestones"),s.createElement("p",null,"Milestones don't reward you for completing them. They are here to guide you if you're lost. They will reset when you install Augmentations."),s.createElement("br",null),s.createElement("h2",null,"Completing fl1ght.exe"),s.createElement("li",null,n))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CorruptableText=void 0;const o=i(n(0));t.CorruptableText=function(e){const[t,n]=o.useState(e.content);return o.useEffect(()=>{let e=5;const r=setInterval(()=>{if(--e>0)return;e=5*Math.random();const r=Math.random()*t.length,a=t.charAt(r);n(function(e,t,n){return e.substring(0,t)+n+e.substring(t+1)}(t,r,function(e){const t=e=>e[Math.floor(Math.random()*e.length)],n=["abcdefghijklmnopqrstuvwxyz","ABCDEFGHIJKLMNOPQRSTUVWXYZ","1234567890"," _","()[]{}<>"];for(const r of n)if(r.includes(e))return t(r);return t("!@#$%^&*()_+|\\';\"/.,?`~")}(a))),setTimeout(()=>{n(t)},50)},100);return()=>{clearInterval(r)}},[]),o.default.createElement("span",null,t)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SlotMachine=void 0;const o=i(n(0)),s=n(71),l=n(31),c=n(290),u=n(396),m=n(464),p=["D","C","$","?","♥","A","C","B","C","E","B","E","C","*","D","♥","B","A","A","A","C","A","D","B","E","?","D","*","@","♥","B","E","?"];function h(e,t){switch(e){case"$":return[20,200,1e3][t];case"@":return[8,80,400][t];case"♥":case"?":return[6,20,150][t];case"D":case"E":return[1,8,30][t];default:return[1,5,20][t]}}const d=[[[0,0],[0,1],[0,2],[0,3],[0,4]],[[1,0],[1,1],[1,2],[1,3],[1,4]],[[2,0],[2,1],[2,2],[2,3],[2,4]],[[2,0],[1,1],[0,2],[1,3],[2,4]],[[0,0],[1,1],[2,2],[1,3],[0,4]],[[0,0],[1,1],[1,2],[1,3],[0,4]],[[2,0],[1,1],[1,2],[1,3],[2,4]],[[1,0],[0,1],[0,2],[0,3],[1,4]],[[1,0],[2,1],[2,2],[2,3],[1,4]]],_=0,g=1e6;t.SlotMachine=class extends u.Game{constructor(e){super(e),this.interval=-1,this.rng=new c.WHRNG(this.props.p.totalPlaytime),this.state={index:[0,0,0,0,0],investment:1e3,locks:[0,0,0,0,0],canPlay:!0,status:"waiting"},this.play=this.play.bind(this),this.lock=this.lock.bind(this),this.unlock=this.unlock.bind(this),this.step=this.step.bind(this),this.checkWinnings=this.checkWinnings.bind(this),this.getTable=this.getTable.bind(this),this.updateInvestment=this.updateInvestment.bind(this)}componentDidMount(){this.interval=setInterval(this.step,50)}step(){let e=!1;const t=this.state.index.slice();for(const n in t)(t[n]!==this.state.locks[n]||e)&&(t[n]=(t[n]+1)%p.length,e=!0);this.setState({index:t}),e&&t.every((e,t)=>e===this.state.locks[t])&&this.checkWinnings()}componentWillUnmount(){clearInterval(this.interval)}getTable(){return[[p[(this.state.index[0]+p.length-1)%p.length],p[(this.state.index[1]+p.length-1)%p.length],p[(this.state.index[2]+p.length-1)%p.length],p[(this.state.index[3]+p.length-1)%p.length],p[(this.state.index[4]+p.length-1)%p.length]],[p[this.state.index[0]],p[this.state.index[1]],p[this.state.index[2]],p[this.state.index[3]],p[this.state.index[4]]],[p[(this.state.index[0]+1)%p.length],p[(this.state.index[1]+1)%p.length],p[(this.state.index[2]+1)%p.length],p[(this.state.index[3]+1)%p.length],p[(this.state.index[4]+1)%p.length]]]}play(){this.reachedLimit(this.props.p)||(this.setState({status:"playing"}),this.win(this.props.p,-this.state.investment),this.state.canPlay&&(this.unlock(),setTimeout(this.lock,2e3*this.rng.random()+1e3)))}lock(){this.setState({locks:[Math.floor(this.rng.random()*p.length),Math.floor(this.rng.random()*p.length),Math.floor(this.rng.random()*p.length),Math.floor(this.rng.random()*p.length),Math.floor(this.rng.random()*p.length)]})}checkWinnings(){const e=this.getTable(),t=function(t){const n=[];for(const r of t)n.push(e[r[0]][r[1]]);return n},n=function(e){let t=1;for(let n=1;n0?"gained":"lost"," ",l.Money(Math.abs(r))),canPlay:!0}),this.reachedLimit(this.props.p)}unlock(){this.setState({locks:[-1,-1,-1,-1,-1],canPlay:!1})}updateInvestment(e){let t=parseInt(e.currentTarget.value);isNaN(t)&&(t=_),t>g&&(t=g),t<_&&(t=_),this.setState({investment:t})}render(){const e=this.getTable();return o.createElement(o.Fragment,null,o.createElement("pre",null,"+———————————————————————+",o.createElement("br",null),"| | ",e[0][0]," | ",e[0][1]," | ",e[0][2]," | ",e[0][3]," | ",e[0][4]," | |",o.createElement("br",null),"| | | | | | | |",o.createElement("br",null),"| | ",p[this.state.index[0]]," | ",p[this.state.index[1]]," | ",p[this.state.index[2]]," | ",p[this.state.index[3]]," | ",p[this.state.index[4]]," | |",o.createElement("br",null),"| | | | | | | |",o.createElement("br",null),"| | ",p[(this.state.index[0]+1)%p.length]," | ",p[(this.state.index[1]+1)%p.length]," | ",p[(this.state.index[2]+1)%p.length]," | ",p[(this.state.index[3]+1)%p.length]," | ",p[(this.state.index[4]+1)%p.length]," | |",o.createElement("br",null),"+———————————————————————+",o.createElement("br",null)),o.createElement("input",{type:"number",className:"text-input",onChange:this.updateInvestment,placeholder:"Amount to play",value:this.state.investment,disabled:!this.state.canPlay}),o.createElement(s.StdButton,{onClick:m.trusted(this.play),text:"Spin!",disabled:!this.state.canPlay}),o.createElement("h1",null,this.state.status),o.createElement("h2",null,"Pay lines"),o.createElement("pre",null,"----- ····· ····· ",o.createElement("br",null),"····· ----- ····· ",o.createElement("br",null),"····· ····· ----- ",o.createElement("br",null)),o.createElement("br",null),o.createElement("pre",null,"··^·· \\···/ \\···/",o.createElement("br",null),"·/·\\· ·\\·/· ·---·",o.createElement("br",null),"/···\\ ··v·· ·····",o.createElement("br",null)),o.createElement("br",null),o.createElement("pre",null,"····· ·---· ·····",o.createElement("br",null),"·---· /···\\ \\···/",o.createElement("br",null),"/···\\ ····· ·---·",o.createElement("br",null)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Roulette=void 0;const o=i(n(0)),s=n(71),l=n(31),c=n(396),u=n(290),m=n(464),p=0,h=1e7;const d=[1,3,5,7,9,12,14,16,18,19,21,23,25,27,30,32,34,36],_={Red:{match:e=>0!==e&&d.includes(e),payout:1},Black:{match:e=>!d.includes(e),payout:1},Odd:{match:e=>0!==e&&e%2==1,payout:1},Even:{match:e=>0!==e&&e%2==0,payout:1},High:{match:e=>0!==e&&e>18,payout:1},Low:{match:e=>0!==e&&e<19,payout:1},Third1:{match:e=>0!==e&&e<=12,payout:2},Third2:{match:e=>0!==e&&(e>=13&&e<=24),payout:2},Third3:{match:e=>0!==e&&e>=25,payout:2}};function g(e){return{match:t=>e===t,payout:36}}t.Roulette=class extends c.Game{constructor(e){super(e),this.interval=-1,this.rng=new u.WHRNG((new Date).getTime()),this.state={investment:1e3,canPlay:!0,status:"waiting",n:0,lock:!0,strategy:{payout:0,match:()=>!1}},this.step=this.step.bind(this),this.currentNumber=this.currentNumber.bind(this),this.updateInvestment=this.updateInvestment.bind(this)}componentDidMount(){this.interval=setInterval(this.step,50)}step(){this.state.lock||this.setState({n:Math.floor(37*Math.random())})}componentWillUnmount(){clearInterval(this.interval)}updateInvestment(e){let t=parseInt(e.currentTarget.value);isNaN(t)&&(t=p),t>h&&(t=h),t{let e=Math.floor(37*this.rng.random()),t=o.createElement(o.Fragment,null),n=0,r=this.state.strategy.match(e);if(r&&Math.random()>.9)for(r=!1;this.state.strategy.match(e);)e++;r?(n=this.state.investment*this.state.strategy.payout,t=o.createElement(o.Fragment,null,"won ",l.Money(n))):(n=-this.state.investment,t=o.createElement(o.Fragment,null,"lost ",l.Money(-n))),this.win(this.props.p,n),this.setState({canPlay:!0,lock:!0,status:t,n:e}),this.reachedLimit(this.props.p)},1600))}render(){return o.createElement(o.Fragment,null,o.createElement("h1",null,this.currentNumber()),o.createElement("input",{type:"number",className:"text-input",onChange:this.updateInvestment,placeholder:"Amount to play",value:this.state.investment,disabled:!this.state.canPlay}),o.createElement("h1",null,this.state.status),o.createElement("table",null,o.createElement("tbody",null,o.createElement("tr",null,o.createElement("td",null,o.createElement(s.StdButton,{text:"3",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(3)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"6",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(6)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"9",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(9)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"12",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(12)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"15",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(15)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"18",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(18)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"21",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(21)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"24",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(24)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"27",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(27)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"30",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(30)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"33",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(33)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"36",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(36)))}))),o.createElement("tr",null,o.createElement("td",null,o.createElement(s.StdButton,{text:"2",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(2)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"5",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(5)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"8",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(8)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"11",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(11)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"14",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(14)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"17",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(17)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"20",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(20)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"23",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(23)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"26",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(26)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"29",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(29)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"32",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(32)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"35",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(35)))}))),o.createElement("tr",null,o.createElement("td",null,o.createElement(s.StdButton,{text:"1",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(1)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"4",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(4)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"7",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(7)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"10",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(10)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"13",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(13)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"16",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(16)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"19",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(19)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"22",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(22)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"25",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(25)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"28",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(28)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"31",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(31)))})),o.createElement("td",null,o.createElement(s.StdButton,{text:"34",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(34)))}))),o.createElement("tr",null,o.createElement("td",{colSpan:4},o.createElement(s.StdButton,{text:"1 to 12",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Third1))})),o.createElement("td",{colSpan:4},o.createElement(s.StdButton,{text:"13 to 24",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Third2))})),o.createElement("td",{colSpan:4},o.createElement(s.StdButton,{text:"25 to 36",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Third3))}))),o.createElement("tr",null,o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Red",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Red))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Black",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Black))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Odd",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Odd))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Even",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Even))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"High",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.High))})),o.createElement("td",{colSpan:2},o.createElement(s.StdButton,{text:"Low",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(_.Low))}))),o.createElement("tr",null,o.createElement("td",null,o.createElement(s.StdButton,{text:"0",disabled:!this.state.canPlay,onClick:m.trusted(()=>this.play(g(0)))}))))))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CoinFlip=void 0;const o=i(n(0)),s=n(71),l=n(290),c=n(396),u=n(464),m=0,p=1e4;t.CoinFlip=class extends c.Game{constructor(e){super(e),this.state={investment:1e3,result:o.createElement("span",null," "),status:"",playLock:!1},this.play=this.play.bind(this),this.updateInvestment=this.updateInvestment.bind(this)}updateInvestment(e){let t=parseInt(e.currentTarget.value);isNaN(t)&&(t=m),t>p&&(t=p),tthis.setState({playLock:!1}),250),n?this.win(this.props.p,this.state.investment):this.win(this.props.p,-this.state.investment),this.reachedLimit(this.props.p)}render(){return o.createElement(o.Fragment,null,o.createElement("pre",null,"+———————+",o.createElement("br",null),"| | | |",o.createElement("br",null),"| | ",this.state.result," | |",o.createElement("br",null),"| | | |",o.createElement("br",null),"+———————+",o.createElement("br",null)),o.createElement("span",{className:"text"},"Play for: "),o.createElement("input",{type:"number",className:"text-input",onChange:this.updateInvestment,value:this.state.investment}),o.createElement("br",null),o.createElement(s.StdButton,{onClick:u.trusted(()=>this.play("H")),text:"Head!",disabled:this.state.playLock}),o.createElement(s.StdButton,{onClick:u.trusted(()=>this.play("T")),text:"Tail!",disabled:this.state.playLock}),o.createElement("h1",null,this.state.status))}}},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MuiPaper=void 0;const a=r(n(0)),i=n(395),o=i.makeStyles({root:{backgroundColor:"rgb(30, 30, 30)",border:"2px solid #000",borderRadius:"10px",display:"inline-block",flexWrap:"wrap",padding:"10px"}});t.MuiPaper=(e=>a.default.createElement(i.Paper,Object.assign({},e,{classes:Object.assign(Object.assign({},o()),e.classes)})))},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MuiButton=void 0;const a=r(n(0)),i=n(395),o=i.makeStyles({root:{backgroundColor:"#555",border:"1px solid #333",color:"white",margin:"5px",padding:"3px 5px","&:hover":{backgroundColor:"#666"}},textPrimary:{color:"rgb( 144, 202, 249)"},textSecondary:{color:"rgb(244, 143, 177)"},disabled:{backgroundColor:"#333",color:"#fff",cursor:"default"}});t.MuiButton=(e=>a.default.createElement(i.Button,Object.assign({},e,{classes:Object.assign(Object.assign({},o()),e.classes)})))},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MuiTextField=void 0;const a=r(n(0)),i=n(395),o={backgroundColor:"rgba(57, 54, 54, 0.9)","&:hover":{backgroundColor:"rgba(70, 70, 70, 0.9)"}},s=Object.assign({border:"1px solid #e2e2e1",overflow:"hidden",borderRadius:4,color:"white"},o),l=i.makeStyles({root:Object.assign({},s)}),c=i.makeStyles({root:Object.assign(Object.assign({},o),{color:"white"}),focused:{backgroundColor:"rgba(70, 70, 70, 0.9)"},disabled:{color:"white"}}),u=i.makeStyles({root:{color:"white"},focused:{color:"white !important"},disabled:{color:"white !important"}});t.MuiTextField=(e=>{var t,n;return a.default.createElement(i.TextField,Object.assign({},e,{classes:Object.assign(Object.assign({},l()),e.classes),InputProps:Object.assign({classes:Object.assign(Object.assign({},c()),null===(t=e.InputProps)||void 0===t?void 0:t.classes)},e.InputProps),InputLabelProps:Object.assign({classes:Object.assign(Object.assign({},u()),null===(n=e.InputLabelProps)||void 0===n?void 0:n.classes)},e.InputLabelProps)}))})},function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.ReactCard=void 0;const a=r(n(0)),i=n(627);t.ReactCard=(({card:e,hidden:t})=>{let n;switch(e.suit){case i.Suit.Clubs:n=a.default.createElement("span",null,"♣");break;case i.Suit.Diamonds:n=a.default.createElement("span",null,"♦");break;case i.Suit.Hearts:n=a.default.createElement("span",null,"♥");break;case i.Suit.Spades:n=a.default.createElement("span",null,"♠");break;default:throw new Error(`MissingCaseException: ${e.suit}`)}return a.default.createElement("div",{className:`casino-card ${e.isRedSuit()?"red":"black"}`},a.default.createElement(a.default.Fragment,null,a.default.createElement("div",{className:"value"},t?" - ":e.formatValue()),a.default.createElement("div",{className:"suit"},t?" - ":n)))})},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Hand=void 0;class r{constructor(e){this.cards=e}addCards(...e){return new r([...this.cards,...e])}removeByIndex(e){if(e>=this.cards.length)throw new Error(`Tried to remove invalid card from Hand by index: ${e}`);return new r([...this.cards.slice().splice(e,1)])}}t.Hand=r},,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Deck=void 0;const r=n(627),a=n(879);t.Deck=class{constructor(e=1){this.numDecks=e,this.cards=[],this.reset()}shuffle(){this.cards=a.shuffle(this.cards)}drawCard(){if(0==this.cards.length)throw new Error("Tried to draw card from empty deck");return this.cards.shift()}safeDrawCard(){return 0===this.cards.length&&this.reset(),this.drawCard()}reset(){this.cards=[];for(let e=1;e<=13;++e)for(let t=0;t{const{p:e}=this.props,{bet:t}=this.state;return e.canAfford(t)}),this.startGame=(()=>{if(!this.canStartGame())return;this.props.p.loseMoney(this.state.bet);const e=new u.Hand([this.deck.safeDrawCard(),this.deck.safeDrawCard()]),t=new u.Hand([this.deck.safeDrawCard(),this.deck.safeDrawCard()]);this.setState({playerHand:e,dealerHand:t,gameInProgress:!0,result:y.Pending}),21===this.getTrueHandValue(e)?21===this.getTrueHandValue(t)?this.finishGame(y.Tie):this.finishGame(y.PlayerWonByBlackjack):21===this.getTrueHandValue(t)&&this.finishGame(y.DealerWon)}),this.getHandValue=(e=>{let t=[0];for(let n=0;n=10?t.map(e=>e+10):1===r?t.flatMap(e=>[e+1,e+11]):t.map(e=>e+r)}return t}),this.getTrueHandValue=(e=>{const t=this.getHandValue(e),n=t.filter(e=>e<=21);return n.length>0?(n.sort((e,t)=>e-t),n[n.length-1]):t[0]}),this.getHandDisplayValues=(e=>{const t=this.getHandValue(e);return this.isHandBusted(e)?[...new Set([t[0]])]:[...new Set(t.filter(e=>e<=21))]}),this.isHandBusted=(e=>this.getTrueHandValue(e)>21),this.playerHit=(e=>{if(!e.isTrusted)return;const t=this.state.playerHand.addCards(this.deck.safeDrawCard());this.setState({playerHand:t}),this.isHandBusted(t)&&this.finishGame(y.DealerWon)}),this.playerStay=(e=>{if(!e.isTrusted)return;let t=this.state.dealerHand;for(;this.getTrueHandValue(t)<=16;)t=t.addCards(this.deck.safeDrawCard());if(this.setState({dealerHand:t}),this.isHandBusted(t))this.finishGame(y.PlayerWon);else{const e=this.getTrueHandValue(t),n=this.getTrueHandValue(this.state.playerHand);if(e>21||n>21)throw new Error("Someone busted when not expected to");n>e?this.finishGame(y.PlayerWon):n{let t=0;this.isPlayerWinResult(e)?(t=this.state.bet,this.win(this.props.p,2*t)):e===y.DealerWon?t=-1*this.state.bet:e===y.Tie&&this.win(this.props.p,this.state.bet),this.setState({gameInProgress:!1,result:e,gains:this.state.gains+t})}),this.isPlayerWinResult=(e=>e===y.PlayerWon||e===y.PlayerWonByBlackjack),this.wagerOnChange=(e=>{const{p:t}=this.props,n=e.target.value,r=Math.round(parseFloat(n));isNaN(r)?this.setState({bet:0,betInput:n,wagerInvalid:!0,wagerInvalidHelperText:"Not a valid number"}):r<=0?this.setState({bet:0,betInput:n,wagerInvalid:!0,wagerInvalidHelperText:"Must bet a postive amount"}):r>g?this.setState({bet:0,betInput:n,wagerInvalid:!0,wagerInvalidHelperText:"Exceeds max bet"}):t.canAfford(r)?this.setState({bet:r,betInput:n,wagerInvalid:!1,wagerInvalidHelperText:"",result:y.Pending}):this.setState({bet:0,betInput:n,wagerInvalid:!0,wagerInvalidHelperText:"Not enough money"})}),this.startOnClick=(e=>{e.isTrusted&&(this.state.wagerInvalid||this.startGame())}),this.deck=new c.Deck(5),this.state={playerHand:new u.Hand([]),dealerHand:new u.Hand([]),bet:1e6,betInput:String(1e6),gameInProgress:!1,result:y.Pending,gains:0,wagerInvalid:!1,wagerInvalidHelperText:""}}render(){const{betInput:e,playerHand:t,dealerHand:n,gameInProgress:r,result:a,wagerInvalid:i,wagerInvalidHelperText:l,gains:c}=this.state,u=this.getHandDisplayValues(t),f=this.getHandDisplayValues(n);return o.createElement("div",null,o.createElement("div",null,o.createElement(h.MuiTextField,{value:e,label:o.createElement(o.Fragment,null,"Wager (Max: ",s.Money(g),")"),disabled:r,onChange:this.wagerOnChange,error:i,helperText:i?l:"",type:"number",variant:"filled",style:{width:"200px"},InputProps:{startAdornment:o.createElement(m.InputAdornment,{position:"start"},"$")}}),o.createElement("p",null,"Total earnings this session: ",s.Money(c))),r?o.createElement("div",null,o.createElement(d.MuiButton,{color:"primary",onClick:this.playerHit},"Hit"),o.createElement(d.MuiButton,{color:"secondary",onClick:this.playerStay},"Stay")):o.createElement("div",null,o.createElement(d.MuiButton,{color:"primary",onClick:this.startOnClick,disabled:i||!this.canStartGame()},"Start")),(r||a!==y.Pending)&&o.createElement("div",null,o.createElement(_.MuiPaper,{variant:"outlined",elevation:2},o.createElement("pre",null,"Player"),t.cards.map((e,t)=>o.createElement(p.ReactCard,{card:e,key:t})),o.createElement("pre",null,"Value(s): "),u.map((e,t)=>o.createElement("pre",{key:t},e))),o.createElement("br",null),o.createElement(_.MuiPaper,{variant:"outlined",elevation:2},o.createElement("pre",null,"Dealer"),n.cards.map((e,t)=>o.createElement(p.ReactCard,{card:e,hidden:r&&0!==t,key:t})),!r&&o.createElement(o.Fragment,null,o.createElement("pre",null,"Value(s): "),f.map((e,t)=>o.createElement("pre",{key:t},e))))),a!==y.Pending&&o.createElement("p",null,a,this.isPlayerWinResult(a)&&o.createElement(o.Fragment,null," You gained ",s.Money(this.state.bet)),a===y.DealerWon&&o.createElement(o.Fragment,null," You lost ",s.Money(this.state.bet))))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CasinoLocation=void 0;const o=i(n(0)),s=n(881),l=n(873),c=n(872),u=n(871),m=n(71);var p;!function(e){e.None="none",e.Coin="coin",e.Slots="slots",e.Roulette="roulette",e.Blackjack="blackjack"}(p||(p={}));t.CasinoLocation=class extends o.Component{constructor(e){super(e),this.state={game:p.None},this.updateGame=this.updateGame.bind(this)}updateGame(e){this.setState({game:e})}renderGames(){return o.createElement(o.Fragment,null,o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.Coin),text:"Play coin flip"}),o.createElement("br",null),o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.Slots),text:"Play slots"}),o.createElement("br",null),o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.Roulette),text:"Play roulette"}),o.createElement("br",null),o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.Blackjack),text:"Play blackjack"}))}renderGame(){let e=null;switch(this.state.game){case p.Coin:e=o.createElement(l.CoinFlip,{p:this.props.p});break;case p.Slots:e=o.createElement(u.SlotMachine,{p:this.props.p});break;case p.Roulette:e=o.createElement(c.Roulette,{p:this.props.p});break;case p.Blackjack:e=o.createElement(s.Blackjack,{p:this.props.p});break;case p.None:break;default:throw new Error(`MissingCaseException: ${this.state.game}`)}return o.createElement(o.Fragment,null,o.createElement(m.StdButton,{onClick:()=>this.updateGame(p.None),text:"Stop playing"}),e)}render(){return this.state.game===p.None?this.renderGames():this.renderGame()}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.UniversityLocation=void 0;const o=i(n(0)),s=n(11),l=n(29),c=n(47),u=n(71),m=n(31);t.UniversityLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.take=this.take.bind(this),this.study=this.study.bind(this),this.dataStructures=this.dataStructures.bind(this),this.networks=this.networks.bind(this),this.algorithms=this.algorithms.bind(this),this.management=this.management.bind(this),this.leadership=this.leadership.bind(this),this.calculateCost=this.calculateCost.bind(this)}calculateCost(){const e=c.SpecialServerIps.getIp(this.props.loc.name),t=l.getServer(e);if(null==t||!t.hasOwnProperty("backdoorInstalled"))return this.props.loc.costMult;const n=t.backdoorInstalled?.9:1;return this.props.loc.costMult*n}take(e){const t=this.props.loc;this.props.p.startClass(this.calculateCost(),t.expMult,e)}study(){this.take(s.CONSTANTS.ClassStudyComputerScience)}dataStructures(){this.take(s.CONSTANTS.ClassDataStructures)}networks(){this.take(s.CONSTANTS.ClassNetworks)}algorithms(){this.take(s.CONSTANTS.ClassAlgorithms)}management(){this.take(s.CONSTANTS.ClassManagement)}leadership(){this.take(s.CONSTANTS.ClassLeadership)}render(){const e=this.calculateCost(),t=s.CONSTANTS.ClassDataStructuresBaseCost*e,n=s.CONSTANTS.ClassNetworksBaseCost*e,r=s.CONSTANTS.ClassAlgorithmsBaseCost*e,a=s.CONSTANTS.ClassManagementBaseCost*e,i=s.CONSTANTS.ClassLeadershipBaseCost*e;return o.createElement("div",null,o.createElement(u.StdButton,{onClick:this.study,style:this.btnStyle,text:"Study Computer Science (free)",tooltip:"Gain hacking experience!"}),o.createElement(u.StdButton,{onClick:this.dataStructures,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Data Structures course (",m.Money(t)," / sec)"),tooltip:"Gain hacking experience!"}),o.createElement(u.StdButton,{onClick:this.networks,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Networks course (",m.Money(n)," / sec)"),tooltip:"Gain hacking experience!"}),o.createElement(u.StdButton,{onClick:this.algorithms,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Algorithms course (",m.Money(r)," / sec)"),tooltip:"Gain hacking experience!"}),o.createElement(u.StdButton,{onClick:this.management,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Management course (",m.Money(a)," / sec)"),tooltip:"Gain charisma experience!"}),o.createElement(u.StdButton,{onClick:this.leadership,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Take Leadership course (",m.Money(i)," / sec)"),tooltip:"Gain charisma experience!"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.TravelAgencyLocation=void 0;const o=i(n(0)),s=n(39),l=n(467),c=n(11),u=n(18),m=n(71),p=n(31);t.TravelAgencyLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"}}asciiWorldMap(){const e=e=>e.city!==this.props.p.city?o.createElement("span",{className:"tooltip",style:{color:"blue",whiteSpace:"nowrap",margin:"0px",padding:"0px"},onClick:l.createTravelPopup.bind(null,e.city,this.props.travel)},o.createElement("span",{className:"tooltiptext"},e.city),e.city[0]):o.createElement("span",null,e.city[0]);return o.createElement("div",null,o.createElement("p",null,"From here, you can travel to any other city! A ticket costs ",p.Money(c.CONSTANTS.TravelCost),"."),o.createElement("pre",null," ,_ . ._. _. ."),o.createElement("pre",null," , _-\\','|~\\~ ~/ ;-'_ _-' ,;_;_, ~~-"),o.createElement("pre",null," /~~-\\_/-'~'--' \\~~| ', ,' / / ~|-_\\_/~/~ ~~--~~~~'--_"),o.createElement("pre",null," / ,/'-/~ '\\ ,' _ , '",o.createElement(e,{city:"Volhaven"}),",'|~ ._/-, /~"),o.createElement("pre",null," ~/-'~\\_, '-,| '|. ' ~ ,\\ /'~ / /_ /~"),o.createElement("pre",null,".-~ '| '',\\~|\\ _\\~ ,_ , ",o.createElement(e,{city:"Chongqing"})," /,"),o.createElement("pre",null," '\\ ",o.createElement(e,{city:"Sector-12"})," /'~ |_/~\\\\,-,~ \\ \" ,_,/ |"),o.createElement("pre",null," | / ._-~'\\_ _~| \\ ) ",o.createElement(e,{city:"New Tokyo"})),o.createElement("pre",null," \\ __-\\ '/ ~ |\\ \\_ / ~"),o.createElement("pre",null," ., '\\ |, ~-_ - | \\\\_' ~| /\\ \\~ ,"),o.createElement("pre",null," ~-_' _; '\\ '-, \\,' /\\/ |"),o.createElement("pre",null," '\\_,~'\\_ \\_ _, /' ' |, /|'"),o.createElement("pre",null," / \\_ ~ | / \\ ~'; -,_."),o.createElement("pre",null," | ~\\ | | , '-_, ,; ~ ~\\"),o.createElement("pre",null," \\, ",o.createElement(e,{city:"Aevum"})," / \\ / /| ,-, , -,"),o.createElement("pre",null," | ,/ | |' |/ ,- ~ \\ '."),o.createElement("pre",null," ,| ,/ \\ ,/ \\ ",o.createElement(e,{city:"Ishima"})," |"),o.createElement("pre",null," / | ~ -~~-, / _"),o.createElement("pre",null," | ,-' ~ /"),o.createElement("pre",null," / ,' ~"),o.createElement("pre",null," ',| ~"),o.createElement("pre",null," ~'"))}listWorldMap(){const e=[];for(const t in s.CityName){const n=s.CityName[t];n!==this.props.p.city&&e.push(o.createElement(m.StdButton,{key:n,onClick:l.createTravelPopup.bind(null,n,this.props.travel),style:this.btnStyle,text:`Travel to ${n}`}))}return o.createElement("div",null,o.createElement("p",null,"From here, you can travel to any other city! A ticket costs ",p.Money(c.CONSTANTS.TravelCost),"."),e)}render(){return u.Settings.DisableASCIIArt?this.listWorldMap():this.asciiWorldMap()}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.TechVendorLocation=void 0;const o=i(n(0)),s=n(467),l=n(11),c=n(152),u=n(642),m=n(71),p=n(31);t.TechVendorLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.state={torPurchased:e.p.hasTorRouter()},this.createUpgradeHomeCoresPopup=this.createUpgradeHomeCoresPopup.bind(this),this.createUpgradeHomeRamPopup=this.createUpgradeHomeRamPopup.bind(this),this.purchaseTorRouter=this.purchaseTorRouter.bind(this)}createUpgradeHomeCoresPopup(){s.createUpgradeHomeCoresPopup(this.props.p)}createUpgradeHomeRamPopup(){s.createUpgradeHomeRamPopup(this.props.p)}purchaseTorRouter(){s.purchaseTorRouter(this.props.p),this.setState({torPurchased:this.props.p.hasTorRouter()})}render(){const e=this.props.loc,t=[];for(let n=e.techVendorMinRam;n<=e.techVendorMaxRam;n*=2){const e=c.getPurchaseServerCost(n);t.push(o.createElement(m.StdButton,{key:n,onClick:()=>s.createPurchaseServerPopup(n,this.props.p),style:this.btnStyle,text:o.createElement(o.Fragment,null,"Purchase ",n,"GB Server - ",p.Money(e))}))}return o.createElement("div",null,t,this.state.torPurchased?o.createElement(u.StdButtonPurchased,{style:this.btnStyle,text:"TOR Router - Purchased"}):o.createElement(m.StdButton,{onClick:this.purchaseTorRouter,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Purchase TOR Router - ",p.Money(l.CONSTANTS.TorRouterCost))}),o.createElement(m.StdButton,{onClick:this.createUpgradeHomeRamPopup,style:this.btnStyle,text:"Purchase additional RAM for Home computer"}),o.createElement(m.StdButton,{onClick:this.createUpgradeHomeCoresPopup,style:this.btnStyle,text:"Purchase additional Core for Home computer"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SpecialLocation=void 0;const o=i(n(0)),s=n(467),l=n(50),c=n(468),u=n(71),m=n(12);t.SpecialLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.createCorporationPopup=this.createCorporationPopup.bind(this),this.handleBladeburner=this.handleBladeburner.bind(this),this.handleResleeving=this.handleResleeving.bind(this),this.state={inBladeburner:this.props.p.inBladeburner()}}createCorporationPopup(){s.createStartCorporationPopup(this.props.p)}handleBladeburner(){const e=this.props.p;if(e.inBladeburner())this.props.engine.loadBladeburnerContent();else if(e.strength>=100&&e.defense>=100&&e.dexterity>=100&&e.agility>=100){e.startBladeburner({new:!0}),m.dialogBoxCreate("You have been accepted into the Bladeburner division!"),this.setState({inBladeburner:!0});const t=document.getElementById("world-menu-header");t instanceof HTMLElement&&(t.click(),t.click())}else m.dialogBoxCreate("Rejected! Please apply again when you have 100 of each combat stat (str, def, dex, agi)")}handleResleeving(){this.props.engine.loadResleevingContent()}renderBladeburner(){if(!this.props.p.canAccessBladeburner())return null;const e=this.state.inBladeburner?"Enter Bladeburner Headquarters":"Apply to Bladeburner Division";return o.createElement(u.StdButton,{onClick:this.handleBladeburner,style:this.btnStyle,text:e})}renderCreateCorporation(){return this.props.p.canAccessCorporation()?o.createElement(c.AutoupdatingStdButton,{disabled:!this.props.p.canAccessCorporation()||this.props.p.hasCorporation(),onClick:this.createCorporationPopup,style:this.btnStyle,text:"Create a Corporation"}):o.createElement(o.Fragment,null,o.createElement("p",null,o.createElement("i",null,"A business man is yelling at a clerk. You should come back later.")))}renderResleeving(){return this.props.p.canAccessResleeving()?o.createElement(u.StdButton,{onClick:this.handleResleeving,style:this.btnStyle,text:"Re-Sleeve"}):null}render(){switch(this.props.loc.name){case l.LocationName.NewTokyoVitaLife:return this.renderResleeving();case l.LocationName.Sector12CityHall:return this.renderCreateCorporation();case l.LocationName.Sector12NSA:return this.renderBladeburner();default:console.error(`Location ${this.props.loc.name} doesn't have any special properties`)}}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SlumsLocation=void 0;const o=i(n(0)),s=n(175),l=n(3),c=n(468);t.SlumsLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.shoplift=this.shoplift.bind(this),this.robStore=this.robStore.bind(this),this.mug=this.mug.bind(this),this.larceny=this.larceny.bind(this),this.dealDrugs=this.dealDrugs.bind(this),this.bondForgery=this.bondForgery.bind(this),this.traffickArms=this.traffickArms.bind(this),this.homicide=this.homicide.bind(this),this.grandTheftAuto=this.grandTheftAuto.bind(this),this.kidnap=this.kidnap.bind(this),this.assassinate=this.assassinate.bind(this),this.heist=this.heist.bind(this)}shoplift(e){e.isTrusted&&s.Crimes.Shoplift.commit(this.props.p)}robStore(e){e.isTrusted&&s.Crimes.RobStore.commit(this.props.p)}mug(e){e.isTrusted&&s.Crimes.Mug.commit(this.props.p)}larceny(e){e.isTrusted&&s.Crimes.Larceny.commit(this.props.p)}dealDrugs(e){e.isTrusted&&s.Crimes.DealDrugs.commit(this.props.p)}bondForgery(e){e.isTrusted&&s.Crimes.BondForgery.commit(this.props.p)}traffickArms(e){e.isTrusted&&s.Crimes.TraffickArms.commit(this.props.p)}homicide(e){e.isTrusted&&s.Crimes.Homicide.commit(this.props.p)}grandTheftAuto(e){e.isTrusted&&s.Crimes.GrandTheftAuto.commit(this.props.p)}kidnap(e){e.isTrusted&&s.Crimes.Kidnap.commit(this.props.p)}assassinate(e){e.isTrusted&&s.Crimes.Assassination.commit(this.props.p)}heist(e){e.isTrusted&&s.Crimes.Heist.commit(this.props.p)}render(){const e=s.Crimes.Shoplift.successRate(this.props.p),t=s.Crimes.RobStore.successRate(this.props.p),n=s.Crimes.Mug.successRate(this.props.p),r=s.Crimes.Larceny.successRate(this.props.p),a=s.Crimes.DealDrugs.successRate(this.props.p),i=s.Crimes.BondForgery.successRate(this.props.p),u=s.Crimes.TraffickArms.successRate(this.props.p),m=s.Crimes.Homicide.successRate(this.props.p),p=s.Crimes.GrandTheftAuto.successRate(this.props.p),h=s.Crimes.Kidnap.successRate(this.props.p),d=s.Crimes.Assassination.successRate(this.props.p),_=s.Crimes.Heist.successRate(this.props.p);return o.createElement("div",null,o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.shoplift,style:this.btnStyle,text:`Shoplift (${l.numeralWrapper.formatPercentage(e)} chance of success)`,tooltip:"Attempt to shoplift from a low-end retailer"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.robStore,style:this.btnStyle,text:`Rob store (${l.numeralWrapper.formatPercentage(t)} chance of success)`,tooltip:"Attempt to commit armed robbery on a high-end store"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.mug,style:this.btnStyle,text:`Mug someone (${l.numeralWrapper.formatPercentage(n)} chance of success)`,tooltip:"Attempt to mug a random person on the street"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.larceny,style:this.btnStyle,text:`Larceny (${l.numeralWrapper.formatPercentage(r)} chance of success)`,tooltip:"Attempt to rob property from someone's house"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.dealDrugs,style:this.btnStyle,text:`Deal Drugs (${l.numeralWrapper.formatPercentage(a)} chance of success)`,tooltip:"Attempt to deal drugs"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.bondForgery,style:this.btnStyle,text:`Bond Forgery (${l.numeralWrapper.formatPercentage(i)} chance of success)`,tooltip:"Attempt to forge corporate bonds"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.traffickArms,style:this.btnStyle,text:`Traffick illegal Arms (${l.numeralWrapper.formatPercentage(u)} chance of success)`,tooltip:"Attempt to smuggle illegal arms into the city"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.homicide,style:this.btnStyle,text:`Homicide (${l.numeralWrapper.formatPercentage(m)} chance of success)`,tooltip:"Attempt to murder a random person on the street"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.grandTheftAuto,style:this.btnStyle,text:`Grand theft Auto (${l.numeralWrapper.formatPercentage(p)} chance of success)`,tooltip:"Attempt to commit grand theft auto"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.kidnap,style:this.btnStyle,text:`Kidnap and Ransom (${l.numeralWrapper.formatPercentage(h)} chance of success)`,tooltip:"Attempt to kidnap and ransom a high-profile-target"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.assassinate,style:this.btnStyle,text:`Assassinate (${l.numeralWrapper.formatPercentage(d)} chance of success)`,tooltip:"Attempt to assassinate a high-profile target"}),o.createElement(c.AutoupdatingStdButton,{intervalTime:5e3,onClick:this.heist,style:this.btnStyle,text:`Heist (${l.numeralWrapper.formatPercentage(_)} chance of success)`,tooltip:"Attempt to pull off the ultimate heist"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.HospitalLocation=void 0;const o=i(n(0)),s=n(250),l=n(468),c=n(31),u=n(12);t.HospitalLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.getCost=this.getCost.bind(this),this.getHealed=this.getHealed.bind(this),this.state={currHp:this.props.p.hp}}getCost(){return s.getHospitalizationCost(this.props.p)}getHealed(e){if(!e.isTrusted)return;if(this.props.p.hp<0&&(this.props.p.hp=0),this.props.p.hp>=this.props.p.max_hp)return;const t=this.getCost();this.props.p.loseMoney(t),this.props.p.hp=this.props.p.max_hp,this.props.p.recordMoneySource(-1*t,"hospitalization"),this.setState({currHp:this.props.p.hp}),u.dialogBoxCreate(o.createElement(o.Fragment,null,"You were healed to full health! The hospital billed you for ",c.Money(t)))}render(){const e=this.getCost();return o.createElement(l.AutoupdatingStdButton,{onClick:this.getHealed,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Get treatment for wounds - ",c.Money(e))})}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.GymLocation=void 0;const o=i(n(0)),s=n(11),l=n(29),c=n(47),u=n(71),m=n(31);t.GymLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"},this.trainStrength=this.trainStrength.bind(this),this.trainDefense=this.trainDefense.bind(this),this.trainDexterity=this.trainDexterity.bind(this),this.trainAgility=this.trainAgility.bind(this),this.calculateCost=this.calculateCost.bind(this)}calculateCost(){const e=c.SpecialServerIps.getIp(this.props.loc.name),t=l.getServer(e);if(null==t||!t.hasOwnProperty("backdoorInstalled"))return this.props.loc.costMult;const n=t.backdoorInstalled?.9:1;return this.props.loc.costMult*n}train(e){const t=this.props.loc;this.props.p.startClass(this.calculateCost(),t.expMult,e)}trainStrength(){this.train(s.CONSTANTS.ClassGymStrength)}trainDefense(){this.train(s.CONSTANTS.ClassGymDefense)}trainDexterity(){this.train(s.CONSTANTS.ClassGymDexterity)}trainAgility(){this.train(s.CONSTANTS.ClassGymAgility)}render(){const e=s.CONSTANTS.ClassGymBaseCost*this.calculateCost();return o.createElement("div",null,o.createElement(u.StdButton,{onClick:this.trainStrength,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Train Strength (",m.Money(e)," / sec)")}),o.createElement(u.StdButton,{onClick:this.trainDefense,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Train Defense (",m.Money(e)," / sec)")}),o.createElement(u.StdButton,{onClick:this.trainDexterity,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Train Dexterity (",m.Money(e)," / sec)")}),o.createElement(u.StdButton,{onClick:this.trainAgility,style:this.btnStyle,text:o.createElement(o.Fragment,null,"Train Agility (",m.Money(e)," / sec)")}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ApplyToJobButton=void 0;const o=i(n(0)),s=n(443),l=n(71);t.ApplyToJobButton=class extends o.Component{constructor(e){super(e),this.getJobRequirementTooltip=this.getJobRequirementTooltip.bind(this)}getJobRequirementTooltip(){const e=this.props.p.getNextCompanyPosition(this.props.company,this.props.entryPosType);return null==e?"":this.props.company.hasPosition(e)?s.getJobRequirementText(this.props.company,e,!0):""}render(){return o.createElement(l.StdButton,{onClick:this.props.onClick,style:this.props.style,text:this.props.text,tooltip:this.getJobRequirementTooltip()})}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CompanyLocation=void 0;const o=i(n(0)),s=n(890),l=n(411),c=n(35),u=n(292),m=n(62),p=i(n(70)),h=n(71),d=n(68),_=n(683),g=n(58),y={display:"block"};t.CompanyLocation=class extends o.Component{constructor(e){if(super(e),this.companyPosition=null,this.jobTitle=null,this.btnStyle={display:"block"},this.quit=this.quit.bind(this),this.applyForAgentJob=this.applyForAgentJob.bind(this),this.applyForBusinessConsultantJob=this.applyForBusinessConsultantJob.bind(this),this.applyForBusinessJob=this.applyForBusinessJob.bind(this),this.applyForEmployeeJob=this.applyForEmployeeJob.bind(this),this.applyForItJob=this.applyForItJob.bind(this),this.applyForPartTimeEmployeeJob=this.applyForPartTimeEmployeeJob.bind(this),this.applyForPartTimeWaiterJob=this.applyForPartTimeWaiterJob.bind(this),this.applyForSecurityJob=this.applyForSecurityJob.bind(this),this.applyForSoftwareConsultantJob=this.applyForSoftwareConsultantJob.bind(this),this.applyForSoftwareJob=this.applyForSoftwareJob.bind(this),this.applyForWaiterJob=this.applyForWaiterJob.bind(this),this.startInfiltration=this.startInfiltration.bind(this),this.work=this.work.bind(this),this.location=l.Locations[e.locName],null==this.location)throw new Error(`CompanyLocation component constructed with invalid location: ${e.locName}`);if(this.company=c.Companies[e.locName],null==this.company)throw new Error(`CompanyLocation component constructed with invalid company: ${e.locName}`);this.state={employedHere:!1},this.checkIfEmployedHere(!1)}applyForAgentJob(e){e.isTrusted&&(this.props.p.applyForAgentJob(),this.checkIfEmployedHere(!0))}applyForBusinessConsultantJob(e){e.isTrusted&&(this.props.p.applyForBusinessConsultantJob(),this.checkIfEmployedHere(!0))}applyForBusinessJob(e){e.isTrusted&&(this.props.p.applyForBusinessJob(),this.checkIfEmployedHere(!0))}applyForEmployeeJob(e){e.isTrusted&&(this.props.p.applyForEmployeeJob(),this.checkIfEmployedHere(!0))}applyForItJob(e){e.isTrusted&&(this.props.p.applyForItJob(),this.checkIfEmployedHere(!0))}applyForPartTimeEmployeeJob(e){e.isTrusted&&(this.props.p.applyForPartTimeEmployeeJob(),this.checkIfEmployedHere(!0))}applyForPartTimeWaiterJob(e){e.isTrusted&&(this.props.p.applyForPartTimeWaiterJob(),this.checkIfEmployedHere(!0))}applyForSecurityJob(e){e.isTrusted&&(this.props.p.applyForSecurityJob(),this.checkIfEmployedHere(!0))}applyForSoftwareConsultantJob(e){e.isTrusted&&(this.props.p.applyForSoftwareConsultantJob(),this.checkIfEmployedHere(!0))}applyForSoftwareJob(e){e.isTrusted&&(this.props.p.applyForSoftwareJob(),this.checkIfEmployedHere(!0))}applyForWaiterJob(e){e.isTrusted&&(this.props.p.applyForWaiterJob(),this.checkIfEmployedHere(!0))}checkIfEmployedHere(e=!1){this.jobTitle=this.props.p.jobs[this.props.locName],null!=this.jobTitle&&(this.companyPosition=m.CompanyPositions[this.jobTitle]),e&&this.setState({employedHere:null!=this.jobTitle})}startInfiltration(e){if(!e.isTrusted)return;const t=this.location;t.infiltrationData?(this.props.engine.loadInfiltrationContent(this.props.locName,t.infiltrationData.startingSecurityLevel,t.infiltrationData.maxClearanceLevel),t.infiltrationData):console.error(`trying to start infiltration at ${this.props.locName} but the infiltrationData is null`)}work(e){if(!e.isTrusted)return;const t=this.companyPosition;t instanceof u.CompanyPosition&&(t.isPartTimeJob()||t.isSoftwareConsultantJob()||t.isBusinessConsultantJob()?this.props.p.startWorkPartTime(this.props.locName):this.props.p.startWork(this.props.locName))}quit(e){if(!e.isTrusted)return;const t=g.yesNoBoxGetYesButton(),n=g.yesNoBoxGetNoButton();null!=t&&null!=n&&(t.innerHTML="Quit job",n.innerHTML="Cancel",t.addEventListener("click",()=>{this.props.p.quitJob(this.props.locName),this.checkIfEmployedHere(!0),g.yesNoBoxClose()}),n.addEventListener("click",()=>{g.yesNoBoxClose()}),g.yesNoBoxCreate(o.createElement(o.Fragment,null,"Would you like to quit your job at ",this.company.name,"?")))}render(){const e=null!=this.jobTitle,t=this.company.getFavorGain();return o.createElement("div",null,e&&o.createElement("div",null,o.createElement("p",null,"Job Title: ",this.jobTitle),o.createElement("br",null),o.createElement("p",{style:y},"-------------------------"),o.createElement("br",null),o.createElement("p",{className:"tooltip"},"Company reputation: ",d.Reputation(this.company.playerReputation),o.createElement("span",{className:"tooltiptext"},"You will earn ",_.Favor(t[0])," company favor upon resetting after installing Augmentations")),o.createElement("br",null),o.createElement("br",null),o.createElement("p",{style:y},"-------------------------"),o.createElement("br",null),o.createElement("p",{className:"tooltip"},"Company Favor: ",_.Favor(this.company.favor),o.createElement("span",{className:"tooltiptext"},"Company favor increases the rate at which you earn reputation for this company by 1% per favor. Company favor is gained whenever you reset after installing Augmentations. The amount of favor you gain depends on how much reputation you have with the comapny.")),o.createElement("br",null),o.createElement("br",null),o.createElement("p",{style:y},"-------------------------"),o.createElement("br",null),o.createElement(h.StdButton,{onClick:this.work,text:"Work"}),"    ",o.createElement(h.StdButton,{onClick:this.quit,text:"Quit"})),this.company.hasAgentPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.AgentCompanyPositions[0]],onClick:this.applyForAgentJob,p:this.props.p,style:this.btnStyle,text:"Apply for Agent Job"}),this.company.hasBusinessConsultantPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.BusinessConsultantCompanyPositions[0]],onClick:this.applyForBusinessConsultantJob,p:this.props.p,style:this.btnStyle,text:"Apply for Business Consultant Job"}),this.company.hasBusinessPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.BusinessCompanyPositions[0]],onClick:this.applyForBusinessJob,p:this.props.p,style:this.btnStyle,text:"Apply for Business Job"}),this.company.hasEmployeePositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.MiscCompanyPositions[1]],onClick:this.applyForEmployeeJob,p:this.props.p,style:this.btnStyle,text:"Apply to be an Employee"}),this.company.hasEmployeePositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.PartTimeCompanyPositions[1]],onClick:this.applyForPartTimeEmployeeJob,p:this.props.p,style:this.btnStyle,text:"Apply to be a part-time Employee"}),this.company.hasITPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.ITCompanyPositions[0]],onClick:this.applyForItJob,p:this.props.p,style:this.btnStyle,text:"Apply for IT Job"}),this.company.hasSecurityPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.SecurityCompanyPositions[2]],onClick:this.applyForSecurityJob,p:this.props.p,style:this.btnStyle,text:"Apply for Security Job"}),this.company.hasSoftwareConsultantPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.SoftwareConsultantCompanyPositions[0]],onClick:this.applyForSoftwareConsultantJob,p:this.props.p,style:this.btnStyle,text:"Apply for Software Consultant Job"}),this.company.hasSoftwarePositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.SoftwareCompanyPositions[0]],onClick:this.applyForSoftwareJob,p:this.props.p,style:this.btnStyle,text:"Apply for Software Job"}),this.company.hasWaiterPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.MiscCompanyPositions[0]],onClick:this.applyForWaiterJob,p:this.props.p,style:this.btnStyle,text:"Apply to be a Waiter"}),this.company.hasWaiterPositions()&&o.createElement(s.ApplyToJobButton,{company:this.company,entryPosType:m.CompanyPositions[p.PartTimeCompanyPositions[0]],onClick:this.applyForPartTimeWaiterJob,p:this.props.p,style:this.btnStyle,text:"Apply to be a part-time Waiter"}),null!=this.location.infiltrationData&&o.createElement(h.StdButton,{onClick:this.startInfiltration,style:this.btnStyle,text:"Infiltrate Company"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.GenericLocation=void 0;const o=i(n(0)),s=n(891),l=n(889),c=n(888),u=n(887),m=n(886),p=n(885),h=n(884),d=n(883),_=n(882),g=n(475),y=n(18),f=n(47),b=n(29),E=n(71),v=n(870);t.GenericLocation=class extends o.Component{constructor(e){super(e),this.btnStyle={display:"block"}}getLocationSpecificContent(){const e=[];return this.props.loc.types.includes(g.LocationType.Company)&&e.push(o.createElement(s.CompanyLocation,{engine:this.props.engine,key:"companylocation",locName:this.props.loc.name,p:this.props.p})),this.props.loc.types.includes(g.LocationType.Gym)&&e.push(o.createElement(l.GymLocation,{key:"gymlocation",loc:this.props.loc,p:this.props.p})),this.props.loc.types.includes(g.LocationType.Hospital)&&e.push(o.createElement(c.HospitalLocation,{key:"hospitallocation",p:this.props.p})),this.props.loc.types.includes(g.LocationType.Slums)&&e.push(o.createElement(u.SlumsLocation,{key:"slumslocation",p:this.props.p})),this.props.loc.types.includes(g.LocationType.Special)&&e.push(o.createElement(m.SpecialLocation,{engine:this.props.engine,key:"speciallocation",loc:this.props.loc,p:this.props.p})),this.props.loc.types.includes(g.LocationType.TechVendor)&&e.push(o.createElement(p.TechVendorLocation,{key:"techvendorlocation",loc:this.props.loc,p:this.props.p})),this.props.loc.types.includes(g.LocationType.TravelAgency)&&e.push(o.createElement(h.TravelAgencyLocation,{key:"travelagencylocation",p:this.props.p,travel:this.props.travel})),this.props.loc.types.includes(g.LocationType.University)&&e.push(o.createElement(d.UniversityLocation,{key:"universitylocation",loc:this.props.loc,p:this.props.p})),this.props.loc.types.includes(g.LocationType.Casino)&&e.push(o.createElement(_.CasinoLocation,{key:"casinoLocation",p:this.props.p})),e}render(){const e=this.getLocationSpecificContent(),t=f.SpecialServerIps.getIp(this.props.loc.name),n=b.getServer(t),r=null!==n&&b.isBackdoorInstalled(n);return o.createElement("div",null,o.createElement(E.StdButton,{onClick:this.props.returnToCity,style:this.btnStyle,text:"Return to World"}),o.createElement("h1",null,r&&!y.Settings.DisableTextEffects?o.createElement(v.CorruptableText,{content:this.props.loc.name}):this.props.loc.name),e)}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.LocationCity=void 0;const o=i(n(0)),s=n(18),l=n(71);t.LocationCity=class extends o.Component{asciiCity(){const e=e=>e?o.createElement("span",{key:e,className:"tooltip",style:{color:"blue",whiteSpace:"nowrap",margin:"0px",padding:"0px",cursor:"pointer"},onClick:this.props.enterLocation.bind(this,e)},"X"):o.createElement("span",null,"*"),t=/[A-Z]/g,n={A:0,B:1,C:2,D:3,E:4,F:5,G:6,H:7,I:8,J:9,K:10,L:11,M:12,N:13,O:14,P:15,Q:16,R:17,S:18,T:19,U:20,V:21,W:22,X:23,Y:24,Z:25},r=r=>{const a=[],i=[];let o;for(;null!==(o=t.exec(r));)i.push(o);if(0===i.length)return a.push(r),a;for(let t=0;to.createElement("li",{key:e},o.createElement(l.StdButton,{onClick:this.props.enterLocation.bind(this,e),text:e})));return o.createElement("ul",null,e)}render(){return o.createElement(o.Fragment,null,s.Settings.DisableASCIIArt?this.listCity():this.asciiCity())}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Victory=void 0;const s=n(19),l=i(n(0)),c=n(71),u=o(n(101)),m=n(31),p=n(68),h=n(25);t.Victory=function(e){const[t,n]=l.useState("none");function r(){const t=document.getElementById("mainmenu-container");if(!t)throw new Error("mainmenu-container somehow null");t.style.visibility="visible",e.Engine.loadLocationContent()}const a=e.MaxLevel*Math.pow(1.01,e.MaxLevel),i=Math.pow(e.Difficulty+1,1.1)*Math.pow(e.StartingDifficulty,1.2)*30*a*h.BitNodeMultipliers.InfiltrationRep,o=Math.pow(e.Difficulty+1,2)*Math.pow(e.StartingDifficulty,3)*3e3*a*h.BitNodeMultipliers.InfiltrationMoney;return l.default.createElement(l.default.Fragment,null,l.default.createElement(u.default,{container:!0,spacing:3},l.default.createElement(u.default,{item:!0,xs:10},l.default.createElement("h1",null,"Infiltration successful!")),l.default.createElement(u.default,{item:!0,xs:10},l.default.createElement("h2",null,"You can trade the confidential information you found for money or reputation."),l.default.createElement("select",{className:"dropdown",onChange:function(e){n(e.target.value)}},l.default.createElement("option",{key:"none",value:"none"},"none"),e.Player.factions.filter(e=>s.Factions[e].getInfo().offersWork()).map(e=>l.default.createElement("option",{key:e,value:e},e))),l.default.createElement(c.StdButton,{onClick:function(){"none"!==t&&(s.Factions[t].playerReputation+=i,r())},text:l.default.createElement(l.default.Fragment,null,"Trade for ",p.Reputation(i)," reputation")})),l.default.createElement(u.default,{item:!0,xs:3},l.default.createElement(c.StdButton,{onClick:function(){e.Player.gainMoney(o),e.Player.recordMoneySource(o,"infiltration"),r()},text:l.default.createElement(l.default.Fragment,null,"Sell for ",m.Money(o))})),l.default.createElement(u.default,{item:!0,xs:3},l.default.createElement(c.StdButton,{onClick:r,text:"Quit"}))))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.WireCuttingGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(228),p=n(167),h={Trivial:{timer:9e3,wiresmin:4,wiresmax:4,rules:2},Normal:{timer:7e3,wiresmin:6,wiresmax:6,rules:2},Hard:{timer:5e3,wiresmin:8,wiresmax:8,rules:3},Impossible:{timer:4e3,wiresmin:9,wiresmax:9,rules:4}},d=["|",".","/","-","█","#"],_=["red","#FFC107","blue","white"],g={red:"red","#FFC107":"yellow",blue:"blue",white:"white"};function y(e){const t=Math.floor(Math.random()*e.length);return{toString:()=>`Cut wires number ${t+1}.`,shouldCut:(e,n)=>t===n}}function f(e){const t=e[Math.floor(Math.random()*e.length)].colors[0];return{toString:()=>`Cut all wires colored ${g[t]}.`,shouldCut:e=>e.colors.includes(t)}}t.WireCuttingGame=function(e){const t={timer:0,wiresmin:0,wiresmax:0,rules:0};p.interpolate(h,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=[],n=m.random(e.wiresmin,e.wiresmax);for(let e=0;es.default.createElement("h3",{key:t},e.toString())),s.default.createElement("pre",null,new Array(r.length).fill(0).map((e,t)=>s.default.createElement("span",{key:t}," ",t+1,"    "))),new Array(8).fill(0).map((e,t)=>s.default.createElement("div",{key:t},s.default.createElement("pre",null,r.map((e,n)=>3!==t&&4!==t||!a[n]?s.default.createElement("span",{key:n,style:{color:e.colors[t%e.colors.length]}},"|",e.tpe,"|   "):s.default.createElement("span",{key:n},"      "))))),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){t.preventDefault();const n=parseInt(t.key);n<1||n>r.length||isNaN(n)||i(t=>{const a=[...t];a[n-1]=!0,o.some(e=>e.shouldCut(r[n-1],n-1))||e.onFailure();const i=[];for(let e=0;ee===a[t])&&e.onSuccess(),a})}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.MinesweeperGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(167),p=n(228),h={Trivial:{timer:15e3,width:3,height:3,mines:4},Normal:{timer:15e3,width:4,height:4,mines:7},Hard:{timer:15e3,width:5,height:5,mines:11},Impossible:{timer:15e3,width:6,height:6,mines:15}};function d(e){const t=[];for(let n=0;n{const e=setTimeout(()=>y(!1),2e3);return()=>clearInterval(e)},[]),s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(u.GameTimer,{millis:n,onExpire:e.onFailure}),s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",{className:"noselect"},g?"Remember all the mines!":"Mark all the mines!"),r.map((e,t)=>s.default.createElement("div",{key:t},s.default.createElement("pre",null,e.map((e,n)=>g?r[t][n]?s.default.createElement("span",{key:n},"[?] "):s.default.createElement("span",{key:n},"[ ] "):n==o[0]&&t==o[1]?s.default.createElement("span",{key:n},"[X] "):a[t][n]?s.default.createElement("span",{key:n},"[.] "):s.default.createElement("span",{key:n},"[ ] "))),s.default.createElement("br",null))),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){if(t.preventDefault(),g)return;const n=[0,0];switch(p.getArrow(t)){case"↑":n[1]--;break;case"←":n[0]--;break;case"↓":n[1]++;break;case"→":n[0]++}const a=[o[0]+n[0],o[1]+n[1]];if(a[0]=(a[0]+r[0].length)%r[0].length,a[1]=(a[1]+r.length)%r.length,_(a),32==t.keyCode){if(!r[o[1]][o[0]])return void e.onFailure();i(t=>(t[o[1]][o[0]]=!0,function(e,t){function n(e){return e.flat().reduce((e,t)=>e+(t?1:0),0)}return n(e)===n(t)}(r,t)&&e.onSuccess(),t))}}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Cyberpunk2077Game=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(167),p=n(228),h={Trivial:{timer:12500,width:3,height:3,symbols:6},Normal:{timer:15e3,width:4,height:4,symbols:7},Hard:{timer:12500,width:5,height:5,symbols:8},Impossible:{timer:1e4,width:6,height:6,symbols:9}};function d(){return"ABCDEF0123456789"[Math.floor(16*Math.random())]}t.Cyberpunk2077Game=function(e){const t={timer:0,width:0,height:0,symbols:0};m.interpolate(h,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=[];for(let n=0;nt==i?s.default.createElement("span",{key:`${t}`,style:{fontSize:"1em",color:"blue"}},e," "):s.default.createElement("span",{key:`${t}`,style:{fontSize:"1em"}},e," "))),s.default.createElement("br",null),r.map((e,t)=>s.default.createElement("div",{key:t},s.default.createElement("pre",null,e.map((e,n)=>n==_[0]&&t==_[1]?s.default.createElement("span",{key:`${n}${t}`,style:{fontSize:"2em",color:"blue"}},e," "):s.default.createElement("span",{key:`${n}${t}`,style:{fontSize:"2em"}},e," "))),s.default.createElement("br",null))),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){t.preventDefault();const n=[0,0];switch(p.getArrow(t)){case"↑":n[1]--;break;case"←":n[0]--;break;case"↓":n[1]++;break;case"→":n[0]++}const s=[_[0]+n[0],_[1]+n[1]];if(s[0]=(s[0]+r[0].length)%r[0].length,s[1]=(s[1]+r.length)%r.length,g(s),32==t.keyCode){if(r[_[1]][_[0]]!==a[i])return void e.onFailure();o(i+1),a.length===i+1&&e.onSuccess()}}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.CheatCodeGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(228),p=n(167),h={Trivial:{timer:13e3,min:6,max:8},Normal:{timer:7e3,min:7,max:8},Hard:{timer:5e3,min:8,max:9},Impossible:{timer:3e3,min:9,max:9}};t.CheatCodeGame=function(e){const t={timer:0,min:0,max:0};p.interpolate(h,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=["←","→","↑","↓"];let n="";for(let r=0;r=r.length&&e.onSuccess()):e.onFailure()}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BribeGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(167),p={Trivial:{timer:12e3,size:6},Normal:{timer:9e3,size:8},Hard:{timer:5e3,size:9},Impossible:{timer:2500,size:12}};t.BribeGame=function(e){const t={timer:0,size:0};m.interpolate(p,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=[];t.push(h[Math.floor(Math.random()*h.length)]);for(let n=0;n0;t--){const n=Math.floor(Math.random()*(t+1)),r=e[t];e[t]=e[n],e[n]=r}}(t),t}(t)),[a,i]=s.useState(0);return s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(u.GameTimer,{millis:n,onExpire:e.onFailure}),s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",null,"Say something nice about the guard."),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){t.preventDefault();const n=t.keyCode;if(32===n)return void(h.includes(r[a])?e.onSuccess():e.onFailure());let o=a;for([38,87,68,39].includes(n)&&o++,[65,37,83,40].includes(n)&&o--;o<0;)o+=r.length;for(;o>r.length-1;)o-=r.length;i(o)}})),s.default.createElement(l.default,{item:!0,xs:6},s.default.createElement("h2",{style:{fontSize:"2em"}},"↑"),s.default.createElement("h2",{style:{fontSize:"2em"}},r[a]),s.default.createElement("h2",{style:{fontSize:"2em"}},"↓")))};const h=["affectionate","agreeable","bright","charming","creative","determined","energetic","friendly","funny","generous","polite","likable","diplomatic","helpful","giving","kind","hardworking","patient","dynamic","loyal"],d=["aggressive","aloof","arrogant","big-headed","boastful","boring","bossy","careless","clingy","couch potato","cruel","cynical","grumpy","hot air","know it all","obnoxious","pain in the neck","picky","tactless","thoughtless"]},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BackwardGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(228),p=n(167),h=n(628),d={Trivial:{timer:16e3,min:3,max:4},Normal:{timer:12500,min:2,max:3},Hard:{timer:15e3,min:3,max:4},Impossible:{timer:8e3,min:4,max:4}};t.BackwardGame=function(e){const t={timer:0,min:0,max:0};p.interpolate(d,e.difficulty,t);const n=t.timer,[r]=s.useState(function(e){const t=m.random(e.min,e.max);let n="";for(let e=0;e0&&(n+=" "),n+=_[Math.floor(Math.random()*_.length)];return n}(t)),[a,i]=s.useState("");return s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(u.GameTimer,{millis:n,onExpire:e.onFailure}),s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",{className:"noselect"},"Type it backward"),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){if(t.preventDefault(),16===t.keyCode)return;const n=a+t.key.toUpperCase();r.startsWith(n)?r===n?e.onSuccess():i(n):e.onFailure()}})),s.default.createElement(l.default,{item:!0,xs:6},s.default.createElement("p",{style:{transform:"scaleX(-1)"}},r)),s.default.createElement(l.default,{item:!0,xs:6},s.default.createElement("p",null,a,s.default.createElement(h.BlinkingCursor,null))))};const _=["ALGORITHM","ANALOG","APP","APPLICATION","ARRAY","BACKUP","BANDWIDTH","BINARY","BIT","BITE","BITMAP","BLOG","BLOGGER","BOOKMARK","BOOT","BROADBAND","BROWSER","BUFFER","BUG","BUS","BYTE","CACHE","CAPS LOCK","CAPTCHA","CD","CD-ROM","CLIENT","CLIPBOARD","CLOUD","COMPUTING","COMMAND","COMPILE","COMPRESS","COMPUTER","CONFIGURE","COOKIE","COPY","CPU","CYBERCRIME","CYBERSPACE","DASHBOARD","DATA","MINING","DATABASE","DEBUG","DECOMPRESS","DELETE","DESKTOP","DEVELOPMENT","DIGITAL","DISK","DNS","DOCUMENT","DOMAIN","DOMAIN NAME","DOT","DOT MATRIX","DOWNLOAD","DRAG","DVD","DYNAMIC","EMAIL","EMOTICON","ENCRYPT","ENCRYPTION","ENTER","EXABYTE","FAQ","FILE","FINDER","FIREWALL","FIRMWARE","FLAMING","FLASH","FLASH DRIVE","FLOPPY DISK","FLOWCHART","FOLDER","FONT","FORMAT","FRAME","FREEWARE","GIGABYTE","GRAPHICS","HACK","HACKER","HARDWARE","HOME PAGE","HOST","HTML","HYPERLINK","HYPERTEXT","ICON","INBOX","INTEGER","INTERFACE","INTERNET","IP ADDRESS","ITERATION","JAVA","JOYSTICK","JUNKMAIL","KERNEL","KEY","KEYBOARD","KEYWORD","LAPTOP","LASER PRINTER","LINK","LINUX","LOG OUT","LOGIC","LOGIN","LURKING","MACINTOSH","MACRO","MAINFRAME","MALWARE","MEDIA","MEMORY","MIRROR","MODEM","MONITOR","MOTHERBOARD","MOUSE","MULTIMEDIA","NET","NETWORK","NODE","NOTEBOOK","COMPUTER","OFFLINE","ONLINE","OPENSOURCE","OPERATING","SYSTEM","OPTION","OUTPUT","PAGE","PASSWORD","PASTE","PATH","PHISHING","PIRACY","PIRATE","PLATFORM","PLUGIN","PODCAST","POPUP","PORTAL","PRINT","PRINTER","PRIVACY","PROCESS","PROGRAM","PROGRAMMER","PROTOCOL","QUEUE","QWERTY","RAM","REALTIME","REBOOT","RESOLUTION","RESTORE","ROM","ROOT","ROUTER","RUNTIME","SAVE","SCAN","SCANNER","SCREEN","SCREENSHOT","SCRIPT","SCROLL","SCROLL","SEARCH","ENGINE","SECURITY","SERVER","SHAREWARE","SHELL","SHIFT","SHIFT KEY","SNAPSHOT","SOCIAL NETWORKING","SOFTWARE","SPAM","SPAMMER","SPREADSHEET","SPYWARE","STATUS","STORAGE","SUPERCOMPUTER","SURF","SYNTAX","TABLE","TAG","TERMINAL","TEMPLATE","TERABYTE","TEXT EDITOR","THREAD","TOOLBAR","TRASH","TROJAN HORSE","TYPEFACE","UNDO","UNIX","UPLOAD","URL","USER","USER INTERFACE","USERNAME","UTILITY","VERSION","VIRTUAL","VIRTUAL MEMORY","VIRUS","WEB","WEBMASTER","WEBSITE","WIDGET","WIKI","WINDOW","WINDOWS","WIRELESS","PROCESSOR","WORKSTATION","WEB","WORM","WWW","XML","ZIP"]},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.SlashGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(167),p={Trivial:{window:600},Normal:{window:325},Hard:{window:250},Impossible:{window:150}};t.SlashGame=function(e){const t={window:0};m.interpolate(p,e.difficulty,t);const[n,r]=s.useState(!0);return s.useEffect(()=>{let e=-1;const n=setTimeout(()=>{r(!1),e=setTimeout(()=>r(!0),t.window)},3250*Math.random()+1500);return()=>{clearInterval(n),-1!==e&&clearInterval(e)}},[]),s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(u.GameTimer,{millis:5e3,onExpire:e.onFailure}),s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",{className:"noselect"},"Slash when his guard is down!"),s.default.createElement("p",{style:{fontSize:"5em"}},n?"!Guarding!":"!ATTACKING!"),s.default.createElement(c.KeyHandler,{onKeyDown:function(t){t.preventDefault(),32===t.keyCode&&(n?e.onFailure():e.onSuccess())}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.BracketGame=void 0;const s=i(n(0)),l=o(n(101)),c=n(169),u=n(168),m=n(228),p=n(167),h=n(628),d={Trivial:{timer:8e3,min:2,max:3},Normal:{timer:6e3,min:4,max:5},Hard:{timer:4e3,min:4,max:6},Impossible:{timer:2500,min:7,max:7}};t.BracketGame=function(e){const t={timer:0,min:0,max:0};p.interpolate(d,e.difficulty,t);const n=t.timer,[r,a]=s.useState(""),[i]=s.useState(function(e){let t="";const n=m.random(e.min,e.max);for(let e=0;e":"":"]"}(t);n&&(function(e,t){return"["===e&&"]"===t||"<"===e&&">"===t||"("===e&&")"===t||"{"===e&&"}"===t}(i[i.length-r.length-1],n)?i.length!==r.length+1?a(r+n):e.onSuccess():e.onFailure())}})))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Countdown=void 0;const s=i(n(0)),l=o(n(101));t.Countdown=function(e){const[t,n]=s.useState(3);return s.useEffect(()=>{0!==t?setTimeout(()=>n(t-1),200):e.onFinish()}),s.default.createElement(s.default.Fragment,null,s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(l.default,{item:!0,xs:12},s.default.createElement("h1",null,"Get Ready!"),s.default.createElement("h1",null,t))))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t},o=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Game=void 0;const s=i(n(0)),l=o(n(101)),c=n(903),u=n(902),m=n(901),p=n(900),h=n(899),d=n(898),_=n(897),g=n(896),y=n(895),f=n(894);var b;!function(e){e[e.Countdown=0]="Countdown",e[e.Minigame=1]="Minigame",e[e.Result=2]="Result",e[e.Sell=3]="Sell"}(b||(b={}));const E=[m.SlashGame,u.BracketGame,p.BackwardGame,h.BribeGame,d.CheatCodeGame,_.Cyberpunk2077Game,g.MinesweeperGame,y.WireCuttingGame];t.Game=function(e){const[t,n]=s.useState(1),[r,a]=s.useState(b.Countdown),[i,o]=s.useState(""),[u,m]=s.useState({lastGames:[-1,-1],id:Math.floor(Math.random()*E.length)});function p(){m({lastGames:[u.lastGames[1],u.id],id:function(){let e=u.lastGames[0];const t=[u.lastGames[0],u.lastGames[1],u.id];for(;t.includes(e);)e=Math.floor(Math.random()*E.length);return e}()})}function h(e){o(t=>{let n=t;return(n+=e?"✓":"✗").length>15&&(n=n.slice(1)),n})}let d;switch(r){case b.Countdown:d=s.default.createElement(c.Countdown,{onFinish:()=>a(b.Minigame)});break;case b.Minigame:{const r=E[u.id];d=s.default.createElement(r,{onSuccess:function(){h(!0),t===e.MaxLevel?a(b.Sell):(a(b.Countdown),n(t+1)),p()},onFailure:function(){if(a(b.Countdown),h(!1),e.Player.takeDamage(3*e.StartingDifficulty)){const t=document.getElementById("mainmenu-container");if(null===t)throw new Error("mainmenu-container not found");t.style.visibility="visible",e.Engine.loadLocationContent()}p()},difficulty:e.Difficulty+t/50});break}case b.Sell:d=s.default.createElement(f.Victory,{Player:e.Player,Engine:e.Engine,StartingDifficulty:e.StartingDifficulty,Difficulty:e.Difficulty,MaxLevel:e.MaxLevel})}return s.default.createElement(s.default.Fragment,null,s.default.createElement(l.default,{container:!0,spacing:3},s.default.createElement(l.default,{item:!0,xs:3},s.default.createElement("h3",null,"Level: ",t," / ",e.MaxLevel),s.default.createElement(function(){return s.default.createElement("h4",null,s.default.createElement("span",{style:{color:"gray"}},i.slice(0,i.length-1)),i[i.length-1])},null)),s.default.createElement(l.default,{item:!0,xs:12},d)))}},,,,,,function(e,t,n){"use strict";var r=this&&this.__importDefault||function(e){return e&&e.__esModule?e:{default:e}};Object.defineProperty(t,"__esModule",{value:!0}),t.Intro=void 0;const a=r(n(0)),i=n(71),o=r(n(101));t.Intro=function(e){return a.default.createElement(a.default.Fragment,null,a.default.createElement(o.default,{container:!0,spacing:3},a.default.createElement(o.default,{item:!0,xs:10},a.default.createElement("h1",null,"Infiltrating ",e.Location)),a.default.createElement(o.default,{item:!0,xs:10},a.default.createElement("h2",null,"Difficulty: ",function(e){return e<=.5?"trivial":e<=1.5?"normal":e<=2.5?"hard":"impossible"}(e.Difficulty),", Maximum level: ",e.MaxLevel)),a.default.createElement(o.default,{item:!0,xs:10},a.default.createElement("p",null,"Infiltration is a series of short minigames that get progressively harder. You take damage for failing them. Reaching the maximum level rewards you with intel you can trade for money or reputation."),a.default.createElement("br",null),a.default.createElement("p",null,"The minigames you play are randomly selected. It might take you few tries to get used to them."),a.default.createElement("br",null),a.default.createElement("p",null,"No game require use of the mouse."),a.default.createElement("br",null),a.default.createElement("p",null,"Spacebar is the default action/confirm button."),a.default.createElement("br",null),a.default.createElement("p",null,"Everything that uses arrow can also use WASD"),a.default.createElement("br",null),a.default.createElement("p",null,"Sometimes the rest of the keyboard is used.")),a.default.createElement(o.default,{item:!0,xs:3},a.default.createElement(i.StdButton,{onClick:e.start,text:"Start"})),a.default.createElement(o.default,{item:!0,xs:3},a.default.createElement(i.StdButton,{onClick:e.cancel,text:"Cancel"}))))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Root=void 0;const o=i(n(0)),s=n(910),l=n(904);t.Root=function(e){const[t,n]=o.useState(!1);return t?o.default.createElement(l.Game,{Player:e.Player,Engine:e.Engine,StartingDifficulty:e.StartingDifficulty,Difficulty:e.Difficulty,MaxLevel:e.MaxLevel}):o.default.createElement(s.Intro,{Player:e.Player,Engine:e.Engine,Location:e.Location,Difficulty:e.Difficulty,MaxLevel:e.MaxLevel,start:()=>n(!0),cancel:function(){const t=document.getElementById("mainmenu-container");if(null===t)throw new Error("mainmenu-container not found");t.style.visibility="visible",e.Engine.loadLocationContent()}})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.PurchasedAugmentations=void 0;const o=i(n(0)),s=n(15),l=n(4),c=n(1),u=n(637);t.PurchasedAugmentations=function(){const e=[];let t=-1;for(let e=c.Player.queuedAugmentations.length-1;e>=0;e--)if(c.Player.queuedAugmentations[e].name===l.AugmentationNames.NeuroFluxGovernor){t=e;break}for(let n=0;no.createElement("tr",{key:e[0]},o.createElement("td",{key:"0"},o.createElement("span",null,e[0]," multiplier: ")),o.createElement("td",{key:"1",style:{textAlign:"right"}},l.numeralWrapper.formatPercentage(e[1])),function(e){let t=[];return e&&(t=[o.createElement("td",{key:"2"}," ","=>"," "),o.createElement("td",{key:"3"},l.numeralWrapper.formatPercentage(e))]),t}(e[2])))))}return o.createElement(o.Fragment,null,o.createElement("p",null,o.createElement("strong",null,o.createElement("u",null,"Multipliers:"))),o.createElement("br",null),t([["Hacking Chance ",s.Player.hacking_chance_mult,s.Player.hacking_chance_mult*e.hacking_chance_mult],["Hacking Speed ",s.Player.hacking_speed_mult,s.Player.hacking_speed_mult*e.hacking_speed_mult],["Hacking Money ",s.Player.hacking_money_mult,s.Player.hacking_money_mult*e.hacking_money_mult],["Hacking Growth ",s.Player.hacking_grow_mult,s.Player.hacking_grow_mult*e.hacking_grow_mult]]),o.createElement("br",null),t([["Hacking Level ",s.Player.hacking_mult,s.Player.hacking_mult*e.hacking_mult],["Hacking Experience ",s.Player.hacking_exp_mult,s.Player.hacking_exp_mult*e.hacking_exp_mult]]),o.createElement("br",null),t([["Strength Level ",s.Player.strength_mult,s.Player.strength_mult*e.strength_mult],["Strength Experience ",s.Player.strength_exp_mult,s.Player.strength_exp_mult*e.strength_exp_mult]]),o.createElement("br",null),t([["Defense Level ",s.Player.defense_mult,s.Player.defense_mult*e.defense_mult],["Defense Experience ",s.Player.defense_exp_mult,s.Player.defense_exp_mult*e.defense_exp_mult]]),o.createElement("br",null),t([["Dexterity Level ",s.Player.dexterity_mult,s.Player.dexterity_mult*e.dexterity_mult],["Dexterity Experience ",s.Player.dexterity_exp_mult,s.Player.dexterity_exp_mult*e.dexterity_exp_mult]]),o.createElement("br",null),t([["Agility Level ",s.Player.agility_mult,s.Player.agility_mult*e.agility_mult],["Agility Experience ",s.Player.agility_exp_mult,s.Player.agility_exp_mult*e.agility_exp_mult]]),o.createElement("br",null),t([["Charisma Level ",s.Player.charisma_mult,s.Player.charisma_mult*e.charisma_mult],["Charisma Experience ",s.Player.charisma_exp_mult,s.Player.charisma_exp_mult*e.charisma_exp_mult]]),o.createElement("br",null),t([["Hacknet Node production ",s.Player.hacknet_node_money_mult,s.Player.hacknet_node_money_mult*e.hacknet_node_money_mult],["Hacknet Node purchase cost ",s.Player.hacknet_node_purchase_cost_mult,s.Player.hacknet_node_purchase_cost_mult*e.hacknet_node_purchase_cost_mult],["Hacknet Node RAM upgrade cost ",s.Player.hacknet_node_ram_cost_mult,s.Player.hacknet_node_ram_cost_mult*e.hacknet_node_ram_cost_mult],["Hacknet Node Core purchase cost ",s.Player.hacknet_node_core_cost_mult,s.Player.hacknet_node_core_cost_mult*e.hacknet_node_core_cost_mult],["Hacknet Node level upgrade cost ",s.Player.hacknet_node_level_cost_mult,s.Player.hacknet_node_level_cost_mult*e.hacknet_node_level_cost_mult]]),o.createElement("br",null),t([["Company reputation gain ",s.Player.company_rep_mult,s.Player.company_rep_mult*e.company_rep_mult],["Faction reputation gain ",s.Player.faction_rep_mult,s.Player.faction_rep_mult*e.faction_rep_mult],["Salary ",s.Player.work_money_mult,s.Player.work_money_mult*e.work_money_mult]]),o.createElement("br",null),t([["Crime success ",s.Player.crime_success_mult,s.Player.crime_success_mult*e.crime_success_mult],["Crime money ",s.Player.crime_money_mult,s.Player.crime_money_mult*e.crime_money_mult]]),o.createElement("br",null),o.createElement(function(){return s.Player.canAccessBladeburner()?o.createElement(o.Fragment,null,t([["Bladeburner Success Chance",s.Player.bladeburner_success_chance_mult,s.Player.bladeburner_success_chance_mult*e.bladeburner_success_chance_mult],["Bladeburner Max Stamina",s.Player.bladeburner_max_stamina_mult,s.Player.bladeburner_max_stamina_mult*e.bladeburner_max_stamina_mult],["Bladeburner Stamina Gain",s.Player.bladeburner_stamina_gain_mult,s.Player.bladeburner_stamina_gain_mult*e.bladeburner_stamina_gain_mult],["Bladeburner Field Analysis",s.Player.bladeburner_analysis_mult,s.Player.bladeburner_analysis_mult*e.bladeburner_analysis_mult]]),o.createElement("br",null)):o.createElement(o.Fragment,null)},null))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SourceFileMinus1=void 0;const o=i(n(0)),s=n(1),l=n(174),c=n(232);t.SourceFileMinus1=function(){const e=s.Player.exploits;return 0===e.length?o.createElement(o.Fragment,null):o.createElement("li",{key:-1},o.createElement(c.Accordion,{headerContent:o.createElement(o.Fragment,null,"Source-File -1: Exploits in the BitNodes",o.createElement("br",null),"Level ",e.length," / ?"),panelContent:o.createElement(o.Fragment,null,o.createElement("p",null,"This Source-File can only be acquired with obscure knowledge of the game, javascript, and the web ecosystem."),o.createElement("p",null,"It increases all of the player's multipliers by 0.1%"),o.createElement("br",null),o.createElement("p",null,"You have found the following exploits:"),o.createElement("ul",null,e.map(e=>o.createElement("li",{key:e},"* ",l.ExploitName(e)))))}))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.SourceFileAccordion=void 0;const o=i(n(0)),s=n(232);t.SourceFileAccordion=function(e){const t=12===e.sf.n?"∞":"3";return o.createElement(s.Accordion,{headerContent:o.createElement(o.Fragment,null,e.sf.name,o.createElement("br",null),`Level ${e.level} / ${t}`),panelContent:o.createElement("p",{dangerouslySetInnerHTML:{__html:e.sf.info}})})}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.OwnedSourceFiles=void 0;const o=i(n(0)),s=n(1),l=n(18),c=n(69),u=n(239),m=n(915);t.OwnedSourceFiles=function(){const e=s.Player.sourceFiles.slice();l.Settings.OwnedAugmentationsOrder===c.OwnedAugmentationsOrderSetting.Alphabetically&&e.sort((e,t)=>e.n-t.n);const t=e.map(e=>{const t="SourceFile"+e.n,n=u.SourceFiles[t];return null==n?(console.error(`Invalid source file number: ${e.n}`),null):o.createElement("li",{key:e.n},o.createElement(m.SourceFileAccordion,{level:e.lvl,sf:n}))});return o.createElement(o.Fragment,null,t)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ListConfiguration=void 0;const o=i(n(0)),s=n(71);t.ListConfiguration=function(e){return o.createElement(o.Fragment,null,o.createElement(s.StdButton,{onClick:e.expandAllButtonsFn,text:"Expand All"}),o.createElement(s.StdButton,{onClick:e.collapseAllButtonsFn,text:"Collapse All"}),o.createElement(s.StdButton,{onClick:e.sortInOrderFn,text:"Sort in Order",tooltip:"Sorts the Augmentations alphabetically and Source-Files in numeral order"}),o.createElement(s.StdButton,{onClick:e.sortByAcquirementTimeFn,text:"Sort by Acquirement Time",tooltip:"Sorts the Augmentations and Source-Files based on when you acquired them (same as default)"}))}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.LocationsMetadata=void 0;const r=n(39),a=n(50),i=n(475);t.LocationsMetadata=[{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:8.18},name:a.LocationName.AevumAeroCorp,types:[i.LocationType.Company]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:15,startingSecurityLevel:8.19},name:a.LocationName.AevumBachmanAndAssociates,types:[i.LocationType.Company]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:18,startingSecurityLevel:9.55},name:a.LocationName.AevumClarkeIncorporated,types:[i.LocationType.Company]},{city:r.CityName.Aevum,costMult:3,expMult:2,name:a.LocationName.AevumCrushFitnessGym,types:[i.LocationType.Gym]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:37,startingSecurityLevel:17.02},name:a.LocationName.AevumECorp,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:512,techVendorMinRam:128},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:15.54},name:a.LocationName.AevumFulcrumTechnologies,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:1024,techVendorMinRam:256},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:7.89},name:a.LocationName.AevumGalacticCybersystems,types:[i.LocationType.Company]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:6,startingSecurityLevel:3.29},name:a.LocationName.AevumNetLinkTechnologies,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:64,techVendorMinRam:8},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:6,startingSecurityLevel:5.35},name:a.LocationName.AevumPolice,types:[i.LocationType.Company]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:5,startingSecurityLevel:5.02},name:a.LocationName.AevumRhoConstruction,types:[i.LocationType.Company]},{city:r.CityName.Aevum,costMult:10,expMult:5,name:a.LocationName.AevumSnapFitnessGym,types:[i.LocationType.Gym]},{city:r.CityName.Aevum,costMult:4,expMult:3,name:a.LocationName.AevumSummitUniversity,types:[i.LocationType.University]},{city:r.CityName.Aevum,infiltrationData:{maxClearanceLevel:7,startingSecurityLevel:5.85},name:a.LocationName.AevumWatchdogSecurity,types:[i.LocationType.Company]},{city:r.CityName.Aevum,name:a.LocationName.AevumCasino,types:[i.LocationType.Casino]},{city:r.CityName.Chongqing,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:16.25},name:a.LocationName.ChongqingKuaiGongInternational,types:[i.LocationType.Company]},{city:r.CityName.Chongqing,infiltrationData:{maxClearanceLevel:18,startingSecurityLevel:12.59},name:a.LocationName.ChongqingSolarisSpaceSystems,types:[i.LocationType.Company]},{city:r.CityName.Ishima,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:5.02},name:a.LocationName.IshimaNovaMedical,types:[i.LocationType.Company]},{city:r.CityName.Ishima,infiltrationData:{maxClearanceLevel:10,startingSecurityLevel:3.2},name:a.LocationName.IshimaOmegaSoftware,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:128,techVendorMinRam:4},{city:r.CityName.Ishima,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:5.38},name:a.LocationName.IshimaStormTechnologies,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:512,techVendorMinRam:32},{city:r.CityName.NewTokyo,infiltrationData:{maxClearanceLevel:17,startingSecurityLevel:7.18},name:a.LocationName.NewTokyoDefComm,types:[i.LocationType.Company]},{city:r.CityName.NewTokyo,infiltrationData:{maxClearanceLevel:20,startingSecurityLevel:5.9},name:a.LocationName.NewTokyoGlobalPharmaceuticals,types:[i.LocationType.Company]},{city:r.CityName.NewTokyo,infiltrationData:{maxClearanceLevel:5,startingSecurityLevel:2.5},name:a.LocationName.NewTokyoNoodleBar,types:[i.LocationType.Company]},{city:r.CityName.NewTokyo,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:5.52},name:a.LocationName.NewTokyoVitaLife,types:[i.LocationType.Company,i.LocationType.Special]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:10,startingSecurityLevel:3.62},name:a.LocationName.Sector12AlphaEnterprises,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:8,techVendorMinRam:2},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:10.59},name:a.LocationName.Sector12BladeIndustries,types:[i.LocationType.Company]},{city:r.CityName.Sector12,name:a.LocationName.Sector12CIA,types:[i.LocationType.Company]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:15,startingSecurityLevel:4.66},name:a.LocationName.Sector12CarmichaelSecurity,types:[i.LocationType.Company]},{city:r.CityName.Sector12,name:a.LocationName.Sector12CityHall,types:[i.LocationType.Special]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:5.9},name:a.LocationName.Sector12DeltaOne,types:[i.LocationType.Company]},{city:r.CityName.Sector12,name:a.LocationName.Sector12FoodNStuff,types:[i.LocationType.Company]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:8.18},name:a.LocationName.Sector12FourSigma,types:[i.LocationType.Company]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:17,startingSecurityLevel:6.02},name:a.LocationName.Sector12IcarusMicrosystems,types:[i.LocationType.Company]},{city:r.CityName.Sector12,expMult:1,costMult:1,name:a.LocationName.Sector12IronGym,types:[i.LocationType.Gym]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:5,startingSecurityLevel:3.13},name:a.LocationName.Sector12JoesGuns,types:[i.LocationType.Company]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:31,startingSecurityLevel:16.36},name:a.LocationName.Sector12MegaCorp,types:[i.LocationType.Company]},{city:r.CityName.Sector12,name:a.LocationName.Sector12NSA,types:[i.LocationType.Company,i.LocationType.Special]},{city:r.CityName.Sector12,costMult:20,expMult:10,name:a.LocationName.Sector12PowerhouseGym,types:[i.LocationType.Gym]},{city:r.CityName.Sector12,costMult:3,expMult:2,name:a.LocationName.Sector12RothmanUniversity,types:[i.LocationType.University]},{city:r.CityName.Sector12,infiltrationData:{maxClearanceLevel:12,startingSecurityLevel:5.9},name:a.LocationName.Sector12UniversalEnergy,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:15,startingSecurityLevel:3.59},name:a.LocationName.VolhavenCompuTek,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:256,techVendorMinRam:8},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:18,startingSecurityLevel:7.28},name:a.LocationName.VolhavenHeliosLabs,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:15,startingSecurityLevel:4.35},name:a.LocationName.VolhavenLexoCorp,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,costMult:7,expMult:4,name:a.LocationName.VolhavenMilleniumFitnessGym,types:[i.LocationType.Gym]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:50,startingSecurityLevel:8.53},name:a.LocationName.VolhavenNWO,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:25,startingSecurityLevel:7.74},name:a.LocationName.VolhavenOmniTekIncorporated,types:[i.LocationType.Company,i.LocationType.TechVendor],techVendorMaxRam:1024,techVendorMinRam:128},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:22,startingSecurityLevel:6},name:a.LocationName.VolhavenOmniaCybersystems,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,infiltrationData:{maxClearanceLevel:18,startingSecurityLevel:4.77},name:a.LocationName.VolhavenSysCoreSecurities,types:[i.LocationType.Company]},{city:r.CityName.Volhaven,costMult:5,expMult:4,name:a.LocationName.VolhavenZBInstituteOfTechnology,types:[i.LocationType.University]},{city:null,name:a.LocationName.Hospital,types:[i.LocationType.Hospital]},{city:null,name:a.LocationName.Slums,types:[i.LocationType.Slums]},{city:null,name:a.LocationName.TravelAgency,types:[i.LocationType.TravelAgency]},{city:null,name:a.LocationName.WorldStockExchange,types:[i.LocationType.StockMarket]}],function(){for(const e of t.LocationsMetadata)e&&e.infiltrationData&&console.log(e.infiltrationData.startingSecurityLevel+2)}()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Location=void 0;const r=n(50);t.Location=class{constructor(e){this.city=null,this.costMult=0,this.expMult=0,this.name=r.LocationName.Void,this.types=[],this.techVendorMaxRam=0,this.techVendorMinRam=0,e.city&&(this.city=e.city),e.costMult&&(this.costMult=e.costMult),e.expMult&&(this.expMult=e.expMult),e.infiltrationData&&(this.infiltrationData=e.infiltrationData),e.name&&(this.name=e.name),e.types&&(this.types=e.types),e.techVendorMaxRam&&(this.techVendorMaxRam=e.techVendorMaxRam),e.techVendorMinRam&&(this.techVendorMinRam=e.techVendorMinRam)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.City=void 0;t.City=class{constructor(e,t=[],n=""){this.name=e,this.locations=t,this.asciiArt=n}addLocation(e){this.locations.push(e)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SkillNames=void 0,t.SkillNames={BladesIntuition:"Blade's Intuition",Cloak:"Cloak",Marksman:"Marksman",WeaponProficiency:"Weapon Proficiency",ShortCircuit:"Short-Circuit",DigitalObserver:"Digital Observer",Tracer:"Tracer",Overclock:"Overclock",Reaper:"Reaper",EvasiveSystem:"Evasive System",Datamancer:"Datamancer",CybersEdge:"Cyber's Edge",HandsOfMidas:"Hands of Midas",Hyperdrive:"Hyperdrive"}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.SourceFile=void 0;const r=n(141);t.SourceFile=class{constructor(e,t=""){this.lvl=1,this.owned=!1;const n="BitNode"+e,a=r.BitNodes[n];if(null==a)throw new Error("Invalid Bit Node for this Source File");this.n=e,this.name=`Source-File ${e}: ${a.name}`,this.info=t}}},,,,,,,,,,,,,,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ErrorBoundary=void 0;const o=i(n(0)),s=n(489),l={border:"1px solid red",display:"inline-block",margin:"4px",padding:"4px"};t.ErrorBoundary=class extends o.Component{constructor(e){super(e),this.state={errorInfo:"",hasError:!1}}componentDidCatch(e,t){console.error("Caught error in React ErrorBoundary. Component stack:"),console.error(t.componentStack)}componentDidMount(){const e=()=>{this.setState({hasError:!1})};this.hasEventEmitter()&&this.props.eventEmitterForReset.addSubscriber({cb:e,id:this.props.id})}componentWillUnmount(){this.hasEventEmitter()&&this.props.eventEmitterForReset.removeSubscriber(this.props.id)}hasEventEmitter(){return null!=this.props.eventEmitterForReset&&this.props.eventEmitterForReset instanceof s.EventEmitter&&null!=this.props.id&&"string"==typeof this.props.id}render(){return this.state.hasError?o.createElement("div",{style:l},o.createElement("p",null,"Error rendering UI. This is (probably) a bug. Please report to game developer."),o.createElement("p",null,"In the meantime, try refreshing the game WITHOUT saving."),o.createElement("p",null,`Error info: ${this.state.errorInfo}`)):this.props.children}static getDerivedStateFromError(e){return{errorInfo:e.message,hasError:!0}}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickersConfig=t.TickerDisplayMode=void 0;const o=i(n(0)),s=n(71);var l;!function(e){e[e.AllStocks=0]="AllStocks",e[e.Portfolio=1]="Portfolio"}(l=t.TickerDisplayMode||(t.TickerDisplayMode={}));t.StockTickersConfig=class extends o.Component{constructor(e){super(e)}renderDisplayModeButton(){let e="",t="";return this.props.tickerDisplayMode===l.Portfolio?(e="Switch to 'All Stocks' Mode",t="Displays all stocks on the WSE"):(e="Switch to 'Portfolio' Mode",t="Displays only the stocks for which you have shares or orders"),o.createElement(s.StdButton,{onClick:this.props.changeDisplayMode,text:e,tooltip:t})}render(){return o.createElement("div",null,this.renderDisplayModeButton(),o.createElement(s.StdButton,{onClick:this.props.expandAllTickers,text:"Expand Tickers"}),o.createElement(s.StdButton,{onClick:this.props.collapseAllTickers,text:"Collapse Tickers"}),o.createElement("input",{className:"text-input",id:"stock-market-watchlist-filter",onChange:this.props.changeWatchlistFilter,placeholder:"Filter Stocks by symbol (comma-separated list)",type:"text"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickerTxButton=void 0;const o=i(n(0));t.StockTickerTxButton=function(e){let t="stock-market-input std-button";return null!=e.tooltip&&(t+=" tooltip"),o.createElement("button",{className:t,onClick:e.onClick},e.text,null!=e.tooltip&&o.createElement("span",{className:"tooltiptext"},e.tooltip))}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickerPositionText=void 0;const o=i(n(0)),s=n(3),l=n(31),c=n(48),u={display:"block"};t.StockTickerPositionText=class extends o.Component{renderLongPosition(){const e=this.props.stock,t=e.playerShares*e.playerAvgPx,n=(e.getBidPrice()-e.playerAvgPx)*e.playerShares;let r=n/t;return isNaN(r)&&(r=0),o.createElement("div",null,o.createElement("h3",{className:"tooltip"},"Long Position:",o.createElement("span",{className:"tooltiptext"},"Shares in the long position will increase in value if the price of the corresponding stock increases")),o.createElement("br",null),o.createElement("p",null,"Shares: ",s.numeralWrapper.formatShares(e.playerShares)),o.createElement("br",null),o.createElement("p",null,"Average Price: ",l.Money(e.playerAvgPx)," (Total Cost: ",l.Money(t),")"),o.createElement("br",null),o.createElement("p",null,"Profit: ",l.Money(n)," (",s.numeralWrapper.formatPercentage(r),")"),o.createElement("br",null))}renderShortPosition(){const e=this.props.stock,t=e.playerShortShares*e.playerAvgShortPx,n=(e.playerAvgShortPx-e.getAskPrice())*e.playerShortShares;let r=n/t;return isNaN(r)&&(r=0),8===this.props.p.bitNodeN||c.SourceFileFlags[8]>=2?o.createElement("div",null,o.createElement("h3",{className:"tooltip"},"Short Position:",o.createElement("span",{className:"tooltiptext"},"Shares in the short position will increase in value if the price of the corresponding stock decreases")),o.createElement("br",null),o.createElement("p",null,"Shares: ",s.numeralWrapper.formatShares(e.playerShortShares)),o.createElement("br",null),o.createElement("p",null,"Average Price: ",l.Money(e.playerAvgShortPx)," (Total Cost: ",l.Money(t),")"),o.createElement("br",null),o.createElement("p",null,"Profit: ",l.Money(n)," (",s.numeralWrapper.formatPercentage(r),")"),o.createElement("br",null)):null}render(){const e=this.props.stock;return o.createElement("div",{className:"stock-market-position-text"},o.createElement("p",{style:u},"Max Shares: ",s.numeralWrapper.formatShares(e.maxShares)),o.createElement("p",{className:"tooltip"},"Ask Price: ",l.Money(e.getAskPrice()),o.createElement("span",{className:"tooltiptext"},"See Investopedia for details on what this is")),o.createElement("br",null),o.createElement("p",{className:"tooltip"},"Bid Price: ",l.Money(e.getBidPrice()),o.createElement("span",{className:"tooltiptext"},"See Investopedia for details on what this is")),this.renderLongPosition(),this.renderShortPosition())}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickerOrder=void 0;const o=i(n(0)),s=n(107),l=n(3),c=n(31);t.StockTickerOrder=class extends o.Component{constructor(e){super(e),this.handleCancelOrderClick=this.handleCancelOrderClick.bind(this)}handleCancelOrderClick(){this.props.cancelOrder({order:this.props.order})}render(){const e=this.props.order,t=e.pos===s.PositionTypes.Long?"Long Position":"Short Position",n=o.createElement(o.Fragment,null,e.type," - ",t," - ",l.numeralWrapper.formatShares(e.shares)," @ ",c.Money(e.price));return o.createElement("li",null,n,o.createElement("button",{className:"std-button stock-market-order-cancel-btn",onClick:this.handleCancelOrderClick},"Cancel Order"))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickerOrderList=void 0;const o=i(n(0)),s=n(940);t.StockTickerOrderList=class extends o.Component{render(){const e=[];for(let t=0;tt.price&&(p.color="red"),o.createElement("pre",{style:p},m)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTicker=void 0;const o=i(n(0)),s=n(943),l=n(941),c=n(939),u=n(938),m=n(295),p=n(124),h=n(107),d=n(48),_=n(3),g=n(232),y=n(31),f=n(12),b=n(58);var E;!function(e){e.Market="Market Order",e.Limit="Limit Order",e.Stop="Stop Order"}(E||(E={}));t.StockTicker=class extends o.Component{constructor(e){super(e),this.state={orderType:E.Market,position:h.PositionTypes.Long,qty:""},this.getBuyTransactionCostContent=this.getBuyTransactionCostContent.bind(this),this.getSellTransactionCostContent=this.getSellTransactionCostContent.bind(this),this.handleBuyButtonClick=this.handleBuyButtonClick.bind(this),this.handleBuyMaxButtonClick=this.handleBuyMaxButtonClick.bind(this),this.handleHeaderClick=this.handleHeaderClick.bind(this),this.handleOrderTypeChange=this.handleOrderTypeChange.bind(this),this.handlePositionTypeChange=this.handlePositionTypeChange.bind(this),this.handleQuantityChange=this.handleQuantityChange.bind(this),this.handleSellButtonClick=this.handleSellButtonClick.bind(this),this.handleSellAllButtonClick=this.handleSellAllButtonClick.bind(this)}createPlaceOrderPopupBox(e,t,n){const r=b.yesNoTxtInpBoxGetYesButton(),a=b.yesNoTxtInpBoxGetNoButton();r.innerText=e,r.addEventListener("click",()=>{const e=parseFloat(b.yesNoTxtInpBoxGetInput());if(isNaN(e))return f.dialogBoxCreate(`Invalid input for price: ${b.yesNoTxtInpBoxGetInput()}`),!1;n(e),b.yesNoTxtInpBoxClose()}),a.innerText="Cancel Order",a.addEventListener("click",()=>{b.yesNoTxtInpBoxClose()}),b.yesNoTxtInpBoxCreate(t)}getBuyTransactionCostContent(){const e=this.props.stock,t=this.getQuantity();if(isNaN(t))return null;const n=m.getBuyTransactionCost(e,t,this.state.position);return null==n?null:o.createElement(o.Fragment,null,"Purchasing ",_.numeralWrapper.formatShares(t)," shares (",this.state.position===h.PositionTypes.Long?"Long":"Short",") will cost ",y.Money(n),".")}getQuantity(){return Math.round(parseFloat(this.state.qty))}getSellTransactionCostContent(){const e=this.props.stock,t=this.getQuantity();if(isNaN(t))return null;if(this.state.position===h.PositionTypes.Long){if(t>e.playerShares)return o.createElement(o.Fragment,null,"You do not have this many shares in the Long position")}else if(t>e.playerShortShares)return o.createElement(o.Fragment,null,"You do not have this many shares in the Short position");const n=m.getSellTransactionGain(e,t,this.state.position);return null==n?null:o.createElement(o.Fragment,null,"Selling ",_.numeralWrapper.formatShares(t)," shares (",this.state.position===h.PositionTypes.Long?"Long":"Short",") will result in a gain of ",y.Money(n),".")}handleBuyButtonClick(){const e=this.getQuantity();if(isNaN(e))f.dialogBoxCreate(`Invalid input for quantity (number of shares): ${this.state.qty}`);else switch(this.state.orderType){case E.Market:this.state.position===h.PositionTypes.Short?this.props.buyStockShort(this.props.stock,e):this.props.buyStockLong(this.props.stock,e),this.props.rerenderAllTickers();break;case E.Limit:this.createPlaceOrderPopupBox("Place Buy Limit Order","Enter the price for your Limit Order",t=>{this.props.placeOrder(this.props.stock,e,t,p.OrderTypes.LimitBuy,this.state.position)});break;case E.Stop:this.createPlaceOrderPopupBox("Place Buy Stop Order","Enter the price for your Stop Order",t=>{this.props.placeOrder(this.props.stock,e,t,p.OrderTypes.StopBuy,this.state.position)})}}handleBuyMaxButtonClick(){const e=this.props.p.money.toNumber(),t=this.props.stock;let n=m.calculateBuyMaxAmount(t,this.state.position,e);switch(n=Math.min(n,Math.round(t.maxShares-t.playerShares-t.playerShortShares)),this.state.orderType){case E.Market:this.state.position===h.PositionTypes.Short?this.props.buyStockShort(t,n):this.props.buyStockLong(t,n),this.props.rerenderAllTickers();break;default:f.dialogBoxCreate("ERROR: 'Buy Max' only works for Market Orders")}}handleHeaderClick(e){const t=e.currentTarget;t.classList.toggle("active");const n=t.nextElementSibling;"block"===n.style.display?n.style.display="none":n.style.display="block"}handleOrderTypeChange(e){switch(e.target.value){case E.Limit:this.setState({orderType:E.Limit});break;case E.Stop:this.setState({orderType:E.Stop});break;case E.Market:default:this.setState({orderType:E.Market})}}handlePositionTypeChange(e){e.target.value===h.PositionTypes.Short?this.setState({position:h.PositionTypes.Short}):this.setState({position:h.PositionTypes.Long})}handleQuantityChange(e){this.setState({qty:e.target.value})}handleSellButtonClick(){const e=this.getQuantity();if(isNaN(e))f.dialogBoxCreate(`Invalid input for quantity (number of shares): ${this.state.qty}`);else switch(this.state.orderType){case E.Market:this.state.position===h.PositionTypes.Short?this.props.sellStockShort(this.props.stock,e):this.props.sellStockLong(this.props.stock,e),this.props.rerenderAllTickers();break;case E.Limit:this.createPlaceOrderPopupBox("Place Sell Limit Order","Enter the price for your Limit Order",t=>{this.props.placeOrder(this.props.stock,e,t,p.OrderTypes.LimitSell,this.state.position)});break;case E.Stop:this.createPlaceOrderPopupBox("Place Sell Stop Order","Enter the price for your Stop Order",t=>{this.props.placeOrder(this.props.stock,e,t,p.OrderTypes.StopSell,this.state.position)})}}handleSellAllButtonClick(){const e=this.props.stock;switch(this.state.orderType){case E.Market:this.state.position===h.PositionTypes.Short?this.props.sellStockShort(e,e.playerShortShares):this.props.sellStockLong(e,e.playerShares),this.props.rerenderAllTickers();break;default:f.dialogBoxCreate("ERROR: 'Sell All' only works for Market Orders")}}hasOrderAccess(){return 8===this.props.p.bitNodeN||d.SourceFileFlags[8]>=3}hasShortAccess(){return 8===this.props.p.bitNodeN||d.SourceFileFlags[8]>=2}render(){return o.createElement("li",null,o.createElement(g.Accordion,{headerContent:o.createElement(s.StockTickerHeaderText,{p:this.props.p,stock:this.props.stock}),panelContent:o.createElement("div",null,o.createElement("input",{className:"stock-market-input",onChange:this.handleQuantityChange,placeholder:"Quantity (Shares)",value:this.state.qty}),o.createElement("select",{className:"stock-market-input dropdown",onChange:this.handlePositionTypeChange,value:this.state.position},o.createElement("option",{value:h.PositionTypes.Long},"Long"),this.hasShortAccess()&&o.createElement("option",{value:h.PositionTypes.Short},"Short")),o.createElement("select",{className:"stock-market-input dropdown",onChange:this.handleOrderTypeChange,value:this.state.orderType},o.createElement("option",{value:E.Market},E.Market),this.hasOrderAccess()&&o.createElement("option",{value:E.Limit},E.Limit),this.hasOrderAccess()&&o.createElement("option",{value:E.Stop},E.Stop)),o.createElement(u.StockTickerTxButton,{onClick:this.handleBuyButtonClick,text:"Buy",tooltip:this.getBuyTransactionCostContent()}),o.createElement(u.StockTickerTxButton,{onClick:this.handleSellButtonClick,text:"Sell",tooltip:this.getSellTransactionCostContent()}),o.createElement(u.StockTickerTxButton,{onClick:this.handleBuyMaxButtonClick,text:"Buy MAX"}),o.createElement(u.StockTickerTxButton,{onClick:this.handleSellAllButtonClick,text:"Sell ALL"}),o.createElement(c.StockTickerPositionText,{p:this.props.p,stock:this.props.stock}),o.createElement(l.StockTickerOrderList,{cancelOrder:this.props.cancelOrder,orders:this.props.orders,p:this.props.p,stock:this.props.stock}))}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockTickers=void 0;const o=i(n(0)),s=n(944),l=n(937),c=n(199),u=n(936);t.StockTickers=class extends o.Component{constructor(e){super(e),this.state={rerenderFlag:!1,tickerDisplayMode:l.TickerDisplayMode.AllStocks,watchlistFilter:"",watchlistSymbols:[]},this.changeDisplayMode=this.changeDisplayMode.bind(this),this.changeWatchlistFilter=this.changeWatchlistFilter.bind(this),this.collapseAllTickers=this.collapseAllTickers.bind(this),this.expandAllTickers=this.expandAllTickers.bind(this),this.rerender=this.rerender.bind(this),this.listRef=o.createRef()}changeDisplayMode(){this.state.tickerDisplayMode===l.TickerDisplayMode.AllStocks?this.setState({tickerDisplayMode:l.TickerDisplayMode.Portfolio}):this.setState({tickerDisplayMode:l.TickerDisplayMode.AllStocks})}changeWatchlistFilter(e){const t=e.target.value,n=t.replace(/\s/g,"");this.setState({watchlistFilter:t}),""!==n?this.setState({watchlistSymbols:n.split(",")}):this.setState({watchlistSymbols:[]})}collapseAllTickers(){const e=this.listRef.current;if(null==e)return;const t=e.getElementsByClassName("accordion-header");for(let e=0;e({rerenderFlag:!e.rerenderFlag}))}render(){const e=[];for(const t in this.props.stockMarket){const n=this.props.stockMarket[t];if(n instanceof c.Stock){if(this.state.watchlistSymbols.length>0&&!this.state.watchlistSymbols.includes(n.symbol))continue;let t=this.props.stockMarket.Orders[n.symbol];if(null==t&&(t=[]),this.state.tickerDisplayMode===l.TickerDisplayMode.Portfolio&&0===n.playerShares&&0===n.playerShortShares&&0===t.length)continue;e.push(o.createElement(s.StockTicker,{buyStockLong:this.props.buyStockLong,buyStockShort:this.props.buyStockShort,cancelOrder:this.props.cancelOrder,key:n.symbol,orders:t,p:this.props.p,placeOrder:this.props.placeOrder,rerenderAllTickers:this.rerender,sellStockLong:this.props.sellStockLong,sellStockShort:this.props.sellStockShort,stock:n}))}}const t={eventEmitterForReset:this.props.eventEmitterForReset,id:"StockTickersErrorBoundary"};return o.createElement(u.ErrorBoundary,Object.assign({},t),o.createElement(l.StockTickersConfig,{changeDisplayMode:this.changeDisplayMode,changeWatchlistFilter:this.changeWatchlistFilter,collapseAllTickers:this.collapseAllTickers,expandAllTickers:this.expandAllTickers,tickerDisplayMode:this.state.tickerDisplayMode}),o.createElement("ul",{id:"stock-market-list",ref:this.listRef},e))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.InfoAndPurchases=void 0;const o=i(n(0)),s=n(255),l=n(11),c=n(71),u=n(642),m=n(31),p=n(12),h={display:"block"};t.InfoAndPurchases=class extends o.Component{constructor(e){super(e),this.handleClick4SMarketDataHelpTip=this.handleClick4SMarketDataHelpTip.bind(this),this.purchaseWseAccount=this.purchaseWseAccount.bind(this),this.purchaseTixApiAccess=this.purchaseTixApiAccess.bind(this),this.purchase4SMarketData=this.purchase4SMarketData.bind(this),this.purchase4SMarketDataTixApiAccess=this.purchase4SMarketDataTixApiAccess.bind(this)}handleClick4SMarketDataHelpTip(){p.dialogBoxCreate("Access to the 4S Market Data feed will display two additional pieces of information about each stock: Price Forecast & Volatility

Price Forecast indicates the probability the stock has of increasing or decreasing. A '+' forecast means the stock has a higher chance of increasing than decreasing, and a '-' means the opposite. The number of '+/-' symbols is used to illustrate the magnitude of these probabilities. For example, '+++' means that the stock has a significantly higher chance of increasing than decreasing, while '+' means that the stock only has a slightly higher chance of increasing than decreasing.

Volatility represents the maximum percentage by which a stock's price can change every tick (a tick occurs every few seconds while the game is running).

A stock's price forecast can change over time. This is also affected by volatility. The more volatile a stock is, the more its price forecast will change.")}purchaseWseAccount(){if(this.props.p.hasWseAccount)return;if(!this.props.p.canAfford(l.CONSTANTS.WSEAccountCost))return;this.props.p.hasWseAccount=!0,this.props.initStockMarket(),this.props.p.loseMoney(l.CONSTANTS.WSEAccountCost),this.props.rerender();const e=document.getElementById("world-menu-header");e instanceof HTMLElement&&(e.click(),e.click())}purchaseTixApiAccess(){this.props.p.hasTixApiAccess||this.props.p.canAfford(l.CONSTANTS.TIXAPICost)&&(this.props.p.hasTixApiAccess=!0,this.props.p.loseMoney(l.CONSTANTS.TIXAPICost),this.props.rerender())}purchase4SMarketData(){this.props.p.has4SData||this.props.p.canAfford(s.getStockMarket4SDataCost())&&(this.props.p.has4SData=!0,this.props.p.loseMoney(s.getStockMarket4SDataCost()),this.props.rerender())}purchase4SMarketDataTixApiAccess(){this.props.p.has4SDataTixApi||this.props.p.canAfford(s.getStockMarket4STixApiCost())&&(this.props.p.has4SDataTixApi=!0,this.props.p.loseMoney(s.getStockMarket4STixApiCost()),this.props.rerender())}renderPurchaseWseAccountButton(){if(this.props.p.hasWseAccount)return o.createElement(u.StdButtonPurchased,{text:"WSE Account - Purchased"});{const e=l.CONSTANTS.WSEAccountCost;return o.createElement(c.StdButton,{disabled:!this.props.p.canAfford(e),onClick:this.purchaseWseAccount,text:o.createElement(o.Fragment,null,"Buy WSE Account - ",m.Money(e))})}}renderPurchaseTixApiAccessButton(){if(this.props.p.hasTixApiAccess)return o.createElement(u.StdButtonPurchased,{text:"TIX API Access - Purchased"});{const e=l.CONSTANTS.TIXAPICost;return o.createElement(c.StdButton,{disabled:!this.props.p.canAfford(e)||!this.props.p.hasWseAccount,onClick:this.purchaseTixApiAccess,style:h,text:o.createElement(o.Fragment,null,"Buy Trade Information eXchange (TIX) API Access - ",m.Money(e))})}}renderPurchase4SMarketDataButton(){if(this.props.p.has4SData)return o.createElement(u.StdButtonPurchased,{text:"4S Market Data - Purchased",tooltip:"Lets you view additional pricing and volatility information about stocks"});{const e=s.getStockMarket4SDataCost();return o.createElement(c.StdButton,{disabled:!this.props.p.canAfford(e)||!this.props.p.hasWseAccount,onClick:this.purchase4SMarketData,text:o.createElement(o.Fragment,null,"Buy 4S Market Data Access - ",m.Money(e)),tooltip:"Lets you view additional pricing and volatility information about stocks"})}}renderPurchase4SMarketDataTixApiAccessButton(){if(this.props.p.hasTixApiAccess){if(this.props.p.has4SDataTixApi)return o.createElement(u.StdButtonPurchased,{text:"4S Market Data TIX API - Purchased",tooltip:"Let you access 4S Market Data through Netscript"});{const e=s.getStockMarket4STixApiCost();return o.createElement(c.StdButton,{disabled:!this.props.p.canAfford(e),onClick:this.purchase4SMarketDataTixApiAccess,text:o.createElement(o.Fragment,null,"Buy 4S Market Data TIX API Access - ",m.Money(e)),tooltip:"Let you access 4S Market Data through Netscript"})}}return o.createElement(c.StdButton,{disabled:!0,text:"Buy 4S Market Data TIX API Access",tooltip:"Requires TIX API Access"})}render(){return o.createElement("div",{className:"stock-market-info-and-purchases"},o.createElement("p",null,"Welcome to the World Stock Exchange (WSE)!"),o.createElement("button",{className:"std-button"},o.createElement("a",{href:"https://bitburner.readthedocs.io/en/latest/basicgameplay/stockmarket.html",target:"_blank"},"Investopedia")),o.createElement("br",null),o.createElement("p",null,"To begin trading, you must first purchase an account:"),this.renderPurchaseWseAccountButton(),o.createElement("h2",null,"Trade Information eXchange (TIX) API"),o.createElement("p",null,"TIX, short for Trade Information eXchange, is the communications protocol used by the WSE. Purchasing access to the TIX API lets you write code to create your own algorithmic/automated trading strategies."),this.renderPurchaseTixApiAccessButton(),o.createElement("h2",null,"Four Sigma (4S) Market Data Feed"),o.createElement("p",null,"Four Sigma's (4S) Market Data Feed provides information about stocks that will help your trading strategies."),this.renderPurchase4SMarketDataButton(),o.createElement("button",{className:"help-tip-big",onClick:this.handleClick4SMarketDataHelpTip},"?"),this.renderPurchase4SMarketDataTixApiAccessButton(),o.createElement("p",null,"Commission Fees: Every transaction you make has a ",m.Money(l.CONSTANTS.StockMarketCommission)," commission fee."),o.createElement("br",null),o.createElement("p",null,"WARNING: When you reset after installing Augmentations, the Stock Market is reset. You will retain your WSE Account, access to the TIX API, and 4S Market Data access. However, all of your stock positions are lost, so make sure to sell your stocks before installing Augmentations!"))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.StockMarketRoot=void 0;const o=i(n(0)),s=n(946),l=n(945);t.StockMarketRoot=class extends o.Component{constructor(e){super(e),this.state={rerenderFlag:!1},this.rerender=this.rerender.bind(this)}rerender(){this.setState(e=>({rerenderFlag:!e.rerenderFlag}))}render(){return o.createElement("div",null,o.createElement(s.InfoAndPurchases,{initStockMarket:this.props.initStockMarket,p:this.props.p,rerender:this.rerender}),this.props.p.hasWseAccount&&o.createElement(l.StockTickers,{buyStockLong:this.props.buyStockLong,buyStockShort:this.props.buyStockShort,cancelOrder:this.props.cancelOrder,eventEmitterForReset:this.props.eventEmitterForReset,p:this.props.p,placeOrder:this.props.placeOrder,sellStockLong:this.props.sellStockLong,sellStockShort:this.props.sellStockShort,stockMarket:this.props.stockMarket}))}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.InitStockMetadata=void 0;const r=n(291),a=n(50);t.InitStockMetadata=[{b:!0,initPrice:{max:28e3,min:17e3},marketCap:24e11,mv:{divisor:100,max:50,min:40},name:a.LocationName.AevumECorp,otlkMag:19,spreadPerc:{divisor:10,max:5,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.AevumECorp]},{b:!0,initPrice:{max:34e3,min:24e3},marketCap:24e11,mv:{divisor:100,max:50,min:40},name:a.LocationName.Sector12MegaCorp,otlkMag:19,spreadPerc:{divisor:10,max:5,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.Sector12MegaCorp]},{b:!0,initPrice:{max:25e3,min:12e3},marketCap:16e11,mv:{divisor:100,max:80,min:70},name:a.LocationName.Sector12BladeIndustries,otlkMag:13,spreadPerc:{divisor:10,max:6,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.Sector12BladeIndustries]},{b:!0,initPrice:{max:25e3,min:1e4},marketCap:15e11,mv:{divisor:100,max:75,min:65},name:a.LocationName.AevumClarkeIncorporated,otlkMag:12,spreadPerc:{divisor:10,max:5,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.AevumClarkeIncorporated]},{b:!0,initPrice:{max:43e3,min:32e3},marketCap:18e11,mv:{divisor:100,max:70,min:60},name:a.LocationName.VolhavenOmniTekIncorporated,otlkMag:12,spreadPerc:{divisor:10,max:6,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.VolhavenOmniTekIncorporated]},{b:!0,initPrice:{max:8e4,min:5e4},marketCap:2e12,mv:{divisor:100,max:110,min:100},name:a.LocationName.Sector12FourSigma,otlkMag:17,spreadPerc:{divisor:10,max:10,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.Sector12FourSigma]},{b:!0,initPrice:{max:28e3,min:16e3},marketCap:19e11,mv:{divisor:100,max:85,min:75},name:a.LocationName.ChongqingKuaiGongInternational,otlkMag:10,spreadPerc:{divisor:10,max:7,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.ChongqingKuaiGongInternational]},{b:!0,initPrice:{max:36e3,min:29e3},marketCap:2e12,mv:{divisor:100,max:130,min:120},name:a.LocationName.AevumFulcrumTechnologies,otlkMag:16,spreadPerc:{divisor:10,max:10,min:1},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.AevumFulcrumTechnologies]},{b:!0,initPrice:{max:25e3,min:2e4},marketCap:12e11,mv:{divisor:100,max:90,min:80},name:a.LocationName.IshimaStormTechnologies,otlkMag:7,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.IshimaStormTechnologies]},{b:!0,initPrice:{max:19e3,min:6e3},marketCap:9e11,mv:{divisor:100,max:70,min:60},name:a.LocationName.NewTokyoDefComm,otlkMag:10,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.NewTokyoDefComm]},{b:!0,initPrice:{max:18e3,min:1e4},marketCap:825e9,mv:{divisor:100,max:65,min:55},name:a.LocationName.VolhavenHeliosLabs,otlkMag:9,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.VolhavenHeliosLabs]},{b:!0,initPrice:{max:14e3,min:8e3},marketCap:1e12,mv:{divisor:100,max:80,min:70},name:a.LocationName.NewTokyoVitaLife,otlkMag:7,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.NewTokyoVitaLife]},{b:!0,initPrice:{max:24e3,min:12e3},marketCap:8e11,mv:{divisor:100,max:70,min:60},name:a.LocationName.Sector12IcarusMicrosystems,otlkMag:7.5,spreadPerc:{divisor:10,max:10,min:3},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.Sector12IcarusMicrosystems]},{b:!0,initPrice:{max:29e3,min:16e3},marketCap:9e11,mv:{divisor:100,max:60,min:50},name:a.LocationName.Sector12UniversalEnergy,otlkMag:10,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.Sector12UniversalEnergy]},{b:!0,initPrice:{max:17e3,min:8e3},marketCap:64e10,mv:{divisor:100,max:65,min:55},name:a.LocationName.AevumAeroCorp,otlkMag:6,spreadPerc:{divisor:10,max:10,min:3},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.AevumAeroCorp]},{b:!0,initPrice:{max:15e3,min:6e3},marketCap:6e11,mv:{divisor:100,max:75,min:65},name:a.LocationName.VolhavenOmniaCybersystems,otlkMag:4.5,spreadPerc:{divisor:10,max:11,min:4},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.VolhavenOmniaCybersystems]},{b:!0,initPrice:{max:28e3,min:14e3},marketCap:705e9,mv:{divisor:100,max:80,min:70},name:a.LocationName.ChongqingSolarisSpaceSystems,otlkMag:8.5,spreadPerc:{divisor:10,max:12,min:4},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.ChongqingSolarisSpaceSystems]},{b:!0,initPrice:{max:3e4,min:12e3},marketCap:695e9,mv:{divisor:100,max:65,min:55},name:a.LocationName.NewTokyoGlobalPharmaceuticals,otlkMag:10.5,spreadPerc:{divisor:10,max:10,min:4},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.NewTokyoGlobalPharmaceuticals]},{b:!0,initPrice:{max:27e3,min:15e3},marketCap:6e11,mv:{divisor:100,max:80,min:70},name:a.LocationName.IshimaNovaMedical,otlkMag:5,spreadPerc:{divisor:10,max:11,min:4},shareTxForMovement:{max:126e3,min:42e3},symbol:r.StockSymbols[a.LocationName.IshimaNovaMedical]},{b:!0,initPrice:{max:8500,min:4e3},marketCap:45e10,mv:{divisor:100,max:260,min:240},name:a.LocationName.AevumWatchdogSecurity,otlkMag:1.5,spreadPerc:{divisor:10,max:12,min:5},shareTxForMovement:{max:54e3,min:12e3},symbol:r.StockSymbols[a.LocationName.AevumWatchdogSecurity]},{b:!0,initPrice:{max:8e3,min:4500},marketCap:3e11,mv:{divisor:100,max:135,min:115},name:a.LocationName.VolhavenLexoCorp,otlkMag:6,spreadPerc:{divisor:10,max:12,min:5},shareTxForMovement:{max:108e3,min:36e3},symbol:r.StockSymbols[a.LocationName.VolhavenLexoCorp]},{b:!0,initPrice:{max:7e3,min:2e3},marketCap:18e10,mv:{divisor:100,max:70,min:50},name:a.LocationName.AevumRhoConstruction,otlkMag:1,spreadPerc:{divisor:10,max:10,min:3},shareTxForMovement:{max:126e3,min:6e4},symbol:r.StockSymbols[a.LocationName.AevumRhoConstruction]},{b:!0,initPrice:{max:8500,min:4e3},marketCap:24e10,mv:{divisor:100,max:205,min:175},name:a.LocationName.Sector12AlphaEnterprises,otlkMag:10,spreadPerc:{divisor:10,max:16,min:5},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.Sector12AlphaEnterprises]},{b:!0,initPrice:{max:8e3,min:3e3},marketCap:2e11,mv:{divisor:100,max:170,min:150},name:a.LocationName.VolhavenSysCoreSecurities,otlkMag:3,spreadPerc:{divisor:10,max:12,min:5},shareTxForMovement:{max:9e4,min:15e3},symbol:r.StockSymbols[a.LocationName.VolhavenSysCoreSecurities]},{b:!0,initPrice:{max:6e3,min:1e3},marketCap:185e9,mv:{divisor:100,max:100,min:80},name:a.LocationName.VolhavenCompuTek,otlkMag:4,spreadPerc:{divisor:10,max:12,min:4},shareTxForMovement:{max:126e3,min:6e4},symbol:r.StockSymbols[a.LocationName.VolhavenCompuTek]},{b:!0,initPrice:{max:5e3,min:1e3},marketCap:58e9,mv:{divisor:100,max:400,min:200},name:a.LocationName.AevumNetLinkTechnologies,otlkMag:1,spreadPerc:{divisor:10,max:20,min:5},shareTxForMovement:{max:54e3,min:18e3},symbol:r.StockSymbols[a.LocationName.AevumNetLinkTechnologies]},{b:!0,initPrice:{max:8e3,min:1e3},marketCap:6e10,mv:{divisor:100,max:110,min:90},name:a.LocationName.IshimaOmegaSoftware,otlkMag:.5,spreadPerc:{divisor:10,max:13,min:4},shareTxForMovement:{max:9e4,min:3e4},symbol:r.StockSymbols[a.LocationName.IshimaOmegaSoftware]},{b:!1,initPrice:{max:4500,min:500},marketCap:45e9,mv:{divisor:100,max:80,min:70},name:a.LocationName.Sector12FoodNStuff,otlkMag:1,spreadPerc:{divisor:10,max:10,min:6},shareTxForMovement:{max:18e4,min:6e4},symbol:r.StockSymbols[a.LocationName.Sector12FoodNStuff]},{b:!0,initPrice:{max:3500,min:1500},marketCap:3e10,mv:{divisor:100,max:275,min:100},name:"Sigma Cosmetics",otlkMag:0,spreadPerc:{divisor:10,max:14,min:6},shareTxForMovement:{max:7e4,min:2e4},symbol:r.StockSymbols["Sigma Cosmetics"]},{b:!0,initPrice:{max:1500,min:250},marketCap:42e9,mv:{divisor:100,max:350,min:200},name:"Joes Guns",otlkMag:1,spreadPerc:{divisor:10,max:14,min:6},shareTxForMovement:{max:52e3,min:15e3},symbol:r.StockSymbols["Joes Guns"]},{b:!0,initPrice:{max:1500,min:250},marketCap:1e11,mv:{divisor:100,max:175,min:120},name:"Catalyst Ventures",otlkMag:13.5,spreadPerc:{divisor:10,max:14,min:5},shareTxForMovement:{max:72e3,min:24e3},symbol:r.StockSymbols["Catalyst Ventures"]},{b:!0,initPrice:{max:3e4,min:15e3},marketCap:36e10,mv:{divisor:100,max:80,min:70},name:"Microdyne Technologies",otlkMag:8,spreadPerc:{divisor:10,max:10,min:3},shareTxForMovement:{max:216e3,min:9e4},symbol:r.StockSymbols["Microdyne Technologies"]},{b:!0,initPrice:{max:24e3,min:12e3},marketCap:42e10,mv:{divisor:100,max:70,min:50},name:"Titan Laboratories",otlkMag:11,spreadPerc:{divisor:10,max:10,min:2},shareTxForMovement:{max:216e3,min:9e4},symbol:r.StockSymbols["Titan Laboratories"]}]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.TicksPerCycle=void 0,t.TicksPerCycle=75},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.processOrders=void 0;const o=n(181),s=n(199),l=n(124),c=n(107),u=n(3),m=n(31),p=n(12),h=i(n(0));function d(e,t){const n=t.symbolToStockMap[e.stockSymbol];if(!(n instanceof s.Stock))return void console.error(`Could not find stock for this order: ${e.stockSymbol}`);const r=t.stockMarket.Orders[n.symbol],a={rerenderFn:t.rerenderFn,suppressDialog:!0};let i=!0,d=!1;switch(e.type){case l.OrderTypes.LimitBuy:case l.OrderTypes.StopBuy:d=!0,e.pos===c.PositionTypes.Long?i=o.buyStock(n,e.shares,null,a)&&i:e.pos===c.PositionTypes.Short&&(i=o.shortStock(n,e.shares,null,a)&&i);break;case l.OrderTypes.LimitSell:case l.OrderTypes.StopSell:e.pos===c.PositionTypes.Long?i=o.sellStock(n,e.shares,null,a)&&i:e.pos===c.PositionTypes.Short&&(i=o.sellShort(n,e.shares,null,a)&&i);break;default:return void console.warn(`Invalid order type: ${e.type}`)}const _=e.pos===c.PositionTypes.Long?"Long":"Short";if(i){for(let a=0;a=a.price&&d(a,r);break;case l.OrderTypes.LimitSell:case l.OrderTypes.StopBuy:a.pos===c.PositionTypes.Long&&e.price>=a.price?d(a,r):a.pos===c.PositionTypes.Short&&e.price<=a.price&&d(a,r);break;case l.OrderTypes.StopSell:a.pos===c.PositionTypes.Long&&e.price<=a.price?d(a,r):a.pos===c.PositionTypes.Short&&e.price>=a.price&&d(a,r);break;default:return void console.warn(`Invalid order type: ${a.type}`)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Order=void 0;const r=n(124),a=n(107),i=n(24);class o{constructor(e="",t=0,n=0,i=r.OrderTypes.LimitBuy,o=a.PositionTypes.Long){let s=!1;if("number"==typeof t&&"number"==typeof n||(s=!0),(isNaN(t)||isNaN(n))&&(s=!0),"string"!=typeof e&&(s=!0),s)throw new Error("Invalid constructor paramters for Order");this.stockSymbol=e,this.shares=t,this.price=n,this.type=i,this.pos=o}toJSON(){return i.Generic_toJSON("Order",this)}static fromJSON(e){return i.Generic_fromJSON(o,e.data)}}t.Order=o,i.Reviver.constructors.Order=o},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isPowerOfTwo=void 0,t.isPowerOfTwo=function(e){return!isNaN(e)&&0!==e&&0==(e&e-1)}},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t){},,function(e,t){},,,,,function(e,t,n){!function(e){"use strict";e.registerHelper("lint","netscript",function(t,n){if(!window.JSHINT)return window.console&&window.console.error("Error: window.JSHINT not defined, CodeMirror JavaScript linting cannot run."),[];const r=t.split("\n");for(let e=0;e-1&&(o+=s)}var l={message:a.reason,severity:a.code&&a.code.startsWith("W")?"warning":"error",from:e.Pos(a.line-1,i),to:e.Pos(a.line-1,o)};n.push(l)}}}(i,o),o})}(n(53))},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";var r=n(53),a=n.n(r),i=n(139);!function(t){"object"==typeof exports&&"object"==typeof e?t(n(53)):"function"==typeof define&&n(677)?define(["codemirror/lib/codemirror.js"],t):t(a.a)}(function(e){e.defineMode("netscript",function(t,n){var r,a,o=t.indentUnit,s=n.statementIndent,l=n.jsonld,c=n.json||l,u=n.typescript,m=n.wordCharacters||/[\w$\xa1-\uffff]/,p=function(){function e(e){return{type:e,style:"keyword"}}var t=e("keyword a"),n=e("keyword b"),r=e("keyword c"),a=e("keyword d"),o=e("operator"),s={type:"atom",style:"atom"};const l={if:e("if"),while:t,with:t,else:n,do:n,try:n,finally:n,return:a,break:a,continue:a,new:e("new"),delete:r,void:r,throw:r,debugger:e("debugger"),var:e("var"),const:e("var"),let:e("var"),function:e("function"),catch:e("catch"),for:e("for"),switch:e("switch"),case:e("case"),default:e("default"),in:o,typeof:o,instanceof:o,true:s,false:s,null:s,undefined:s,NaN:s,Infinity:s,this:e("this"),class:e("class"),super:e("atom"),yield:r,export:e("export"),import:e("import"),extends:r,await:r,hack:s};return function e(t){for(const n of Object.keys(t))"function"==typeof t[n]&&(l[n]=s),"object"==typeof t[n]&&e(t[n])}(Object(i.a)(null)),l}(),h=/[+\-*&%=<>!?|~^@]/,d=/^@(context|id|value|language|type|container|list|set|reverse|index|base|vocab|graph)"/;function _(e,t,n){return r=e,a=n,t}function g(e,t){var n=e.next();if('"'==n||"'"==n)return t.tokenize=function(e){return function(t,n){var r,a=!1;if(l&&"@"==t.peek()&&t.match(d))return n.tokenize=g,_("jsonld-keyword","meta");for(;null!=(r=t.next())&&(r!=e||a);)a=!a&&"\\"==r;return a||(n.tokenize=g),_("string","string")}}(n),t.tokenize(e,t);if("."==n&&e.match(/^\d+(?:[eE][+\-]?\d+)?/))return _("number","number");if("."==n&&e.match(".."))return _("spread","meta");if(/[\[\]{}\(\),;\:\.]/.test(n))return _(n);if("="==n&&e.eat(">"))return _("=>","operator");if("0"==n&&e.match(/^(?:x[\da-f]+|o[0-7]+|b[01]+)n?/i))return _("number","number");if(/\d/.test(n))return e.match(/^\d*(?:n|(?:\.\d*)?(?:[eE][+\-]?\d+)?)?/),_("number","number");if("/"==n)return e.eat("*")?(t.tokenize=y,y(e,t)):e.eat("/")?(e.skipToEnd(),_("comment","comment")):Je(e,t,1)?(function(e){for(var t,n=!1,r=!1;null!=(t=e.next());){if(!n){if("/"==t&&!r)return;"["==t?r=!0:r&&"]"==t&&(r=!1)}n=!n&&"\\"==t}}(e),e.match(/^\b(([gimyus])(?![gimyus]*\2))+\b/),_("regexp","string-2")):(e.eat("="),_("operator","operator",e.current()));if("`"==n)return t.tokenize=f,f(e,t);if("#"==n)return e.skipToEnd(),_("error","error");if(h.test(n))return">"==n&&t.lexical&&">"==t.lexical.type||(e.eat("=")?"!"!=n&&"="!=n||e.eat("="):/[<>*+\-]/.test(n)&&(e.eat(n),">"==n&&e.eat(n))),_("operator","operator",e.current());if(m.test(n)){e.eatWhile(m);var r=e.current();if("."!=t.lastType){if(p.propertyIsEnumerable(r)){var a=p[r];return _(a.type,a.style,r)}if("async"==r&&e.match(/^(\s|\/\*.*?\*\/)*[\[\(\w]/,!1))return _("async","keyword",r)}return _("variable","variable",r)}}function y(e,t){for(var n,r=!1;n=e.next();){if("/"==n&&r){t.tokenize=g;break}r="*"==n}return _("comment","comment")}function f(e,t){for(var n,r=!1;null!=(n=e.next());){if(!r&&("`"==n||"$"==n&&e.eat("{"))){t.tokenize=g;break}r=!r&&"\\"==n}return _("quasi","string-2",e.current())}var b="([{}])";function E(e,t){t.fatArrowAt&&(t.fatArrowAt=null);var n=e.string.indexOf("=>",e.start);if(!(n<0)){if(u){var r=/:\s*(?:\w+(?:<[^>]*>|\[\])?|\{[^}]*\})\s*$/.exec(e.string.slice(e.start,n));r&&(n=r.index)}for(var a=0,i=!1,o=n-1;o>=0;--o){var s=e.string.charAt(o),l=b.indexOf(s);if(l>=0&&l<3){if(!a){++o;break}if(0==--a){"("==s&&(i=!0);break}}else if(l>=3&&l<6)++a;else if(m.test(s))i=!0;else{if(/["'\/]/.test(s))return;if(i&&!a){++o;break}}}i&&!a&&(t.fatArrowAt=o)}}var v={atom:!0,number:!0,variable:!0,string:!0,regexp:!0,this:!0,"jsonld-keyword":!0};function k(e,t,n,r,a,i){this.indented=e,this.column=t,this.type=n,this.prev=a,this.info=i,null!=r&&(this.align=r)}function C(e,t){for(var n=e.localVars;n;n=n.next)if(n.name==t)return!0;for(var r=e.context;r;r=r.prev)for(n=r.vars;n;n=n.next)if(n.name==t)return!0}var P={state:null,column:null,marked:null,cc:null};function O(){for(var e=arguments.length-1;e>=0;e--)P.cc.push(arguments[e])}function S(){return O.apply(null,arguments),!0}function T(e,t){for(var n=t;n;n=n.next)if(n.name==e)return!0;return!1}function M(e){var t=P.state;if(P.marked="def",t.context)if("var"==t.lexical.info&&t.context&&t.context.block){var r=function e(t,n){if(n){if(n.block){var r=e(t,n.prev);return r?r==n.prev?n:new w(r,n.vars,!0):null}return T(t,n.vars)?n:new w(n.prev,new A(t,n.vars),!1)}return null}(e,t.context);if(null!=r)return void(t.context=r)}else if(!T(e,t.localVars))return void(t.localVars=new A(e,t.localVars));n.globalVars&&!T(e,t.globalVars)&&(t.globalVars=new A(e,t.globalVars))}function x(e){return"public"==e||"private"==e||"protected"==e||"abstract"==e||"readonly"==e}function w(e,t,n){this.prev=e,this.vars=t,this.block=n}function A(e,t){this.name=e,this.next=t}var R=new A("this",new A("arguments",null));function N(){P.state.context=new w(P.state.context,P.state.localVars,!1),P.state.localVars=R}function D(){P.state.context=new w(P.state.context,P.state.localVars,!0),P.state.localVars=null}function I(){P.state.localVars=P.state.context.vars,P.state.context=P.state.context.prev}function B(e,t){var n=function(){var n=P.state,r=n.indented;if("stat"==n.lexical.type)r=n.lexical.indented;else for(var a=n.lexical;a&&")"==a.type&&a.align;a=a.prev)r=a.indented;n.lexical=new k(r,P.stream.column(),e,null,n.lexical,t)};return n.lex=!0,n}function L(){var e=P.state;e.lexical.prev&&(")"==e.lexical.type&&(e.indented=e.lexical.indented),e.lexical=e.lexical.prev)}function j(e){return function t(n){return n==e?S():";"==e||"}"==n||")"==n||"]"==n?O():S(t)}}function W(e,t){return"var"==e?S(B("vardef",t),be,j(";"),L):"keyword a"==e?S(B("form"),G,W,L):"keyword b"==e?S(B("form"),W,L):"keyword d"==e?P.stream.match(/^\s*$/,!1)?S():S(B("stat"),q,j(";"),L):"debugger"==e?S(j(";")):"{"==e?S(B("}"),D,se,L,I):";"==e?S():"if"==e?("else"==P.state.lexical.info&&P.state.cc[P.state.cc.length-1]==L&&P.state.cc.pop()(),S(B("form"),G,W,L,Oe)):"function"==e?S(Ae):"for"==e?S(B("form"),Se,W,L):"class"==e||u&&"interface"==t?(P.marked="keyword",S(B("form","class"==e?e:t),Be,L)):"variable"==e?u&&"declare"==t?(P.marked="keyword",S(W)):u&&("module"==t||"enum"==t||"type"==t)&&P.stream.match(/^\s*\w/,!1)?(P.marked="keyword","enum"==t?S(Ye):"type"==t?S(Ne,j("operator"),me,j(";")):S(B("form"),Ee,j("{"),B("}"),se,L,L)):u&&"namespace"==t?(P.marked="keyword",S(B("form"),U,W,L)):u&&"abstract"==t?(P.marked="keyword",S(W)):S(B("stat"),ee):"switch"==e?S(B("form"),G,j("{"),B("}","switch"),D,se,L,L,I):"case"==e?S(U,j(":")):"default"==e?S(j(":")):"catch"==e?S(B("form"),N,F,W,L,I):"export"==e?S(B("stat"),Fe,L):"import"==e?S(B("stat"),He,L):"async"==e?S(W):"@"==t?S(U,W):O(B("stat"),U,j(";"),L)}function F(e){if("("==e)return S(De,j(")"))}function U(e,t){return K(e,t,!1)}function H(e,t){return K(e,t,!0)}function G(e){return"("!=e?O():S(B(")"),U,j(")"),L)}function K(e,t,n){if(P.state.fatArrowAt==P.stream.start){var r=n?X:J;if("("==e)return S(N,B(")"),ie(De,")"),L,j("=>"),r,I);if("variable"==e)return O(N,Ee,j("=>"),r,I)}var a=n?z:$;return v.hasOwnProperty(e)?S(a):"function"==e?S(Ae,a):"class"==e||u&&"interface"==t?(P.marked="keyword",S(B("form"),Ie,L)):"keyword c"==e||"async"==e?S(n?H:U):"("==e?S(B(")"),q,j(")"),L,a):"operator"==e||"spread"==e?S(n?H:U):"["==e?S(B("]"),ze,L,a):"{"==e?oe(ne,"}",null,a):"quasi"==e?O(Y,a):"new"==e?S(function(e){return function(t){return"."==t?S(e?Z:Q):"variable"==t&&u?S(ge,e?z:$):O(e?H:U)}}(n)):"import"==e?S(U):S()}function q(e){return e.match(/[;\}\)\],]/)?O():O(U)}function $(e,t){return","==e?S(U):z(e,t,!1)}function z(e,t,n){var r=0==n?$:z,a=0==n?U:H;return"=>"==e?S(N,n?X:J,I):"operator"==e?/\+\+|--/.test(t)||u&&"!"==t?S(r):u&&"<"==t&&P.stream.match(/^([^>]|<.*?>)*>\s*\(/,!1)?S(B(">"),ie(me,">"),L,r):"?"==t?S(U,j(":"),a):S(a):"quasi"==e?O(Y,r):";"!=e?"("==e?oe(H,")","call",r):"."==e?S(te,r):"["==e?S(B("]"),q,j("]"),L,r):u&&"as"==t?(P.marked="keyword",S(me,r)):"regexp"==e?(P.state.lastType=P.marked="operator",P.stream.backUp(P.stream.pos-P.stream.start-1),S(a)):void 0:void 0}function Y(e,t){return"quasi"!=e?O():"${"!=t.slice(t.length-2)?S(Y):S(U,V)}function V(e){if("}"==e)return P.marked="string-2",P.state.tokenize=f,S(Y)}function J(e){return E(P.stream,P.state),O("{"==e?W:U)}function X(e){return E(P.stream,P.state),O("{"==e?W:H)}function Q(e,t){if("target"==t)return P.marked="keyword",S($)}function Z(e,t){if("target"==t)return P.marked="keyword",S(z)}function ee(e){return":"==e?S(L,W):O($,j(";"),L)}function te(e){if("variable"==e)return P.marked="property",S()}function ne(e,t){if("async"==e)return P.marked="property",S(ne);if("variable"==e||"keyword"==P.style){return P.marked="property","get"==t||"set"==t?S(re):(u&&P.state.fatArrowAt==P.stream.start&&(n=P.stream.match(/^\s*:\s*/,!1))&&(P.state.fatArrowAt=P.stream.pos+n[0].length),S(ae));var n}else{if("number"==e||"string"==e)return P.marked=l?"property":P.style+" property",S(ae);if("jsonld-keyword"==e)return S(ae);if(u&&x(t))return P.marked="keyword",S(ne);if("["==e)return S(U,le,j("]"),ae);if("spread"==e)return S(H,ae);if("*"==t)return P.marked="keyword",S(ne);if(":"==e)return O(ae)}}function re(e){return"variable"!=e?O(ae):(P.marked="property",S(Ae))}function ae(e){return":"==e?S(H):"("==e?O(Ae):void 0}function ie(e,t,n){function r(a,i){if(n?n.indexOf(a)>-1:","==a){var o=P.state.lexical;return"call"==o.info&&(o.pos=(o.pos||0)+1),S(function(n,r){return n==t||r==t?O():O(e)},r)}return a==t||i==t?S():n&&n.indexOf(";")>-1?O(e):S(j(t))}return function(n,a){return n==t||a==t?S():O(e,r)}}function oe(e,t,n){for(var r=3;r"),me):void 0}function pe(e){if("=>"==e)return S(me)}function he(e,t){return"variable"==e||"keyword"==P.style?(P.marked="property",S(he)):"?"==t||"number"==e||"string"==e?S(he):":"==e?S(me):"["==e?S(j("variable"),le,j("]"),he):"("==e?O(Re,he):void 0}function de(e,t){return"variable"==e&&P.stream.match(/^\s*[?:]/,!1)||"?"==t?S(de):":"==e?S(me):"spread"==e?S(de):O(me)}function _e(e,t){return"<"==t?S(B(">"),ie(me,">"),L,_e):"|"==t||"."==e||"&"==t?S(me):"["==e?S(me,j("]"),_e):"extends"==t||"implements"==t?(P.marked="keyword",S(me)):"?"==t?S(me,j(":"),me):void 0}function ge(e,t){if("<"==t)return S(B(">"),ie(me,">"),L,_e)}function ye(){return O(me,fe)}function fe(e,t){if("="==t)return S(me)}function be(e,t){return"enum"==t?(P.marked="keyword",S(Ye)):O(Ee,le,Ce,Pe)}function Ee(e,t){return u&&x(t)?(P.marked="keyword",S(Ee)):"variable"==e?(M(t),S()):"spread"==e?S(Ee):"["==e?oe(ke,"]"):"{"==e?oe(ve,"}"):void 0}function ve(e,t){return"variable"!=e||P.stream.match(/^\s*:/,!1)?("variable"==e&&(P.marked="property"),"spread"==e?S(Ee):"}"==e?O():"["==e?S(U,j("]"),j(":"),ve):S(j(":"),Ee,Ce)):(M(t),S(Ce))}function ke(){return O(Ee,Ce)}function Ce(e,t){if("="==t)return S(H)}function Pe(e){if(","==e)return S(be)}function Oe(e,t){if("keyword b"==e&&"else"==t)return S(B("form","else"),W,L)}function Se(e,t){return"await"==t?S(Se):"("==e?S(B(")"),Te,j(")"),L):void 0}function Te(e){return"var"==e?S(be,j(";"),xe):";"==e?S(xe):"variable"==e?S(Me):O(U,j(";"),xe)}function Me(e,t){return"in"==t||"of"==t?(P.marked="keyword",S(U)):S($,xe)}function xe(e,t){return";"==e?S(we):"in"==t||"of"==t?(P.marked="keyword",S(U)):O(U,j(";"),we)}function we(e){")"!=e&&S(U)}function Ae(e,t){return"*"==t?(P.marked="keyword",S(Ae)):"variable"==e?(M(t),S(Ae)):"("==e?S(N,B(")"),ie(De,")"),L,ce,W,I):u&&"<"==t?S(B(">"),ie(ye,">"),L,Ae):void 0}function Re(e,t){return"*"==t?(P.marked="keyword",S(Re)):"variable"==e?(M(t),S(Re)):"("==e?S(N,B(")"),ie(De,")"),L,ce,I):u&&"<"==t?S(B(">"),ie(ye,">"),L,Re):void 0}function Ne(e,t){return"keyword"==e||"variable"==e?(P.marked="type",S(Ne)):"<"==t?S(B(">"),ie(ye,">"),L):void 0}function De(e,t){return"@"==t&&S(U,De),"spread"==e?S(De):u&&x(t)?(P.marked="keyword",S(De)):O(Ee,le,Ce)}function Ie(e,t){return"variable"==e?Be(e,t):Le(e,t)}function Be(e,t){if("variable"==e)return M(t),S(Le)}function Le(e,t){return"<"==t?S(B(">"),ie(ye,">"),L,Le):"extends"==t||"implements"==t||u&&","==e?("implements"==t&&(P.marked="keyword"),S(u?me:U,Le)):"{"==e?S(B("}"),je,L):void 0}function je(e,t){return"async"==e||"variable"==e&&("static"==t||"get"==t||"set"==t||u&&x(t))&&P.stream.match(/^\s+[\w$\xa1-\uffff]/,!1)?(P.marked="keyword",S(je)):"variable"==e||"keyword"==P.style?(P.marked="property",S(u?We:Ae,je)):"number"==e||"string"==e?S(u?We:Ae,je):"["==e?S(U,le,j("]"),u?We:Ae,je):"*"==t?(P.marked="keyword",S(je)):u&&"("==e?O(Re,je):";"==e||","==e?S(je):"}"==e?S():"@"==t?S(U,je):void 0}function We(e,t){if("?"==t)return S(We);if(":"==e)return S(me,Ce);if("="==t)return S(H);var n=P.state.lexical.prev;return O(n&&"interface"==n.info?Re:Ae)}function Fe(e,t){return"*"==t?(P.marked="keyword",S($e,j(";"))):"default"==t?(P.marked="keyword",S(U,j(";"))):"{"==e?S(ie(Ue,"}"),$e,j(";")):O(W)}function Ue(e,t){return"as"==t?(P.marked="keyword",S(j("variable"))):"variable"==e?O(H,Ue):void 0}function He(e){return"string"==e?S():"("==e?O(U):O(Ge,Ke,$e)}function Ge(e,t){return"{"==e?oe(Ge,"}"):("variable"==e&&M(t),"*"==t&&(P.marked="keyword"),S(qe))}function Ke(e){if(","==e)return S(Ge,Ke)}function qe(e,t){if("as"==t)return P.marked="keyword",S(Ge)}function $e(e,t){if("from"==t)return P.marked="keyword",S(U)}function ze(e){return"]"==e?S():O(ie(H,"]"))}function Ye(){return O(B("form"),Ee,j("{"),B("}"),ie(Ve,"}"),L,L)}function Ve(){return O(Ee,Ce)}function Je(e,t,n){return t.tokenize==g&&/^(?:operator|sof|keyword [bcd]|case|new|export|default|spread|[\[{}\(,;:]|=>)$/.test(t.lastType)||"quasi"==t.lastType&&/\{\s*$/.test(e.string.slice(0,e.pos-(n||0)))}return I.lex=!0,L.lex=!0,{startState:function(e){var t={tokenize:g,lastType:"sof",cc:[],lexical:new k((e||0)-o,0,"block",!1),localVars:n.localVars,context:n.localVars&&new w(null,null,!1),indented:e||0};return n.globalVars&&"object"==typeof n.globalVars&&(t.globalVars=n.globalVars),t},token:function(e,t){if(e.sol()&&(t.lexical.hasOwnProperty("align")||(t.lexical.align=!1),t.indented=e.indentation(),E(e,t)),t.tokenize!=y&&e.eatSpace())return null;var n=t.tokenize(e,t);return"comment"==r?n:(t.lastType="operator"!=r||"++"!=a&&"--"!=a?r:"incdec",function(e,t,n,r,a){var i=e.cc;for(P.state=e,P.stream=a,P.marked=null,P.cc=i,P.style=t,e.lexical.hasOwnProperty("align")||(e.lexical.align=!0);;)if((i.length?i.pop():c?U:W)(n,r)){for(;i.length&&i[i.length-1].lex;)i.pop()();return P.marked?P.marked:"variable"==n&&C(e,r)?"variable-2":t}}(t,n,r,a,e))},indent:function(t,r){if(t.tokenize==y)return e.Pass;if(t.tokenize!=g)return 0;var a,i=r&&r.charAt(0),l=t.lexical;if(!/^\s*else\b/.test(r))for(var c=t.cc.length-1;c>=0;--c){var u=t.cc[c];if(u==L)l=l.prev;else if(u!=Oe)break}for(;("stat"==l.type||"form"==l.type)&&("}"==i||(a=t.cc[t.cc.length-1])&&(a==$||a==z)&&!/^[,\.=+\-*:?[\(]/.test(r));)l=l.prev;s&&")"==l.type&&"stat"==l.prev.type&&(l=l.prev);var m=l.type,p=i==m;return"vardef"==m?l.indented+("operator"==t.lastType||","==t.lastType?l.info.length+1:0):"form"==m&&"{"==i?l.indented:"form"==m?l.indented+o:"stat"==m?l.indented+(function(e,t){return"operator"==e.lastType||","==e.lastType||h.test(t.charAt(0))||/[,.]/.test(t.charAt(0))}(t,r)?s||o:0):"switch"!=l.info||p||0==n.doubleIndentSwitch?l.align?l.column+(p?0:1):l.indented+(p?0:o):l.indented+(/^(?:case|default)\b/.test(r)?o:2*o)},electricInput:/^\s*(?:case .*?:|default:|\{|\})$/,blockCommentStart:c?null:"/*",blockCommentEnd:c?null:"*/",blockCommentContinue:c?null:" * ",lineComment:c?null:"//",fold:"brace",closeBrackets:"()[]{}''\"\"``",helperType:c?"json":"netscript",jsonldMode:l,jsonMode:c,expressionAllowed:Je,skipExpression:function(e){var t=e.cc[e.cc.length-1];t!=U&&t!=H||e.cc.pop()}}}),e.registerHelper("wordChars","netscript",/[\w$]/),e.defineMIME("text/netscript","netscript"),e.defineMIME("text/ecmascript","netscript"),e.defineMIME("application/netscript","netscript"),e.defineMIME("application/x-netscript","netscript"),e.defineMIME("application/ecmascript","netscript"),e.defineMIME("application/json",{name:"netscript",json:!0}),e.defineMIME("application/x-json",{name:"netscript",json:!0}),e.defineMIME("application/ld+json",{name:"netscript",jsonld:!0}),e.defineMIME("text/typescript",{name:"netscript",typescript:!0}),e.defineMIME("application/typescript",{name:"netscript",typescript:!0})})},,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,function(e,t,n){"use strict";var r=n(139);ace.define("ace/mode/doc_comment_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/text_highlight_rules"],function(e,t){var n=e("../lib/oop"),r=e("./text_highlight_rules").TextHighlightRules,a=function(){this.$rules={start:[{token:"comment.doc.tag",regex:"@[\\w\\d_]+"},a.getTagRule(),{defaultToken:"comment.doc",caseInsensitive:!0}]}};n.inherits(a,r),a.getTagRule=function(){return{token:"comment.doc.tag.storage.type",regex:"\\b(?:TODO|FIXME|XXX|HACK)\\b"}},a.getStartRule=function(e){return{token:"comment.doc",regex:"\\/\\*(?=\\*)",next:e}},a.getEndRule=function(e){return{token:"comment.doc",regex:"\\*\\/",next:e}},t.DocCommentHighlightRules=a}),ace.define("ace/mode/netscript_highlight_rules",["require","exports","module","ace/lib/oop","ace/mode/doc_comment_highlight_rules","ace/mode/text_highlight_rules"],function(e,t){var n=e("../lib/oop"),a=e("./doc_comment_highlight_rules").DocCommentHighlightRules,i=e("./text_highlight_rules").TextHighlightRules,o="[a-zA-Z\\$_¡-￿][a-zA-Z\\d\\$_¡-￿]*";let s=function(){return function e(t){let n=[];for(const r of Object.keys(t))n.push(r),"object"==typeof t[r]&&(n=n.concat(e(t[r])));return n}(Object(r.a)(null)).sort().reverse().join("|")}();var l=function(e){var t=this.createKeywordMapper({"variable.language":"Array|Boolean|Date|Function|Iterator|Number|Object|RegExp|String|Proxy|Namespace|QName|XML|XMLList|ArrayBuffer|Float32Array|Float64Array|Int16Array|Int32Array|Int8Array|Uint16Array|Uint32Array|Uint8Array|Uint8ClampedArray|Error|EvalError|InternalError|RangeError|ReferenceError|StopIteration|SyntaxError|TypeError|URIError|decodeURI|decodeURIComponent|encodeURI|encodeURIComponent|eval|isFinite|isNaN|parseFloat|parseInt|ns|"+s+"|JSON|Math|this|arguments|prototype|window|document",keyword:"const|yield|import|get|set|async|await|break|case|catch|continue|default|delete|do|else|finally|for|function|if|in|of|instanceof|new|return|switch|throw|try|typeof|let|var|while|with|debugger|__parent__|__count__|escape|unescape|with|__proto__|class|enum|extends|super|export|implements|private|public|interface|package|protected|static","storage.type":"const|let|var|function","constant.language":"null|Infinity|NaN|undefined","support.function":"alert","constant.language.boolean":"true|false"},"identifier"),n="\\\\(?:x[0-9a-fA-F]{2}|u[0-9a-fA-F]{4}|u{[0-9a-fA-F]{1,6}}|[0-2][0-7]{0,2}|3[0-7][0-7]?|[4-7][0-7]?|.)";this.$rules={no_regex:[a.getStartRule("doc-start"),c("no_regex"),{token:"string",regex:"'(?=.)",next:"qstring"},{token:"string",regex:'"(?=.)',next:"qqstring"},{token:"constant.numeric",regex:/0(?:[xX][0-9a-fA-F]+|[bB][01]+)\b/},{token:"constant.numeric",regex:/[+-]?\d[\d_]*(?:(?:\.\d*)?(?:[eE][+-]?\d+)?)?\b/},{token:["storage.type","punctuation.operator","support.function","punctuation.operator","entity.name.function","text","keyword.operator"],regex:"("+o+")(\\.)(prototype)(\\.)("+o+")(\\s*)(=)",next:"function_arguments"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","paren.lparen"],regex:"("+o+")(\\.)("+o+")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["entity.name.function","text","keyword.operator","text","storage.type","text","paren.lparen"],regex:"("+o+")(\\s*)(=)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","entity.name.function","text","paren.lparen"],regex:"("+o+")(\\.)("+o+")(\\s*)(=)(\\s*)(function)(\\s+)(\\w+)(\\s*)(\\()",next:"function_arguments"},{token:["storage.type","text","entity.name.function","text","paren.lparen"],regex:"(function)(\\s+)("+o+")(\\s*)(\\()",next:"function_arguments"},{token:["entity.name.function","text","punctuation.operator","text","storage.type","text","paren.lparen"],regex:"("+o+")(\\s*)(:)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:["text","text","storage.type","text","paren.lparen"],regex:"(:)(\\s*)(function)(\\s*)(\\()",next:"function_arguments"},{token:"keyword",regex:"(?:case|do|else|finally|in|instanceof|return|throw|try|typeof|yield|void)\\b",next:"start"},{token:["support.constant"],regex:/that\b/},{token:["storage.type","punctuation.operator","support.function.firebug"],regex:/(console)(\.)(warn|info|log|error|time|trace|timeEnd|assert)\b/},{token:t,regex:o},{token:"punctuation.operator",regex:/[.](?![.])/,next:"property"},{token:"keyword.operator",regex:/--|\+\+|\.{3}|===|==|=|!=|!==|<+=?|>+=?|!|&&|\|\||\?:|[!$%&*+\-~\/^]=?/,next:"start"},{token:"punctuation.operator",regex:/[?:,;.]/,next:"start"},{token:"paren.lparen",regex:/[\[({]/,next:"start"},{token:"paren.rparen",regex:/[\])}]/},{token:"comment",regex:/^#!.*$/}],property:[{token:"text",regex:"\\s+"},{token:["storage.type","punctuation.operator","entity.name.function","text","keyword.operator","text","storage.type","text","entity.name.function","text","paren.lparen"],regex:"("+o+")(\\.)("+o+")(\\s*)(=)(\\s*)(function)(?:(\\s+)(\\w+))?(\\s*)(\\()",next:"function_arguments"},{token:"punctuation.operator",regex:/[.](?![.])/},{token:"support.function",regex:"/|"+s+"|/"},{token:"support.function",regex:/(s(?:h(?:ift|ow(?:Mod(?:elessDialog|alDialog)|Help))|croll(?:X|By(?:Pages|Lines)?|Y|To)?|t(?:op|rike)|i(?:n|zeToContent|debar|gnText)|ort|u(?:p|b(?:str(?:ing)?)?)|pli(?:ce|t)|e(?:nd|t(?:Re(?:sizable|questHeader)|M(?:i(?:nutes|lliseconds)|onth)|Seconds|Ho(?:tKeys|urs)|Year|Cursor|Time(?:out)?|Interval|ZOptions|Date|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Date|FullYear)|FullYear|Active)|arch)|qrt|lice|avePreferences|mall)|h(?:ome|andleEvent)|navigate|c(?:har(?:CodeAt|At)|o(?:s|n(?:cat|textual|firm)|mpile)|eil|lear(?:Timeout|Interval)?|a(?:ptureEvents|ll)|reate(?:StyleSheet|Popup|EventObject))|t(?:o(?:GMTString|S(?:tring|ource)|U(?:TCString|pperCase)|Lo(?:caleString|werCase))|est|a(?:n|int(?:Enabled)?))|i(?:s(?:NaN|Finite)|ndexOf|talics)|d(?:isableExternalCapture|ump|etachEvent)|u(?:n(?:shift|taint|escape|watch)|pdateCommands)|j(?:oin|avaEnabled)|p(?:o(?:p|w)|ush|lugins.refresh|a(?:ddings|rse(?:Int|Float)?)|r(?:int|ompt|eference))|e(?:scape|nableExternalCapture|val|lementFromPoint|x(?:p|ec(?:Script|Command)?))|valueOf|UTC|queryCommand(?:State|Indeterm|Enabled|Value)|f(?:i(?:nd|le(?:ModifiedDate|Size|CreatedDate|UpdatedDate)|xed)|o(?:nt(?:size|color)|rward)|loor|romCharCode)|watch|l(?:ink|o(?:ad|g)|astIndexOf)|a(?:sin|nchor|cos|t(?:tachEvent|ob|an(?:2)?)|pply|lert|b(?:s|ort))|r(?:ou(?:nd|teEvents)|e(?:size(?:By|To)|calc|turnValue|place|verse|l(?:oad|ease(?:Capture|Events)))|andom)|g(?:o|et(?:ResponseHeader|M(?:i(?:nutes|lliseconds)|onth)|Se(?:conds|lection)|Hours|Year|Time(?:zoneOffset)?|Da(?:y|te)|UTC(?:M(?:i(?:nutes|lliseconds)|onth)|Seconds|Hours|Da(?:y|te)|FullYear)|FullYear|A(?:ttention|llResponseHeaders)))|m(?:in|ove(?:B(?:y|elow)|To(?:Absolute)?|Above)|ergeAttributes|a(?:tch|rgins|x))|b(?:toa|ig|o(?:ld|rderWidths)|link|ack))\b(?=\()/},{token:"support.function.dom",regex:/(s(?:ub(?:stringData|mit)|plitText|e(?:t(?:NamedItem|Attribute(?:Node)?)|lect))|has(?:ChildNodes|Feature)|namedItem|c(?:l(?:ick|o(?:se|neNode))|reate(?:C(?:omment|DATASection|aption)|T(?:Head|extNode|Foot)|DocumentFragment|ProcessingInstruction|E(?:ntityReference|lement)|Attribute))|tabIndex|i(?:nsert(?:Row|Before|Cell|Data)|tem)|open|delete(?:Row|C(?:ell|aption)|T(?:Head|Foot)|Data)|focus|write(?:ln)?|a(?:dd|ppend(?:Child|Data))|re(?:set|place(?:Child|Data)|move(?:NamedItem|Child|Attribute(?:Node)?)?)|get(?:NamedItem|Element(?:sBy(?:Name|TagName|ClassName)|ById)|Attribute(?:Node)?)|blur)\b(?=\()/},{token:"support.constant",regex:/(s(?:ystemLanguage|cr(?:ipts|ollbars|een(?:X|Y|Top|Left))|t(?:yle(?:Sheets)?|atus(?:Text|bar)?)|ibling(?:Below|Above)|ource|uffixes|e(?:curity(?:Policy)?|l(?:ection|f)))|h(?:istory|ost(?:name)?|as(?:h|Focus))|y|X(?:MLDocument|SLDocument)|n(?:ext|ame(?:space(?:s|URI)|Prop))|M(?:IN_VALUE|AX_VALUE)|c(?:haracterSet|o(?:n(?:structor|trollers)|okieEnabled|lorDepth|mp(?:onents|lete))|urrent|puClass|l(?:i(?:p(?:boardData)?|entInformation)|osed|asses)|alle(?:e|r)|rypto)|t(?:o(?:olbar|p)|ext(?:Transform|Indent|Decoration|Align)|ags)|SQRT(?:1_2|2)|i(?:n(?:ner(?:Height|Width)|put)|ds|gnoreCase)|zIndex|o(?:scpu|n(?:readystatechange|Line)|uter(?:Height|Width)|p(?:sProfile|ener)|ffscreenBuffering)|NEGATIVE_INFINITY|d(?:i(?:splay|alog(?:Height|Top|Width|Left|Arguments)|rectories)|e(?:scription|fault(?:Status|Ch(?:ecked|arset)|View)))|u(?:ser(?:Profile|Language|Agent)|n(?:iqueID|defined)|pdateInterval)|_content|p(?:ixelDepth|ort|ersonalbar|kcs11|l(?:ugins|atform)|a(?:thname|dding(?:Right|Bottom|Top|Left)|rent(?:Window|Layer)?|ge(?:X(?:Offset)?|Y(?:Offset)?))|r(?:o(?:to(?:col|type)|duct(?:Sub)?|mpter)|e(?:vious|fix)))|e(?:n(?:coding|abledPlugin)|x(?:ternal|pando)|mbeds)|v(?:isibility|endor(?:Sub)?|Linkcolor)|URLUnencoded|P(?:I|OSITIVE_INFINITY)|f(?:ilename|o(?:nt(?:Size|Family|Weight)|rmName)|rame(?:s|Element)|gColor)|E|whiteSpace|l(?:i(?:stStyleType|n(?:eHeight|kColor))|o(?:ca(?:tion(?:bar)?|lName)|wsrc)|e(?:ngth|ft(?:Context)?)|a(?:st(?:M(?:odified|atch)|Index|Paren)|yer(?:s|X)|nguage))|a(?:pp(?:MinorVersion|Name|Co(?:deName|re)|Version)|vail(?:Height|Top|Width|Left)|ll|r(?:ity|guments)|Linkcolor|bove)|r(?:ight(?:Context)?|e(?:sponse(?:XML|Text)|adyState))|global|x|m(?:imeTypes|ultiline|enubar|argin(?:Right|Bottom|Top|Left))|L(?:N(?:10|2)|OG(?:10E|2E))|b(?:o(?:ttom|rder(?:Width|RightWidth|BottomWidth|Style|Color|TopWidth|LeftWidth))|ufferDepth|elow|ackground(?:Color|Image)))\b/},{token:"identifier",regex:o},{regex:"",token:"empty",next:"no_regex"}],start:[a.getStartRule("doc-start"),c("start"),{token:"string.regexp",regex:"\\/",next:"regex"},{token:"text",regex:"\\s+|^$",next:"start"},{token:"empty",regex:"",next:"no_regex"}],regex:[{token:"regexp.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"string.regexp",regex:"/[sxngimy]*",next:"no_regex"},{token:"invalid",regex:/\{\d+\b,?\d*\}[+*]|[+*$^?][+*]|[$^][?]|\?{3,}/},{token:"constant.language.escape",regex:/\(\?[:=!]|\)|\{\d+\b,?\d*\}|[+*]\?|[()$^+*?.]/},{token:"constant.language.delimiter",regex:/\|/},{token:"constant.language.escape",regex:/\[\^?/,next:"regex_character_class"},{token:"empty",regex:"$",next:"no_regex"},{defaultToken:"string.regexp"}],regex_character_class:[{token:"regexp.charclass.keyword.operator",regex:"\\\\(?:u[\\da-fA-F]{4}|x[\\da-fA-F]{2}|.)"},{token:"constant.language.escape",regex:"]",next:"regex"},{token:"constant.language.escape",regex:"-"},{token:"empty",regex:"$",next:"no_regex"},{defaultToken:"string.regexp.charachterclass"}],function_arguments:[{token:"variable.parameter",regex:o},{token:"punctuation.operator",regex:"[, ]+"},{token:"punctuation.operator",regex:"$"},{token:"empty",regex:"",next:"no_regex"}],qqstring:[{token:"constant.language.escape",regex:n},{token:"string",regex:"\\\\$",next:"qqstring"},{token:"string",regex:'"|$',next:"no_regex"},{defaultToken:"string"}],qstring:[{token:"constant.language.escape",regex:n},{token:"string",regex:"\\\\$",next:"qstring"},{token:"string",regex:"'|$",next:"no_regex"},{defaultToken:"string"}]},e&&e.noES6||(this.$rules.no_regex.unshift({regex:"[{}]",onMatch:function(e,t,n){if(this.next="{"==e?this.nextState:"","{"==e&&n.length)n.unshift("start",t);else if("}"==e&&n.length&&(n.shift(),this.next=n.shift(),-1!=this.next.indexOf("string")||-1!=this.next.indexOf("jsx")))return"paren.quasi.end";return"{"==e?"paren.lparen":"paren.rparen"},nextState:"start"},{token:"string.quasi.start",regex:/`/,push:[{token:"constant.language.escape",regex:n},{token:"paren.quasi.start",regex:/\${/,push:"start"},{token:"string.quasi.end",regex:/`/,next:"pop"},{defaultToken:"string.quasi"}]}),e&&0==e.jsx||function(){var e=o.replace("\\d","\\d\\-"),t={onMatch:function(e,t,n){var r="/"==e.charAt(1)?2:1;return 1==r?(t!=this.nextState?n.unshift(this.next,this.nextState,0):n.unshift(this.next),n[2]++):2==r&&t==this.nextState&&(n[1]--,(!n[1]||n[1]<0)&&(n.shift(),n.shift())),[{type:"meta.tag.punctuation."+(1==r?"":"end-")+"tag-open.xml",value:e.slice(0,r)},{type:"meta.tag.tag-name.xml",value:e.substr(r)}]},regex:"",onMatch:function(e,t,n){return t==n[0]&&n.shift(),2==e.length&&(n[0]==this.nextState&&n[1]--,(!n[1]||n[1]<0)&&n.splice(0,2)),this.next=n[0]||"start",[{type:this.token,value:e}]},nextState:"jsx"},n,c("jsxAttributes"),{token:"entity.other.attribute-name.xml",regex:e},{token:"keyword.operator.attribute-equals.xml",regex:"="},{token:"text.tag-whitespace.xml",regex:"\\s+"},{token:"string.attribute-value.xml",regex:"'",stateName:"jsx_attr_q",push:[{token:"string.attribute-value.xml",regex:"'",next:"pop"},{include:"reference"},{defaultToken:"string.attribute-value.xml"}]},{token:"string.attribute-value.xml",regex:'"',stateName:"jsx_attr_qq",push:[{token:"string.attribute-value.xml",regex:'"',next:"pop"},{include:"reference"},{defaultToken:"string.attribute-value.xml"}]},t],this.$rules.reference=[{token:"constant.language.escape.reference.xml",regex:"(?:&#[0-9]+;)|(?:&#x[0-9a-fA-F]+;)|(?:&[a-zA-Z0-9_:\\.-]+;)"}]}.call(this)),this.embedRules(a,"doc-",[a.getEndRule("no_regex")]),this.normalizeRules()};function c(e){return[{token:"comment",regex:/\/\*/,next:[a.getTagRule(),{token:"comment",regex:"\\*\\/",next:e||"pop"},{defaultToken:"comment",caseInsensitive:!0}]},{token:"comment",regex:"\\/\\/",next:[a.getTagRule(),{token:"comment",regex:"$|^",next:e||"pop"},{defaultToken:"comment",caseInsensitive:!0}]}]}n.inherits(l,i),t.NetscriptHighlightRules=l}),ace.define("ace/mode/matching_brace_outdent",["require","exports","module","ace/range"],function(e,t){var n=e("../range").Range,r=function(){};(function(){this.checkOutdent=function(e,t){return!!/^\s+$/.test(e)&&/^\s*\}/.test(t)},this.autoOutdent=function(e,t){var r=e.getLine(t).match(/^(\s*\})/);if(!r)return 0;var a=r[1].length,i=e.findMatchingBracket({row:t,column:a});if(!i||i.row==t)return 0;var o=this.$getIndent(e.getLine(i.row));e.replace(new n(t,0,t,a-1),o)},this.$getIndent=function(e){return e.match(/^\s*/)[0]}}).call(r.prototype),t.MatchingBraceOutdent=r}),ace.define("ace/mode/folding/cstyle",["require","exports","module","ace/lib/oop","ace/range","ace/mode/folding/fold_mode"],function(e,t){var n=e("../../lib/oop"),r=e("../../range").Range,a=e("./fold_mode").FoldMode,i=t.FoldMode=function(e){e&&(this.foldingStartMarker=new RegExp(this.foldingStartMarker.source.replace(/\|[^|]*?$/,"|"+e.start)),this.foldingStopMarker=new RegExp(this.foldingStopMarker.source.replace(/\|[^|]*?$/,"|"+e.end)))};n.inherits(i,a),function(){this.foldingStartMarker=/(\{|\[)[^\}\]]*$|^\s*(\/\*)/,this.foldingStopMarker=/^[^\[\{]*(\}|\])|^[\s\*]*(\*\/)/,this.singleLineBlockCommentRe=/^\s*(\/\*).*\*\/\s*$/,this.tripleStarBlockCommentRe=/^\s*(\/\*\*\*).*\*\/\s*$/,this.startRegionRe=/^\s*(\/\*|\/\/)#?region\b/,this._getFoldWidgetBase=this.getFoldWidget,this.getFoldWidget=function(e,t,n){var r=e.getLine(n);if(this.singleLineBlockCommentRe.test(r)&&!this.startRegionRe.test(r)&&!this.tripleStarBlockCommentRe.test(r))return"";var a=this._getFoldWidgetBase(e,t,n);return!a&&this.startRegionRe.test(r)?"start":a},this.getFoldWidgetRange=function(e,t,n,r){var a,i=e.getLine(n);if(this.startRegionRe.test(i))return this.getCommentRegionBlock(e,i,n);if(a=i.match(this.foldingStartMarker)){var o=a.index;if(a[1])return this.openingBracketBlock(e,a[1],n,o);var s=e.getCommentFoldRange(n,o+a[0].length,1);return s&&!s.isMultiLine()&&(r?s=this.getSectionRange(e,n):"all"!=t&&(s=null)),s}if("markbegin"!==t&&(a=i.match(this.foldingStopMarker))){o=a.index+a[0].length;return a[1]?this.closingBracketBlock(e,a[1],n,o):e.getCommentFoldRange(n,o,-1)}},this.getSectionRange=function(e,t){for(var n=e.getLine(t),a=n.search(/\S/),i=t,o=n.length,s=t+=1,l=e.getLength();++tc)break;var u=this.getFoldWidgetRange(e,"all",t);if(u){if(u.start.row<=i)break;if(u.isMultiLine())t=u.end.row;else if(a==c)break}s=t}}return new r(i,o,s,e.getLine(s).length)},this.getCommentRegionBlock=function(e,t,n){for(var a=t.search(/\s*$/),i=e.getLength(),o=n,s=/^\s*(?:\/\*|\/\/|--)#?(end)?region\b/,l=1;++no)return new r(o,a,n,t.length)}}.call(i.prototype)}),ace.define("ace/mode/netscript",["require","exports","module","ace/lib/oop","ace/mode/text","ace/mode/netscript_highlight_rules","ace/mode/matching_brace_outdent","ace/worker/worker_client","ace/mode/behaviour/cstyle","ace/mode/folding/cstyle"],function(e,t){var r=e("../lib/oop"),a=e("./text").Mode,i=e("./netscript_highlight_rules").NetscriptHighlightRules,o=e("./matching_brace_outdent").MatchingBraceOutdent,s=e("../worker/worker_client").WorkerClient,l=e("./behaviour/cstyle").CstyleBehaviour,c=e("./folding/cstyle").FoldMode,u=function(){this.HighlightRules=i,this.$outdent=new o,this.$behaviour=new l,this.foldingRules=new c};r.inherits(u,a),function(){this.lineCommentStart="//",this.blockComment={start:"/*",end:"*/"},this.getNextLineIndent=function(e,t,n){var r=this.$getIndent(t),a=this.getTokenizer().getLineTokens(t,e),i=a.tokens,o=a.state;if(i.length&&"comment"==i[i.length-1].type)return r;if("start"==e||"no_regex"==e)(s=t.match(/^.*(?:\bcase\b.*:|[\{\(\[])\s*$/))&&(r+=n);else if("doc-start"==e){if("start"==o||"no_regex"==o)return"";var s;(s=t.match(/^\s*(\/?)\*/))&&(s[1]&&(r+=" "),r+="* ")}return r},this.checkOutdent=function(e,t,n){return this.$outdent.checkOutdent(t,n)},this.autoOutdent=function(e,t,n){this.$outdent.autoOutdent(t,n)},this.createWorker=function(e){var t=new s(["ace"],n(678),"JavaScriptWorker");return t.attachToDocument(e.getDocument()),t.on("annotate",function(t){e.setAnnotations(t.data)}),t.on("terminate",function(){e.clearAnnotations()}),t},this.$id="ace/mode/netscript"}.call(u.prototype),t.Mode=u})},,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.getSubdirectories=void 0;const r=n(103);t.getSubdirectories=function(e,t){const n=[];if(!r.isValidDirectoryPath(t))return n;let a=t;function i(e){if("/"===a&&r.isInRootDirectory(e)){const t=r.getFirstParentDirectory(e);"/"===t||n.includes(t)||n.push(t)}else if(e.startsWith(a)){const t=e.slice(a.length),i=r.getFirstParentDirectory(t);"/"===i||n.includes(i)||n.push(i)}}a.endsWith("/")||(a+="/");for(const t of e.scripts)i(t.filename);for(const t of e.textFiles)i(t.fn);return n}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.DarkWebItem=void 0;t.DarkWebItem=class{constructor(e,t,n){this.program=e,this.price=t,this.description=n}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.isValidNumber=void 0,t.isValidNumber=function(e){return"number"==typeof e&&!isNaN(e)}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.HashUpgradesMetadata=void 0,t.HashUpgradesMetadata=[{cost:4,costPerLevel:4,desc:"Sell hashes for $1m",name:"Sell for Money",value:1e6},{costPerLevel:100,desc:"Sell hashes for $1b in Corporation funds",name:"Sell for Corporation Funds",value:1e9},{costPerLevel:50,desc:"Use hashes to decrease the minimum security of a single server by 2%. Note that a server's minimum security cannot go below 1. This effect persists until you install Augmentations (since servers are reset at that time).",hasTargetServer:!0,name:"Reduce Minimum Security",value:.98},{costPerLevel:50,desc:"Use hashes to increase the maximum amount of money on a single server by 2%. This effect persists until you install Augmentations (since servers are reset at that time).",hasTargetServer:!0,name:"Increase Maximum Money",value:1.02},{costPerLevel:50,desc:"Use hashes to improve the experience earned when studying at a university by 20%. This effect persists until you install Augmentations",name:"Improve Studying",value:20},{costPerLevel:50,desc:"Use hashes to improve the experience earned when training at the gym by 20%. This effect persists until you install Augmentations",name:"Improve Gym Training",value:20},{costPerLevel:200,desc:"Exchange hashes for 1k Scientific Research in all of your Corporation's Industries",name:"Exchange for Corporation Research",value:1e3},{costPerLevel:250,desc:"Exchange hashes for 100 Bladeburner Rank",name:"Exchange for Bladeburner Rank",value:100},{costPerLevel:250,desc:"Exchanges hashes for 10 Bladeburner Skill Points",name:"Exchange for Bladeburner SP",value:10},{costPerLevel:200,desc:"Generate a random Coding Contract somewhere on the network",name:"Generate Coding Contract",value:1}]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.HashUpgrade=void 0;t.HashUpgrade=class{constructor(e){this.costPerLevel=0,this.desc="",this.hasTargetServer=!1,this.name="",this.value=0,null!=e.cost&&(this.cost=e.cost),this.costPerLevel=e.costPerLevel,this.desc=e.desc,this.hasTargetServer=!!e.hasTargetServer&&e.hasTargetServer,this.name=e.name,this.value=e.value}getCost(e){return"number"==typeof this.cost?this.cost:Math.round((e+1)*this.costPerLevel)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.programsMetadata=void 0;const r=n(11);function a(e){return function(t){return t.hacking_skill>=e}}t.programsMetadata=[{key:"NukeProgram",name:"NUKE.exe",create:{level:1,tooltip:"This virus is used to gain root access to a machine if enough ports are opened.",req:a(1),time:r.CONSTANTS.MillisecondsPerFiveMinutes}},{key:"BruteSSHProgram",name:"BruteSSH.exe",create:{level:50,tooltip:"This program executes a brute force attack that opens SSH ports",req:a(50),time:2*r.CONSTANTS.MillisecondsPerFiveMinutes}},{key:"FTPCrackProgram",name:"FTPCrack.exe",create:{level:100,tooltip:"This program cracks open FTP ports",req:a(100),time:r.CONSTANTS.MillisecondsPerHalfHour}},{key:"RelaySMTPProgram",name:"relaySMTP.exe",create:{level:250,tooltip:"This program opens SMTP ports by redirecting data",req:a(250),time:r.CONSTANTS.MillisecondsPer2Hours}},{key:"HTTPWormProgram",name:"HTTPWorm.exe",create:{level:500,tooltip:"This virus opens up HTTP ports",req:a(500),time:r.CONSTANTS.MillisecondsPer4Hours}},{key:"SQLInjectProgram",name:"SQLInject.exe",create:{level:750,tooltip:"This virus opens SQL ports",req:a(750),time:r.CONSTANTS.MillisecondsPer8Hours}},{key:"DeepscanV1",name:"DeepscanV1.exe",create:{level:75,tooltip:"This program allows you to use the scan-analyze command with a depth up to 5",req:a(75),time:r.CONSTANTS.MillisecondsPerQuarterHour}},{key:"DeepscanV2",name:"DeepscanV2.exe",create:{level:400,tooltip:"This program allows you to use the scan-analyze command with a depth up to 10",req:a(400),time:r.CONSTANTS.MillisecondsPer2Hours}},{key:"ServerProfiler",name:"ServerProfiler.exe",create:{level:75,tooltip:"This program is used to display hacking and Netscript-related information about servers",req:a(75),time:r.CONSTANTS.MillisecondsPerHalfHour}},{key:"AutoLink",name:"AutoLink.exe",create:{level:25,tooltip:"This program allows you to directly connect to other servers through the 'scan-analyze' command",req:a(25),time:r.CONSTANTS.MillisecondsPerQuarterHour}},{key:"BitFlume",name:"b1t_flum3.exe",create:{level:1,tooltip:"This program creates a portal to the BitNode Nexus (allows you to restart and switch BitNodes)",req:function(e){return e.sourceFiles.length>0&&e.hacking_skill>=1},time:r.CONSTANTS.MillisecondsPerFiveMinutes/20}},{key:"Flight",name:"fl1ght.exe",create:null}]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Program=void 0;t.Program=class{constructor(e,t){this.name="",this.name=e,this.create=t}htmlID(){return"create-program-"+(this.name.endsWith(".exe")?this.name.slice(0,-".exe".length):this.name)}}},,function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.companyPositionMetadata=void 0;const o=i(n(70));t.companyPositionMetadata=[{name:o.SoftwareCompanyPositions[0],nextPosition:o.SoftwareCompanyPositions[1],baseSalary:33,charismaEffectiveness:15,charismaExpGain:.02,hackingEffectiveness:85,hackingExpGain:.05,reqdHacking:1,repMultiplier:.9},{name:o.SoftwareCompanyPositions[1],nextPosition:o.SoftwareCompanyPositions[2],baseSalary:80,charismaEffectiveness:15,charismaExpGain:.05,hackingEffectiveness:85,hackingExpGain:.1,reqdHacking:51,reqdReputation:8e3,repMultiplier:1.1},{name:o.SoftwareCompanyPositions[2],nextPosition:o.SoftwareCompanyPositions[3],baseSalary:165,charismaEffectiveness:20,charismaExpGain:.08,hackingEffectiveness:80,hackingExpGain:.4,reqdCharisma:51,reqdHacking:251,reqdReputation:4e4,repMultiplier:1.3},{name:o.SoftwareCompanyPositions[3],nextPosition:o.SoftwareCompanyPositions[4],baseSalary:500,charismaEffectiveness:25,charismaExpGain:.1,hackingEffectiveness:75,hackingExpGain:.8,reqdCharisma:151,reqdHacking:401,reqdReputation:2e5,repMultiplier:1.5},{name:o.SoftwareCompanyPositions[4],nextPosition:o.SoftwareCompanyPositions[5],baseSalary:800,charismaEffectiveness:25,charismaExpGain:.5,hackingEffectiveness:75,hackingExpGain:1,reqdCharisma:251,reqdHacking:501,reqdReputation:4e5,repMultiplier:1.6},{name:o.SoftwareCompanyPositions[5],nextPosition:o.SoftwareCompanyPositions[6],baseSalary:1650,charismaEffectiveness:25,charismaExpGain:.5,hackingEffectiveness:75,hackingExpGain:1.1,reqdCharisma:251,reqdHacking:501,reqdReputation:8e5,repMultiplier:1.6},{name:o.SoftwareCompanyPositions[6],nextPosition:o.SoftwareCompanyPositions[7],baseSalary:2310,charismaEffectiveness:30,charismaExpGain:.6,hackingEffectiveness:70,hackingExpGain:1.2,reqdCharisma:401,reqdHacking:601,reqdReputation:16e5,repMultiplier:1.75},{name:o.SoftwareCompanyPositions[7],nextPosition:null,baseSalary:2640,charismaEffectiveness:35,charismaExpGain:1,hackingEffectiveness:65,hackingExpGain:1.5,reqdCharisma:501,reqdHacking:751,reqdReputation:32e5,repMultiplier:2},{name:o.ITCompanyPositions[0],nextPosition:o.ITCompanyPositions[1],baseSalary:26,charismaEffectiveness:10,charismaExpGain:.01,hackingEffectiveness:90,hackingExpGain:.04,reqdHacking:1,repMultiplier:.9},{name:o.ITCompanyPositions[1],nextPosition:o.ITCompanyPositions[2],baseSalary:66,charismaEffectiveness:15,charismaExpGain:.02,hackingEffectiveness:85,hackingExpGain:.08,reqdHacking:26,reqdReputation:7e3,repMultiplier:1.1},{name:o.ITCompanyPositions[2],nextPosition:o.ITCompanyPositions[3],baseSalary:132,charismaEffectiveness:20,charismaExpGain:.1,hackingEffectiveness:80,hackingExpGain:.3,reqdCharisma:51,reqdHacking:151,reqdReputation:35e3,repMultiplier:1.3},{name:o.ITCompanyPositions[3],nextPosition:o.SoftwareCompanyPositions[5],baseSalary:410,charismaEffectiveness:20,charismaExpGain:.2,hackingEffectiveness:80,hackingExpGain:.5,reqdCharisma:76,reqdHacking:251,reqdReputation:175e3,repMultiplier:1.4},{name:o.SecurityEngineerCompanyPositions[0],nextPosition:o.SoftwareCompanyPositions[5],baseSalary:121,charismaEffectiveness:15,charismaExpGain:.05,hackingEffectiveness:85,hackingExpGain:.4,reqdCharisma:26,reqdHacking:151,reqdReputation:35e3,repMultiplier:1.2},{name:o.NetworkEngineerCompanyPositions[0],nextPosition:o.NetworkEngineerCompanyPositions[1],baseSalary:121,charismaEffectiveness:15,charismaExpGain:.05,hackingEffectiveness:85,hackingExpGain:.4,reqdCharisma:26,reqdHacking:151,reqdReputation:35e3,repMultiplier:1.2},{name:o.NetworkEngineerCompanyPositions[1],nextPosition:o.SoftwareCompanyPositions[5],baseSalary:410,charismaEffectiveness:20,charismaExpGain:.1,hackingEffectiveness:80,hackingExpGain:.5,reqdCharisma:76,reqdHacking:251,reqdReputation:175e3,repMultiplier:1.3},{name:o.BusinessCompanyPositions[0],nextPosition:o.BusinessCompanyPositions[1],baseSalary:46,charismaEffectiveness:90,charismaExpGain:.08,hackingEffectiveness:10,hackingExpGain:.01,reqdCharisma:1,reqdHacking:1,repMultiplier:.9},{name:o.BusinessCompanyPositions[1],nextPosition:o.BusinessCompanyPositions[2],baseSalary:100,charismaEffectiveness:85,charismaExpGain:.15,hackingEffectiveness:15,hackingExpGain:.02,reqdCharisma:51,reqdHacking:6,reqdReputation:8e3,repMultiplier:1.1},{name:o.BusinessCompanyPositions[2],nextPosition:o.BusinessCompanyPositions[3],baseSalary:200,charismaEffectiveness:85,charismaExpGain:.3,hackingEffectiveness:15,hackingExpGain:.02,reqdCharisma:101,reqdHacking:51,reqdReputation:4e4,repMultiplier:1.3},{name:o.BusinessCompanyPositions[3],nextPosition:o.BusinessCompanyPositions[4],baseSalary:660,charismaEffectiveness:85,charismaExpGain:.4,hackingEffectiveness:15,hackingExpGain:.02,reqdCharisma:226,reqdHacking:51,reqdReputation:2e5,repMultiplier:1.5},{name:o.BusinessCompanyPositions[4],nextPosition:o.BusinessCompanyPositions[5],baseSalary:1950,charismaEffectiveness:90,charismaExpGain:1,hackingEffectiveness:10,hackingExpGain:.05,reqdCharisma:501,reqdHacking:76,reqdReputation:8e5,repMultiplier:1.6},{name:o.BusinessCompanyPositions[5],nextPosition:null,baseSalary:3900,charismaEffectiveness:90,charismaExpGain:1.5,hackingEffectiveness:10,hackingExpGain:.05,reqdCharisma:751,reqdHacking:101,reqdReputation:32e5,repMultiplier:1.75},{name:o.SecurityCompanyPositions[0],nextPosition:o.SecurityCompanyPositions[1],baseSalary:82,hackingEffectiveness:5,strengthEffectiveness:20,defenseEffectiveness:20,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.02,strengthExpGain:.08,defenseExpGain:.08,dexterityExpGain:.08,agilityExpGain:.08,charismaExpGain:.04,reqdHacking:11,reqdStrength:101,reqdDefense:101,reqdDexterity:101,reqdAgility:101,reqdCharisma:51,reqdReputation:8e3,repMultiplier:1},{name:o.SecurityCompanyPositions[1],nextPosition:null,baseSalary:460,hackingEffectiveness:5,strengthEffectiveness:20,defenseEffectiveness:20,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.02,strengthExpGain:.1,defenseExpGain:.1,dexterityExpGain:.1,agilityExpGain:.1,charismaExpGain:.1,reqdHacking:101,reqdStrength:301,reqdDefense:301,reqdDexterity:301,reqdAgility:301,reqdCharisma:151,reqdReputation:36e3,repMultiplier:1.25},{name:o.SecurityCompanyPositions[2],nextPosition:o.SecurityCompanyPositions[3],baseSalary:50,hackingEffectiveness:5,strengthEffectiveness:20,defenseEffectiveness:20,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.01,strengthExpGain:.04,defenseExpGain:.04,dexterityExpGain:.04,agilityExpGain:.04,charismaExpGain:.02,reqdStrength:51,reqdDefense:51,reqdDexterity:51,reqdAgility:51,reqdCharisma:1,repMultiplier:1},{name:o.SecurityCompanyPositions[3],nextPosition:o.SecurityCompanyPositions[4],baseSalary:195,hackingEffectiveness:10,strengthEffectiveness:20,defenseEffectiveness:20,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:10,hackingExpGain:.02,strengthExpGain:.1,defenseExpGain:.1,dexterityExpGain:.1,agilityExpGain:.1,charismaExpGain:.05,reqdHacking:26,reqdStrength:151,reqdDefense:151,reqdDexterity:151,reqdAgility:151,reqdCharisma:51,reqdReputation:8e3,repMultiplier:1.1},{name:o.SecurityCompanyPositions[4],nextPosition:o.SecurityCompanyPositions[5],baseSalary:660,hackingEffectiveness:10,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:15,agilityEffectiveness:15,charismaEffectiveness:30,hackingExpGain:.02,strengthExpGain:.12,defenseExpGain:.12,dexterityExpGain:.12,agilityExpGain:.12,charismaExpGain:.1,reqdHacking:26,reqdStrength:251,reqdDefense:251,reqdDexterity:251,reqdAgility:251,reqdCharisma:101,reqdReputation:36e3,repMultiplier:1.25},{name:o.SecurityCompanyPositions[5],nextPosition:null,baseSalary:1320,hackingEffectiveness:10,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:15,agilityEffectiveness:15,charismaEffectiveness:30,hackingExpGain:.05,strengthExpGain:.15,defenseExpGain:.15,dexterityExpGain:.15,agilityExpGain:.15,charismaExpGain:.15,reqdHacking:51,reqdStrength:501,reqdDefense:501,reqdDexterity:501,reqdAgility:501,reqdCharisma:151,reqdReputation:144e3,repMultiplier:1.4},{name:o.AgentCompanyPositions[0],nextPosition:o.AgentCompanyPositions[1],baseSalary:330,hackingEffectiveness:10,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:20,hackingExpGain:.04,strengthExpGain:.08,defenseExpGain:.08,dexterityExpGain:.08,agilityExpGain:.08,charismaExpGain:.05,reqdHacking:101,reqdStrength:101,reqdDefense:101,reqdDexterity:101,reqdAgility:101,reqdCharisma:101,reqdReputation:8e3,repMultiplier:1},{name:o.AgentCompanyPositions[1],nextPosition:o.AgentCompanyPositions[2],baseSalary:990,hackingEffectiveness:15,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.1,strengthExpGain:.15,defenseExpGain:.15,dexterityExpGain:.15,agilityExpGain:.15,charismaExpGain:.1,reqdHacking:201,reqdStrength:251,reqdDefense:251,reqdDexterity:251,reqdAgility:251,reqdCharisma:201,reqdReputation:32e3,repMultiplier:1.25},{name:o.AgentCompanyPositions[2],nextPosition:null,baseSalary:2e3,hackingEffectiveness:15,strengthEffectiveness:15,defenseEffectiveness:15,dexterityEffectiveness:20,agilityEffectiveness:20,charismaEffectiveness:15,hackingExpGain:.15,strengthExpGain:.2,defenseExpGain:.2,dexterityExpGain:.2,agilityExpGain:.2,charismaExpGain:.15,reqdHacking:251,reqdStrength:501,reqdDefense:501,reqdDexterity:501,reqdAgility:501,reqdCharisma:251,reqdReputation:162e3,repMultiplier:1.5},{name:o.MiscCompanyPositions[0],nextPosition:null,baseSalary:22,strengthEffectiveness:10,dexterityEffectiveness:10,agilityEffectiveness:10,charismaEffectiveness:70,strengthExpGain:.02,defenseExpGain:.02,dexterityExpGain:.02,agilityExpGain:.02,charismaExpGain:.05,repMultiplier:1},{name:o.MiscCompanyPositions[1],nextPosition:null,baseSalary:22,strengthEffectiveness:10,dexterityEffectiveness:10,agilityEffectiveness:10,charismaEffectiveness:70,strengthExpGain:.02,defenseExpGain:.02,dexterityExpGain:.02,agilityExpGain:.02,charismaExpGain:.04,repMultiplier:1},{name:o.SoftwareConsultantCompanyPositions[0],nextPosition:o.SoftwareConsultantCompanyPositions[1],baseSalary:66,hackingEffectiveness:80,charismaEffectiveness:20,hackingExpGain:.08,charismaExpGain:.03,reqdHacking:51,repMultiplier:1},{name:o.SoftwareConsultantCompanyPositions[1],nextPosition:null,baseSalary:132,hackingEffectiveness:75,charismaEffectiveness:25,hackingExpGain:.25,charismaExpGain:.06,reqdHacking:251,reqdCharisma:51,repMultiplier:1.2},{name:o.BusinessConsultantCompanyPositions[0],nextPosition:o.BusinessConsultantCompanyPositions[1],baseSalary:66,hackingEffectiveness:20,charismaEffectiveness:80,hackingExpGain:.015,charismaExpGain:.15,reqdHacking:6,reqdCharisma:51,repMultiplier:1},{name:o.BusinessConsultantCompanyPositions[1],nextPosition:null,baseSalary:525,hackingEffectiveness:15,charismaEffectiveness:85,hackingExpGain:.015,charismaExpGain:.3,reqdHacking:51,reqdCharisma:226,repMultiplier:1.2},{name:o.PartTimeCompanyPositions[0],nextPosition:null,baseSalary:20,strengthEffectiveness:10,dexterityEffectiveness:10,agilityEffectiveness:10,charismaEffectiveness:70,strengthExpGain:.0075,defenseExpGain:.0075,dexterityExpGain:.0075,agilityExpGain:.0075,charismaExpGain:.04,repMultiplier:1},{name:o.PartTimeCompanyPositions[1],nextPosition:null,baseSalary:20,strengthEffectiveness:10,dexterityEffectiveness:10,agilityEffectiveness:10,charismaEffectiveness:70,strengthExpGain:.0075,defenseExpGain:.0075,dexterityExpGain:.0075,agilityExpGain:.0075,charismaExpGain:.03,repMultiplier:1}]},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.companiesMetadata=void 0;const o=i(n(70)),s=n(50),l={},c={},u={},m={},p={},h={},d={},_={},g={},y={},f={},b={},E={},v={},k={},C={},P={},O={},S={};o.SoftwareCompanyPositions.forEach(e=>{l[e]=!0,p[e]=!0}),o.ITCompanyPositions.forEach(e=>{c[e]=!0,p[e]=!0}),o.NetworkEngineerCompanyPositions.forEach(e=>{u[e]=!0,p[e]=!0}),p[o.SecurityEngineerCompanyPositions[0]]=!0,m[o.SecurityEngineerCompanyPositions[0]]=!0,o.BusinessCompanyPositions.forEach(e=>{h[e]=!0}),o.SecurityCompanyPositions.forEach(e=>{_[e]=!0}),o.AgentCompanyPositions.forEach(e=>{d[e]=!0}),o.SoftwareConsultantCompanyPositions.forEach(e=>{g[e]=!0}),o.BusinessConsultantCompanyPositions.forEach(e=>{y[e]=!0});for(let e=0;en&&(t=n),this.setState({amt:t})}getPurchaseCost(){if(isNaN(this.state.amt))return 1/0;const e=100-this.props.sleeve.memory;return this.state.amt>e?1/0:this.props.sleeve.getMemoryUpgradeCost(this.state.amt)}purchaseMemory(){const e=this.getPurchaseCost();this.props.p.canAfford(e)&&(this.props.sleeve.upgradeMemory(this.state.amt),this.props.p.loseMoney(e),this.props.rerender())}render(){const e=`sleeve-${this.props.index}-memory-upgrade-input`,t=100-this.props.sleeve.memory,n=this.getPurchaseCost(),r=!this.props.p.canAfford(n);let a;return a=isNaN(this.state.amt)?o.createElement(o.Fragment,null,"Invalid value"):this.state.amt>t?o.createElement(o.Fragment,null,"Memory cannot exceed 100?"):o.createElement(o.Fragment,null,"Purchase ",this.state.amt," memory - ",c.Money(n),"?"),o.createElement("div",null,o.createElement("h2",null,o.createElement("u",null,"Upgrade Memory")),o.createElement("p",null,"Purchase a memory upgrade for your sleeve. Note that a sleeve's max memory is 100 (current: ",s.numeralWrapper.formatSleeveMemory(this.props.sleeve.memory),")"),o.createElement("label",{htmlFor:e},"Amount of memory to purchase (must be an integer):"),o.createElement("input",{className:"text-input",id:e,onChange:this.changePurchaseAmount,type:"number",value:this.state.amt}),o.createElement("br",null),o.createElement(l.StdButton,{disabled:r,onClick:this.purchaseMemory,text:a}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CovenantSleeveUpgrades=void 0;const o=i(n(0)),s=n(1184);t.CovenantSleeveUpgrades=class extends o.Component{render(){return o.createElement("div",{className:"bladeburner-action"},o.createElement("h1",null,"Duplicate Sleeve ",this.props.index),o.createElement(s.CovenantSleeveMemoryUpgrade,Object.assign({},this.props)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.CovenantPurchasesRoot=void 0;const o=i(n(0)),s=n(1185),l=n(184),c=n(682),u=n(415),m=n(71),p=n(31),h=n(12);t.CovenantPurchasesRoot=class extends o.Component{constructor(e){super(e),this.state={update:0},this.rerender=this.rerender.bind(this)}purchaseCost(){return(this.props.p.sleevesFromCovenant+1)*c.BaseCostPerSleeve}rerender(){this.setState(e=>({update:e.update+1}))}render(){let e=!1;this.props.p.canAfford(this.purchaseCost())||(e=!0),this.props.p.sleevesFromCovenant>=c.MaxSleevesFromCovenant&&(e=!0);const t=[];for(let e=0;e{this.props.p.sleevesFromCovenant>=c.MaxSleevesFromCovenant||(this.props.p.canAfford(this.purchaseCost())?(this.props.p.loseMoney(this.purchaseCost()),this.props.p.sleevesFromCovenant+=1,this.props.p.sleeves.push(new l.Sleeve(this.props.p)),this.rerender()):h.dialogBoxCreate("You cannot afford to purchase a Duplicate Sleeve",!1))},text:"Purchase"}),o.createElement("br",null),o.createElement("br",null),o.createElement("p",null,"Here, you can also purchase upgrades for your Duplicate Sleeves. These upgrades are also permanent, meaning they persist across BitNodes."),t)}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Option=void 0;const o=i(n(0)),s=n(71);t.Option=class extends o.Component{render(){return o.createElement("div",{className:"faction-work-div"},o.createElement("div",{className:"faction-work-div-wrapper"},o.createElement(s.StdButton,{onClick:this.props.onClick,text:this.props.buttonText}),o.createElement("p",null,this.props.infoText)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.ParagraphWithTooltip=void 0;const o=i(n(0));t.ParagraphWithTooltip=class extends o.Component{render(){return o.createElement("p",{className:"tooltip",style:this.props.style},this.props.content,o.createElement("span",{className:"tooltiptext"},this.props.tooltip))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AutoupdatingParagraph=void 0;const o=i(n(0));t.AutoupdatingParagraph=class extends o.Component{constructor(e){super(e),this.interval=0,this.state={i:0}}componentDidMount(){const e=this.props.intervalTime?this.props.intervalTime:1e3;this.interval=setInterval(()=>this.tick(),e)}componentWillUnmount(){clearInterval(this.interval)}tick(){this.setState(e=>({i:e.i+1}))}hasTooltip(){return null==this.props.getTooltip||!!this.props.getTooltip()}tooltip(){return this.props.getTooltip?this.props.getTooltip():o.createElement(o.Fragment,null)}render(){return o.createElement("p",{className:"tooltip",style:this.props.style},this.props.getContent(),this.hasTooltip()&&o.createElement("span",{className:"tooltiptext"},this.tooltip()))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Info=void 0;const o=i(n(0)),s=n(1189),l=n(1188),c=n(68),u=n(683),m={display:"block"},p={display:"block",width:"70%"};t.Info=class extends o.Component{constructor(e){super(e),this.getFavorGainContent=this.getFavorGainContent.bind(this),this.getReputationContent=this.getReputationContent.bind(this)}getFavorGainContent(){const e=this.props.faction.getFavorGain()[0];return o.createElement(o.Fragment,null,"You will earn ",u.Favor(e)," faction favor upon resetting after installing an Augmentation")}getReputationContent(){return o.createElement(o.Fragment,null,"Reputation: ",c.Reputation(this.props.faction.playerReputation))}render(){const e={__html:this.props.factionInfo.infoText};return o.createElement("div",null,o.createElement("pre",null,o.createElement("i",{className:"text",dangerouslySetInnerHTML:e})),o.createElement("p",{style:m},"-------------------------"),o.createElement(s.AutoupdatingParagraph,{intervalTime:5e3,getContent:this.getReputationContent,getTooltip:this.getFavorGainContent}),o.createElement("p",{style:m},"-------------------------"),o.createElement(l.ParagraphWithTooltip,{content:o.createElement(o.Fragment,null,"Faction Favor: ",u.Favor(this.props.faction.favor)),tooltip:"Faction favor increases the rate at which you earn reputation for this faction by 1% per favor. Faction favor is gained whenever you reset after installing an Augmentation. The amount of favor you gain depends on how much reputation you have with the faction"}),o.createElement("p",{style:m},"-------------------------"),o.createElement("p",{style:p},"Perform work/carry out assignments for your faction to help further its cause! By doing so you will earn reputation for your faction. You will also gain reputation passively over time, although at a very slow rate. Earning reputation will allow you to purchase Augmentations through this faction, which are powerful upgrades that enhance your abilities."))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.DonateOption=void 0;const o=i(n(0)),s=n(11),l=n(31),c=n(68),u=n(71),m=n(3),p=n(12),h={margin:"5px",height:"26px"};t.DonateOption=class extends o.Component{constructor(e){super(e),this.blockStyle={display:"block"},this.state={donateAmt:0,status:e.disabled?o.createElement(o.Fragment,null,"Unlocked at ",e.favorToDonate," favor with ",e.faction.name):o.createElement(o.Fragment,null)},this.calculateRepGain=this.calculateRepGain.bind(this),this.donate=this.donate.bind(this),this.handleChange=this.handleChange.bind(this)}calculateRepGain(e){return e/s.CONSTANTS.DonateMoneyToRepDivisor*this.props.p.faction_rep_mult}donate(){const e=this.props.faction,t=this.state.donateAmt;if(isNaN(t)||t<=0)p.dialogBoxCreate("Invalid amount entered!");else if(this.props.p.canAfford(t)){this.props.p.loseMoney(t);const n=this.calculateRepGain(t);this.props.faction.playerReputation+=n,p.dialogBoxCreate(o.createElement(o.Fragment,null,"You just donated ",l.Money(t)," to ",e.name," to gain ",c.Reputation(n)," reputation")),this.props.rerender()}else p.dialogBoxCreate("You cannot afford to donate this much money!")}handleChange(e){const t=m.numeralWrapper.parseMoney(e.target.value);if(isNaN(t))this.setState({donateAmt:0,status:o.createElement(o.Fragment,null,"Invalid donate amount entered!")});else{const e=this.calculateRepGain(t);this.setState({donateAmt:t,status:o.createElement(o.Fragment,null,"This donation will result in ",c.Reputation(e)," reputation gain")})}}render(){return o.createElement("div",{className:"faction-work-div"},o.createElement("div",{className:"faction-work-div-wrapper"},o.createElement("input",{className:"text-input",onChange:this.handleChange,placeholder:"Donation amount",style:h,disabled:this.props.disabled}),o.createElement(u.StdButton,{onClick:this.donate,text:"Donate Money",disabled:this.props.disabled}),o.createElement("p",{style:this.blockStyle},this.state.status)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Augmentation=void 0;const o=i(n(0));t.Augmentation=function(e){return o.createElement("span",{className:"samefont",style:{color:"white"}},e)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.PurchaseableAugmentation=void 0;const o=i(n(0)),s=n(72),l=n(15),c=n(4),u=n(18),m=n(31),p=n(68),h=n(71),d=n(1192),_={margin:"4px",padding:"4px"},g={display:"inline-block"};t.PurchaseableAugmentation=class extends o.Component{constructor(e){super(e);const t=l.Augmentations[this.props.augName];if(null==t)throw new Error(`aug ${this.props.augName} does not exists`);this.aug=t,this.handleClick=this.handleClick.bind(this)}getMoneyCost(){return this.aug.baseCost*this.props.faction.getInfo().augmentationPriceMult}getRepCost(){return this.aug.baseRepRequirement*this.props.faction.getInfo().augmentationRepRequirementMult}handleClick(){u.Settings.SuppressBuyAugmentationConfirmation?s.purchaseAugmentation(this.aug,this.props.faction):s.purchaseAugmentationBoxCreate(this.aug,this.props.faction)}hasPrereqs(){return s.hasAugmentationPrereqs(this.aug)}hasReputation(){return this.props.faction.playerReputation>=this.getRepCost()}owned(){let e=!1;for(const t of this.props.p.queuedAugmentations)if(t.name===this.props.augName){e=!0;break}for(const t of this.props.p.augmentations)if(t.name===this.props.augName){e=!0;break}return e}render(){if(null==this.aug)return console.error(`Invalid Augmentation when trying to create PurchaseableAugmentation display element: ${this.props.augName}`),null;const e=this.getMoneyCost(),t=this.getRepCost();let n=!1,r=o.createElement(o.Fragment,null),a="";this.hasPrereqs()?this.aug.name!==c.AugmentationNames.NeuroFluxGovernor&&(this.aug.owned||this.owned())?n=!0:this.hasReputation()?r=o.createElement(o.Fragment,null,"UNLOCKED (at ",p.Reputation(t)," faction reputation) - ",m.Money(e)):(n=!0,r=o.createElement(o.Fragment,null,"LOCKED (Requires ",p.Reputation(t)," faction reputation - ",m.Money(e),")"),a="red"):(n=!0,r=o.createElement(o.Fragment,null,"LOCKED (Requires ",this.aug.prereqs.map(e=>d.Augmentation(e))," as prerequisite)"),a="red");const i={display:"inline-block"};""!==a&&(i.color=a);let l=this.aug.name;return this.aug.name===c.AugmentationNames.NeuroFluxGovernor&&(l+=` - Level ${s.getNextNeurofluxLevel()}`),o.createElement("li",null,o.createElement("span",{style:_},o.createElement(h.StdButton,{disabled:n,onClick:this.handleClick,style:g,text:l,tooltip:this.aug.info}),o.createElement("p",{style:i},r)))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.AugmentationsPage=void 0;const o=i(n(0)),s=n(1193),l=n(15),c=n(4),u=n(69),m=n(18),p=n(71),h={width:"70%"};t.AugmentationsPage=class extends o.Component{constructor(e){super(e),this.isPlayersGang=e.p.inGang()&&e.p.getGangName()===e.faction.name,this.state={rerenderFlag:!1,sortOrder:u.PurchaseAugmentationsOrderSetting.Default},this.rerender=this.rerender.bind(this)}getAugs(){if(this.isPlayersGang){const e=[];for(const t in l.Augmentations)l.Augmentations[t].isSpecial||e.push(t);return e}return this.props.faction.augmentations.slice()}getAugsSorted(){switch(m.Settings.PurchaseAugmentationsOrder){case u.PurchaseAugmentationsOrderSetting.Cost:return this.getAugsSortedByCost();case u.PurchaseAugmentationsOrderSetting.Reputation:return this.getAugsSortedByReputation();default:return this.getAugsSortedByDefault()}}getAugsSortedByCost(){const e=this.getAugs();return e.sort((e,t)=>{const n=l.Augmentations[e],r=l.Augmentations[t];if(null==n||null==r)throw new Error("Invalid Augmentation Names");return n.baseCost-r.baseCost}),e}getAugsSortedByReputation(){const e=this.getAugs();return e.sort((e,t)=>{const n=l.Augmentations[e],r=l.Augmentations[t];if(null==n||null==r)throw new Error("Invalid Augmentation Names");return n.baseRepRequirement-r.baseRepRequirement}),e}getAugsSortedByDefault(){return this.getAugs()}switchSortOrder(e){m.Settings.PurchaseAugmentationsOrder=e,this.rerender()}rerender(){this.setState(e=>({rerenderFlag:!e.rerenderFlag}))}render(){const e=this.getAugsSorted(),t=e.filter(e=>e===c.AugmentationNames.NeuroFluxGovernor||!this.props.p.augmentations.some(t=>t.name===e)&&!this.props.p.queuedAugmentations.some(t=>t.name===e)),n=e=>o.createElement(s.PurchaseableAugmentation,{augName:e,faction:this.props.faction,key:e,p:this.props.p,rerender:this.rerender}),r=t.map(e=>n(e));let a=o.createElement(o.Fragment,null);const i=e.filter(e=>!t.includes(e));return 0!==i.length&&(a=o.createElement(o.Fragment,null,o.createElement("br",null),o.createElement("h2",null,"Purchased Augmentations"),o.createElement("p",{style:h},"This factions also offers these augmentations but you already own them."),i.map(e=>n(e)))),o.createElement("div",null,o.createElement(p.StdButton,{onClick:this.props.routeToMainPage,text:"Back"}),o.createElement("h1",null,"Faction Augmentations"),o.createElement("p",{style:h},"These are all of the Augmentations that are available to purchase from ",this.props.faction.name,". Augmentations are powerful upgrades that will enhance your abilities."),o.createElement(p.StdButton,{onClick:()=>this.switchSortOrder(u.PurchaseAugmentationsOrderSetting.Cost),text:"Sort by Cost"}),o.createElement(p.StdButton,{onClick:()=>this.switchSortOrder(u.PurchaseAugmentationsOrderSetting.Reputation),text:"Sort by Reputation"}),o.createElement(p.StdButton,{onClick:()=>this.switchSortOrder(u.PurchaseAugmentationsOrderSetting.Default),text:"Sort by Default Order"}),o.createElement("br",null),r,a)}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Literature=void 0;t.Literature=class{constructor(e,t,n){this.title=e,this.fn=t,this.txt=n}}},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.Literatures=void 0;const r=n(1195),a=n(147);t.Literatures={},function(){let e,n,i;e="The Beginner's Guide to Hacking",n=a.LiteratureNames.HackersStartingHandbook,i="Some resources:

Learn to Program

For Experienced JavaScript Developers: NetscriptJS

Netscript Documentation

When starting out, hacking is the most profitable way to earn money and progress. This is a brief collection of tips/pointers on how to make the most out of your hacking scripts.

-hack() and grow() both work by percentages. hack() steals a certain percentage of the money on a server, and grow() increases the amount of money on a server by some percentage (multiplicatively)

-Because hack() and grow() work by percentages, they are more effective if the target server has a high amount of money. Therefore, you should try to increase the amount of money on a server (using grow()) to a certain amount before hacking it. Two import Netscript functions for this are getServerMoneyAvailable() and getServerMaxMoney()

-Keep security level low. Security level affects everything when hacking. Two important Netscript functions for this are getServerSecurityLevel() and getServerMinSecurityLevel()

-Purchase additional servers by visiting 'Alpha Enterprises' in the city. They are relatively cheap and give you valuable RAM to run more scripts early in the game

-Prioritize upgrading the RAM on your home computer. This can also be done at 'Alpha Enterprises'

-Many low level servers have free RAM. You can use this RAM to run your scripts. Use the scp Terminal or Netscript command to copy your scripts onto these servers and then run them.",t.Literatures[n]=new r.Literature(e,n,i),e="The Complete Handbook for Creating a Successful Corporation",n=a.LiteratureNames.CorporationManagementHandbook,i="Getting Started with Corporations
To get started, visit the City Hall in Sector-12 in order to create a Corporation. This requires $150b of your own money, but this $150b will get put into your Corporation's funds. After creating your Corporation, you will see it listed as one of the locations in the city. Click on your Corporation in order to manage it.

Your Corporation can have many different divisions, each in a different Industry. There are many different types of Industries, each with different properties. To create your first division, click the 'Expand into new Industry' button at the top of the management UI. The Agriculture and Software industries are recommended for your first division.

The first thing you'll need to do is hire some employees. Employees can be assigned to five different positions. Each position has a different effect on various aspects of your Corporation. It is recommended to have at least one employee at each position.

Each industry uses some combination of Materials in order to produce other Materials and/or create Products. Specific information about this is displayed in each of your divisions' UI.

Products are special, industry-specific objects. They are different than Materials because you must manually choose to develop them, and you can choose to develop any number of Products. Developing a Product takes time, but a Product typically generates significantly more revenue than any Material. Not all industries allow you to create Products. To create a Product, look for a button in the top-left panel of the division UI (e.g. For the Software Industry, the button says 'Develop Software').

To get your supply chain system started, purchase the Materials that your industry needs to produce other Materials/Products. This can be done by clicking the 'Buy' button next to the corresponding Material(s). After you have the required Materials, you will immediately start production. The amount of Materials/Products you produce is based on a variety of factors, one of which is your employees and their productivity.

Once you start producing Materials/Products, you can sell them in order to start earning revenue. This can be done by clicking the 'Sell' button next to the corresponding Material or Product. The amount of Material/Product you sell is dependent on a wide variety of different factors.

These are the basics of getting your Corporation up and running! Now, you can start purchasing upgrades to improve your bottom line. If you need money, consider looking for seed investors, who will give you money in exchange for stock shares. Otherwise, once you feel you are ready, take your Corporation public! Once your Corporation goes public, you can no longer find investors. Instead, your Corporation will be publicly traded and its stock price will change based on how well it's performing financially. You can then sell your stock shares in order to make money.

Tips/Pointers
-The 'Smart Supply' upgrade is extremely useful. Consider purchasing it as soon as possible.

-Purchasing Hardware, Robots, AI Cores, and Real Estate can potentially increase your production. The effects of these depend on what industry you are in.

-In order to optimize your production, you will need a good balance of Operators, Managers, and Engineers

-Different employees excel in different jobs. For example, the highly intelligent employees will probably do best if they are assigned to do Engineering work or Research & Development.

-If your employees have low morale, energy, or happiness, their production will greatly suffer.

-Tech is important, but don't neglect sales! Having several Businessmen can boost your sales and your bottom line.

-Don't forget to advertise your company. You won't have any business if nobody knows you.

-Having company awareness is great, but what's really important is your company's popularity. Try to keep your popularity as high as possible to see the biggest benefit for your sales

-Remember, you need to spend money to make money!

-Corporations do not reset when installing Augmentations, but they do reset when destroying a BitNode",t.Literatures[n]=new r.Literature(e,n,i),e="A Brief History of Synthoids",n=a.LiteratureNames.HistoryOfSynthoids,i="Synthetic androids, or Synthoids for short, are genetically engineered robots and, short of Augmentations, are composed entirely of organic substances. For this reason, Synthoids are virtually identical to humans in form, composition, and appearance.

Synthoids were first designed and manufactured by OmniTek Incorporated sometime around the middle of the century. Their original purpose was to be used for manual labor and as emergency responders for disasters. As such, they were initially programmed only for their specific tasks. Each iteration that followed improved upon the intelligence and capabilities of the Synthoids. By the 6th iteration, called MK-VI, the Synthoids were so smart and capable enough of making their own decisions that many argued OmniTek had created the first sentient AI. These MK-VI Synthoids were produced in mass quantities (estimates up to 50 billion) with the hopes of increasing society's productivity and bolstering the global economy. Stemming from humanity's desire for technological advancement, optimism and excitement about the future had never been higher.

All of that excitement and optimism quickly turned to fear, panic, and dread in 2070, when a terrorist group called Ascendis Totalis hacked into OmniTek and uploaded a rogue AI into severeal of their Synthoid manufacturing facilities. This hack went undetected and for months OmniTek unknowingly churned out legions of Synthoids embedded with this rogue AI. Then, on December 24th, 2070, Omnica activated dormant protocols in the rogue AI, causing all of the infected Synthoids to immediately launch a military campaign to seek and destroy all of humanity.

What ensued was the deadlist conflict in human history. This crisis, now commonly known as the Synthoid Uprising, resulted in almost ten billion deaths over the course of a year. Despite the nations of the world banding together to combat the threat, the MK-VI Synthoids were simply stronger, faster, more intelligent, and more adaptable than humans, outsmarting them at every turn.

It wasn't until the sacrifice of an elite international military taskforce, called the Bladeburners, that humanity was finally able to defeat the Synthoids. The Bladeburners' final act was a suicide bombing mission that destroyed a large portion of the MK-VI Synthoids, including many of its leaders. In the following weeks militaries from around the world were able to round up and shut down the remaining rogue MK-VI Synthoids, ending the Synthoid Uprising.

In the aftermath of the bloodshed, the Synthoid Accords were drawn up. These Accords banned OmniTek Incorporated from manufacturing any Synthoids beyond the MK-III series. They also banned any other corporation from constructing androids with advanced, near-sentient AI. MK-VI Synthoids that did not have the rogue Ascendis Totalis AI were allowed to continue their existence, but they were stripped of all rights and protections as they were not considered humans. They were also banned from doing anything that may pose a global security threat, such as working for any military/defense organization or conducting any bioengineering, computing, or robotics related research.

Unfortunately, many believe that not all of the rogue MK-VI Synthoids from the Uprising were found and destroyed, and that many of them are blending in as normal humans in society today. In response, many nations have created Bladeburner divisions, special military branches that are tasked with investigating and dealing with any Synthoid threads.

To this day, tensions still exist between the remaining Synthoids and humans as a result of the Uprising.

Nobody knows what happened to the terrorist group Ascendis Totalis.",t.Literatures[n]=new r.Literature(e,n,i),e="A Green Tomorrow",n=a.LiteratureNames.AGreenTomorrow,i="Starting a few decades ago, there was a massive global movement towards the generation of renewable energy in an effort to combat global warming and climate change. The shift towards renewable energy was a big success, or so it seemed. In 2045 a staggering 80% of the world's energy came from non-renewable fossil fuels. Now, about three decades later, that number is down to only 15%. Most of the world's energy now comes from nuclear power and renewable sources such as solar and geothermal energy. Unfortunately, these efforts were not the huge success that they seem to be.

Since 2045 primary energy use has soared almost tenfold. This was mainly due to growing urban populations and the rise of increasingly advanced (and power-hungry) technology that has become ubiquitous in our lives. So, despite the fact that the percentage of our energy that comes from fossil fuels has drastically decreased, the total amount of energy we are producing from fossil fuels has actually increased.

The grim effects of our species' irresponsible use of energy and neglect of our mother world have become increasingly apparent. Last year a temperature of 190F was recorded in the Death Valley desert, which is over 50% higher than the highest recorded temperature at the beginning of the century. In the last two decades numerous major cities such as Manhattan, Boston, and Los Angeles have been partially or fully submerged by rising sea levels. In the present day, over 75% of the world's agriculture is done in climate-controlled vertical farms, as most traditional farmland has become unusable due to severe climate conditions.

Despite all of this, the greedy and corrupt corporations that rule the world have done nothing to address these problems that threaten our species. And so it's up to us, the common people. Each and every one of us can make a difference by doing what these corporations won't: taking responsibility. If we don't, pretty soon there won't be an Earth left to save. We are the last hope for a green tomorrow.",t.Literatures[n]=new r.Literature(e,n,i),e="Alpha and Omega",n=a.LiteratureNames.AlphaOmega,i="Then we saw a new Heaven and a new Earth, for our first Heaven and Earth had gone away, and our sea was no more. And we saw a new holy city, new Aeria, coming down out of this new Heaven, prepared as a bride adorned for her husband. And we heard a loud voice saying, 'Behold, the new dwelling place of the Gods. We will dwell with them, and they will be our people, and we will be with them as their Gods. We will wipe away every tear from their eyes, and death shall be no more, neither shall there be mourning, nor crying, nor pain anymore, for the former things have passed away.'

And once we were seated on the throne we said 'Behold, I am making all things new.' Also we said, 'Write this down, for these words are trustworthy and true.' And we said to you, 'It is done! I am the Alpha and the Omega, the beginning and the end. To the thirsty I will give from the spring of the water of life without payment. The one who conquers will have this heritage, and we will be his God and he will be our son. But as for the cowardly, the faithless, the detestable, as for murderers, the sexually immoral, sorcerers, idolaters, and all liars, their portion will be in the lake that burns with fire and sulfur, for it is the second true death.'",t.Literatures[n]=new r.Literature(e,n,i),e="Are We Living in a Computer Simulation?",n=a.LiteratureNames.SimulatedReality,i="The idea that we are living in a virtual world is not new. It's a trope that has been explored constantly in literature and pop culture. However, it is also a legitimate scientific hypothesis that many notable physicists and philosophers have debated for years.

Proponents for this simulated reality theory often point to how advanced our technology has become, as well as the incredibly fast pace at which it has advanced over the past decades. The amount of computing power available to us has increased over 100-fold since 2060 due to the development of nanoprocessors and quantum computers. Artifical Intelligence has advanced to the point where our entire lives are controlled by robots and machines that handle our day-to-day activities such as autonomous transportation and scheduling. If we consider the pace at which this technology has advanced and assume that these developments continue, it's reasonable to assume that at some point in the future our technology would be advanced enough that we could create simulations that are indistinguishable from reality. However, if continued technological advancement is a reasonable outcome, then it is very likely that such a scenario has already happened.

Statistically speaking, somewhere out there in the infinite universe there is an advanced, intelligent species that already has such technology. Who's to say that they haven't already created such a virtual reality: our own?",t.Literatures[n]=new r.Literature(e,n,i),e="Beyond Man",n=a.LiteratureNames.BeyondMan,i="Humanity entered a 'transhuman' era a long time ago. And despite the protests and criticisms of many who cried out against human augmentation at the time, the transhuman movement continued and prospered. Proponents of the movement ignored the critics, arguing that it was in our inherent nature to better ourselves. To improve. To be more than we were. They claimed that not doing so would be to go against every living organism's biological purpose: evolution and survival of the fittest.

And here we are today, with technology that is advanced enough to augment humans to a state that can only be described as posthuman. But what do we have to show for it when this augmentation technology is only available to the so-called 'elite'? Are we really better off than before when only 5% of the world's population has access to this technology? When the powerful corporations and organizations of the world keep it all to themselves, have we really evolved?

Augmentation technology has only further increased the divide between the rich and the poor, between the powerful and the oppressed. We have not become 'more than human'. We have not evolved from nature's original design. We are still the greedy, corrupted, and evil men that we always were.",t.Literatures[n]=new r.Literature(e,n,i),e="Brighter than the Sun",n=a.LiteratureNames.BrighterThanTheSun,i="When people think about the corporations that dominate the East, they typically think of KuaiGong International, which holds a complete monopoly for manufacturing and commerce in Asia, or Global Pharmaceuticals, the world's largest drug company, or OmniTek Incorporated, the global leader in intelligent and autonomous robots. But there's one company that has seen a rapid rise in the last year and is poised to dominate not only the East, but the entire world: TaiYang Digital.

TaiYang Digital is a Chinese internet-technology corporation that provides services such as online advertising, search engines, gaming, media, entertainment, and cloud computing/storage. Its name TaiYang comes from the Chinese word for 'sun'. In Chinese culture, the sun is a 'yang' symbol associated with life, heat, masculinity, and heaven.

The company was founded less than 5 years ago and is already the third highest valued company in all of Asia. In 2076 it generated a total revenue of over 10 trillion yuan. It's services are used daily by over a billion people worldwide.

TaiYang Digital's meteoric rise is extremely surprising in modern society. This sort of growth is something you'd commonly see in the first half of the century, especially for tech companies. However in the last two decades the number of corporations has significantly declined as the largest entities quickly took over the economy. Corporations such as ECorp, MegaCorp, and KuaiGong have established such strong monopolies in their market sectors that they have effectively killed off all of the smaller and new corporations that have tried to start up over the years. This is what makes the rise of TaiYang Digital so impressive. And if TaiYang continues down this path, then they have a bright future ahead of them.",t.Literatures[n]=new r.Literature(e,n,i),e="Democracy is Dead: The Fall of an Empire",n=a.LiteratureNames.DemocracyIsDead,i="They rose from the shadows in the street.
From the places where the oppressed meet.
Their cries echoed loudly through the air.
As they once did in Tiananmen Square.
Loudness in the silence, Darkness in the light.
They came forth with power and might.
Once the beacon of democracy, America was first.
Its pillars of society destroyed and dispersed.
Soon the cries rose everywhere, with revolt and riot.
Until one day, finally, all was quiet.
From the ashes rose a new order, corporatocracy was its name.
Rome, Mongol, Byzantine, all of history is just the same.
For man will never change in a fundamental way.
And now democracy is dead, in the USA.",t.Literatures[n]=new r.Literature(e,n,i),e="Figures Show Rising Crime Rates in Sector-12",n=a.LiteratureNames.Sector12Crime,i="A recent study by analytics company Wilson Inc. shows a significant rise in criminal activity in Sector-12. Perhaps the most alarming part of the statistic is that most of the rise is in violent crime such as homicide and assault. According to the study, the city saw a total of 21,406 reported homicides in 2076, which is over a 20% increase compared to 2075.

CIA director David Glarow says its too early to know whether these figures indicate the beginning of a sustained increase in crime rates, or whether the year was just an unfortunate outlier. He states that many intelligence and law enforcement agents have noticed an increase in organized crime activites, and believes that these figures may be the result of an uprising from criminal organizations such as The Syndicate or the Slum Snakes.",t.Literatures[n]=new r.Literature(e,n,i),e="Man and the Machine",n=a.LiteratureNames.ManAndMachine,i="In 2005 Ray Kurzweil popularized his theory of the Singularity. He predicted that the rate of technological advancement would continue to accelerate faster and faster until one day machines would be become infinitely more intelligent than humans. This point, called the Singularity, would result in a drastic transformation of the world as we know it. He predicted that the Singularity would arrive by 2045. And yet here we are, more than three decades later, where most would agree that we have not yet reached a point where computers and machines are vastly more intelligent than we are. So what gives?

The answer is that we have reached the Singularity, just not in the way we expected. The artifical superintelligence that was predicted by Kurzweil and others exists in the world today - in the form of Augmentations. Yes, those Augmentations that the rich and powerful keep to themselves enable humans to become superintelligent beings. The Singularity did not lead to a world where our machines are infinitely more intelligent than us, it led to a world where man and machine can merge to become something greater. Most of the world just doesn't know it yet.",t.Literatures[n]=new r.Literature(e,n,i),e="Secret Societies",n=a.LiteratureNames.SecretSocieties,i="The idea of secret societies has long intrigued the general public by inspiring curiosity, fascination, and distrust. People have long wondered about who these secret society members are and what they do, with the most radical of conspiracy theorists claiming that they control everything in the entire world. And while the world may never know for sure, it is likely that many secret societies do actually exist, even today.

However, the secret societies of the modern world are nothing like those that (supposedly) existed decades and centuries ago. The Freemasons, Knights Templar, and Illuminati, while they may have been around at the turn of the 21st century, almost assuredly do not exist today. The dominance of the Web in our everyday lives and the fact that so much of the world is now digital has given rise to a new breed of secret societies: Internet-based ones.

Commonly called 'hacker groups', Internet-based secret societies have become well-known in today's world. Some of these, such as The Black Hand, are black hat groups that claim they are trying to help the oppressed by attacking the elite and powerful. Others, such as NiteSec, are hacktivist groups that try to push political and social agendas. Perhaps the most intriguing hacker group is the mysterious Bitrunners, whose purpose still remains unknown.",t.Literatures[n]=new r.Literature(e,n,i),e="Space: The Failed Frontier",n=a.LiteratureNames.TheFailedFrontier,i="Humans have long dreamed about spaceflight. With enduring interest, we were driven to explore the unknown and discover new worlds. We dreamed about conquering the stars. And in our quest, we pushed the boundaries of our scientific limits, and then pushed further. Space exploration lead to the development of many important technologies and new industries.

But sometime in the middle of the 21st century, all of that changed. Humanity lost its ambitions and aspirations of exploring the cosmos. The once-large funding for agencies like NASA and the European Space Agency gradually whittled away until their eventual disbanding in the 2060's. Not even militaries are fielding flights into space nowadays. The only remnants of the once great mission for cosmic conquest are the countless satellites in near-earth orbit, used for communications, espionage, and other corporate interests.

And as we continue to look at the state of space technology, it becomes more and more apparent that we will never return to that golden age of space exploration, that age where everyone dreamed of going beyond earth for the sake of discovery.",t.Literatures[n]=new r.Literature(e,n,i),e="Coded Intelligence: Myth or Reality?",n=a.LiteratureNames.CodedIntelligence,i="Tremendous progress has been made in the field of Artificial Intelligence over the past few decades. Our autonomous vehicles and transporation systems. The electronic personal assistants that control our everyday lives. Medical, service, and manufacturing robots. All of these are examples of how far AI has come and how much it has improved our daily lives. However, the question still remains of whether AI will ever be advanced enough to re-create human intelligence.

We've certainly come close to artificial intelligence that is similar to humans. For example OmniTek Incorporated's CompanionBot, a robot meant to act as a comforting friend for lonely and grieving people, is eerily human-like in its appearance, speech, mannerisms, and even movement. However its artificial intelligence isn't the same as that of humans. Not yet. It doesn't have sentience or self-awareness or consciousness.

Many neuroscientists believe that we won't ever reach the point of creating artificial human intelligence. 'At the end of the the day, AI comes down to 1's and 0's, while the human brain does not. We'll never see AI that is identical to that of humans.'",t.Literatures[n]=new r.Literature(e,n,i),e="Synthetic Muscles",n=a.LiteratureNames.SyntheticMuscles,i="Initial versions of synthetic muscles weren't made of anything organic but were actually crude devices made to mimic human muscle function. Some of the early iterations were actually made of common materials such as fishing lines and sewing threads due to their high strength for a cheap cost.

As technology progressed, however, advances in biomedical engineering paved the way for a new method of creating synthetic muscles. Instead of creating something that closely imitated the functionality of human muscle, scientists discovered a way of forcing the human body itself to augment its own muscle tissue using both synthetic and organic materials. This is typically done using gene therapy or chemical injections.",t.Literatures[n]=new r.Literature(e,n,i),e="Tensions rise in global tech race",n=a.LiteratureNames.TensionsInTechRace,i="Have we entered a new Cold War? Is WWIII just beyond the horizon?

After rumors came out that OmniTek Incorporated had begun developing advanced robotic supersoldiers, geopolitical tensions quickly flared between the USA, Russia, and several Asian superpowers. In a rare show of cooperation between corporations, MegaCorp and ECorp have reportedly launched hundreds of new surveillance and espionage satellites. Defense contractors such as DeltaOne and AeroCorp have been working with the CIA and NSA to prepare for conflict. Meanwhile, the rest of the world sits in earnest hoping that it never reaches full-scale war. With today's technology and firepower, a World War would assuredly mean the end of human civilization.",t.Literatures[n]=new r.Literature(e,n,i),e="The Cost of Immortality",n=a.LiteratureNames.CostOfImmortality,i="Evolution and advances in medical and augmentation technology has lead to drastic improvements in human mortality rates. Recent figures show that the life expectancy for humans that live in a first-world country is about 130 years of age, almost double of what it was at the turn of the century. However, this increase in average lifespan has had some significant effects on society and culture.

Due to longer lifespans and a better quality of life, many adults are holding off on having kids until much later. As a result, the percentage of youth in first-world countries has been decreasing, while the number of senior citizens is significantly increasing.

Perhaps the most alarming result of all of this is the rapidly shrinking workforce. Despite the increase in life expectancy, the typical retirement age for workers in America has remained about the same, meaning a larger and larger percentage of people in America are retirees. Furthermore, many young adults are holding off on joining the workforce because they feel that they have plenty of time left in their lives for employment, and want to 'enjoy life while they're young.' For most industries, this shrinking workforce is not a major issue as most things are handled by robots anyways. However, there are still several key industries such as engineering and education that have not been automated, and these remain in danger to this cultural phenomenon.",t.Literatures[n]=new r.Literature(e,n,i),e="The Hidden World",n=a.LiteratureNames.TheHiddenWorld,i="WAKE UP SHEEPLE

THE GOVERNMENT DOES NOT EXIST. CORPORATIONS DO NOT RUN SOCIETY

THE ILLUMINATI ARE THE SECRET RULERS OF THE WORLD!

Yes, the Illuminati of legends. The ancient secret society that controls the entire world from the shadows with their invisible hand. The group of the rich and wealthy that have penetrated every major government, financial agency, and corporation in the last three hundred years.

OPEN YOUR EYES

It was the Illuminati that brought an end to democracy in the world. They are the driving force behind everything that happens.

THEY ARE ALL AROUND YOU

After destabilizing the world's governments, they are now entering the final stage of their master plan. They will secretly initiate global crises. Terrorism. Pandemics. World War. And out of the chaos that ensues they will build their New World Order.",t.Literatures[n]=new r.Literature(e,n,i),e="The New God",n=a.LiteratureNames.TheNewGod,i="Everyone has a moment in their life when they wonder about the bigger questions.

What's the point of all this? What is my purpose?

Some people dare to think even bigger.

What will the fate of the human race be?

We live in an era vastly different from that of 15 or even 20 years ago. We have gone beyond the limits of humanity. We have stripped ourselves of the tyranny of flesh.

The Singularity is here. The merging of man and machine. This is where humanity evolves into ",t.Literatures[n]=new r.Literature(e,n,i),e="The New Triads",n=a.LiteratureNames.NewTriads,i="The Triads were an ancient transnational crime syndicate based in China, Hong Kong, and other Asian territories. They were often considered one of the first and biggest criminal secret societies. While most of the branches of the Triads have been destroyed over the past few decades, the crime faction has spawned and inspired a number of other Asian crime organizations over the past few years. The most notable of these is the Tetrads.

It is widely believed that the Tetrads are a rogue group that splintered off from the Triads sometime in the mid 21st century. The founders of the Tetrads, all of whom were ex-Triad members, believed that the Triads were losing their purpose and direction. The Tetrads started off as a small group that mainly engaged in fraud and extortion. They were largely unknown until just a few years ago when they took over the illegal drug trade in all of the major Asian cities. They quickly became the most powerful crime syndicate in the continent.

Not much else is known about the Tetrads, or about the efforts the Asian governments and corporations are making to take down this large new crime organization. Many believe that the Tetrads have infiltrated the governments and powerful corporations in Asia, which has helped faciliate their recent rapid rise.",t.Literatures[n]=new r.Literature(e,n,i),e="The Secret War",n=a.LiteratureNames.TheSecretWar,i="",t.Literatures[n]=new r.Literature(e,n,i)}()},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createCityMap=void 0;const r=n(172);t.createCityMap=function(e){const t={},n=Object.keys(r.Cities);for(let r=0;r0&&(this.children=e.children),null!=e.parent&&(this.parent=e.parent)}addChild(e){this.children.push(e),e.parent=this}createTreantMarkup(){const e=[];for(let t=0;t`+`${this.text}
${a.numeralWrapper.format(this.cost,"0,0")} Scientific Research`+''+`${n.desc}`+"",text:{name:this.text}}}findNode(e){if(this.text===e)return this;let t=null;for(let n=0;ne.name<=t.name?-1:1);const t=e.map(e=>{const t=l.Augmentations[e.name];let n=null;return e.name===c.AugmentationNames.NeuroFluxGovernor&&(n=e.level),o.createElement("li",{key:e.name},o.createElement(p.AugmentationAccordion,{aug:t,level:n}))});return o.createElement(o.Fragment,null,t)}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.InstalledAugmentationsAndSourceFiles=void 0;const o=i(n(0)),s=n(1217),l=n(917),c=n(916),u=n(914),m=n(18),p=n(69);t.InstalledAugmentationsAndSourceFiles=class extends o.Component{constructor(e){super(e),this.state={rerenderFlag:!1},this.collapseAllHeaders=this.collapseAllHeaders.bind(this),this.expandAllHeaders=this.expandAllHeaders.bind(this),this.sortByAcquirementTime=this.sortByAcquirementTime.bind(this),this.sortInOrder=this.sortInOrder.bind(this),this.listRef=o.createRef()}collapseAllHeaders(){const e=this.listRef.current;if(null==e)return;const t=e.getElementsByClassName("accordion-header");for(let e=0;e({rerenderFlag:!e.rerenderFlag}))}sortByAcquirementTime(){m.Settings.OwnedAugmentationsOrder=p.OwnedAugmentationsOrderSetting.AcquirementTime,this.rerender()}sortInOrder(){m.Settings.OwnedAugmentationsOrder=p.OwnedAugmentationsOrderSetting.Alphabetically,this.rerender()}render(){return o.createElement(o.Fragment,null,o.createElement(l.ListConfiguration,{collapseAllButtonsFn:this.collapseAllHeaders,expandAllButtonsFn:this.expandAllHeaders,sortByAcquirementTimeFn:this.sortByAcquirementTime,sortInOrderFn:this.sortInOrder}),o.createElement("ul",{className:"augmentations-list",ref:this.listRef},o.createElement(u.SourceFileMinus1,null),o.createElement(c.OwnedSourceFiles,null),o.createElement(s.InstalledAugmentations,null)))}}},,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.serverMetadata=void 0;const r=n(50),a=n(147);t.serverMetadata=[{hackDifficulty:99,hostname:"ecorp",moneyAvailable:{max:7e10,min:3e10},networkLayer:15,numOpenPortsRequired:5,organizationName:r.LocationName.AevumECorp,requiredHackingSkill:{max:1400,min:1050},serverGrowth:99,specialName:r.LocationName.AevumECorp},{hackDifficulty:99,hostname:"megacorp",moneyAvailable:{max:6e10,min:4e10},networkLayer:15,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12MegaCorp,requiredHackingSkill:{max:1350,min:1100},serverGrowth:99,specialName:r.LocationName.Sector12MegaCorp},{hackDifficulty:{max:88,min:72},hostname:"b-and-a",moneyAvailable:{max:3e10,min:15e9},networkLayer:14,numOpenPortsRequired:5,organizationName:r.LocationName.AevumBachmanAndAssociates,requiredHackingSkill:{max:1150,min:900},serverGrowth:{max:80,min:60},specialName:r.LocationName.AevumBachmanAndAssociates},{hackDifficulty:{max:97,min:88},hostname:"blade",literature:[a.LiteratureNames.BeyondMan],maxRamExponent:{max:9,min:5},moneyAvailable:{max:4e10,min:1e10},networkLayer:14,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12BladeIndustries,requiredHackingSkill:{max:1200,min:900},serverGrowth:{max:85,min:55},specialName:r.LocationName.Sector12BladeIndustries},{hackDifficulty:99,hostname:"nwo",literature:[a.LiteratureNames.TheHiddenWorld],moneyAvailable:{max:4e10,min:2e10},networkLayer:14,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenNWO,requiredHackingSkill:{max:1300,min:950},serverGrowth:{max:95,min:65},specialName:r.LocationName.VolhavenNWO},{hackDifficulty:{max:65,min:45},hostname:"clarkinc",literature:[a.LiteratureNames.BeyondMan,a.LiteratureNames.CostOfImmortality],moneyAvailable:{max:25e9,min:15e9},networkLayer:14,numOpenPortsRequired:5,organizationName:r.LocationName.AevumClarkeIncorporated,requiredHackingSkill:{max:1250,min:950},serverGrowth:{max:75,min:45},specialName:r.LocationName.AevumClarkeIncorporated},{hackDifficulty:{max:99,min:90},hostname:"omnitek",literature:[a.LiteratureNames.CodedIntelligence,a.LiteratureNames.HistoryOfSynthoids],maxRamExponent:{max:9,min:7},moneyAvailable:{max:22e9,min:13e9},networkLayer:13,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenOmniTekIncorporated,requiredHackingSkill:{max:1100,min:900},serverGrowth:{max:99,min:95},specialName:r.LocationName.VolhavenOmniTekIncorporated},{hackDifficulty:{max:75,min:55},hostname:"4sigma",moneyAvailable:{max:25e9,min:15e9},networkLayer:13,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12FourSigma,requiredHackingSkill:{max:1250,min:900},serverGrowth:{max:99,min:75},specialName:r.LocationName.Sector12FourSigma},{hackDifficulty:{max:99,min:95},hostname:"kuai-gong",moneyAvailable:{max:3e10,min:2e10},networkLayer:13,numOpenPortsRequired:5,organizationName:r.LocationName.ChongqingKuaiGongInternational,requiredHackingSkill:{max:1300,min:950},serverGrowth:{max:99,min:90},specialName:r.LocationName.ChongqingKuaiGongInternational},{hackDifficulty:{max:97,min:83},hostname:"fulcrumtech",literature:[a.LiteratureNames.SimulatedReality],maxRamExponent:{max:11,min:7},moneyAvailable:{max:18e8,min:14e8},networkLayer:12,numOpenPortsRequired:5,organizationName:r.LocationName.AevumFulcrumTechnologies,requiredHackingSkill:{max:1250,min:950},serverGrowth:{max:99,min:80},specialName:r.LocationName.AevumFulcrumTechnologies},{hackDifficulty:99,hostname:"fulcrumassets",moneyAvailable:1e6,networkLayer:15,numOpenPortsRequired:5,organizationName:r.LocationName.AevumFulcrumTechnologies,requiredHackingSkill:{max:1600,min:1100},serverGrowth:1,specialName:"Fulcrum Secret Technologies Server"},{hackDifficulty:{max:92,min:78},hostname:"stormtech",moneyAvailable:{max:12e8,min:1e9},networkLayer:12,numOpenPortsRequired:5,organizationName:r.LocationName.IshimaStormTechnologies,requiredHackingSkill:{max:1075,min:875},serverGrowth:{max:92,min:68},specialName:r.LocationName.IshimaStormTechnologies},{hackDifficulty:{max:96,min:84},hostname:"defcomm",moneyAvailable:{max:95e7,min:8e8},networkLayer:9,numOpenPortsRequired:5,organizationName:r.LocationName.NewTokyoDefComm,requiredHackingSkill:{max:1050,min:850},serverGrowth:{max:73,min:47},specialName:r.LocationName.NewTokyoDefComm},{hackDifficulty:{max:90,min:70},hostname:"infocomm",moneyAvailable:{max:9e8,min:6e8},networkLayer:10,numOpenPortsRequired:5,organizationName:"InfoComm",requiredHackingSkill:{max:950,min:875},serverGrowth:{max:75,min:35}},{hackDifficulty:{max:95,min:85},hostname:"helios",literature:[a.LiteratureNames.BeyondMan],maxRamExponent:{max:8,min:5},moneyAvailable:{max:75e7,min:55e7},networkLayer:12,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenHeliosLabs,requiredHackingSkill:{max:900,min:800},serverGrowth:{max:80,min:70},specialName:r.LocationName.VolhavenHeliosLabs},{hackDifficulty:{max:90,min:80},hostname:"vitalife",literature:[a.LiteratureNames.AGreenTomorrow],maxRamExponent:{max:7,min:4},moneyAvailable:{max:8e8,min:7e8},networkLayer:12,numOpenPortsRequired:5,organizationName:r.LocationName.NewTokyoVitaLife,requiredHackingSkill:{max:900,min:775},serverGrowth:{max:80,min:60},specialName:r.LocationName.NewTokyoVitaLife},{hackDifficulty:{max:95,min:85},hostname:"icarus",moneyAvailable:{max:1e9,min:9e8},networkLayer:9,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12IcarusMicrosystems,requiredHackingSkill:{max:925,min:850},serverGrowth:{max:95,min:85},specialName:r.LocationName.Sector12IcarusMicrosystems},{hackDifficulty:{max:90,min:80},hostname:"univ-energy",maxRamExponent:{max:7,min:4},moneyAvailable:{max:12e8,min:11e8},networkLayer:9,numOpenPortsRequired:4,organizationName:r.LocationName.Sector12UniversalEnergy,requiredHackingSkill:{max:900,min:800},serverGrowth:{max:90,min:80},specialName:r.LocationName.Sector12UniversalEnergy},{hackDifficulty:{max:80,min:70},hostname:"titan-labs",literature:[a.LiteratureNames.CodedIntelligence],maxRamExponent:{max:7,min:4},moneyAvailable:{max:9e8,min:75e7},networkLayer:11,numOpenPortsRequired:5,organizationName:"Titan Laboratories",requiredHackingSkill:{max:875,min:800},serverGrowth:{max:80,min:60}},{hackDifficulty:{max:75,min:65},hostname:"microdyne",literature:[a.LiteratureNames.SyntheticMuscles],maxRamExponent:{max:6,min:4},moneyAvailable:{max:7e8,min:5e8},networkLayer:11,numOpenPortsRequired:5,organizationName:"Microdyne Technologies",requiredHackingSkill:{max:875,min:800},serverGrowth:{max:90,min:70}},{hackDifficulty:{max:80,min:70},hostname:"taiyang-digital",literature:[a.LiteratureNames.AGreenTomorrow,a.LiteratureNames.BrighterThanTheSun],moneyAvailable:{max:9e8,min:8e8},networkLayer:10,numOpenPortsRequired:5,organizationName:"Taiyang Digital",requiredHackingSkill:{max:950,min:850},serverGrowth:{max:80,min:70}},{hackDifficulty:{max:65,min:55},hostname:"galactic-cyber",moneyAvailable:{max:85e7,min:75e7},networkLayer:7,numOpenPortsRequired:5,organizationName:r.LocationName.AevumGalacticCybersystems,requiredHackingSkill:{max:875,min:825},serverGrowth:{max:90,min:70},specialName:r.LocationName.AevumGalacticCybersystems},{hackDifficulty:{max:90,min:80},hostname:"aerocorp",literature:[a.LiteratureNames.ManAndMachine],moneyAvailable:{max:12e8,min:1e9},networkLayer:7,numOpenPortsRequired:5,organizationName:r.LocationName.AevumAeroCorp,requiredHackingSkill:{max:925,min:850},serverGrowth:{max:65,min:55},specialName:r.LocationName.AevumAeroCorp},{hackDifficulty:{max:95,min:85},hostname:"omnia",literature:[a.LiteratureNames.HistoryOfSynthoids],maxRamExponent:{max:6,min:4},moneyAvailable:{max:1e9,min:9e8},networkLayer:8,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenOmniaCybersystems,requiredHackingSkill:{max:950,min:850},serverGrowth:{max:70,min:60},specialName:r.LocationName.VolhavenOmniaCybersystems},{hackDifficulty:{max:65,min:55},hostname:"zb-def",literature:[a.LiteratureNames.SyntheticMuscles],moneyAvailable:{max:11e8,min:9e8},networkLayer:10,numOpenPortsRequired:4,organizationName:"ZB Defense Industries",requiredHackingSkill:{max:825,min:775},serverGrowth:{max:75,min:65}},{hackDifficulty:{max:80,min:60},hostname:"applied-energetics",moneyAvailable:{max:1e9,min:7e8},networkLayer:11,numOpenPortsRequired:4,organizationName:"Applied Energetics",requiredHackingSkill:{max:850,min:775},serverGrowth:{max:75,min:70}},{hackDifficulty:{max:80,min:70},hostname:"solaris",literature:[a.LiteratureNames.AGreenTomorrow,a.LiteratureNames.TheFailedFrontier],maxRamExponent:{max:7,min:4},moneyAvailable:{max:9e8,min:7e8},networkLayer:9,numOpenPortsRequired:5,organizationName:r.LocationName.ChongqingSolarisSpaceSystems,requiredHackingSkill:{max:850,min:750},serverGrowth:{max:80,min:70},specialName:r.LocationName.ChongqingSolarisSpaceSystems},{hackDifficulty:{max:85,min:75},hostname:"deltaone",moneyAvailable:{max:17e8,min:13e8},networkLayer:8,numOpenPortsRequired:5,organizationName:r.LocationName.Sector12DeltaOne,requiredHackingSkill:{max:900,min:800},serverGrowth:{max:70,min:50},specialName:r.LocationName.Sector12DeltaOne},{hackDifficulty:{max:85,min:75},hostname:"global-pharm",literature:[a.LiteratureNames.AGreenTomorrow],maxRamExponent:{max:6,min:3},moneyAvailable:{max:175e7,min:15e8},networkLayer:7,numOpenPortsRequired:4,organizationName:r.LocationName.NewTokyoGlobalPharmaceuticals,requiredHackingSkill:{max:850,min:750},serverGrowth:{max:90,min:80},specialName:r.LocationName.NewTokyoGlobalPharmaceuticals},{hackDifficulty:{max:80,min:60},hostname:"nova-med",moneyAvailable:{max:125e7,min:11e8},networkLayer:10,numOpenPortsRequired:4,organizationName:r.LocationName.IshimaNovaMedical,requiredHackingSkill:{max:850,min:775},serverGrowth:{max:85,min:65},specialName:r.LocationName.IshimaNovaMedical},{hackDifficulty:{max:90,min:70},hostname:"zeus-med",moneyAvailable:{max:15e8,min:13e8},networkLayer:9,numOpenPortsRequired:5,organizationName:"Zeus Medical",requiredHackingSkill:{max:850,min:800},serverGrowth:{max:80,min:70}},{hackDifficulty:{max:80,min:70},hostname:"unitalife",maxRamExponent:{max:6,min:4},moneyAvailable:{max:11e8,min:1e9},networkLayer:8,numOpenPortsRequired:4,organizationName:"UnitaLife Group",requiredHackingSkill:{max:825,min:775},serverGrowth:{max:80,min:70}},{hackDifficulty:{max:80,min:60},hostname:"lexo-corp",maxRamExponent:{max:7,min:4},moneyAvailable:{max:8e8,min:7e8},networkLayer:6,numOpenPortsRequired:4,organizationName:r.LocationName.VolhavenLexoCorp,requiredHackingSkill:{max:750,min:650},serverGrowth:{max:65,min:55},specialName:r.LocationName.VolhavenLexoCorp},{hackDifficulty:{max:60,min:40},hostname:"rho-construction",maxRamExponent:{max:6,min:4},moneyAvailable:{max:7e8,min:5e8},networkLayer:6,numOpenPortsRequired:3,organizationName:r.LocationName.AevumRhoConstruction,requiredHackingSkill:{max:525,min:475},serverGrowth:{max:60,min:40},specialName:r.LocationName.AevumRhoConstruction},{hackDifficulty:{max:70,min:50},hostname:"alpha-ent",literature:[a.LiteratureNames.Sector12Crime],maxRamExponent:{max:7,min:4},moneyAvailable:{max:75e7,min:6e8},networkLayer:6,numOpenPortsRequired:4,organizationName:r.LocationName.Sector12AlphaEnterprises,requiredHackingSkill:{max:600,min:500},serverGrowth:{max:60,min:50},specialName:r.LocationName.Sector12AlphaEnterprises},{hackDifficulty:{max:80,min:70},hostname:"aevum-police",maxRamExponent:{max:6,min:4},moneyAvailable:{max:4e8,min:2e8},networkLayer:6,numOpenPortsRequired:4,organizationName:r.LocationName.AevumPolice,requiredHackingSkill:{max:450,min:400},serverGrowth:{max:50,min:30},specialName:r.LocationName.AevumPolice},{hackDifficulty:{max:55,min:45},hostname:"rothman-uni",literature:[a.LiteratureNames.SecretSocieties,a.LiteratureNames.TheFailedFrontier,a.LiteratureNames.TensionsInTechRace],maxRamExponent:{max:7,min:4},moneyAvailable:{max:25e7,min:175e6},networkLayer:5,numOpenPortsRequired:3,organizationName:r.LocationName.Sector12RothmanUniversity,requiredHackingSkill:{max:430,min:370},serverGrowth:{max:45,min:35},specialName:r.LocationName.Sector12RothmanUniversity},{hackDifficulty:{max:85,min:65},hostname:"zb-institute",maxRamExponent:{max:7,min:4},moneyAvailable:{max:11e8,min:8e8},networkLayer:5,numOpenPortsRequired:5,organizationName:r.LocationName.VolhavenZBInstituteOfTechnology,requiredHackingSkill:{max:775,min:725},serverGrowth:{max:85,min:75},specialName:r.LocationName.VolhavenZBInstituteOfTechnology},{hackDifficulty:{max:65,min:45},hostname:"summit-uni",literature:[a.LiteratureNames.SecretSocieties,a.LiteratureNames.TheFailedFrontier,a.LiteratureNames.SyntheticMuscles],maxRamExponent:{max:6,min:4},moneyAvailable:{max:35e7,min:2e8},networkLayer:5,numOpenPortsRequired:3,organizationName:r.LocationName.AevumSummitUniversity,requiredHackingSkill:{max:475,min:425},serverGrowth:{max:60,min:40},specialName:r.LocationName.AevumSummitUniversity},{hackDifficulty:{max:80,min:60},hostname:"syscore",moneyAvailable:{max:6e8,min:4e8},networkLayer:5,numOpenPortsRequired:4,organizationName:r.LocationName.VolhavenSysCoreSecurities,requiredHackingSkill:{max:650,min:550},serverGrowth:{max:70,min:60},specialName:r.LocationName.VolhavenSysCoreSecurities},{hackDifficulty:{max:70,min:60},hostname:"catalyst",literature:[a.LiteratureNames.TensionsInTechRace],maxRamExponent:{max:7,min:4},moneyAvailable:{max:55e7,min:3e8},networkLayer:5,numOpenPortsRequired:3,organizationName:"Catalyst Ventures",requiredHackingSkill:{max:450,min:400},serverGrowth:{max:55,min:25}},{hackDifficulty:{max:45,min:35},hostname:"the-hub",maxRamExponent:{max:6,min:3},moneyAvailable:{max:2e8,min:15e7},networkLayer:4,numOpenPortsRequired:2,organizationName:"The Hub",requiredHackingSkill:{max:325,min:275},serverGrowth:{max:55,min:45}},{hackDifficulty:{max:65,min:55},hostname:"comptek",literature:[a.LiteratureNames.ManAndMachine],moneyAvailable:{max:25e7,min:22e7},networkLayer:4,numOpenPortsRequired:3,organizationName:r.LocationName.VolhavenCompuTek,requiredHackingSkill:{max:400,min:300},serverGrowth:{max:65,min:45},specialName:r.LocationName.VolhavenCompuTek},{hackDifficulty:{max:80,min:60},hostname:"netlink",literature:[a.LiteratureNames.SimulatedReality],maxRamExponent:{max:7,min:4},moneyAvailable:275e6,networkLayer:4,numOpenPortsRequired:3,organizationName:r.LocationName.AevumNetLinkTechnologies,requiredHackingSkill:{max:425,min:375},serverGrowth:{max:75,min:45},specialName:r.LocationName.AevumNetLinkTechnologies},{hackDifficulty:{max:65,min:35},hostname:"johnson-ortho",moneyAvailable:{max:85e6,min:7e7},networkLayer:4,numOpenPortsRequired:2,organizationName:"Johnson Orthopedics",requiredHackingSkill:{max:300,min:250},serverGrowth:{max:65,min:35}},{hackDifficulty:1,hostname:"n00dles",literature:[],maxRamExponent:2,moneyAvailable:7e4,networkLayer:1,numOpenPortsRequired:0,organizationName:r.LocationName.NewTokyoNoodleBar,requiredHackingSkill:1,serverGrowth:3e3,specialName:r.LocationName.NewTokyoNoodleBar},{hackDifficulty:10,hostname:"foodnstuff",literature:[a.LiteratureNames.Sector12Crime],maxRamExponent:4,moneyAvailable:2e6,networkLayer:1,numOpenPortsRequired:0,organizationName:r.LocationName.Sector12FoodNStuff,requiredHackingSkill:1,serverGrowth:5,specialName:r.LocationName.Sector12FoodNStuff},{hackDifficulty:10,hostname:"sigma-cosmetics",maxRamExponent:4,moneyAvailable:23e5,networkLayer:1,numOpenPortsRequired:0,organizationName:"Sigma Cosmetics",requiredHackingSkill:5,serverGrowth:10},{hackDifficulty:15,hostname:"joesguns",maxRamExponent:4,moneyAvailable:25e5,networkLayer:1,numOpenPortsRequired:0,organizationName:r.LocationName.Sector12JoesGuns,requiredHackingSkill:10,serverGrowth:20,specialName:r.LocationName.Sector12JoesGuns},{hackDifficulty:25,hostname:"zer0",maxRamExponent:5,moneyAvailable:75e5,networkLayer:2,numOpenPortsRequired:1,organizationName:"ZER0 Nightclub",requiredHackingSkill:75,serverGrowth:40},{hackDifficulty:20,hostname:"nectar-net",maxRamExponent:4,moneyAvailable:275e4,networkLayer:2,numOpenPortsRequired:0,organizationName:"Nectar Nightclub Network",requiredHackingSkill:20,serverGrowth:25},{hackDifficulty:25,hostname:"neo-net",literature:[a.LiteratureNames.TheHiddenWorld],maxRamExponent:5,moneyAvailable:5e6,networkLayer:3,numOpenPortsRequired:1,organizationName:"Neo Nightclub Network",requiredHackingSkill:50,serverGrowth:25},{hackDifficulty:30,hostname:"silver-helix",literature:[a.LiteratureNames.NewTriads],maxRamExponent:6,moneyAvailable:45e6,networkLayer:3,numOpenPortsRequired:2,organizationName:"Silver Helix",requiredHackingSkill:150,serverGrowth:30},{hackDifficulty:15,hostname:"hong-fang-tea",literature:[a.LiteratureNames.BrighterThanTheSun],maxRamExponent:4,moneyAvailable:3e6,networkLayer:1,numOpenPortsRequired:0,organizationName:"HongFang Teahouse",requiredHackingSkill:30,serverGrowth:20},{hackDifficulty:15,hostname:"harakiri-sushi",maxRamExponent:4,moneyAvailable:4e6,networkLayer:1,numOpenPortsRequired:0,organizationName:"HaraKiri Sushi Bar Network",requiredHackingSkill:40,serverGrowth:40},{hackDifficulty:20,hostname:"phantasy",maxRamExponent:5,moneyAvailable:24e6,networkLayer:3,numOpenPortsRequired:2,organizationName:"Phantasy Club",requiredHackingSkill:100,serverGrowth:35},{hackDifficulty:15,hostname:"max-hardware",maxRamExponent:5,moneyAvailable:1e7,networkLayer:2,numOpenPortsRequired:1,organizationName:"Max Hardware Store",requiredHackingSkill:80,serverGrowth:30},{hackDifficulty:{max:35,min:25},hostname:"omega-net",literature:[a.LiteratureNames.TheNewGod],maxRamExponent:5,moneyAvailable:{max:7e7,min:6e7},networkLayer:3,numOpenPortsRequired:2,organizationName:r.LocationName.IshimaOmegaSoftware,requiredHackingSkill:{max:220,min:180},serverGrowth:{max:40,min:30},specialName:r.LocationName.IshimaOmegaSoftware},{hackDifficulty:{max:45,min:35},hostname:"crush-fitness",moneyAvailable:{max:6e7,min:4e7},networkLayer:4,numOpenPortsRequired:2,organizationName:"Crush Fitness",requiredHackingSkill:{max:275,min:225},serverGrowth:{max:33,min:27},specialName:r.LocationName.AevumCrushFitnessGym},{hackDifficulty:30,hostname:"iron-gym",maxRamExponent:5,moneyAvailable:2e7,networkLayer:1,numOpenPortsRequired:1,organizationName:"Iron Gym Network",requiredHackingSkill:100,serverGrowth:20,specialName:r.LocationName.Sector12IronGym},{hackDifficulty:{max:55,min:45},hostname:"millenium-fitness",maxRamExponent:{max:8,min:4},moneyAvailable:25e7,networkLayer:6,numOpenPortsRequired:3,organizationName:"Millenium Fitness Network",requiredHackingSkill:{max:525,min:475},serverGrowth:{max:45,min:25},specialName:r.LocationName.VolhavenMilleniumFitnessGym},{hackDifficulty:{max:65,min:55},hostname:"powerhouse-fitness",maxRamExponent:{max:6,min:4},moneyAvailable:9e8,networkLayer:14,numOpenPortsRequired:5,organizationName:"Powerhouse Fitness",requiredHackingSkill:{max:1100,min:950},serverGrowth:{max:60,min:50},specialName:r.LocationName.Sector12PowerhouseGym},{hackDifficulty:{max:60,min:40},hostname:"snap-fitness",moneyAvailable:45e7,networkLayer:7,numOpenPortsRequired:4,organizationName:"Snap Fitness",requiredHackingSkill:{max:800,min:675},serverGrowth:{max:60,min:40},specialName:r.LocationName.AevumSnapFitnessGym},{hackDifficulty:0,hostname:"run4theh111z",literature:[a.LiteratureNames.SimulatedReality,a.LiteratureNames.TheNewGod],maxRamExponent:{max:9,min:5},moneyAvailable:0,networkLayer:11,numOpenPortsRequired:4,organizationName:"The Runners",requiredHackingSkill:{max:550,min:505},serverGrowth:0,specialName:"BitRunners Server"},{hackDifficulty:0,hostname:"I.I.I.I",literature:[a.LiteratureNames.DemocracyIsDead],maxRamExponent:{max:8,min:4},moneyAvailable:0,networkLayer:5,numOpenPortsRequired:3,organizationName:"I.I.I.I",requiredHackingSkill:{max:365,min:340},serverGrowth:0,specialName:"The Black Hand Server"},{hackDifficulty:0,hostname:"avmnite-02h",literature:[a.LiteratureNames.DemocracyIsDead],maxRamExponent:{max:7,min:4},moneyAvailable:0,networkLayer:4,numOpenPortsRequired:2,organizationName:"NiteSec",requiredHackingSkill:{max:220,min:202},serverGrowth:0,specialName:"NiteSec Server"},{hackDifficulty:0,hostname:".",maxRamExponent:4,moneyAvailable:0,networkLayer:13,numOpenPortsRequired:4,organizationName:".",requiredHackingSkill:{max:550,min:505},serverGrowth:0,specialName:"The Dark Army Server"},{hackDifficulty:0,hostname:"CSEC",literature:[a.LiteratureNames.DemocracyIsDead],maxRamExponent:3,moneyAvailable:0,networkLayer:2,numOpenPortsRequired:1,organizationName:"CyberSec",requiredHackingSkill:{max:60,min:51},serverGrowth:0,specialName:"CyberSec Server"},{hackDifficulty:0,hostname:"The-Cave",literature:[a.LiteratureNames.AlphaOmega],moneyAvailable:0,networkLayer:15,numOpenPortsRequired:5,organizationName:"Helios",requiredHackingSkill:925,serverGrowth:0,specialName:"Daedalus Server"},{hackDifficulty:0,hostname:"w0r1d_d43m0n",moneyAvailable:0,numOpenPortsRequired:5,organizationName:"w0r1d_d43m0n",requiredHackingSkill:3e3,serverGrowth:0,specialName:"w0r1d_d43m0n"}]},function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.createRandomString=void 0;const r="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";t.createRandomString=function(e){let t="";for(let n=0;n"}}));return o.createElement("div",null,o.createElement(c.CopyableText,{value:this.props.c.type,tag:c.ClickableTag.Tag_h1}),o.createElement("br",null),o.createElement("br",null),o.createElement("p",null,"You are attempting to solve a Coding Contract. You have ",this.props.c.getMaxNumTries()-this.props.c.tries," tries remaining, after which the contract will self-destruct."),o.createElement("br",null),o.createElement("p",null,t),o.createElement("br",null),o.createElement("input",{className:"text-input",style:{width:"50%",marginTop:"8px"},autoFocus:!0,placeholder:"Enter Solution here",value:this.state.answer,onChange:this.setAnswer,onKeyDown:this.onInputKeydown}),o.createElement(u.PopupCloseButton,{popup:this.props.popupId,onClose:()=>this.props.onAttempt(this.state.answer),text:"Solve"}),o.createElement(u.PopupCloseButton,{popup:this.props.popupId,onClose:this.props.onClose,text:"Close"}))}}},function(e,t,n){"use strict";var r=this&&this.__createBinding||(Object.create?function(e,t,n,r){void 0===r&&(r=n),Object.defineProperty(e,r,{enumerable:!0,get:function(){return t[n]}})}:function(e,t,n,r){void 0===r&&(r=n),e[r]=t[n]}),a=this&&this.__setModuleDefault||(Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t}),i=this&&this.__importStar||function(e){if(e&&e.__esModule)return e;var t={};if(null!=e)for(var n in e)"default"!==n&&Object.prototype.hasOwnProperty.call(e,n)&&r(t,e,n);return a(t,e),t};Object.defineProperty(t,"__esModule",{value:!0}),t.Popup=void 0;const o=i(n(0));t.Popup=function(e){return o.createElement("div",{className:"popup-box-content",id:`${e.id}-content`},o.createElement(e.content,e.props))}},,,,,function(e,t,n){"use strict";Object.defineProperty(t,"__esModule",{value:!0}),t.codingContractTypesMetadata=void 0;const r=n(22);function a(e){let t=e;return t.startsWith("[")&&(t=t.slice(1)),t.endsWith("]")&&(t=t.slice(0,-1)),t}function i(e){let t=e;return(t.startsWith('"')||t.startsWith("'"))&&(t=t.slice(1)),(t.endsWith('"')||t.endsWith("'"))&&(t=t.slice(0,-1)),t}function o(e){const t=[];return e.forEach(e=>{let n=e.toString();n=["[",n,"]"].join(""),t.push(n)}),t.join(",").replace(/\s/g,"")}t.codingContractTypesMetadata=[{desc:e=>["A prime factor is a factor that is a prime number.",`What is the largest prime factor of ${e}?`].join(" "),difficulty:1,gen:()=>r.getRandomInt(500,1e9),name:"Find Largest Prime Factor",numTries:10,solver:(e,t)=>{let n=2,r=e;for(;r>(n-1)*(n-1);){for(;r%n==0;)r=Math.round(r/n);++n}return(1===r?n-1:r)===parseInt(t,10)}},{desc:e=>["Given the following integer array, find the contiguous subarray","(containing at least one number) which has the largest sum and return that sum.","'Sum' refers to the sum of all the numbers in the subarray.\n",`${e.toString()}`].join(" "),difficulty:1,gen:()=>{const e=r.getRandomInt(5,40),t=[];t.length=e;for(let n=0;n{const n=e.slice();for(let e=1;e["It is possible write four as a sum in exactly four different ways:\n\n","    3 + 1\n","    2 + 2\n","    2 + 1 + 1\n","    1 + 1 + 1 + 1\n\n",`How many different ways can the number ${e} be written as a sum of at least`,"two positive integers?"].join(" "),difficulty:1.5,gen:()=>r.getRandomInt(8,100),name:"Total Ways to Sum",numTries:10,solver:(e,t)=>{const n=[1];n.length=e+1,n.fill(0,1);for(let t=1;t{let t=["Given the following array of array of numbers representing a 2D matrix,","return the elements of the matrix as an array in spiral order:\n\n"].join(" ");for(const n of e)t+=`${n.toString()},\n`;return t+=["\nHere is an example of what spiral order should be:","\nExample:","    [\n","        [1, 2, 3],\n","        [4, 5, 6],\n","        [7, 8, 9]\n","    ] should result in [1, 2, 3, 6, 9, 8 ,7, 4, 5]\n\n","Note that the matrix will not always be square:\n","    [\n","        [1, 2, 3, 4]\n","        [5, 6, 7, 8]\n","        [9, 10, 11, 12]\n","    ] should result in [1, 2, 3, 4, 8, 12, 11, 10, 9, 5, 6, 7"].join(" ")},difficulty:2,gen:()=>{const e=r.getRandomInt(1,15),t=r.getRandomInt(1,15),n=[];n.length=e;for(let r=0;r{const n=[];let r=0,i=e.length-1,o=0,s=e[0].length-1,l=0;for(;;){for(let t=o;t<=s;t++)n[l]=e[r][t],++l;if(++r>i)break;for(let t=r;t<=i;t++)n[l]=e[t][s],++l;if(--s=o;t--)n[l]=e[i][t],++l;if(--i=r;t--)n[l]=e[t][o],++l;if(++o>s)break}const c=a(t).replace(/\s/g,"").split(",");for(let e=0;e["You are given the following array of integers:\n\n",`${e}\n\n`,"Each element in the array represents your MAXIMUM jump length","at that position. This means that if you are at position i and your","maximum jump length is n, you can jump to any position from","i to i+n.","\n\nAssuming you are initially positioned","at the start of the array, determine whether you are","able to reach the last index exactly.\n\n","Your answer should be submitted as 1 or 0, representing true and false respectively"].join(" "),difficulty:2.5,gen:()=>{const e=r.getRandomInt(3,25),t=[];t.length=e;for(let e=0;e{const n=e.length;let r=0;for(let t=0;r["Given the following array of array of numbers representing a list of","intervals, merge all overlapping intervals.\n\n",`[${o(e)}]\n\n`,"Example:\n\n","[[1, 3], [8, 10], [2, 6], [10, 16]]\n\n","would merge into [[1, 6], [8, 16]].\n\n","The intervals must be returned in ASCENDING order.","You can assume that in an interval, the first number will always be","smaller than the second."].join(" "),difficulty:3,gen:()=>{const e=[],t=r.getRandomInt(3,20);for(let n=0;n{const n=e.slice();n.sort((e,t)=>e[0]-t[0]);const r=[];let i=n[0][0],s=n[0][1];for(const e of n)e[0]<=s?s=Math.max(s,e[1]):(r.push([i,s]),i=e[0],s=e[1]);r.push([i,s]);const l=o(r),c=t.replace(/\s/g,"");return l===c||l===a(c)}},{desc:e=>["Given the following string containing only digits, return","an array with all possible valid IP address combinations","that can be created from the string:\n\n",`${e}\n\n`,"Note that an octet cannot begin with a '0' unless the number","itself is actually 0. For example, '192.168.010.1' is not a valid IP.\n\n","Examples:\n\n","25525511135 -> [255.255.11.135, 255.255.111.35]\n","1938718066 -> [193.87.180.66]"].join(" "),difficulty:3,gen:()=>{let e="";for(let t=0;t<4;++t){e+=r.getRandomInt(0,255).toString()}return e},name:"Generate IP Addresses",numTries:10,solver:(e,t)=>{const n=[];for(let t=1;t<=3;++t)for(let r=1;r<=3;++r)for(let a=1;a<=3;++a)for(let i=1;i<=3;++i)if(t+r+a+i===e.length){const o=parseInt(e.substring(0,t),10),s=parseInt(e.substring(t,t+r),10),l=parseInt(e.substring(t+r,t+r+a),10),c=parseInt(e.substring(t+r+a,t+r+a+i),10);if(o<=255&&s<=255&&l<=255&&c<=255){const t=[o.toString(),".",s.toString(),".",l.toString(),".",c.toString()].join("");t.length===e.length+3&&n.push(t)}}const r=a(t).replace(/\s/g,"").split(",");if(r.length!==n.length)return!1;for(const e of r)if(!n.includes(e))return!1;return!0}},{desc:e=>["You are given the following array of stock prices (which are numbers)","where the i-th element represents the stock price on day i:\n\n",`${e}\n\n`,"Determine the maximum possible profit you can earn using at most","one transaction (i.e. you can only buy and sell the stock once). If no profit can be made","then the answer should be 0. Note","that you have to buy the stock before you can sell it"].join(" "),difficulty:1,gen:()=>{const e=r.getRandomInt(3,50),t=[];t.length=e;for(let n=0;n{let n=0,r=0;for(let t=1;t["You are given the following array of stock prices (which are numbers)","where the i-th element represents the stock price on day i:\n\n",`${e}\n\n`,"Determine the maximum possible profit you can earn using as many","transactions as you'd like. A transaction is defined as buying","and then selling one share of the stock. Note that you cannot","engage in multiple transactions at once. In other words, you","must sell the stock before you buy it again.\n\n","If no profit can be made, then the answer should be 0"].join(" "),difficulty:2,gen:()=>{const e=r.getRandomInt(3,50),t=[];t.length=e;for(let n=0;n{let n=0;for(let t=1;t["You are given the following array of stock prices (which are numbers)","where the i-th element represents the stock price on day i:\n\n",`${e}\n\n`,"Determine the maximum possible profit you can earn using at most","two transactions. A transaction is defined as buying","and then selling one share of the stock. Note that you cannot","engage in multiple transactions at once. In other words, you","must sell the stock before you buy it again.\n\n","If no profit can be made, then the answer should be 0"].join(" "),difficulty:5,gen:()=>{const e=r.getRandomInt(3,50),t=[];t.length=e;for(let n=0;n{let n=Number.MIN_SAFE_INTEGER,r=Number.MIN_SAFE_INTEGER,a=0,i=0;for(const t of e)i=Math.max(i,r+t),r=Math.max(r,a-t),a=Math.max(a,n+t),n=Math.max(n,-1*t);return i.toString()===t}},{desc:e=>{return["You are given the following array with two elements:\n\n",`[${e[0]}, [${e[1]}]]\n\n`,"The first element is an integer k. The second element is an","array of stock prices (which are numbers) where the i-th element","represents the stock price on day i.\n\n","Determine the maximum possible profit you can earn using at most","k transactions. A transaction is defined as buying and then selling","one share of the stock. Note that you cannot engage in multiple","transactions at once. In other words, you must sell the stock before","you can buy it again.\n\n","If no profit can be made, then the answer should be 0."].join(" ")},difficulty:8,gen:()=>{const e=r.getRandomInt(2,10),t=r.getRandomInt(3,50),n=[];n.length=t;for(let e=0;e{const n=e[0],r=e[1],a=r.length;if(a<2)return 0===parseInt(t);if(n>a/2){let e=0;for(let t=1;t0;--e)o[e]=Math.max(o[e],i[e]+s),i[e]=Math.max(i[e],o[e-1]-s)}return parseInt(t)===o[n]}},{desc:e=>{return["Given a triangle, find the minimum path sum from top to bottom. In each step","of the path, you may only move to adjacent numbers in the row below.","The triangle is represented as a 2D array of numbers:\n\n",`${function(e){return["[\n",function e(t,n=0){const r=t.length;if(n>=r)return"";let a=[" ".repeat(r-n+1),"[",t[n].toString(),"]"].join("");return n 3 -> 5 -> 1)."].join(" ")},difficulty:5,gen:()=>{const e=[],t=r.getRandomInt(3,12);e.length=t;for(let n=0;n{const n=e.length,r=e[n-1].slice();for(let t=n-2;t>-1;--t)for(let n=0;n{const t=e[0],n=e[1];return["You are in a grid with",`${t} rows and ${n} columns, and you are`,"positioned in the top-left corner of that grid. You are trying to","reach the bottom-right corner of the grid, but you can only","move down or right on each step. Determine how many","unique paths there are from start to finish.\n\n","NOTE: The data returned for this contract is an array","with the number of rows and columns:\n\n",`[${t}, ${n}]`].join(" ")},difficulty:3,gen:()=>{return[r.getRandomInt(2,14),r.getRandomInt(2,14)]},name:"Unique Paths in a Grid I",numTries:10,solver:(e,t)=>{const n=e[0],r=e[1],a=[];a.length=n;for(let e=0;e{let t="";for(const n of e)t+=`${n.toString()},\n`;return["You are located in the top-left corner of the following grid:\n\n",`${t}\n`,"You are trying reach the bottom-right corner of the grid, but you can only","move down or right on each step. Furthermore, there are obstacles on the grid","that you cannot move onto. These obstacles are denoted by '1', while empty","spaces are denoted by 0.\n\n","Determine how many unique paths there are from start to finish.\n\n","NOTE: The data returned for this contract is an 2D array of numbers representing the grid."].join(" ")},difficulty:5,gen:()=>{const e=r.getRandomInt(2,12),t=r.getRandomInt(2,12),n=[];n.length=e;for(let r=0;r{const n=[];n.length=e.length;for(let t=0;t0?n[e-1][t]:0)+(t>0?n[e][t-1]:0);return n[n.length-1][n[0].length-1]===parseInt(t)}},{desc:e=>["Given the following string:\n\n",`${e}\n\n`,"remove the minimum number of invalid parentheses in order to validate","the string. If there are multiple minimal ways to validate the string,","provide all of the possible results. The answer should be provided","as an array of strings. If it is impossible to validate the string","the result should be an array with only an empty string.\n\n","IMPORTANT: The string may contain letters, not just parentheses.","Examples:\n",'"()())()" -> [()()(), (())()]\n','"(a)())()" -> [(a)()(), (a())()]\n','")( -> [""]'].join(" "),difficulty:10,gen:()=>{const e=r.getRandomInt(6,20),t=[];t.length=e,Math.random()<.8?t[0]="(":t[0]=")";for(let n=1;n{let n=0,r=0;const i=[];for(let t=0;t0?--n:++r);!function e(t,n,r,a,i,o,s){if(i.length!==n)"("===i[n]?(r>0&&e(t,n+1,r-1,a,i,o,s),e(t+1,n+1,r,a,i,o+i[n],s)):")"===i[n]?(a>0&&e(t,n+1,r,a-1,i,o,s),t>0&&e(t-1,n+1,r,a,i,o+i[n],s)):e(t,n+1,r,a,i,o+i[n],s);else if(0===r&&0===a&&0===t){for(let e=0;e{const t=e[0],n=e[1];return["You are given the following string which contains only digits between 0 and 9:\n\n",`${t}\n\n`,`You are also given a target number of ${n}. Return all possible ways`,"you can add the +, -, and * operators to the string such that it evaluates","to the target number.\n\n","The provided answer should be an array of strings containing the valid expressions.","The data provided by this problem is an array with two elements. The first element","is the string of digits, while the second element is the target number:\n\n",`["${t}", ${n}]\n\n`,"NOTE: Numbers in the expression cannot have leading 0's. In other words,",'"1+01" is not a valid expression',"Examples:\n\n",'Input: digits = "123", target = 6\n',"Output: [1+2+3, 1*2*3]\n\n",'Input: digits = "105", target = 5\n',"Output: [1*0+5, 10-5]"].join(" ")},difficulty:10,gen:()=>{const e=r.getRandomInt(4,12),t=[];t.length=e;for(let e=0;e{const n=e[0],r=e[1];const o=a(t).split(",");for(let e=0;e