{"maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"blackhole@livebox.sh"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"jprichardson@gmail.com"}],"keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"dist-tags":{"latest":"5.2.1"},"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"description":"Big number implementation in pure javascript","readme":"# <img src=\"./logo.png\" alt=\"bn.js\" width=\"160\" height=\"160\" />\n\n> BigNum in pure javascript\n\n[![Build Status](https://secure.travis-ci.org/indutny/bn.js.png)](http://travis-ci.org/indutny/bn.js)\n\n## Install\n`npm install --save bn.js`\n\n## Usage\n\n```js\nconst BN = require('bn.js');\n\nvar a = new BN('dead', 16);\nvar b = new BN('101010', 2);\n\nvar res = a.add(b);\nconsole.log(res.toString(10));  // 57047\n```\n\n**Note**: decimals are not supported in this library.\n\n## Notation\n\n### Prefixes\n\nThere are several prefixes to instructions that affect the way the work. Here\nis the list of them in the order of appearance in the function name:\n\n* `i` - perform operation in-place, storing the result in the host object (on\n  which the method was invoked). Might be used to avoid number allocation costs\n* `u` - unsigned, ignore the sign of operands when performing operation, or\n  always return positive value. Second case applies to reduction operations\n  like `mod()`. In such cases if the result will be negative - modulo will be\n  added to the result to make it positive\n\n### Postfixes\n\nThe only available postfix at the moment is:\n\n* `n` - which means that the argument of the function must be a plain JavaScript\n  Number. Decimals are not supported.\n\n### Examples\n\n* `a.iadd(b)` - perform addition on `a` and `b`, storing the result in `a`\n* `a.umod(b)` - reduce `a` modulo `b`, returning positive value\n* `a.iushln(13)` - shift bits of `a` left by 13\n\n## Instructions\n\nPrefixes/postfixes are put in parens at the of the line. `endian` - could be\neither `le` (little-endian) or `be` (big-endian).\n\n### Utilities\n\n* `a.clone()` - clone number\n* `a.toString(base, length)` - convert to base-string and pad with zeroes\n* `a.toNumber()` - convert to Javascript Number (limited to 53 bits)\n* `a.toJSON()` - convert to JSON compatible hex string (alias of `toString(16)`)\n* `a.toArray(endian, length)` - convert to byte `Array`, and optionally zero\n  pad to length, throwing if already exceeding\n* `a.toArrayLike(type, endian, length)` - convert to an instance of `type`,\n  which must behave like an `Array`\n* `a.toBuffer(endian, length)` - convert to Node.js Buffer (if available). For\n  compatibility with browserify and similar tools, use this instead:\n  `a.toArrayLike(Buffer, endian, length)`\n* `a.bitLength()` - get number of bits occupied\n* `a.zeroBits()` - return number of less-significant consequent zero bits\n  (example: `1010000` has 4 zero bits)\n* `a.byteLength()` - return number of bytes occupied\n* `a.isNeg()` - true if the number is negative\n* `a.isEven()` - no comments\n* `a.isOdd()` - no comments\n* `a.isZero()` - no comments\n* `a.cmp(b)` - compare numbers and return `-1` (a `<` b), `0` (a `==` b), or `1` (a `>` b)\n  depending on the comparison result (`ucmp`, `cmpn`)\n* `a.lt(b)` - `a` less than `b` (`n`)\n* `a.lte(b)` - `a` less than or equals `b` (`n`)\n* `a.gt(b)` - `a` greater than `b` (`n`)\n* `a.gte(b)` - `a` greater than or equals `b` (`n`)\n* `a.eq(b)` - `a` equals `b` (`n`)\n* `a.toTwos(width)` - convert to two's complement representation, where `width` is bit width\n* `a.fromTwos(width)` - convert from two's complement representation, where `width` is the bit width\n* `BN.isBN(object)` - returns true if the supplied `object` is a BN.js instance\n\n### Arithmetics\n\n* `a.neg()` - negate sign (`i`)\n* `a.abs()` - absolute value (`i`)\n* `a.add(b)` - addition (`i`, `n`, `in`)\n* `a.sub(b)` - subtraction (`i`, `n`, `in`)\n* `a.mul(b)` - multiply (`i`, `n`, `in`)\n* `a.sqr()` - square (`i`)\n* `a.pow(b)` - raise `a` to the power of `b`\n* `a.div(b)` - divide (`divn`, `idivn`)\n* `a.mod(b)` - reduct (`u`, `n`) (but no `umodn`)\n* `a.divRound(b)` - rounded division\n\n### Bit operations\n\n* `a.or(b)` - or (`i`, `u`, `iu`)\n* `a.and(b)` - and (`i`, `u`, `iu`, `andln`) (NOTE: `andln` is going to be replaced\n  with `andn` in future)\n* `a.xor(b)` - xor (`i`, `u`, `iu`)\n* `a.setn(b)` - set specified bit to `1`\n* `a.shln(b)` - shift left (`i`, `u`, `iu`)\n* `a.shrn(b)` - shift right (`i`, `u`, `iu`)\n* `a.testn(b)` - test if specified bit is set\n* `a.maskn(b)` - clear bits with indexes higher or equal to `b` (`i`)\n* `a.bincn(b)` - add `1 << b` to the number\n* `a.notn(w)` - not (for the width specified by `w`) (`i`)\n\n### Reduction\n\n* `a.gcd(b)` - GCD\n* `a.egcd(b)` - Extended GCD results (`{ a: ..., b: ..., gcd: ... }`)\n* `a.invm(b)` - inverse `a` modulo `b`\n\n## Fast reduction\n\nWhen doing lots of reductions using the same modulo, it might be beneficial to\nuse some tricks: like [Montgomery multiplication][0], or using special algorithm\nfor [Mersenne Prime][1].\n\n### Reduction context\n\nTo enable this tricks one should create a reduction context:\n\n```js\nvar red = BN.red(num);\n```\nwhere `num` is just a BN instance.\n\nOr:\n\n```js\nvar red = BN.red(primeName);\n```\n\nWhere `primeName` is either of these [Mersenne Primes][1]:\n\n* `'k256'`\n* `'p224'`\n* `'p192'`\n* `'p25519'`\n\nOr:\n\n```js\nvar red = BN.mont(num);\n```\n\nTo reduce numbers with [Montgomery trick][0]. `.mont()` is generally faster than\n`.red(num)`, but slower than `BN.red(primeName)`.\n\n### Converting numbers\n\nBefore performing anything in reduction context - numbers should be converted\nto it. Usually, this means that one should:\n\n* Convert inputs to reducted ones\n* Operate on them in reduction context\n* Convert outputs back from the reduction context\n\nHere is how one may convert numbers to `red`:\n\n```js\nvar redA = a.toRed(red);\n```\nWhere `red` is a reduction context created using instructions above\n\nHere is how to convert them back:\n\n```js\nvar a = redA.fromRed();\n```\n\n### Red instructions\n\nMost of the instructions from the very start of this readme have their\ncounterparts in red context:\n\n* `a.redAdd(b)`, `a.redIAdd(b)`\n* `a.redSub(b)`, `a.redISub(b)`\n* `a.redShl(num)`\n* `a.redMul(b)`, `a.redIMul(b)`\n* `a.redSqr()`, `a.redISqr()`\n* `a.redSqrt()` - square root modulo reduction context's prime\n* `a.redInvm()` - modular inverse of the number\n* `a.redNeg()`\n* `a.redPow(b)` - modular exponentiation\n\n## LICENSE\n\nThis software is licensed under the MIT License.\n\n[0]: https://en.wikipedia.org/wiki/Montgomery_modular_multiplication\n[1]: https://en.wikipedia.org/wiki/Mersenne_prime\n","repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"users":{"ferrari":true,"erikvold":true,"leodutra":true,"thejeshgn":true,"langri-sha":true,"nickleefly":true,"ruiquelhas":true,"seangenabe":true,"antimatter15":true,"thejeshgn.com":true},"bugs":{"url":"https://github.com/indutny/bn.js/issues"},"license":"MIT","versions":{"0.1.0":{"name":"bn.js","version":"0.1.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"f84d2ec045bdd4cc0513de8ad4ea84dfeb8b1941","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.1.0.tgz","integrity":"sha512-oSidV8I8Uidb8rO2f63LQ0J1TIGxoqUd/4mn4F4+HHXaBhO9bHk3IFcs0MfVVPz5XmboSS3LHlrLTqahgsEVWA==","signatures":[{"sig":"MEUCIDw/JeASjZn/flrdM1gyyftZkuZpPM4SYNyY+2c9qYreAiEAmsWIBmHBu5P4cffxRGxUZJz2UIzVL0A7BhgT1f8ui7g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"f84d2ec045bdd4cc0513de8ad4ea84dfeb8b1941","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.1.1":{"name":"bn.js","version":"0.1.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.1.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"5afef3393cd9d4c85b65f68c013a7695bef1a90a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.1.1.tgz","integrity":"sha512-kwa+KszS8CUsdX3FZhBtEwNFb6ClQB3zeImKj36L6xSKIMZDDE3Z63kAIl8FLpUMIBTy7cNIV8gAGn06QQ95fw==","signatures":[{"sig":"MEYCIQCXdnZeLLH+BcLlXtfGESeFpQml/1ehwAx/XDd1GGqK9QIhAKaKRnFlAz1VMLBOIjFRQjfkU+NzQwqmi3+UEsRPKZF9","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"5afef3393cd9d4c85b65f68c013a7695bef1a90a","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.1.2":{"name":"bn.js","version":"0.1.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.1.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"04b88b9f38fdff6fd54a64ed6813144b0e1b6bef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.1.2.tgz","integrity":"sha512-Phgtq/d3G0M4PrQmLcg23xSvN654jR5+0dK243Aai3QTibWXXgpv6c4o2W8pYIcFMoD8SMEbHX4ee/a7f/dXTA==","signatures":[{"sig":"MEYCIQDTViZIF4AIiWUhRDN5iH4mbKsErECituI5LeaHT4MchgIhAIcAZYIdK/DQCk0evf27mJ6mhGIkkbmph+MkpagkwP8s","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"04b88b9f38fdff6fd54a64ed6813144b0e1b6bef","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.1.3":{"name":"bn.js","version":"0.1.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.1.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"f3b9c51881c104d50854aae94d6c616ef11c5fd9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.1.3.tgz","integrity":"sha512-SMCxcEZW0gGNuaEbAD5fQqzcZE6xMCuj3nku2E5U6TvijBoY0vTeokvPI+yj6eNTwK4nhTMu5GIYr47oSKATig==","signatures":[{"sig":"MEYCIQD88x2muscMdwWrgKiLNkfsx1uD7UxN9Z0SXimJNcRFHAIhAIvUepnlxaSAx7G1OrVQWOvFA9vPc7md/wOic0cejQtZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"f3b9c51881c104d50854aae94d6c616ef11c5fd9","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.1.4":{"name":"bn.js","version":"0.1.4","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.1.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"3248e2c78aa4a74acdfff9b2d36d0bf2588f28a2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.1.4.tgz","integrity":"sha512-PbvCrACquzvI2fdRKSQTmtjikLzRtIbJK+uWGBrRf6N8vjhFH4eH1EfzB9s2+4UL0dpXBzJfI+giobIyhwkglA==","signatures":[{"sig":"MEYCIQCPpnZHYKn5IHdVXsDQY4aDZAxoqP7s/wKre+s/s/aNswIhANoJGKgSbpMhUYqcf+qHRv8tEX3h94tQmdKHpwS+vTW4","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"3248e2c78aa4a74acdfff9b2d36d0bf2588f28a2","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.1.5":{"name":"bn.js","version":"0.1.5","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.1.5","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"e5cfb803b073351d0aa2023167cfa44b2409f69a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.1.5.tgz","integrity":"sha512-lrX3CxYACBiYu8xwsQvvYjb7mCiLODWWct1FPxJmJ071yfzZxWfisI8LsLBtAh1ojA7wcI9coeLjn53Cyq/ceg==","signatures":[{"sig":"MEUCIQCG9u6wLW0XbPNgv6LSyUyOR/jNpTIB/Mqiwpe/J5/VDQIgf9WhubJH7HCKdZSiWz8CEV29+sWU478jSS30eSMP8V8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"e5cfb803b073351d0aa2023167cfa44b2409f69a","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.1.6":{"name":"bn.js","version":"0.1.6","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.1.6","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"9323232e200d36b2117a2d384e83352a6795ac9a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.1.6.tgz","integrity":"sha512-BTEWmWCUYAIHkqWNhdawbX9ejtC34+fX6qpNwIxFBjoIptmyKQKEOpa+SgtZeCUqDUe1bn1BqShE1RlIXJvYjg==","signatures":[{"sig":"MEYCIQDFv1EkurAlshqeeYFp7xOLnS4qzD/Djg6fKtlJshQViAIhAPmRsrxBH4NYQOUAYaWmqSJ0b1D7CvIErk+okZlISq7X","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"9323232e200d36b2117a2d384e83352a6795ac9a","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.1.7":{"name":"bn.js","version":"0.1.7","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.1.7","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"73c61ccd47656b084f3989346b5d1c51af412afe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.1.7.tgz","integrity":"sha512-wRTmi1dVVQ8tkOyt0gmL6bwzFrMBSNuAhTrUPYWF52Miv75wduCU/1+GK7HOvPxoQ8W3eAxp4QzS3CBZjFVlEQ==","signatures":[{"sig":"MEYCIQCVu7ABw9YEB8m5pO/fEMKdTZR+AfZrKU+qvwLJOQwJ1wIhAPxVLOsn/zCL3n7MSgX04ezO00llVxHHSE0CNmNvgaNs","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"73c61ccd47656b084f3989346b5d1c51af412afe","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.2.0":{"name":"bn.js","version":"0.2.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.2.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"37ab22ba8da3a0fbfb226c935c6283b67e606ca0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.2.0.tgz","integrity":"sha512-aw4/T50yqYLHMNOKf+qzh8Qziu6+pMJmGQHohY8iXU4f5xIIhe0JLPNfVgo0cmO/Nbpt+/T5r9j5LWdiN9wD9A==","signatures":[{"sig":"MEUCIQDqqkQPokHtJDAkEkXFJYAR39tXGY82kcdm1+bTn6hOaQIgBfWFjRdouzw8Wo2CThZWySQQMbOxRHT8ZCQfJ1HJBkg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"37ab22ba8da3a0fbfb226c935c6283b67e606ca0","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.2.1":{"name":"bn.js","version":"0.2.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.2.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"e8b156a4754e58f636009b9e51e1022856aa30e4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.2.1.tgz","integrity":"sha512-BHuDL+7pmbLK9BnXhUTTRpEiFGY0KTO4AmuMlarCbx77Gwq8C1Z2BNKAR9CplB5jG9X2fioOX/4aobiCipJ0IA==","signatures":[{"sig":"MEYCIQDEYafNqPpgAgz1MVWyOS1B/nxD2HqGVG8snTUYzIRLXAIhAP0jBCJoAvEOD4rXqrXJQBF0zYHJF+oYW2HcbB/0Etbc","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"e8b156a4754e58f636009b9e51e1022856aa30e4","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.2.2":{"name":"bn.js","version":"0.2.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.2.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"4ce53679e69a3be43ab0c8e5278c07e7f177a5e7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.2.2.tgz","integrity":"sha512-bJbgU3219Q6jDF2X8wh4OV0T3Y8b7hxaGoYjW6BfJLW0m4XvClFTrnUYFe/tF9A//8l8N5GCI72qZv/DV7NtZw==","signatures":[{"sig":"MEQCIDf4GaCGdAU6hXWDzMT1qPUWGt9bIrhEox6vW99eNNdIAiBQzuhHFsza4TL0EjrB2PkfOiYHmkL9BrUaW8dTUb5XgQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"4ce53679e69a3be43ab0c8e5278c07e7f177a5e7","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.3.0":{"name":"bn.js","version":"0.3.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.3.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"5ff529ddaacb88d8c8b9a747b844b7bb7c61bf06","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.3.0.tgz","integrity":"sha512-CvmC17x/naYogpV0wDxG5mTbUxJgqgObOKoYDgQnk2ZJMIZKD30QqdE2NjY5cdWt4+/dpUIu8EOGXHwRh4gpGw==","signatures":[{"sig":"MEUCIQDB06VSLLFLBaZw7MYodGKhYxMpY9j/GOaq4eVzF6rWfgIgUE7fUFDkRRK/LQs1gE67mk85W5cR8DMUz1Nyc7yWsPA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"5ff529ddaacb88d8c8b9a747b844b7bb7c61bf06","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.3.1":{"name":"bn.js","version":"0.3.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.3.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"0250ea3bd957619cac0db864fef8f007f74ac1ba","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.3.1.tgz","integrity":"sha512-ZVsG6MZqOcb38UbkW2J3WURs9wciunZsgFhdYaXQhDm6IfsrZc+VsD3uzv9NI9kJ412h9wDssNqu1Evzm/XO7w==","signatures":[{"sig":"MEQCIFote1bfk5m9OmhMQe+8grDV87ZEKqocf5SI6kYTTycMAiAKeaCwYgdQxWqVHR7CzD2SieaeB58aZxqrvpTNiSdybw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"0250ea3bd957619cac0db864fef8f007f74ac1ba","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.4.0":{"name":"bn.js","version":"0.4.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.4.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"4ded6119c06e20a992e1b0f7b12d727bed504b3a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.4.0.tgz","integrity":"sha512-TwE1hPWZKIH8hHXi4qpbRc0A5REsqnYHbmf0cvPuqgUWOLFgeERPbG38fw9puF3kuU0BzBwIpUNVFO0O2RpJYg==","signatures":[{"sig":"MEUCIQD8O34jtcWqXVDivuZ/4vspA54m3ZfT4AqE6znMmSFH/AIgOn2jZ9LwCNFPaeLHX1NByEGYBqNJvRZXfGEd3DTjrA4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"4ded6119c06e20a992e1b0f7b12d727bed504b3a","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.4.1":{"name":"bn.js","version":"0.4.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.4.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"c40b142b262e25006581f88e2c63b85ad935b10d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.4.1.tgz","integrity":"sha512-95AunVHdwEAqOvTKcfdzFZBIz30i6tWSbOnlxUJ2WBYjWctMyDxBqJw8FsbrhMY2BOcks5SU47ybRNcwtrlvzw==","signatures":[{"sig":"MEYCIQDT5t1CLXb6+qpwP9Ca5IjcYv0KEx+YbBSotGUNLHfbPgIhAPsaUqEazXVylYsmgDGrxItUR3tFJI7xQoA8VbGHRmYj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"c40b142b262e25006581f88e2c63b85ad935b10d","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.4.2":{"name":"bn.js","version":"0.4.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.4.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"70ffd0ca1d96dc1fd7f52a8e7ab1735cf72e9e7c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.4.2.tgz","integrity":"sha512-LQd08szX/VmvToFe5GbvaVGNwyPzM4wojicPRi1eYuwgodqlg7onjv4f+uVZlYpqMEVrtD4LvtKuDc9haCyPGw==","signatures":[{"sig":"MEYCIQDCAp+rZWLgM7sr6l5nbkw7I96ulX4OBLLC2Bemfs0MKgIhAJybnd2YzTlTymPqjaCENWUsNW7wHqRehosHQtrpBJu1","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"70ffd0ca1d96dc1fd7f52a8e7ab1735cf72e9e7c","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.4.3":{"name":"bn.js","version":"0.4.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.4.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"7ceb6014ad1233aeef96177f4482c0c5b3d11715","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.4.3.tgz","integrity":"sha512-hX8SqONF4C5zKz1XKMxRGPVSDHpX7Pxf1YqPSBLW6caEF1r6wvGIoGf0m66lSRvk3/1LgIauQ/Bttzv0Njv9uw==","signatures":[{"sig":"MEUCIDuPm43KKaFCOzbwe5h22HXHHlhnjSdeP3W691B6P5YzAiEAzTS8PJFT6JMNSthju/UmhWnIX1j+oXYcaPkK+VRpw3g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"7ceb6014ad1233aeef96177f4482c0c5b3d11715","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.7","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.4.4":{"name":"bn.js","version":"0.4.4","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.4.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"de75bf4b0e529da86588ecf905e05266a2c50987","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.4.4.tgz","integrity":"sha512-ikKtp+epMcZhxOCcsBaXgcZ5KolhMAG0XugJPZ2LUCQWR0CmM/i5MJ1iur/BXpPVnHQSrfjCFPZLkprZz1tRNQ==","signatures":[{"sig":"MEYCIQCisSZDDKswey7YWggSk2crd7eiTxac0TeIaTOudEojzwIhAL3/xIns67Tbh7DkLyMQ0JViih2bNvKiSqDWWj+w7+7g","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"de75bf4b0e529da86588ecf905e05266a2c50987","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.10","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.5.0":{"name":"bn.js","version":"0.5.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.5.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"ea39b8377fe9502d2da8d9d397a764ef7b6939e3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.5.0.tgz","integrity":"sha512-OUzbisyTZlOQszalTqqBzJutETbQsWAWWEObUPX5NzQgZnNCMgaKRtiSp5ejS43x+ha1TZwNNtJ0LjfdgmzuDA==","signatures":[{"sig":"MEUCIQCkbellD9LdkHHccq3bF8GA6CbMOaLsukhou5hCWqfv2wIgE2itw1heuUjlUJF6G1XPr4Rc1HEmt79nQMGI6uWkOVU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"ea39b8377fe9502d2da8d9d397a764ef7b6939e3","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.10","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.5.1":{"name":"bn.js","version":"0.5.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.5.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"15eb1df6b3321fc397e0774e51b8f7ecabde2332","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.5.1.tgz","integrity":"sha512-orJ8JyTP6HVrkRZlUM4XKK/lGRrx3w9nXGThvc75CMBYMn7nl9983l2xg9o9Twh2+nqbuvqes4mhyW32EMgFsg==","signatures":[{"sig":"MEUCIH3qIQOPQT/GYM+NZtMYg1lxcikBbpUip2BKNRJ2VGcuAiEAhbkVbLV77qoVC8GsZw9YOI0EGWt6dS+ePfkSTvXxDRQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"15eb1df6b3321fc397e0774e51b8f7ecabde2332","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.10","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.5.2":{"name":"bn.js","version":"0.5.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.5.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"bc636c01716148c61765a90f7aab8074a5c8128b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.5.2.tgz","integrity":"sha512-O2mAXkrOEj6xRlIKp/QfrH2JrcjG1GsUvD14AHxqZ+eS4oYttzzFgqDam2/KdrmQh6876KYYyWNT+HVyXRAsiw==","signatures":[{"sig":"MEYCIQCYmbnopTkigMduJJCKTD9/aVqd2q1LHxfigmcm4EgLWAIhAJr8p7cU6+DEQFhshirQMWvMy04HVPvgPE18GUcEqt/V","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"bc636c01716148c61765a90f7aab8074a5c8128b","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.10","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.5.3":{"name":"bn.js","version":"0.5.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.5.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"4f8a69ac49b34009852d99a4751e2d7af45c80b3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.5.3.tgz","integrity":"sha512-9X/4LBp3YBMN1E9r4xHqD3d7zvM6K8sdBzyZPVTFeSQcPeJBIN0ebSWn+kn436FP3By9B+2LCxS85jetn4Z+1w==","signatures":[{"sig":"MEYCIQCcV1ssKNGVSLsY8yFL5C4XoJcZcLGqWIxVgQX7xXsndwIhAMb8XsiZ1KwC0UZrHqMwynuy64Mx+WGuStnab4yck2OK","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"4f8a69ac49b34009852d99a4751e2d7af45c80b3","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.10","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.5.4":{"name":"bn.js","version":"0.5.4","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.5.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"46882b5e6a8b4c68c32b78061c7cb8a1bc7f91b8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.5.4.tgz","integrity":"sha512-aN/tuTLKZMjZWvdOyk8vbIJaDKQTkAG/NUCOucDJ7LycS2bIMgv1cX24luwTN+fnwPgG+KL65/WLC4gf1hd2YA==","signatures":[{"sig":"MEQCIBPWf+WIlNTJ325BVln8bBhC/I8uXVMgmL5V8WLDdwfCAiBC6nzYFZv15fw+gMVS5vNMQ6FRZOOzPEPlrwUcYtK9KQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"46882b5e6a8b4c68c32b78061c7cb8a1bc7f91b8","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.6.0":{"name":"bn.js","version":"0.6.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.6.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"4467c0e7efe7a6c08e19c12b6d12c897c3a3cea8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.6.0.tgz","integrity":"sha512-lgp2E7boAnglmj/TALSMFuMdRXzD15Y8nYARWkraGy8Frkc5Nr6Sgfcs+VCMZk2Qd1rrb8d9WyyjZuRtmNmwTA==","signatures":[{"sig":"MEUCICZ1Ffrd22MXihMtGKS4ZcP4a5CG8JMBeSrWDVmb7EEKAiEA+Vs3uRaszqiIjmBDOwl+HNtPz4nQySJ10gZgq71ue4g=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"4467c0e7efe7a6c08e19c12b6d12c897c3a3cea8","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.7.0":{"name":"bn.js","version":"0.7.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.7.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"5e6575294229d7cde9ed0b09826c475a730f851e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.7.0.tgz","integrity":"sha512-wepO3AmIpD8TcPA0lPvHCpYacyRq4jEvJvhntghBQjEaohOSm1q4lllXkFdrjdvcO43Wd8N/u/G1jKbWmRRJyQ==","signatures":[{"sig":"MEQCIDdSpSiA7IbRXiFIlQiXZVZILnxs7oReBixnopqJkaD+AiBlqqpzS5d125KBFhV8FxkL2wnLlZJ7wLv/8lMKMkzLxA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"5e6575294229d7cde9ed0b09826c475a730f851e","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.7.1":{"name":"bn.js","version":"0.7.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.7.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"7ae54498718445caa319f1cfd29dfd89ef3d431c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.7.1.tgz","integrity":"sha512-ZXeZZ6qOPoAZWRfCglq6SRBje/qyNN3QSgqEP9oIma4VLjNNia1fAURldnEQCXRuHnfvJ6N1DTU7KQc6+i2Ugw==","signatures":[{"sig":"MEUCIBkpwkgmVRgK1MDtopZdUkN5XNjmV6aSNQZaIFcyis06AiEA3nszzMeJN5ovy3ddu/AtEX202lTvxHHlPCCy6IX/fnQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"7ae54498718445caa319f1cfd29dfd89ef3d431c","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.8.0":{"name":"bn.js","version":"0.8.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.8.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"61b62da5efc982d482f742dad2c8b80159d77008","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.8.0.tgz","integrity":"sha512-xJVyMgdicjevLs8HUbIOmIiugM2UxFyrnPN/+Qkytnznd3hyz/hjTIgACEn+Bawzs6ZsC1rr+QovokY4MjvW5w==","signatures":[{"sig":"MEQCIG+cAGnImloxJsXQZLlG/wGzB99Tjz0jZHqWMfaFb//WAiBoFkzbRmRw19wnoMPiuXs4OLlSGsA62ddKrtf678mpkg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"61b62da5efc982d482f742dad2c8b80159d77008","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.8.1":{"name":"bn.js","version":"0.8.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.8.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"0fd50fc287c2b8f24fc0383623de2ddffb9440ad","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.8.1.tgz","integrity":"sha512-q/9ebxDL7Oh/3inIeXpLVzphd8ugHvXfBhNvC5Ep9E5nnD4OupSMI2DJO1fzrTKq9v9A95uiEth1qViqBuH24w==","signatures":[{"sig":"MEYCIQCpgioKkPhlAxOaMJwY0ssjPn2EG+Z2mMxIpEuP3eRSGQIhAI3XGR0KRWlwiAdZHhWpwG68QEXpwb4cnhemI0FH4Ytz","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"0fd50fc287c2b8f24fc0383623de2ddffb9440ad","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.9.0":{"name":"bn.js","version":"0.9.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.9.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"808464cfcd06a2c8a25aeaa46d670948e46fabae","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.9.0.tgz","integrity":"sha512-0xLuUZn4Vsk/jtqioOiHWTamqpbAwocUVjnbMafD7ysBddhRszWUt9fwu4xb6NqoAV2lqQotXZ3vVhLogLCiZQ==","signatures":[{"sig":"MEUCIQDsCJcguDk2O0bJUQqgC04986LSzuPhdnClNRlSIGVZdAIgQxwzo4mPpTslSLRPimdos/uNtI1nHxeKcOQjc3BmfPM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"808464cfcd06a2c8a25aeaa46d670948e46fabae","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.10.0":{"name":"bn.js","version":"0.10.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.10.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"e2fd7835a6ff4eb0653404e1eb6795ce5063180a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.10.0.tgz","integrity":"sha512-Yz6UjIuzWjZpmJ+Q9Xr1BLdqbEQStHj/7dhgL3QhUgYVgOGOzDd+hcEHuSbtJPfPSqnVTnsThpGkwd3s4RwHcw==","signatures":[{"sig":"MEUCIE9dFcnEi9Ra+1ayIskm3ZjcZsWLWD9LLjZDRybl4Ll5AiEAi6NPM+AXEELNUGPaCpURq2Io6yKFnyvdcVs3aqd4ejs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"e2fd7835a6ff4eb0653404e1eb6795ce5063180a","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.10.1":{"name":"bn.js","version":"0.10.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.10.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"fd1416194ac1b12a7bf096341103214258e68fef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.10.1.tgz","integrity":"sha512-aLrnIcnaeFsJzNdguw6G/xjbmr3VKZNjHh1hYCnCE7K8/8g8ZvXiLhRUMwXNX/+ge83s82FCTiUM7uLfssXGnw==","signatures":[{"sig":"MEUCIQCNy0pAup7ICyLoA4rzxxbTl+AA4oNk8Y7iqVolB3Nh7AIgKGW+fG1N6aVdALQGk0OMnFToUrhCs63CCO2xE1a216I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"fd1416194ac1b12a7bf096341103214258e68fef","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.11.0":{"name":"bn.js","version":"0.11.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.11.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"a47da9f1fb3d0ec84ca267dc3b0e63c206aafb6c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.11.0.tgz","integrity":"sha512-fYdlPInpPWJ7jm/T8UGoKtUCFohawrA8XyGb5GBZrRf3A67n5/7IcVkZmQO3jNnymwUzMjochNeb8rsZzTo6qg==","signatures":[{"sig":"MEYCIQClZ5GT2hukvoEIvcX3mT6wnu5o+pNeklQy9n21AZjCvwIhANXlsg8wwwAqB4HK1vO74Zp2/OZG67VRB69f9Oz/3sVQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"a47da9f1fb3d0ec84ca267dc3b0e63c206aafb6c","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.11.1":{"name":"bn.js","version":"0.11.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.11.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"4e6c9659794e1a3923c25c0ccd82cd0320f9c597","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.11.1.tgz","integrity":"sha512-l+TsY5uIzBhghA4iJ0EIxLH6gjXe4SkVx8OOshl61kSl47gTl37VSJl3mNKrp7HH+B1eqqX9mMBfqh0UWpfOtQ==","signatures":[{"sig":"MEYCIQDa0Xf7S4SSFE+2jM6Zipe+xCKLTJ2YxASewHj73DQKbwIhANud7m9TkEmgTYJpGKmeUNL2QgfZ1nji262fGU2lf9LE","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"4e6c9659794e1a3923c25c0ccd82cd0320f9c597","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.11.2":{"name":"bn.js","version":"0.11.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.11.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"981ad5439c0eae102e30687eb0d14f24001d26c9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.11.2.tgz","integrity":"sha512-Sgbk5wtqxulDCqwSXuh3kTrkyzruiGLoTW4XGkSdyOfAxGE5fX2qwYFAv6DsOgpha1NoHUz73w6+y2UHzR4/LA==","signatures":[{"sig":"MEQCIFdlWaIiv7kzP3vTT6PyiY94TVaThgThK28uqNCwDRyXAiBMLOur4ZY9lEyrVguzfKsu2x5wQNld43dgoo1JFWodyg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"981ad5439c0eae102e30687eb0d14f24001d26c9","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.11.3":{"name":"bn.js","version":"0.11.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.11.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"527f4bfb8a16c6298a7684678939ad08b66203a1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.11.3.tgz","integrity":"sha512-9Rp/iUIhnxzzCVc5UGjS2UJTcpq1CLuKGQ+VH089sZ/LslZhdrQb2AOnY1NlQLs09SUsgXxn/AToEW3OQgsaMQ==","signatures":[{"sig":"MEUCIDHU5TuqNj5PtF08PqCexF2RSoCrFIzwJ7T2c8U6lFkHAiEAqOVNqv0ZaQXFug+FshDxUr9uyHT+9Gd0ae2xb9nAyjI=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"527f4bfb8a16c6298a7684678939ad08b66203a1","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.11.4":{"name":"bn.js","version":"0.11.4","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.11.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"c3107d589e3fe057fa92b70cdc86e7b4025c85a5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.11.4.tgz","integrity":"sha512-Eeqgq6W8/EwpxNOhlUpi3WK0wfU53tIrR+RfBodNaES3+9jLoTSR3FnS+x5I/FiBZtqyJEi29EmRP1dIMXHjnQ==","signatures":[{"sig":"MEQCIHNYpEoCFbNILJyhmn17U728CLnKXveyN89cCNGbt6yVAiBQ3X8cCdXyfQg68tJV+B0se8Nq9EhJES+T2bu2I4xKSA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"c3107d589e3fe057fa92b70cdc86e7b4025c85a5","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.11.5":{"name":"bn.js","version":"0.11.5","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.11.5","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"e48368dc4e1b25025cb6ff747cf7229a256826ff","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.11.5.tgz","integrity":"sha512-QitZBhCGh8YG3A//JRiGOnlO9Iqh5WDJjCI6ZJ1cCpZMQcZE+JSIYWYBHa+UQZ/jaLfjuIP/ZM5k6vUmD7mqJg==","signatures":[{"sig":"MEUCIQDK1fSqEsksXK6UkQzjBxilGR8h4Jo6gzc+jofU2kKQQgIgV9bWP9IgVggaPKND1/7YIDNTz+KRPCsesEe8o2vD/jY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"e48368dc4e1b25025cb6ff747cf7229a256826ff","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.11.6":{"name":"bn.js","version":"0.11.6","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.11.6","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"ec5fc50991ac298970b7e1cb7ba58382e4b940e8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.11.6.tgz","integrity":"sha512-wYGwkdY8nMWNGEa1Zax2/W2fe88malrvEF9npY3t7mDJKxe+s64poa17GOfgU937i84wOxFS8BdsOIl1y+ywAA==","signatures":[{"sig":"MEYCIQDuHOKkaHade9rPTkKvVDWLESE0NK4JyC6PNZtFX+ZxrAIhAL/Ty50Icg+R1nHnvuxcSrezXDPk1OP2h69D7sPmsrFe","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"ec5fc50991ac298970b7e1cb7ba58382e4b940e8","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.11.7":{"name":"bn.js","version":"0.11.7","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.11.7","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"7c5be037ccd45afc3136c7af92466c93d4ce5a56","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.11.7.tgz","integrity":"sha512-kVLDs5Fq6MgK51tDdvrKYRVeXXVITh923B2ozxamBGqboEF1Ti81IYoHOhtaA8EVD0VhYsTUrXi35Ri5Q516fw==","signatures":[{"sig":"MEQCICt16XbIiI1bomyVlAN+ZoZMpx3XgKKh5/+rQv5dTBPrAiBSYzB6tjamqh1oYzuxWGIluPpWT+/TplSUPrLUaiNrSA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"7c5be037ccd45afc3136c7af92466c93d4ce5a56","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.12.0":{"name":"bn.js","version":"0.12.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.12.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"ce6646bd82cbbfdd5f7b7ce5522f3c3360b85214","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.12.0.tgz","integrity":"sha512-mXd8e/hEuLCCSavg6Zob2yYXSUftXZeXZqChcPgLjvOI/oRLLMi59BZn5X8O8PyqySKdRzMlzQiMBTnIJBUV9A==","signatures":[{"sig":"MEUCIQCP78yIoEY7S9fEu69YzpCaZBuuerevtk2LzKCs0kQ6vAIgLHx9wQi8iHMh9Z3PbSz0zK3f71vdGZn7vTYscKJuDeA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"ce6646bd82cbbfdd5f7b7ce5522f3c3360b85214","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.13.0":{"name":"bn.js","version":"0.13.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.13.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"c5b43590d6bd89f93d663c23df9400abb234be20","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.13.0.tgz","integrity":"sha512-So30vrj9lXwOMMwzEfCf5/YaSh8d3KO2toiWUXXJ2f9hRJtsvrfRo2rGS3WjKg0IqgUaS9x3aBDKftFIQxluAw==","signatures":[{"sig":"MEUCICmm+KFRqGu2AhCgo5BQJAHtBOJLVZUheWSJtqls7HpUAiEA6joLdEmtca1QVLXy3s0xw3wYqeadpb8QY7bmqlsmzF8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"c5b43590d6bd89f93d663c23df9400abb234be20","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.13.1":{"name":"bn.js","version":"0.13.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.13.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"996073b90419167146f9cfc0747e6f4f2858e87c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.13.1.tgz","integrity":"sha512-R5JqH50zSPEtbAb1efHe/a1xOie/QnfEVX9vqg5C/XnyW/Jvb5Vn4MBz65KAX9+gQu9y/0ura3Ywj7Tb6J+VvA==","signatures":[{"sig":"MEYCIQDrU+Uv7xa3Dum1y2vk8cyI86oRkZ7zaoLoIfuIabPytgIhAPB7eY1yFUqOzYE65HnDXQVrKp14W5edGF1ySsY36nyW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"996073b90419167146f9cfc0747e6f4f2858e87c","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.13.2":{"name":"bn.js","version":"0.13.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.13.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"84020e7362df295b211e8ae10c2937cb78e5795d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.13.2.tgz","integrity":"sha512-F6OXp812NYv9DW/pYitcjdbDTkpLN3zBQ4SYSCWfgkhdj0EQgUgnfE/Wti3yGYUrAXZS5PCZ6AQWR/aqZ3zyNg==","signatures":[{"sig":"MEQCIHN5UfxxbCfdlp4KdR89ZzJ61nge3UiFAMcnwGnBQvSMAiAxjR3Hmcu3VzsLqjGEGsEqA++l5Hh5UWmUNvjkHD9UIA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"84020e7362df295b211e8ae10c2937cb78e5795d","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.13.3":{"name":"bn.js","version":"0.13.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.13.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"357d832db5aa511701fac9d03698ec792ddaaed0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.13.3.tgz","integrity":"sha512-p2p6t3Cr7w1N+j9HEJpLwHaaJ03+NfzSkYVZOKTZAK4K5bBwv0OPlMePtaU2f/lU5dJHV8lVPmrrh+UVZ08c1A==","signatures":[{"sig":"MEUCIQCbSD3cyye/haIg6B2IBjKq0NRLkU/2nh0CYwKYdRNvZgIgXT0oA6dysPVkvx7GW8AA1A3fIflYsjzdGsSUIcdVH6I=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"357d832db5aa511701fac9d03698ec792ddaaed0","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.9","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.14.0":{"name":"bn.js","version":"0.14.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.14.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"285e0b6bd312de0d6dd62fd5f520497506aec851","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.14.0.tgz","integrity":"sha512-UZQJjFVdsxVevVP1AbreDPsqDyh/ruT2tf84xSKLMPkaFG1OalGrHw9c7ZFb/Fb7TEh+SpAEKgAKnP9tlKtkig==","signatures":[{"sig":"MEUCIDZLC/h9pqXc1MucgSLj6xVf560I7oxgiLFHGoX1hcqQAiEA+tCmtUtf1pk/pOE8XU3B+TzCUQQ13hVZ31B4lM3AHhU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"285e0b6bd312de0d6dd62fd5f520497506aec851","gitHead":"e66b7b33a17637be6d3fdfd304a846bea43ebfdc","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.21","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.14.1":{"name":"bn.js","version":"0.14.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.14.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"1b6631d73a54b08986ac98761e838b4c343fa6b5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.14.1.tgz","integrity":"sha512-Dyv9C/3uK5h656MnVsOfDw+5IG0tEN49aTRGw3tFJE1LEtvwIgdgpkEl7rD/9HuBvfMYGFGMQ6wKvFJNTCM9pQ==","signatures":[{"sig":"MEUCIBjSlRNBgI1KQprK2MoSPf1RzJftcQdtkY9zPF5aSeroAiEAq8G5qo5jtyEggyiiGbhVKQeJ0+72eUPeiSwPmo3r8eo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"1b6631d73a54b08986ac98761e838b4c343fa6b5","gitHead":"db7768946cb2c141424509d4d9a88f20635ad4a5","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.28","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"0.14.2":{"name":"bn.js","version":"0.14.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.14.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"9480914aeff2a30b599c066040af84e1bb11ded1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.14.2.tgz","integrity":"sha512-J662YWPTB72I3F+vtdg6P8dp9z2bynAcU4iCkJBu3U8xrGZ83+ZMG7BdmMz8Hh1bVHR2NCCEGfP+oUnnn2sQvA==","signatures":[{"sig":"MEQCICg200P/3lpZkNvgI3aJIwsXLb7lUxhBCdVOqXgg2issAiBHL8Fmt1Hq0Qx2iTQePWGlaWt4BGNDHyelRCFiM92uiA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"9480914aeff2a30b599c066040af84e1bb11ded1","gitHead":"f97710d43fb46897528b15862a0e0316bc19e8a8","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.1.2","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"0.10.32","devDependencies":{"mocha":"^1.18.2"}},"0.15.0":{"name":"bn.js","version":"0.15.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.15.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"4574c7c128c730f4ab845073b9288e0d2039f3de","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.15.0.tgz","integrity":"sha512-vCbOjyv6evkd2NqNk/huZ/0ioTBJeHFwGLOJiaFLbVRBkFCDqXlO5WmdRhltFDHYL4Sm8f4cuVkHwTrrh/NTJA==","signatures":[{"sig":"MEUCICjX/iWHsv8e/cUNa3RYxcGIP1+MyXhbpgvMSTu4mEVVAiEA59D3sD6kYOIlVdhd3Z3Cryz2YnANAVqnbIXsarKRHOU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"4574c7c128c730f4ab845073b9288e0d2039f3de","gitHead":"59013d8cd1658459a6c5eb08dd97776476a7e44f","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.1.2","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"0.10.32","devDependencies":{"mocha":"^1.18.2"}},"0.15.1":{"name":"bn.js","version":"0.15.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.15.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"3f4bf5e3d05cdcbc11576bc248070bce722e60da","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.15.1.tgz","integrity":"sha512-jID/ml9BmKxrfQm6ho8htCAQnF15Cjlvrtbwh50aqcGf/xQqh+PDu3xcGy9tfB2GJ5m+zmFsmShXlp8Yhp7qgA==","signatures":[{"sig":"MEUCIG3wXnUkBXv1ZbYMZElPmxLozFp1b0JcWPv6sSsNHkTDAiEA++v8M8LkFsK1D7yOVOQ2mpgdr/iaAZP+7mpcpQoiXrg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"3f4bf5e3d05cdcbc11576bc248070bce722e60da","gitHead":"13042cedeb921b743b9d16b701036e735158d18b","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.1.6","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"0.10.33","devDependencies":{"mocha":"^1.18.2"}},"0.15.2":{"name":"bn.js","version":"0.15.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.15.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"a83b283accdacbf28e89774747cac352216f886a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.15.2.tgz","integrity":"sha512-g05t79j9ht1gkhNEUhu9MmL+7AE9T5ltA58zelDs6ji4bmir00Vu6QogMiuz9HOAc8mqWWWCXehIJrawzdglRg==","signatures":[{"sig":"MEUCIQCSLoyfJrRljywzNy7ErQgdfnMhk38RbfeK3t6f4WzeNAIgEpUiVNDWrE0eZBueZjTOlsD7eOGM7wbMt2dSLuQcGCk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"a83b283accdacbf28e89774747cac352216f886a","gitHead":"4bdf3e6362a175871b1ac2fe50cd5bce19d6234d","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.1.6","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"0.10.33","devDependencies":{"mocha":"^1.18.2"}},"0.16.0":{"name":"bn.js","version":"0.16.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.16.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"5b6f7ea86ec2f8e065dee2b4d5f1540314bf523e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.16.0.tgz","integrity":"sha512-DeOe6YQfsXoH7BaAIkQPablQmm+I5d9KDTGoJOiCF1AvfBCvQqWH1PtC7LEnS+yW84gv3B2dFdlIjw3LDR0sGQ==","signatures":[{"sig":"MEUCIC3Fexix/HYbn0FgczVbyc9ol0TuPLvvQhrwU+1kGZKzAiEAueGhH82aZ1Mmc8hk+f11E8RYlaKywYE784qm6PUvxjs=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"5b6f7ea86ec2f8e065dee2b4d5f1540314bf523e","gitHead":"c6e4bd0744d4cf913071ae3ece7942e253dabd56","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.1.6","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"0.10.33","devDependencies":{"mocha":"^1.18.2"}},"0.16.1":{"name":"bn.js","version":"0.16.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@0.16.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"5f9e74fc53abfd3bb74020b824b83a599f8a9c6f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-0.16.1.tgz","integrity":"sha512-b+KbpBA9aKAiwhV6nVYKLkFP6XxjMy41cZqLpbWc1zZ0k2fvX6N7bZx+//UvIFKghw5eVMkgGlD/8aaMEUPYPw==","signatures":[{"sig":"MEUCIG4EIvlNO7F+Sz0CoNM5j28FUb0C9nibFfbk1+KotDaHAiEAxQmb54prXhkQkNEqDDqMUw+kisCZnmZb8qmUVcSmx7A=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"5f9e74fc53abfd3bb74020b824b83a599f8a9c6f","gitHead":"48b5a38fe4b02c2931e9f528e124a6ef8505e11d","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.28","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"1.0.0":{"name":"bn.js","version":"1.0.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@1.0.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"01e39f8c13f981c468b673caf0632f726d54713f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-1.0.0.tgz","integrity":"sha512-85IphXA6jacFUGrJdm995evTUii+hMEQkpYLlsFWsoX9enA6APhG7L5EXbnKZsWCkaVVotmF8tbriTj7fCKv8g==","signatures":[{"sig":"MEQCIH4Ut4fk8DWrXxV0CYnfD9aYpkkiiWDSt7thyRI6h9RpAiAXA9TuX3B6C5xRVAXolNYOHIMO5Xr/a/iuagsdmgMKPw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"01e39f8c13f981c468b673caf0632f726d54713f","gitHead":"9707d9cdc96f8a7ab654e4abb874a7880b5be937","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"1.4.28","description":"Big number implementation in pure javascript","directories":{},"devDependencies":{"mocha":"^1.18.2"}},"1.1.0":{"name":"bn.js","version":"1.1.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@1.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"3bcebb538c8221a1bbf109b9d1978f026c02c297","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-1.1.0.tgz","integrity":"sha512-Oz1ivkekKe+mN47THGD2uChNkU5QOZr9XGzVCkzPz7lzzGfAIh0HPATp+XYbVdwXl3Zsr/1D3fUoH/SQa0Edkg==","signatures":[{"sig":"MEUCIQChY14dGliWqJ7Fa2j7OKMwaTYc6yrTv7/99iFl/enINgIgAx3o5W93+R4kRLS2CoRCGBcqv2CTUcXxP/qFCwTLhq0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"3bcebb538c8221a1bbf109b9d1978f026c02c297","gitHead":"3d09af28f8c79b77b129a21bbd61cb870bb7208d","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.1.18","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.0.2","devDependencies":{"mocha":"^1.18.2"}},"1.1.1":{"name":"bn.js","version":"1.1.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@1.1.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"7a9d15b1fac825469bf18c70d5a1ec9b3ee1da1a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-1.1.1.tgz","integrity":"sha512-s38scM5f+F1uBpqQlGCergVZdBSrZhBmnmuPpvk5KP8J1mla3+12S4ocHu0KcYeh1+Rs8lyeFctWaFLnMOn2Ug==","signatures":[{"sig":"MEQCIAhOa5Q5cafS2Z+/VhC05KNPK8/72tvrOuc9U8aR36SBAiASMK+DZrGUNy5jcizQekmMcB7SPwLOfnqp/gXrHTlQjA==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"7a9d15b1fac825469bf18c70d5a1ec9b3ee1da1a","gitHead":"63e3c558faed462009475773170444b676c6a885","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.1.0","devDependencies":{"mocha":"^1.18.2"}},"1.2.1":{"name":"bn.js","version":"1.2.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@1.2.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"db61852c756cd3e48d9e5b58af159e43e4936262","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-1.2.1.tgz","integrity":"sha512-Rb7ncJBnU/x5qpaUks6YuyMu3fvOeTY4X49S8Ht4QxEkM9tkFeq1apBQce4anU0Fig9cJ7kc7RxyMyjgZoEJ3Q==","signatures":[{"sig":"MEYCIQDFJKogI5ABvmY3bxM9srVMjI5E0Wz4BGdFEYGfElPOtwIhAJ0pgm0S2HRw63A9EeVwgMAeuLeJ4DT0cY3XtcY02tEj","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"db61852c756cd3e48d9e5b58af159e43e4936262","gitHead":"73f6c068939a12df2d891bafac20662539bc1edf","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.1.0","devDependencies":{"mocha":"^1.18.2"}},"1.2.2":{"name":"bn.js","version":"1.2.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@1.2.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"43847951eae2cba604535fad8c6c9a18e8565489","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-1.2.2.tgz","integrity":"sha512-Ev24JJjBHvnDV3UfR+kYa/CQ4T7LbWUbwwPoLlQmobjHdC2wk8MaJXVP56nb73eKk2zxCw40S9eSPN/sG0+1cg==","signatures":[{"sig":"MEQCIH1kN771tQP9252Eoc+NtLlgPl595z2wZ0/e8mbu63rDAiAGYL6C54KQ1Ld8V7Qzdn++ecQFA9kfnPUums9KSlp2lg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"43847951eae2cba604535fad8c6c9a18e8565489","gitHead":"1415d64015857a2b55e5405935b617bede473b1a","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.1.0","devDependencies":{"mocha":"^1.18.2"}},"1.2.3":{"name":"bn.js","version":"1.2.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@1.2.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"4e40df87acf0ac1d100ee0bec5e831a850da75d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-1.2.3.tgz","integrity":"sha512-f54u0th1c7D+9bEILxYTCIkzH4jkCd+lA8JLZSLR+72HHTUX7subQpQzqOE0/HceBfs6e/mmhDsUXbNa7BVVDA==","signatures":[{"sig":"MEQCIBCG/aerTzcKStcTfXZe1Ow+4IIVDkGlRQGfoUaOB7p6AiA1b01F1ElRpD5DczJoqjpatXqo9rRtXgckZAC3q7I2hg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"4e40df87acf0ac1d100ee0bec5e831a850da75d0","gitHead":"785973786a822ead008f3a0f5ed1f3a28808530b","scripts":{"test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.1.0","devDependencies":{"mocha":"^1.18.2"}},"1.2.4":{"name":"bn.js","version":"1.2.4","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@1.2.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"7ccaddc03f0b5ef5c58b4d22b2e296fa0eb8c6e2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-1.2.4.tgz","integrity":"sha512-wdh+9J8i7bK/oBqnhGZLj3sLmbecnwTG/dDpz6pGmepZYofobCYFwe3ubKb9y+U/32QI80ijH0OKEUKQfu5Guw==","signatures":[{"sig":"MEYCIQDsrsZqRG+9CvrBM2wdX0Mt8MuA/mJuD+DqMsZN5mEG3gIhANypY6+LL1f0bEXpIPlK6skpre6W1phJPPLi8hujh/rd","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"7ccaddc03f0b5ef5c58b4d22b2e296fa0eb8c6e2","gitHead":"588c3b6eb9f0b4d8b6ab09fd50a503e0c9ef919d","scripts":{"test":"jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.1.0","devDependencies":{"mocha":"^2.1.0","jshint":"^2.6.0"}},"1.3.0":{"name":"bn.js","version":"1.3.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@1.3.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"0db4cbf96f8f23b742f5bcb9d1aa7a9994a05e83","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-1.3.0.tgz","integrity":"sha512-AbS5zhpzu2uAZpSyC9wMIXmaHKRakdf4rn8kqASOe59N/vxGjw/r0UbbCVUW+YPdQbZyqOc8ne3mxkmGanYD2w==","signatures":[{"sig":"MEQCICt4Y2WzJEOwRHY+WUAJPtGDzAHk+47V7O6M6lpPhtC4AiAOQ4uzjFYEFn28g4Q9STYiWQfH7PQQDtZQnxfdKtok5A==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"0db4cbf96f8f23b742f5bcb9d1aa7a9994a05e83","gitHead":"3d156a29566f2172b39ebcc0ec00cc3af4c205f8","scripts":{"test":"jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.1.0","devDependencies":{"mocha":"^2.1.0","jshint":"^2.6.0"}},"2.0.0":{"name":"bn.js","version":"2.0.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@2.0.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"825c4107f7fa789378ee1b0d86be0503d7ac743b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-2.0.0.tgz","integrity":"sha512-NmOLApC80+n+P28y06yHgwGlOCkq/X4jRh5s590959FZXSrM+I/61h0xxuIaYsg0mD44mEAZYG/rnclWuRoz+A==","signatures":[{"sig":"MEYCIQD9TCErmNT3m12PCBm3mUJGdPpXfAq727StMQbEIzQJwQIhAMeMR0jAGW5TnudaM0RMtVBKsDuWwLc3MBnLbFDfptTG","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"825c4107f7fa789378ee1b0d86be0503d7ac743b","gitHead":"e3a312a489f2b3c0c396de8bbbcd6e9438cf2288","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.1.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"2.0.1":{"name":"bn.js","version":"2.0.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@2.0.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"ae9bbb5dde3e0031071c6dbc814ec7b4fc9a1e78","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-2.0.1.tgz","integrity":"sha512-GDT8rQ3kEQBPBjI35Ale0cP3ZeBBQXQg1mKh9lMIyNZ6fEJruf2Eg5sSiuaQexcUSz4owtikCa3z0RcTv/md/g==","signatures":[{"sig":"MEYCIQDCAdzhsrq4gsiWk70LalfBafQs1G2UdP8Fa4MvREkRuwIhAJW9Ujy0aqF0LfsvVtUg7wdvfqrLlg78zBUQnOM/PqG5","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"ae9bbb5dde3e0031071c6dbc814ec7b4fc9a1e78","gitHead":"2064828bf744d5da8ae0f9a2e38ff8d5dbf21b72","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.5.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.3.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"2.0.2":{"name":"bn.js","version":"2.0.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@2.0.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"c23b96588b5aadf8aec83698ffc703b396e4999e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-2.0.2.tgz","integrity":"sha512-TY7hNnyN6aJN/P19mdN+poHAM2U3CC9mIHZGtoMQTg50k4DnBpYj8RkOlDmo/7qwfBfVv/7tXbBNcfRri921fA==","signatures":[{"sig":"MEQCIF4mP+scnNB714GI5f47/IyB7G+c5Z2URzz+DHLhLvtjAiBCr2SBQnPXUzIzu8ADKgubcVcz4pZVbCSkSneUHi4p0g==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"c23b96588b5aadf8aec83698ffc703b396e4999e","gitHead":"2ea7a1f61e953634b5cfb6c4c886c8d06e26c48a","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.7.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.5.2","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"2.0.3":{"name":"bn.js","version":"2.0.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@2.0.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"88922f1d693cfdc8260c606a3aaabfc98d25815f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-2.0.3.tgz","integrity":"sha512-t9GbmlUr4nyNopC94kfgAF5QMPb3s1s8JGX/IOBZRdXZHyIl826TI9rWnGf/qXDyW2o7BKUqsX16mPTx2pMc3A==","signatures":[{"sig":"MEQCIDhbecJXzzzzzcXTK3youPC5p3M1dLV2sbqeVOyje+S2AiAk0cv9ewYkJ/AhkxijDLkdY/gqeg8UKZvDl8J5O+ksUg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"88922f1d693cfdc8260c606a3aaabfc98d25815f","gitHead":"7178cd22cc649077eeebb259952f0897da483397","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"2.7.3","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.6.3","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"2.0.4":{"name":"bn.js","version":"2.0.4","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@2.0.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"220a7cd677f7f1bfa93627ff4193776fe7819480","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-2.0.4.tgz","integrity":"sha512-agol6nELIIhWUdrrb0ko6X/ojICxfDeUg+NUCODLS4Dn3deKCE+d1HTEjvlD/WfH6rZ1DCh7bA21tHNtmqwjWA==","signatures":[{"sig":"MEUCIQC9o1MyO9kU690QGgB8YVMCbp28iNLSnqVQcozpbDH5jwIgZSc5bipf9+usDOiDMDoVlZnjUSLGn42e3/87lCxCX+8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"220a7cd677f7f1bfa93627ff4193776fe7819480","gitHead":"2b34a1849a4acf0528a3ce7053870112fc04ec6c","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.8.3","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"1.8.2","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"2.0.5":{"name":"bn.js","version":"2.0.5","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@2.0.5","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"5f4b12a26ec4eb8ac895a9349980a254cfd3eb65","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-2.0.5.tgz","integrity":"sha512-8jBvxLDdDJZhmPRgzOKDuH5R/n6PiUi1E5kZsbYwJb//ScBIfYuSUJQ+RXwtkN9qGKFi7F0wud1T6R8KrVDkEg==","signatures":[{"sig":"MEQCIGBqx2raYZtrHVXqSZ6163vAkXGRkIcthGI9RrYVz+HdAiA1nMA/1XiNv86z+eDfy/tC8Qx00+i7TrFWQOxNRE70zQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"5f4b12a26ec4eb8ac895a9349980a254cfd3eb65","gitHead":"d6cc9c154bbab0a3a269ffcf0518a468fd508ab7","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.9.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"2.0.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"2.1.0":{"name":"bn.js","version":"2.1.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@2.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"f8a280fe6c60dbc4684bc70bb20b68ae60f94efd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-2.1.0.tgz","integrity":"sha512-w23Pb8nrYVGptsOXPButPjLnYXZH6pyFv2MDgAE16gMchVtG9fO2An4LKeOnamy2Qv0/fGeLH6xwyeoQyXAWpA==","signatures":[{"sig":"MEUCIFv3AJKORxgoFyR137ohfeUhSVVEwiaBDaljKT11PZ7FAiEA/TdNEbF2VGfSBLh+jImitjIlwBwuwDL2REMeiy+//14=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"f8a280fe6c60dbc4684bc70bb20b68ae60f94efd","gitHead":"d6aba1e70b0256d979c86c1b443387d8d1d0de56","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.11.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"2.2.1","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"2.2.0":{"name":"bn.js","version":"2.2.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@2.2.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"12162bc2ae71fc40a5626c33438f3a875cd37625","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-2.2.0.tgz","integrity":"sha512-nlotTGN6qr+NpeCb8d5mdXR47r6GXiyoX4fEeqBF2u9wp/3XgzIwyftMX9TE+StQRJSOUJtyYr9MVk0rn2ftAg==","signatures":[{"sig":"MEUCIQDXTGJ6NZ4lVfk+isjdqasxo4UUU+xyYPaLQcLrEFH9UgIgYA6frprR+P8y8mawouwtI1hQqtfhQkMWCmrzsacj/oA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"12162bc2ae71fc40a5626c33438f3a875cd37625","gitHead":"de1c1d3f813f21af0b51f3effb2bd15f87bb9383","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.11.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"2.2.1","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"3.0.0":{"name":"bn.js","version":"3.0.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@3.0.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"8d68f48d7c2b75263e0c2684aec768d5c358ff25","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-3.0.0.tgz","integrity":"sha512-MZzH1NkGZZf+0EfO3Zj1RjNW2pjsK3YnZYtHvZ/ZUDfLuwoGWqO0lL+iYSYcIhDggMdKJWm07H+fmXM5By+h2w==","signatures":[{"sig":"MEQCIBhi/dnio2YDUZFbsXnKdQzY+xRy6AdHDVwjI1yxgRPQAiBYd3QR4hhGiRNAQrgOCyj4zKQ++81r+lLTywEoZDUcNg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"8d68f48d7c2b75263e0c2684aec768d5c358ff25","gitHead":"9f12bcdf2031d11b6e57d3b00252c191764e1e5a","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.11.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"2.2.1","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"3.0.1":{"name":"bn.js","version":"3.0.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@3.0.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"855c7a7b4b92592e87ac4ac0b782624cb28a517f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-3.0.1.tgz","integrity":"sha512-dyN4H0mkdX9LhxAggeVZxH2kSmSqaEPGJk38+/tS3psOoOLldH03IyW7hOG86Ix91t9+7bk3NjB/NV6yAASt1g==","signatures":[{"sig":"MEQCIGYzgTqc4QSB6krV5iSUPq4z/5chHRNzSeZFK1haNW1FAiBNYxOPRBPLp8vA7nE8HiE4c40WUokVqMqve2yyyrwoYQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"855c7a7b4b92592e87ac4ac0b782624cb28a517f","gitHead":"977c0113446c4fadc0d5a4f61898e6260b84d149","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.11.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"2.2.1","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"3.1.0":{"name":"bn.js","version":"3.1.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@3.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"bb633298b0cc0ba763426a18863a9bcba5f6e0d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-3.1.0.tgz","integrity":"sha512-KseS6v7T9RoGcrzfvoIcQo2olN6aomBas1v/WOl4KZoLnDeqRETYomzy/F2I8/PDZ91d0r6K1vx1ka86cnn+4A==","signatures":[{"sig":"MEUCIQCg2pOiGptyL5yoiao4b3cgtPRxO9FGrU1raEtQQK7HHwIgDe7nr3RHLhhfNJDb6BGL6kniTw6IPw4wFY+ZycID+e8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"bb633298b0cc0ba763426a18863a9bcba5f6e0d0","gitHead":"1ed82855acf8be7ee39e6070c3c212b77acf1e79","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.12.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"2.3.4","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"3.1.1":{"name":"bn.js","version":"3.1.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@3.1.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"cd8390de8d02865104f21601c72c1404290a094f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-3.1.1.tgz","integrity":"sha512-e64uOV1VyagG+GGQglAr3iHaDU9nVNBDyviz0oo4qunQQR8VSThwDrI7yGTtWc/T9jCa/nAmcAiyLhkjNC7gjA==","signatures":[{"sig":"MEYCIQC1JXlv3Rgr4Vgob9+EsFHb9dxORqHKSFl0Hmlz5LocPgIhANtenRkVzDWEf/1dWrSNeQRf/3BHPrxStczgYlqRvfaJ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"cd8390de8d02865104f21601c72c1404290a094f","gitHead":"128ae63ed9a0c8eb27e444139107937b7c9bffad","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.12.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"2.3.4","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"3.1.2":{"name":"bn.js","version":"3.1.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@3.1.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"530e8e63398ac2dbd4762484a0b00d9cbb78be9c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-3.1.2.tgz","integrity":"sha512-JlIZX4VNdGFWaGwmABwGICckdPt9FoD3YhWOYFfsTIu1u67b8l1Q4fUr296LW7fEstduzqu3U+XC2Xv8JEYWig==","signatures":[{"sig":"MEUCIGZILQC6RVvkKAbuHL82JLNwO4UZ1FBK/QjoTlpsxr/7AiEAuW51emBNuxzQp9B8HdI+eYEQMqduQd01EKE9AXpq/No=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"530e8e63398ac2dbd4762484a0b00d9cbb78be9c","gitHead":"8e7af57a2af06145b1b75646cfb39e6d4bb4c533","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.12.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"2.3.4","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"3.2.0":{"name":"bn.js","version":"3.2.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@3.2.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"b55c0978e2b815cca86474f6e67ee01aba7449df","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-3.2.0.tgz","integrity":"sha512-Ru3zf1gjX2dmHe8xjWgTLi2JC6votgolobBdY700pNeTgein/5RW+eDFtijpxNrMFmbmLAnWO3q7r5UNPhTSTg==","signatures":[{"sig":"MEQCIGSfQ2wqFFyH2TgqOIxkAPHvziKD3XWq5cR3P2ieKIR7AiAPx0etDwfyZrvux2KZ2R457d1pYiXRLWw6/GN7gr+G3w==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"b55c0978e2b815cca86474f6e67ee01aba7449df","gitHead":"49915f5039c3dc919feb6b47a7dd91761deeab0e","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.14.2","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"4.0.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"3.3.0":{"name":"bn.js","version":"3.3.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@3.3.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"1138e577889fdc97bbdab51844f2190dfc0ae3d7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-3.3.0.tgz","integrity":"sha512-wRAI2v+ylbyIJ4FTTJKWcd9RqKhmTw2O6qB+Mj+CCuK0NH4vTcJx3DdTONglMhoO0tQGRTis5wmlG6OQC+k/kA==","signatures":[{"sig":"MEUCIGJ8IeIZJseia6MYKLN4J4HEfTuPdN2DAkm/7+eb5zH0AiEAhUt/t6LmdvgCZoOlt72fl3xUFobEbzRvbPyok8LHZ70=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"1138e577889fdc97bbdab51844f2190dfc0ae3d7","gitHead":"29a9e67bd2eaaeaa400ccaef86196232a940a3dd","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.14.7","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.0.0":{"name":"bn.js","version":"4.0.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.0.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"da4c1258fc389a423cd07aa0a393958ca9c35476","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.0.0.tgz","integrity":"sha512-dtD8Totc8yIJK2VVGj2MJhJpZ/o2lM5ndodNNR1SAPs/q8UbT27mN4rId+ZOGONJ9JSprRPHxZG8tfo+mphFdw==","signatures":[{"sig":"MEYCIQDzpTpK02i8WNWyadJJLFce7DETJGzsvTJMRluFcr9PGAIhAON/dfaQhfBy4+8m86F2fVBuqchggjpze0UYePmuTZuA","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"da4c1258fc389a423cd07aa0a393958ca9c35476","gitHead":"00a9206a36e1cfb0e983cdcd56ae2013452048c3","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.14.7","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.1.0":{"name":"bn.js","version":"4.1.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.1.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"35105abe0809c082007744650b8234b2f9c9ada3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.1.0.tgz","integrity":"sha512-JYWftUGGAL6yK4ADVgNg7IWb9hvPnzOzgEMyhKdpTZdxcpAPE4lBfz7psqJlVRSnWgop3Q8Z4eMhY88jL41oVQ==","signatures":[{"sig":"MEUCIQDObG56fi+VXaB4BsqArkkfxiuvfTkyLNy9fdecBiieGgIgKQNMF13c8UPpeGCJHojJFgs3+qsorUG29NJoLNjdy1s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"35105abe0809c082007744650b8234b2f9c9ada3","gitHead":"1dd4cfe431392dac557e98c1d0e8610bb710092b","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.14.7","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.1.1":{"name":"bn.js","version":"4.1.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.1.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"ad1c416107dc2d565aed54814bcfbb44f8a25909","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.1.1.tgz","integrity":"sha512-6aq75S2hVt5BTnhoEF+9Tw9n1FHQ1uDtyJoXGAQtqS9apw7+xHSEGN1iC5FRKhQMbY1dHTzcSWJtOozHpsC9gQ==","signatures":[{"sig":"MEUCIQCKu5NUd1XDMrBk0Papqk3Rj2G8lBZihWox0q95yAr26QIgeJpinwYc3mivyTRWjAZi0WpvwPFIYRu9OehkUxJO27Y=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"ad1c416107dc2d565aed54814bcfbb44f8a25909","gitHead":"c2486ee50de3317c5e792fa37a3d615779c0aa6d","scripts":{"test":"jscs lib/*.js test/*.js && jshint lib/*.js && mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"2.14.7","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"4.2.1","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.2.0":{"name":"bn.js","version":"4.2.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.2.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"67fe8e2e6637ae4bb8447876c8562a8a7d9ca402","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.2.0.tgz","integrity":"sha512-fui8IU24HQlqRknA5y3BvfU+pLGvMpR0sLT480SuVCxL21lGB+6PU/6Uo+PC+ite7TiAolHnb/YTW/wlWBE0tw==","signatures":[{"sig":"MEUCIALRSL0PVIoEfs9Y09GKt9QnYn9xicrwVLD2nvskCJbsAiEAlx4PJ0zvtw1tJ1F/8wrALURhC8UBGmGKcrL4Z967TuM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"67fe8e2e6637ae4bb8447876c8562a8a7d9ca402","gitHead":"401e3e1671b6772998a358327ecd3d9ebda2b542","scripts":{"test":"mocha --reporter=spec test/*-test.js && jscs lib/*.js test/*.js && jshint lib/*.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.6","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.0.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.3.0":{"name":"bn.js","version":"4.3.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.3.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"c6ffb4a18b0867195f990c0051a8f93d69f7ec90","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.3.0.tgz","integrity":"sha512-XSAUGHJsJKA4RtkTo9Cl+2ORdx9Nbx9dIiBk5p5eI4hpBURzdJ2EZWK9ohWLWaqOS8H/ZBjIe231lHIrX/b4xg==","signatures":[{"sig":"MEUCIQD3/gofE1KgL85k+K3NqWvGW4RU8zpe25xQWmAw/Lg93QIgSV/z2bmXh+NVwKz8hnsk9Mu0pu69fSsgl1varGhUvlA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"c6ffb4a18b0867195f990c0051a8f93d69f7ec90","gitHead":"13e63cfdcf85d798c0ef2582ef661881d9d78e9e","scripts":{"test":"mocha --reporter=spec test/*-test.js && jscs lib/*.js test/*.js && jshint lib/*.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.0.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.4.0":{"name":"bn.js","version":"4.4.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.4.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"b196a96e7ab08a7a3eca9c66390390da3a980eb6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.4.0.tgz","integrity":"sha512-Qn7GDlpYvhe+by7rBXcgm0tz1ta0SU9ZdiI3NoNf9qkpHlw8eDozr1NQXqtKKEXo8h+wKxcUMQUz0CNx0yhbGg==","signatures":[{"sig":"MEYCIQDCB7yR3KwYQnW3hC2P6OkGKdrjCXmDyO9t16hYjLyAVAIhAMDFC0o/IksRKHDy4MRXbqEHlQBK+97bVsD2Pll4BEdW","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"b196a96e7ab08a7a3eca9c66390390da3a980eb6","gitHead":"dfd6dcc5950b47d46116e6360d200269742ff897","scripts":{"lint":"jscs lib/*.js test/*.js && jshint lib/*.js","test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.0.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.5.0":{"name":"bn.js","version":"4.5.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.5.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"b995be6db2484af988111af08c9d6aca6755178f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.5.0.tgz","integrity":"sha512-eqLCjMzc68Vm6IFiElJc+fIsEJj1B54+TrhM+0Gb9NY0YkQMJlr4EEZGcXz3ZXkQWF0J0dtfIKfRmCYttQO76A==","signatures":[{"sig":"MEUCIQDhhhXxGNVXqENnUzgmn3hYTrvR8RXcAE44qhfWPr+QCAIgE1cgC6vaNnw2Z+lHnxPHv+fxaCSvB0LGn/E1kwB9pxE=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"b995be6db2484af988111af08c9d6aca6755178f","gitHead":"4c8e71d179b177de2cd244d428cc31f8e60341d7","scripts":{"lint":"jscs lib/*.js test/*.js && jshint lib/*.js","test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.4.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.0.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.5.1":{"name":"bn.js","version":"4.5.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.5.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"d9e973b101a82c86fb289c51e416e1888538ee16","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.5.1.tgz","integrity":"sha512-QKXr3ZdDZzsLXEcxbhE46kncyePg1c/qOUvBYxDxqecELZ+NYoQLlDlsblPHhbI41fwNqSx4YXGCB1rQtYub0w==","signatures":[{"sig":"MEUCIQDe3cLXB9fF7GnRd8CSxwvwojqslhKtkPjze9818acoJgIgTKfBSfJplC04I2sw4GyzhxQ+hcIC3uwn+vhUG5tMx6o=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"d9e973b101a82c86fb289c51e416e1888538ee16","gitHead":"98f2267a32e00dfd853dd42b6f2a9082ee696533","scripts":{"lint":"jscs lib/*.js test/*.js && jshint lib/*.js","test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.2.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.5.2":{"name":"bn.js","version":"4.5.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.5.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"bb9e3df54abe3e118d4754195cc74926545489e0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.5.2.tgz","integrity":"sha512-BcNPyzcxBQNmFHdXka5LKG9kTsFPfLpT/iav1shYHvVvWHwqzhYe2OYf08fIbGSy71BbQdHCFI16KOj+vtC20g==","signatures":[{"sig":"MEUCIQCOnP/ON6Z8oW2LUZfquBs0fr9HImWV8QwvsOOKPTsFDAIgEUoHtWWdzf/RwxFQLxMorFDQvJol8jgYkLo8g9RGqPo=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"bb9e3df54abe3e118d4754195cc74926545489e0","gitHead":"4533326cad7d32d597a1a382d048f8bd36f42874","scripts":{"lint":"jscs lib/*.js test/*.js && jshint lib/*.js","test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.2.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.6.0":{"name":"bn.js","version":"4.6.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.6.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"6b649bf3608cb09eba9b91b6fcbb79b0a1aa0c16","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.6.0.tgz","integrity":"sha512-ltvfg9D0Fk4tKWKQ0qVECeFouNAyqMRsYbte3ryY6OKwON8+ETpy/XjIMrc3smsXOAzMf90q1qC1hqr5JDBMbg==","signatures":[{"sig":"MEYCIQDmLHYnPDOxhBQFCwsMjde4V11Yi0JhpQKcRfTyQqG/7AIhAOv8mu1J0biiWPTt8ZmVk2SwFb5vtxNCVbw6Tl1eiO4z","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"6b649bf3608cb09eba9b91b6fcbb79b0a1aa0c16","gitHead":"02483e4fbd50dfb214a3aaee077132ced32e44eb","scripts":{"lint":"jscs lib/*.js test/*.js && jshint lib/*.js","test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.2.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.6.1":{"name":"bn.js","version":"4.6.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.6.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"54495a5719abd8f5bb800f6354068029108d5f3b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.6.1.tgz","integrity":"sha512-g8zszqtT9nIGevNb/7XAl/SJblb4vRKxX/wp5TVEK+JOlsQE6wVNKoLb6gJeVMEzROKdLL6vXJFqMxYQTRcZmg==","signatures":[{"sig":"MEUCIQCUD21kpSwK+EnP+fRFUglnJEhvxj25CWfncHgmJhDm7gIgAciYVygsBVeXwnKPH6siBbekVsw7b/gMm9GGQWMJQE4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"54495a5719abd8f5bb800f6354068029108d5f3b","gitHead":"21179921ba70384d026686377a6a0259368f7de4","scripts":{"lint":"jscs lib/*.js test/*.js && jshint lib/*.js","test":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.2.0","devDependencies":{"jscs":"^1.11.1","mocha":"^2.1.0","jshint":"^2.6.0","istanbul":"^0.3.5"}},"4.6.2":{"name":"bn.js","version":"4.6.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.6.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"f3f77bc657f7ec926c8d02df0883543970c90778","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.6.2.tgz","integrity":"sha512-YyS3Tz0fAXttZNj1fjHPjrkqy5XFRF3Ea633E+Kop8vVY1icYtOYqHclj3Q+0cQnUebSnn6/zVUz3zU9qO/CRg==","signatures":[{"sig":"MEUCICyqlWIsvZpNish94CZLTYcLRNp8hydPJ+6U48sEZz1uAiEAocCgqDwLkzacUrmVK/7xkKAnqhoLB2QLlVZ/itbh/wg=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"f3f77bc657f7ec926c8d02df0883543970c90778","gitHead":"abdaf3836c374b4a01e7c528422759e7dca1586a","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.2.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.6.3":{"name":"bn.js","version":"4.6.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.6.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"37c166833a7ebf5eba1a08f9c66b6a20fe3ae178","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.6.3.tgz","integrity":"sha512-1yOklXAnr6t6JyjkO6EIGaqzFwjcVsvxOlDh4YTUDTAFPRm7OU5fEn0eWQYPdJ+drwdYB6D0qPddRzaNyMzwsw==","signatures":[{"sig":"MEQCIESz4p9DxQH5KMznRFue0w7vpuRor2nUYQ6n2sxYqplYAiBgF5l2B35RrTnqwyDhREJoCmCKkiQMVFbcaMl0ugChZQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"37c166833a7ebf5eba1a08f9c66b6a20fe3ae178","gitHead":"d6209a73db26a3cf90c23026aa75c2bc88beefaf","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.2.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.6.4":{"name":"bn.js","version":"4.6.4","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.6.4","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"67b1ec994775d87652e350c62adbb66e7c05bc50","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.6.4.tgz","integrity":"sha512-mZs+d3z22ohGiQTYhpgGlgWN695Xhf80FhWbhUhhKFPi4+fMxnSVPM26gL5oQTc2vmibU9or3BJmafCh4ghS5A==","signatures":[{"sig":"MEQCICylRIFxCW2eCFPtCeiDvdIQVn4BrwOjzi5ohOeAwPHnAiA/fwlqgLmnDxj1BFgNxiz8jh4hANRkgEHkK4QEjBFtrQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"67b1ec994775d87652e350c62adbb66e7c05bc50","gitHead":"c9d5ab8106d27c95c0e00c5651603bd35b279938","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.2.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.6.5":{"name":"bn.js","version":"4.6.5","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.6.5","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"130d65bf411a6de727e9193a0219ad2e19efd943","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.6.5.tgz","integrity":"sha512-Hr93JBuHeurAe5EyP21OG3WxZHF60Df5w1cGqMblh3Kvabulnkw4tm4qQKrdFHhm57s9VJVA32lSbcSuwET7FA==","signatures":[{"sig":"MEUCIQCEsshtTYL0wtTqHRIZngsYc4bY8JvAY740drexdmud9AIgeQ8vXx3N6tv3TVMoWEFyDlMdALRl6+3VMLQNi2PpOrY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"130d65bf411a6de727e9193a0219ad2e19efd943","gitHead":"62edbc5c94586329378f40b8f42315c228d0dd6c","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.4.1","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.6.6":{"name":"bn.js","version":"4.6.6","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.6.6","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"ee9631479d1b7e56f3108670d7b024949882c92b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.6.6.tgz","integrity":"sha512-cQXuunqIf7SHP4n8QiS9723fLbqq36He6Qs9W2l4HLVSezQzJvpYmDx2UdU3g2Ee6U6ut9wvLXBFpWbEKq8X6A==","signatures":[{"sig":"MEUCIQDkvpliI9oh5br+DZ3plH0uhj80aNheD5jUT956zteQZgIgcR4dOZ/7Bnn6c03zkj591J7/a+RNt+9mh4+FYKTr8Os=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"ee9631479d1b7e56f3108670d7b024949882c92b","gitHead":"e82b88e2f11fe22c75f62b434d2f841e7fd619c6","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.4.1","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.7.0":{"name":"bn.js","version":"4.7.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.7.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"6f2c5b626aa971c5937ae4131b81db111fa5fb0e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.7.0.tgz","integrity":"sha512-4OTMLmHFYxlQyNJeETimkTJyV3u/Tn8sw9R1N8CPFTzgkmGsBIid3ozaL0dllfym0DD/u+l6UPL8bj9GqcR0yg==","signatures":[{"sig":"MEUCIQCVZW/LUDpits4FfZ1H0hHwar+IzC0GSZ5Qribnsyj9LAIgRt2MMOeCMf+3Ko4zIjV7cXb7QhAZx/Zsmc1/aoJ40W4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"6f2c5b626aa971c5937ae4131b81db111fa5fb0e","gitHead":"c3203573c2c16445b755e805dc284b0152354ab2","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.4.1","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.8.0":{"name":"bn.js","version":"4.8.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.8.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"c775509ea4e42365630660edf1d30d1a9a1f4440","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.8.0.tgz","integrity":"sha512-XnWpmr2oeDdB4WtlQWzvy9V573kTSr+39XfgBowF8K2rRamJ0025z91NbPH8VDSt3n3wU4/sHso+I2Q0RXF5Fw==","signatures":[{"sig":"MEUCIAZpP9gXIl+GlcdAwwkk98PahqnVpsCy+obKgqzimpLNAiEAylYSqxpFrT0xskQpBqDe9WwEgsYz05yHFmfdF2gprFU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"c775509ea4e42365630660edf1d30d1a9a1f4440","gitHead":"ee3c4423614f1edb175e342288d40075944d625b","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.4.1","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.8.1":{"name":"bn.js","version":"4.8.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.8.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"e8cb1c43a09a6f2f5541b920f714f268307ed73f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.8.1.tgz","integrity":"sha512-laAN2WTJUWpxaST/ttQWZ2CqZoTf8Bkl1uvoga9gUZl5SX+a2eVncWQXQmoy3ubEpdmDswe3GJ2rYmLCXYTqfQ==","signatures":[{"sig":"MEUCIClzkbSWDZN60McYy36B8+8JdAdM0lV627C8gwFu1zfnAiEA09/IgDaGcXjgO5QvtrhSPAI8CZpF/gqFlpRlc82W0Rw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"e8cb1c43a09a6f2f5541b920f714f268307ed73f","gitHead":"4c29a5a01ae50a80515490f0e7fd3b23a0039eb4","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.4.1","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.9.0":{"name":"bn.js","version":"4.9.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.9.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"a51e8356ff87f24249429bffc415e386dbbc2211","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.9.0.tgz","integrity":"sha512-MkOpTKjTfX+YowBTxZL2nMZee5ln8OnVctuioC17m2kuN8Ifq5pR4F487yl9g/XUb8zab4QPUD1ArHeWs4DT5Q==","signatures":[{"sig":"MEYCIQDPuzYO6w8uMppFpXpqXp5pWt9wAFRIo0L01hBliodOoQIhALhcNRbsxPkRuL5X8gv+ynLioj1CP2NEncaypsDKSayQ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"a51e8356ff87f24249429bffc415e386dbbc2211","browser":{"buffer":false},"gitHead":"3e49f61adc0328347a784aa4199652ad7f7f8f8d","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.4.1","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.10.0":{"name":"bn.js","version":"4.10.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.10.0","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"0f94c26328bc11da325d0080c572c5a83f23f8b1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.10.0.tgz","integrity":"sha512-zHV7ynKvBJiv99yQffDBFz33YlGbkD0gq+uJdTXdniJt8U7epI1l41jXqpFDz7xBT6wazjpLPYq1HIyhAAwnSA==","signatures":[{"sig":"MEQCIC32jMSH1/Mwp6wU7UY7WHP7p6bK6ybxKeK62S6OFHD1AiBHf2qT0I8fpcY5BDosl8+jUqkFs7ZDW7scPvbGSobdkw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"0f94c26328bc11da325d0080c572c5a83f23f8b1","gitHead":"2fbe7a3683aca9a6a09697a9af2ea7a05d42bf06","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.3.12","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.4.1","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"}},"4.10.1":{"name":"bn.js","version":"4.10.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.10.1","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"743347a61e4dbc269fb034b9edfdb69fb9bf5b15","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.10.1.tgz","integrity":"sha512-7kDbdP4/tk1RPXWRm6Ra/VnwnM5Rjsp93vNV4PmmiwJukQuDB99rd7peCNqOHKmrU+DB9RFigpttPAA2T9Ahbg==","signatures":[{"sig":"MEUCIQDyia73vjxDK+JZRT6NE98V19AXQoFYtleWRa2bbW1jIQIgLTCV0DFaHkGaFQsP3PYd8HwAblmhS592IIDpZXKoeBM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"743347a61e4dbc269fb034b9edfdb69fb9bf5b15","gitHead":"cc4108fbd3d03b3529817047e4f9763191a1bf1e","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.7.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.10.1.tgz_1454625418354_0.7797625181265175","host":"packages-6-west.internal.npmjs.com"}},"4.10.2":{"name":"bn.js","version":"4.10.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.10.2","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"2777e05bee0d688ac85e61a90177c0e1e5d8a765","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.10.2.tgz","integrity":"sha512-qY6uBtLjUBVQPUwrxjWBqgk2F3q6vcKwx05+ZlNbk7DZDkECZBnRcZp7r8aEtFiUolmUATN6SVVYHWHr5M9/8Q==","signatures":[{"sig":"MEUCIQC9acZf/4CZHfHyZ+MMoCwjCgVRm3tUhnW7XDu2P8LNqAIgG/XPdaVl2cYqPC055HlB1LkjmRgJLkeaNL9t9xJQlKA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"2777e05bee0d688ac85e61a90177c0e1e5d8a765","gitHead":"a9935e7d7d7c339247e610b0884e6ab39c3eda11","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.7.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.10.2.tgz_1454985807797_0.9658701049629599","host":"packages-9-west.internal.npmjs.com"}},"4.10.3":{"name":"bn.js","version":"4.10.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.10.3","maintainers":[{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"5a0322c6a4eb187ff37a025b922354d565537433","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.10.3.tgz","integrity":"sha512-41RKFGyZ9YBw27hZ47rSTTnNidNS44ZRbK1I6g4adaY2+c0DuxeoSdEIJ+rWCkQ/qLjn5ZFJ+qTuyl46PHDkjQ==","signatures":[{"sig":"MEUCIAeGMD96JzUn4UdY9LNrG6boUgi3etttLuuNefWrRzE1AiEAiawc0FLE1XomBS0w3yUDhlfuy9K0z0ivc2MmwDs5oAY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"5a0322c6a4eb187ff37a025b922354d565537433","gitHead":"dc8ddfe05574763e2b1f3730528d224ab04d61f3","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.7.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.10.3.tgz_1454986084401_0.5097152111120522","host":"packages-9-west.internal.npmjs.com"}},"4.10.4":{"name":"bn.js","version":"4.10.4","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.10.4","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"bdac295b21e006d0d164a81ee787a2c5f2c681f1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.10.4.tgz","integrity":"sha512-gvWd8D4a8pEAKM+nPGj1O0c/rtSVHtYboSszkpG5J2f3ixIfMnV30ndprrJ+bUVTMjHieaUtoe4OQA5GCl8SYQ==","signatures":[{"sig":"MEUCIDZwh1JtqPByz1v3AfpEoUpmSlBUbMpVpBpQ2cG8qxh4AiEAgf3EvCLdEsZJlBEntyZnQRPisFenN8AwLRMkmxAaGTA=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"bdac295b21e006d0d164a81ee787a2c5f2c681f1","gitHead":"3f6639d6139f971ea935d961e40eab64d3f1319c","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.7.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.10.4.tgz_1456535510503_0.6464059818536043","host":"packages-5-east.internal.npmjs.com"}},"4.10.5":{"name":"bn.js","version":"4.10.5","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.10.5","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"42baacbd9dfa08073515308184142b6675055f3a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.10.5.tgz","integrity":"sha512-cFTtBlhz9areKlj7HLILpOP59Q1Ib+HQ31xEbr1DVsei1qpyd1I6uJHzd+EHV/1OrjUGkydjHRNTXrQ8XnrxZg==","signatures":[{"sig":"MEUCIFTsau9TDzTTbEVBAtUcRHW4+b/fbDvjrYNrGQsbd5IaAiEAmm1+2M8SqOhQDz9rcY/PaiJnlJ5aM3EN8rI0KT7y5+E=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"42baacbd9dfa08073515308184142b6675055f3a","gitHead":"3acbd00e713343257ed2af2e310297cbe43eea79","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.7.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.5.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.10.5.tgz_1456812297609_0.7403083790559322","host":"packages-6-west.internal.npmjs.com"}},"4.11.0":{"name":"bn.js","version":"4.11.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.0","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"eb24783e0e77a943640fa387095b1c7b4f50d140","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.0.tgz","integrity":"sha512-6mPO5U3EyST2EXCMqncNvZg4QrfoCOP2GGUiY4IAq1unHgjvKiy7xIFprQguTBd+s1F1ZY/ukd+334YWqz9Jmg==","signatures":[{"sig":"MEUCICY/pCpmVRSYGlbuYUBo2523K/ZNYIVBlAEYLAIqigF5AiEAnQc3XwXZTf+edxDMt6HpDsaySIh9QO7uFXOyGmSfzn8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"eb24783e0e77a943640fa387095b1c7b4f50d140","gitHead":"e670ab2360a6f37994014d85a07849c81817c1b0","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.6.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.7.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.11.0.tgz_1457462409781_0.5053171752952039","host":"packages-13-west.internal.npmjs.com"}},"4.11.1":{"name":"bn.js","version":"4.11.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.1","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"ff1c52c52fd371e9d91419439bac5cfba2b41798","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.1.tgz","integrity":"sha512-RA2YZOp+W+aWGGSTg7D2GZWSuwW5Z+kKyb8+Wd/CXuON0t3e+EeMb1Ysw4ZnDsgyGK4SJfRzLUgLITLvt2ARSQ==","signatures":[{"sig":"MEYCIQD/P4NqmXfSWOM4sSm49+v0ZVWDGdfw7RS94+IWkt6JRQIhAO4FRCPRpV7oyEFvf+eK16KpGfXHIwaDs9011cXGxKQZ","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"ff1c52c52fd371e9d91419439bac5cfba2b41798","gitHead":"79a0711162f9bc6ec558f652d1373f57c67a5803","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.6.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.7.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.11.1.tgz_1458945313396_0.22287913062609732","host":"packages-16-east.internal.npmjs.com"}},"4.11.2":{"name":"bn.js","version":"4.11.2","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.2","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"c586a31dac8ea4bc162dd17609e8bf5fc594dddf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.2.tgz","integrity":"sha512-rOYYUUwGgwND0MSkmY5QE9eVtnDtt1mB1wssK5/H5xye6NZw5vTUQHIRh6wk20B0mOFd5bAN/2XD2K+joOab8g==","signatures":[{"sig":"MEUCIQCJWlKdrYb//X5QoRC/S63c/yqMRzRvf4ClntgYfZaBJwIgEfaA+aZIL39V0H0y+heO8AW97YFgg7YlYoRWnjmoiug=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"c586a31dac8ea4bc162dd17609e8bf5fc594dddf","gitHead":"f99d2031b0e6e7853c5ef91c525b58180b521af7","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.8.5","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.7.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.11.2.tgz_1460487819472_0.8633945770561695","host":"packages-12-west.internal.npmjs.com"}},"4.11.3":{"name":"bn.js","version":"4.11.3","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.3","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"bfd45360d339b173f39b628445d2f5d02cb61dd4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.3.tgz","integrity":"sha512-m/GzffpoWvDEAnhy5dWbokIkemVKzbfBaDJGoIOYfoymNIbgtFxZFw6pqQMR2TNiV9xKrcSiBNeTXf5WxYsygg==","signatures":[{"sig":"MEQCIAqkx70zEIIZXQynTbBcZTC7n0TDIYokXvReX6sgdAe7AiAW6xHyHE8gypRyrQTX++qsDQpwhCCtKgR0NvdTOj6LHw==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"bfd45360d339b173f39b628445d2f5d02cb61dd4","gitHead":"9d0d0e33fa523935660870dfb5fde36ea42d0ad3","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.8.5","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"5.7.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.11.3.tgz_1460489117929_0.07140995422378182","host":"packages-16-east.internal.npmjs.com"}},"4.11.4":{"name":"bn.js","version":"4.11.4","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.4","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"59f0735fa52ff7f00e2cdd1ad207b7c8603d374d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.4.tgz","integrity":"sha512-PAbpFNVCIp9aGaeR/+Zxj1MAHlta/CqPxu5Sj5XzKuAjOm0wuQzBYap01AuTrwmdv1imTqR6kIHbUtg9k8NO1w==","signatures":[{"sig":"MEUCIAZwy1a9w/mhWWD4fTIl6ezsud9AwghWE1cLJwEm/pvuAiEAy6CZuTmKHhuIddKNoNAg6WW2R4KSLF576o2oRFTz6uU=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"59f0735fa52ff7f00e2cdd1ad207b7c8603d374d","gitHead":"a611ba47a333e7ead5230ffbfc438dfa4182abac","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.8.6","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"6.0.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.11.4.tgz_1465158746866_0.5330686524976045","host":"packages-12-west.internal.npmjs.com"}},"4.11.5":{"name":"bn.js","version":"4.11.5","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.5","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"d4572591b6bf70ef60f76790d6c2e92d8979350a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.5.tgz","integrity":"sha512-OdRQSlRkxTEZzj8r7GJ8qIzSPWyRRwXOUEItrB3Wz+f1/Ddet+RRfDEqbvQ9yTbMKiZg39GqI46g2UOiuWAXIw==","signatures":[{"sig":"MEUCIQCytEM+4CipYNffYKbbxSe1Z2Xlgtpri6SRXLPC35p18gIgAvoiHBO2L+/ransix7/EArw6TmcpTz/Pck8sJWwA1mk=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"d4572591b6bf70ef60f76790d6c2e92d8979350a","gitHead":"ba3ef070439aadec15188dade3af0a6fb6c8d7fc","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.10.3","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.11.5.tgz_1468442223722_0.023275399347767234","host":"packages-12-west.internal.npmjs.com"}},"4.11.6":{"name":"bn.js","version":"4.11.6","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.6","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"53344adb14617a13f6e8dd2ce28905d1c0ba3215","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.6.tgz","integrity":"sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==","signatures":[{"sig":"MEUCIHPBH9Y2pShPG3UwFDYQqjaPSgZisLBaOcpi9Fjt8WD7AiEAsQQuquxzRgMx8xLD3ofSoUoStgmIJHaCwKzZcZRadB0=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","_from":".","_shasum":"53344adb14617a13f6e8dd2ce28905d1c0ba3215","gitHead":"e4a82134c89ed85b0c3a03da7fabc016206898a4","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"3.10.3","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"6.3.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.11.6.tgz_1470100429753_0.28054949711076915","host":"packages-16-east.internal.npmjs.com"}},"4.11.7":{"name":"bn.js","version":"4.11.7","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.7","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"ddb048e50d9482790094c13eb3fcfc833ce7ab46","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.7.tgz","integrity":"sha512-LxFiV5mefv0ley0SzqkOPR1bC4EbpPx8LkOz5vMe/Yi15t5hzwgO/G+tc7wOtL4PZTYjwHu8JnEiSLumuSjSfA==","signatures":[{"sig":"MEUCIHOp9tIQ9OtY1+ziva2GLCYN7Y7l2gycqBAv7aoliIJsAiEAyWmytdb0mokHOpPkVTW+a9xbN0AUA1hTz24uhG7Ybb8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","gitHead":"163ca3a1b720ff531e1289d73f3efafdb275e860","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"5.0.3","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"8.0.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.11.7.tgz_1498003732650_0.5582865925971419","host":"s3://npm-registry-packages"}},"4.11.8":{"name":"bn.js","version":"4.11.8","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.8","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"email@dcousens.com"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"2cde09eb5ee341f484746bb0309b3253b1b1442f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.8.tgz","integrity":"sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==","signatures":[{"sig":"MEUCIDZ0eP4zWt28Kmr+aUXFH1LIEtClvLbjQa2TAT6VLgSoAiEAoGo0oRD+kTThOO10pZNFMUrHInkQoqfcKpsNJlpnH0s=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}]},"main":"lib/bn.js","browser":{"buffer":false},"gitHead":"c69b4ae8e789e10f7f91811cd4937949ff0d4768","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fedor@indutny.com"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"5.3.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"8.0.0","devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js-4.11.8.tgz_1502144504238_0.6009391283150762","host":"s3://npm-registry-packages"}},"5.0.0":{"name":"bn.js","version":"5.0.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@5.0.0","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"5c3d398021b3ddb548c1296a16f857e908f35c70","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-5.0.0.tgz","fileCount":4,"integrity":"sha512-bVwDX8AF+72fIUNuARelKAlQUNtPOfG2fRxorbVvFk4zpHbqLrPdOGfVg5vrKwVzLLePqPBiATaOZNELQzmS0A==","signatures":[{"sig":"MEUCIG98khxS/GIBpFMMQ7FwON3gmV70p4aZH7ajHRxi3M8LAiEAl/dYTSqhJYwau7Lyo+8d1mtA13GoOOdyORnRlwRG5cw=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":97122,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdIhsWCRA9TVsSAnZWagAAS+MP/2i5OI3bS12VM9klRJ6M\nhnJBNgTn1YWXvL+B/OtnTY9tyZGL3fvKgF/8E9zYqxWzlMpVIQvUzOSgXZfb\nYDUkmGrQqqYTZHH6fvN4+QX98x50w6EixsWNBZD8IW0ncKSqnKsug8HKBhPJ\nfDAzXfAk6fl2FS2ivMuMEs0vKb5JVbhVFYyZAjblWzNo1HYkTDf1EJ7WI535\nrqFzewU9IhwScc6o6pWTfiZoQR3RNX0Yi2eKNsIwKz0n1mWA2dWAhbWzsQek\nEgjKwf0Xd6EewtpXOarPkWgx8Hqh8m4dVxvmkGLTUTCg02ySNCOJy9Pw3R0d\nHPsd8NclNa83x2OdhNK9pwHcAYNT6emk42cDeM5kVFfzatJbiryLGVgGirmM\nHCWbRjG19BmhrRsz+XbM9pN6GKZKMyjH7kxNvFFTq+UOBoEYLp4JCkdO6WOP\nsARR5kKoxI5y9lgksU3kfpNoUVvuptFr/HY+f1nKZZ5ahSQb0e3I/DnF6WfX\n0yqnzQLYFXks+ibssEukcbtkm2Y17X5uaM30HGiGc8Bp5gueGZy1Efcr/YgN\nsB0rTJtdsxBPePTuiCmzHT5lPtwXuGtnZJFW/5lsKNwT7mHf3URr8abJ6XRH\nclH3y7jAvNiThrwQAptemXQo0remYDqPosvqVxyYR8rdL49+3UWucG1xWzAf\nbAvH\r\n=Ip9d\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/bn.js","browser":{"buffer":false},"gitHead":"8a8d9bad8f7170b1f2bd48ebb2bc97f1e39beb74","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"6.9.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"12.6.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_5.0.0_1562516246137_0.5055850292623076","host":"s3://npm-registry-packages"}},"5.1.0":{"name":"bn.js","version":"5.1.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@5.1.0","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"7ef3e4af5d85a8d70d7077cb7d44bfc5cd6e6039","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-5.1.0.tgz","fileCount":4,"integrity":"sha512-NiyuqJjtPhXcJDc8I+YeyZceSMViT39AvuFJCH3ieMcOsRvZsp2luMrGSnQaqN6HVJMvSgydLnkvw5N4xvuIoQ==","signatures":[{"sig":"MEUCIQDj+kykd1lCHYoGT51aaV4LOSVfG/ChF3g/DhW67Xp5EgIgXSzyBi7HJ3b0JNn9sdEHLcSRzmI6sT6p2PX7kgJijM8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99370,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeAH4PCRA9TVsSAnZWagAAYtwP/1keFfynEN0e01kVuqz5\n+Oj6kRNZtc9u9ub0rWcvPyIHNZhmgVGiwJQrpVe7v72Fc85o98MbrNhdSuVC\n7ctBh9eo9nTQP0zfSbLOmmEqqzewdZkpbv2Vscnyt2XOE10aM5IPhseXKkXG\nOnRUSEh7uqV2iDtnCg7tdhxnjTvdz3z9MFpqThnynp2XZbPuIkrhtD1gm445\nUaCqlhDqs2+mHvEWEX9wuEk8l3x5QE7WXFvg3u8HzLX6KIIW4Nnme75Le/rS\ntoBnP6IUqnjZZaC2klhoU0XkBseRJCt4enFEO+H0Gchv/QcUK5+XNbWbOXkT\nxHtO6gzAF6XMASMMifE0NN6JYkugmCofooEefefYqQqGJseX3ypAzJxsqiLP\n2apXTiN4JcB8U/eqFUgXcGgZ7yCzBkAvr0BkakHHYeTplY+syKjVlNG5LMDi\nlyGkbXY91potyl/Td7+GqkJzZtrMtvhjIooY5Nch46AAs34r2QqWpovNqu2N\nc0v5K5an8Keu180lasV9XQKIyN7iV8UAru7MuirDy557GQbuHodPmdaiLt72\nZ2XKr1myzPyvRHTjU8glBrw1pANV/tENkcSojCZ0W2wuCrRzFrhlwhbKv/05\n/5P3nSgdWEfphslgcsoDjlgMd9QyPpF2ow197ebyKB9v/v5z8j8g2XDNh1oR\n47Ys\r\n=adzZ\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/bn.js","browser":{"buffer":false},"gitHead":"4fd44401e07e2a95abf69b6d7268a4c5d8a3790a","scripts":{"lint":"standardx","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"standardx":{"parser":"babel-eslint"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"6.13.4","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"13.5.0","eslintConfig":{"rules":{"semi":[2,"always"],"no-extra-semi":2}},"_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.1.4","standardx":"^4.0.0","babel-eslint":"^10.0.2"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_5.1.0_1577090574659_0.9110694812152826","host":"s3://npm-registry-packages"}},"5.1.1":{"name":"bn.js","version":"5.1.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@5.1.1","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"48efc4031a9c4041b9c99c6941d903463ab62eb5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-5.1.1.tgz","fileCount":4,"integrity":"sha512-IUTD/REb78Z2eodka1QZyyEk66pciRcP6Sroka0aI3tG/iwIdYLrBD62RsubR7vqdt3WyX8p4jxeatzmRSphtA==","signatures":[{"sig":"MEUCIQCHOFeyjTPPTwnEIlRBQpZFD4UdyPPx5QNVbpxt2HDjHAIgLcFzMh7ES2lebVSq/FAFBTuNCSWh1s0RHY2FSrTc9N8=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99435,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJeAnYHCRA9TVsSAnZWagAAhy4P/iy/wA+bV/hAQQJ3HDnz\n+AORYJqTs3RSNmjC0XXjtzJ+V0EVHFCYxvS3zjGE1HC7y2s5Yr9h1Z5sKob0\nLjiwk9/p9uDKnUZQrgVfECyjfGhTfRQeP9qr9tTuS88RmsZa0d65mAHeYys7\n9E1m9v6cJG+WXPjxiqa2Jj1ojDlxIwtDwgflJ9HcX6k5ijMTfvaegl1uNxlb\nvwI6GW/NxpnDH6+WkZflvPz0MAYeLTgevwYiGzZ55fYApJRkPihXNQ+0p6N2\ntAjStS9s7ZvrYL868iTVgczYz2oQKptpm9cR5V2D0GYJOrlj543FPAHs8fXI\nyvVzmOJ7zYkR88436oW8pM78wuGynBk0jdZrKiPP0myHiw1T2KR/GEak/NMd\n3HEicGhMNhDNzLVDQK+alMVbCOFtYyGpIHzEJstgw43eJFwS207NW940fMlg\npm/FVk6U0KBp3TKxck6DnCYPvGj5OzFBaJTQ/R0F3YT5gRquxvTfKR7Au8mK\nkRtHQezsbICAIqASjbWD7qt0pIOXWYM4IHAFMcFtI+uCA/oQOqGr9aptPugW\nzQMBgJHDE/rCV1pM55M4pHpLR/+5Rstj5y2IZjkSmHKgOMzwNsgepBYo8lYQ\nOx/jocepWqdVx4cRe1bpTZ90TIR4LfZOrPwoK24gGUxx1f+tyN32fAq0AEg5\ny/Kh\r\n=CoW5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/bn.js","browser":{"buffer":false},"gitHead":"aff3260968b30a51fcb449037f040ec3919c2582","scripts":{"lint":"standardx","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"standardx":{"parser":"babel-eslint"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"6.13.4","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"13.5.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^6.1.4","standardx":"^4.0.0","babel-eslint":"^10.0.2"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_5.1.1_1577219590763_0.7182015200211254","host":"s3://npm-registry-packages"}},"4.11.9":{"name":"bn.js","version":"4.11.9","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.11.9","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"26d556829458f9d1e81fc48952493d0ba3507828","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.11.9.tgz","fileCount":5,"integrity":"sha512-E6QoYqCKZfgatHTdHzs1RRKP7ip4vvm+EyRUeE2RF0NblwVvb0p6jSVeNTOFxPn26QXN2o6SMfNxKp6kU8zQaw==","signatures":[{"sig":"MEYCIQDft+i3X8cj9SIsOjHNYg7EcMdjMsM5GvtnHG4HHJ44FgIhAP4sYugK9G82u2B6LVUoKK0Rk14qLqSJwMx1oviem0Mu","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99486,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexUkOCRA9TVsSAnZWagAAO+UP/3370+j9QtcUoZ7gykhN\nDcyidyo3TYOFPUKFaQJSic4/GIb5GulNnN1nq+T1R5hXM9W3HzPphFpn+nZh\nI60bB0XZ7Cc6XuGNelApMVQR+xwD0wz2hlEw7zjiCIC4kSrzSe1f9nalRhnn\naIHbwxcRHg6oRRpRLE2HHAfMXHwGz8yxL6NFTJpkUi02XS2C1biXjvJvQ518\n2QyjfRR6xZqMqQkFav/V/70R+GJTA57loG4kvh2AXC1HvqEihe6Hzo35RB+O\nVAet71GK+cDaj+v+O0wLMQoGy6t605hz610VcQOyN10w0iibEQusmHCjiGe3\nsZEFmlWhKmTTmRy0m/GFOpNpgQESaPEK8SC5p/PZcLF5dnrI5RQV3QkQVZTS\nCK83RdKgZNEXoizf2qaay0dJBitIvHQqruS73yF6fi+ReDs79sKPtthpcmVE\nz5duL0KoCj/HeQDL1Bsleh2JDvXNxNlCHlw8UcQAqhtn/9l60IU8nyZAsXol\nBa1aD7SH5vyHTmpjBTIJ7+4TCBVkNwy6r07cNMTQuCBWL6ZqQGr9d1wnCtSl\nEzbRcw9SqbmZzWZPfHQj+o75Vd/ocME7TvzrbPBNo+T1oruT6AO+GfuhMHx5\nVFSkdGQ8OhHpXYp32z3afPrvDJyktrFGfR43/D6DbwQlD8ZMOEaH8TsJuq3S\nTqVa\r\n=O+nX\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/bn.js","browser":{"buffer":false},"gitHead":"a8d027601c09793c459fba2aacffd4731c2d8147","scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"6.14.4","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"14.1.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_4.11.9_1589987598187_0.1394580593508219","host":"s3://npm-registry-packages"}},"5.1.2":{"name":"bn.js","version":"5.1.2","keywords":["BN","Big number","BigNum","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@5.1.2","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"c9686902d3c9a27729f43ab10f9d79c2004da7b0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-5.1.2.tgz","fileCount":4,"integrity":"sha512-40rZaf3bUNKTVYu9sIeeEGOg7g14Yvnj9kH7b50EiwX0Q7A6umbvfI5tvHaOERH0XigqKkfLkFQxzb4e6CIXnA==","signatures":[{"sig":"MEQCIGKxQS3d/7yv4ub95pAmJ/WMo+Tc5m8qeCh1rPypdeVZAiAGU9Zf2lLoAZRSYgoWboZwM4qyjYnORkiasUGvcUykEg==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99671,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJexUu2CRA9TVsSAnZWagAAEN8P/A+IUTjS9A4bNpsvqjSN\nRxOKNrFZ8anIzg2aIA4ormDE2BxqtdWOYwRk/v3XU7vFNTvq+xjwfK5bRNU5\ns/EyOqd94QYnv5VLRhaqDJ6lYfV29F45YJf7AHMdNb75gxtblLEwDFchtsqd\nxuKEdCXwWm/xuqoLuAwkaPABBSfkzmJ5RWQiZ2up+9mefQLdcumKPmRkV7VF\nm0dNHgH9X2sTNH3p+D7oj9/gHc0gvsSee1Pr6rTicvf9QGR4g5m4t7XOFsZM\nC6gIZtE81tP06WyJUglnNwqCHc/0WMc7FDvaVsKgP8DoK8WrDurpQBoJjhyl\np8hKdfe9rs+dAYz/GTy6wi2iTgjFnNR0kGfIfFV69JdUilbgTwaV91qHilU4\nK3k6i+mP7m3QEJEe39j/e0oxt0HVA/Nw5p4Q6T5HY6x3EmFNakEb4KHq4Pna\nD8bJVLF4liZc+AWxXoSF2OjqRcfBVO24zn6Iaqpq/ayKv+OLXd8cOh65cJtt\n9bsDp7FR64euikH+5DJPtkbM2ZiK40LmcTGhBG7intL8OCZRSi6uysU6k+6p\nj8KnX5vCncsCBuphIbopT2fm4vwNx79VdeIKU+LSiyF30U1OkMjd1UI1GFDj\nqzqGOjbRfZUnBrCc2yAuXeJWrIQL94qnEgppfkahKkSLV/IYIAktoNhIYT4R\n3d1k\r\n=t+IV\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/bn.js","browser":{"buffer":false},"gitHead":"5707aed66c02ae10f8c7d59f5244fcce1c24cdb6","scripts":{"lint":"standardx","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"standardx":{"parser":"babel-eslint"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"6.14.4","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"14.1.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^7.0.1","standardx":"^5.0.0","babel-eslint":"^10.0.3"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_5.1.2_1589988278167_0.011166882823891111","host":"s3://npm-registry-packages"}},"5.1.3":{"name":"bn.js","version":"5.1.3","keywords":["BN","Big number","BigNum","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@5.1.3","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"fedor@indutny.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"beca005408f642ebebea80b042b4d18d2ac0ee6b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-5.1.3.tgz","fileCount":4,"integrity":"sha512-GkTiFpjFtUzU9CbMeJ5iazkCzGL3jrhzerzZIuqLABjbwRaFt33I9tUdSNryIptM+RxDet6OKm2WnLXzW51KsQ==","signatures":[{"sig":"MEUCIQDP7BQc/11p6nUn1tW58Yr8o0gRGxCnqMZPMqYBQGJmxgIgTrK3nJJ5HI0fawnL9A+z9/nG+C9VGpdIgC0E7DhByeQ=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99849,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfNtI+CRA9TVsSAnZWagAAGGIP/REWDwd6Gz6PfLMPEYab\nvNfXOOhGrBtGuwOdqrsR7PJPzlqJmuxeSp8LVEgvIg+tuFSsgN8MG+9i/9V1\nZ2eXwKbMT8fK3JmVSeozHyPTE5LrXLv4vMFFdBikbo+wx3LrCs9ImEe7sHnQ\nqR/nI6r9Gw1Jtk1hWhIEt36QazxXluOl/YwgQmKBh6EWW8Lel0BxlQt0sZvt\nVeVI3Aw1JSplRZqmaaxuxivUOcj1/0u+c+YdknVRbEwKa2ZoggYraS/7rkP1\nLw86a0Mqsg/0+F1867kZSoaJqfaJZXVFCQzLaAGIJMDhgajzOdmmduL/93HU\nCoNbiL6PHhfkSio/K5eg3DHaRztStxZPJJ14coA0GyJUPksiOCYH7q+kJ37S\nbcRI3yxQStWB33v/u43F5k/rlnRLu37hBF/YqpCif0LM6fo9A+9pQLeINzH+\niahtEAXHiaPPR7z/QwWQzSBv7lnaQABdtKxzPPzUZ3Fnxnw7lnebAsZj3MTJ\nYYHZT2ZcWaDWkmSqGw/Q2KnbQirp6b5dl4iKG6VdN3RbCye2GsqLjsvj5HOH\n4+62KEW4UUdt6lTvc2dzgCBUt6wqpjpv6zWFgMdMftPkmlSaRSnBu8ynhtde\nM45dHTVhdNoAZqLAxBWuYXFePkiHBUEBsfg34qJkKpYP7EhTju9Fk6i4Rsi/\nMiud\r\n=pJG5\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/bn.js","browser":{"buffer":false},"gitHead":"c39161e9a056cac6ae9819ab11065550980df432","scripts":{"lint":"standardx","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"standardx":{"parser":"babel-eslint"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"6.14.5","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"14.5.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^7.0.1","standardx":"^5.0.0","babel-eslint":"^10.0.3"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_5.1.3_1597428286361_0.6498235391056579","host":"s3://npm-registry-packages"}},"5.2.0":{"name":"bn.js","version":"5.2.0","keywords":["BN","Big number","BigNum","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@5.2.0","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"fedor@indutny.com"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"jprichardson@gmail.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"358860674396c6997771a9d051fcc1b57d4ae002","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-5.2.0.tgz","fileCount":5,"integrity":"sha512-D7iWRBvnZE8ecXiLj/9wbxH7Tk79fAh8IHaTNq1RWRixsS02W+5qS+iE9yq6RYl0asXx5tw0bLhmT5pIfbSquw==","signatures":[{"sig":"MEUCIChmi8Y9RLTl3OgcKqb4uRG99J/3FmVNQkwlmjsjCFGvAiEA8X/5XkiE0sLReJyF2pmxzzhoe0IgrQWcStXu0uuz/DM=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":100370,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNV9CCRA9TVsSAnZWagAAYAQP/jrVDioNXm4Q5cNdWWQs\nAGiqBmfDNudcbGTgycpwIuXRztaoOVqH2S/OELKXPvlyGa7kcJhYr3TcMyjK\n21WOH0WCSfy81jUKXY+ULuOZtBnqo6CGKxW2FhiMYsyxk1ONVYyqXUe9qbm5\nKJREqA4kF07xTxaH+bnIgb6vlD26pDKp/VpsZ1hsXOkU8XV7KJyKxvOZiqBk\nSdjTMuh4iTntDfwkcSDz9CrBGDVH2m1lGLScZzLIV47rylOQN9WXRzYoh7Nc\n463+CUhT8VHewflAtEBoA8TT5dHkeYlyEcHNXj5BlMPzTqBHYta1YXpC0+kL\nqrGZFrOfxULuBcLcyMdIE3sOnk3tVafic5BmNvnEyBRS1yNk/AuowgO1yBmN\nB9Q7j+HJ0c4UPHQ76zU0A2TCuGNib1IYBq0oqVF4rZeRJMAWs3YUz/FfbgIg\n6rdt5Kk/fp4KYzHx0HyvAJY83ZP9G9OdQixfVlUdA536AelNqsvSdeVwxNle\nYpXVvOKnlWiUBRWjAjhdtKdIbo/d4zJaWsVn4LVEGYKeV/+1fN86jaXGiM65\nJhMOmBMfi06ACuYVyF2ju6L3qe+dUfKxV0uMAoSSrw9B84xOOuBVh0PDT2/C\nQ+Zr4BhRQzyO9Jk8TqqnUg4DUrKOXAYjpDdMFWNqFo7h0aRWZoWH5i0muZHk\nGkeb\r\n=mGBK\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/bn.js","browser":{"buffer":false},"gitHead":"5d5532d9fb7192b5d2545bdb2aa024ca1822a313","scripts":{"lint":"standardx","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"7.5.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"15.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.3.0","standardx":"^7.0.0","eslint-plugin-es5":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_5.2.0_1614110529702_0.28421628045542735","host":"s3://npm-registry-packages"}},"4.12.0":{"name":"bn.js","version":"4.12.0","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":"Fedor Indutny <fedor@indutny.com>","license":"MIT","_id":"bn.js@4.12.0","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"fedor@indutny.com"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"jprichardson@gmail.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"775b3f278efbb9718eec7361f483fb36fbbfea88","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.12.0.tgz","fileCount":4,"integrity":"sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==","signatures":[{"sig":"MEUCIFlqH0evMu0n2flQqWGqCYNCJ32qGlii88xyNox09mP1AiEAzbVfujZ+BTZXUkL9QDDRYw5KS1GDbuaZJESG+PiVHsY=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":95740,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJgNf1gCRA9TVsSAnZWagAAD5cP/ApDidi/AXehrSikFImE\njv3nHzQpGFYTSm4UC4R3NYVhO+H5b+9yGtyk1pifE5jpp18/f7/C8U4W3uis\nfRvROc0WYOxch1yc/Dx3RU/cxr/DXJm/+q1abxL9bguqfAk/iu/CSh2Dskum\nH8NzzAc8FxS5A0UQrrOLzbRRpb9DUTU3a4PVwveNdW+RWRztk71EsDzCUFDd\nkaLdLEcYujps1S4+QXRXkXlLP7YX6uw0OAfVVJ8XrxJmDSJDAVmShFoHKc4J\nxWKfZuvQwhj+pL5bRQYFYZw+dZVhAFCXmCdSJhi2Z2DsXibCBN57TzfCYz7o\nbdlcKl7ZL/X/VISnGkyU1HXFlpfdEnCizzLfhhcJmwfD5hcTDpGMgkjj2rfN\nkFSPNgAk/rvC3mVlf7xXylin1C0K9ulaJFCxb0+nzIbRdYW/+jBzR2oqbShD\n7JJbkRwV1uT1GeUyobz5Sly9jP9qFM/P9ciUhKBr9OaLARh4GpsbS1pdg/lT\nSY6ft6EbppLHyve60HEj9P0hQO2QnGe3Vyia43tEnrUdYxB1n2MIy3PQzSyC\nGJNHNyw4EDtsyE1Oc4gf+fmcYmfy9RlpUKi7HYqFuGblgUmcW7yAyXKIeMI6\nsHlQk6FftPzatwVaEGz2DYYwcpN24pd9trMi5siRxwkvaZzyoe7OUq8rnvuW\nwPav\r\n=ZTfx\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/bn.js","_from":"file:bn.js-4.12.0.tgz","browser":{"buffer":false},"scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"_resolved":"/home/kirill/projects/bn.js/bn.js-4.12.0.tgz","_integrity":"sha512-c98Bf3tPniI+scsdk237ku1Dc3ujXQTSgyiPUDEOe7tRkhrqridvh8klBv0HCEso1OLOYcHuCv/cS6DNxKH+ZA==","repository":{"url":"git@github.com:indutny/bn.js","type":"git"},"_npmVersion":"7.5.1","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"15.8.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_4.12.0_1614151007546_0.2548364362908715","host":"s3://npm-registry-packages"}},"5.2.1":{"name":"bn.js","version":"5.2.1","keywords":["BN","Big number","BigNum","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@5.2.1","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"fedor@indutny.com"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"jprichardson@gmail.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"0bc527a6a0d18d0aa8d5b0538ce4a77dccfa7b70","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-5.2.1.tgz","fileCount":4,"integrity":"sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==","signatures":[{"sig":"MEQCIE+ylwhhz6nQ5cXyUfxdTWMKERRFpr52h//rXASv0tLDAiAKuDTRM9Be5Uo54m975xliIxPfmgHi6oe8TYZQEn1aoQ==","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99045,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJijLVCACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmopkxAAm1WCfXLRFKcf4c4BhFysraGJFKQReW2lcyeM+XIS507f+tT0\r\nmvcQnIOPTCHrJa0PTtpcs4sgjZKXW0AQgBWlW4UNv7uBUM2Ea1CNtgKKS3kN\r\nBMIskN8qSYmcAcWkdpWvSHvs8mDFjn39Hi5cB/mvT2ArDo1tqJOgbtDshhVn\r\nWgLwNlnYH5Il9YTxYVduYhVUXz2Qv8sRQ/nEuNI4J++fNDzhxdpyLTuJRk29\r\nxOQJh9t9QWStz3TawrtVlEJ7TovRyjFf7BGhkCMX/8IUgQYbhpjogfGe3Vwa\r\nAQe9PGU2OdyOjbbMcJEtJoBxH/WXEf9QiJ2Y3G0oq4Nwfgb2ACEFMa04Mqxn\r\nxDsVqzU9XcttoX8e+kT0SPKkSmotrUhfEFOMXEdZWVrSTzccYyOWzVUz8Grb\r\n/OMK2qbixhQzsW7KkYeJrOlNuRJl0U6YjAhQGMDQ51P9rpTHyY+xmJyTw1aB\r\n+d+UcDaEe7mQ3WXWpXcCHpvsENEevh3aJVvtxVdeDxjDBHpBN4u78Z55lPfb\r\nLwW3ijfNoPF4qXP0C/bPGdYU3dNeiQ25CYBgTJ1bl2P8j7xXP+r25+CmisDw\r\ntttxlhQoLBKv1FQbzGx7Xyfp37PMR0QHczj4hi7HY0DhqBWLDhOcijgt5EKn\r\nSa09sHORv+vbw++wdd65lzchKg45W4iZyJ0=\r\n=WrTs\r\n-----END PGP SIGNATURE-----\r\n"},"main":"lib/bn.js","_from":"file:bn.js-5.2.1.tgz","browser":{"buffer":false},"scripts":{"lint":"standardx","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"_resolved":"/home/kirill/projects/bn.js/bn.js-5.2.1.tgz","_integrity":"sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==","repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"8.9.0","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"18.2.0","_hasShrinkwrap":false,"devDependencies":{"mocha":"^8.3.0","standardx":"^7.0.0","eslint-plugin-es5":"^1.5.0"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_5.2.1_1653388610212_0.7584018725207244","host":"s3://npm-registry-packages"}},"4.12.1":{"name":"bn.js","version":"4.12.1","keywords":["BN","BigNum","Big number","Modulo","Montgomery"],"author":{"name":"Fedor Indutny","email":"fedor@indutny.com"},"license":"MIT","_id":"bn.js@4.12.1","maintainers":[{"name":"anonymous","email":"calvin.metcalf@gmail.com"},{"name":"anonymous","email":"blackhole@livebox.sh"},{"name":"anonymous","email":"fanatid@ya.ru"},{"name":"anonymous","email":"jprichardson@gmail.com"}],"homepage":"https://github.com/indutny/bn.js","bugs":{"url":"https://github.com/indutny/bn.js/issues"},"dist":{"shasum":"215741fe3c9dba2d7e12c001d0cfdbae43975ba7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/bn.js/-/bn.js-4.12.1.tgz","fileCount":6,"integrity":"sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==","signatures":[{"sig":"MEUCIQDM99nHu7vqDyGuNJrF1Hg4LfFztOoBMF64AwIwbK3VIQIgGVmKJ6m9IgwBgbCFVxf80KgPe+RPMudljvWg/lzVmR4=","keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA"}],"unpackedSize":99880},"main":"lib/bn.js","_from":"file:bn.js-4.12.1.tgz","browser":{"buffer":false},"scripts":{"lint":"semistandard","test":"npm run lint && npm run unit","unit":"mocha --reporter=spec test/*-test.js"},"_npmUser":{"name":"anonymous","email":"fanatid@ya.ru"},"_resolved":"/home/kirill/projects/bn.js/bn.js-4.12.1.tgz","_integrity":"sha512-k8TVBiPkPJT9uHLdOKfFpqcfprwBFOAAXXozRubr7R7PfIuKvQlzcI4M0pALeqXN09vdaMbUdUj+pass+uULAg==","repository":{"url":"git+ssh://git@github.com/indutny/bn.js.git","type":"git"},"_npmVersion":"10.8.2","description":"Big number implementation in pure javascript","directories":{},"_nodeVersion":"22.5.1","_hasShrinkwrap":false,"devDependencies":{"mocha":"^2.1.0","istanbul":"^0.3.5","semistandard":"^7.0.4"},"_npmOperationalInternal":{"tmp":"tmp/bn.js_4.12.1_1731338371454_0.858265834806665","host":"s3://npm-registry-packages"}}},"name":"bn.js","time":{"created":"2014-04-26T12:02:08.664Z","modified":"2024-11-22T09:18:12.643Z","0.1.0":"2014-04-26T12:02:08.664Z","0.1.1":"2014-04-26T16:17:31.993Z","0.1.2":"2014-04-26T19:13:06.288Z","0.1.3":"2014-04-27T07:29:52.784Z","0.1.4":"2014-04-27T09:05:04.582Z","0.1.5":"2014-04-27T09:39:06.590Z","0.1.6":"2014-04-27T09:51:57.909Z","0.1.7":"2014-04-27T19:16:50.428Z","0.2.0":"2014-04-29T09:37:04.108Z","0.2.1":"2014-05-01T11:51:01.209Z","0.2.2":"2014-05-02T07:08:10.445Z","0.3.0":"2014-05-04T10:14:12.981Z","0.3.1":"2014-05-04T10:23:33.420Z","0.4.0":"2014-05-08T23:44:17.669Z","0.4.1":"2014-05-09T07:28:15.726Z","0.4.2":"2014-05-10T18:18:48.731Z","0.4.3":"2014-05-11T08:15:56.212Z","0.4.4":"2014-05-13T15:46:36.948Z","0.5.0":"2014-05-16T16:54:04.262Z","0.5.1":"2014-05-16T17:21:50.486Z","0.5.2":"2014-05-17T04:59:17.054Z","0.5.3":"2014-05-17T05:17:34.568Z","0.5.4":"2014-05-17T08:36:50.044Z","0.6.0":"2014-05-17T16:03:50.679Z","0.7.0":"2014-05-18T12:23:43.579Z","0.7.1":"2014-05-18T13:24:33.969Z","0.8.0":"2014-05-21T19:20:24.963Z","0.8.1":"2014-05-22T07:37:09.499Z","0.9.0":"2014-05-23T09:23:46.647Z","0.10.0":"2014-05-23T14:23:32.517Z","0.10.1":"2014-05-24T17:16:25.994Z","0.11.0":"2014-05-25T11:24:03.725Z","0.11.1":"2014-05-25T11:26:27.397Z","0.11.2":"2014-05-25T14:50:42.547Z","0.11.3":"2014-05-26T14:29:55.249Z","0.11.4":"2014-05-26T22:18:03.826Z","0.11.5":"2014-05-27T18:54:19.494Z","0.11.6":"2014-05-31T22:54:51.425Z","0.11.7":"2014-06-03T14:29:15.911Z","0.12.0":"2014-06-12T03:06:07.286Z","0.13.0":"2014-06-17T23:04:06.483Z","0.13.1":"2014-06-25T04:21:16.743Z","0.13.2":"2014-06-25T04:23:23.546Z","0.13.3":"2014-07-15T17:16:41.996Z","0.14.0":"2014-09-08T14:12:58.061Z","0.14.1":"2014-09-25T10:23:58.634Z","0.14.2":"2014-10-30T03:37:25.835Z","0.15.0":"2014-11-02T19:39:36.499Z","0.15.1":"2014-11-06T09:46:12.963Z","0.15.2":"2014-11-07T09:15:33.327Z","0.16.0":"2014-11-27T16:00:19.372Z","0.16.1":"2015-01-04T11:59:54.274Z","1.0.0":"2015-01-05T20:51:38.804Z","1.0.1":"2015-01-26T11:48:32.586Z","1.1.0":"2015-01-26T14:00:45.345Z","1.1.1":"2015-02-06T01:49:31.923Z","1.2.0":"2015-02-06T16:16:00.709Z","1.2.1":"2015-02-06T17:16:07.245Z","1.2.2":"2015-02-06T21:08:14.147Z","1.2.3":"2015-02-07T00:37:57.005Z","1.2.4":"2015-02-07T02:05:31.709Z","1.3.0":"2015-02-08T14:00:37.975Z","2.0.0":"2015-02-09T20:43:49.879Z","2.0.1":"2015-03-02T04:45:57.831Z","2.0.2":"2015-03-20T20:40:53.333Z","2.0.3":"2015-03-26T17:09:59.064Z","2.0.4":"2015-04-30T08:57:35.086Z","2.0.5":"2015-05-10T18:19:30.793Z","2.1.0":"2015-06-25T02:14:56.941Z","2.2.0":"2015-07-03T22:31:24.993Z","3.0.0":"2015-07-07T22:55:36.377Z","3.0.1":"2015-07-07T23:41:00.710Z","3.1.0":"2015-07-16T04:31:52.200Z","3.1.1":"2015-07-16T05:36:22.720Z","3.1.2":"2015-08-25T01:03:24.157Z","3.2.0":"2015-10-01T19:30:29.233Z","3.3.0":"2015-10-27T17:13:09.802Z","4.0.0":"2015-10-28T02:16:29.043Z","4.1.0":"2015-10-29T00:30:57.551Z","4.1.1":"2015-11-01T15:49:06.890Z","4.2.0":"2015-11-18T15:53:16.929Z","4.3.0":"2015-11-22T01:45:42.475Z","4.4.0":"2015-11-29T18:22:50.584Z","4.5.0":"2015-12-04T01:51:41.732Z","4.5.1":"2015-12-11T05:08:56.766Z","4.5.2":"2015-12-15T01:28:18.631Z","4.6.0":"2015-12-19T22:34:44.626Z","4.6.1":"2015-12-19T22:35:43.579Z","4.6.2":"2016-01-04T14:12:05.962Z","4.6.3":"2016-01-13T20:31:50.699Z","4.6.4":"2016-01-14T04:04:54.082Z","4.6.5":"2016-01-21T23:27:37.737Z","4.6.6":"2016-01-22T18:32:37.102Z","4.7.0":"2016-01-24T21:33:11.645Z","4.8.0":"2016-01-25T02:59:41.209Z","4.8.1":"2016-01-25T20:30:27.338Z","4.9.0":"2016-01-27T21:16:47.740Z","4.10.0":"2016-02-01T04:39:01.687Z","4.10.1":"2016-02-04T22:38:04.222Z","4.10.2":"2016-02-09T02:43:30.749Z","4.10.3":"2016-02-09T02:48:07.303Z","4.10.4":"2016-02-27T01:11:51.858Z","4.10.5":"2016-03-01T06:05:02.722Z","4.11.0":"2016-03-08T18:40:14.077Z","4.11.1":"2016-03-25T22:35:14.294Z","4.11.2":"2016-04-12T19:03:41.857Z","4.11.3":"2016-04-12T19:25:19.482Z","4.11.4":"2016-06-05T20:32:29.149Z","4.11.5":"2016-07-13T20:37:05.929Z","4.11.6":"2016-08-02T01:13:50.698Z","4.11.7":"2017-06-21T00:08:53.725Z","4.11.8":"2017-08-07T22:21:45.304Z","5.0.0":"2019-07-07T16:17:26.258Z","5.1.0":"2019-12-23T08:42:54.791Z","5.1.1":"2019-12-24T20:33:10.907Z","4.11.9":"2020-05-20T15:13:18.347Z","5.1.2":"2020-05-20T15:24:38.341Z","5.1.3":"2020-08-14T18:04:46.507Z","5.2.0":"2021-02-23T20:02:09.904Z","4.12.0":"2021-02-24T07:16:47.735Z","5.2.1":"2022-05-24T10:36:50.363Z","4.12.1":"2024-11-11T15:19:31.661Z"},"readmeFilename":"README.md","homepage":"https://github.com/indutny/bn.js"}