123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793 |
- var isNumeric = /^-?(?:\d+(?:\.\d*)?|\.\d+)(?:e[+-]?\d+)?$/i,
- mathceil = Math.ceil,
- mathfloor = Math.floor,
- bignumberError = '[BigNumber Error] ',
- tooManyDigits = bignumberError + 'Number primitive has more than 15 significant digits: ',
- BASE = 1e14,
- LOG_BASE = 14,
- MAX_SAFE_INTEGER = 0x1fffffffffffff,
-
- POWS_TEN = [1, 10, 100, 1e3, 1e4, 1e5, 1e6, 1e7, 1e8, 1e9, 1e10, 1e11, 1e12, 1e13],
- SQRT_BASE = 1e7,
-
-
-
- MAX = 1E9;
- function clone(configObject) {
- var div, convertBase, parseNumeric,
- P = BigNumber.prototype = { constructor: BigNumber, toString: null, valueOf: null },
- ONE = new BigNumber(1),
-
-
-
-
- DECIMAL_PLACES = 20,
-
-
-
-
-
-
-
-
-
-
-
- ROUNDING_MODE = 4,
-
-
-
- TO_EXP_NEG = -7,
-
-
- TO_EXP_POS = 21,
-
-
-
- MIN_EXP = -1e7,
-
-
-
- MAX_EXP = 1e7,
-
- CRYPTO = false,
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- MODULO_MODE = 1,
-
-
- POW_PRECISION = 0,
-
- FORMAT = {
- decimalSeparator: '.',
- groupSeparator: ',',
- groupSize: 3,
- secondaryGroupSize: 0,
- fractionGroupSeparator: '\xA0',
- fractionGroupSize: 0
- },
-
-
-
- ALPHABET = '0123456789abcdefghijklmnopqrstuvwxyz';
-
-
-
- function BigNumber(n, b) {
- var alphabet, c, caseChanged, e, i, isNum, len, str,
- x = this;
-
- if (!(x instanceof BigNumber)) {
-
-
-
- return new BigNumber(n, b);
- }
- if (b == null) {
-
- if (n instanceof BigNumber) {
- x.s = n.s;
- x.e = n.e;
- x.c = (n = n.c) ? n.slice() : n;
- return;
- }
- isNum = typeof n == 'number';
- if (isNum && n * 0 == 0) {
-
- x.s = 1 / n < 0 ? (n = -n, -1) : 1;
-
- if (n === ~~n) {
- for (e = 0, i = n; i >= 10; i /= 10, e++);
- x.e = e;
- x.c = [n];
- return;
- }
- str = n + '';
- } else {
- if (!isNumeric.test(str = n + '')) return parseNumeric(x, str, isNum);
- x.s = str.charCodeAt(0) == 45 ? (str = str.slice(1), -1) : 1;
- }
-
- if ((e = str.indexOf('.')) > -1) str = str.replace('.', '');
-
- if ((i = str.search(/e/i)) > 0) {
-
- if (e < 0) e = i;
- e += +str.slice(i + 1);
- str = str.substring(0, i);
- } else if (e < 0) {
-
- e = str.length;
- }
- } else {
-
- intCheck(b, 2, ALPHABET.length, 'Base');
- str = n + '';
-
-
- if (b == 10) {
- x = new BigNumber(n instanceof BigNumber ? n : str);
- return round(x, DECIMAL_PLACES + x.e + 1, ROUNDING_MODE);
- }
- isNum = typeof n == 'number';
- if (isNum) {
-
- if (n * 0 != 0) return parseNumeric(x, str, isNum, b);
- x.s = 1 / n < 0 ? (str = str.slice(1), -1) : 1;
-
- if (BigNumber.DEBUG && str.replace(/^0\.0*|\./, '').length > 15) {
- throw Error
- (tooManyDigits + n);
- }
-
- isNum = false;
- } else {
- x.s = str.charCodeAt(0) === 45 ? (str = str.slice(1), -1) : 1;
- }
- alphabet = ALPHABET.slice(0, b);
- e = i = 0;
-
-
- for (len = str.length; i < len; i++) {
- if (alphabet.indexOf(c = str.charAt(i)) < 0) {
- if (c == '.') {
-
- if (i > e) {
- e = len;
- continue;
- }
- } else if (!caseChanged) {
-
- if (str == str.toUpperCase() && (str = str.toLowerCase()) ||
- str == str.toLowerCase() && (str = str.toUpperCase())) {
- caseChanged = true;
- i = -1;
- e = 0;
- continue;
- }
- }
- return parseNumeric(x, n + '', isNum, b);
- }
- }
- str = convertBase(str, b, 10, x.s);
-
- if ((e = str.indexOf('.')) > -1) str = str.replace('.', '');
- else e = str.length;
- }
-
- for (i = 0; str.charCodeAt(i) === 48; i++);
-
- for (len = str.length; str.charCodeAt(--len) === 48;);
- str = str.slice(i, ++len);
- if (str) {
- len -= i;
-
- if (isNum && BigNumber.DEBUG &&
- len > 15 && (n > MAX_SAFE_INTEGER || n !== mathfloor(n))) {
- throw Error
- (tooManyDigits + (x.s * n));
- }
- e = e - i - 1;
-
- if (e > MAX_EXP) {
-
- x.c = x.e = null;
-
- } else if (e < MIN_EXP) {
-
- x.c = [x.e = 0];
- } else {
- x.e = e;
- x.c = [];
-
-
-
- i = (e + 1) % LOG_BASE;
- if (e < 0) i += LOG_BASE;
- if (i < len) {
- if (i) x.c.push(+str.slice(0, i));
- for (len -= LOG_BASE; i < len;) {
- x.c.push(+str.slice(i, i += LOG_BASE));
- }
- str = str.slice(i);
- i = LOG_BASE - str.length;
- } else {
- i -= len;
- }
- for (; i--; str += '0');
- x.c.push(+str);
- }
- } else {
-
- x.c = [x.e = 0];
- }
- }
-
- BigNumber.clone = clone;
- BigNumber.ROUND_UP = 0;
- BigNumber.ROUND_DOWN = 1;
- BigNumber.ROUND_CEIL = 2;
- BigNumber.ROUND_FLOOR = 3;
- BigNumber.ROUND_HALF_UP = 4;
- BigNumber.ROUND_HALF_DOWN = 5;
- BigNumber.ROUND_HALF_EVEN = 6;
- BigNumber.ROUND_HALF_CEIL = 7;
- BigNumber.ROUND_HALF_FLOOR = 8;
- BigNumber.EUCLID = 9;
-
- BigNumber.config = BigNumber.set = function (obj) {
- var p, v;
- if (obj != null) {
- if (typeof obj == 'object') {
-
-
- if (obj.hasOwnProperty(p = 'DECIMAL_PLACES')) {
- v = obj[p];
- intCheck(v, 0, MAX, p);
- DECIMAL_PLACES = v;
- }
-
-
- if (obj.hasOwnProperty(p = 'ROUNDING_MODE')) {
- v = obj[p];
- intCheck(v, 0, 8, p);
- ROUNDING_MODE = v;
- }
-
-
-
-
- if (obj.hasOwnProperty(p = 'EXPONENTIAL_AT')) {
- v = obj[p];
- if (isArray(v)) {
- intCheck(v[0], -MAX, 0, p);
- intCheck(v[1], 0, MAX, p);
- TO_EXP_NEG = v[0];
- TO_EXP_POS = v[1];
- } else {
- intCheck(v, -MAX, MAX, p);
- TO_EXP_NEG = -(TO_EXP_POS = v < 0 ? -v : v);
- }
- }
-
-
-
- if (obj.hasOwnProperty(p = 'RANGE')) {
- v = obj[p];
- if (isArray(v)) {
- intCheck(v[0], -MAX, -1, p);
- intCheck(v[1], 1, MAX, p);
- MIN_EXP = v[0];
- MAX_EXP = v[1];
- } else {
- intCheck(v, -MAX, MAX, p);
- if (v) {
- MIN_EXP = -(MAX_EXP = v < 0 ? -v : v);
- } else {
- throw Error
- (bignumberError + p + ' cannot be zero: ' + v);
- }
- }
- }
-
-
-
- if (obj.hasOwnProperty(p = 'CRYPTO')) {
- v = obj[p];
- if (v === !!v) {
- if (v) {
- if (typeof crypto != 'undefined' && crypto &&
- (crypto.getRandomValues || crypto.randomBytes)) {
- CRYPTO = v;
- } else {
- CRYPTO = !v;
- throw Error
- (bignumberError + 'crypto unavailable');
- }
- } else {
- CRYPTO = v;
- }
- } else {
- throw Error
- (bignumberError + p + ' not true or false: ' + v);
- }
- }
-
-
- if (obj.hasOwnProperty(p = 'MODULO_MODE')) {
- v = obj[p];
- intCheck(v, 0, 9, p);
- MODULO_MODE = v;
- }
-
-
- if (obj.hasOwnProperty(p = 'POW_PRECISION')) {
- v = obj[p];
- intCheck(v, 0, MAX, p);
- POW_PRECISION = v;
- }
-
-
- if (obj.hasOwnProperty(p = 'FORMAT')) {
- v = obj[p];
- if (typeof v == 'object') FORMAT = v;
- else throw Error
- (bignumberError + p + ' not an object: ' + v);
- }
-
-
- if (obj.hasOwnProperty(p = 'ALPHABET')) {
- v = obj[p];
-
- if (typeof v == 'string' && !/^.$|\.|(.).*\1/.test(v)) {
- ALPHABET = v;
- } else {
- throw Error
- (bignumberError + p + ' invalid: ' + v);
- }
- }
- } else {
-
- throw Error
- (bignumberError + 'Object expected: ' + obj);
- }
- }
- return {
- DECIMAL_PLACES: DECIMAL_PLACES,
- ROUNDING_MODE: ROUNDING_MODE,
- EXPONENTIAL_AT: [TO_EXP_NEG, TO_EXP_POS],
- RANGE: [MIN_EXP, MAX_EXP],
- CRYPTO: CRYPTO,
- MODULO_MODE: MODULO_MODE,
- POW_PRECISION: POW_PRECISION,
- FORMAT: FORMAT,
- ALPHABET: ALPHABET
- };
- };
-
- BigNumber.isBigNumber = function (v) {
- return v instanceof BigNumber || v && v._isBigNumber === true || false;
- };
-
- BigNumber.maximum = BigNumber.max = function () {
- return maxOrMin(arguments, P.lt);
- };
-
- BigNumber.minimum = BigNumber.min = function () {
- return maxOrMin(arguments, P.gt);
- };
-
- BigNumber.random = (function () {
- var pow2_53 = 0x20000000000000;
-
-
-
-
- var random53bitInt = (Math.random() * pow2_53) & 0x1fffff
- ? function () { return mathfloor(Math.random() * pow2_53); }
- : function () { return ((Math.random() * 0x40000000 | 0) * 0x800000) +
- (Math.random() * 0x800000 | 0); };
- return function (dp) {
- var a, b, e, k, v,
- i = 0,
- c = [],
- rand = new BigNumber(ONE);
- if (dp == null) dp = DECIMAL_PLACES;
- else intCheck(dp, 0, MAX);
- k = mathceil(dp / LOG_BASE);
- if (CRYPTO) {
-
- if (crypto.getRandomValues) {
- a = crypto.getRandomValues(new Uint32Array(k *= 2));
- for (; i < k;) {
-
-
-
-
-
-
- v = a[i] * 0x20000 + (a[i + 1] >>> 11);
-
-
-
-
- if (v >= 9e15) {
- b = crypto.getRandomValues(new Uint32Array(2));
- a[i] = b[0];
- a[i + 1] = b[1];
- } else {
-
-
- c.push(v % 1e14);
- i += 2;
- }
- }
- i = k / 2;
-
- } else if (crypto.randomBytes) {
-
- a = crypto.randomBytes(k *= 7);
- for (; i < k;) {
-
-
-
-
- v = ((a[i] & 31) * 0x1000000000000) + (a[i + 1] * 0x10000000000) +
- (a[i + 2] * 0x100000000) + (a[i + 3] * 0x1000000) +
- (a[i + 4] << 16) + (a[i + 5] << 8) + a[i + 6];
- if (v >= 9e15) {
- crypto.randomBytes(7).copy(a, i);
- } else {
-
- c.push(v % 1e14);
- i += 7;
- }
- }
- i = k / 7;
- } else {
- CRYPTO = false;
- throw Error
- (bignumberError + 'crypto unavailable');
- }
- }
-
- if (!CRYPTO) {
- for (; i < k;) {
- v = random53bitInt();
- if (v < 9e15) c[i++] = v % 1e14;
- }
- }
- k = c[--i];
- dp %= LOG_BASE;
-
- if (k && dp) {
- v = POWS_TEN[LOG_BASE - dp];
- c[i] = mathfloor(k / v) * v;
- }
-
- for (; c[i] === 0; c.pop(), i--);
-
- if (i < 0) {
- c = [e = 0];
- } else {
-
- for (e = -1 ; c[0] === 0; c.splice(0, 1), e -= LOG_BASE);
-
- for (i = 1, v = c[0]; v >= 10; v /= 10, i++);
-
- if (i < LOG_BASE) e -= LOG_BASE - i;
- }
- rand.e = e;
- rand.c = c;
- return rand;
- };
- })();
-
-
- convertBase = (function () {
- var decimal = '0123456789';
-
- function toBaseOut(str, baseIn, baseOut, alphabet) {
- var j,
- arr = [0],
- arrL,
- i = 0,
- len = str.length;
- for (; i < len;) {
- for (arrL = arr.length; arrL--; arr[arrL] *= baseIn);
- arr[0] += alphabet.indexOf(str.charAt(i++));
- for (j = 0; j < arr.length; j++) {
- if (arr[j] > baseOut - 1) {
- if (arr[j + 1] == null) arr[j + 1] = 0;
- arr[j + 1] += arr[j] / baseOut | 0;
- arr[j] %= baseOut;
- }
- }
- }
- return arr.reverse();
- }
-
-
-
- return function (str, baseIn, baseOut, sign, callerIsToString) {
- var alphabet, d, e, k, r, x, xc, y,
- i = str.indexOf('.'),
- dp = DECIMAL_PLACES,
- rm = ROUNDING_MODE;
-
- if (i >= 0) {
- k = POW_PRECISION;
-
- POW_PRECISION = 0;
- str = str.replace('.', '');
- y = new BigNumber(baseIn);
- x = y.pow(str.length - i);
- POW_PRECISION = k;
-
-
- y.c = toBaseOut(toFixedPoint(coeffToString(x.c), x.e, '0'),
- 10, baseOut, decimal);
- y.e = y.c.length;
- }
-
- xc = toBaseOut(str, baseIn, baseOut, callerIsToString
- ? (alphabet = ALPHABET, decimal)
- : (alphabet = decimal, ALPHABET));
-
- e = k = xc.length;
-
- for (; xc[--k] == 0; xc.pop());
-
- if (!xc[0]) return alphabet.charAt(0);
-
- if (i < 0) {
- --e;
- } else {
- x.c = xc;
- x.e = e;
-
- x.s = sign;
- x = div(x, y, dp, rm, baseOut);
- xc = x.c;
- r = x.r;
- e = x.e;
- }
-
-
- d = e + dp + 1;
-
- i = xc[d];
-
- k = baseOut / 2;
- r = r || d < 0 || xc[d + 1] != null;
- r = rm < 4 ? (i != null || r) && (rm == 0 || rm == (x.s < 0 ? 3 : 2))
- : i > k || i == k &&(rm == 4 || r || rm == 6 && xc[d - 1] & 1 ||
- rm == (x.s < 0 ? 8 : 7));
-
-
-
- if (d < 1 || !xc[0]) {
-
- str = r ? toFixedPoint(alphabet.charAt(1), -dp, alphabet.charAt(0))
- : alphabet.charAt(0);
- } else {
-
- xc.length = d;
-
- if (r) {
-
- for (--baseOut; ++xc[--d] > baseOut;) {
- xc[d] = 0;
- if (!d) {
- ++e;
- xc = [1].concat(xc);
- }
- }
- }
-
- for (k = xc.length; !xc[--k];);
-
- for (i = 0, str = ''; i <= k; str += alphabet.charAt(xc[i++]));
-
- str = toFixedPoint(str, e, alphabet.charAt(0));
- }
-
- return str;
- };
- })();
-
- div = (function () {
-
- function multiply(x, k, base) {
- var m, temp, xlo, xhi,
- carry = 0,
- i = x.length,
- klo = k % SQRT_BASE,
- khi = k / SQRT_BASE | 0;
- for (x = x.slice(); i--;) {
- xlo = x[i] % SQRT_BASE;
- xhi = x[i] / SQRT_BASE | 0;
- m = khi * xlo + xhi * klo;
- temp = klo * xlo + ((m % SQRT_BASE) * SQRT_BASE) + carry;
- carry = (temp / base | 0) + (m / SQRT_BASE | 0) + khi * xhi;
- x[i] = temp % base;
- }
- if (carry) x = [carry].concat(x);
- return x;
- }
- function compare(a, b, aL, bL) {
- var i, cmp;
- if (aL != bL) {
- cmp = aL > bL ? 1 : -1;
- } else {
- for (i = cmp = 0; i < aL; i++) {
- if (a[i] != b[i]) {
- cmp = a[i] > b[i] ? 1 : -1;
- break;
- }
- }
- }
- return cmp;
- }
- function subtract(a, b, aL, base) {
- var i = 0;
-
- for (; aL--;) {
- a[aL] -= i;
- i = a[aL] < b[aL] ? 1 : 0;
- a[aL] = i * base + a[aL] - b[aL];
- }
-
- for (; !a[0] && a.length > 1; a.splice(0, 1));
- }
-
- return function (x, y, dp, rm, base) {
- var cmp, e, i, more, n, prod, prodL, q, qc, rem, remL, rem0, xi, xL, yc0,
- yL, yz,
- s = x.s == y.s ? 1 : -1,
- xc = x.c,
- yc = y.c;
-
- if (!xc || !xc[0] || !yc || !yc[0]) {
- return new BigNumber(
-
- !x.s || !y.s || (xc ? yc && xc[0] == yc[0] : !yc) ? NaN :
-
- xc && xc[0] == 0 || !yc ? s * 0 : s / 0
- );
- }
- q = new BigNumber(s);
- qc = q.c = [];
- e = x.e - y.e;
- s = dp + e + 1;
- if (!base) {
- base = BASE;
- e = bitFloor(x.e / LOG_BASE) - bitFloor(y.e / LOG_BASE);
- s = s / LOG_BASE | 0;
- }
-
-
- for (i = 0; yc[i] == (xc[i] || 0); i++);
- if (yc[i] > (xc[i] || 0)) e--;
- if (s < 0) {
- qc.push(1);
- more = true;
- } else {
- xL = xc.length;
- yL = yc.length;
- i = 0;
- s += 2;
-
- n = mathfloor(base / (yc[0] + 1));
-
-
- if (n > 1) {
- yc = multiply(yc, n, base);
- xc = multiply(xc, n, base);
- yL = yc.length;
- xL = xc.length;
- }
- xi = yL;
- rem = xc.slice(0, yL);
- remL = rem.length;
-
- for (; remL < yL; rem[remL++] = 0);
- yz = yc.slice();
- yz = [0].concat(yz);
- yc0 = yc[0];
- if (yc[1] >= base / 2) yc0++;
-
-
- do {
- n = 0;
-
- cmp = compare(yc, rem, yL, remL);
-
- if (cmp < 0) {
-
- rem0 = rem[0];
- if (yL != remL) rem0 = rem0 * base + (rem[1] || 0);
-
- n = mathfloor(rem0 / yc0);
-
-
-
-
-
-
-
-
-
-
- if (n > 1) {
-
- if (n >= base) n = base - 1;
-
- prod = multiply(yc, n, base);
- prodL = prod.length;
- remL = rem.length;
-
-
-
-
- while (compare(prod, rem, prodL, remL) == 1) {
- n--;
-
- subtract(prod, yL < prodL ? yz : yc, prodL, base);
- prodL = prod.length;
- cmp = 1;
- }
- } else {
-
-
-
-
- if (n == 0) {
-
- cmp = n = 1;
- }
-
- prod = yc.slice();
- prodL = prod.length;
- }
- if (prodL < remL) prod = [0].concat(prod);
-
- subtract(rem, prod, remL, base);
- remL = rem.length;
-
- if (cmp == -1) {
-
-
-
-
- while (compare(yc, rem, yL, remL) < 1) {
- n++;
-
- subtract(rem, yL < remL ? yz : yc, remL, base);
- remL = rem.length;
- }
- }
- } else if (cmp === 0) {
- n++;
- rem = [0];
- }
-
- qc[i++] = n;
-
- if (rem[0]) {
- rem[remL++] = xc[xi] || 0;
- } else {
- rem = [xc[xi]];
- remL = 1;
- }
- } while ((xi++ < xL || rem[0] != null) && s--);
- more = rem[0] != null;
-
- if (!qc[0]) qc.splice(0, 1);
- }
- if (base == BASE) {
-
- for (i = 1, s = qc[0]; s >= 10; s /= 10, i++);
- round(q, dp + (q.e = i + e * LOG_BASE - 1) + 1, rm, more);
-
- } else {
- q.e = e;
- q.r = +more;
- }
- return q;
- };
- })();
-
- function format(n, i, rm, id) {
- var c0, e, ne, len, str;
- if (rm == null) rm = ROUNDING_MODE;
- else intCheck(rm, 0, 8);
- if (!n.c) return n.toString();
- c0 = n.c[0];
- ne = n.e;
- if (i == null) {
- str = coeffToString(n.c);
- str = id == 1 || id == 2 && ne <= TO_EXP_NEG
- ? toExponential(str, ne)
- : toFixedPoint(str, ne, '0');
- } else {
- n = round(new BigNumber(n), i, rm);
-
- e = n.e;
- str = coeffToString(n.c);
- len = str.length;
-
-
-
-
- if (id == 1 || id == 2 && (i <= e || e <= TO_EXP_NEG)) {
-
- for (; len < i; str += '0', len++);
- str = toExponential(str, e);
-
- } else {
- i -= ne;
- str = toFixedPoint(str, e, '0');
-
- if (e + 1 > len) {
- if (--i > 0) for (str += '.'; i--; str += '0');
- } else {
- i += e - len;
- if (i > 0) {
- if (e + 1 == len) str += '.';
- for (; i--; str += '0');
- }
- }
- }
- }
- return n.s < 0 && c0 ? '-' + str : str;
- }
-
- function maxOrMin(args, method) {
- var m, n,
- i = 0;
- if (isArray(args[0])) args = args[0];
- m = new BigNumber(args[0]);
- for (; ++i < args.length;) {
- n = new BigNumber(args[i]);
-
- if (!n.s) {
- m = n;
- break;
- } else if (method.call(m, n)) {
- m = n;
- }
- }
- return m;
- }
-
- function normalise(n, c, e) {
- var i = 1,
- j = c.length;
-
- for (; !c[--j]; c.pop());
-
- for (j = c[0]; j >= 10; j /= 10, i++);
-
- if ((e = i + e * LOG_BASE - 1) > MAX_EXP) {
-
- n.c = n.e = null;
-
- } else if (e < MIN_EXP) {
-
- n.c = [n.e = 0];
- } else {
- n.e = e;
- n.c = c;
- }
- return n;
- }
-
- parseNumeric = (function () {
- var basePrefix = /^(-?)0([xbo])(?=\w[\w.]*$)/i,
- dotAfter = /^([^.]+)\.$/,
- dotBefore = /^\.([^.]+)$/,
- isInfinityOrNaN = /^-?(Infinity|NaN)$/,
- whitespaceOrPlus = /^\s*\+(?=[\w.])|^\s+|\s+$/g;
- return function (x, str, isNum, b) {
- var base,
- s = isNum ? str : str.replace(whitespaceOrPlus, '');
-
- if (isInfinityOrNaN.test(s)) {
- x.s = isNaN(s) ? null : s < 0 ? -1 : 1;
- x.c = x.e = null;
- } else {
- if (!isNum) {
-
- s = s.replace(basePrefix, function (m, p1, p2) {
- base = (p2 = p2.toLowerCase()) == 'x' ? 16 : p2 == 'b' ? 2 : 8;
- return !b || b == base ? p1 : m;
- });
- if (b) {
- base = b;
-
- s = s.replace(dotAfter, '$1').replace(dotBefore, '0.$1');
- }
- if (str != s) return new BigNumber(s, base);
- }
-
-
- if (BigNumber.DEBUG) {
- throw Error
- (bignumberError + 'Not a' + (b ? ' base ' + b : '') + ' number: ' + str);
- }
-
- x.c = x.e = x.s = null;
- }
- }
- })();
-
- function round(x, sd, rm, r) {
- var d, i, j, k, n, ni, rd,
- xc = x.c,
- pows10 = POWS_TEN;
-
- if (xc) {
-
-
-
-
-
-
- out: {
-
- for (d = 1, k = xc[0]; k >= 10; k /= 10, d++);
- i = sd - d;
-
- if (i < 0) {
- i += LOG_BASE;
- j = sd;
- n = xc[ni = 0];
-
- rd = n / pows10[d - j - 1] % 10 | 0;
- } else {
- ni = mathceil((i + 1) / LOG_BASE);
- if (ni >= xc.length) {
- if (r) {
-
- for (; xc.length <= ni; xc.push(0));
- n = rd = 0;
- d = 1;
- i %= LOG_BASE;
- j = i - LOG_BASE + 1;
- } else {
- break out;
- }
- } else {
- n = k = xc[ni];
-
- for (d = 1; k >= 10; k /= 10, d++);
-
- i %= LOG_BASE;
-
-
- j = i - LOG_BASE + d;
-
- rd = j < 0 ? 0 : n / pows10[d - j - 1] % 10 | 0;
- }
- }
- r = r || sd < 0 ||
-
-
-
- xc[ni + 1] != null || (j < 0 ? n : n % pows10[d - j - 1]);
- r = rm < 4
- ? (rd || r) && (rm == 0 || rm == (x.s < 0 ? 3 : 2))
- : rd > 5 || rd == 5 && (rm == 4 || r || rm == 6 &&
-
- ((i > 0 ? j > 0 ? n / pows10[d - j] : 0 : xc[ni - 1]) % 10) & 1 ||
- rm == (x.s < 0 ? 8 : 7));
- if (sd < 1 || !xc[0]) {
- xc.length = 0;
- if (r) {
-
- sd -= x.e + 1;
-
- xc[0] = pows10[(LOG_BASE - sd % LOG_BASE) % LOG_BASE];
- x.e = -sd || 0;
- } else {
-
- xc[0] = x.e = 0;
- }
- return x;
- }
-
- if (i == 0) {
- xc.length = ni;
- k = 1;
- ni--;
- } else {
- xc.length = ni + 1;
- k = pows10[LOG_BASE - i];
-
-
- xc[ni] = j > 0 ? mathfloor(n / pows10[d - j] % pows10[j]) * k : 0;
- }
-
- if (r) {
- for (; ;) {
-
- if (ni == 0) {
-
- for (i = 1, j = xc[0]; j >= 10; j /= 10, i++);
- j = xc[0] += k;
- for (k = 1; j >= 10; j /= 10, k++);
-
- if (i != k) {
- x.e++;
- if (xc[0] == BASE) xc[0] = 1;
- }
- break;
- } else {
- xc[ni] += k;
- if (xc[ni] != BASE) break;
- xc[ni--] = 0;
- k = 1;
- }
- }
- }
-
- for (i = xc.length; xc[--i] === 0; xc.pop());
- }
-
- if (x.e > MAX_EXP) {
- x.c = x.e = null;
-
- } else if (x.e < MIN_EXP) {
- x.c = [x.e = 0];
- }
- }
- return x;
- }
-
-
- P.absoluteValue = P.abs = function () {
- var x = new BigNumber(this);
- if (x.s < 0) x.s = 1;
- return x;
- };
-
- P.comparedTo = function (y, b) {
- return compare(this, new BigNumber(y, b));
- };
-
- P.decimalPlaces = P.dp = function (dp, rm) {
- var c, n, v,
- x = this;
- if (dp != null) {
- intCheck(dp, 0, MAX);
- if (rm == null) rm = ROUNDING_MODE;
- else intCheck(rm, 0, 8);
- return round(new BigNumber(x), dp + x.e + 1, rm);
- }
- if (!(c = x.c)) return null;
- n = ((v = c.length - 1) - bitFloor(this.e / LOG_BASE)) * LOG_BASE;
-
- if (v = c[v]) for (; v % 10 == 0; v /= 10, n--);
- if (n < 0) n = 0;
- return n;
- };
-
- P.dividedBy = P.div = function (y, b) {
- return div(this, new BigNumber(y, b), DECIMAL_PLACES, ROUNDING_MODE);
- };
-
- P.dividedToIntegerBy = P.idiv = function (y, b) {
- return div(this, new BigNumber(y, b), 0, 1);
- };
-
- P.exponentiatedBy = P.pow = function (n, m) {
- var half, isModExp, k, more, nIsBig, nIsNeg, nIsOdd, y,
- x = this;
- n = new BigNumber(n);
-
- if (n.c && !n.isInteger()) {
- throw Error
- (bignumberError + 'Exponent not an integer: ' + n);
- }
- if (m != null) m = new BigNumber(m);
-
- nIsBig = n.e > 14;
-
- if (!x.c || !x.c[0] || x.c[0] == 1 && !x.e && x.c.length == 1 || !n.c || !n.c[0]) {
-
-
- y = new BigNumber(Math.pow(+x.valueOf(), nIsBig ? 2 - isOdd(n) : +n));
- return m ? y.mod(m) : y;
- }
- nIsNeg = n.s < 0;
- if (m) {
-
- if (m.c ? !m.c[0] : !m.s) return new BigNumber(NaN);
- isModExp = !nIsNeg && x.isInteger() && m.isInteger();
- if (isModExp) x = x.mod(m);
-
-
- } else if (n.e > 9 && (x.e > 0 || x.e < -1 || (x.e == 0
-
- ? x.c[0] > 1 || nIsBig && x.c[1] >= 24e7
-
- : x.c[0] < 8e13 || nIsBig && x.c[0] <= 9999975e7))) {
-
- k = x.s < 0 && isOdd(n) ? -0 : 0;
-
- if (x.e > -1) k = 1 / k;
-
- return new BigNumber(nIsNeg ? 1 / k : k);
- } else if (POW_PRECISION) {
-
-
-
- k = mathceil(POW_PRECISION / LOG_BASE + 2);
- }
- if (nIsBig) {
- half = new BigNumber(0.5);
- nIsOdd = isOdd(n);
- } else {
- nIsOdd = n % 2;
- }
- if (nIsNeg) n.s = 1;
- y = new BigNumber(ONE);
-
- for (; ;) {
- if (nIsOdd) {
- y = y.times(x);
- if (!y.c) break;
- if (k) {
- if (y.c.length > k) y.c.length = k;
- } else if (isModExp) {
- y = y.mod(m);
- }
- }
- if (nIsBig) {
- n = n.times(half);
- round(n, n.e + 1, 1);
- if (!n.c[0]) break;
- nIsBig = n.e > 14;
- nIsOdd = isOdd(n);
- } else {
- n = mathfloor(n / 2);
- if (!n) break;
- nIsOdd = n % 2;
- }
- x = x.times(x);
- if (k) {
- if (x.c && x.c.length > k) x.c.length = k;
- } else if (isModExp) {
- x = x.mod(m);
- }
- }
- if (isModExp) return y;
- if (nIsNeg) y = ONE.div(y);
- return m ? y.mod(m) : k ? round(y, POW_PRECISION, ROUNDING_MODE, more) : y;
- };
-
- P.integerValue = function (rm) {
- var n = new BigNumber(this);
- if (rm == null) rm = ROUNDING_MODE;
- else intCheck(rm, 0, 8);
- return round(n, n.e + 1, rm);
- };
-
- P.isEqualTo = P.eq = function (y, b) {
- return compare(this, new BigNumber(y, b)) === 0;
- };
-
- P.isFinite = function () {
- return !!this.c;
- };
-
- P.isGreaterThan = P.gt = function (y, b) {
- return compare(this, new BigNumber(y, b)) > 0;
- };
-
- P.isGreaterThanOrEqualTo = P.gte = function (y, b) {
- return (b = compare(this, new BigNumber(y, b))) === 1 || b === 0;
- };
-
- P.isInteger = function () {
- return !!this.c && bitFloor(this.e / LOG_BASE) > this.c.length - 2;
- };
-
- P.isLessThan = P.lt = function (y, b) {
- return compare(this, new BigNumber(y, b)) < 0;
- };
-
- P.isLessThanOrEqualTo = P.lte = function (y, b) {
- return (b = compare(this, new BigNumber(y, b))) === -1 || b === 0;
- };
-
- P.isNaN = function () {
- return !this.s;
- };
-
- P.isNegative = function () {
- return this.s < 0;
- };
-
- P.isPositive = function () {
- return this.s > 0;
- };
-
- P.isZero = function () {
- return !!this.c && this.c[0] == 0;
- };
-
- P.minus = function (y, b) {
- var i, j, t, xLTy,
- x = this,
- a = x.s;
- y = new BigNumber(y, b);
- b = y.s;
-
- if (!a || !b) return new BigNumber(NaN);
-
- if (a != b) {
- y.s = -b;
- return x.plus(y);
- }
- var xe = x.e / LOG_BASE,
- ye = y.e / LOG_BASE,
- xc = x.c,
- yc = y.c;
- if (!xe || !ye) {
-
- if (!xc || !yc) return xc ? (y.s = -b, y) : new BigNumber(yc ? x : NaN);
-
- if (!xc[0] || !yc[0]) {
-
- return yc[0] ? (y.s = -b, y) : new BigNumber(xc[0] ? x :
-
- ROUNDING_MODE == 3 ? -0 : 0);
- }
- }
- xe = bitFloor(xe);
- ye = bitFloor(ye);
- xc = xc.slice();
-
- if (a = xe - ye) {
- if (xLTy = a < 0) {
- a = -a;
- t = xc;
- } else {
- ye = xe;
- t = yc;
- }
- t.reverse();
-
- for (b = a; b--; t.push(0));
- t.reverse();
- } else {
-
- j = (xLTy = (a = xc.length) < (b = yc.length)) ? a : b;
- for (a = b = 0; b < j; b++) {
- if (xc[b] != yc[b]) {
- xLTy = xc[b] < yc[b];
- break;
- }
- }
- }
-
- if (xLTy) t = xc, xc = yc, yc = t, y.s = -y.s;
- b = (j = yc.length) - (i = xc.length);
-
-
- if (b > 0) for (; b--; xc[i++] = 0);
- b = BASE - 1;
-
- for (; j > a;) {
- if (xc[--j] < yc[j]) {
- for (i = j; i && !xc[--i]; xc[i] = b);
- --xc[i];
- xc[j] += BASE;
- }
- xc[j] -= yc[j];
- }
-
- for (; xc[0] == 0; xc.splice(0, 1), --ye);
-
- if (!xc[0]) {
-
-
- y.s = ROUNDING_MODE == 3 ? -1 : 1;
- y.c = [y.e = 0];
- return y;
- }
-
-
- return normalise(y, xc, ye);
- };
-
- P.modulo = P.mod = function (y, b) {
- var q, s,
- x = this;
- y = new BigNumber(y, b);
-
- if (!x.c || !y.s || y.c && !y.c[0]) {
- return new BigNumber(NaN);
-
- } else if (!y.c || x.c && !x.c[0]) {
- return new BigNumber(x);
- }
- if (MODULO_MODE == 9) {
-
-
- s = y.s;
- y.s = 1;
- q = div(x, y, 0, 3);
- y.s = s;
- q.s *= s;
- } else {
- q = div(x, y, 0, MODULO_MODE);
- }
- y = x.minus(q.times(y));
-
- if (!y.c[0] && MODULO_MODE == 1) y.s = x.s;
- return y;
- };
-
- P.multipliedBy = P.times = function (y, b) {
- var c, e, i, j, k, m, xcL, xlo, xhi, ycL, ylo, yhi, zc,
- base, sqrtBase,
- x = this,
- xc = x.c,
- yc = (y = new BigNumber(y, b)).c;
-
- if (!xc || !yc || !xc[0] || !yc[0]) {
-
- if (!x.s || !y.s || xc && !xc[0] && !yc || yc && !yc[0] && !xc) {
- y.c = y.e = y.s = null;
- } else {
- y.s *= x.s;
-
- if (!xc || !yc) {
- y.c = y.e = null;
-
- } else {
- y.c = [0];
- y.e = 0;
- }
- }
- return y;
- }
- e = bitFloor(x.e / LOG_BASE) + bitFloor(y.e / LOG_BASE);
- y.s *= x.s;
- xcL = xc.length;
- ycL = yc.length;
-
- if (xcL < ycL) zc = xc, xc = yc, yc = zc, i = xcL, xcL = ycL, ycL = i;
-
- for (i = xcL + ycL, zc = []; i--; zc.push(0));
- base = BASE;
- sqrtBase = SQRT_BASE;
- for (i = ycL; --i >= 0;) {
- c = 0;
- ylo = yc[i] % sqrtBase;
- yhi = yc[i] / sqrtBase | 0;
- for (k = xcL, j = i + k; j > i;) {
- xlo = xc[--k] % sqrtBase;
- xhi = xc[k] / sqrtBase | 0;
- m = yhi * xlo + xhi * ylo;
- xlo = ylo * xlo + ((m % sqrtBase) * sqrtBase) + zc[j] + c;
- c = (xlo / base | 0) + (m / sqrtBase | 0) + yhi * xhi;
- zc[j--] = xlo % base;
- }
- zc[j] = c;
- }
- if (c) {
- ++e;
- } else {
- zc.splice(0, 1);
- }
- return normalise(y, zc, e);
- };
-
- P.negated = function () {
- var x = new BigNumber(this);
- x.s = -x.s || null;
- return x;
- };
-
- P.plus = function (y, b) {
- var t,
- x = this,
- a = x.s;
- y = new BigNumber(y, b);
- b = y.s;
-
- if (!a || !b) return new BigNumber(NaN);
-
- if (a != b) {
- y.s = -b;
- return x.minus(y);
- }
- var xe = x.e / LOG_BASE,
- ye = y.e / LOG_BASE,
- xc = x.c,
- yc = y.c;
- if (!xe || !ye) {
-
- if (!xc || !yc) return new BigNumber(a / 0);
-
-
- if (!xc[0] || !yc[0]) return yc[0] ? y : new BigNumber(xc[0] ? x : a * 0);
- }
- xe = bitFloor(xe);
- ye = bitFloor(ye);
- xc = xc.slice();
-
- if (a = xe - ye) {
- if (a > 0) {
- ye = xe;
- t = yc;
- } else {
- a = -a;
- t = xc;
- }
- t.reverse();
- for (; a--; t.push(0));
- t.reverse();
- }
- a = xc.length;
- b = yc.length;
-
- if (a - b < 0) t = yc, yc = xc, xc = t, b = a;
-
- for (a = 0; b;) {
- a = (xc[--b] = xc[b] + yc[b] + a) / BASE | 0;
- xc[b] = BASE === xc[b] ? 0 : xc[b] % BASE;
- }
- if (a) {
- xc = [a].concat(xc);
- ++ye;
- }
-
-
- return normalise(y, xc, ye);
- };
-
- P.precision = P.sd = function (sd, rm) {
- var c, n, v,
- x = this;
- if (sd != null && sd !== !!sd) {
- intCheck(sd, 1, MAX);
- if (rm == null) rm = ROUNDING_MODE;
- else intCheck(rm, 0, 8);
- return round(new BigNumber(x), sd, rm);
- }
- if (!(c = x.c)) return null;
- v = c.length - 1;
- n = v * LOG_BASE + 1;
- if (v = c[v]) {
-
- for (; v % 10 == 0; v /= 10, n--);
-
- for (v = c[0]; v >= 10; v /= 10, n++);
- }
- if (sd && x.e + 1 > n) n = x.e + 1;
- return n;
- };
-
- P.shiftedBy = function (k) {
- intCheck(k, -MAX_SAFE_INTEGER, MAX_SAFE_INTEGER);
- return this.times('1e' + k);
- };
-
- P.squareRoot = P.sqrt = function () {
- var m, n, r, rep, t,
- x = this,
- c = x.c,
- s = x.s,
- e = x.e,
- dp = DECIMAL_PLACES + 4,
- half = new BigNumber('0.5');
-
- if (s !== 1 || !c || !c[0]) {
- return new BigNumber(!s || s < 0 && (!c || c[0]) ? NaN : c ? x : 1 / 0);
- }
-
- s = Math.sqrt(+x);
-
-
- if (s == 0 || s == 1 / 0) {
- n = coeffToString(c);
- if ((n.length + e) % 2 == 0) n += '0';
- s = Math.sqrt(n);
- e = bitFloor((e + 1) / 2) - (e < 0 || e % 2);
- if (s == 1 / 0) {
- n = '1e' + e;
- } else {
- n = s.toExponential();
- n = n.slice(0, n.indexOf('e') + 1) + e;
- }
- r = new BigNumber(n);
- } else {
- r = new BigNumber(s + '');
- }
-
-
-
-
- if (r.c[0]) {
- e = r.e;
- s = e + dp;
- if (s < 3) s = 0;
-
- for (; ;) {
- t = r;
- r = half.times(t.plus(div(x, t, dp, 1)));
- if (coeffToString(t.c ).slice(0, s) === (n =
- coeffToString(r.c)).slice(0, s)) {
-
-
-
- if (r.e < e) --s;
- n = n.slice(s - 3, s + 1);
-
-
-
- if (n == '9999' || !rep && n == '4999') {
-
-
- if (!rep) {
- round(t, t.e + DECIMAL_PLACES + 2, 0);
- if (t.times(t).eq(x)) {
- r = t;
- break;
- }
- }
- dp += 4;
- s += 4;
- rep = 1;
- } else {
-
-
- if (!+n || !+n.slice(1) && n.charAt(0) == '5') {
-
- round(r, r.e + DECIMAL_PLACES + 2, 1);
- m = !r.times(r).eq(x);
- }
- break;
- }
- }
- }
- }
- return round(r, r.e + DECIMAL_PLACES + 1, ROUNDING_MODE, m);
- };
-
- P.toExponential = function (dp, rm) {
- if (dp != null) {
- intCheck(dp, 0, MAX);
- dp++;
- }
- return format(this, dp, rm, 1);
- };
-
- P.toFixed = function (dp, rm) {
- if (dp != null) {
- intCheck(dp, 0, MAX);
- dp = dp + this.e + 1;
- }
- return format(this, dp, rm);
- };
-
- P.toFormat = function (dp, rm) {
- var str = this.toFixed(dp, rm);
- if (this.c) {
- var i,
- arr = str.split('.'),
- g1 = +FORMAT.groupSize,
- g2 = +FORMAT.secondaryGroupSize,
- groupSeparator = FORMAT.groupSeparator,
- intPart = arr[0],
- fractionPart = arr[1],
- isNeg = this.s < 0,
- intDigits = isNeg ? intPart.slice(1) : intPart,
- len = intDigits.length;
- if (g2) i = g1, g1 = g2, g2 = i, len -= i;
- if (g1 > 0 && len > 0) {
- i = len % g1 || g1;
- intPart = intDigits.substr(0, i);
- for (; i < len; i += g1) {
- intPart += groupSeparator + intDigits.substr(i, g1);
- }
- if (g2 > 0) intPart += groupSeparator + intDigits.slice(i);
- if (isNeg) intPart = '-' + intPart;
- }
- str = fractionPart
- ? intPart + FORMAT.decimalSeparator + ((g2 = +FORMAT.fractionGroupSize)
- ? fractionPart.replace(new RegExp('\\d{' + g2 + '}\\B', 'g'),
- '$&' + FORMAT.fractionGroupSeparator)
- : fractionPart)
- : intPart;
- }
- return str;
- };
-
- P.toFraction = function (md) {
- var arr, d, d0, d1, d2, e, exp, n, n0, n1, q, s,
- x = this,
- xc = x.c;
- if (md != null) {
- n = new BigNumber(md);
-
- if (!n.isInteger() && (n.c || n.s !== 1) || n.lt(ONE)) {
- throw Error
- (bignumberError + 'Argument ' +
- (n.isInteger() ? 'out of range: ' : 'not an integer: ') + md);
- }
- }
- if (!xc) return x.toString();
- d = new BigNumber(ONE);
- n1 = d0 = new BigNumber(ONE);
- d1 = n0 = new BigNumber(ONE);
- s = coeffToString(xc);
-
-
- e = d.e = s.length - x.e - 1;
- d.c[0] = POWS_TEN[(exp = e % LOG_BASE) < 0 ? LOG_BASE + exp : exp];
- md = !md || n.comparedTo(d) > 0 ? (e > 0 ? d : n1) : n;
- exp = MAX_EXP;
- MAX_EXP = 1 / 0;
- n = new BigNumber(s);
-
- n0.c[0] = 0;
- for (; ;) {
- q = div(n, d, 0, 1);
- d2 = d0.plus(q.times(d1));
- if (d2.comparedTo(md) == 1) break;
- d0 = d1;
- d1 = d2;
- n1 = n0.plus(q.times(d2 = n1));
- n0 = d2;
- d = n.minus(q.times(d2 = d));
- n = d2;
- }
- d2 = div(md.minus(d0), d1, 0, 1);
- n0 = n0.plus(d2.times(n1));
- d0 = d0.plus(d2.times(d1));
- n0.s = n1.s = x.s;
- e *= 2;
-
- arr = div(n1, d1, e, ROUNDING_MODE).minus(x).abs().comparedTo(
- div(n0, d0, e, ROUNDING_MODE).minus(x).abs()) < 1
- ? [n1.toString(), d1.toString()]
- : [n0.toString(), d0.toString()];
- MAX_EXP = exp;
- return arr;
- };
-
- P.toNumber = function () {
- return +this;
- };
-
- P.toPrecision = function (sd, rm) {
- if (sd != null) intCheck(sd, 1, MAX);
- return format(this, sd, rm, 2);
- };
-
- P.toString = function (b) {
- var str,
- n = this,
- s = n.s,
- e = n.e;
-
- if (e === null) {
- if (s) {
- str = 'Infinity';
- if (s < 0) str = '-' + str;
- } else {
- str = 'NaN';
- }
- } else {
- str = coeffToString(n.c);
- if (b == null) {
- str = e <= TO_EXP_NEG || e >= TO_EXP_POS
- ? toExponential(str, e)
- : toFixedPoint(str, e, '0');
- } else {
- intCheck(b, 2, ALPHABET.length, 'Base');
- str = convertBase(toFixedPoint(str, e, '0'), 10, b, s, true);
- }
- if (s < 0 && n.c[0]) str = '-' + str;
- }
- return str;
- };
-
- P.valueOf = P.toJSON = function () {
- var str,
- n = this,
- e = n.e;
- if (e === null) return n.toString();
- str = coeffToString(n.c);
- str = e <= TO_EXP_NEG || e >= TO_EXP_POS
- ? toExponential(str, e)
- : toFixedPoint(str, e, '0');
- return n.s < 0 ? '-' + str : str;
- };
- P._isBigNumber = true;
- if (configObject != null) BigNumber.set(configObject);
- return BigNumber;
- }
- function bitFloor(n) {
- var i = n | 0;
- return n > 0 || n === i ? i : i - 1;
- }
- function coeffToString(a) {
- var s, z,
- i = 1,
- j = a.length,
- r = a[0] + '';
- for (; i < j;) {
- s = a[i++] + '';
- z = LOG_BASE - s.length;
- for (; z--; s = '0' + s);
- r += s;
- }
-
- for (j = r.length; r.charCodeAt(--j) === 48;);
- return r.slice(0, j + 1 || 1);
- }
- function compare(x, y) {
- var a, b,
- xc = x.c,
- yc = y.c,
- i = x.s,
- j = y.s,
- k = x.e,
- l = y.e;
-
- if (!i || !j) return null;
- a = xc && !xc[0];
- b = yc && !yc[0];
-
- if (a || b) return a ? b ? 0 : -j : i;
-
- if (i != j) return i;
- a = i < 0;
- b = k == l;
-
- if (!xc || !yc) return b ? 0 : !xc ^ a ? 1 : -1;
-
- if (!b) return k > l ^ a ? 1 : -1;
- j = (k = xc.length) < (l = yc.length) ? k : l;
-
- for (i = 0; i < j; i++) if (xc[i] != yc[i]) return xc[i] > yc[i] ^ a ? 1 : -1;
-
- return k == l ? 0 : k > l ^ a ? 1 : -1;
- }
- function intCheck(n, min, max, name) {
- if (n < min || n > max || n !== (n < 0 ? mathceil(n) : mathfloor(n))) {
- throw Error
- (bignumberError + (name || 'Argument') + (typeof n == 'number'
- ? n < min || n > max ? ' out of range: ' : ' not an integer: '
- : ' not a primitive number: ') + n);
- }
- }
- function isArray(obj) {
- return Object.prototype.toString.call(obj) == '[object Array]';
- }
- function isOdd(n) {
- var k = n.c.length - 1;
- return bitFloor(n.e / LOG_BASE) == k && n.c[k] % 2 != 0;
- }
- function toExponential(str, e) {
- return (str.length > 1 ? str.charAt(0) + '.' + str.slice(1) : str) +
- (e < 0 ? 'e' : 'e+') + e;
- }
- function toFixedPoint(str, e, z) {
- var len, zs;
-
- if (e < 0) {
-
- for (zs = z + '.'; ++e; zs += z);
- str = zs + str;
-
- } else {
- len = str.length;
-
- if (++e > len) {
- for (zs = z, e -= len; --e; zs += z);
- str += zs;
- } else if (e < len) {
- str = str.slice(0, e) + '.' + str.slice(e);
- }
- }
- return str;
- }
- export var BigNumber = clone();
- export default BigNumber;
|