From 8c0ea02720bd7fcbb2009d769fce2213a19d7722 Mon Sep 17 00:00:00 2001 From: gamalielhere Date: Fri, 24 Aug 2018 12:55:27 -0700 Subject: [PATCH] Recompile, refactor validations, replace library, use validate script in travis --- .travis.yml | 11 +- checkContract.js | 38 +- checkToken.js | 167 +++-- .../contracts/akroma/contract-abi-akroma.json | 209 +++++- .../akroma/contract-abi-akroma.min.json | 2 +- dist/contracts/clo/contract-abi-clo.json | 209 +++++- dist/contracts/clo/contract-abi-clo.min.json | 2 +- dist/contracts/egem/contract-abi-egem.json | 209 +++++- .../contracts/egem/contract-abi-egem.min.json | 2 +- dist/contracts/ella/contract-abi-ella.json | 209 +++++- .../contracts/ella/contract-abi-ella.min.json | 2 +- dist/contracts/eosc/contract-abi-eosc.json | 209 +++++- .../contracts/eosc/contract-abi-eosc.min.json | 2 +- dist/contracts/eth/contract-abi-eth.json | 654 ++++++++++++++++++ dist/contracts/eth/contract-abi-eth.min.json | 2 +- dist/contracts/etho/contract-abi-etho.json | 209 +++++- .../contracts/etho/contract-abi-etho.min.json | 2 +- dist/contracts/etsc/contract-abi-etsc.json | 209 +++++- .../contracts/etsc/contract-abi-etsc.min.json | 2 +- dist/contracts/exp/contract-abi-exp.json | 209 +++++- dist/contracts/exp/contract-abi-exp.min.json | 2 +- dist/contracts/go/contract-abi-go.json | 209 +++++- dist/contracts/go/contract-abi-go.min.json | 2 +- dist/contracts/music/contract-abi-music.json | 209 +++++- .../music/contract-abi-music.min.json | 2 +- dist/contracts/pirl/contract-abi-pirl.json | 209 +++++- .../contracts/pirl/contract-abi-pirl.min.json | 2 +- dist/contracts/poa/contract-abi-poa.json | 209 +++++- dist/contracts/poa/contract-abi-poa.min.json | 2 +- dist/contracts/tomo/contract-abi-tomo.json | 209 +++++- .../contracts/tomo/contract-abi-tomo.min.json | 2 +- dist/contracts/ubq/contract-abi-ubq.json | 209 +++++- dist/contracts/ubq/contract-abi-ubq.min.json | 2 +- dist/tokens/ella/tokens-ella.json | 2 +- dist/tokens/ella/tokens-ella.min.json | 2 +- dist/tokens/etc/tokens-etc.json | 5 +- dist/tokens/etc/tokens-etc.min.json | 2 +- dist/tokens/eth/tokens-eth.json | 547 +++++++++------ dist/tokens/eth/tokens-eth.min.json | 2 +- package-lock.json | 32 +- package.json | 7 +- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...2a197cb00d4747a1fe03395095ce2a5cc6819.json | 1 + ...684139f756C24eC0731E9F74FE50e5548dDeF.json | 1 + ...16550aBc8AF79c7A5902DEF9Efa3bC9A95200.json | 1 + ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...0000000000000000000000000000000000000.json | 209 +++++- ...e7fe4b05f2b3db1d788e705963f5d647b0044.json | 2 +- ...a6F48C815689502C43eC1a59F1b5DD3C04E1F.json | 5 +- ...a9ce600d08bf9b76f49fa4e7b38a67ebeb1e6.json | 2 +- ...d6b471e332f140e7d9dbb99e5e3822f728da6.json | 3 +- ...faa4703a34a7fdb19bec2e14fd427c9638416.json | 2 +- ...db535942a8c84d9f4b5d37e1b25f91ea4804c.json | 2 +- ...a4ca1303383f1082b6b1fb937116e4b3b5605.json | 62 +- ...684139f756C24eC0731E9F74FE50e5548dDeF.json | 1 + ...16550abc8af79c7a5902def9efa3bc9a95200.json | 2 +- ...0441f4f73bdb6dc2fa5af7c3fc5fd551ec838.json | 2 +- 68 files changed, 6998 insertions(+), 439 deletions(-) diff --git a/.travis.yml b/.travis.yml index 7f254a803..c4d9efd84 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,17 +1,12 @@ language: node_js node_js: '8' stages: - - name: check contract format - - name: check token format + - name: check formatting issues jobs: fast_finish: true include: - - stage: check contract format + - stage: check formatting issues script: - | - node checkContract.js; - - stage: check token format - script: - - | - node checkToken.js; + npm run validate diff --git a/checkContract.js b/checkContract.js index 47438d8c2..ef6626cb5 100644 --- a/checkContract.js +++ b/checkContract.js @@ -1,26 +1,31 @@ const fs = require('fs'); const web3 = require('web3'); const path = require('path'); -const contractsDirectory = './src/contracts/'; -const Schema = require('validate'); -const contract = new Schema({ +const contractsDirectory = './src/contracts'; +const validate = require('validate.js'); +const constraints = { name: { - type: String, - required: true + presence: { + allowEmpty: false + } }, address: { - type: String, - required: true + presence: { + allowEmpty: false + }, + length: { + is: 42 + } }, comment: { - type: String, - required: true + presence: true }, abi: { - type: Array, - required: true + presence: { + allowEmpty: false + } } -}); +}; function run() { fs.readdirSync(contractsDirectory).forEach(folder => { @@ -32,10 +37,17 @@ function run() { const obj = JSON.parse( fs.readFileSync(`${contractsDirectory}/${folder}/${file}`, 'utf8') ); - if (contract.validate(obj) === false) { + if (validate(obj, constraints) !== undefined) { + const errs = validate(obj, constraints); + Object.keys(errs).forEach(key => { + console.log( + `${errs[key][0]} for ${file} in ${contractsDirectory}/${folder}` + ); + }); process.exit(1); } } else { + console.log('Incorrect file name or file extension'); process.exit(1); } }); diff --git a/checkToken.js b/checkToken.js index ad4a3c6f7..c7cd20539 100644 --- a/checkToken.js +++ b/checkToken.js @@ -1,99 +1,111 @@ const fs = require('fs'); -const tokensDirectory = './src/tokens/'; +const tokensDirectory = './src/tokens'; const web3 = require('web3'); const path = require('path'); -const Schema = require('validate'); -const token = new Schema({ +const validate = require('validate.js'); + +const constraints = { symbol: { - type: String, - required: true + presence: { + allowEmpty: false + } }, name: { - type: String, - required: true + presence: { + allowEmpty: false + } }, type: { - type: String, - required: true + presence: { + allowEmpty: false + } }, address: { - type: String, - required: true + presence: { + allowEmpty: false + }, + length: { + is: 42 + } }, ens_address: { - type: String + presence: true }, decimals: { - type: Number, - required: true + presence: { + allowEmpty: false + } }, website: { - type: String + presence: true }, logo: { - src: { - type: String - }, - width: { - type: String - }, - height: { - type: String - }, - ipfs_hash: { - type: String - } + presence: true + }, + 'logo.src': { + presence: true + }, + 'logo.width': { + presence: true + }, + 'logo.height': { + presence: true + }, + 'logo.ipfs_hash': { + presence: true }, support: { - email: { - type: String - }, - url: { - type: String - } + presence: true + }, + 'support.email': { + presence: true + }, + 'support.url': { + presence: true }, social: { - blog: { - type: String - }, - chat: { - type: String - }, - facebook: { - type: String - }, - forum: { - type: String - }, - github: { - type: String - }, - gitter: { - type: String - }, - instagram: { - type: String - }, - linkedin: { - type: String - }, - reddit: { - type: String - }, - slack: { - type: String - }, - telegram: { - type: String - }, - twitter: { - type: String - }, - youtube: { - type: String - } + presence: true + }, + 'social.blog': { + presence: true + }, + 'social.chat': { + presence: true + }, + 'social.facebook': { + presence: true + }, + 'social.forum': { + presence: true + }, + 'social.github': { + presence: true + }, + 'social.gitter': { + presence: true + }, + 'social.instagram': { + presence: true + }, + 'social.linkedin': { + presence: true + }, + 'social.reddit': { + presence: true + }, + 'social.slack': { + presence: true + }, + 'social.telegram': { + presence: true + }, + 'social.twitter': { + presence: true + }, + 'social.youtube': { + presence: true } -}); +}; function run() { fs.readdirSync(tokensDirectory).forEach(folder => { @@ -105,10 +117,17 @@ function run() { const obj = JSON.parse( fs.readFileSync(`${tokensDirectory}/${folder}/${file}`, 'utf8') ); - if (token.validate(obj) === false) { + if (validate(obj, constraints) !== undefined) { + const errs = validate(obj, constraints); + Object.keys(errs).forEach(key => { + console.log( + `${errs[key][0]} for ${file} in ${tokensDirectory}/${folder}` + ); + }); process.exit(1); } } else { + console.log('Incorrect file name or file extension'); process.exit(1); } }); diff --git a/dist/contracts/akroma/contract-abi-akroma.json b/dist/contracts/akroma/contract-abi-akroma.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/akroma/contract-abi-akroma.json +++ b/dist/contracts/akroma/contract-abi-akroma.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/akroma/contract-abi-akroma.min.json b/dist/contracts/akroma/contract-abi-akroma.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/akroma/contract-abi-akroma.min.json +++ b/dist/contracts/akroma/contract-abi-akroma.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/clo/contract-abi-clo.json b/dist/contracts/clo/contract-abi-clo.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/clo/contract-abi-clo.json +++ b/dist/contracts/clo/contract-abi-clo.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/clo/contract-abi-clo.min.json b/dist/contracts/clo/contract-abi-clo.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/clo/contract-abi-clo.min.json +++ b/dist/contracts/clo/contract-abi-clo.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/egem/contract-abi-egem.json b/dist/contracts/egem/contract-abi-egem.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/egem/contract-abi-egem.json +++ b/dist/contracts/egem/contract-abi-egem.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/egem/contract-abi-egem.min.json b/dist/contracts/egem/contract-abi-egem.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/egem/contract-abi-egem.min.json +++ b/dist/contracts/egem/contract-abi-egem.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/ella/contract-abi-ella.json b/dist/contracts/ella/contract-abi-ella.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/ella/contract-abi-ella.json +++ b/dist/contracts/ella/contract-abi-ella.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/ella/contract-abi-ella.min.json b/dist/contracts/ella/contract-abi-ella.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/ella/contract-abi-ella.min.json +++ b/dist/contracts/ella/contract-abi-ella.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/eosc/contract-abi-eosc.json b/dist/contracts/eosc/contract-abi-eosc.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/eosc/contract-abi-eosc.json +++ b/dist/contracts/eosc/contract-abi-eosc.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/eosc/contract-abi-eosc.min.json b/dist/contracts/eosc/contract-abi-eosc.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/eosc/contract-abi-eosc.min.json +++ b/dist/contracts/eosc/contract-abi-eosc.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/eth/contract-abi-eth.json b/dist/contracts/eth/contract-abi-eth.json index bdf4ff434..08867f246 100644 --- a/dist/contracts/eth/contract-abi-eth.json +++ b/dist/contracts/eth/contract-abi-eth.json @@ -27937,6 +27937,232 @@ } ] }, + { + "name": "Telex", + "address": "0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200", + "abi": [ + { + "constant": true, + "inputs": [], + "name": "name", + "outputs": [{ "name": "", "type": "string" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_spender", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "approve", + "outputs": [{ "name": "success", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "addresses", "type": "address[]" }, + { "name": "amounts", "type": "uint256[]" } + ], + "name": "multipleTransfer", + "outputs": [{ "name": "success", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalSupply", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_from", "type": "address" }, + { "name": "_to", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "transferFrom", + "outputs": [{ "name": "success", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "decimals", + "outputs": [{ "name": "", "type": "uint8" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "", "type": "address" }], + "name": "balanceOf", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "acceptOwnership", + "outputs": [{ "name": "success", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "owner", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "symbol", + "outputs": [{ "name": "", "type": "string" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_to", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "transfer", + "outputs": [{ "name": "success", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "", "type": "address" }], + "name": "frozenAccount", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_spender", "type": "address" }, + { "name": "_value", "type": "uint256" }, + { "name": "_extraData", "type": "bytes" } + ], + "name": "approveAndCall", + "outputs": [{ "name": "success", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "newOwner", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { "name": "", "type": "address" }, + { "name": "", "type": "address" } + ], + "name": "allowance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "target", "type": "address" }, + { "name": "freeze", "type": "bool" } + ], + "name": "freezeAccount", + "outputs": [{ "name": "success", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_newOwner", "type": "address" }], + "name": "transferOwnership", + "outputs": [{ "name": "success", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "inputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "from", "type": "address" }, + { "indexed": true, "name": "to", "type": "address" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "_owner", "type": "address" }, + { "indexed": true, "name": "_spender", "type": "address" }, + { "indexed": false, "name": "_value", "type": "uint256" } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "target", "type": "address" }, + { "indexed": false, "name": "frozen", "type": "bool" } + ], + "name": "FrozenFunds", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "_from", "type": "address" }, + { "indexed": true, "name": "_to", "type": "address" } + ], + "name": "OwnershipTransferred", + "type": "event" + } + ] + }, { "name": "theCyber", "address": "0x97A99C819544AD0617F48379840941eFbe1bfAE1", @@ -29168,6 +29394,434 @@ } ] }, + { + "name": "URB", + "address": "0x931684139f756C24eC0731E9F74FE50e5548dDeF", + "abi": [ + { + "constant": true, + "inputs": [], + "name": "name", + "outputs": [{ "name": "", "type": "string" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_spender", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "approve", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_fromVault", "type": "address" }, + { "name": "_tokensAmount", "type": "uint256" }, + { "name": "_beneficiary", "type": "address" }, + { "name": "_unlockTime", "type": "uint256" } + ], + "name": "lockTokens", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "totalSupply", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_from", "type": "address" }, + { "name": "_to", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "transferFrom", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_owner", "type": "address" }], + "name": "vestingCountOf", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "urbitTeamTokensVault", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "decimals", + "outputs": [{ "name": "", "type": "uint8" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "HARD_CAP", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_value", "type": "uint256" }], + "name": "burn", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "saleClosedTimestamp", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_owner", "type": "address" }], + "name": "releasableBalanceOf", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "releaseVestedTokens", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_tokensAmount", "type": "uint256" }, + { "name": "_beneficiary", "type": "address" }, + { "name": "_duration", "type": "uint256" } + ], + "name": "lockBountyTokens", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_owner", "type": "address" }], + "name": "lockedBalanceOf", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "retainedTokensVault", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "senderIsAdmin", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_spender", "type": "address" }, + { "name": "_subtractedValue", "type": "uint256" } + ], + "name": "decreaseApproval", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "MAGNITUDE", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { "name": "_owner", "type": "address" }, + { "name": "_index", "type": "uint256" } + ], + "name": "vestingOf", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_owner", "type": "address" }], + "name": "balanceOf", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_newUrbitAdminAddress", "type": "address" }], + "name": "changeAdmin", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "burnUnsoldTokens", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "symbol", + "outputs": [{ "name": "", "type": "string" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_to", "type": "address" }, + { "name": "_value", "type": "uint256" } + ], + "name": "transfer", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "createSaleTokens", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "rewardsTokensVault", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "saleTokensAddress", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "saleClosed", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_fromVault", "type": "address" }, + { "name": "_tokensAmount", "type": "uint256" }, + { "name": "_beneficiary", "type": "address" }, + { "name": "_start", "type": "uint256" }, + { "name": "_cliff", "type": "uint256" }, + { "name": "_duration", "type": "uint256" }, + { "name": "_revocable", "type": "bool" } + ], + "name": "vestTokens", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_owner", "type": "address" }], + "name": "releaseVestedTokensFor", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_spender", "type": "address" }, + { "name": "_addedValue", "type": "uint256" } + ], + "name": "increaseApproval", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "bountyTokensVault", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { "name": "_owner", "type": "address" }, + { "name": "_spender", "type": "address" } + ], + "name": "allowance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [ + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" } + ], + "name": "vestingsOf", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "urbitAdminAddress", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "closeSale", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "advisorsTokensVault", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [ + { "name": "_urbitAdminAddress", "type": "address" }, + { "name": "_saleTokensAddress", "type": "address" } + ], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "burner", "type": "address" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Burn", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "owner", "type": "address" }, + { "indexed": true, "name": "spender", "type": "address" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Approval", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "from", "type": "address" }, + { "indexed": true, "name": "to", "type": "address" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + } + ] + }, { "name": "VDOC - dutyof.care", "address": "0x82BD526bDB718C6d4DD2291Ed013A5186cAE2DCa", diff --git a/dist/contracts/eth/contract-abi-eth.min.json b/dist/contracts/eth/contract-abi-eth.min.json index 70e3eb2db..5dc14d7ae 100644 --- a/dist/contracts/eth/contract-abi-eth.min.json +++ b/dist/contracts/eth/contract-abi-eth.min.json @@ -1 +1 @@ -[{"name":"ADST - AdShares","address":"0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_bidValue","type":"uint256"}],"name":"getBuyPrice","outputs":[{"name":"tokenCount","type":"uint256"},{"name":"purchaseValue","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"withdrawnBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawFunds","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"withdrawAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tradeSpreadInvert","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleEndDeclarationTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner2","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockFractionInvert","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"haltCrowdsale","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner1","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"confirmCrowdsaleEnd","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_maxPrice","type":"uint256"}],"name":"buyLimit","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"unlockedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenPriceMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unlockFunds","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_askSizeTokens","type":"uint256"}],"name":"getSellPrice","outputs":[{"name":"saleValue","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"declareCrowdsaleEnd","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenCreationMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isHalted","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenCount","type":"uint256"},{"name":"_minPrice","type":"uint256"}],"name":"sellLimit","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minFundingReached","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleEndLockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenCount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_owner1","type":"address"},{"name":"_owner2","type":"address"},{"name":"_withdrawAddress","type":"address"},{"name":"_crowdsaleStartBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"purchaseValue","type":"uint256"},{"indexed":false,"name":"supplyAfter","type":"uint256"}],"name":"LogBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"saleValue","type":"uint256"},{"indexed":false,"name":"supplyAfter","type":"uint256"}],"name":"LogSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"completed","type":"bool"}],"name":"LogCrowdsaleEnd","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"AIgathaToken","address":"0x1543d0F83489e82A1344DF6827B23d541F235A50","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"threshold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleActive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"extended","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transferable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"at","type":"uint256"}],"name":"getRateAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"buyer","type":"address"},{"name":"amount","type":"uint256"}],"name":"push","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"endDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"extendSaleTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_wallet","type":"address"},{"name":"_saleCap","type":"uint256"},{"name":"_totalSupply","type":"uint256"},{"name":"_threshold","type":"uint256"},{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"PreICOTokenPushed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"user_id","type":"bytes32"}],"name":"UserIDChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"APIS Crowdsale","address":"0x749e66e12c09E4105381e373c0E6CA0bCe573d36","comment":"","abi":[{"constant":true,"inputs":[],"name":"fundingGoalCurrent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isClaimable","outputs":[{"name":"message","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_closed","type":"bool"}],"name":"closeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"whiteListOf","outputs":[{"name":"message","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"price","type":"uint256"}],"name":"setPriceOfApis","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"fundersProperty","outputs":[{"name":"reservedFunds","type":"uint256"},{"name":"paidFunds","type":"uint256"},{"name":"reservedApis","type":"uint256"},{"name":"withdrawedApis","type":"uint256"},{"name":"purchaseTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"}],"name":"claimApis","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOpened","outputs":[{"name":"isOpend","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"fundingGoal","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"buyToken","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_funder","type":"address"}],"name":"refundByOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"priceOfApisPerFund","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_currentFundingGoalAPIS","type":"uint256"}],"name":"setCurrentFundingGoal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimMyApis","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleStatus","outputs":[{"name":"totalReservedFunds","type":"uint256"},{"name":"totalPaidFunds","type":"uint256"},{"name":"totalReceivedFunds","type":"uint256"},{"name":"totalReservedApis","type":"uint256"},{"name":"totalWithdrawedApis","type":"uint256"},{"name":"totalSoldApis","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"remainRefundable","type":"bool"}],"name":"withdrawalFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_fundingGoalApis","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_addressOfApisTokenUsedAsReward","type":"address"},{"name":"_addressOfWhiteList","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"beneficiary","type":"address"},{"indexed":false,"name":"amountOfFunds","type":"uint256"},{"indexed":false,"name":"amountOfApis","type":"uint256"}],"name":"ReservedApis","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"WithdrawalFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"funder","type":"address"},{"indexed":false,"name":"amountOfFunds","type":"uint256"},{"indexed":false,"name":"amountOfApis","type":"uint256"}],"name":"WithdrawalApis","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_backer","type":"address"},{"indexed":false,"name":"_amountFunds","type":"uint256"},{"indexed":false,"name":"_amountApis","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"APIS Token","address":"0x4c0fbe1bb46612915e7967d2c3213cd4d87257ad","comment":"","abi":[{"constant":false,"inputs":[{"name":"_targetWallet","type":"address"},{"name":"_timeLockUpEnd","type":"uint256"}],"name":"walletLockBoth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_targetWallet","type":"address"}],"name":"walletLockBothForever","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"manoContracts","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_apisWei","type":"uint256"}],"name":"transferAndLockForever","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_targetWallet","type":"address"},{"name":"_timeLockEnd","type":"uint256"},{"name":"_sendLock","type":"bool"},{"name":"_receiveLock","type":"bool"}],"name":"walletLock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isWalletLocked_Receive","outputs":[{"name":"isReceiveLocked","type":"bool"},{"name":"until","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"manoAddr","type":"address"},{"name":"registered","type":"bool"}],"name":"registerManoContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_apisWei","type":"uint256"},{"name":"_timeLockUpEnd","type":"uint256"}],"name":"transferAndLockUntil","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_apisWei","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_targetWallet","type":"address"}],"name":"walletUnlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockedWalletInfo","outputs":[{"name":"timeLockUpEnd","type":"uint256"},{"name":"sendLock","type":"bool"},{"name":"receiveLock","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isMyWalletLocked_Receive","outputs":[{"name":"isReceiveLocked","type":"bool"},{"name":"until","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isWalletLocked_Send","outputs":[{"name":"isSendLocked","type":"bool"},{"name":"until","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isMyWalletLocked_Send","outputs":[{"name":"isSendLocked","type":"bool"},{"name":"until","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"},{"indexed":false,"name":"timeLockUpEnd","type":"uint256"},{"indexed":false,"name":"sendLock","type":"bool"},{"indexed":false,"name":"receiveLock","type":"bool"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"}],"name":"Unlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"RejectedPaymentToLockedUpWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"RejectedPaymentFromLockedUpWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"manoContract","type":"address"},{"indexed":false,"name":"registered","type":"bool"}],"name":"ManoContractRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Athenian: Warrior for Battle","address":"0x17052d51E954592C1046320c2371AbaB6C73Ef10","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"tokenSupply","type":"uint256"}],"name":"SetupToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"adr","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Augur / REP","address":"0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5","comment":"","abi":[{"name":"allowance","type":"function","constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"approve","type":"function","constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"balanceOf","type":"function","constant":true,"inputs":[{"name":"address","type":"address"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"decimals","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"getSeeded","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"name","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"setSaleDistribution","type":"function","constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"balances","type":"uint256[]"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"symbol","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"totalSupply","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"transfer","type":"function","constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"fxpValue","type":"uint256"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"transferFrom","type":"function","constant":false,"inputs":[{"name":"from","type":"address"},{"name":"receiver","type":"address"},{"name":"fxpValue","type":"uint256"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"Approval(address,address,uint256)","type":"event","inputs":[{"name":"owner","type":"address","indexed":true},{"name":"spender","type":"address","indexed":true},{"name":"fxpValue","type":"uint256","indexed":false}]},{"name":"Transfer(address,address,uint256)","type":"event","inputs":[{"name":"from","type":"address","indexed":true},{"name":"to","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}]}]},{"name":"AX1 Mining Crowdsale","address":"0x5de9f32b2665bb2cdc23bfb51b03e2a2985ecc87","comment":"","abi":[{"constant":false,"inputs":[{"name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractAddr","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensSent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"_stage1","type":"uint256"},{"name":"_stage2","type":"uint256"},{"name":"_stage3","type":"uint256"},{"name":"_stage4","type":"uint256"}],"name":"refundParticipant","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"collectRefund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStageCap","outputs":[{"name":"cap","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_bounty","type":"uint256"},{"name":"_founders","type":"uint256"}],"name":"releaseTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"setPreallocations","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stages","outputs":[{"name":"stageCount","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_blacklisted","type":"address"}],"name":"removeFromBlacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"signerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unsuccessfulWithdrawal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"refundable","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burntFounder","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"dataframe","type":"bytes"}],"name":"getKYCPayload","outputs":[{"name":"whitelistedAddress","type":"address"},{"name":"customerId","type":"uint128"},{"name":"minEth","type":"uint32"},{"name":"maxEth","type":"uint32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStageTokensSold","outputs":[{"name":"sold","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newStart","type":"uint256"}],"name":"extendStart","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint128"}],"name":"balancePerID","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStageDeadline","outputs":[{"name":"deadline","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"softCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_stage","type":"uint8"},{"name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"burntBounty","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"setTokenAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"canWithdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"halted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStageMinimum","outputs":[{"name":"min","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"successfulWithdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"refunded","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"withdrawn","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stopICO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"dataframe","type":"bytes"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"buyWithKYCData","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"presaleBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"tokenBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"setStages","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"hasEnded","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"presaleWeiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStagePrice","outputs":[{"name":"price","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hardCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getStage","outputs":[{"name":"stage","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_rate","type":"uint256"},{"name":"_wallet","type":"address"},{"name":"_beneficiary","type":"address"},{"name":"_buyer","type":"address"},{"name":"_founders","type":"address"},{"name":"_bounty","type":"address"},{"name":"_softCap","type":"uint256"},{"name":"_hardCap","type":"uint256"},{"name":"_token","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"signer","type":"address"}],"name":"SignerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"TokensReclaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"AddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"RemovedFromBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"RefundCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"},{"indexed":false,"name":"bounty","type":"uint256"},{"indexed":false,"name":"founders","type":"uint256"}],"name":"TokensReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"participant","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"ParticipantWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"admin","type":"address"},{"indexed":false,"name":"stage","type":"uint8"},{"indexed":false,"name":"price","type":"uint256"}],"name":"StagePriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldStart","type":"uint256"},{"indexed":false,"name":"newStart","type":"uint256"}],"name":"ExtendedStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"admin","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"BeneficiaryWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"SaleStopped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"Battle Of Thermopylae: Battle","address":"0x553B4546D26F383d4f4a056B7f50DaDFf07FB252","comment":"","abi":[{"constant":true,"inputs":[],"name":"getGreeksBattlePoints","outputs":[{"name":"greeksBattlePoints","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_ATHENIANS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_warriors","type":"uint256"}],"name":"assignAtheniansToBattle","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"immortals","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BTL_IMMORTAL","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getImmortalsOnTheBattlefield","outputs":[{"name":"immortalsOnTheBattlefield","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BTL_PERSIAN","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newVersion","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_faction","type":"address"}],"name":"getTotalSlaves","outputs":[{"name":"slaves","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_warriors","type":"uint256"}],"name":"assignImmortalsToBattle","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"athenians","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BATTLE_POINT_DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTemporaryWinningFaction","outputs":[{"name":"temporaryWinningFaction","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"battles","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getPersiansOnTheBattlefield","outputs":[{"name":"persiansOnTheBattlefield","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isInTime","outputs":[{"name":"inTime","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_battleTokenAddress","type":"address"},{"name":"_battleTokenOwner","type":"address"}],"name":"setBattleTokenAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BTL_SPARTAN","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"WAD","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isInProgress","outputs":[{"name":"inProgress","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"redeemWarriors","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BTL_ATHENIAN","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isTimeExpired","outputs":[{"name":"timeExpired","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BP_ATHENIAN","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"avarageBlockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"persians","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getAtheniansOnTheBattlefield","outputs":[{"name":"atheniansOnTheBattlefield","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"warriorsOnTheBattlefield","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getGreeksBattlePointsBy","outputs":[{"name":"playerBattlePoints","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"},{"name":"_loosingMainTroops","type":"address"}],"name":"computeSlaves","outputs":[{"name":"slaves","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isEnded","outputs":[{"name":"ended","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"warriorsByPlayer","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"spartans","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getPersiansBattlePoints","outputs":[{"name":"persiansBattlePoints","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getPersiansBattlePointsBy","outputs":[{"name":"playerBattlePoints","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getSpartansOnTheBattlefield","outputs":[{"name":"spartansOnTheBattlefield","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BATTLE_CASUALTIES","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_PERSIANS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newVersion","type":"string"},{"name":"_newAddress","type":"address"}],"name":"setDeprecated","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_SPARTANS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getWinningFaction","outputs":[{"name":"winningFaction","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BP_PERSIAN","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_IMMORTALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"battlesOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BP_IMMORTAL","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BP_SPARTAN","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_warriors","type":"uint256"}],"name":"assignSpartansToBattle","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isDraw","outputs":[{"name":"draw","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_warriors","type":"uint256"}],"name":"assignPersiansToBattle","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"VERSION","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_life","type":"uint256"},{"name":"_avarageBlockTime","type":"uint8"},{"name":"_persians","type":"address"},{"name":"_immortals","type":"address"},{"name":"_spartans","type":"address"},{"name":"_athenians","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_faction","type":"address"},{"indexed":false,"name":"_battlePointsIncrementForecast","type":"uint256"}],"name":"WarriorsAssignedToBattlefield","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_faction","type":"address"},{"indexed":false,"name":"_survivedWarriors","type":"uint256"}],"name":"WarriorsBackToHome","type":"event"}]},{"name":"BattleDrome ICO / Crowdsale","address":"0xeaAf270436a0ed397ED23BBF64DF7b1DCAfF142F","comment":"","abi":[{"constant":true,"inputs":[],"name":"creator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"duration","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"devRatio","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingMax","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_contributor","type":"address"}],"name":"checkTokBalance","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_contributor","type":"address"}],"name":"checkSavedEthBalance","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"checkTokDev","outputs":[{"name":"total","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ratio","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"savedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingGoal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"checkTokSold","outputs":[{"name":"total","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"checkTokTotal","outputs":[{"name":"total","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_contributor","type":"address"}],"name":"checkEthBalance","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenBalance","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creatorPaid","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minimumPurchase","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isComplete","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"Token","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"contribute","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"payMe","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"payCreator","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"escrow","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"percentOfGoal","outputs":[{"name":"goalPercent","type":"uint16"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isSuccessful","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_contributor","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":true,"name":"_timestamp","type":"uint256"}],"name":"Contribution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_receiver","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":true,"name":"_timestamp","type":"uint256"}],"name":"PayTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_receiver","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":true,"name":"_timestamp","type":"uint256"}],"name":"PayEther","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_value","type":"uint256"},{"indexed":true,"name":"_timestamp","type":"uint256"}],"name":"BurnTokens","type":"event"}]},{"name":"BBK Brickblock Token","address":"0x4a6058666cf1057eaC3CD3A5a614620547559fc9","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contributorsShare","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_contributor","type":"address"},{"name":"_value","type":"uint256"}],"name":"distributeTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dead","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonusDistributionAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"toggleDead","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalizeTokenSale","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonusTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bonusShare","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"companyTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"changeFountainContractAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleActive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fountainContractAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_value","type":"uint256"}],"name":"distributeBonusTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"companyShare","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_bonusDistributionAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"totalSupply","type":"uint256"},{"indexed":false,"name":"distributedTokens","type":"uint256"},{"indexed":false,"name":"bonusTokens","type":"uint256"},{"indexed":false,"name":"companyTokens","type":"uint256"}],"name":"TokenSaleFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"BCV - BitCapitalVendorToken","address":"0x1014613e2b3cbc4d575054d4982e580d9b99d7b1","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isApprovedInvestor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getDeposit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"BitMartToken","address":"0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"unfreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"freezeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"freeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"decimalUnits","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"BlockCAT - CAT Token and Token Sale Contract","address":"0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"HIDDEN_CAP","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"DEV_PORTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"RESERVE_PORTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawFunds","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"triggerRefund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalETHRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"endSale","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"changeDeveloperCATDestinationAddress","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"reserveCATDestination","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"devETHDestination","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CAT_PER_ETH_FIRST_EARLY_BIRD_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"devCATDestination","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleHasEnded","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ADDITIONAL_PORTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CAT_PER_ETH_SECOND_EARLY_BIRD_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minCapReached","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleFirstEarlyBirdEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleSecondEarlyBirdEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CAT_PER_ETH_BASE_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"changeReserveCATDestinationAddress","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"changeDeveloperETHDestinationAddress","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"triggerMinCap","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"executor","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"SECURITY_ETHER_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"ETHContributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"allowRefund","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"inputs":[{"name":"_devETHDestination","type":"address"},{"name":"_devCATDestination","type":"address"},{"name":"_reserveCATDestination","type":"address"},{"name":"_saleStartBlock","type":"uint256"},{"name":"_saleEndBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_creator","type":"address"},{"indexed":false,"name":"_amountOfCAT","type":"uint256"}],"name":"CreatedCAT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_refunder","type":"address"},{"indexed":false,"name":"_amountOfWei","type":"uint256"}],"name":"CATRefundedForWei","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Consensys Multisig","address":"0x1010101010101010101010101010101010101010","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"owners","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"revokeConfirmation","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"confirmations","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"isConfirmed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmationCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"},{"name":"executed","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getOwners","outputs":[{"name":"","type":"address[]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"from","type":"uint256"},{"name":"to","type":"uint256"},{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionIds","outputs":[{"name":"_transactionIds","type":"uint256[]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmations","outputs":[{"name":"_confirmations","type":"address[]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transactionCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_required","type":"uint256"}],"name":"changeRequirement","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"confirmTransaction","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"}],"name":"submitTransaction","outputs":[{"name":"transactionId","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"MAX_OWNER_COUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"required","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"newOwner","type":"address"}],"name":"replaceOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"executeTransaction","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_sender","type":"address"},{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_sender","type":"address"},{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"Revocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"Submission","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"Execution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"ExecutionFailure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_sender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"}],"name":"OwnerAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"}],"name":"OwnerRemoval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_required","type":"uint256"}],"name":"RequirementChange","type":"event"}]},{"name":"COPYTRACK Token Sale","address":"0xF04436B2eDaa1B777045E1EEFc6DBA8bD2aEbAB8","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"earlyBirds","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeWhitelistOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTION_MAX","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contributors","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"tranches","outputs":[{"name":"untilToken","type":"uint256"},{"name":"tokensPerEther","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PUBLIC_START_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"weiAmount","type":"uint256"}],"name":"addEarlyBird","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"END_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalWeiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCurrentTokensPerEther","outputs":[{"name":"tokensPerEther","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EXA","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addWhitelistOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"COMPANY_ALLOCATION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"whitelistOperators","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeFromWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"earlyBirdInvestments","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"burnUnsoldTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"connectToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"whitelist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fundingWalletAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"weiAmount","type":"uint256"}],"name":"calculateTokenAmount","outputs":[{"name":"tokens","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTION_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentTime","outputs":[{"name":"_currentTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTokensLeft","outputs":[{"name":"tokensLeft","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addToWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_fundingWalletAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_account","type":"address"}],"name":"LogWhitelistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_account","type":"address"},{"indexed":false,"name":"_cost","type":"uint256"},{"indexed":false,"name":"_tokens","type":"uint256"},{"indexed":false,"name":"_totalTokenSold","type":"uint256"}],"name":"LogTokensPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_amount","type":"uint256"}],"name":"UnsoldTokensBurnt","type":"event"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"CryptoKitties","address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","comment":"","abi":[{"constant":true,"inputs":[{"name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cfoAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_preferredTransport","type":"string"}],"name":"tokenMetadata","outputs":[{"name":"infoUrl","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"promoCreatedCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ceoAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"GEN0_STARTING_PRICE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setSiringAuctionAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pregnantKitties","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_kittyId","type":"uint256"}],"name":"isPregnant","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"GEN0_AUCTION_DURATION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"siringAuction","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setGeneScienceAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCEO","type":"address"}],"name":"setCEO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCOO","type":"address"}],"name":"setCOO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_kittyId","type":"uint256"},{"name":"_startingPrice","type":"uint256"},{"name":"_endingPrice","type":"uint256"},{"name":"_duration","type":"uint256"}],"name":"createSaleAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"sireAllowedToAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_matronId","type":"uint256"},{"name":"_sireId","type":"uint256"}],"name":"canBreedWith","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"kittyIndexToApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_kittyId","type":"uint256"},{"name":"_startingPrice","type":"uint256"},{"name":"_endingPrice","type":"uint256"},{"name":"_duration","type":"uint256"}],"name":"createSiringAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"val","type":"uint256"}],"name":"setAutoBirthFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"},{"name":"_sireId","type":"uint256"}],"name":"approveSiring","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCFO","type":"address"}],"name":"setCFO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_genes","type":"uint256"},{"name":"_owner","type":"address"}],"name":"createPromoKitty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"secs","type":"uint256"}],"name":"setSecondsPerBlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"owner","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"GEN0_CREATION_LIMIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newContractAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setSaleAuctionAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_v2Address","type":"address"}],"name":"setNewAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"secondsPerBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"name":"ownerTokens","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_matronId","type":"uint256"}],"name":"giveBirth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawAuctionBalances","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"cooldowns","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"kittyIndexToOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cooAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"autoBirthFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"erc721Metadata","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_genes","type":"uint256"}],"name":"createGen0Auction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_kittyId","type":"uint256"}],"name":"isReadyToBreed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PROMO_CREATION_LIMIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_contractAddress","type":"address"}],"name":"setMetadataAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleAuction","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"getKitty","outputs":[{"name":"isGestating","type":"bool"},{"name":"isReady","type":"bool"},{"name":"cooldownIndex","type":"uint256"},{"name":"nextActionAt","type":"uint256"},{"name":"siringWithId","type":"uint256"},{"name":"birthTime","type":"uint256"},{"name":"matronId","type":"uint256"},{"name":"sireId","type":"uint256"},{"name":"generation","type":"uint256"},{"name":"genes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_sireId","type":"uint256"},{"name":"_matronId","type":"uint256"}],"name":"bidOnSiringAuction","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"gen0CreatedCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"geneScience","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_matronId","type":"uint256"},{"name":"_sireId","type":"uint256"}],"name":"breedWithAuto","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"matronId","type":"uint256"},{"indexed":false,"name":"sireId","type":"uint256"},{"indexed":false,"name":"cooldownEndBlock","type":"uint256"}],"name":"Pregnant","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"approved","type":"address"},{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"kittyId","type":"uint256"},{"indexed":false,"name":"matronId","type":"uint256"},{"indexed":false,"name":"sireId","type":"uint256"},{"indexed":false,"name":"genes","type":"uint256"}],"name":"Birth","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newContract","type":"address"}],"name":"ContractUpgrade","type":"event"}]},{"name":"CryptoKitties Sales Auction","address":"0xb1690c08e213a35ed9bab7b318de14420fb57d8c","comment":"","abi":[{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_startingPrice","type":"uint256"},{"name":"_endingPrice","type":"uint256"},{"name":"_duration","type":"uint256"},{"name":"_seller","type":"address"}],"name":"createAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"lastGen0SalePrices","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getAuction","outputs":[{"name":"seller","type":"address"},{"name":"startingPrice","type":"uint256"},{"name":"endingPrice","type":"uint256"},{"name":"duration","type":"uint256"},{"name":"startedAt","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ownerCut","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isSaleClockAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"cancelAuctionWhenPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"gen0SaleCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"cancelAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getCurrentPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nonFungibleContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"averageGen0SalePrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_nftAddr","type":"address"},{"name":"_cut","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"startingPrice","type":"uint256"},{"indexed":false,"name":"endingPrice","type":"uint256"},{"indexed":false,"name":"duration","type":"uint256"}],"name":"AuctionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"totalPrice","type":"uint256"},{"indexed":false,"name":"winner","type":"address"}],"name":"AuctionSuccessful","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"AuctionCancelled","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]},{"name":"CryptoKitties Siring Auction","address":"0xc7af99fe5513eb6710e6d5f44f9989da40f27f26","comment":"","abi":[{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_startingPrice","type":"uint256"},{"name":"_endingPrice","type":"uint256"},{"name":"_duration","type":"uint256"},{"name":"_seller","type":"address"}],"name":"createAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isSiringClockAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getAuction","outputs":[{"name":"seller","type":"address"},{"name":"startingPrice","type":"uint256"},{"name":"endingPrice","type":"uint256"},{"name":"duration","type":"uint256"},{"name":"startedAt","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ownerCut","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"cancelAuctionWhenPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"cancelAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getCurrentPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nonFungibleContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_nftAddr","type":"address"},{"name":"_cut","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"startingPrice","type":"uint256"},{"indexed":false,"name":"endingPrice","type":"uint256"},{"indexed":false,"name":"duration","type":"uint256"}],"name":"AuctionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"totalPrice","type":"uint256"},{"indexed":false,"name":"winner","type":"address"}],"name":"AuctionSuccessful","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"AuctionCancelled","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]},{"name":"CryptoPunks","address":"0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"punksOfferedForSale","outputs":[{"name":"isForSale","type":"bool"},{"name":"punkIndex","type":"uint256"},{"name":"seller","type":"address"},{"name":"minValue","type":"uint256"},{"name":"onlySellTo","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"enterBidForPunk","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"},{"name":"minPrice","type":"uint256"}],"name":"acceptBidForPunk","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"indices","type":"uint256[]"}],"name":"setInitialOwners","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"imageHash","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"nextPunkIndexToAssign","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"punkIndexToAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"punkBids","outputs":[{"name":"hasBid","type":"bool"},{"name":"punkIndex","type":"uint256"},{"name":"bidder","type":"address"},{"name":"value","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"allInitialOwnersAssigned","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"allPunksAssigned","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"buyPunk","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"punkIndex","type":"uint256"}],"name":"transferPunk","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"withdrawBidForPunk","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"punkIndex","type":"uint256"}],"name":"setInitialOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"},{"name":"minSalePriceInWei","type":"uint256"},{"name":"toAddress","type":"address"}],"name":"offerPunkForSaleToAddress","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"punksRemainingToAssign","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"},{"name":"minSalePriceInWei","type":"uint256"}],"name":"offerPunkForSale","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"getPunk","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"pendingWithdrawals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"punkNoLongerForSale","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":true,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"punkIndex","type":"uint256"}],"name":"Assign","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"punkIndex","type":"uint256"}],"name":"PunkTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"},{"indexed":false,"name":"minValue","type":"uint256"},{"indexed":true,"name":"toAddress","type":"address"}],"name":"PunkOffered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"fromAddress","type":"address"}],"name":"PunkBidEntered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"fromAddress","type":"address"}],"name":"PunkBidWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"fromAddress","type":"address"},{"indexed":true,"name":"toAddress","type":"address"}],"name":"PunkBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"}],"name":"PunkNoLongerForSale","type":"event"}]},{"name":"DAO Original","address":"0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"proposals","outputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"},{"name":"description","type":"string"},{"name":"votingDeadline","type":"uint256"},{"name":"open","type":"bool"},{"name":"proposalPassed","type":"bool"},{"name":"proposalHash","type":"bytes32"},{"name":"proposalDeposit","type":"uint256"},{"name":"newCurator","type":"bool"},{"name":"yea","type":"uint256"},{"name":"nay","type":"uint256"},{"name":"creator","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"minTokensToCreate","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"rewardAccount","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"daoCreator","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"divisor","outputs":[{"name":"divisor","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"extraBalance","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_transactionData","type":"bytes"}],"name":"executeProposal","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"unblockMe","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalRewardToken","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"actualBalance","outputs":[{"name":"_actualBalance","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"closingTime","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"allowedRecipients","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferWithoutReward","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_description","type":"string"},{"name":"_transactionData","type":"bytes"},{"name":"_debatingPeriod","type":"uint256"},{"name":"_newCurator","type":"bool"}],"name":"newProposal","outputs":[{"name":"_proposalID","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"DAOpaidOut","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"minQuorumDivisor","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newContract","type":"address"}],"name":"newContract","outputs":[],"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_allowed","type":"bool"}],"name":"changeAllowedRecipients","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"halveMinQuorum","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"paidOut","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_newCurator","type":"address"}],"name":"splitDAO","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"DAOrewardAccount","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"proposalDeposit","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"numberOfProposals","outputs":[{"name":"_numberOfProposals","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"lastTimeMinQuorumMet","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_toMembers","type":"bool"}],"name":"retrieveDAOReward","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"receiveEther","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"isFueled","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_tokenHolder","type":"address"}],"name":"createTokenProxy","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_proposalID","type":"uint256"}],"name":"getNewDAOAddress","outputs":[{"name":"_newDAO","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_supportsProposal","type":"bool"}],"name":"vote","outputs":[{"name":"_voteID","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"getMyReward","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"rewardToken","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFromWithoutReward","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proposalDeposit","type":"uint256"}],"name":"changeProposalDeposit","outputs":[],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blocked","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"curator","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_transactionData","type":"bytes"}],"name":"checkProposalCode","outputs":[{"name":"_codeChecksOut","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"privateCreation","outputs":[{"name":"","type":"address"}],"type":"function"},{"inputs":[{"name":"_curator","type":"address"},{"name":"_daoCreator","type":"address"},{"name":"_proposalDeposit","type":"uint256"},{"name":"_minTokensToCreate","type":"uint256"},{"name":"_closingTime","type":"uint256"},{"name":"_privateCreation","type":"address"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"value","type":"uint256"}],"name":"FuelingToDate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"CreatedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"proposalID","type":"uint256"},{"indexed":false,"name":"recipient","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"newCurator","type":"bool"},{"indexed":false,"name":"description","type":"string"}],"name":"ProposalAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"proposalID","type":"uint256"},{"indexed":false,"name":"position","type":"bool"},{"indexed":true,"name":"voter","type":"address"}],"name":"Voted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"proposalID","type":"uint256"},{"indexed":false,"name":"result","type":"bool"},{"indexed":false,"name":"quorum","type":"uint256"}],"name":"ProposalTallied","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_newCurator","type":"address"}],"name":"NewCurator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_recipient","type":"address"},{"indexed":false,"name":"_allowed","type":"bool"}],"name":"AllowedRecipientChanged","type":"event"}]},{"name":"DaTa eXchange Token","address":"0x765f0c16d1ddc279295c1a7c24b0883f62d33f75","comment":"The token for the DataBrokerDAO IoT marketplace","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"DataBrokerDAO Token Sale","address":"0x439b54caf661c21e6b231d972d7eaa98f199590f","comment":"","abi":[{"constant":false,"inputs":[{"name":"_startPresaleTime","type":"uint256"},{"name":"_endPresaleTime","type":"uint256"},{"name":"_startDayOneTime","type":"uint256"},{"name":"_endDayOneTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"}],"name":"updateDates","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_EARLYSALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endPresaleTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalVested","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"claimLockedTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"vaultAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"onTransfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pauseContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_PRESALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalizeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuedEarlySale","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"makeTransferable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_ethAmounts","type":"uint256[]"}],"name":"handleEarlySaleBuyers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_free","type":"uint256[]"},{"name":"_locked","type":"uint256[]"},{"name":"_cliffs","type":"uint256[]"}],"name":"handleExternalBuyers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"resumeContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startPresaleTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeTokenController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"onApprove","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_DAY_ONE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"proxyPayment","outputs":[{"name":"success","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssued","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endDayOneTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startDayOneTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_startPresaleTime","type":"uint256"},{"name":"_endPresaleTime","type":"uint256"},{"name":"_startDayOneTime","type":"uint256"},{"name":"_endDayOneTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_vaultAddress","type":"address"},{"name":"_tokenAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]},{"name":"DCC","address":"0xffa93aacf49297d51e211817452839052fdfb961","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_bidValue","type":"uint256"}],"name":"getBuyPrice","outputs":[{"name":"tokenCount","type":"uint256"},{"name":"purchaseValue","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"withdrawnBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawFunds","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"withdrawAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tradeSpreadInvert","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleEndDeclarationTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner2","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockFractionInvert","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"haltCrowdsale","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner1","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"confirmCrowdsaleEnd","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_maxPrice","type":"uint256"}],"name":"buyLimit","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"unlockedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenPriceMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unlockFunds","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_askSizeTokens","type":"uint256"}],"name":"getSellPrice","outputs":[{"name":"saleValue","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"declareCrowdsaleEnd","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenCreationMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isHalted","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenCount","type":"uint256"},{"name":"_minPrice","type":"uint256"}],"name":"sellLimit","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minFundingReached","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleEndLockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenCount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_owner1","type":"address"},{"name":"_owner2","type":"address"},{"name":"_withdrawAddress","type":"address"},{"name":"_crowdsaleStartBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"purchaseValue","type":"uint256"},{"indexed":false,"name":"supplyAfter","type":"uint256"}],"name":"LogBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"saleValue","type":"uint256"},{"indexed":false,"name":"supplyAfter","type":"uint256"}],"name":"LogSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"completed","type":"bool"}],"name":"LogCrowdsaleEnd","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"DetherToken","address":"0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190","comment":"","abi":[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":false,"name":"_data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"DGD Crowdsale / Claim","address":"0xF0160428a8552AC9bB7E050D90eEADE4DDD52843","comment":"","abi":[{"constant":false,"inputs":[{"name":"_eth","type":"uint256"}],"name":"setEthToCents","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"startDate","outputs":[{"name":"date","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"claimFounders","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"}],"name":"userInfo","outputs":[{"name":"centstotal","type":"uint256"},{"name":"weitotal","type":"uint256"},{"name":"share","type":"uint256"},{"name":"badges","type":"uint256"},{"name":"claimed","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"getPeriod","outputs":[{"name":"saleperiod","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"periodTwo","outputs":[{"name":"date","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"}],"name":"proxyPurchase","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"BILLION","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"claim","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"ethToCents","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"_wei","type":"uint256"}],"name":"weiToCents","outputs":[{"name":"centsvalue","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalWei","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"WEI_PER_ETH","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"goalReached","outputs":[{"name":"reached","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proxy","type":"address"}],"name":"getPayout","outputs":[{"name":"payout","type":"address"},{"name":"isproxy","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"myInfo","outputs":[{"name":"centstotal","type":"uint256"},{"name":"weitotal","type":"uint256"},{"name":"share","type":"uint256"},{"name":"badges","type":"uint256"},{"name":"claimed","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_payout","type":"address"}],"name":"regProxy","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"getSaleStatus","outputs":[{"name":"fclaim","type":"bool"},{"name":"reltokens","type":"uint256"},{"name":"relbadges","type":"uint256"},{"name":"claimers","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"sendFunds","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"isEnded","outputs":[{"name":"ended","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"unlock","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_contrib","type":"uint256"},{"name":"_total","type":"uint256"}],"name":"calcShare","outputs":[{"name":"share","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_payout","type":"address"}],"name":"getProxy","outputs":[{"name":"proxy","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"periodThree","outputs":[{"name":"date","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalCents","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"endDate","outputs":[{"name":"date","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"getSaleConfig","outputs":[{"name":"start","type":"uint256"},{"name":"two","type":"uint256"},{"name":"three","type":"uint256"},{"name":"end","type":"uint256"},{"name":"goal","type":"uint256"},{"name":"cap","type":"uint256"},{"name":"badgecost","type":"uint256"},{"name":"famount","type":"uint256"},{"name":"fwallet","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"getSaleInfo","outputs":[{"name":"weiamount","type":"uint256"},{"name":"cents","type":"uint256"},{"name":"realcents","type":"uint256"},{"name":"amount","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"}],"name":"claimFor","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"CENTS","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"_a","type":"uint256"},{"name":"_c","type":"uint256"}],"name":"ppb","outputs":[{"name":"b","type":"uint256"}],"type":"function"},{"inputs":[{"name":"_config","type":"address"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_exchange","type":"uint256"},{"indexed":true,"name":"_rate","type":"uint256"},{"indexed":true,"name":"_cents","type":"uint256"}],"name":"Purchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_user","type":"address"},{"indexed":true,"name":"_amount","type":"uint256"},{"indexed":true,"name":"_badges","type":"uint256"}],"name":"Claim","type":"event"}]},{"name":"DGX 1.0","address":"0x55b9a11c2e8351b4ffc7b11561148bfac9977855","comment":"","abi":[{"constant":false,"inputs":[],"name":"vendorRegistry","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"getFeeDays","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"},{"name":"_val","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"userExists","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_ownr","type":"address"}],"name":"setOwner","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"actualBalanceOf","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_acct","type":"address"}],"name":"isAdmin","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"custodianRegistry","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_cust","type":"address"}],"name":"isCustodian","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"calculateDemurrage","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"getConfigAddress","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"redemptionFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"goldTokenLedger","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_adtr","type":"address"}],"name":"isAuditor","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"txFeeWallet","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"accountingWallet","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"auditRelease","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_gold","type":"address"},{"name":"_user","type":"address"},{"name":"_tokens","type":"uint256"},{"name":"_fees","type":"uint256"}],"name":"ledgerMint","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"storageRate","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"recastContract","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"billingPeriod","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"config","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"goldRegistry","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"requiredConfirmations","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"getOwner","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"deductFees","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"minterContract","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_balance","type":"uint256"},{"name":"_feedays","type":"uint256"}],"name":"demurrageCalc","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"recastFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"auditorRegistry","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"txFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"getBase","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"txFeeMax","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_gold","type":"address"},{"name":"_user","type":"address"},{"name":"_tokens","type":"uint256"},{"name":"_recastfee","type":"uint256"}],"name":"recastCall","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_greg","type":"address"}],"name":"isGoldRegistry","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_vndr","type":"address"}],"name":"isVendor","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_value","type":"uint256"},{"name":"_user","type":"address"}],"name":"calculateTxFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_gold","type":"address"}],"name":"payStorageFee","outputs":[],"type":"function"},{"inputs":[{"name":"_conf","type":"address"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"}],"name":"NewAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"DIVX Token","address":"0x13f11C9905A08ca76e3e853bE63D4f0944326C72","comment":"","abi":[{"constant":false,"inputs":[],"name":"resume","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawWei","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"privateExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"thirdExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"firstXRChangeBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"receivedWeiMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"firstExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundDeposit","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"secondExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"thirdXRChangeBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isRedeeming","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"stopRedeeming","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"secondXRChangeBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"startRedeeming","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalReceivedWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"diviAddress","type":"bytes32"}],"name":"redeem","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"receivedWeiCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_fundDeposit","type":"address"},{"name":"_fundingStartBlock","type":"uint256"},{"name":"_firstXRChangeBlock","type":"uint256"},{"name":"_secondXRChangeBlock","type":"uint256"},{"name":"_thirdXRChangeBlock","type":"uint256"},{"name":"_fundingEndBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_tokenValue","type":"uint256"}],"name":"LogCreate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_tokenValue","type":"uint256"}],"name":"LogRefund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_diviAddress","type":"bytes32"}],"name":"LogRedeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"DoBETacceptBET(DCA)","address":"0x386Faa4703a34a7Fdb19Bec2e14Fd427C9638416","comment":"","abi":[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"difficulty","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"amount","type":"uint256"}],"name":"freeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"unFreeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedSell","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentChallenge","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"emission","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"nonce","type":"uint256"}],"name":"proofOfWork","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"amountRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timeOfLastProof","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawRaised","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[{"name":"amount","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"bool"}],"name":"lockSell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[{"name":"revenue","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"UnFreeze","type":"event"}]},{"name":"EagleCoin [EAGLE] Contract Address","address":"0x994f0dffdbae0bbf09b652d6f11a493fd33f42b9","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"coinAge","outputs":[{"name":"myCoinAge","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"timestamp","type":"uint256"}],"name":"ownerSetStakeStartTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxTotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getBlockNumber","outputs":[{"name":"blockNumber","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"chainStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"ownerBurnToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalInitialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"annualInterest","outputs":[{"name":"interest","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeMinAge","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"chainStartBlockNumber","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeMaxAge","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxMintProofOfStake","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"},{"indexed":false,"name":"_reward","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"ENS: Eth Registrar (Auction)","address":"0x6090A6e47849629b7245Dfa1Ca21D94cd15878Ef","comment":"","abi":[{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"releaseDeed","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"getAllowedTime","outputs":[{"name":"timestamp","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"unhashedName","type":"string"}],"name":"invalidateName","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"hash","type":"bytes32"},{"name":"owner","type":"address"},{"name":"value","type":"uint256"},{"name":"salt","type":"bytes32"}],"name":"shaBid","outputs":[{"name":"sealedBid","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"bidder","type":"address"},{"name":"seal","type":"bytes32"}],"name":"cancelBid","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"entries","outputs":[{"name":"","type":"uint8"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ens","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_salt","type":"bytes32"}],"name":"unsealBid","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"transferRegistrars","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"sealedBids","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"state","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"},{"name":"newOwner","type":"address"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_hash","type":"bytes32"},{"name":"_timestamp","type":"uint256"}],"name":"isAllowed","outputs":[{"name":"allowed","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"finalizeAuction","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"registryStarted","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"launchLength","outputs":[{"name":"","type":"uint32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"sealedBid","type":"bytes32"}],"name":"newBid","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"labels","type":"bytes32[]"}],"name":"eraseNode","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hashes","type":"bytes32[]"}],"name":"startAuctions","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"hash","type":"bytes32"},{"name":"deed","type":"address"},{"name":"registrationDate","type":"uint256"}],"name":"acceptRegistrarTransfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"startAuction","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"rootNode","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"hashes","type":"bytes32[]"},{"name":"sealedBid","type":"bytes32"}],"name":"startAuctionsAndBid","outputs":[],"payable":true,"type":"function"},{"inputs":[{"name":"_ens","type":"address"},{"name":"_rootNode","type":"bytes32"},{"name":"_startDate","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":false,"name":"registrationDate","type":"uint256"}],"name":"AuctionStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"deposit","type":"uint256"}],"name":"NewBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"status","type":"uint8"}],"name":"BidRevealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"registrationDate","type":"uint256"}],"name":"HashRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"}],"name":"HashReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":true,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"registrationDate","type":"uint256"}],"name":"HashInvalidated","type":"event"}]},{"name":"ENS: Public Resolver","address":"0x5FfC014343cd971B7eb70732021E26C35B744cc4","comment":"","abi":[{"constant":true,"inputs":[{"name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"key","type":"string"},{"name":"value","type":"string"}],"name":"setText","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"},{"name":"contentTypes","type":"uint256"}],"name":"ABI","outputs":[{"name":"contentType","type":"uint256"},{"name":"data","type":"bytes"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"x","type":"bytes32"},{"name":"y","type":"bytes32"}],"name":"setPubkey","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"content","outputs":[{"name":"ret","type":"bytes32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"addr","outputs":[{"name":"ret","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"},{"name":"key","type":"string"}],"name":"text","outputs":[{"name":"ret","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"contentType","type":"uint256"},{"name":"data","type":"bytes"}],"name":"setABI","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"name","outputs":[{"name":"ret","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"name","type":"string"}],"name":"setName","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"hash","type":"bytes32"}],"name":"setContent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"pubkey","outputs":[{"name":"x","type":"bytes32"},{"name":"y","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"addr","type":"address"}],"name":"setAddr","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"ensAddr","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"a","type":"address"}],"name":"AddrChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"hash","type":"bytes32"}],"name":"ContentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"name","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":true,"name":"contentType","type":"uint256"}],"name":"ABIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"x","type":"bytes32"},{"indexed":false,"name":"y","type":"bytes32"}],"name":"PubkeyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":true,"name":"indexedKey","type":"string"},{"indexed":false,"name":"key","type":"string"}],"name":"TextChanged","type":"event"}]},{"name":"ENS: Registry","address":"0x314159265dD8dbb310642f98f50C066173C1259b","comment":"","abi":[{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"resolver","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"label","type":"bytes32"},{"name":"owner","type":"address"}],"name":"setSubnodeOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"ttl","type":"uint64"}],"name":"setTTL","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"ttl","outputs":[{"name":"","type":"uint64"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"resolver","type":"address"}],"name":"setResolver","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"owner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"owner","type":"address"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":true,"name":"label","type":"bytes32"},{"indexed":false,"name":"owner","type":"address"}],"name":"NewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"resolver","type":"address"}],"name":"NewResolver","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"ttl","type":"uint64"}],"name":"NewTTL","type":"event"}]},{"name":"ENS: Reverse Registrar","address":"0x9062C0A6Dbd6108336BcBe4593a3D1cE05512069","comment":"","abi":[{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"resolver","type":"address"}],"name":"claimWithResolver","outputs":[{"name":"node","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"claim","outputs":[{"name":"node","type":"bytes32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ens","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"defaultResolver","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"node","outputs":[{"name":"ret","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"}],"name":"setName","outputs":[{"name":"node","type":"bytes32"}],"payable":false,"type":"function"},{"inputs":[{"name":"ensAddr","type":"address"},{"name":"resolverAddr","type":"address"}],"payable":false,"type":"constructor"}]},{"name":"EOS: Contribution","address":"0xd0a6E6C54DbC68Db5db3A091B171A77407Ff7ccf","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"time","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint128"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"foundersAllocation","outputs":[{"name":"","type":"uint128"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"day","type":"uint256"}],"name":"claim","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"foundersKey","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"userBuys","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"day","type":"uint256"}],"name":"createOnDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"freeze","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"keys","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"dailyTotals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"openTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"EOS","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"today","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"eos","type":"address"}],"name":"initialize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"createFirstDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimAll","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"timestamp","type":"uint256"}],"name":"dayFor","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"day","type":"uint256"},{"name":"limit","type":"uint256"}],"name":"buyWithLimit","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"collect","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"numberOfDays","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"key","type":"string"}],"name":"register","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"createPerDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_numberOfDays","type":"uint256"},{"name":"_totalSupply","type":"uint128"},{"name":"_openTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_foundersAllocation","type":"uint128"},{"name":"_foundersKey","type":"string"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"window","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"window","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"key","type":"string"}],"name":"LogRegister","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogCollect","type":"event"},{"anonymous":false,"inputs":[],"name":"LogFreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"}]},{"name":"eProxy (ePRX)","address":"0x147b51d82a6038607895e11C4191431335b257E3","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"swapProxyTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"issuingTokenOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_spender","type":"address"},{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"TransferFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_Owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amountOffered","type":"uint256"},{"indexed":false,"name":"_amountReceived","type":"uint256"}],"name":"SwappedTokens","type":"event"}]},{"name":"EtherDelta (02/09/2017)","address":"0x8d12A197cB00D4747a1fe03395095ce2A5CC6819","abi":[{"constant":false,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"user","type":"address"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"},{"name":"amount","type":"uint256"}],"name":"trade","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"}],"name":"order","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"orderFills","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"cancelOrder","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"depositToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"user","type":"address"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"amountFilled","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"tokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"feeMake_","type":"uint256"}],"name":"changeFeeMake","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"feeMake","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"feeRebate_","type":"uint256"}],"name":"changeFeeRebate","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"feeAccount","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"user","type":"address"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"},{"name":"amount","type":"uint256"},{"name":"sender","type":"address"}],"name":"testTrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"feeAccount_","type":"address"}],"name":"changeFeeAccount","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"feeRebate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"feeTake_","type":"uint256"}],"name":"changeFeeTake","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"admin_","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"orders","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"feeTake","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"deposit","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"accountLevelsAddr_","type":"address"}],"name":"changeAccountLevelsAddr","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"accountLevelsAddr","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"},{"name":"user","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"user","type":"address"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"availableVolume","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"admin_","type":"address"},{"name":"feeAccount_","type":"address"},{"name":"accountLevelsAddr_","type":"address"},{"name":"feeMake_","type":"uint256"},{"name":"feeTake_","type":"uint256"},{"name":"feeRebate_","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenGet","type":"address"},{"indexed":false,"name":"amountGet","type":"uint256"},{"indexed":false,"name":"tokenGive","type":"address"},{"indexed":false,"name":"amountGive","type":"uint256"},{"indexed":false,"name":"expires","type":"uint256"},{"indexed":false,"name":"nonce","type":"uint256"},{"indexed":false,"name":"user","type":"address"}],"name":"Order","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenGet","type":"address"},{"indexed":false,"name":"amountGet","type":"uint256"},{"indexed":false,"name":"tokenGive","type":"address"},{"indexed":false,"name":"amountGive","type":"uint256"},{"indexed":false,"name":"expires","type":"uint256"},{"indexed":false,"name":"nonce","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"v","type":"uint8"},{"indexed":false,"name":"r","type":"bytes32"},{"indexed":false,"name":"s","type":"bytes32"}],"name":"Cancel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenGet","type":"address"},{"indexed":false,"name":"amountGet","type":"uint256"},{"indexed":false,"name":"tokenGive","type":"address"},{"indexed":false,"name":"amountGive","type":"uint256"},{"indexed":false,"name":"get","type":"address"},{"indexed":false,"name":"give","type":"address"}],"name":"Trade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"Withdraw","type":"event"}]},{"name":"Ethereum Lottery","address":"0xc0ADF1CCc703A0a3393892600883A1A91a4E38de","comment":"","abi":[{"constant":true,"inputs":[],"name":"lastInitTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"poissonData","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"int256"}],"name":"lotteries","outputs":[{"name":"jackpot","type":"uint256"},{"name":"decidingBlock","type":"int256"},{"name":"numTickets","type":"uint256"},{"name":"numTicketsSold","type":"uint256"},{"name":"ticketPrice","type":"uint256"},{"name":"cutoffTimestamp","type":"uint256"},{"name":"winningTicket","type":"int256"},{"name":"winner","type":"address"},{"name":"finalizationBlock","type":"uint256"},{"name":"finalizer","type":"address"},{"name":"message","type":"string"},{"name":"nearestKnownBlock","type":"int256"},{"name":"nearestKnownBlockHash","type":"int256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"recentActivity","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"destruct","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"int256"},{"name":"_offset","type":"uint256"},{"name":"_n","type":"uint256"},{"name":"_addr","type":"address"}],"name":"getTicketDetails","outputs":[{"name":"details","type":"uint8[]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_message","type":"string"}],"name":"getMessageLength","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"int256"}],"name":"getLotteryDetailsB","outputs":[{"name":"_actualId","type":"int256"},{"name":"_winningTicket","type":"int256"},{"name":"_winner","type":"address"},{"name":"_finalizationBlock","type":"uint256"},{"name":"_finalizer","type":"address"},{"name":"_message","type":"string"},{"name":"_prevLottery","type":"int256"},{"name":"_nextLottery","type":"int256"},{"name":"_blockHeight","type":"int256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getRecentActivity","outputs":[{"name":"_id","type":"int256"},{"name":"_idx","type":"uint256"},{"name":"_recentActivity","type":"uint256[1000]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"recentActivityIdx","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"id","outputs":[{"name":"","type":"int256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_jackpot","type":"uint256"},{"name":"_numTickets","type":"uint256"},{"name":"_ticketPrice","type":"uint256"},{"name":"_durationInBlocks","type":"int256"}],"name":"initLottery","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"int256"},{"name":"_message","type":"string"}],"name":"setMessage","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"proposeOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"needsInitialization","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"needsFinalization","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tickets","type":"uint256[]"}],"name":"buyTickets","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"proposedOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"btcRelay","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"int256"}],"name":"getLotteryDetailsA","outputs":[{"name":"_actualId","type":"int256"},{"name":"_jackpot","type":"uint256"},{"name":"_decidingBlock","type":"int256"},{"name":"_numTickets","type":"uint256"},{"name":"_numTicketsSold","type":"uint256"},{"name":"_lastSaleTimestamp","type":"uint256"},{"name":"_ticketPrice","type":"uint256"},{"name":"_cutoffTimestamp","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"escrow","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"int256"},{"name":"_ticket","type":"uint256"}],"name":"getTicketOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_steps","type":"uint256"}],"name":"finalizeLottery","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"lastSaleTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_btcRelay","type":"address"},{"name":"_poissonData","type":"address"},{"name":"_escrow","type":"address"}],"payable":false,"type":"constructor"}]},{"name":"Etherisc Flight Delay","address":"0xc0f29798c57e890cac82a79dadbebfb3d3fa67b9","comment":"","abi":[{"constant":false,"inputs":[{"name":"_carrierFlightNumber","type":"bytes32"},{"name":"_departureYearMonthDay","type":"bytes32"},{"name":"_departureTime","type":"uint256"},{"name":"_arrivalTime","type":"uint256"},{"name":"_currency","type":"uint8"},{"name":"_customerExternalId","type":"bytes32"}],"name":"newPolicy","outputs":[],"payable":true,"type":"function"}]},{"name":"Ethernet.Cash ENC Token","address":"0x039f5050de4908f9b5ddf40a4f3aa3f329086387","comment":"","abi":[{"constant":true,"inputs":[],"name":"creator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EthernetCashAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"EthernetCashWebsite","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"backer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"isContribution","type":"bool"}],"name":"FundTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"}]},{"name":"Etheroll Rewards","address":"0xa4463f9Ff0d87531232c8c4819B536c332DA6EAc","comment":"","abi":[{"constant":true,"inputs":[{"name":"_tokenHolder","type":"address"}],"name":"getTokensHeldByAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"ownerUpdateCurrentEpoch","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"payoutsPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newTreasury","type":"address"}],"name":"ownerSetTreasury","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalRewardsForEpoch","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newPayoutStatus","type":"bool"}],"name":"ownerPausePayouts","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"ownerChangeOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"treasury","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"currentEpoch","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_sendTo","type":"address"},{"name":"_amount","type":"uint256"}],"name":"ownerTransferEther","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"theTokenAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_tokenHolder","type":"address"}],"name":"getExpectedPayout","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_tokenHolder","type":"address"}],"name":"getAddressLastPaidOutEpoch","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"getMyReward","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"ownerkill","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newTotalRewardsForEpochInWei","type":"uint256"}],"name":"ownerUpdateTotalRewardsForEpoch","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"tokenAddress","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"SentToAddress","type":"address"},{"indexed":true,"name":"AmountTransferred","type":"uint256"}],"name":"LogOwnerTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"SentToAddress","type":"address"},{"indexed":true,"name":"AmountTransferred","type":"uint256"},{"indexed":true,"name":"NumberOfTokens","type":"uint256"},{"indexed":false,"name":"TotalRewardsForEpoch","type":"uint256"},{"indexed":false,"name":"Epoch","type":"uint256"}],"name":"LogPaidOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"NewCurrentEpoch","type":"uint256"}],"name":"LogEpochUpdated","type":"event"}]},{"name":"Ethorse Rewards","address":"0x24B29A71BA841d6e90344461Fde546cDc7851212","comment":"","abi":[{"constant":false,"inputs":[],"name":"claim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"extractFund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"status","type":"bool"}],"name":"payoutControlSwitch","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"setupPayout","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":true,"inputs":[],"name":"getRewardEstimate","outputs":[{"name":"rewardEstimate","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"hasClaimed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"payoutPoolAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"Global Academy Place (GAP)","address":"0xC86414354c06dC8bA428A08BCc589C72c2805959","comment":"","abi":[{"constant":false,"inputs":[{"name":"_deposits","type":"uint256"},{"name":"actualSellPriceInWei","type":"uint256"},{"name":"_actualPriceInCents","type":"uint256"}],"name":"deposit","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"maximumBuyBackPriceInCents","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"secondLevelPrice","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"Killer","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"deadline","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"depositsTillNow","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"checkActualPrice","outputs":[{"name":"_sellPrice","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_thirdLevelEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"amountRaisedEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maximumBuyBackAmountInWEI","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"actualPriceInCents","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maximumBuyBack","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"thirdLevelPrice","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingGoal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_secondLevelEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_NewPrice","type":"uint256"}],"name":"manualBuyPrice","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contrubutedAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_firstLevelEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maximumBuyBackAmountInCents","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amountInWei","type":"uint256"},{"name":"_to","type":"address"}],"name":"ownerWithdrawal","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"KilledTillNow","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CapLevelPrice","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"actualSellPriceInWei","type":"uint256"},{"name":"_mustToSellCourses","type":"uint256"},{"name":"maxBuyBackPriceCents","type":"uint256"}],"name":"BuyBackStart","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buyTokens","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[{"name":"revenue","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"firstLevelPrice","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"mustToSellCourses","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_capLevelEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"safeWithdrawal","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"KilledTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"backer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"isContribution","type":"bool"}],"name":"FundTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_beneficiary","type":"address"},{"indexed":false,"name":"amountRaised","type":"uint256"}],"name":"GoalReached","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Global Invest Crypto Fund (GCF)","address":"0xb8c07c219202aFd165b7ECfD5800B7e941338193","comment":"","abi":[{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferEther","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"buyTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"Register","outputs":[{"name":"_userWallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_period","type":"uint256"}],"name":"claimEthers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"marketCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isReg","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"myUserWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"kill","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimTax","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"Reederem","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_period","type":"uint256"}],"name":"claimTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"taxTillNow","outputs":[{"name":"_ethTax","type":"uint256"},{"name":"_tokenTax","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_price","type":"uint256"},{"name":"_marketCap","type":"uint256"},{"name":"_ethForReederem","type":"uint256"}],"name":"closePeriod","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"gcf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"numAccounts","outputs":[{"name":"_numAccounts","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"contractVersion","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getActualPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getPrices","outputs":[{"name":"_Price","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"sellTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"buy","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"periods","outputs":[{"name":"ethAtThePeriod","type":"uint256"},{"name":"tokensAtThePeriod","type":"uint256"},{"name":"price","type":"uint256"},{"name":"ethForReederem","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentPeriodPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"accounts","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_ethTx","type":"uint256"},{"indexed":false,"name":"_tokenTx","type":"uint256"}],"name":"TaxTillNow","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_person","type":"address"},{"indexed":true,"name":"_userWallet","type":"address"}],"name":"RegisterEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"_marketCap","type":"uint256"},{"indexed":false,"name":"_ethForReederem","type":"uint256"}],"name":"ClosePeriodEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"DepositEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"_amountEthers","type":"uint256"},{"indexed":false,"name":"_ethAtThePeriod","type":"uint256"}],"name":"BuyEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"_amountTokens","type":"uint256"},{"indexed":false,"name":"_tokensAtThePeriod","type":"uint256"}],"name":"ReederemEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_taxPayment","type":"uint256"}],"name":"Tax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"_tokensValue","type":"uint256"},{"indexed":false,"name":"_tokensPrice","type":"uint256"},{"indexed":false,"name":"_ethersAmount","type":"uint256"}],"name":"ClaimTokensEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"_ethValue","type":"uint256"},{"indexed":false,"name":"_tokensPrice","type":"uint256"},{"indexed":false,"name":"_tokensAmount","type":"uint256"}],"name":"ClaimEthersEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_eth","type":"uint256"},{"indexed":false,"name":"_tokens","type":"uint256"}],"name":"claimTaxex","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"Global Messaging Token (GMT)","address":"0xb3Bd49E28f8F832b8d1E246106991e546c323502","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ethFundAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"secondCapEndingBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isStopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"startBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseTokenCapPerAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"blocksInSecondCapPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"restartSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"targets","type":"address[]"},{"name":"isRegistered","type":"bool"}],"name":"changeRegistrationStatuses","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"purchases","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"assignedSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"registered","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"blocksInFirstCapPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gmtFundAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gmtFund","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseEthCapPerAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"firstCapEndingBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stopSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenUnit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"isRegistered","type":"bool"}],"name":"changeRegistrationStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"gasLimitInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_ethFundAddress","type":"address"},{"name":"_gmtFundAddress","type":"address"},{"name":"_startBlock","type":"uint256"},{"name":"_endBlock","type":"uint256"},{"name":"_tokenExchangeRate","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"RefundSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"ClaimGMT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Havven (HAV)","address":"0xD989a04AD891528B571eF73dAcaEFeB0402a65b3","comment":"","abi":[{"constant":false,"inputs":[{"name":"duration","type":"uint256"}],"name":"setFeePeriodDuration","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_issuanceRatio","type":"uint256"}],"name":"setIssuanceRatio","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuanceData","outputs":[{"name":"currentBalanceSum","type":"uint256"},{"name":"lastAverageBalance","type":"uint256"},{"name":"lastModified","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"unlockedCollateral","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initiationTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issueNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"setSelfDestructBeneficiary","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"priceStalePeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feePeriodDuration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"hasWithdrawnFees","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"issuanceDraft","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"time","type":"uint256"}],"name":"setPriceStalePeriod","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burnNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"terminateSelfDestruct","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawFees","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"value","type":"bool"}],"name":"setIssuer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastPriceUpdateTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nominatedOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_nomin","type":"address"}],"name":"setNomin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"recomputeLastAverageBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"nominsIssued","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"issuanceLastAverageBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feePeriodStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_oracle","type":"address"}],"name":"setOracle","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"oracle","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"issuer","type":"address"}],"name":"maxIssuableNomins","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newPrice","type":"uint256"},{"name":"timeSent","type":"uint256"}],"name":"updatePrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isIssuer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"issuanceData","outputs":[{"name":"currentBalanceSum","type":"uint256"},{"name":"lastAverageBalance","type":"uint256"},{"name":"lastModified","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"lockedCollateral","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"rolloverFeePeriodIfElapsed","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuanceLastModified","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_proxy","type":"address"}],"name":"setProxy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"selfDestruct","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"UNIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenState","type":"address"}],"name":"setTokenState","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"usd_dec","type":"uint256"}],"name":"USDtoHAV","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SELFDESTRUCT_DELAY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"collateral","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"issuanceRatio","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"selfDestructInitiated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"}],"name":"setMessageSender","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"initiateSelfDestruct","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastFeesCollected","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_escrow","type":"address"}],"name":"setEscrow","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuanceLastAverageBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"issuanceCurrentBalanceSum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"selfDestructBeneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"issuer","type":"address"}],"name":"remainingIssuableNomins","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastFeePeriodStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuanceCurrentBalanceSum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"issueMaxNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"hav_dec","type":"uint256"}],"name":"HAVtoUSD","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"transferableHavvens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"escrow","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nomin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenState","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proxy","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"issuanceLastModified","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"priceIsStale","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_proxy","type":"address"},{"name":"_tokenState","type":"address"},{"name":"_owner","type":"address"},{"name":"_oracle","type":"address"},{"name":"_price","type":"uint256"},{"name":"_issuers","type":"address[]"},{"name":"_oldHavven","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newPrice","type":"uint256"},{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"PriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newRatio","type":"uint256"}],"name":"IssuanceRatioUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"FeePeriodRollover","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"duration","type":"uint256"}],"name":"FeePeriodDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"FeesWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOracle","type":"address"}],"name":"OracleUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newNomin","type":"address"}],"name":"NominUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newEscrow","type":"address"}],"name":"EscrowUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":true,"name":"value","type":"bool"}],"name":"IssuersUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newTokenState","type":"address"}],"name":"TokenStateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"proxyAddress","type":"address"}],"name":"ProxyUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"SelfDestructTerminated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"beneficiary","type":"address"}],"name":"SelfDestructed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"selfDestructDelay","type":"uint256"}],"name":"SelfDestructInitiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newBeneficiary","type":"address"}],"name":"SelfDestructBeneficiaryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"}]},{"name":"Havven Mintr","address":"0xC011A72400E58ecD99Ee497CF89E3775d4bd732F","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"nominsIssued","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"issuer","type":"address"}],"name":"remainingIssuableNomins","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"issuer","type":"address"}],"name":"maxIssuableNomins","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issueNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"issueMaxNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burnNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawFees","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"FeesWithdrawn","type":"event"},{"constant":true,"inputs":[],"name":"lastFeesCollected","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"IIC - Ibiscoin ERC20 Token Contract","address":"0x16662F73dF3e79e54c6c5938b4313f92C524C120","comment":"","abi":[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]},{"name":"Immortal - Warrior for Battle Contract","address":"0x22E5F62D0FA19974749faa194e3d3eF6d89c08d7","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"redeemEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenAssigned","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_contributor","type":"address"},{"indexed":false,"name":"_immortals","type":"uint256"}],"name":"Assigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"ImmortalPlayerCharacters (IPCs)","address":"0x011C77fa577c500dEeDaD364b8af9e8540b808C0","comment":"","abi":[{"constant":false,"inputs":[{"name":"_newGod","type":"address"}],"name":"renounceGodhood","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool","value":false}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nameModificationLevelRequirement","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"randomizeDna","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string","value":"ImmortalPlayerCharacter"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address","value":"0x"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"priceToChangeName","outputs":[{"name":"","type":"uint256","value":"100"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"updateIpcContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newPrice","type":"uint256"}],"name":"setMaxIpcPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newPrice","type":"uint256"}],"name":"changePriceToModifyDna","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ipcPriceInCents","outputs":[{"name":"","type":"uint256","value":"25"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_adminToRemove","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256","value":"520"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getAllPositions","outputs":[{"name":"","type":"address[]","value":[]}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"Ipcs","outputs":[{"name":"name","type":"string","value":"Eve"},{"name":"attributeSeed","type":"bytes32","value":"0xf2cfccdde23c372c60a76a2795f77ca9cbd241e6dab46d90a0caad74dc9af739"},{"name":"dna","type":"bytes32","value":"0x4a2899f96d0202f1d682a81d4b868499e963b4052cf44d0eed7ded9ee1782190"},{"name":"experience","type":"uint128","value":"0"},{"name":"timeOfBirth","type":"uint128","value":"1521154199"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newMultiplier","type":"uint256"}],"name":"changeCustomizationMultiplier","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_newUrl","type":"string"}],"name":"updateIpcUrl","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcIdArray","type":"uint256[]"},{"name":"_xpIdArray","type":"uint256[]"}],"name":"grantBulkXp","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_beneficiaryAddress","type":"address"},{"name":"_beneficiaryPrice","type":"uint256"}],"name":"setSpecialPriceForAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getAdmins","outputs":[{"name":"","type":"address[]","value":[]}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"ipcToMarketInfo","outputs":[{"name":"sellPrice","type":"uint32","value":"0"},{"name":"beneficiaryPrice","type":"uint32","value":"0"},{"name":"beneficiaryAddress","type":"address","value":"0x0000000000000000000000000000000000000000"},{"name":"approvalAddress","type":"address","value":"0x0000000000000000000000000000000000000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"name":"ipcIdToExperience","outputs":[{"name":"","type":"bool","value":false}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_newPrice","type":"uint256"}],"name":"setIpcPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_newPrice","type":"uint256"}],"name":"buyIpc","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"}],"name":"createRandomizedIpc","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"_owner","type":"address"}],"name":"createAndAssignRandomizedIpc","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_developer","type":"address"}],"name":"experiencesOfDeveloper","outputs":[{"name":"","type":"uint256[]","value":[]}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256","value":"1"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mostCurrentIpcAddress","outputs":[{"name":"","type":"address","value":"0x011c77fa577c500deedad364b8af9e8540b808c0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxIpcPrice","outputs":[{"name":"","type":"uint256","value":"100000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"owner","type":"address","value":"0x0000000000000000000000000000000000000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDevelopers","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseNewTranche","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_dna","type":"bytes32"}],"name":"customizeDna","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"bool"}],"name":"setAutoTrancheRelease","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newAdmin","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"customizationPriceMultiplier","outputs":[{"name":"","type":"uint256","value":"4"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"getIpcPriceInWei","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalIpcs","outputs":[{"name":"","type":"uint128","value":"520"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"getIpc","outputs":[{"name":"name","type":"string"},{"name":"attributeSeed","type":"bytes32"},{"name":"dna","type":"bytes32"},{"name":"experience","type":"uint128"},{"name":"timeOfBirth","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newAmount","type":"uint256"}],"name":"changeXpPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_xpId","type":"uint256"}],"name":"removeExperience","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"name":"","type":"uint256[]","value":[]}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newReq","type":"uint256"}],"name":"changeNameModificationLevelRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getXpPrice","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_name","type":"string"}],"name":"setDeveloperName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"updateMarketPriceContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newInterfaceId","type":"bytes4"}],"name":"addSupportedInterface","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"rollAttributes","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string","value":"IPC"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"developer","type":"address"},{"name":"value","type":"bool"}],"name":"changeDeveloperStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_authorization","type":"bool"}],"name":"changeAdminAuthorization","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"dnaModificationLevelRequirement","outputs":[{"name":"","type":"uint256","value":"1000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"},{"name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"ipcToOwner","outputs":[{"name":"","type":"address","value":"0x0000000000000000000000000000000000000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"priceToModifyDna","outputs":[{"name":"","type":"uint256","value":"100"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"_owner","type":"address"}],"name":"createAndAssignIpcSeed","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"getIpcName","outputs":[{"name":"result","type":"bytes32","value":"0x"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newCashier","type":"address"}],"name":"setCashier","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newPriceIncrease","type":"uint256"}],"name":"changePriceIncreasePerTranche","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_description","type":"string"}],"name":"registerNewExperience","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newSize","type":"uint256"}],"name":"changeTrancheSize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"removeSupportedInterface","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"}],"name":"createIpcSeed","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getXpBalance","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"experiences","outputs":[{"name":"developer","type":"address"},{"name":"description","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buyXp","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"ownerIpcCount","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_byteToModify","type":"uint256"},{"name":"_modifyAmount","type":"int256"}],"name":"modifyDna","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_newReq","type":"uint256"}],"name":"changeDnaModificationLevelRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_newName","type":"string"}],"name":"changeIpcName","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool","value":false}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newExec","type":"address"}],"name":"setExec","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_xpId","type":"uint256"}],"name":"grantXpToIpc","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenId","type":"uint256"},{"indexed":true,"name":"developer","type":"address"},{"indexed":true,"name":"xpId","type":"uint256"}],"name":"ExperienceEarned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenId","type":"uint256"},{"indexed":false,"name":"_to","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenId","type":"uint256"},{"indexed":false,"name":"_seller","type":"address"},{"indexed":true,"name":"_buyer","type":"address"},{"indexed":false,"name":"price","type":"uint256"}],"name":"Bought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenId","type":"uint256"},{"indexed":false,"name":"from","type":"uint256"},{"indexed":false,"name":"to","type":"uint256"}],"name":"PriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"name","type":"string"}],"name":"Created","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"dna","type":"bytes32"},{"indexed":false,"name":"attributes","type":"bytes32"}],"name":"Substantiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"to","type":"bytes32"}],"name":"DnaModified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_approved","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_operator","type":"address"},{"indexed":false,"name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"}]},{"name":"Ink Protocol","address":"0xBC86727E770de68B1060C91f6BB6945c73e10388","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"settleTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"confirmTransactionAfterExpiry","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"disputeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"},{"name":"_rating","type":"uint8"},{"name":"_comment","type":"bytes32"}],"name":"provideTransactionFeedback","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"refundTransactionByMediator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"escalateDisputeToMediator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"revokeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"link","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"},{"name":"_buyerAmount","type":"uint256"},{"name":"_sellerAmount","type":"uint256"}],"name":"settleTransactionByMediator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"acceptTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"refundTransactionAfterExpiry","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"confirmTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_seller","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_metadata","type":"bytes32"},{"name":"_policy","type":"address"},{"name":"_mediator","type":"address"},{"name":"_owner","type":"address"}],"name":"createTransaction","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"refundTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"confirmTransactionByMediator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_seller","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_metadata","type":"bytes32"},{"name":"_policy","type":"address"},{"name":"_mediator","type":"address"}],"name":"createTransaction","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"owner","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"policy","type":"address"},{"indexed":false,"name":"mediator","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"metadata","type":"bytes32"}],"name":"TransactionInitiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionAccepted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionDisputed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionEscalated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionRefundedByMediator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"buyerAmount","type":"uint256"},{"indexed":false,"name":"sellerAmount","type":"uint256"},{"indexed":false,"name":"buyerMediatorFee","type":"uint256"},{"indexed":false,"name":"sellerMediatorFee","type":"uint256"}],"name":"TransactionSettledByMediator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionConfirmedByMediator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionConfirmed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionConfirmedAfterExpiry","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionConfirmedAfterDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionRefundedAfterDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionRefundedAfterExpiry","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionConfirmedAfterEscalation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionRefundedAfterEscalation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"buyerAmount","type":"uint256"},{"indexed":false,"name":"sellerAmount","type":"uint256"}],"name":"TransactionSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"},{"indexed":false,"name":"rating","type":"uint8"},{"indexed":false,"name":"comment","type":"bytes32"}],"name":"FeedbackUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"}],"name":"AccountLinked","type":"event"}]},{"name":"Kyber Network","address":"0x818E6FECD516Ecc3849DAf6845e3EC868087B755","comment":"","abi":[{"constant":false,"inputs":[{"name":"alerter","type":"address"}],"name":"removeAlerter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"enabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOperators","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"dest","type":"address"},{"name":"destAddress","type":"address"},{"name":"maxDestAmount","type":"uint256"},{"name":"minConversionRate","type":"uint256"},{"name":"walletId","type":"address"},{"name":"hint","type":"bytes"}],"name":"tradeWithHint","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"minConversionRate","type":"uint256"}],"name":"swapTokenToEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"},{"name":"sendTo","type":"address"}],"name":"withdrawToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxGasPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAlerter","type":"address"}],"name":"addAlerter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"kyberNetworkContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"user","type":"address"}],"name":"getUserCapInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"dest","type":"address"},{"name":"minConversionRate","type":"uint256"}],"name":"swapTokenToToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"minConversionRate","type":"uint256"}],"name":"swapEtherToToken","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferAdminQuickly","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getAlerters","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"dest","type":"address"},{"name":"srcQty","type":"uint256"}],"name":"getExpectedRate","outputs":[{"name":"expectedRate","type":"uint256"},{"name":"slippageRate","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"user","type":"address"},{"name":"token","type":"address"}],"name":"getUserCapInTokenWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOperator","type":"address"}],"name":"addOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_kyberNetworkContract","type":"address"}],"name":"setKyberNetworkContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"removeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"field","type":"bytes32"}],"name":"info","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"dest","type":"address"},{"name":"destAddress","type":"address"},{"name":"maxDestAmount","type":"uint256"},{"name":"minConversionRate","type":"uint256"},{"name":"walletId","type":"address"}],"name":"trade","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"},{"name":"sendTo","type":"address"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"},{"name":"user","type":"address"}],"name":"getBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_admin","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"trader","type":"address"},{"indexed":false,"name":"src","type":"address"},{"indexed":false,"name":"dest","type":"address"},{"indexed":false,"name":"actualSrcAmount","type":"uint256"},{"indexed":false,"name":"actualDestAmount","type":"uint256"}],"name":"ExecuteTrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newNetworkContract","type":"address"},{"indexed":false,"name":"oldNetworkContract","type":"address"}],"name":"KyberNetworkSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"sendTo","type":"address"}],"name":"TokenWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"sendTo","type":"address"}],"name":"EtherWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"pendingAdmin","type":"address"}],"name":"TransferAdminPending","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAdmin","type":"address"},{"indexed":false,"name":"previousAdmin","type":"address"}],"name":"AdminClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAlerter","type":"address"},{"indexed":false,"name":"isAdd","type":"bool"}],"name":"AlerterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOperator","type":"address"},{"indexed":false,"name":"isAdd","type":"bool"}],"name":"OperatorAdded","type":"event"}]},{"name":"LALA","address":"0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9","comment":"","abi":[{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"canUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint8"},{"name":"_mintable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"LATOKEN","address":"0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_for","type":"address"},{"name":"tokenCount","type":"uint256"}],"name":"burnTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"}],"name":"changeMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_for","type":"address"},{"name":"tokenCount","type":"uint256"}],"name":"issueTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"exchanger","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"founder","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"}],"name":"changeFounder","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"}],"name":"changeExchanger","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Issuance","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"}]},{"name":"LookRev Crowdsale","address":"0x21ae23b882a340a22282162086bc98d3e2b73018","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_TOTAL","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerKEther","type":"uint256"}],"name":"setTokensPerKEther","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"_required","type":"bool"}],"name":"kycVerify","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"finalised","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"KYC_THRESHOLD","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTIONS_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"START_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"balance","type":"uint256"}],"name":"addPrecommitment","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_SOFT_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"END_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"DECIMALSFACTOR","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTIONS_MAX","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalise","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokensPerKEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"kycRequired","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"}],"name":"proxyPayment","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"VERSION","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newWallet","type":"address"}],"name":"WalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokensPerKEther","type":"uint256"}],"name":"TokensPerKEtherUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"ethers","type":"uint256"},{"indexed":false,"name":"participantTokenBalance","type":"uint256"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"newTotalSupply","type":"uint256"},{"indexed":false,"name":"tokensPerKEther","type":"uint256"}],"name":"TokensBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"participant","type":"address"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"PrecommitmentAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"participant","type":"address"},{"indexed":false,"name":"required","type":"bool"}],"name":"KycVerified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Lunyr - Crowdsale","address":"0xfa05A73FfE78ef8f1a739473e462c54bae6567D9","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vaultPercentOfTotal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"ok","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getState","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdfundPercentOfTotal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalizeCrowdfunding","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenCreationMax","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"ok","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"lunyrPercentOfTotal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"finalizedCrowdfunding","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"hundredPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isLunyrToken","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"lunyrMultisig","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"ok","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenCreationMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"create","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"newWallet","type":"address"}],"name":"setMultiSigWallet","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"timeVault","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_lunyrMultisig","type":"address"},{"name":"_upgradeMaster","type":"address"},{"name":"_fundingStartBlock","type":"uint256"},{"name":"_fundingEndBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"upgradeAgent","type":"address"}],"name":"UpgradeFinalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Martcoin - MART","address":"0xfdcc07Ab60660de533b5Ad26e1457b565a9D59Bd","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string","value":"Martcoin"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256","value":"2.9e+25"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256","value":"29000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256","value":"18"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address","value":"0xfd236dfb8ac50c5e0818b5f14bed825ffdb56195"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string","value":"MART"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool","value":false}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256","index":0,"typeShort":"uint","bits":"256","displayName":"initial Supply","template":"elements_input_uint","value":""},{"name":"tokenName","type":"string","index":1,"typeShort":"string","bits":"","displayName":"token Name","template":"elements_input_string","value":""},{"name":"tokenSymbol","type":"string","index":2,"typeShort":"string","bits":"","displayName":"token Symbol","template":"elements_input_string","value":""}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]},{"name":"MEW tokens contract","address":"0xBE1ecF8e340F13071761e0EeF054d9A511e1Cb56","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"pubTokens","outputs":[{"name":"name","type":"bytes16"},{"name":"symbol","type":"bytes16"},{"name":"addr","type":"address"},{"name":"decimals","type":"uint8"},{"name":"website","type":"bytes32"},{"name":"email","type":"bytes32"},{"name":"isValid","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"idMap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenValidCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"moderator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"addModerator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"removeModerator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"bytes16"},{"name":"symbol","type":"bytes16"},{"name":"addr","type":"address"},{"name":"decimals","type":"uint8"},{"name":"website","type":"bytes32"},{"name":"email","type":"bytes32"}],"name":"addSetToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"disableToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"enableToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"getToken","outputs":[{"name":"","type":"bytes16"},{"name":"","type":"bytes16"},{"name":"","type":"address"},{"name":"","type":"uint8"},{"name":"","type":"bytes32"},{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"id","type":"uint256"}],"name":"getTokenById","outputs":[{"name":"","type":"bytes16"},{"name":"","type":"bytes16"},{"name":"","type":"address"},{"name":"","type":"uint8"},{"name":"","type":"bytes32"},{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"name","type":"bool"},{"name":"website","type":"bool"},{"name":"email","type":"bool"},{"name":"count","type":"uint256"}],"name":"getAllBalance","outputs":[{"name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"Milestone Tracker","address":"0x3C01ddC7aF41E6888cBD8d0398Fe34a81C3c7f36","comment":"","abi":[{"constant":true,"inputs":[],"name":"proposedMilestones","outputs":[{"name":"","type":"bytes"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"changingMilestones","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"campaignCanceled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"collectMilestonePayment","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unproposeMilestones","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"donor","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"milestoneCompleted","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hashProposals","type":"bytes32"}],"name":"acceptProposedMilestones","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"approveCompletedMilestone","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"recipient","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newMilestones","type":"bytes"}],"name":"proposeMilestones","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"arbitrator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"arbitrateCancelCampaign","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newRecipient","type":"address"}],"name":"changeRecipient","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"numberOfMilestones","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"rejectMilestone","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newDonor","type":"address"}],"name":"changeDonor","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"milestones","outputs":[{"name":"description","type":"string"},{"name":"url","type":"string"},{"name":"minCompletionDate","type":"uint256"},{"name":"maxCompletionDate","type":"uint256"},{"name":"reviewer","type":"address"},{"name":"reviewTime","type":"uint256"},{"name":"paymentSource","type":"address"},{"name":"payData","type":"bytes"},{"name":"status","type":"uint8"},{"name":"doneTime","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"arbitrateApproveMilestone","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"cancelMilestone","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newArbitrator","type":"address"}],"name":"changeArbitrator","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_arbitrator","type":"address"},{"name":"_donor","type":"address"},{"name":"_recipient","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[],"name":"NewMilestoneListProposed","type":"event"},{"anonymous":false,"inputs":[],"name":"NewMilestoneListUnproposed","type":"event"},{"anonymous":false,"inputs":[],"name":"NewMilestoneListAccepted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"idProposal","type":"uint256"},{"indexed":false,"name":"newProposal","type":"uint8"}],"name":"ProposalStatusChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"CampaignCalncelled","type":"event"}]},{"name":"Minereum Contract","address":"0x1a95B271B0535D15fa49932Daba31BA612b52946","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"currentEthBlock","outputs":[{"name":"blockNumber","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"initialSupplyPerAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalGenesisAddresses","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"availableBalanceOf","outputs":[{"name":"Balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_caller","type":"address"}],"name":"setGenesisCallerAddress","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maxTotalSupply","outputs":[{"name":"maxSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address[]"}],"name":"setGenesisAddressArray","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"genesisAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"rewardPerBlockPerAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"currentBlock","outputs":[{"name":"blockNumber","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"initialBlockCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"genesisCallerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Mists Multisig Contract","address":"0x0101010101010101010101010101010101010101","comment":"","abi":[{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"removeOwner","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"m_numOwners","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"m_lastDay","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"resetSpentToday","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_spentToday","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"addOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_required","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_h","type":"bytes32"}],"name":"confirm","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newLimit","type":"uint256"}],"name":"setDailyLimit","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"execute","outputs":[{"name":"_r","type":"bytes32"}],"type":"function"},{"constant":false,"inputs":[{"name":"_operation","type":"bytes32"}],"name":"revoke","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_newRequired","type":"uint256"}],"name":"changeRequirement","outputs":[],"type":"function"},{"constant":true,"inputs":[{"name":"_operation","type":"bytes32"},{"name":"_owner","type":"address"}],"name":"hasConfirmed","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"kill","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"}],"name":"changeOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_dailyLimit","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"},{"name":"_daylimit","type":"uint256"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Revoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"}],"name":"OwnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newRequirement","type":"uint256"}],"name":"RequirementChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"SingleTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"MultiTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"initiator","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"ConfirmationNeeded","type":"event"}]},{"name":"Modum Token","address":"0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e","comment":"","abi":[{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_addr","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"weiPerToken","type":"uint256"}],"name":"Payout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_addr","type":"address"},{"indexed":false,"name":"option","type":"bool"},{"indexed":false,"name":"votes","type":"uint256"}],"name":"Voted","type":"event"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"accounts","outputs":[{"name":"lastProposalStartTime","type":"uint256"},{"name":"lastAirdropWei","type":"uint256"},{"name":"lastAirdropClaimTime","type":"uint256"},{"name":"bonusWei","type":"uint256"},{"name":"valueModVote","type":"uint256"},{"name":"valueMod","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"blockingDuration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimVotingProposal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"currentProposal","outputs":[{"name":"addr","type":"string"},{"name":"hash","type":"bytes32"},{"name":"valueMod","type":"uint256"},{"name":"startTime","type":"uint256"},{"name":"yay","type":"uint256"},{"name":"nay","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isProposalActive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isVoteOngoing","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isVotingPhaseOver","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastNegativeVoting","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address[]"},{"name":"_value","type":"uint256[]"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintDone","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address[]"}],"name":"payBonus","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"redistributionTimeout","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rounding","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"setMintDone","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"showBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"showVotes","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDropPerUnlockedToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_vote","type":"bool"}],"name":"vote","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"votingDuration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"string"},{"name":"_hash","type":"bytes32"},{"name":"_value","type":"uint256"}],"name":"votingProposal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]},{"name":"Money Rebel","address":"0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"killContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"disableMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenAddress","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"salvageTokensFromContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_untilBlock","type":"uint256"},{"name":"_reason","type":"string"}],"name":"lockUntil","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedUntilBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_untilBlock","type":"uint256"},{"indexed":false,"name":"_reason","type":"string"}],"name":"ContractLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_prevOwner","type":"address"},{"indexed":false,"name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"NANJCOIN","address":"0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265","comment":"","abi":[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_unitAmount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"founder","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributeAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"AAcontributors","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"targets","type":"address[]"},{"name":"unixTimes","type":"uint256[]"}],"name":"lockupAccounts","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"activityFunds","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"preSeasonGame","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amount","type":"uint256"}],"name":"distributeAirdrop","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_unitAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedFundsForthefuture","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"autoDistribute","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"targets","type":"address[]"},{"name":"isFrozen","type":"bool"}],"name":"freezeAccounts","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"unlockUnixTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_unitAmount","type":"uint256"}],"name":"setDistributeAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"distributeAirdrop","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"collectTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_custom_fallback","type":"string"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"},{"indexed":false,"name":"locked","type":"uint256"}],"name":"LockedFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Nebula Ai Crowdsale","address":"0x83c451371EF470D206cf011405D89f6ccb0e915e","comment":"","abi":[{"constant":true,"inputs":[],"name":"hasClosed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"get_time_locked_contract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contributions","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hasStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"capReached","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"caps","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"release_all","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"getUserCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"openingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"getUserContribution","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"}]},{"name":"Nebula Ai Token","address":"0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D","comment":"","abi":[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"time_locked_reclaim_addresses","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"release_all","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"get_time_locked_contract_size","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token_unlock_time","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"Nimiq Network Interim Token","address":"0xcfb98637bcae43C13323EAa1731cED2B716962fD","comment":"","abi":[{"constant":true,"inputs":[],"name":"TOKEN_SECOND_EXCHANGE_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_FIRST_EXCHANGE_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ETH_RECEIVED_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"nimiqAddress","type":"bytes32"}],"name":"redeemTokens","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateChangesBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"proceed","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalReceivedEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ethFundDeposit","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"state","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ETH_RECEIVED_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"startRedeeming","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"retrieveEth","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_CREATION_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_ethFundDeposit","type":"address"},{"name":"_fundingStartBlock","type":"uint256"},{"name":"_fundingEndBlock","type":"uint256"},{"name":"_exchangeRateChangesBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"LogRefund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"LogCreateNET","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_nimiqAddress","type":"bytes32"}],"name":"LogRedeemNET","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"NVC Fund","address":"0x53b60A7c2F6d95E12c5e5A3cCaAcFE35620AeFf6","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimal","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"decimalUnits","type":"uint8"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"OAK","address":"0x25Beb989d3ef4E6e0fEF8220944bb74E2AA6ff45","comment":"","abi":[{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"soldTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Y2_lockedTokenAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hardCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hasEnded","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Y1_lockedTokenReleaseTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"restrictedPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Y1_lockedTokenAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"restricted","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"vip","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vipRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Y2_lockedTokenReleaseTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[],"name":"CrowdSaleTokenContractCreation","type":"event"},{"constant":false,"inputs":[],"name":"Y1_release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"}],"name":"kycVerify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"}],"name":"setSalePeriod","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_rate","type":"uint256"},{"name":"_wallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"unsetVipAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"constant":false,"inputs":[],"name":"Y2_release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_hardCap","type":"uint256"}],"name":"setHardCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"constant":false,"inputs":[{"name":"_rate","type":"uint256"}],"name":"setRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"setWalletAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"balance","type":"uint256"}],"name":"addPrecommitment","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_vipRate","type":"uint256"}],"name":"setVipRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setVipAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]},{"name":"Ohni","address":"0x6f539a9456a5bcb6334a1a41207c3788f5825207","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"merge","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentVersion","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipients","type":"address[]"},{"name":"value","type":"uint256"}],"name":"airdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipients","type":"address[]"}],"name":"multiMerge","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"},{"name":"depr","type":"bool"}],"name":"update","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"changedTarget","type":"address"},{"indexed":false,"name":"amountToChanged","type":"uint256"}],"name":"ChangedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]},{"name":"Ohni OLD","address":"0x7f2176ceb16dcb648dc924eff617c3dc2befd30d","comment":"","abi":[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"openANX Crowdsale","address":"0x701C244b988a513c945973dEFA05de933b23Fe1D","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_TOTAL","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerKEther","type":"uint256"}],"name":"setTokensPerKEther","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"lockedTokens","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"}],"name":"kycVerify","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOfLocked1Y","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"finalised","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTIONS_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"START_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"balance","type":"uint256"}],"name":"addPrecommitment","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_SOFT_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"END_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyLocked","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyLocked2Y","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"DECIMALSFACTOR","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTIONS_MAX","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"LOCKED_2Y_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"NAME","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalise","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokensPerKEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"kycRequired","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOfLocked2Y","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyLocked1Y","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyUnlocked","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOfLocked","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"LOCKED_1Y_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"}],"name":"proxyPayment","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"inputs":[{"name":"_wallet","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newWallet","type":"address"}],"name":"WalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokensPerKEther","type":"uint256"}],"name":"TokensPerKEtherUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"ethers","type":"uint256"},{"indexed":false,"name":"newEtherBalance","type":"uint256"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"newTotalSupply","type":"uint256"},{"indexed":false,"name":"tokensPerKEther","type":"uint256"}],"name":"TokensBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"participant","type":"address"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"PrecommitmentAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"participant","type":"address"}],"name":"KycVerified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Pass DAO: Committees Contract","address":"0x6A3DCd2Ad3C693aA8CBc3e5bCB075b674209A033","comment":"","abi":[{"constant":false,"inputs":[{"name":"_committeeID","type":"uint256"},{"name":"_supportsProposal","type":"bool"}],"name":"vote","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"}],"name":"buySharesForProposal","outputs":[{"name":"","type":"bool"}],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawPendingAmounts","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_contractorCreator","type":"address"},{"name":"_recipient","type":"address"},{"name":"_metaProject","type":"bool"},{"name":"_passProject","type":"address"},{"name":"_projectName","type":"string"},{"name":"_projectDescription","type":"string"}],"name":"createContractor","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_contractor","type":"address"},{"name":"_contractorProposalID","type":"uint256"},{"name":"_proposalDescription","type":"string"},{"name":"_hashOfTheContractorProposalDocument","type":"bytes32"},{"name":"_moderator","typPassDe":"address"},{"name":"_initialSharePriceMultiplier","type":"uint256"},{"name":"_minutesFundingPeriod","type":"uint256"},{"name":"_minutesDebatingPeriod","type":"uint256"}],"name":"contractorProposal","outputs":[{"name":"","type":"uint256"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_description","type":"string"},{"name":"_project","type":"address"},{"name":"_minutesDebatingPeriod","type":"uint256"}],"name":"resolutionProposal","outputs":[{"name":"","type":"uint256"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_minQuorumDivisor","type":"uint256"},{"name":"_minCommitteeFees","type":"uint256"},{"name":"_minPercentageOfLikes","type":"uint256"},{"name":"_minutesSetProposalPeriod","type":"uint256"},{"name":"_minMinutesDebatePeriod","type":"uint256"},{"name":"_feesRewardInflationRate","type":"uint256"},{"name":"_defaultMinutesFundingPeriod","type":"uint256"},{"name":"_tokenPriceInflationRate","type":"uint256"}],"name":"rulesProposal","outputs":[{"name":"","type":"uint256"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_newCommitteeRoom","type":"address"},{"name":"_newShareManager","type":"address"},{"name":"_newTokenManager","type":"address"},{"name":"_minutesDebatingPeriod","type":"uint256"}],"name":"upgradeProposal","outputs":[{"name":"","type":"uint256"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_committeeID","type":"uint256"}],"name":"executeDecision","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"}],"name":"orderToContractor","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"}]},{"name":"Pass DAO: Tokens Contract","address":"0x85bC00724203D53536072b000C44A2cc16CD12C5","comment":"","abi":[{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_buyer","type":"address"}],"name":"buyTokensForProposal","outputs":[{"name":"","type":"bool"}],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawPendingAmounts","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buyTokens","outputs":[{"name":"","type":"bool"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"uint256"},{"name":"_to","type":"uint256"}],"name":"removeOrders","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenAmount","type":"uint256"},{"name":"_from","type":"uint256"},{"name":"_to","type":"uint256"}],"name":"sellTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"}]},{"name":"Peculium","address":"0x3618516F45CD3c913F81F9987AF41077932Bc40d","comment":"","abi":[{"constant":true,"inputs":[],"name":"MAX_SUPPLY_NBTOKEN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"UpgradeTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"canSell","type":"bool"}],"name":"ChangeLicense","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getBlockTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwnerInfos","outputs":[{"name":"ownerAddr","type":"address"},{"name":"ownerBalance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"peculOldAdress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balancesCannotSell","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"peculOld","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"changedTarget","type":"address"},{"indexed":false,"name":"amountToChanged","type":"uint256"}],"name":"ChangedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"address_target","type":"address"},{"indexed":false,"name":"bool_canSell","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Peculium OLD","address":"0x53148Bb4551707edF51a1e8d7A93698d18931225","comment":"","abi":[{"constant":true,"inputs":[],"name":"MAX_SUPPLY_NBTOKEN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dateDefrost","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getBlockTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwnerInfos","outputs":[{"name":"ownerAddr","type":"address"},{"name":"ownerBalance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balancesCanSell","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"defrostToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"canSell","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"dateStartContract","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"msgAdd","type":"address"},{"indexed":false,"name":"freeze","type":"bool"}],"name":"Defroze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Persian: Warrior for Battle Contract","address":"0x163733bcc28dbf26B41a8CfA83e369b5B3af741b","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"icoStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maxTotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalContributions","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contributions","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimToken","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"icoEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"estimateBalanceOf","outputs":[{"name":"estimatedTokens","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isICOOpen","outputs":[{"name":"_open","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isICOEnded","outputs":[{"name":"_ended","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"contribute","outputs":[{"name":"success","type":"bool"}],"payable":true,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"redeemEther","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_icoStartBlock","type":"uint256"},{"name":"_icoEndBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_contributor","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_estimatedTotalTokenBalance","type":"uint256"}],"name":"Contributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_contributor","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Primalbase Token (PBT)","address":"0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_wallet","type":"string"}],"name":"TransferToWaves","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_wallet","type":"string"},{"name":"_currency","type":"string"}],"name":"TransferBase","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"wallet","type":"string"},{"indexed":false,"name":"currency","type":"string"}],"name":"TokenTransferLog","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Proof of Weak Hands 3D (P3D)","address":"0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe","comment":"","abi":[{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"dividendsOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ethereumToSpend","type":"uint256"}],"name":"calculateTokensReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokensToSell","type":"uint256"}],"name":"calculateEthereumReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"onlyAmbassadors","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"administrators","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingRequirement","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_includeReferralBonus","type":"bool"}],"name":"myDividends","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthereumBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"setStakingRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_identifier","type":"bytes32"},{"name":"_status","type":"bool"}],"name":"setAdministrator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"myTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disableInitialStage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_toAddress","type":"address"},{"name":"_amountOfTokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_referredBy","type":"address"}],"name":"buy","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"reinvest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"incomingEthereum","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"},{"indexed":true,"name":"referredBy","type":"address"}],"name":"onTokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"tokensBurned","type":"uint256"},{"indexed":false,"name":"ethereumEarned","type":"uint256"}],"name":"onTokenSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumReinvested","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"}],"name":"onReinvestment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumWithdrawn","type":"uint256"}],"name":"onWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Proxy Token (PRXY)","address":"0x81BE91c7E74Ad0957B4156F782263e7B0B88cF7b","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"PUC","address":"0xef6b4ce8c9bc83744fbcde2657b32ec18790458a","comment":"","abi":[{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Q - TiiQu Network","address":"0x2C3C1F05187dBa7A5f2Dd47Dca57281C4d4F183F","comment":"","abi":[{"constant":false,"inputs":[],"name":"killPay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isAuthorised","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"authorise","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_toReplace","type":"address"},{"name":"_new","type":"address"}],"name":"replaceAuthorised","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"unauthorise","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_value","type":"uint256"}],"name":"pay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_message","type":"bytes16"},{"indexed":true,"name":"_actioner","type":"address"},{"indexed":true,"name":"_actionee","type":"address"}],"name":"Authorise","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Rebellious","address":"0x5f53f7a8075614b699baad0bc2c899f4bad8fbbf","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"coinAge","outputs":[{"name":"myCoinAge","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"timestamp","type":"uint256"}],"name":"ownerSetStakeStartTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxTotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getBlockNumber","outputs":[{"name":"blockNumber","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"chainStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"ownerBurnToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalInitialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"annualInterest","outputs":[{"name":"interest","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeMinAge","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"chainStartBlockNumber","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeMaxAge","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxMintProofOfStake","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"},{"indexed":false,"name":"_reward","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Replay Safe Split","address":"0xAA1A6e3e6EF20068f7F8d8C835d2D22fd5116444","comment":"","abi":[{"constant":false,"inputs":[{"name":"targetFork","type":"address"},{"name":"targetNoFork","type":"address"}],"name":"split","outputs":[{"name":"","type":"bool"}],"type":"function"}]},{"name":"RiderToken","address":"0x54b293226000ccBFC04DF902eEC567CB4C35a903","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"tokenSupply","type":"uint256"}],"name":"SetupToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"adr","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"SGelder","address":"0xa1ccc166faf0E998b3E33225A1A0301B1C86119D","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimal","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"decimalUnits","type":"uint8"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"SIFT Authentication","address":"0xc6a3746aa3fec176559f0865fd5240159402a81f","comment":"","abi":[{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isCurrentOrPastAccountReader","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeAccountReader","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"contractVersion","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addAccountReader","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isCurrentAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isCurrentOrPastAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isCurrentAccountReader","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addedBy","type":"address"},{"indexed":false,"name":"admin","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"removedBy","type":"address"},{"indexed":false,"name":"admin","type":"address"}],"name":"AdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addedBy","type":"address"},{"indexed":false,"name":"account","type":"address"}],"name":"AccountReaderAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"removedBy","type":"address"},{"indexed":false,"name":"account","type":"address"}],"name":"AccountReaderRemoved","type":"event"}]},{"name":"SIFT Dividends","address":"0x9599954b6ade1f00f36a95cdf3a1b773ba3be19a","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"dividends","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawDividend","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"contractVersion","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_siftContractAddress","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"PaymentAvailable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"paymentPerShare","type":"uint256"},{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"DividendPayment","type":"event"}]},{"name":"SIFT Transparency","address":"0x27c8566bfb73280606e58f60cb3374788a43d850","comment":"","abi":[{"constant":true,"inputs":[],"name":"accountBalanceCount","outputs":[{"name":"_count","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_accountType","type":"string"},{"name":"_accountIssuer","type":"string"},{"name":"_balance","type":"uint256"},{"name":"_accountReference","type":"string"},{"name":"_validationUrl","type":"string"},{"name":"_timestamp","type":"uint256"}],"name":"accountBalancePublish","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundValueCount","outputs":[{"name":"_count","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_usdTotalFund","type":"uint256"},{"name":"_etherTotalFund","type":"uint256"},{"name":"_definedTimestamp","type":"uint256"}],"name":"fundValuePublish","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"fundValues","outputs":[{"name":"usdValue","type":"uint256"},{"name":"etherEquivalent","type":"uint256"},{"name":"suppliedTimestamp","type":"uint256"},{"name":"blockTimestamp","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"accountBalances","outputs":[{"name":"accountType","type":"string"},{"name":"accountIssuer","type":"string"},{"name":"balance","type":"uint256"},{"name":"accountReference","type":"string"},{"name":"validationUrl","type":"string"},{"name":"suppliedTimestamp","type":"uint256"},{"name":"blockTimestamp","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"contractVersion","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_authenticationManagerAddress","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"usdValue","type":"uint256"},{"indexed":false,"name":"etherEquivalent","type":"uint256"},{"indexed":false,"name":"suppliedTimestamp","type":"uint256"},{"indexed":false,"name":"blockTimestamp","type":"uint256"}],"name":"FundValue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"accountType","type":"string"},{"indexed":false,"name":"accountIssuer","type":"string"},{"indexed":false,"name":"balance","type":"uint256"},{"indexed":false,"name":"accountReference","type":"string"},{"indexed":false,"name":"validationUrl","type":"string"},{"indexed":false,"name":"timestamp","type":"uint256"},{"indexed":false,"name":"blockTimestamp","type":"uint256"}],"name":"AccountBalance","type":"event"}]},{"name":"SIFT Vote SVP002","address":"0x7f39f3a01701bbb3b637597ab3267c213c8a11df","comment":"","abi":[{"constant":true,"inputs":[],"name":"vote02YesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote02NoCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"voteStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote03YesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote01YesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"vote","type":"bool"}],"name":"voteSvp01","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote03NoCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"voteCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote01NoCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"voteEndTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_count","type":"uint256"}],"name":"setVoterCount","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"voterAddresses","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"vote","type":"bool"}],"name":"voteSvp02","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"vote","type":"bool"}],"name":"voteSvp03","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_position","type":"uint256"},{"name":"_voter","type":"address"},{"name":"_voteCount","type":"uint256"}],"name":"setVoter","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_authenticationManagerAddress","type":"address"},{"name":"_voteStartTime","type":"uint256"},{"name":"_voteEndTime","type":"uint256"}],"payable":false,"type":"constructor"}]},{"name":"SingularDTV Fund","address":"0xe736091FC36f1ad476f5E4e03e4425940822D3BA","comment":"","abi":[{"inputs":[{"type":"address","name":"singularDTVCrowdfundingAddress"},{"type":"address","name":"singularDTVTokenAddress"}],"constant":false,"type":"function","name":"setup","outputs":[{"type":"bool","name":""}]},{"inputs":[],"constant":false,"type":"function","name":"depositRevenue","outputs":[{"type":"bool","name":""}]},{"inputs":[],"constant":false,"type":"function","name":"withdrawRevenue","outputs":[{"type":"uint256","name":""}]},{"inputs":[{"type":"address","name":"forAddress"}],"constant":false,"type":"function","name":"softWithdrawRevenueFor","outputs":[{"type":"uint256","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"workshop","outputs":[{"type":"address","name":""}]},{"inputs":[{"type":"address","name":""}],"constant":true,"type":"function","name":"revenueAtTimeOfWithdraw","outputs":[{"type":"uint256","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"singularDTVToken","outputs":[{"type":"address","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"owner","outputs":[{"type":"address","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"singularDTVCrowdfunding","outputs":[{"type":"address","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"totalRevenue","outputs":[{"type":"uint256","name":""}]},{"inputs":[{"type":"address","name":""}],"constant":true,"type":"function","name":"owed","outputs":[{"type":"uint256","name":""}]},{"inputs":[],"type":"constructor"}]},{"name":"Skraps","address":"0xfdfe8b7ab6cf1bd1e3d14538ef40686296c42052","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"cancelMigration","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startMigration","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"manualMigrate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"removeSupport","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"closeICO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"refundTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_agent","type":"address"}],"name":"setMigrationAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"supportAccounts","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startICO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"migrationAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"migrate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokens","type":"uint256"}],"name":"setTokensPerEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"addSupport","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"state","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"state","type":"uint8"}],"name":"NewState","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_who","type":"address"}],"name":"SupportAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_who","type":"address"}],"name":"SupportRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Skrilla Token","address":"0x4c382F8E09615AC86E08CE58266CC227e7d4D913","comment":"","abi":[{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"tokenSaleBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_buyer","type":"address"}],"name":"getCurrentPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"StashPay","address":"0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"distributionComplete","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"publicKeySize","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"getData","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"amount","type":"uint256"},{"name":"freeze","type":"bool"}],"name":"distributeAdviserBounty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"publicKey","type":"string"}],"name":"registerKey","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"timeTransferbleUntil","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sale","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"},{"name":"_data","type":"string"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"data","type":"uint256[]"},{"name":"freeze","type":"bool"}],"name":"multiDistributeAdviserBounty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"publicKeys","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_publicKeySize","type":"uint8"}],"name":"modifyPublicKeySize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"data","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"adviserAndBounty","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_target","type":"address"}],"name":"isFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"data","type":"uint256[]"}],"name":"multiDistribute","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_publicKey","type":"string"}],"name":"RegisterKey","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_size","type":"uint8"}],"name":"ModifyPublicKeySize","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"string"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"LogStop","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Su Squares (SU)","address":"0xe264D16BCBA50925D0e1a90398596EC010306E14","comment":"","abi":[{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_operator","type":"address"},{"indexed":false,"name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"constant":false,"inputs":[{"name":"_approved","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_newOwner","type":"address"}],"name":"grantToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_nftId","type":"uint256"}],"name":"Personalized","type":"event"},{"constant":false,"inputs":[{"name":"_squareId","type":"uint256"},{"name":"_rgbData","type":"bytes"},{"name":"_title","type":"string"},{"name":"_href","type":"string"}],"name":"personalizeSquare","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_approved","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"constant":false,"inputs":[{"name":"_nftId","type":"uint256"}],"name":"purchase","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"},{"name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_executiveOfficerAddress","type":"address"}],"name":"setExecutiveOfficer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_financialOfficerAddress","type":"address"}],"name":"setFinancialOfficer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_operatingOfficerAddress","type":"address"}],"name":"setOperatingOfficer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"executiveOfficerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"financialOfficerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"operatingOfficerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"_owner","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"promoCreatedCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"suSquares","outputs":[{"name":"version","type":"uint256"},{"name":"rgbData","type":"bytes"},{"name":"title","type":"string"},{"name":"href","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"_tokenId","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"_tokenURI","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"SyncFab Smart Manufacturing Blockchain","address":"0x6710c63432a2de02954fc0f851db07146a6c0312","comment":"","abi":[{"constant":true,"inputs":[],"name":"multiAsset","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"commitUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getLatestVersion","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"},{"name":"_sender","type":"address"}],"name":"_forwardTransferFromWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"emitApprove","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"emitTransfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"recoverTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"etoken2","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getPendingVersionTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"purgeUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"optIn","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferFromWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"}],"name":"transferToICAP","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"string"},{"name":"_value","type":"uint256"}],"name":"transferFromToICAP","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_sender","type":"address"}],"name":"_forwardApprove","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_icap","type":"string"},{"name":"_value","type":"uint256"}],"name":"transferToICAP","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"string"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferFromToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_icap","type":"string"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"},{"name":"_sender","type":"address"}],"name":"_forwardTransferFromToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferFromToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"}],"name":"transferFromToICAP","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"etoken2Symbol","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getPendingVersion","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_etoken2","type":"address"},{"name":"_symbol","type":"string"},{"name":"_name","type":"string"}],"name":"init","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newVersion","type":"address"}],"name":"proposeUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"optOut","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_from","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_sender","type":"address"}],"name":"getVersionFor","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newVersion","type":"address"}],"name":"UpgradeProposed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newVersion","type":"address"}],"name":"UpgradePurged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newVersion","type":"address"}],"name":"UpgradeCommited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"version","type":"address"}],"name":"OptedOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"version","type":"address"}],"name":"OptedIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"TangguoTaoToken","address":"0xfA0eF5E034CaE1AE752d59bdb8aDcDe37Ed7aB97","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Telcoin Redeem","address":"0x6D9FE564C9B1C81C305e066346dF73de6cF9295f","comment":"","abi":[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"vestedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"redeem","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"redeemableBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiaries","type":"address[]"}],"name":"redeemMany","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalRedeemed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_telcoin","type":"address"},{"name":"_vestingStart","type":"uint256"},{"name":"_vestingDuration","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"sacrificedValue","type":"uint256"},{"indexed":false,"name":"grantedValue","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"theCyber","address":"0x97A99C819544AD0617F48379840941eFbe1bfAE1","comment":"","abi":[{"constant":false,"inputs":[{"name":"_tokenContractAddress","type":"address"}],"name":"donateTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_message","type":"string"}],"name":"broadcastMessage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_contractAddress","type":"address"},{"name":"_message","type":"string"}],"name":"passMessage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"heartbeat","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"donateFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"inactivityTimeout","outputs":[{"name":"","type":"uint64"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_newMemberAddress","type":"address"}],"name":"transferMembership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newMemberName","type":"bytes32"}],"name":"changeName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_memberId","type":"uint8"},{"name":"_memberName","type":"bytes32"},{"name":"_memberAddress","type":"address"}],"name":"newMember","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_memberAddress","type":"address"}],"name":"getMembershipStatus","outputs":[{"name":"member","type":"bool"},{"name":"memberId","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_memberId","type":"uint8"}],"name":"getMemberInformation","outputs":[{"name":"memberName","type":"bytes32"},{"name":"memberKey","type":"string"},{"name":"memberSince","type":"uint64"},{"name":"inactiveSince","type":"uint64"},{"name":"memberAddress","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_memberId","type":"uint8"}],"name":"revokeMembership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newMemberKey","type":"string"}],"name":"changeKey","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxMembers","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_memberId","type":"uint8"}],"name":"proclaimInactive","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_toMemberId","type":"uint8"},{"name":"_message","type":"string"}],"name":"directMessage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"donationAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"pure","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"memberName","type":"bytes32"},{"indexed":true,"name":"memberAddress","type":"address"}],"name":"NewMember","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"newMemberName","type":"bytes32"}],"name":"NewMemberName","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"newMemberKey","type":"string"}],"name":"NewMemberKey","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"newMemberAddress","type":"address"}],"name":"MembershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":true,"name":"proclaimingMemberId","type":"uint8"}],"name":"MemberProclaimedInactive","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"}],"name":"MemberHeartbeated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":true,"name":"revokingMemberId","type":"uint8"}],"name":"MembershipRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"message","type":"string"}],"name":"BroadcastMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":true,"name":"toMemberId","type":"uint8"},{"indexed":false,"name":"message","type":"string"}],"name":"DirectMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":true,"name":"contractAddress","type":"address"},{"indexed":false,"name":"message","type":"string"}],"name":"Call","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"value","type":"uint256"}],"name":"FundsDonated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"tokenContractAddress","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"TokensDonated","type":"event"}]},{"name":"TNT - Tierion Network Token","address":"0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"TRV","address":"0xA671f2914Ba0e73979FFc47cD350801d1714b18f","comment":"","abi":[{"constant":false,"inputs":[],"name":"checkGoalReached","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingMinimumTargetInUsd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_source","type":"address"}],"name":"addToSyncList","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_price","type":"uint256"}],"name":"setEtherPrice","outputs":[{"name":"result","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalUsdRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"icoState","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"priceInUsd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenAllocation","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"userRefund","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenReward","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"stopIco","outputs":[{"name":"result","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"amountRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"startIco","outputs":[{"name":"result","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingMaximumTargetInUsd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"drain","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"syncList","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeDiv","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"AutorizeRefund","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"etherPriceInUsd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeMul","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingGoalReached","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_priceInUsd","type":"uint256"},{"name":"_tokenHolder","type":"address"},{"name":"_tokenAllocation","type":"uint256"},{"name":"_fundingMinimumTargetInUsd","type":"uint256"},{"name":"_fundingMaximumTargetInUsd","type":"uint256"}],"name":"settingsIco","outputs":[{"name":"result","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"safeWithdrawal","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"removeContract","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"ifSuccessfulSendTo","type":"address"},{"name":"_fundingMinimumTargetInUsd","type":"uint256"},{"name":"_fundingMaximumTargetInUsd","type":"uint256"},{"name":"tokenPriceInUSD","type":"uint256"},{"name":"addressOfTokenUsedAsReward","type":"address"},{"name":"_tokenHolder","type":"address"},{"name":"_tokenAllocation","type":"uint256"},{"name":"_etherPriceInUsd","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_beneficiary","type":"address"},{"indexed":false,"name":"_amountRaised","type":"uint256"},{"indexed":false,"name":"_totalUsdRaised","type":"uint256"}],"name":"GoalMinimumReached","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_beneficiary","type":"address"},{"indexed":false,"name":"_amountRaised","type":"uint256"},{"indexed":false,"name":"_totalUsdRaised","type":"uint256"}],"name":"GoalMaximumReached","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_backer","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_isContribution","type":"bool"}],"name":"FundTransfer","type":"event"}]},{"name":"TWN","address":"0x2eF1aB8a26187C58BB8aAeB11B2fC6D25C5c0716","comment":"","abi":[{"constant":false,"inputs":[{"name":"newToken","type":"address"}],"name":"setToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAdvisorsTokensWallet","type":"address"}],"name":"setAdvisorsTokensWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERCENT_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newFoundersTokensWallet","type":"address"}],"name":"setFoundersTokensWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"lockChanges","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"foundersTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minted","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"smartContractDevelopersWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newBountyTokensPercent","type":"uint256"}],"name":"setBountyTokensPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"advisorsTokensPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdvisorsTokensPercent","type":"uint256"}],"name":"setAdvisorsTokensPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newDevPercent","type":"uint256"}],"name":"setDevPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newEnd","type":"uint256"}],"name":"setEnd","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"foundersTokensPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"changesLocked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bountyTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bountyTokensPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devWithdrawn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newMinInvestedLimit","type":"uint256"}],"name":"setMinInvestedLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"widthraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"bonuses","outputs":[{"name":"periodInDays","type":"uint256"},{"name":"bonus","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newFoundersTokensPercent","type":"uint256"}],"name":"setFoundersTokensPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"limit","type":"uint256"},{"name":"bonus","type":"uint256"}],"name":"addBonus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"hardcap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"start","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"invested","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minInvestedLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"widthrawDev","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nextSaleAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newWallet","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonusesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newHardcap","type":"uint256"}],"name":"setHardcap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newNextSaleAgent","type":"address"}],"name":"setNextSaleAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"advisorsTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"end","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newStart","type":"uint256"}],"name":"setStart","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newBountyTokensWallet","type":"address"}],"name":"setBountyTokensWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"VDOC - dutyof.care","address":"0x82BD526bDB718C6d4DD2291Ed013A5186cAE2DCa","comment":"","abi":[{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"burnAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"canUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"weAre","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BURN_ADDRESS","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint256"},{"name":"_mintable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"burner","type":"address"},{"indexed":false,"name":"burnedAmount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"VIBEX","address":"0x882448f83d90b2bf477af2ea79327fdea1335d93","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ETH_RECEIVED_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"proceed","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenExchange","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalReceivedEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"MIN_ETH_TRANS","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ethFundDeposit","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"deadlines","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenAccountAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"prices","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"state","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"endDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ETH_RECEIVED_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"startRedeeming","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"redeemTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenExchangeAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"LogCreateVIBEX","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_value2","type":"uint256"},{"indexed":false,"name":"_value3","type":"uint256"}],"name":"LogRedeemVIBE","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"VORMACOIN","address":"0xc3bc9eb71f75ec439a6b6c8e8b746fcf5b62f703","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeSub","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeDiv","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeMul","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeAdd","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Who The Eth?","address":"0x842D6dA3097B5efdE5a81535144f947Ab482b6eE","comment":"","abi":[{"constant":true,"inputs":[],"name":"numberOfNames","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"names","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"bank","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"},{"indexed":false,"name":"_name","type":"string"},{"indexed":false,"name":"_time","type":"uint256"},{"indexed":true,"name":"_referrer","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"AddedName","type":"event"},{"constant":false,"inputs":[],"name":"pullFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newName","type":"string"}],"name":"setName","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newName","type":"string"},{"name":"ref","type":"address"}],"name":"setNameRefer","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"}]},{"name":"WhoHas","address":"0xe933c0Cd9784414d5F278C114904F5A84b396919","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"votings_","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_etherAmount","type":"uint256"}],"name":"calculateTokenAmountICO","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"raisedIcoValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"prizePool","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timestampMint","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"circulatingSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"circulatingSupply_","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timestampRelease","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxSupply_","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"icoAccounts","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoPool","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"permissonedAccounts","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxMint","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_icoAddresses","type":"address[]"},{"name":"_level","type":"uint8"}],"name":"registerForICO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_sender","type":"address"},{"indexed":false,"name":"_votingContract","type":"address"},{"indexed":false,"name":"_hash","type":"bytes32"},{"indexed":false,"name":"_voteAmount","type":"uint256"}],"name":"ParticipatedInVoting","type":"event"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"icoBuy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_level","type":"uint256"}],"name":"updatePermissions","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_timespan","type":"uint256"},{"name":"_votePrice","type":"uint256"}],"name":"gernerateVoting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"TransferEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_voting","type":"address"},{"indexed":false,"name":"_duration","type":"uint256"},{"indexed":false,"name":"_costPerVote","type":"uint256"}],"name":"VotingStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"winner","type":"address[]"},{"indexed":false,"name":"contest","type":"address"},{"indexed":false,"name":"payoutValue","type":"uint256"}],"name":"WinningEvent","type":"event"},{"constant":false,"inputs":[{"name":"_votingContract","type":"address"},{"name":"_votePrice","type":"uint256"}],"name":"addVoting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_votingContract","type":"address"},{"name":"_hash","type":"bytes32"},{"name":"_quantity","type":"uint256"}],"name":"payForVote","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_votingContract","type":"address"}],"name":"finalizeVoting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"updatePrizePool","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":false,"inputs":[{"name":"_winner","type":"address[]"},{"name":"_payoutValue","type":"uint256"},{"name":"_votingAddress","type":"address"}],"name":"payout","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]},{"name":"X8X","address":"0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT256","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenAddress","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"salvageTokensFromContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_untilBlock","type":"uint256"},{"name":"_reason","type":"string"}],"name":"lockUntil","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedUntilBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mintTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_untilBlock","type":"uint256"},{"indexed":false,"name":"_reason","type":"string"}],"name":"ContractLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_prevOwner","type":"address"},{"indexed":false,"name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"XSC","address":"0x0F513fFb4926ff82D7F60A05069047AcA295C413","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"☼Plasma Token & Token Wallet","address":"0x59416A25628A76b4730eC51486114c32E0B582A1","comment":"","abi":[{"constant":true,"inputs":[],"name":"message","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ViewerStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ViewerValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRateEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"}],"name":"registrationFromLogin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"},{"name":"ActiveAliasAccount","type":"bool"},{"name":"ActiveMainAccount","type":"bool"},{"name":"PromilleDeposit","type":"uint256"},{"name":"DeleteMainAccount","type":"bool"}],"name":"setupAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"NewPIN","type":"uint256"}],"name":"setupAccountPIN","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"deleteLogin","type":"string"},{"name":"newLogin","type":"string"}],"name":"setupLoginVipAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"}],"name":"setupAliasAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"},{"name":"Freezen","type":"bool"}],"name":"frozenSubAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"}],"name":"buyVipStatusPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"buyTokenPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"toTransferETHER","type":"address"},{"name":"microToken","type":"uint256"},{"name":"SellDeposit","type":"bool"}],"name":"sellToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"login","type":"string"},{"name":"password","type":"string"}],"name":"depositaryPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"},{"name":"microToken","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"},{"name":"PIN","type":"uint256"}],"name":"transferFromLoginPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"}],"name":"transferToLoginPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"microToken","type":"uint256"}],"name":"returnDepositToBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"SubAccount","type":"address"},{"name":"PIN","type":"uint256"}],"name":"transferProtectPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"PIN","type":"uint256"}],"name":"unblockTransferProtectPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"SubAccount","type":"address"},{"name":"pinSubAccount","type":"uint256"},{"name":"promilleRefund","type":"uint256"}],"name":"transferRefundSubAccountPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"},{"name":"pinMainAccount","type":"uint256"},{"name":"SubAccount","type":"address"},{"name":"pinSubAccount","type":"uint256"},{"name":"promilleReferee","type":"uint256"}],"name":"refereeTransferProtect","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"VipAccount","type":"bool"},{"name":"ActiveAliasAccount","type":"bool"},{"name":"ActiveMainAccount","type":"bool"},{"name":"MainAccount","type":"address"},{"name":"MyReferralAccount","type":"address"}],"name":"MyAccountStatus","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Deposit","type":"bool"},{"name":"PromilleDeposit","type":"bool"},{"name":"ZoneToken","type":"bool"}],"name":"MyAccountValue","outputs":[{"name":"value","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"myMessage","type":"string"}],"name":"advertisingPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burnToken","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"microToken","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"Message","type":"string"}],"name":"Advertising","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"microToken","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"PriceVipAccountMicroEther","type":"uint256"},{"indexed":false,"name":"TransferTokensFeeInPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone1InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone2InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone3InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone4InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone5InPromille","type":"uint256"}],"name":"OptionsContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"microETHER","type":"uint256"}],"name":"TokenSellingRate","type":"event"}]}] \ No newline at end of file +[{"name":"ADST - AdShares","address":"0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_bidValue","type":"uint256"}],"name":"getBuyPrice","outputs":[{"name":"tokenCount","type":"uint256"},{"name":"purchaseValue","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"withdrawnBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawFunds","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"withdrawAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tradeSpreadInvert","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleEndDeclarationTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner2","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockFractionInvert","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"haltCrowdsale","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner1","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"confirmCrowdsaleEnd","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_maxPrice","type":"uint256"}],"name":"buyLimit","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"unlockedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenPriceMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unlockFunds","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_askSizeTokens","type":"uint256"}],"name":"getSellPrice","outputs":[{"name":"saleValue","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"declareCrowdsaleEnd","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenCreationMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isHalted","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenCount","type":"uint256"},{"name":"_minPrice","type":"uint256"}],"name":"sellLimit","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minFundingReached","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleEndLockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenCount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_owner1","type":"address"},{"name":"_owner2","type":"address"},{"name":"_withdrawAddress","type":"address"},{"name":"_crowdsaleStartBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"purchaseValue","type":"uint256"},{"indexed":false,"name":"supplyAfter","type":"uint256"}],"name":"LogBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"saleValue","type":"uint256"},{"indexed":false,"name":"supplyAfter","type":"uint256"}],"name":"LogSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"completed","type":"bool"}],"name":"LogCrowdsaleEnd","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"AIgathaToken","address":"0x1543d0F83489e82A1344DF6827B23d541F235A50","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"threshold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleActive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"extended","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transferable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"at","type":"uint256"}],"name":"getRateAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"buyer","type":"address"},{"name":"amount","type":"uint256"}],"name":"push","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"endDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"extendSaleTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_wallet","type":"address"},{"name":"_saleCap","type":"uint256"},{"name":"_totalSupply","type":"uint256"},{"name":"_threshold","type":"uint256"},{"name":"_start","type":"uint256"},{"name":"_end","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"PreICOTokenPushed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"user_id","type":"bytes32"}],"name":"UserIDChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"APIS Crowdsale","address":"0x749e66e12c09E4105381e373c0E6CA0bCe573d36","comment":"","abi":[{"constant":true,"inputs":[],"name":"fundingGoalCurrent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isClaimable","outputs":[{"name":"message","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_closed","type":"bool"}],"name":"closeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"whiteListOf","outputs":[{"name":"message","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"price","type":"uint256"}],"name":"setPriceOfApis","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"fundersProperty","outputs":[{"name":"reservedFunds","type":"uint256"},{"name":"paidFunds","type":"uint256"},{"name":"reservedApis","type":"uint256"},{"name":"withdrawedApis","type":"uint256"},{"name":"purchaseTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_target","type":"address"}],"name":"claimApis","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOpened","outputs":[{"name":"isOpend","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"fundingGoal","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"buyToken","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_funder","type":"address"}],"name":"refundByOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"priceOfApisPerFund","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_currentFundingGoalAPIS","type":"uint256"}],"name":"setCurrentFundingGoal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimMyApis","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleStatus","outputs":[{"name":"totalReservedFunds","type":"uint256"},{"name":"totalPaidFunds","type":"uint256"},{"name":"totalReceivedFunds","type":"uint256"},{"name":"totalReservedApis","type":"uint256"},{"name":"totalWithdrawedApis","type":"uint256"},{"name":"totalSoldApis","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"remainRefundable","type":"bool"}],"name":"withdrawalFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_fundingGoalApis","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_addressOfApisTokenUsedAsReward","type":"address"},{"name":"_addressOfWhiteList","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"beneficiary","type":"address"},{"indexed":false,"name":"amountOfFunds","type":"uint256"},{"indexed":false,"name":"amountOfApis","type":"uint256"}],"name":"ReservedApis","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"WithdrawalFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"funder","type":"address"},{"indexed":false,"name":"amountOfFunds","type":"uint256"},{"indexed":false,"name":"amountOfApis","type":"uint256"}],"name":"WithdrawalApis","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_backer","type":"address"},{"indexed":false,"name":"_amountFunds","type":"uint256"},{"indexed":false,"name":"_amountApis","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"APIS Token","address":"0x4c0fbe1bb46612915e7967d2c3213cd4d87257ad","comment":"","abi":[{"constant":false,"inputs":[{"name":"_targetWallet","type":"address"},{"name":"_timeLockUpEnd","type":"uint256"}],"name":"walletLockBoth","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_targetWallet","type":"address"}],"name":"walletLockBothForever","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"manoContracts","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_apisWei","type":"uint256"}],"name":"transferAndLockForever","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_targetWallet","type":"address"},{"name":"_timeLockEnd","type":"uint256"},{"name":"_sendLock","type":"bool"},{"name":"_receiveLock","type":"bool"}],"name":"walletLock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isWalletLocked_Receive","outputs":[{"name":"isReceiveLocked","type":"bool"},{"name":"until","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"manoAddr","type":"address"},{"name":"registered","type":"bool"}],"name":"registerManoContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_apisWei","type":"uint256"},{"name":"_timeLockUpEnd","type":"uint256"}],"name":"transferAndLockUntil","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_apisWei","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_targetWallet","type":"address"}],"name":"walletUnlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"lockedWalletInfo","outputs":[{"name":"timeLockUpEnd","type":"uint256"},{"name":"sendLock","type":"bool"},{"name":"receiveLock","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isMyWalletLocked_Receive","outputs":[{"name":"isReceiveLocked","type":"bool"},{"name":"until","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isWalletLocked_Send","outputs":[{"name":"isSendLocked","type":"bool"},{"name":"until","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isMyWalletLocked_Send","outputs":[{"name":"isSendLocked","type":"bool"},{"name":"until","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"},{"indexed":false,"name":"timeLockUpEnd","type":"uint256"},{"indexed":false,"name":"sendLock","type":"bool"},{"indexed":false,"name":"receiveLock","type":"bool"}],"name":"Locked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"}],"name":"Unlocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"RejectedPaymentToLockedUpWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"RejectedPaymentFromLockedUpWallet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"manoContract","type":"address"},{"indexed":false,"name":"registered","type":"bool"}],"name":"ManoContractRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Athenian: Warrior for Battle","address":"0x17052d51E954592C1046320c2371AbaB6C73Ef10","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"tokenSupply","type":"uint256"}],"name":"SetupToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"adr","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Augur / REP","address":"0x48c80F1f4D53D5951e5D5438B54Cba84f29F32a5","comment":"","abi":[{"name":"allowance","type":"function","constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"approve","type":"function","constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"balanceOf","type":"function","constant":true,"inputs":[{"name":"address","type":"address"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"decimals","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"getSeeded","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"name","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"setSaleDistribution","type":"function","constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"balances","type":"uint256[]"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"symbol","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"totalSupply","type":"function","constant":true,"inputs":[],"outputs":[{"name":"out","type":"uint256"}]},{"name":"transfer","type":"function","constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"fxpValue","type":"uint256"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"transferFrom","type":"function","constant":false,"inputs":[{"name":"from","type":"address"},{"name":"receiver","type":"address"},{"name":"fxpValue","type":"uint256"}],"outputs":[{"name":"out","type":"uint256"}]},{"name":"Approval(address,address,uint256)","type":"event","inputs":[{"name":"owner","type":"address","indexed":true},{"name":"spender","type":"address","indexed":true},{"name":"fxpValue","type":"uint256","indexed":false}]},{"name":"Transfer(address,address,uint256)","type":"event","inputs":[{"name":"from","type":"address","indexed":true},{"name":"to","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}]}]},{"name":"AX1 Mining Crowdsale","address":"0x5de9f32b2665bb2cdc23bfb51b03e2a2985ecc87","comment":"","abi":[{"constant":false,"inputs":[{"name":"_signerAddress","type":"address"}],"name":"setSignerAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contractAddr","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokensSent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"_stage1","type":"uint256"},{"name":"_stage2","type":"uint256"},{"name":"_stage3","type":"uint256"},{"name":"_stage4","type":"uint256"}],"name":"refundParticipant","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"collectRefund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStageCap","outputs":[{"name":"cap","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_bounty","type":"uint256"},{"name":"_founders","type":"uint256"}],"name":"releaseTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"setPreallocations","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stages","outputs":[{"name":"stageCount","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_blacklisted","type":"address"}],"name":"removeFromBlacklist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"signerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unsuccessfulWithdrawal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"refundable","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"burntFounder","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"dataframe","type":"bytes"}],"name":"getKYCPayload","outputs":[{"name":"whitelistedAddress","type":"address"},{"name":"customerId","type":"uint128"},{"name":"minEth","type":"uint32"},{"name":"maxEth","type":"uint32"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStageTokensSold","outputs":[{"name":"sold","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newStart","type":"uint256"}],"name":"extendStart","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint128"}],"name":"balancePerID","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStageDeadline","outputs":[{"name":"deadline","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"softCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_stage","type":"uint8"},{"name":"_price","type":"uint256"}],"name":"changePrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"burntBounty","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"setTokenAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"canWithdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"halted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStageMinimum","outputs":[{"name":"min","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"successfulWithdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"refunded","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"withdrawn","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stopICO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"dataframe","type":"bytes"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"buyWithKYCData","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"presaleBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"tokenBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"setStages","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"hasEnded","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"presaleWeiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blacklist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_stage","type":"uint8"}],"name":"getStagePrice","outputs":[{"name":"price","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hardCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getStage","outputs":[{"name":"stage","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_rate","type":"uint256"},{"name":"_wallet","type":"address"},{"name":"_beneficiary","type":"address"},{"name":"_buyer","type":"address"},{"name":"_founders","type":"address"},{"name":"_bounty","type":"address"},{"name":"_softCap","type":"uint256"},{"name":"_hardCap","type":"uint256"},{"name":"_token","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"signer","type":"address"}],"name":"SignerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"TokensReclaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"AddedToBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"RemovedFromBlacklist","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"RefundCollected","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"},{"indexed":false,"name":"bounty","type":"uint256"},{"indexed":false,"name":"founders","type":"uint256"}],"name":"TokensReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"participant","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"ParticipantWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"admin","type":"address"},{"indexed":false,"name":"stage","type":"uint8"},{"indexed":false,"name":"price","type":"uint256"}],"name":"StagePriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldStart","type":"uint256"},{"indexed":false,"name":"newStart","type":"uint256"}],"name":"ExtendedStart","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"admin","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"BeneficiaryWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"datetime","type":"uint256"}],"name":"SaleStopped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"Battle Of Thermopylae: Battle","address":"0x553B4546D26F383d4f4a056B7f50DaDFf07FB252","comment":"","abi":[{"constant":true,"inputs":[],"name":"getGreeksBattlePoints","outputs":[{"name":"greeksBattlePoints","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_ATHENIANS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_warriors","type":"uint256"}],"name":"assignAtheniansToBattle","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"immortals","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BTL_IMMORTAL","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getImmortalsOnTheBattlefield","outputs":[{"name":"immortalsOnTheBattlefield","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BTL_PERSIAN","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newVersion","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_faction","type":"address"}],"name":"getTotalSlaves","outputs":[{"name":"slaves","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_warriors","type":"uint256"}],"name":"assignImmortalsToBattle","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"athenians","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BATTLE_POINT_DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTemporaryWinningFaction","outputs":[{"name":"temporaryWinningFaction","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"battles","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getPersiansOnTheBattlefield","outputs":[{"name":"persiansOnTheBattlefield","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isInTime","outputs":[{"name":"inTime","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_battleTokenAddress","type":"address"},{"name":"_battleTokenOwner","type":"address"}],"name":"setBattleTokenAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BTL_SPARTAN","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"WAD","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isInProgress","outputs":[{"name":"inProgress","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"redeemWarriors","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BTL_ATHENIAN","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isTimeExpired","outputs":[{"name":"timeExpired","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BP_ATHENIAN","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"avarageBlockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"persians","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getAtheniansOnTheBattlefield","outputs":[{"name":"atheniansOnTheBattlefield","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"warriorsOnTheBattlefield","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getGreeksBattlePointsBy","outputs":[{"name":"playerBattlePoints","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"},{"name":"_loosingMainTroops","type":"address"}],"name":"computeSlaves","outputs":[{"name":"slaves","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isEnded","outputs":[{"name":"ended","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"warriorsByPlayer","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"spartans","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getPersiansBattlePoints","outputs":[{"name":"persiansBattlePoints","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getPersiansBattlePointsBy","outputs":[{"name":"playerBattlePoints","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_player","type":"address"}],"name":"getSpartansOnTheBattlefield","outputs":[{"name":"spartansOnTheBattlefield","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BATTLE_CASUALTIES","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_PERSIANS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newVersion","type":"string"},{"name":"_newAddress","type":"address"}],"name":"setDeprecated","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAX_SPARTANS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getWinningFaction","outputs":[{"name":"winningFaction","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BP_PERSIAN","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_IMMORTALS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"battlesOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BP_IMMORTAL","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"BP_SPARTAN","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_warriors","type":"uint256"}],"name":"assignSpartansToBattle","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isDraw","outputs":[{"name":"draw","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_warriors","type":"uint256"}],"name":"assignPersiansToBattle","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"VERSION","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_life","type":"uint256"},{"name":"_avarageBlockTime","type":"uint8"},{"name":"_persians","type":"address"},{"name":"_immortals","type":"address"},{"name":"_spartans","type":"address"},{"name":"_athenians","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_faction","type":"address"},{"indexed":false,"name":"_battlePointsIncrementForecast","type":"uint256"}],"name":"WarriorsAssignedToBattlefield","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_faction","type":"address"},{"indexed":false,"name":"_survivedWarriors","type":"uint256"}],"name":"WarriorsBackToHome","type":"event"}]},{"name":"BattleDrome ICO / Crowdsale","address":"0xeaAf270436a0ed397ED23BBF64DF7b1DCAfF142F","comment":"","abi":[{"constant":true,"inputs":[],"name":"creator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"duration","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"devRatio","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingMax","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_contributor","type":"address"}],"name":"checkTokBalance","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_contributor","type":"address"}],"name":"checkSavedEthBalance","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"checkTokDev","outputs":[{"name":"total","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ratio","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"savedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingGoal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"checkTokSold","outputs":[{"name":"total","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"checkTokTotal","outputs":[{"name":"total","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_contributor","type":"address"}],"name":"checkEthBalance","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenBalance","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creatorPaid","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minimumPurchase","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isComplete","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"Token","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"contribute","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"payMe","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"payCreator","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"escrow","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"percentOfGoal","outputs":[{"name":"goalPercent","type":"uint16"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isSuccessful","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_contributor","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":true,"name":"_timestamp","type":"uint256"}],"name":"Contribution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_receiver","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":true,"name":"_timestamp","type":"uint256"}],"name":"PayTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_receiver","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":true,"name":"_timestamp","type":"uint256"}],"name":"PayEther","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_value","type":"uint256"},{"indexed":true,"name":"_timestamp","type":"uint256"}],"name":"BurnTokens","type":"event"}]},{"name":"BBK Brickblock Token","address":"0x4a6058666cf1057eaC3CD3A5a614620547559fc9","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"contributorsShare","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_contributor","type":"address"},{"name":"_value","type":"uint256"}],"name":"distributeTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dead","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonusDistributionAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"toggleDead","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalizeTokenSale","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonusTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bonusShare","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"companyTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"changeFountainContractAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenSaleActive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fountainContractAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_value","type":"uint256"}],"name":"distributeBonusTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"companyShare","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_bonusDistributionAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"totalSupply","type":"uint256"},{"indexed":false,"name":"distributedTokens","type":"uint256"},{"indexed":false,"name":"bonusTokens","type":"uint256"},{"indexed":false,"name":"companyTokens","type":"uint256"}],"name":"TokenSaleFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"BCV - BitCapitalVendorToken","address":"0x1014613e2b3cbc4d575054d4982e580d9b99d7b1","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"isApprovedInvestor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"getDeposit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"BitMartToken","address":"0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"unfreeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"freezeOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"freeze","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"decimalUnits","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"BlockCAT - CAT Token and Token Sale Contract","address":"0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"HIDDEN_CAP","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"DEV_PORTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"RESERVE_PORTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawFunds","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"triggerRefund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalETHRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"endSale","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"changeDeveloperCATDestinationAddress","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"reserveCATDestination","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"devETHDestination","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CAT_PER_ETH_FIRST_EARLY_BIRD_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"devCATDestination","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleHasEnded","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ADDITIONAL_PORTION","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CAT_PER_ETH_SECOND_EARLY_BIRD_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minCapReached","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleFirstEarlyBirdEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"saleSecondEarlyBirdEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CAT_PER_ETH_BASE_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"changeReserveCATDestinationAddress","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"changeDeveloperETHDestinationAddress","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"triggerMinCap","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"executor","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"SECURITY_ETHER_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"ETHContributed","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"allowRefund","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"inputs":[{"name":"_devETHDestination","type":"address"},{"name":"_devCATDestination","type":"address"},{"name":"_reserveCATDestination","type":"address"},{"name":"_saleStartBlock","type":"uint256"},{"name":"_saleEndBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_creator","type":"address"},{"indexed":false,"name":"_amountOfCAT","type":"uint256"}],"name":"CreatedCAT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_refunder","type":"address"},{"indexed":false,"name":"_amountOfWei","type":"uint256"}],"name":"CATRefundedForWei","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Consensys Multisig","address":"0x1010101010101010101010101010101010101010","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"owners","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"removeOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"revokeConfirmation","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"confirmations","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"addOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"isConfirmed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmationCount","outputs":[{"name":"count","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"transactions","outputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"},{"name":"executed","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getOwners","outputs":[{"name":"","type":"address[]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"from","type":"uint256"},{"name":"to","type":"uint256"},{"name":"pending","type":"bool"},{"name":"executed","type":"bool"}],"name":"getTransactionIds","outputs":[{"name":"_transactionIds","type":"uint256[]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"getConfirmations","outputs":[{"name":"_confirmations","type":"address[]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transactionCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_required","type":"uint256"}],"name":"changeRequirement","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"confirmTransaction","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"destination","type":"address"},{"name":"value","type":"uint256"},{"name":"data","type":"bytes"}],"name":"submitTransaction","outputs":[{"name":"transactionId","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"MAX_OWNER_COUNT","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"required","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"newOwner","type":"address"}],"name":"replaceOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"transactionId","type":"uint256"}],"name":"executeTransaction","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_sender","type":"address"},{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_sender","type":"address"},{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"Revocation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"Submission","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"Execution","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_transactionId","type":"uint256"}],"name":"ExecutionFailure","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_sender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"}],"name":"OwnerAddition","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"}],"name":"OwnerRemoval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_required","type":"uint256"}],"name":"RequirementChange","type":"event"}]},{"name":"COPYTRACK Token Sale","address":"0xF04436B2eDaa1B777045E1EEFc6DBA8bD2aEbAB8","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"earlyBirds","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeWhitelistOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTION_MAX","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contributors","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"tranches","outputs":[{"name":"untilToken","type":"uint256"},{"name":"tokensPerEther","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PUBLIC_START_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"weiAmount","type":"uint256"}],"name":"addEarlyBird","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"END_TIME","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalWeiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCurrentTokensPerEther","outputs":[{"name":"tokensPerEther","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EXA","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addWhitelistOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"COMPANY_ALLOCATION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"whitelistOperators","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeFromWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"earlyBirdInvestments","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"burnUnsoldTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenContract","type":"address"}],"name":"connectToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"whitelist","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"fundingWalletAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"weiAmount","type":"uint256"}],"name":"calculateTokenAmount","outputs":[{"name":"tokens","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSold","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTION_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentTime","outputs":[{"name":"_currentTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTokensLeft","outputs":[{"name":"tokensLeft","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addToWhitelist","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_fundingWalletAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_account","type":"address"}],"name":"LogWhitelistUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_account","type":"address"},{"indexed":false,"name":"_cost","type":"uint256"},{"indexed":false,"name":"_tokens","type":"uint256"},{"indexed":false,"name":"_totalTokenSold","type":"uint256"}],"name":"LogTokensPurchased","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_amount","type":"uint256"}],"name":"UnsoldTokensBurnt","type":"event"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"CryptoKitties","address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","comment":"","abi":[{"constant":true,"inputs":[{"name":"_interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cfoAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_preferredTransport","type":"string"}],"name":"tokenMetadata","outputs":[{"name":"infoUrl","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"promoCreatedCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ceoAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"GEN0_STARTING_PRICE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setSiringAuctionAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pregnantKitties","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_kittyId","type":"uint256"}],"name":"isPregnant","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"GEN0_AUCTION_DURATION","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"siringAuction","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setGeneScienceAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCEO","type":"address"}],"name":"setCEO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCOO","type":"address"}],"name":"setCOO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_kittyId","type":"uint256"},{"name":"_startingPrice","type":"uint256"},{"name":"_endingPrice","type":"uint256"},{"name":"_duration","type":"uint256"}],"name":"createSaleAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"sireAllowedToAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_matronId","type":"uint256"},{"name":"_sireId","type":"uint256"}],"name":"canBreedWith","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"kittyIndexToApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_kittyId","type":"uint256"},{"name":"_startingPrice","type":"uint256"},{"name":"_endingPrice","type":"uint256"},{"name":"_duration","type":"uint256"}],"name":"createSiringAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"val","type":"uint256"}],"name":"setAutoBirthFee","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"},{"name":"_sireId","type":"uint256"}],"name":"approveSiring","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newCFO","type":"address"}],"name":"setCFO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_genes","type":"uint256"},{"name":"_owner","type":"address"}],"name":"createPromoKitty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"secs","type":"uint256"}],"name":"setSecondsPerBlock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"owner","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"GEN0_CREATION_LIMIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newContractAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setSaleAuctionAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"count","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_v2Address","type":"address"}],"name":"setNewAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"secondsPerBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"name":"ownerTokens","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_matronId","type":"uint256"}],"name":"giveBirth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawAuctionBalances","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"cooldowns","outputs":[{"name":"","type":"uint32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"kittyIndexToOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cooAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"autoBirthFee","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"erc721Metadata","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_genes","type":"uint256"}],"name":"createGen0Auction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_kittyId","type":"uint256"}],"name":"isReadyToBreed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PROMO_CREATION_LIMIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_contractAddress","type":"address"}],"name":"setMetadataAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleAuction","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"uint256"}],"name":"getKitty","outputs":[{"name":"isGestating","type":"bool"},{"name":"isReady","type":"bool"},{"name":"cooldownIndex","type":"uint256"},{"name":"nextActionAt","type":"uint256"},{"name":"siringWithId","type":"uint256"},{"name":"birthTime","type":"uint256"},{"name":"matronId","type":"uint256"},{"name":"sireId","type":"uint256"},{"name":"generation","type":"uint256"},{"name":"genes","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_sireId","type":"uint256"},{"name":"_matronId","type":"uint256"}],"name":"bidOnSiringAuction","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"gen0CreatedCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"geneScience","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_matronId","type":"uint256"},{"name":"_sireId","type":"uint256"}],"name":"breedWithAuto","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"matronId","type":"uint256"},{"indexed":false,"name":"sireId","type":"uint256"},{"indexed":false,"name":"cooldownEndBlock","type":"uint256"}],"name":"Pregnant","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"approved","type":"address"},{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"kittyId","type":"uint256"},{"indexed":false,"name":"matronId","type":"uint256"},{"indexed":false,"name":"sireId","type":"uint256"},{"indexed":false,"name":"genes","type":"uint256"}],"name":"Birth","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newContract","type":"address"}],"name":"ContractUpgrade","type":"event"}]},{"name":"CryptoKitties Sales Auction","address":"0xb1690c08e213a35ed9bab7b318de14420fb57d8c","comment":"","abi":[{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_startingPrice","type":"uint256"},{"name":"_endingPrice","type":"uint256"},{"name":"_duration","type":"uint256"},{"name":"_seller","type":"address"}],"name":"createAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"lastGen0SalePrices","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getAuction","outputs":[{"name":"seller","type":"address"},{"name":"startingPrice","type":"uint256"},{"name":"endingPrice","type":"uint256"},{"name":"duration","type":"uint256"},{"name":"startedAt","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ownerCut","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isSaleClockAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"cancelAuctionWhenPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"gen0SaleCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"cancelAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getCurrentPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nonFungibleContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"averageGen0SalePrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_nftAddr","type":"address"},{"name":"_cut","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"startingPrice","type":"uint256"},{"indexed":false,"name":"endingPrice","type":"uint256"},{"indexed":false,"name":"duration","type":"uint256"}],"name":"AuctionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"totalPrice","type":"uint256"},{"indexed":false,"name":"winner","type":"address"}],"name":"AuctionSuccessful","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"AuctionCancelled","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]},{"name":"CryptoKitties Siring Auction","address":"0xc7af99fe5513eb6710e6d5f44f9989da40f27f26","comment":"","abi":[{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_startingPrice","type":"uint256"},{"name":"_endingPrice","type":"uint256"},{"name":"_duration","type":"uint256"},{"name":"_seller","type":"address"}],"name":"createAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdrawBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isSiringClockAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getAuction","outputs":[{"name":"seller","type":"address"},{"name":"startingPrice","type":"uint256"},{"name":"endingPrice","type":"uint256"},{"name":"duration","type":"uint256"},{"name":"startedAt","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ownerCut","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"cancelAuctionWhenPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"cancelAuction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getCurrentPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nonFungibleContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_nftAddr","type":"address"},{"name":"_cut","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"startingPrice","type":"uint256"},{"indexed":false,"name":"endingPrice","type":"uint256"},{"indexed":false,"name":"duration","type":"uint256"}],"name":"AuctionCreated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"totalPrice","type":"uint256"},{"indexed":false,"name":"winner","type":"address"}],"name":"AuctionSuccessful","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"}],"name":"AuctionCancelled","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"}]},{"name":"CryptoPunks","address":"0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"punksOfferedForSale","outputs":[{"name":"isForSale","type":"bool"},{"name":"punkIndex","type":"uint256"},{"name":"seller","type":"address"},{"name":"minValue","type":"uint256"},{"name":"onlySellTo","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"enterBidForPunk","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"},{"name":"minPrice","type":"uint256"}],"name":"acceptBidForPunk","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"indices","type":"uint256[]"}],"name":"setInitialOwners","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"imageHash","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"nextPunkIndexToAssign","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"punkIndexToAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"punkBids","outputs":[{"name":"hasBid","type":"bool"},{"name":"punkIndex","type":"uint256"},{"name":"bidder","type":"address"},{"name":"value","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"allInitialOwnersAssigned","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"allPunksAssigned","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"buyPunk","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"punkIndex","type":"uint256"}],"name":"transferPunk","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"withdrawBidForPunk","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"punkIndex","type":"uint256"}],"name":"setInitialOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"},{"name":"minSalePriceInWei","type":"uint256"},{"name":"toAddress","type":"address"}],"name":"offerPunkForSaleToAddress","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"punksRemainingToAssign","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"},{"name":"minSalePriceInWei","type":"uint256"}],"name":"offerPunkForSale","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"getPunk","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"pendingWithdrawals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"punkIndex","type":"uint256"}],"name":"punkNoLongerForSale","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":true,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"punkIndex","type":"uint256"}],"name":"Assign","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"punkIndex","type":"uint256"}],"name":"PunkTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"},{"indexed":false,"name":"minValue","type":"uint256"},{"indexed":true,"name":"toAddress","type":"address"}],"name":"PunkOffered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"fromAddress","type":"address"}],"name":"PunkBidEntered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"fromAddress","type":"address"}],"name":"PunkBidWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"fromAddress","type":"address"},{"indexed":true,"name":"toAddress","type":"address"}],"name":"PunkBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"punkIndex","type":"uint256"}],"name":"PunkNoLongerForSale","type":"event"}]},{"name":"DAO Original","address":"0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"proposals","outputs":[{"name":"recipient","type":"address"},{"name":"amount","type":"uint256"},{"name":"description","type":"string"},{"name":"votingDeadline","type":"uint256"},{"name":"open","type":"bool"},{"name":"proposalPassed","type":"bool"},{"name":"proposalHash","type":"bytes32"},{"name":"proposalDeposit","type":"uint256"},{"name":"newCurator","type":"bool"},{"name":"yea","type":"uint256"},{"name":"nay","type":"uint256"},{"name":"creator","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"minTokensToCreate","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"rewardAccount","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"daoCreator","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"divisor","outputs":[{"name":"divisor","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"extraBalance","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_transactionData","type":"bytes"}],"name":"executeProposal","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"unblockMe","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalRewardToken","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"actualBalance","outputs":[{"name":"_actualBalance","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"closingTime","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"allowedRecipients","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferWithoutReward","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_description","type":"string"},{"name":"_transactionData","type":"bytes"},{"name":"_debatingPeriod","type":"uint256"},{"name":"_newCurator","type":"bool"}],"name":"newProposal","outputs":[{"name":"_proposalID","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"DAOpaidOut","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"minQuorumDivisor","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newContract","type":"address"}],"name":"newContract","outputs":[],"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address"},{"name":"_allowed","type":"bool"}],"name":"changeAllowedRecipients","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"halveMinQuorum","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"paidOut","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_newCurator","type":"address"}],"name":"splitDAO","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"DAOrewardAccount","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"proposalDeposit","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"numberOfProposals","outputs":[{"name":"_numberOfProposals","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"lastTimeMinQuorumMet","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_toMembers","type":"bool"}],"name":"retrieveDAOReward","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"receiveEther","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"isFueled","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_tokenHolder","type":"address"}],"name":"createTokenProxy","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_proposalID","type":"uint256"}],"name":"getNewDAOAddress","outputs":[{"name":"_newDAO","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_supportsProposal","type":"bool"}],"name":"vote","outputs":[{"name":"_voteID","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"getMyReward","outputs":[{"name":"_success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"rewardToken","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFromWithoutReward","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proposalDeposit","type":"uint256"}],"name":"changeProposalDeposit","outputs":[],"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"blocked","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"curator","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_recipient","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_transactionData","type":"bytes"}],"name":"checkProposalCode","outputs":[{"name":"_codeChecksOut","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"privateCreation","outputs":[{"name":"","type":"address"}],"type":"function"},{"inputs":[{"name":"_curator","type":"address"},{"name":"_daoCreator","type":"address"},{"name":"_proposalDeposit","type":"uint256"},{"name":"_minTokensToCreate","type":"uint256"},{"name":"_closingTime","type":"uint256"},{"name":"_privateCreation","type":"address"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"value","type":"uint256"}],"name":"FuelingToDate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"CreatedToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"proposalID","type":"uint256"},{"indexed":false,"name":"recipient","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"newCurator","type":"bool"},{"indexed":false,"name":"description","type":"string"}],"name":"ProposalAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"proposalID","type":"uint256"},{"indexed":false,"name":"position","type":"bool"},{"indexed":true,"name":"voter","type":"address"}],"name":"Voted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"proposalID","type":"uint256"},{"indexed":false,"name":"result","type":"bool"},{"indexed":false,"name":"quorum","type":"uint256"}],"name":"ProposalTallied","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_newCurator","type":"address"}],"name":"NewCurator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_recipient","type":"address"},{"indexed":false,"name":"_allowed","type":"bool"}],"name":"AllowedRecipientChanged","type":"event"}]},{"name":"DaTa eXchange Token","address":"0x765f0c16d1ddc279295c1a7c24b0883f62d33f75","comment":"The token for the DataBrokerDAO IoT marketplace","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_tokenFactory","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"DataBrokerDAO Token Sale","address":"0x439b54caf661c21e6b231d972d7eaa98f199590f","comment":"","abi":[{"constant":false,"inputs":[{"name":"_startPresaleTime","type":"uint256"},{"name":"_endPresaleTime","type":"uint256"},{"name":"_startDayOneTime","type":"uint256"},{"name":"_endDayOneTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"}],"name":"updateDates","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_EARLYSALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endPresaleTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalVested","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"claimLockedTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"vaultAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"onTransfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pauseContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_PRESALE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalizeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuedEarlySale","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"makeTransferable","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_ethAmounts","type":"uint256[]"}],"name":"handleEarlySaleBuyers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_free","type":"uint256[]"},{"name":"_locked","type":"uint256[]"},{"name":"_cliffs","type":"uint256[]"}],"name":"handleExternalBuyers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"transferable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"finalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"resumeContribution","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"startPresaleTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeTokenController","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"onApprove","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_PER_ETHER_DAY_ONE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_TOKENS","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"proxyPayment","outputs":[{"name":"success","type":"bool"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssued","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endDayOneTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startDayOneTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_startPresaleTime","type":"uint256"},{"name":"_endPresaleTime","type":"uint256"},{"name":"_startDayOneTime","type":"uint256"},{"name":"_endDayOneTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_vaultAddress","type":"address"},{"name":"_tokenAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"}]},{"name":"DCC","address":"0xffa93aacf49297d51e211817452839052fdfb961","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_bidValue","type":"uint256"}],"name":"getBuyPrice","outputs":[{"name":"tokenCount","type":"uint256"},{"name":"purchaseValue","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"withdrawnBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawFunds","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"withdrawAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tradeSpreadInvert","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleEndDeclarationTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner2","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockFractionInvert","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"haltCrowdsale","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner1","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"confirmCrowdsaleEnd","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_maxPrice","type":"uint256"}],"name":"buyLimit","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"unlockedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenPriceMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unlockFunds","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_askSizeTokens","type":"uint256"}],"name":"getSellPrice","outputs":[{"name":"saleValue","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"declareCrowdsaleEnd","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenCreationMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingUnlockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isHalted","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenCount","type":"uint256"},{"name":"_minPrice","type":"uint256"}],"name":"sellLimit","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minFundingReached","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdsaleEndLockTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenCount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_owner1","type":"address"},{"name":"_owner2","type":"address"},{"name":"_withdrawAddress","type":"address"},{"name":"_crowdsaleStartBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"purchaseValue","type":"uint256"},{"indexed":false,"name":"supplyAfter","type":"uint256"}],"name":"LogBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"who","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"saleValue","type":"uint256"},{"indexed":false,"name":"supplyAfter","type":"uint256"}],"name":"LogSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"completed","type":"bool"}],"name":"LogCrowdsaleEnd","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"DetherToken","address":"0x5adc961d6ac3f7062d2ea45fefb8d8167d44b190","comment":"","abi":[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_value","type":"uint256"},{"indexed":false,"name":"_data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"DGD Crowdsale / Claim","address":"0xF0160428a8552AC9bB7E050D90eEADE4DDD52843","comment":"","abi":[{"constant":false,"inputs":[{"name":"_eth","type":"uint256"}],"name":"setEthToCents","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"startDate","outputs":[{"name":"date","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"claimFounders","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_user","type":"address"}],"name":"userInfo","outputs":[{"name":"centstotal","type":"uint256"},{"name":"weitotal","type":"uint256"},{"name":"share","type":"uint256"},{"name":"badges","type":"uint256"},{"name":"claimed","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"getPeriod","outputs":[{"name":"saleperiod","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"periodTwo","outputs":[{"name":"date","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"}],"name":"proxyPurchase","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"BILLION","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"claim","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"ethToCents","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"_wei","type":"uint256"}],"name":"weiToCents","outputs":[{"name":"centsvalue","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalWei","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"WEI_PER_ETH","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"goalReached","outputs":[{"name":"reached","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_proxy","type":"address"}],"name":"getPayout","outputs":[{"name":"payout","type":"address"},{"name":"isproxy","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"myInfo","outputs":[{"name":"centstotal","type":"uint256"},{"name":"weitotal","type":"uint256"},{"name":"share","type":"uint256"},{"name":"badges","type":"uint256"},{"name":"claimed","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_payout","type":"address"}],"name":"regProxy","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"getSaleStatus","outputs":[{"name":"fclaim","type":"bool"},{"name":"reltokens","type":"uint256"},{"name":"relbadges","type":"uint256"},{"name":"claimers","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"sendFunds","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"isEnded","outputs":[{"name":"ended","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"unlock","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_contrib","type":"uint256"},{"name":"_total","type":"uint256"}],"name":"calcShare","outputs":[{"name":"share","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_payout","type":"address"}],"name":"getProxy","outputs":[{"name":"proxy","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"periodThree","outputs":[{"name":"date","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalCents","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"endDate","outputs":[{"name":"date","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"getSaleConfig","outputs":[{"name":"start","type":"uint256"},{"name":"two","type":"uint256"},{"name":"three","type":"uint256"},{"name":"end","type":"uint256"},{"name":"goal","type":"uint256"},{"name":"cap","type":"uint256"},{"name":"badgecost","type":"uint256"},{"name":"famount","type":"uint256"},{"name":"fwallet","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"getSaleInfo","outputs":[{"name":"weiamount","type":"uint256"},{"name":"cents","type":"uint256"},{"name":"realcents","type":"uint256"},{"name":"amount","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_user","type":"address"}],"name":"claimFor","outputs":[{"name":"success","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"CENTS","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"_a","type":"uint256"},{"name":"_c","type":"uint256"}],"name":"ppb","outputs":[{"name":"b","type":"uint256"}],"type":"function"},{"inputs":[{"name":"_config","type":"address"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_exchange","type":"uint256"},{"indexed":true,"name":"_rate","type":"uint256"},{"indexed":true,"name":"_cents","type":"uint256"}],"name":"Purchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_user","type":"address"},{"indexed":true,"name":"_amount","type":"uint256"},{"indexed":true,"name":"_badges","type":"uint256"}],"name":"Claim","type":"event"}]},{"name":"DGX 1.0","address":"0x55b9a11c2e8351b4ffc7b11561148bfac9977855","comment":"","abi":[{"constant":false,"inputs":[],"name":"vendorRegistry","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"getFeeDays","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"},{"name":"_val","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"userExists","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_ownr","type":"address"}],"name":"setOwner","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"actualBalanceOf","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_acct","type":"address"}],"name":"isAdmin","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"custodianRegistry","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_cust","type":"address"}],"name":"isCustodian","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"calculateDemurrage","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"getConfigAddress","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"redemptionFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"goldTokenLedger","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_adtr","type":"address"}],"name":"isAuditor","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"txFeeWallet","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"accountingWallet","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"auditRelease","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_gold","type":"address"},{"name":"_user","type":"address"},{"name":"_tokens","type":"uint256"},{"name":"_fees","type":"uint256"}],"name":"ledgerMint","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"storageRate","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"recastContract","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"billingPeriod","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"config","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"goldRegistry","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"requiredConfirmations","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"getOwner","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"deductFees","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"minterContract","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[{"name":"_balance","type":"uint256"},{"name":"_feedays","type":"uint256"}],"name":"demurrageCalc","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[],"name":"recastFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"auditorRegistry","outputs":[{"name":"","type":"address"}],"type":"function"},{"constant":false,"inputs":[],"name":"txFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"getBase","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"txFeeMax","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_gold","type":"address"},{"name":"_user","type":"address"},{"name":"_tokens","type":"uint256"},{"name":"_recastfee","type":"uint256"}],"name":"recastCall","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_greg","type":"address"}],"name":"isGoldRegistry","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_vndr","type":"address"}],"name":"isVendor","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[{"name":"_value","type":"uint256"},{"name":"_user","type":"address"}],"name":"calculateTxFee","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_gold","type":"address"}],"name":"payStorageFee","outputs":[],"type":"function"},{"inputs":[{"name":"_conf","type":"address"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"user","type":"address"}],"name":"NewAccount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"DIVX Token","address":"0x13f11C9905A08ca76e3e853bE63D4f0944326C72","comment":"","abi":[{"constant":false,"inputs":[],"name":"resume","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawWei","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"privateExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"thirdExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"firstXRChangeBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"receivedWeiMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"firstExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundDeposit","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"secondExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"thirdXRChangeBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isRedeeming","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"stopRedeeming","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"secondXRChangeBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"startRedeeming","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalReceivedWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"diviAddress","type":"bytes32"}],"name":"redeem","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"receivedWeiCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_fundDeposit","type":"address"},{"name":"_fundingStartBlock","type":"uint256"},{"name":"_firstXRChangeBlock","type":"uint256"},{"name":"_secondXRChangeBlock","type":"uint256"},{"name":"_thirdXRChangeBlock","type":"uint256"},{"name":"_fundingEndBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_tokenValue","type":"uint256"}],"name":"LogCreate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_tokenValue","type":"uint256"}],"name":"LogRefund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_diviAddress","type":"bytes32"}],"name":"LogRedeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"DoBETacceptBET(DCA)","address":"0x386Faa4703a34a7Fdb19Bec2e14Fd427C9638416","comment":"","abi":[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"difficulty","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"amount","type":"uint256"}],"name":"freeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"unFreeze","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedSell","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentChallenge","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"emission","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"nonce","type":"uint256"}],"name":"proofOfWork","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"amountRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timeOfLastProof","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawRaised","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[{"name":"amount","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"amount","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"bool"}],"name":"lockSell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[{"name":"revenue","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Freeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"UnFreeze","type":"event"}]},{"name":"EagleCoin [EAGLE] Contract Address","address":"0x994f0dffdbae0bbf09b652d6f11a493fd33f42b9","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"coinAge","outputs":[{"name":"myCoinAge","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"timestamp","type":"uint256"}],"name":"ownerSetStakeStartTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxTotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getBlockNumber","outputs":[{"name":"blockNumber","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"chainStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"ownerBurnToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalInitialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"annualInterest","outputs":[{"name":"interest","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeMinAge","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"chainStartBlockNumber","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeMaxAge","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxMintProofOfStake","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"},{"indexed":false,"name":"_reward","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"ENS: Eth Registrar (Auction)","address":"0x6090A6e47849629b7245Dfa1Ca21D94cd15878Ef","comment":"","abi":[{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"releaseDeed","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"getAllowedTime","outputs":[{"name":"timestamp","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"unhashedName","type":"string"}],"name":"invalidateName","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"hash","type":"bytes32"},{"name":"owner","type":"address"},{"name":"value","type":"uint256"},{"name":"salt","type":"bytes32"}],"name":"shaBid","outputs":[{"name":"sealedBid","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"bidder","type":"address"},{"name":"seal","type":"bytes32"}],"name":"cancelBid","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"entries","outputs":[{"name":"","type":"uint8"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ens","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_salt","type":"bytes32"}],"name":"unsealBid","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"transferRegistrars","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"sealedBids","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"state","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"},{"name":"newOwner","type":"address"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_hash","type":"bytes32"},{"name":"_timestamp","type":"uint256"}],"name":"isAllowed","outputs":[{"name":"allowed","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"finalizeAuction","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"registryStarted","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"launchLength","outputs":[{"name":"","type":"uint32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"sealedBid","type":"bytes32"}],"name":"newBid","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"labels","type":"bytes32[]"}],"name":"eraseNode","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hashes","type":"bytes32[]"}],"name":"startAuctions","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"hash","type":"bytes32"},{"name":"deed","type":"address"},{"name":"registrationDate","type":"uint256"}],"name":"acceptRegistrarTransfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hash","type":"bytes32"}],"name":"startAuction","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"rootNode","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"hashes","type":"bytes32[]"},{"name":"sealedBid","type":"bytes32"}],"name":"startAuctionsAndBid","outputs":[],"payable":true,"type":"function"},{"inputs":[{"name":"_ens","type":"address"},{"name":"_rootNode","type":"bytes32"},{"name":"_startDate","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":false,"name":"registrationDate","type":"uint256"}],"name":"AuctionStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"deposit","type":"uint256"}],"name":"NewBid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"status","type":"uint8"}],"name":"BidRevealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"registrationDate","type":"uint256"}],"name":"HashRegistered","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"}],"name":"HashReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"hash","type":"bytes32"},{"indexed":true,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"registrationDate","type":"uint256"}],"name":"HashInvalidated","type":"event"}]},{"name":"ENS: Public Resolver","address":"0x5FfC014343cd971B7eb70732021E26C35B744cc4","comment":"","abi":[{"constant":true,"inputs":[{"name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"key","type":"string"},{"name":"value","type":"string"}],"name":"setText","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"},{"name":"contentTypes","type":"uint256"}],"name":"ABI","outputs":[{"name":"contentType","type":"uint256"},{"name":"data","type":"bytes"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"x","type":"bytes32"},{"name":"y","type":"bytes32"}],"name":"setPubkey","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"content","outputs":[{"name":"ret","type":"bytes32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"addr","outputs":[{"name":"ret","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"},{"name":"key","type":"string"}],"name":"text","outputs":[{"name":"ret","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"contentType","type":"uint256"},{"name":"data","type":"bytes"}],"name":"setABI","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"name","outputs":[{"name":"ret","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"name","type":"string"}],"name":"setName","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"hash","type":"bytes32"}],"name":"setContent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"pubkey","outputs":[{"name":"x","type":"bytes32"},{"name":"y","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"addr","type":"address"}],"name":"setAddr","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"ensAddr","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"a","type":"address"}],"name":"AddrChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"hash","type":"bytes32"}],"name":"ContentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"name","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":true,"name":"contentType","type":"uint256"}],"name":"ABIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"x","type":"bytes32"},{"indexed":false,"name":"y","type":"bytes32"}],"name":"PubkeyChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":true,"name":"indexedKey","type":"string"},{"indexed":false,"name":"key","type":"string"}],"name":"TextChanged","type":"event"}]},{"name":"ENS: Registry","address":"0x314159265dD8dbb310642f98f50C066173C1259b","comment":"","abi":[{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"resolver","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"label","type":"bytes32"},{"name":"owner","type":"address"}],"name":"setSubnodeOwner","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"ttl","type":"uint64"}],"name":"setTTL","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"node","type":"bytes32"}],"name":"ttl","outputs":[{"name":"","type":"uint64"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"resolver","type":"address"}],"name":"setResolver","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"node","type":"bytes32"},{"name":"owner","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"owner","type":"address"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":true,"name":"label","type":"bytes32"},{"indexed":false,"name":"owner","type":"address"}],"name":"NewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"resolver","type":"address"}],"name":"NewResolver","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"node","type":"bytes32"},{"indexed":false,"name":"ttl","type":"uint64"}],"name":"NewTTL","type":"event"}]},{"name":"ENS: Reverse Registrar","address":"0x9062C0A6Dbd6108336BcBe4593a3D1cE05512069","comment":"","abi":[{"constant":false,"inputs":[{"name":"owner","type":"address"},{"name":"resolver","type":"address"}],"name":"claimWithResolver","outputs":[{"name":"node","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner","type":"address"}],"name":"claim","outputs":[{"name":"node","type":"bytes32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ens","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"defaultResolver","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"node","outputs":[{"name":"ret","type":"bytes32"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"name","type":"string"}],"name":"setName","outputs":[{"name":"node","type":"bytes32"}],"payable":false,"type":"function"},{"inputs":[{"name":"ensAddr","type":"address"},{"name":"resolverAddr","type":"address"}],"payable":false,"type":"constructor"}]},{"name":"EOS: Contribution","address":"0xd0a6E6C54DbC68Db5db3A091B171A77407Ff7ccf","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"claimed","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"owner_","type":"address"}],"name":"setOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"time","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint128"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"foundersAllocation","outputs":[{"name":"","type":"uint128"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"day","type":"uint256"}],"name":"claim","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"foundersKey","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"address"}],"name":"userBuys","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"day","type":"uint256"}],"name":"createOnDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"freeze","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"keys","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"authority_","type":"address"}],"name":"setAuthority","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"dailyTotals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"openTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"EOS","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"today","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"authority","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"eos","type":"address"}],"name":"initialize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"createFirstDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimAll","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"timestamp","type":"uint256"}],"name":"dayFor","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"day","type":"uint256"},{"name":"limit","type":"uint256"}],"name":"buyWithLimit","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"collect","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"numberOfDays","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"key","type":"string"}],"name":"register","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"createPerDay","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_numberOfDays","type":"uint256"},{"name":"_totalSupply","type":"uint128"},{"name":"_openTime","type":"uint256"},{"name":"_startTime","type":"uint256"},{"name":"_foundersAllocation","type":"uint128"},{"name":"_foundersKey","type":"string"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"window","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogBuy","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"window","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogClaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"key","type":"string"}],"name":"LogRegister","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"}],"name":"LogCollect","type":"event"},{"anonymous":false,"inputs":[],"name":"LogFreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"authority","type":"address"}],"name":"LogSetAuthority","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"}],"name":"LogSetOwner","type":"event"}]},{"name":"eProxy (ePRX)","address":"0x147b51d82a6038607895e11C4191431335b257E3","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"swapProxyTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"issuingTokenOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_spender","type":"address"},{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"TransferFrom","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_Owner","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":false,"name":"_amountOffered","type":"uint256"},{"indexed":false,"name":"_amountReceived","type":"uint256"}],"name":"SwappedTokens","type":"event"}]},{"name":"EtherDelta (02/09/2017)","address":"0x8d12A197cB00D4747a1fe03395095ce2A5CC6819","abi":[{"constant":false,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"user","type":"address"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"},{"name":"amount","type":"uint256"}],"name":"trade","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"}],"name":"order","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"orderFills","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"cancelOrder","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"depositToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"user","type":"address"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"amountFilled","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"tokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"feeMake_","type":"uint256"}],"name":"changeFeeMake","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"feeMake","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"feeRebate_","type":"uint256"}],"name":"changeFeeRebate","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"feeAccount","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"user","type":"address"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"},{"name":"amount","type":"uint256"},{"name":"sender","type":"address"}],"name":"testTrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"feeAccount_","type":"address"}],"name":"changeFeeAccount","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"feeRebate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"feeTake_","type":"uint256"}],"name":"changeFeeTake","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"admin_","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"}],"name":"withdrawToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"bytes32"}],"name":"orders","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"feeTake","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"deposit","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"accountLevelsAddr_","type":"address"}],"name":"changeAccountLevelsAddr","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"accountLevelsAddr","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"},{"name":"user","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"tokenGet","type":"address"},{"name":"amountGet","type":"uint256"},{"name":"tokenGive","type":"address"},{"name":"amountGive","type":"uint256"},{"name":"expires","type":"uint256"},{"name":"nonce","type":"uint256"},{"name":"user","type":"address"},{"name":"v","type":"uint8"},{"name":"r","type":"bytes32"},{"name":"s","type":"bytes32"}],"name":"availableVolume","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"admin_","type":"address"},{"name":"feeAccount_","type":"address"},{"name":"accountLevelsAddr_","type":"address"},{"name":"feeMake_","type":"uint256"},{"name":"feeTake_","type":"uint256"},{"name":"feeRebate_","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenGet","type":"address"},{"indexed":false,"name":"amountGet","type":"uint256"},{"indexed":false,"name":"tokenGive","type":"address"},{"indexed":false,"name":"amountGive","type":"uint256"},{"indexed":false,"name":"expires","type":"uint256"},{"indexed":false,"name":"nonce","type":"uint256"},{"indexed":false,"name":"user","type":"address"}],"name":"Order","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenGet","type":"address"},{"indexed":false,"name":"amountGet","type":"uint256"},{"indexed":false,"name":"tokenGive","type":"address"},{"indexed":false,"name":"amountGive","type":"uint256"},{"indexed":false,"name":"expires","type":"uint256"},{"indexed":false,"name":"nonce","type":"uint256"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"v","type":"uint8"},{"indexed":false,"name":"r","type":"bytes32"},{"indexed":false,"name":"s","type":"bytes32"}],"name":"Cancel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenGet","type":"address"},{"indexed":false,"name":"amountGet","type":"uint256"},{"indexed":false,"name":"tokenGive","type":"address"},{"indexed":false,"name":"amountGive","type":"uint256"},{"indexed":false,"name":"get","type":"address"},{"indexed":false,"name":"give","type":"address"}],"name":"Trade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"user","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"Withdraw","type":"event"}]},{"name":"Ethereum Lottery","address":"0xc0ADF1CCc703A0a3393892600883A1A91a4E38de","comment":"","abi":[{"constant":true,"inputs":[],"name":"lastInitTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"poissonData","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"int256"}],"name":"lotteries","outputs":[{"name":"jackpot","type":"uint256"},{"name":"decidingBlock","type":"int256"},{"name":"numTickets","type":"uint256"},{"name":"numTicketsSold","type":"uint256"},{"name":"ticketPrice","type":"uint256"},{"name":"cutoffTimestamp","type":"uint256"},{"name":"winningTicket","type":"int256"},{"name":"winner","type":"address"},{"name":"finalizationBlock","type":"uint256"},{"name":"finalizer","type":"address"},{"name":"message","type":"string"},{"name":"nearestKnownBlock","type":"int256"},{"name":"nearestKnownBlockHash","type":"int256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"recentActivity","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"destruct","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"int256"},{"name":"_offset","type":"uint256"},{"name":"_n","type":"uint256"},{"name":"_addr","type":"address"}],"name":"getTicketDetails","outputs":[{"name":"details","type":"uint8[]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_message","type":"string"}],"name":"getMessageLength","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_admin","type":"address"}],"name":"setAdmin","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"int256"}],"name":"getLotteryDetailsB","outputs":[{"name":"_actualId","type":"int256"},{"name":"_winningTicket","type":"int256"},{"name":"_winner","type":"address"},{"name":"_finalizationBlock","type":"uint256"},{"name":"_finalizer","type":"address"},{"name":"_message","type":"string"},{"name":"_prevLottery","type":"int256"},{"name":"_nextLottery","type":"int256"},{"name":"_blockHeight","type":"int256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getRecentActivity","outputs":[{"name":"_id","type":"int256"},{"name":"_idx","type":"uint256"},{"name":"_recentActivity","type":"uint256[1000]"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"recentActivityIdx","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"id","outputs":[{"name":"","type":"int256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_jackpot","type":"uint256"},{"name":"_numTickets","type":"uint256"},{"name":"_ticketPrice","type":"uint256"},{"name":"_durationInBlocks","type":"int256"}],"name":"initLottery","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"int256"},{"name":"_message","type":"string"}],"name":"setMessage","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"proposeOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"needsInitialization","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"needsFinalization","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tickets","type":"uint256[]"}],"name":"buyTickets","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"proposedOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"btcRelay","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"int256"}],"name":"getLotteryDetailsA","outputs":[{"name":"_actualId","type":"int256"},{"name":"_jackpot","type":"uint256"},{"name":"_decidingBlock","type":"int256"},{"name":"_numTickets","type":"uint256"},{"name":"_numTicketsSold","type":"uint256"},{"name":"_lastSaleTimestamp","type":"uint256"},{"name":"_ticketPrice","type":"uint256"},{"name":"_cutoffTimestamp","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"escrow","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_id","type":"int256"},{"name":"_ticket","type":"uint256"}],"name":"getTicketOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_steps","type":"uint256"}],"name":"finalizeLottery","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"lastSaleTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[{"name":"_btcRelay","type":"address"},{"name":"_poissonData","type":"address"},{"name":"_escrow","type":"address"}],"payable":false,"type":"constructor"}]},{"name":"Etherisc Flight Delay","address":"0xc0f29798c57e890cac82a79dadbebfb3d3fa67b9","comment":"","abi":[{"constant":false,"inputs":[{"name":"_carrierFlightNumber","type":"bytes32"},{"name":"_departureYearMonthDay","type":"bytes32"},{"name":"_departureTime","type":"uint256"},{"name":"_arrivalTime","type":"uint256"},{"name":"_currency","type":"uint8"},{"name":"_customerExternalId","type":"bytes32"}],"name":"newPolicy","outputs":[],"payable":true,"type":"function"}]},{"name":"Ethernet.Cash ENC Token","address":"0x039f5050de4908f9b5ddf40a4f3aa3f329086387","comment":"","abi":[{"constant":true,"inputs":[],"name":"creator","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"EthernetCashAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"EthernetCashWebsite","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"backer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"isContribution","type":"bool"}],"name":"FundTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"}]},{"name":"Etheroll Rewards","address":"0xa4463f9Ff0d87531232c8c4819B536c332DA6EAc","comment":"","abi":[{"constant":true,"inputs":[{"name":"_tokenHolder","type":"address"}],"name":"getTokensHeldByAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"ownerUpdateCurrentEpoch","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"payoutsPaused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newTreasury","type":"address"}],"name":"ownerSetTreasury","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalRewardsForEpoch","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newPayoutStatus","type":"bool"}],"name":"ownerPausePayouts","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"ownerChangeOwner","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"treasury","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"currentEpoch","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_sendTo","type":"address"},{"name":"_amount","type":"uint256"}],"name":"ownerTransferEther","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"theTokenAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_tokenHolder","type":"address"}],"name":"getExpectedPayout","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_tokenHolder","type":"address"}],"name":"getAddressLastPaidOutEpoch","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"getMyReward","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"ownerkill","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newTotalRewardsForEpochInWei","type":"uint256"}],"name":"ownerUpdateTotalRewardsForEpoch","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"tokenAddress","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"SentToAddress","type":"address"},{"indexed":true,"name":"AmountTransferred","type":"uint256"}],"name":"LogOwnerTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"SentToAddress","type":"address"},{"indexed":true,"name":"AmountTransferred","type":"uint256"},{"indexed":true,"name":"NumberOfTokens","type":"uint256"},{"indexed":false,"name":"TotalRewardsForEpoch","type":"uint256"},{"indexed":false,"name":"Epoch","type":"uint256"}],"name":"LogPaidOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"NewCurrentEpoch","type":"uint256"}],"name":"LogEpochUpdated","type":"event"}]},{"name":"Ethorse Rewards","address":"0x24B29A71BA841d6e90344461Fde546cDc7851212","comment":"","abi":[{"constant":false,"inputs":[],"name":"claim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"extractFund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"status","type":"bool"}],"name":"payoutControlSwitch","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"setupPayout","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":true,"inputs":[],"name":"getRewardEstimate","outputs":[{"name":"rewardEstimate","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getTokenBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"hasClaimed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"payoutPoolAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"Global Academy Place (GAP)","address":"0xC86414354c06dC8bA428A08BCc589C72c2805959","comment":"","abi":[{"constant":false,"inputs":[{"name":"_deposits","type":"uint256"},{"name":"actualSellPriceInWei","type":"uint256"},{"name":"_actualPriceInCents","type":"uint256"}],"name":"deposit","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"maximumBuyBackPriceInCents","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"secondLevelPrice","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"Killer","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"deadline","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"depositsTillNow","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"checkActualPrice","outputs":[{"name":"_sellPrice","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_thirdLevelEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"amountRaisedEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maximumBuyBackAmountInWEI","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"actualPriceInCents","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maximumBuyBack","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"thirdLevelPrice","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingGoal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_secondLevelEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_NewPrice","type":"uint256"}],"name":"manualBuyPrice","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contrubutedAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_firstLevelEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maximumBuyBackAmountInCents","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amountInWei","type":"uint256"},{"name":"_to","type":"address"}],"name":"ownerWithdrawal","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"KilledTillNow","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CapLevelPrice","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"actualSellPriceInWei","type":"uint256"},{"name":"_mustToSellCourses","type":"uint256"},{"name":"maxBuyBackPriceCents","type":"uint256"}],"name":"BuyBackStart","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buyTokens","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[{"name":"revenue","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"firstLevelPrice","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"mustToSellCourses","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"_capLevelEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"safeWithdrawal","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"KilledTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"backer","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"isContribution","type":"bool"}],"name":"FundTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_beneficiary","type":"address"},{"indexed":false,"name":"amountRaised","type":"uint256"}],"name":"GoalReached","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Global Invest Crypto Fund (GCF)","address":"0xb8c07c219202aFd165b7ECfD5800B7e941338193","comment":"","abi":[{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferEther","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"buyTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"Register","outputs":[{"name":"_userWallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_period","type":"uint256"}],"name":"claimEthers","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"marketCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isReg","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"myUserWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"kill","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimTax","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"Reederem","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_period","type":"uint256"}],"name":"claimTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"taxTillNow","outputs":[{"name":"_ethTax","type":"uint256"},{"name":"_tokenTax","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_price","type":"uint256"},{"name":"_marketCap","type":"uint256"},{"name":"_ethForReederem","type":"uint256"}],"name":"closePeriod","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"gcf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"numAccounts","outputs":[{"name":"_numAccounts","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"contractVersion","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getActualPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"getPrices","outputs":[{"name":"_Price","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"sellTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"buy","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"periods","outputs":[{"name":"ethAtThePeriod","type":"uint256"},{"name":"tokensAtThePeriod","type":"uint256"},{"name":"price","type":"uint256"},{"name":"ethForReederem","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentPeriodPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"accounts","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_ethTx","type":"uint256"},{"indexed":false,"name":"_tokenTx","type":"uint256"}],"name":"TaxTillNow","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_person","type":"address"},{"indexed":true,"name":"_userWallet","type":"address"}],"name":"RegisterEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"_marketCap","type":"uint256"},{"indexed":false,"name":"_ethForReederem","type":"uint256"}],"name":"ClosePeriodEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"DepositEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"_amountEthers","type":"uint256"},{"indexed":false,"name":"_ethAtThePeriod","type":"uint256"}],"name":"BuyEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"_amountTokens","type":"uint256"},{"indexed":false,"name":"_tokensAtThePeriod","type":"uint256"}],"name":"ReederemEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_taxPayment","type":"uint256"}],"name":"Tax","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"_tokensValue","type":"uint256"},{"indexed":false,"name":"_tokensPrice","type":"uint256"},{"indexed":false,"name":"_ethersAmount","type":"uint256"}],"name":"ClaimTokensEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"period","type":"uint256"},{"indexed":false,"name":"_ethValue","type":"uint256"},{"indexed":false,"name":"_tokensPrice","type":"uint256"},{"indexed":false,"name":"_tokensAmount","type":"uint256"}],"name":"ClaimEthersEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_eth","type":"uint256"},{"indexed":false,"name":"_tokens","type":"uint256"}],"name":"claimTaxex","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"Global Messaging Token (GMT)","address":"0xb3Bd49E28f8F832b8d1E246106991e546c323502","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ethFundAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"secondCapEndingBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isStopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenExchangeRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"startBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseTokenCapPerAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"blocksInSecondCapPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"restartSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"targets","type":"address[]"},{"name":"isRegistered","type":"bool"}],"name":"changeRegistrationStatuses","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"purchases","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"changeOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"assignedSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"registered","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"blocksInFirstCapPeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gmtFundAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"gmtFund","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"baseEthCapPerAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"firstCapEndingBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stopSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenUnit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"isRegistered","type":"bool"}],"name":"changeRegistrationStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"gasLimitInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_ethFundAddress","type":"address"},{"name":"_gmtFundAddress","type":"address"},{"name":"_startBlock","type":"uint256"},{"name":"_endBlock","type":"uint256"},{"name":"_tokenExchangeRate","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"RefundSent","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"ClaimGMT","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Havven (HAV)","address":"0xD989a04AD891528B571eF73dAcaEFeB0402a65b3","comment":"","abi":[{"constant":false,"inputs":[{"name":"duration","type":"uint256"}],"name":"setFeePeriodDuration","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_issuanceRatio","type":"uint256"}],"name":"setIssuanceRatio","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuanceData","outputs":[{"name":"currentBalanceSum","type":"uint256"},{"name":"lastAverageBalance","type":"uint256"},{"name":"lastModified","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"unlockedCollateral","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"initiationTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issueNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"setSelfDestructBeneficiary","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"priceStalePeriod","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feePeriodDuration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"hasWithdrawnFees","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"issuanceDraft","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"time","type":"uint256"}],"name":"setPriceStalePeriod","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burnNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"terminateSelfDestruct","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawFees","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"},{"name":"value","type":"bool"}],"name":"setIssuer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastPriceUpdateTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nominatedOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_nomin","type":"address"}],"name":"setNomin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"recomputeLastAverageBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"nominsIssued","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"issuanceLastAverageBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"feePeriodStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_oracle","type":"address"}],"name":"setOracle","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"oracle","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"issuer","type":"address"}],"name":"maxIssuableNomins","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newPrice","type":"uint256"},{"name":"timeSent","type":"uint256"}],"name":"updatePrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"isIssuer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"issuanceData","outputs":[{"name":"currentBalanceSum","type":"uint256"},{"name":"lastAverageBalance","type":"uint256"},{"name":"lastModified","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"lockedCollateral","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"rolloverFeePeriodIfElapsed","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuanceLastModified","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_proxy","type":"address"}],"name":"setProxy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"selfDestruct","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"UNIT","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenState","type":"address"}],"name":"setTokenState","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"usd_dec","type":"uint256"}],"name":"USDtoHAV","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"SELFDESTRUCT_DELAY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"collateral","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"issuanceRatio","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"selfDestructInitiated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"sender","type":"address"}],"name":"setMessageSender","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"initiateSelfDestruct","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lastFeesCollected","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_escrow","type":"address"}],"name":"setEscrow","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuanceLastAverageBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"issuanceCurrentBalanceSum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"selfDestructBeneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"issuer","type":"address"}],"name":"remainingIssuableNomins","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastFeePeriodStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalIssuanceCurrentBalanceSum","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"issueMaxNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"hav_dec","type":"uint256"}],"name":"HAVtoUSD","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"transferableHavvens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"escrow","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nomin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenState","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proxy","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"issuanceLastModified","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"priceIsStale","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_proxy","type":"address"},{"name":"_tokenState","type":"address"},{"name":"_owner","type":"address"},{"name":"_oracle","type":"address"},{"name":"_price","type":"uint256"},{"name":"_issuers","type":"address[]"},{"name":"_oldHavven","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newPrice","type":"uint256"},{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"PriceUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newRatio","type":"uint256"}],"name":"IssuanceRatioUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"FeePeriodRollover","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"duration","type":"uint256"}],"name":"FeePeriodDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"FeesWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOracle","type":"address"}],"name":"OracleUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newNomin","type":"address"}],"name":"NominUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newEscrow","type":"address"}],"name":"EscrowUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":true,"name":"value","type":"bool"}],"name":"IssuersUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newTokenState","type":"address"}],"name":"TokenStateUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"proxyAddress","type":"address"}],"name":"ProxyUpdated","type":"event"},{"anonymous":false,"inputs":[],"name":"SelfDestructTerminated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"beneficiary","type":"address"}],"name":"SelfDestructed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"selfDestructDelay","type":"uint256"}],"name":"SelfDestructInitiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newBeneficiary","type":"address"}],"name":"SelfDestructBeneficiaryUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"}]},{"name":"Havven Mintr","address":"0xC011A72400E58ecD99Ee497CF89E3775d4bd732F","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"nominsIssued","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"issuer","type":"address"}],"name":"remainingIssuableNomins","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"issuer","type":"address"}],"name":"maxIssuableNomins","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"issueNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"issueMaxNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"burnNomins","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawFees","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"FeesWithdrawn","type":"event"},{"constant":true,"inputs":[],"name":"lastFeesCollected","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"IIC - Ibiscoin ERC20 Token Contract","address":"0x16662F73dF3e79e54c6c5938b4313f92C524C120","comment":"","abi":[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]},{"name":"Immortal - Warrior for Battle Contract","address":"0x22E5F62D0FA19974749faa194e3d3eF6d89c08d7","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"redeemEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokenAssigned","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_contributor","type":"address"},{"indexed":false,"name":"_immortals","type":"uint256"}],"name":"Assigned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"ImmortalPlayerCharacters (IPCs)","address":"0x011C77fa577c500dEeDaD364b8af9e8540b808C0","comment":"","abi":[{"constant":false,"inputs":[{"name":"_newGod","type":"address"}],"name":"renounceGodhood","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool","value":false}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"nameModificationLevelRequirement","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"randomizeDna","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string","value":"ImmortalPlayerCharacter"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address","value":"0x"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"priceToChangeName","outputs":[{"name":"","type":"uint256","value":"100"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"updateIpcContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newPrice","type":"uint256"}],"name":"setMaxIpcPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newPrice","type":"uint256"}],"name":"changePriceToModifyDna","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"ipcPriceInCents","outputs":[{"name":"","type":"uint256","value":"25"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_adminToRemove","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256","value":"520"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getAllPositions","outputs":[{"name":"","type":"address[]","value":[]}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"Ipcs","outputs":[{"name":"name","type":"string","value":"Eve"},{"name":"attributeSeed","type":"bytes32","value":"0xf2cfccdde23c372c60a76a2795f77ca9cbd241e6dab46d90a0caad74dc9af739"},{"name":"dna","type":"bytes32","value":"0x4a2899f96d0202f1d682a81d4b868499e963b4052cf44d0eed7ded9ee1782190"},{"name":"experience","type":"uint128","value":"0"},{"name":"timeOfBirth","type":"uint128","value":"1521154199"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newMultiplier","type":"uint256"}],"name":"changeCustomizationMultiplier","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_newUrl","type":"string"}],"name":"updateIpcUrl","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcIdArray","type":"uint256[]"},{"name":"_xpIdArray","type":"uint256[]"}],"name":"grantBulkXp","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_beneficiaryAddress","type":"address"},{"name":"_beneficiaryPrice","type":"uint256"}],"name":"setSpecialPriceForAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getAdmins","outputs":[{"name":"","type":"address[]","value":[]}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"ipcToMarketInfo","outputs":[{"name":"sellPrice","type":"uint32","value":"0"},{"name":"beneficiaryPrice","type":"uint32","value":"0"},{"name":"beneficiaryAddress","type":"address","value":"0x0000000000000000000000000000000000000000"},{"name":"approvalAddress","type":"address","value":"0x0000000000000000000000000000000000000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"name":"ipcIdToExperience","outputs":[{"name":"","type":"bool","value":false}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_newPrice","type":"uint256"}],"name":"setIpcPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_newPrice","type":"uint256"}],"name":"buyIpc","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"}],"name":"createRandomizedIpc","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"_owner","type":"address"}],"name":"createAndAssignRandomizedIpc","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_developer","type":"address"}],"name":"experiencesOfDeveloper","outputs":[{"name":"","type":"uint256[]","value":[]}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256","value":"1"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"mostCurrentIpcAddress","outputs":[{"name":"","type":"address","value":"0x011c77fa577c500deedad364b8af9e8540b808c0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxIpcPrice","outputs":[{"name":"","type":"uint256","value":"100000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"owner","type":"address","value":"0x0000000000000000000000000000000000000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDevelopers","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseNewTranche","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_dna","type":"bytes32"}],"name":"customizeDna","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"bool"}],"name":"setAutoTrancheRelease","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newAdmin","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"customizationPriceMultiplier","outputs":[{"name":"","type":"uint256","value":"4"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"getIpcPriceInWei","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalIpcs","outputs":[{"name":"","type":"uint128","value":"520"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"getIpc","outputs":[{"name":"name","type":"string"},{"name":"attributeSeed","type":"bytes32"},{"name":"dna","type":"bytes32"},{"name":"experience","type":"uint128"},{"name":"timeOfBirth","type":"uint128"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newAmount","type":"uint256"}],"name":"changeXpPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_xpId","type":"uint256"}],"name":"removeExperience","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"name":"","type":"uint256[]","value":[]}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newReq","type":"uint256"}],"name":"changeNameModificationLevelRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getXpPrice","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_name","type":"string"}],"name":"setDeveloperName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newAddress","type":"address"}],"name":"updateMarketPriceContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newInterfaceId","type":"bytes4"}],"name":"addSupportedInterface","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"rollAttributes","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string","value":"IPC"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"developer","type":"address"},{"name":"value","type":"bool"}],"name":"changeDeveloperStatus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_authorization","type":"bool"}],"name":"changeAdminAuthorization","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"dnaModificationLevelRequirement","outputs":[{"name":"","type":"uint256","value":"1000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"},{"name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"ipcToOwner","outputs":[{"name":"","type":"address","value":"0x0000000000000000000000000000000000000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"priceToModifyDna","outputs":[{"name":"","type":"uint256","value":"100"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"_owner","type":"address"}],"name":"createAndAssignIpcSeed","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_ipcId","type":"uint256"}],"name":"getIpcName","outputs":[{"name":"result","type":"bytes32","value":"0x"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newCashier","type":"address"}],"name":"setCashier","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newPriceIncrease","type":"uint256"}],"name":"changePriceIncreasePerTranche","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_description","type":"string"}],"name":"registerNewExperience","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newSize","type":"uint256"}],"name":"changeTrancheSize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_interfaceId","type":"bytes4"}],"name":"removeSupportedInterface","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"}],"name":"createIpcSeed","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getXpBalance","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"experiences","outputs":[{"name":"developer","type":"address"},{"name":"description","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"buyXp","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"ownerIpcCount","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_byteToModify","type":"uint256"},{"name":"_modifyAmount","type":"int256"}],"name":"modifyDna","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_newReq","type":"uint256"}],"name":"changeDnaModificationLevelRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_newName","type":"string"}],"name":"changeIpcName","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool","value":false}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newExec","type":"address"}],"name":"setExec","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_ipcId","type":"uint256"},{"name":"_xpId","type":"uint256"}],"name":"grantXpToIpc","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenId","type":"uint256"},{"indexed":true,"name":"developer","type":"address"},{"indexed":true,"name":"xpId","type":"uint256"}],"name":"ExperienceEarned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenId","type":"uint256"},{"indexed":false,"name":"_to","type":"string"}],"name":"NameChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenId","type":"uint256"},{"indexed":false,"name":"_seller","type":"address"},{"indexed":true,"name":"_buyer","type":"address"},{"indexed":false,"name":"price","type":"uint256"}],"name":"Bought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_tokenId","type":"uint256"},{"indexed":false,"name":"from","type":"uint256"},{"indexed":false,"name":"to","type":"uint256"}],"name":"PriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":true,"name":"owner","type":"address"},{"indexed":false,"name":"name","type":"string"}],"name":"Created","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"dna","type":"bytes32"},{"indexed":false,"name":"attributes","type":"bytes32"}],"name":"Substantiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenId","type":"uint256"},{"indexed":false,"name":"to","type":"bytes32"}],"name":"DnaModified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_approved","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_operator","type":"address"},{"indexed":false,"name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"}]},{"name":"Ink Protocol","address":"0xBC86727E770de68B1060C91f6BB6945c73e10388","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"settleTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"confirmTransactionAfterExpiry","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"disputeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"},{"name":"_rating","type":"uint8"},{"name":"_comment","type":"bytes32"}],"name":"provideTransactionFeedback","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"refundTransactionByMediator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"escalateDisputeToMediator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"revokeTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"link","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"},{"name":"_buyerAmount","type":"uint256"},{"name":"_sellerAmount","type":"uint256"}],"name":"settleTransactionByMediator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"acceptTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"refundTransactionAfterExpiry","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"confirmTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_seller","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_metadata","type":"bytes32"},{"name":"_policy","type":"address"},{"name":"_mediator","type":"address"},{"name":"_owner","type":"address"}],"name":"createTransaction","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"refundTransaction","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_id","type":"uint256"}],"name":"confirmTransactionByMediator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_seller","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_metadata","type":"bytes32"},{"name":"_policy","type":"address"},{"name":"_mediator","type":"address"}],"name":"createTransaction","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"owner","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"policy","type":"address"},{"indexed":false,"name":"mediator","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"metadata","type":"bytes32"}],"name":"TransactionInitiated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionAccepted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionDisputed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionEscalated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionRefundedByMediator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"buyerAmount","type":"uint256"},{"indexed":false,"name":"sellerAmount","type":"uint256"},{"indexed":false,"name":"buyerMediatorFee","type":"uint256"},{"indexed":false,"name":"sellerMediatorFee","type":"uint256"}],"name":"TransactionSettledByMediator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionConfirmedByMediator","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionConfirmed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionRefunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionConfirmedAfterExpiry","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionConfirmedAfterDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionRefundedAfterDispute","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"mediatorFee","type":"uint256"}],"name":"TransactionRefundedAfterExpiry","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionConfirmedAfterEscalation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"}],"name":"TransactionRefundedAfterEscalation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"id","type":"uint256"},{"indexed":false,"name":"buyerAmount","type":"uint256"},{"indexed":false,"name":"sellerAmount","type":"uint256"}],"name":"TransactionSettled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"transactionId","type":"uint256"},{"indexed":false,"name":"rating","type":"uint8"},{"indexed":false,"name":"comment","type":"bytes32"}],"name":"FeedbackUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"}],"name":"AccountLinked","type":"event"}]},{"name":"Kyber Network","address":"0x818E6FECD516Ecc3849DAf6845e3EC868087B755","comment":"","abi":[{"constant":false,"inputs":[{"name":"alerter","type":"address"}],"name":"removeAlerter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"enabled","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOperators","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"dest","type":"address"},{"name":"destAddress","type":"address"},{"name":"maxDestAmount","type":"uint256"},{"name":"minConversionRate","type":"uint256"},{"name":"walletId","type":"address"},{"name":"hint","type":"bytes"}],"name":"tradeWithHint","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"minConversionRate","type":"uint256"}],"name":"swapTokenToEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"amount","type":"uint256"},{"name":"sendTo","type":"address"}],"name":"withdrawToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxGasPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAlerter","type":"address"}],"name":"addAlerter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"kyberNetworkContract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"user","type":"address"}],"name":"getUserCapInWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"dest","type":"address"},{"name":"minConversionRate","type":"uint256"}],"name":"swapTokenToToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"token","type":"address"},{"name":"minConversionRate","type":"uint256"}],"name":"swapEtherToToken","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferAdminQuickly","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getAlerters","outputs":[{"name":"","type":"address[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"src","type":"address"},{"name":"dest","type":"address"},{"name":"srcQty","type":"uint256"}],"name":"getExpectedRate","outputs":[{"name":"expectedRate","type":"uint256"},{"name":"slippageRate","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"user","type":"address"},{"name":"token","type":"address"}],"name":"getUserCapInTokenWei","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOperator","type":"address"}],"name":"addOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_kyberNetworkContract","type":"address"}],"name":"setKyberNetworkContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"operator","type":"address"}],"name":"removeOperator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"field","type":"bytes32"}],"name":"info","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"src","type":"address"},{"name":"srcAmount","type":"uint256"},{"name":"dest","type":"address"},{"name":"destAddress","type":"address"},{"name":"maxDestAmount","type":"uint256"},{"name":"minConversionRate","type":"uint256"},{"name":"walletId","type":"address"}],"name":"trade","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"},{"name":"sendTo","type":"address"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"token","type":"address"},{"name":"user","type":"address"}],"name":"getBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_admin","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"trader","type":"address"},{"indexed":false,"name":"src","type":"address"},{"indexed":false,"name":"dest","type":"address"},{"indexed":false,"name":"actualSrcAmount","type":"uint256"},{"indexed":false,"name":"actualDestAmount","type":"uint256"}],"name":"ExecuteTrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newNetworkContract","type":"address"},{"indexed":false,"name":"oldNetworkContract","type":"address"}],"name":"KyberNetworkSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"token","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"sendTo","type":"address"}],"name":"TokenWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"sendTo","type":"address"}],"name":"EtherWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"pendingAdmin","type":"address"}],"name":"TransferAdminPending","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAdmin","type":"address"},{"indexed":false,"name":"previousAdmin","type":"address"}],"name":"AdminClaimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newAlerter","type":"address"},{"indexed":false,"name":"isAdd","type":"bool"}],"name":"AlerterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOperator","type":"address"},{"indexed":false,"name":"isAdd","type":"bool"}],"name":"OperatorAdded","type":"event"}]},{"name":"LALA","address":"0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9","comment":"","abi":[{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"canUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint8"},{"name":"_mintable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"LATOKEN","address":"0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"minter","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_for","type":"address"},{"name":"tokenCount","type":"uint256"}],"name":"burnTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"}],"name":"changeMinter","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_for","type":"address"},{"name":"tokenCount","type":"uint256"}],"name":"issueTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"exchanger","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"founder","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"}],"name":"changeFounder","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"}],"name":"changeExchanger","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Issuance","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"}]},{"name":"LookRev Crowdsale","address":"0x21ae23b882a340a22282162086bc98d3e2b73018","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_TOTAL","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerKEther","type":"uint256"}],"name":"setTokensPerKEther","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"_required","type":"bool"}],"name":"kycVerify","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"finalised","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"KYC_THRESHOLD","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTIONS_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"START_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"initialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"balance","type":"uint256"}],"name":"addPrecommitment","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_SOFT_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"END_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"DECIMALSFACTOR","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTIONS_MAX","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalise","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokensPerKEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"kycRequired","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"}],"name":"proxyPayment","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"VERSION","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newWallet","type":"address"}],"name":"WalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokensPerKEther","type":"uint256"}],"name":"TokensPerKEtherUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"ethers","type":"uint256"},{"indexed":false,"name":"participantTokenBalance","type":"uint256"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"newTotalSupply","type":"uint256"},{"indexed":false,"name":"tokensPerKEther","type":"uint256"}],"name":"TokensBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"participant","type":"address"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"PrecommitmentAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"participant","type":"address"},{"indexed":false,"name":"required","type":"bool"}],"name":"KycVerified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Lunyr - Crowdsale","address":"0xfa05A73FfE78ef8f1a739473e462c54bae6567D9","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vaultPercentOfTotal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"ok","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getState","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"crowdfundPercentOfTotal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalizeCrowdfunding","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenCreationMax","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"ok","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"lunyrPercentOfTotal","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"finalizedCrowdfunding","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"hundredPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isLunyrToken","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"lunyrMultisig","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"ok","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenCreationMin","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"create","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"newWallet","type":"address"}],"name":"setMultiSigWallet","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"timeVault","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_lunyrMultisig","type":"address"},{"name":"_upgradeMaster","type":"address"},{"name":"_fundingStartBlock","type":"uint256"},{"name":"_fundingEndBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Refund","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"upgradeAgent","type":"address"}],"name":"UpgradeFinalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Martcoin - MART","address":"0xfdcc07Ab60660de533b5Ad26e1457b565a9D59Bd","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string","value":"Martcoin"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256","value":"2.9e+25"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256","value":"29000000"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256","value":"18"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address","value":"0xfd236dfb8ac50c5e0818b5f14bed825ffdb56195"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string","value":"MART"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool","value":false}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256","value":"0"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256","index":0,"typeShort":"uint","bits":"256","displayName":"initial Supply","template":"elements_input_uint","value":""},{"name":"tokenName","type":"string","index":1,"typeShort":"string","bits":"","displayName":"token Name","template":"elements_input_string","value":""},{"name":"tokenSymbol","type":"string","index":2,"typeShort":"string","bits":"","displayName":"token Symbol","template":"elements_input_string","value":""}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]},{"name":"MEW tokens contract","address":"0xBE1ecF8e340F13071761e0EeF054d9A511e1Cb56","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"pubTokens","outputs":[{"name":"name","type":"bytes16"},{"name":"symbol","type":"bytes16"},{"name":"addr","type":"address"},{"name":"decimals","type":"uint8"},{"name":"website","type":"bytes32"},{"name":"email","type":"bytes32"},{"name":"isValid","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"idMap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenValidCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"moderator","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"addModerator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"removeModerator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"name","type":"bytes16"},{"name":"symbol","type":"bytes16"},{"name":"addr","type":"address"},{"name":"decimals","type":"uint8"},{"name":"website","type":"bytes32"},{"name":"email","type":"bytes32"}],"name":"addSetToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"disableToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"enableToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"getToken","outputs":[{"name":"","type":"bytes16"},{"name":"","type":"bytes16"},{"name":"","type":"address"},{"name":"","type":"uint8"},{"name":"","type":"bytes32"},{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"id","type":"uint256"}],"name":"getTokenById","outputs":[{"name":"","type":"bytes16"},{"name":"","type":"bytes16"},{"name":"","type":"address"},{"name":"","type":"uint8"},{"name":"","type":"bytes32"},{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"name","type":"bool"},{"name":"website","type":"bool"},{"name":"email","type":"bool"},{"name":"count","type":"uint256"}],"name":"getAllBalance","outputs":[{"name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"Milestone Tracker","address":"0x3C01ddC7aF41E6888cBD8d0398Fe34a81C3c7f36","comment":"","abi":[{"constant":true,"inputs":[],"name":"proposedMilestones","outputs":[{"name":"","type":"bytes"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"changingMilestones","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"campaignCanceled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"collectMilestonePayment","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unproposeMilestones","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"donor","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"milestoneCompleted","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_hashProposals","type":"bytes32"}],"name":"acceptProposedMilestones","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"approveCompletedMilestone","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"recipient","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newMilestones","type":"bytes"}],"name":"proposeMilestones","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"arbitrator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"arbitrateCancelCampaign","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newRecipient","type":"address"}],"name":"changeRecipient","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"numberOfMilestones","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"rejectMilestone","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newDonor","type":"address"}],"name":"changeDonor","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"milestones","outputs":[{"name":"description","type":"string"},{"name":"url","type":"string"},{"name":"minCompletionDate","type":"uint256"},{"name":"maxCompletionDate","type":"uint256"},{"name":"reviewer","type":"address"},{"name":"reviewTime","type":"uint256"},{"name":"paymentSource","type":"address"},{"name":"payData","type":"bytes"},{"name":"status","type":"uint8"},{"name":"doneTime","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"arbitrateApproveMilestone","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_idMilestone","type":"uint256"}],"name":"cancelMilestone","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newArbitrator","type":"address"}],"name":"changeArbitrator","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_arbitrator","type":"address"},{"name":"_donor","type":"address"},{"name":"_recipient","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[],"name":"NewMilestoneListProposed","type":"event"},{"anonymous":false,"inputs":[],"name":"NewMilestoneListUnproposed","type":"event"},{"anonymous":false,"inputs":[],"name":"NewMilestoneListAccepted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"idProposal","type":"uint256"},{"indexed":false,"name":"newProposal","type":"uint8"}],"name":"ProposalStatusChanged","type":"event"},{"anonymous":false,"inputs":[],"name":"CampaignCalncelled","type":"event"}]},{"name":"Minereum Contract","address":"0x1a95B271B0535D15fa49932Daba31BA612b52946","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"currentEthBlock","outputs":[{"name":"blockNumber","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"initialSupplyPerAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalGenesisAddresses","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"availableBalanceOf","outputs":[{"name":"Balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_caller","type":"address"}],"name":"setGenesisCallerAddress","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maxTotalSupply","outputs":[{"name":"maxSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address[]"}],"name":"setGenesisAddressArray","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"genesisAddress","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"rewardPerBlockPerAddress","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"currentBlock","outputs":[{"name":"blockNumber","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"initialBlockCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"genesisCallerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Mists Multisig Contract","address":"0x0101010101010101010101010101010101010101","comment":"","abi":[{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"removeOwner","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address"}],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":true,"inputs":[],"name":"m_numOwners","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"m_lastDay","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[],"name":"resetSpentToday","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_spentToday","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"addOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_required","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"constant":false,"inputs":[{"name":"_h","type":"bytes32"}],"name":"confirm","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_newLimit","type":"uint256"}],"name":"setDailyLimit","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"execute","outputs":[{"name":"_r","type":"bytes32"}],"type":"function"},{"constant":false,"inputs":[{"name":"_operation","type":"bytes32"}],"name":"revoke","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_newRequired","type":"uint256"}],"name":"changeRequirement","outputs":[],"type":"function"},{"constant":true,"inputs":[{"name":"_operation","type":"bytes32"},{"name":"_owner","type":"address"}],"name":"hasConfirmed","outputs":[{"name":"","type":"bool"}],"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"kill","outputs":[],"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"}],"name":"changeOwner","outputs":[],"type":"function"},{"constant":true,"inputs":[],"name":"m_dailyLimit","outputs":[{"name":"","type":"uint256"}],"type":"function"},{"inputs":[{"name":"_owners","type":"address[]"},{"name":"_required","type":"uint256"},{"name":"_daylimit","type":"uint256"}],"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Confirmation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"}],"name":"Revoke","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"},{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newOwner","type":"address"}],"name":"OwnerAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"oldOwner","type":"address"}],"name":"OwnerRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newRequirement","type":"uint256"}],"name":"RequirementChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"SingleTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"owner","type":"address"},{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"MultiTransact","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"operation","type":"bytes32"},{"indexed":false,"name":"initiator","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"to","type":"address"},{"indexed":false,"name":"data","type":"bytes"}],"name":"ConfirmationNeeded","type":"event"}]},{"name":"Modum Token","address":"0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e","comment":"","abi":[{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_addr","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"weiPerToken","type":"uint256"}],"name":"Payout","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_addr","type":"address"},{"indexed":false,"name":"option","type":"bool"},{"indexed":false,"name":"votes","type":"uint256"}],"name":"Voted","type":"event"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"accounts","outputs":[{"name":"lastProposalStartTime","type":"uint256"},{"name":"lastAirdropWei","type":"uint256"},{"name":"lastAirdropClaimTime","type":"uint256"},{"name":"bonusWei","type":"uint256"},{"name":"valueModVote","type":"uint256"},{"name":"valueMod","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"blockingDuration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimVotingProposal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"currentProposal","outputs":[{"name":"addr","type":"string"},{"name":"hash","type":"bytes32"},{"name":"valueMod","type":"uint256"},{"name":"startTime","type":"uint256"},{"name":"yay","type":"uint256"},{"name":"nay","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isProposalActive","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isVoteOngoing","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isVotingPhaseOver","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastNegativeVoting","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipient","type":"address[]"},{"name":"_value","type":"uint256[]"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintDone","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"address[]"}],"name":"payBonus","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"redistributionTimeout","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rounding","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"setMintDone","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"showBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_addr","type":"address"}],"name":"showVotes","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalDropPerUnlockedToken","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_vote","type":"bool"}],"name":"vote","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"votingDuration","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_addr","type":"string"},{"name":"_hash","type":"bytes32"},{"name":"_value","type":"uint256"}],"name":"votingProposal","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]},{"name":"Money Rebel","address":"0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"killContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"disableMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenAddress","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"salvageTokensFromContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_untilBlock","type":"uint256"},{"name":"_reason","type":"string"}],"name":"lockUntil","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedUntilBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_untilBlock","type":"uint256"},{"indexed":false,"name":"_reason","type":"string"}],"name":"ContractLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_prevOwner","type":"address"},{"indexed":false,"name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"NANJCOIN","address":"0xFFE02ee4C69eDf1b340fCaD64fbd6b37a7b9e265","comment":"","abi":[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"_name","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"_totalSupply","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"_decimals","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_unitAmount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"founder","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"distributeAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"AAcontributors","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"targets","type":"address[]"},{"name":"unixTimes","type":"uint256[]"}],"name":"lockupAccounts","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"activityFunds","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"preSeasonGame","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amount","type":"uint256"}],"name":"distributeAirdrop","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"_symbol","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_unitAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"lockedFundsForthefuture","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"autoDistribute","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"targets","type":"address[]"},{"name":"isFrozen","type":"bool"}],"name":"freezeAccounts","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"unlockUnixTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_unitAmount","type":"uint256"}],"name":"setDistributeAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"distributeAirdrop","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"collectTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_data","type":"bytes"},{"name":"_custom_fallback","type":"string"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"},{"indexed":false,"name":"locked","type":"uint256"}],"name":"LockedFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":true,"name":"data","type":"bytes"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Nebula Ai Crowdsale","address":"0x83c451371EF470D206cf011405D89f6ccb0e915e","comment":"","abi":[{"constant":true,"inputs":[],"name":"hasClosed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"get_time_locked_contract","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contributions","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hasStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"closingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"capReached","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"caps","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"release_all","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"getUserCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"openingTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"getUserContribution","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"}]},{"name":"Nebula Ai Token","address":"0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D","comment":"","abi":[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"time_locked_reclaim_addresses","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"release_all","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"get_time_locked_contract_size","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token_unlock_time","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"Nimiq Network Interim Token","address":"0xcfb98637bcae43C13323EAa1731cED2B716962fD","comment":"","abi":[{"constant":true,"inputs":[],"name":"TOKEN_SECOND_EXCHANGE_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_FIRST_EXCHANGE_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ETH_RECEIVED_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"nimiqAddress","type":"bytes32"}],"name":"redeemTokens","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateChangesBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"proceed","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"refund","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalReceivedEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ethFundDeposit","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"state","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ETH_RECEIVED_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"startRedeeming","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"retrieveEth","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_CREATION_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_ethFundDeposit","type":"address"},{"name":"_fundingStartBlock","type":"uint256"},{"name":"_fundingEndBlock","type":"uint256"},{"name":"_exchangeRateChangesBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"LogRefund","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"LogCreateNET","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_nimiqAddress","type":"bytes32"}],"name":"LogRedeemNET","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"NVC Fund","address":"0x53b60A7c2F6d95E12c5e5A3cCaAcFE35620AeFf6","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimal","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"decimalUnits","type":"uint8"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"OAK","address":"0x25Beb989d3ef4E6e0fEF8220944bb74E2AA6ff45","comment":"","abi":[{"constant":true,"inputs":[],"name":"weiRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalTokenSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"startTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"soldTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Y2_lockedTokenAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"endTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hardCap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"hasEnded","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isFinalized","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Y1_lockedTokenReleaseTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"restrictedPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Y1_lockedTokenAmount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"restricted","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"vip","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"vipRate","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"Y2_lockedTokenReleaseTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[],"name":"CrowdSaleTokenContractCreation","type":"event"},{"constant":false,"inputs":[],"name":"Y1_release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"}],"name":"kycVerify","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"}],"name":"setSalePeriod","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_startTime","type":"uint256"},{"name":"_endTime","type":"uint256"},{"name":"_rate","type":"uint256"},{"name":"_wallet","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"unsetVipAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"beneficiary","type":"address"}],"name":"buyTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"constant":false,"inputs":[],"name":"Y2_release","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_hardCap","type":"uint256"}],"name":"setHardCap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"purchaser","type":"address"},{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"TokenPurchase","type":"event"},{"constant":false,"inputs":[{"name":"_rate","type":"uint256"}],"name":"setRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"setWalletAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"balance","type":"uint256"}],"name":"addPrecommitment","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_vipRate","type":"uint256"}],"name":"setVipRate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"setVipAddress","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]},{"name":"Ohni","address":"0x6f539a9456a5bcb6334a1a41207c3788f5825207","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"merge","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"deprecated","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"currentVersion","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"recipients","type":"address[]"},{"name":"value","type":"uint256"}],"name":"airdrop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"recipients","type":"address[]"}],"name":"multiMerge","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAddress","type":"address"},{"name":"depr","type":"bool"}],"name":"update","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"withdrawETH","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAdmin","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"changedTarget","type":"address"},{"indexed":false,"name":"amountToChanged","type":"uint256"}],"name":"ChangedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"}]},{"name":"Ohni OLD","address":"0x7f2176ceb16dcb648dc924eff617c3dc2befd30d","comment":"","abi":[{"constant":false,"inputs":[{"name":"newSellPrice","type":"uint256"},{"name":"newBuyPrice","type":"uint256"}],"name":"setPrices","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"mintedAmount","type":"uint256"}],"name":"mintToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buy","outputs":[],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"amount","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"decimalUnits","type":"uint8"},{"name":"tokenSymbol","type":"string"}],"payable":false,"type":"constructor"},{"payable":false,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"openANX Crowdsale","address":"0x701C244b988a513c945973dEFA05de933b23Fe1D","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_TOTAL","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokensPerKEther","type":"uint256"}],"name":"setTokensPerKEther","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"lockedTokens","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"}],"name":"kycVerify","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOfLocked1Y","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"finalised","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTIONS_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"START_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"},{"name":"balance","type":"uint256"}],"name":"addPrecommitment","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_SOFT_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"END_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyLocked","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyLocked2Y","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_amount","type":"uint256"}],"name":"burnFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKENS_HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"DECIMALSFACTOR","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"CONTRIBUTIONS_MAX","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"LOCKED_2Y_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"NAME","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalise","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokensPerKEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"kycRequired","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOfLocked2Y","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyLocked1Y","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyUnlocked","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"amount","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_wallet","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"balanceOfLocked","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"LOCKED_1Y_DATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"participant","type":"address"}],"name":"proxyPayment","outputs":[],"payable":true,"type":"function"},{"constant":true,"inputs":[],"name":"SYMBOL","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"inputs":[{"name":"_wallet","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newWallet","type":"address"}],"name":"WalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"tokensPerKEther","type":"uint256"}],"name":"TokensPerKEtherUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"ethers","type":"uint256"},{"indexed":false,"name":"newEtherBalance","type":"uint256"},{"indexed":false,"name":"tokens","type":"uint256"},{"indexed":false,"name":"newTotalSupply","type":"uint256"},{"indexed":false,"name":"tokensPerKEther","type":"uint256"}],"name":"TokensBought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"participant","type":"address"},{"indexed":false,"name":"balance","type":"uint256"}],"name":"PrecommitmentAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"participant","type":"address"}],"name":"KycVerified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Pass DAO: Committees Contract","address":"0x6A3DCd2Ad3C693aA8CBc3e5bCB075b674209A033","comment":"","abi":[{"constant":false,"inputs":[{"name":"_committeeID","type":"uint256"},{"name":"_supportsProposal","type":"bool"}],"name":"vote","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"}],"name":"buySharesForProposal","outputs":[{"name":"","type":"bool"}],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawPendingAmounts","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_contractorCreator","type":"address"},{"name":"_recipient","type":"address"},{"name":"_metaProject","type":"bool"},{"name":"_passProject","type":"address"},{"name":"_projectName","type":"string"},{"name":"_projectDescription","type":"string"}],"name":"createContractor","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_contractor","type":"address"},{"name":"_contractorProposalID","type":"uint256"},{"name":"_proposalDescription","type":"string"},{"name":"_hashOfTheContractorProposalDocument","type":"bytes32"},{"name":"_moderator","typPassDe":"address"},{"name":"_initialSharePriceMultiplier","type":"uint256"},{"name":"_minutesFundingPeriod","type":"uint256"},{"name":"_minutesDebatingPeriod","type":"uint256"}],"name":"contractorProposal","outputs":[{"name":"","type":"uint256"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_description","type":"string"},{"name":"_project","type":"address"},{"name":"_minutesDebatingPeriod","type":"uint256"}],"name":"resolutionProposal","outputs":[{"name":"","type":"uint256"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_minQuorumDivisor","type":"uint256"},{"name":"_minCommitteeFees","type":"uint256"},{"name":"_minPercentageOfLikes","type":"uint256"},{"name":"_minutesSetProposalPeriod","type":"uint256"},{"name":"_minMinutesDebatePeriod","type":"uint256"},{"name":"_feesRewardInflationRate","type":"uint256"},{"name":"_defaultMinutesFundingPeriod","type":"uint256"},{"name":"_tokenPriceInflationRate","type":"uint256"}],"name":"rulesProposal","outputs":[{"name":"","type":"uint256"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_newCommitteeRoom","type":"address"},{"name":"_newShareManager","type":"address"},{"name":"_newTokenManager","type":"address"},{"name":"_minutesDebatingPeriod","type":"uint256"}],"name":"upgradeProposal","outputs":[{"name":"","type":"uint256"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_committeeID","type":"uint256"}],"name":"executeDecision","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"}],"name":"orderToContractor","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"}]},{"name":"Pass DAO: Tokens Contract","address":"0x85bC00724203D53536072b000C44A2cc16CD12C5","comment":"","abi":[{"constant":false,"inputs":[{"name":"_proposalID","type":"uint256"},{"name":"_buyer","type":"address"}],"name":"buyTokensForProposal","outputs":[{"name":"","type":"bool"}],"payable":true,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawPendingAmounts","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"buyTokens","outputs":[{"name":"","type":"bool"}],"payable":true,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"uint256"},{"name":"_to","type":"uint256"}],"name":"removeOrders","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_tokenAmount","type":"uint256"},{"name":"_from","type":"uint256"},{"name":"_to","type":"uint256"}],"name":"sellTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"}]},{"name":"Peculium","address":"0x3618516F45CD3c913F81F9987AF41077932Bc40d","comment":"","abi":[{"constant":true,"inputs":[],"name":"MAX_SUPPLY_NBTOKEN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"UpgradeTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"canSell","type":"bool"}],"name":"ChangeLicense","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getBlockTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwnerInfos","outputs":[{"name":"ownerAddr","type":"address"},{"name":"ownerBalance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"peculOldAdress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balancesCannotSell","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"peculOld","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"changedTarget","type":"address"},{"indexed":false,"name":"amountToChanged","type":"uint256"}],"name":"ChangedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"address_target","type":"address"},{"indexed":false,"name":"bool_canSell","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Peculium OLD","address":"0x53148Bb4551707edF51a1e8d7A93698d18931225","comment":"","abi":[{"constant":true,"inputs":[],"name":"MAX_SUPPLY_NBTOKEN","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"dateDefrost","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getBlockTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getOwnerInfos","outputs":[{"name":"ownerAddr","type":"address"},{"name":"ownerBalance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balancesCanSell","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"defrostToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"canSell","type":"bool"}],"name":"freezeAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"dateStartContract","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"msgAdd","type":"address"},{"indexed":false,"name":"freeze","type":"bool"}],"name":"Defroze","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Persian: Warrior for Battle Contract","address":"0x163733bcc28dbf26B41a8CfA83e369b5B3af741b","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"icoStartBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"maxTotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalContributions","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"contributions","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"claimToken","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"icoEndBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"estimateBalanceOf","outputs":[{"name":"estimatedTokens","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isICOOpen","outputs":[{"name":"_open","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"isICOEnded","outputs":[{"name":"_ended","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"contribute","outputs":[{"name":"success","type":"bool"}],"payable":true,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"redeemEther","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_icoStartBlock","type":"uint256"},{"name":"_icoEndBlock","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_contributor","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_estimatedTotalTokenBalance","type":"uint256"}],"name":"Contributed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_contributor","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Primalbase Token (PBT)","address":"0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_wallet","type":"string"}],"name":"TransferToWaves","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amount","type":"uint256"},{"name":"_wallet","type":"string"},{"name":"_currency","type":"string"}],"name":"TransferBase","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"reclaimEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"},{"indexed":false,"name":"wallet","type":"string"},{"indexed":false,"name":"currency","type":"string"}],"name":"TokenTransferLog","type":"event"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Proof of Weak Hands 3D (P3D)","address":"0xB3775fB83F7D12A36E0475aBdD1FCA35c091efBe","comment":"","abi":[{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"dividendsOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_ethereumToSpend","type":"uint256"}],"name":"calculateTokensReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokensToSell","type":"uint256"}],"name":"calculateEthereumReceived","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"onlyAmbassadors","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"bytes32"}],"name":"administrators","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"sellPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingRequirement","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_includeReferralBonus","type":"bool"}],"name":"myDividends","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalEthereumBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_customerAddress","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"setStakingRequirement","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"buyPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_identifier","type":"bytes32"},{"name":"_status","type":"bool"}],"name":"setAdministrator","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"myTokens","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"disableInitialStage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_toAddress","type":"address"},{"name":"_amountOfTokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_amountOfTokens","type":"uint256"}],"name":"sell","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"exit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_referredBy","type":"address"}],"name":"buy","outputs":[{"name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"reinvest","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"incomingEthereum","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"},{"indexed":true,"name":"referredBy","type":"address"}],"name":"onTokenPurchase","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"tokensBurned","type":"uint256"},{"indexed":false,"name":"ethereumEarned","type":"uint256"}],"name":"onTokenSell","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumReinvested","type":"uint256"},{"indexed":false,"name":"tokensMinted","type":"uint256"}],"name":"onReinvestment","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"customerAddress","type":"address"},{"indexed":false,"name":"ethereumWithdrawn","type":"uint256"}],"name":"onWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Proxy Token (PRXY)","address":"0x81BE91c7E74Ad0957B4156F782263e7B0B88cF7b","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creationBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newController","type":"address"}],"name":"changeController","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_blockNumber","type":"uint256"}],"name":"balanceOfAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_cloneTokenName","type":"string"},{"name":"_cloneDecimalUnits","type":"uint8"},{"name":"_cloneTokenSymbol","type":"string"},{"name":"_snapshotBlock","type":"uint256"},{"name":"_transfersEnabled","type":"bool"}],"name":"createCloneToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentToken","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"generateTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_blockNumber","type":"uint256"}],"name":"totalSupplyAt","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"transfersEnabled","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"parentSnapShotBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"},{"name":"_amount","type":"uint256"}],"name":"destroyTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_token","type":"address"}],"name":"claimTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenFactory","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_transfersEnabled","type":"bool"}],"name":"enableTransfers","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"controller","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_token","type":"address"},{"indexed":true,"name":"_controller","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"ClaimedTokens","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_cloneToken","type":"address"},{"indexed":false,"name":"_snapshotBlock","type":"uint256"}],"name":"NewCloneToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"PUC","address":"0xef6b4ce8c9bc83744fbcde2657b32ec18790458a","comment":"","abi":[{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":false,"stateMutability":"nonpayable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Q - TiiQu Network","address":"0x2C3C1F05187dBa7A5f2Dd47Dca57281C4d4F183F","comment":"","abi":[{"constant":false,"inputs":[],"name":"killPay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isAuthorised","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"version","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"authorise","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_toReplace","type":"address"},{"name":"_new","type":"address"}],"name":"replaceAuthorised","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"unauthorise","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"},{"name":"_value","type":"uint256"}],"name":"pay","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_message","type":"bytes16"},{"indexed":true,"name":"_actioner","type":"address"},{"indexed":true,"name":"_actionee","type":"address"}],"name":"Authorise","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Rebellious","address":"0x5f53f7a8075614b699baad0bc2c899f4bad8fbbf","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"coinAge","outputs":[{"name":"myCoinAge","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"timestamp","type":"uint256"}],"name":"ownerSetStakeStartTime","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxTotalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"getBlockNumber","outputs":[{"name":"blockNumber","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"chainStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_recipients","type":"address[]"},{"name":"_values","type":"uint256[]"}],"name":"batchTransfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"ownerBurnToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalInitialSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"annualInterest","outputs":[{"name":"interest","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeMinAge","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"chainStartBlockNumber","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakeMaxAge","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxMintProofOfStake","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"},{"indexed":false,"name":"_reward","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Replay Safe Split","address":"0xAA1A6e3e6EF20068f7F8d8C835d2D22fd5116444","comment":"","abi":[{"constant":false,"inputs":[{"name":"targetFork","type":"address"},{"name":"targetNoFork","type":"address"}],"name":"split","outputs":[{"name":"","type":"bool"}],"type":"function"}]},{"name":"RiderToken","address":"0x54b293226000ccBFC04DF902eEC567CB4C35a903","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_amount","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"tokenSupply","type":"uint256"}],"name":"SetupToken","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"adr","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"SGelder","address":"0xa1ccc166faf0E998b3E33225A1A0301B1C86119D","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimal","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"},{"name":"decimalUnits","type":"uint8"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"SIFT Authentication","address":"0xc6a3746aa3fec176559f0865fd5240159402a81f","comment":"","abi":[{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isCurrentOrPastAccountReader","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeAdmin","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"removeAccountReader","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addAdmin","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"contractVersion","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_address","type":"address"}],"name":"addAccountReader","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isCurrentAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isCurrentOrPastAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_address","type":"address"}],"name":"isCurrentAccountReader","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addedBy","type":"address"},{"indexed":false,"name":"admin","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"removedBy","type":"address"},{"indexed":false,"name":"admin","type":"address"}],"name":"AdminRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addedBy","type":"address"},{"indexed":false,"name":"account","type":"address"}],"name":"AccountReaderAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"removedBy","type":"address"},{"indexed":false,"name":"account","type":"address"}],"name":"AccountReaderRemoved","type":"event"}]},{"name":"SIFT Dividends","address":"0x9599954b6ade1f00f36a95cdf3a1b773ba3be19a","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"dividends","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"withdrawDividend","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"contractVersion","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_siftContractAddress","type":"address"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"PaymentAvailable","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"paymentPerShare","type":"uint256"},{"indexed":false,"name":"timestamp","type":"uint256"}],"name":"DividendPayment","type":"event"}]},{"name":"SIFT Transparency","address":"0x27c8566bfb73280606e58f60cb3374788a43d850","comment":"","abi":[{"constant":true,"inputs":[],"name":"accountBalanceCount","outputs":[{"name":"_count","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_accountType","type":"string"},{"name":"_accountIssuer","type":"string"},{"name":"_balance","type":"uint256"},{"name":"_accountReference","type":"string"},{"name":"_validationUrl","type":"string"},{"name":"_timestamp","type":"uint256"}],"name":"accountBalancePublish","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundValueCount","outputs":[{"name":"_count","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_usdTotalFund","type":"uint256"},{"name":"_etherTotalFund","type":"uint256"},{"name":"_definedTimestamp","type":"uint256"}],"name":"fundValuePublish","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"fundValues","outputs":[{"name":"usdValue","type":"uint256"},{"name":"etherEquivalent","type":"uint256"},{"name":"suppliedTimestamp","type":"uint256"},{"name":"blockTimestamp","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"accountBalances","outputs":[{"name":"accountType","type":"string"},{"name":"accountIssuer","type":"string"},{"name":"balance","type":"uint256"},{"name":"accountReference","type":"string"},{"name":"validationUrl","type":"string"},{"name":"suppliedTimestamp","type":"uint256"},{"name":"blockTimestamp","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"contractVersion","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"inputs":[{"name":"_authenticationManagerAddress","type":"address"}],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"usdValue","type":"uint256"},{"indexed":false,"name":"etherEquivalent","type":"uint256"},{"indexed":false,"name":"suppliedTimestamp","type":"uint256"},{"indexed":false,"name":"blockTimestamp","type":"uint256"}],"name":"FundValue","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"accountType","type":"string"},{"indexed":false,"name":"accountIssuer","type":"string"},{"indexed":false,"name":"balance","type":"uint256"},{"indexed":false,"name":"accountReference","type":"string"},{"indexed":false,"name":"validationUrl","type":"string"},{"indexed":false,"name":"timestamp","type":"uint256"},{"indexed":false,"name":"blockTimestamp","type":"uint256"}],"name":"AccountBalance","type":"event"}]},{"name":"SIFT Vote SVP002","address":"0x7f39f3a01701bbb3b637597ab3267c213c8a11df","comment":"","abi":[{"constant":true,"inputs":[],"name":"vote02YesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote02NoCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"voteStartTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote03YesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote01YesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"vote","type":"bool"}],"name":"voteSvp01","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote03NoCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"voteCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"vote01NoCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"voteEndTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_count","type":"uint256"}],"name":"setVoterCount","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"voterAddresses","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"vote","type":"bool"}],"name":"voteSvp02","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"vote","type":"bool"}],"name":"voteSvp03","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_position","type":"uint256"},{"name":"_voter","type":"address"},{"name":"_voteCount","type":"uint256"}],"name":"setVoter","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"_authenticationManagerAddress","type":"address"},{"name":"_voteStartTime","type":"uint256"},{"name":"_voteEndTime","type":"uint256"}],"payable":false,"type":"constructor"}]},{"name":"SingularDTV Fund","address":"0xe736091FC36f1ad476f5E4e03e4425940822D3BA","comment":"","abi":[{"inputs":[{"type":"address","name":"singularDTVCrowdfundingAddress"},{"type":"address","name":"singularDTVTokenAddress"}],"constant":false,"type":"function","name":"setup","outputs":[{"type":"bool","name":""}]},{"inputs":[],"constant":false,"type":"function","name":"depositRevenue","outputs":[{"type":"bool","name":""}]},{"inputs":[],"constant":false,"type":"function","name":"withdrawRevenue","outputs":[{"type":"uint256","name":""}]},{"inputs":[{"type":"address","name":"forAddress"}],"constant":false,"type":"function","name":"softWithdrawRevenueFor","outputs":[{"type":"uint256","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"workshop","outputs":[{"type":"address","name":""}]},{"inputs":[{"type":"address","name":""}],"constant":true,"type":"function","name":"revenueAtTimeOfWithdraw","outputs":[{"type":"uint256","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"singularDTVToken","outputs":[{"type":"address","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"owner","outputs":[{"type":"address","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"singularDTVCrowdfunding","outputs":[{"type":"address","name":""}]},{"inputs":[],"constant":true,"type":"function","name":"totalRevenue","outputs":[{"type":"uint256","name":""}]},{"inputs":[{"type":"address","name":""}],"constant":true,"type":"function","name":"owed","outputs":[{"type":"uint256","name":""}]},{"inputs":[],"type":"constructor"}]},{"name":"Skraps","address":"0xfdfe8b7ab6cf1bd1e3d14538ef40686296c42052","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"cancelMigration","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startMigration","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"manualMigrate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"removeSupport","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"withdrawEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"closeICO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_value","type":"uint256"}],"name":"refundTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_who","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_agent","type":"address"}],"name":"setMigrationAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"supportAccounts","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"startICO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"migrationAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"migrate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokens","type":"uint256"}],"name":"setTokensPerEther","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_who","type":"address"}],"name":"addSupport","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"state","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"tokensPerEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"state","type":"uint8"}],"name":"NewState","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_who","type":"address"}],"name":"SupportAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_who","type":"address"}],"name":"SupportRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Skrilla Token","address":"0x4c382F8E09615AC86E08CE58266CC227e7d4D913","comment":"","abi":[{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"tokenSaleBalanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_buyer","type":"address"}],"name":"getCurrentPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"StashPay","address":"0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"distributionComplete","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"publicKeySize","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"getData","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"amount","type":"uint256"},{"name":"freeze","type":"bool"}],"name":"distributeAdviserBounty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"publicKey","type":"string"}],"name":"registerKey","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"timeTransferbleUntil","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"sale","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"},{"name":"_data","type":"string"}],"name":"burn","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"data","type":"uint256[]"},{"name":"freeze","type":"bool"}],"name":"multiDistributeAdviserBounty","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"publicKeys","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_publicKeySize","type":"uint8"}],"name":"modifyPublicKeySize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_symbol","type":"string"}],"name":"setSymbol","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"data","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"setName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"adviserAndBounty","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_target","type":"address"}],"name":"isFrozen","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"data","type":"uint256[]"}],"name":"multiDistribute","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":false,"name":"_publicKey","type":"string"}],"name":"RegisterKey","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_size","type":"uint8"}],"name":"ModifyPublicKeySize","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"value","type":"uint256"},{"indexed":false,"name":"data","type":"string"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[],"name":"LogStop","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Su Squares (SU)","address":"0xe264D16BCBA50925D0e1a90398596EC010306E14","comment":"","abi":[{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_operator","type":"address"},{"indexed":false,"name":"_approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"constant":false,"inputs":[{"name":"_approved","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_tokenId","type":"uint256"},{"name":"_newOwner","type":"address"}],"name":"grantToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_nftId","type":"uint256"}],"name":"Personalized","type":"event"},{"constant":false,"inputs":[{"name":"_squareId","type":"uint256"},{"name":"_rgbData","type":"bytes"},{"name":"_title","type":"string"},{"name":"_href","type":"string"}],"name":"personalizeSquare","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_approved","type":"address"},{"indexed":true,"name":"_tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"constant":false,"inputs":[{"name":"_nftId","type":"uint256"}],"name":"purchase","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"},{"name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_operator","type":"address"},{"name":"_approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_executiveOfficerAddress","type":"address"}],"name":"setExecutiveOfficer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_financialOfficerAddress","type":"address"}],"name":"setFinancialOfficer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_operatingOfficerAddress","type":"address"}],"name":"setOperatingOfficer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"withdrawBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"executiveOfficerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"financialOfficerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"operatingOfficerAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"_owner","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"promoCreatedCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"interfaceID","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"suSquares","outputs":[{"name":"version","type":"uint256"},{"name":"rgbData","type":"bytes"},{"name":"title","type":"string"},{"name":"href","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[{"name":"_index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"_tokenId","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"_tokenURI","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"}]},{"name":"SyncFab Smart Manufacturing Blockchain","address":"0x6710c63432a2de02954fc0f851db07146a6c0312","comment":"","abi":[{"constant":true,"inputs":[],"name":"multiAsset","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"commitUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getLatestVersion","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"},{"name":"_sender","type":"address"}],"name":"_forwardTransferFromWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"emitApprove","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"emitTransfer","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"recoverTokens","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"etoken2","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getPendingVersionTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"purgeUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"optIn","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferFromWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"}],"name":"transferToICAP","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"string"},{"name":"_value","type":"uint256"}],"name":"transferFromToICAP","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_sender","type":"address"}],"name":"_forwardApprove","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_icap","type":"string"},{"name":"_value","type":"uint256"}],"name":"transferToICAP","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"string"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferFromToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_icap","type":"string"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"},{"name":"_sender","type":"address"}],"name":"_forwardTransferFromToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferFromToICAPWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_icap","type":"bytes32"},{"name":"_value","type":"uint256"}],"name":"transferFromToICAP","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"etoken2Symbol","outputs":[{"name":"","type":"bytes32"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"getPendingVersion","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"},{"name":"_reference","type":"string"}],"name":"transferWithReference","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_etoken2","type":"address"},{"name":"_symbol","type":"string"},{"name":"_name","type":"string"}],"name":"init","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_newVersion","type":"address"}],"name":"proposeUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"optOut","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_from","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_sender","type":"address"}],"name":"getVersionFor","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newVersion","type":"address"}],"name":"UpgradeProposed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newVersion","type":"address"}],"name":"UpgradePurged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newVersion","type":"address"}],"name":"UpgradeCommited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"version","type":"address"}],"name":"OptedOut","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"sender","type":"address"},{"indexed":false,"name":"version","type":"address"}],"name":"OptedIn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"TangguoTaoToken","address":"0xfA0eF5E034CaE1AE752d59bdb8aDcDe37Ed7aB97","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"}],"name":"OwnershipRenounced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Telcoin Redeem","address":"0x6D9FE564C9B1C81C305e066346dF73de6cF9295f","comment":"","abi":[{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"vestedBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"redeem","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_beneficiary","type":"address"}],"name":"redeemableBalance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_beneficiaries","type":"address[]"}],"name":"redeemMany","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalRedeemed","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_telcoin","type":"address"},{"name":"_vestingStart","type":"uint256"},{"name":"_vestingDuration","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[],"name":"MintFinished","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"beneficiary","type":"address"},{"indexed":false,"name":"sacrificedValue","type":"uint256"},{"indexed":false,"name":"grantedValue","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"Telex","address":"0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addresses","type":"address[]"},{"name":"amounts","type":"uint256[]"}],"name":"multipleTransfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"frozenAccount","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"target","type":"address"},{"name":"freeze","type":"bool"}],"name":"freezeAccount","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"target","type":"address"},{"indexed":false,"name":"frozen","type":"bool"}],"name":"FrozenFunds","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"theCyber","address":"0x97A99C819544AD0617F48379840941eFbe1bfAE1","comment":"","abi":[{"constant":false,"inputs":[{"name":"_tokenContractAddress","type":"address"}],"name":"donateTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_message","type":"string"}],"name":"broadcastMessage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_contractAddress","type":"address"},{"name":"_message","type":"string"}],"name":"passMessage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"heartbeat","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"donateFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"inactivityTimeout","outputs":[{"name":"","type":"uint64"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_newMemberAddress","type":"address"}],"name":"transferMembership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newMemberName","type":"bytes32"}],"name":"changeName","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_memberId","type":"uint8"},{"name":"_memberName","type":"bytes32"},{"name":"_memberAddress","type":"address"}],"name":"newMember","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_memberAddress","type":"address"}],"name":"getMembershipStatus","outputs":[{"name":"member","type":"bool"},{"name":"memberId","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_memberId","type":"uint8"}],"name":"getMemberInformation","outputs":[{"name":"memberName","type":"bytes32"},{"name":"memberKey","type":"string"},{"name":"memberSince","type":"uint64"},{"name":"inactiveSince","type":"uint64"},{"name":"memberAddress","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_memberId","type":"uint8"}],"name":"revokeMembership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newMemberKey","type":"string"}],"name":"changeKey","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"maxMembers","outputs":[{"name":"","type":"uint16"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_memberId","type":"uint8"}],"name":"proclaimInactive","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_toMemberId","type":"uint8"},{"name":"_message","type":"string"}],"name":"directMessage","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"donationAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"pure","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"memberName","type":"bytes32"},{"indexed":true,"name":"memberAddress","type":"address"}],"name":"NewMember","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"newMemberName","type":"bytes32"}],"name":"NewMemberName","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"newMemberKey","type":"string"}],"name":"NewMemberKey","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"newMemberAddress","type":"address"}],"name":"MembershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":true,"name":"proclaimingMemberId","type":"uint8"}],"name":"MemberProclaimedInactive","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"}],"name":"MemberHeartbeated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":true,"name":"revokingMemberId","type":"uint8"}],"name":"MembershipRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"message","type":"string"}],"name":"BroadcastMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":true,"name":"toMemberId","type":"uint8"},{"indexed":false,"name":"message","type":"string"}],"name":"DirectMessage","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":true,"name":"contractAddress","type":"address"},{"indexed":false,"name":"message","type":"string"}],"name":"Call","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"value","type":"uint256"}],"name":"FundsDonated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"memberId","type":"uint8"},{"indexed":false,"name":"tokenContractAddress","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"TokensDonated","type":"event"}]},{"name":"TNT - Tierion Network Token","address":"0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"unpause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"paused","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"anonymous":false,"inputs":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"TRV","address":"0xA671f2914Ba0e73979FFc47cD350801d1714b18f","comment":"","abi":[{"constant":false,"inputs":[],"name":"checkGoalReached","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"creator","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingMinimumTargetInUsd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_source","type":"address"}],"name":"addToSyncList","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_price","type":"uint256"}],"name":"setEtherPrice","outputs":[{"name":"result","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalUsdRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"beneficiary","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"icoState","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"priceInUsd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenAllocation","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"userRefund","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenReward","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"stopIco","outputs":[{"name":"result","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"amountRaised","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"startIco","outputs":[{"name":"result","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingMaximumTargetInUsd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"drain","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"syncList","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeDiv","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"AutorizeRefund","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"etherPriceInUsd","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeMul","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"fundingGoalReached","outputs":[{"name":"","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_priceInUsd","type":"uint256"},{"name":"_tokenHolder","type":"address"},{"name":"_tokenAllocation","type":"uint256"},{"name":"_fundingMinimumTargetInUsd","type":"uint256"},{"name":"_fundingMaximumTargetInUsd","type":"uint256"}],"name":"settingsIco","outputs":[{"name":"result","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"safeWithdrawal","outputs":[],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"removeContract","outputs":[],"payable":false,"type":"function"},{"inputs":[{"name":"ifSuccessfulSendTo","type":"address"},{"name":"_fundingMinimumTargetInUsd","type":"uint256"},{"name":"_fundingMaximumTargetInUsd","type":"uint256"},{"name":"tokenPriceInUSD","type":"uint256"},{"name":"addressOfTokenUsedAsReward","type":"address"},{"name":"_tokenHolder","type":"address"},{"name":"_tokenAllocation","type":"uint256"},{"name":"_etherPriceInUsd","type":"uint256"}],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_beneficiary","type":"address"},{"indexed":false,"name":"_amountRaised","type":"uint256"},{"indexed":false,"name":"_totalUsdRaised","type":"uint256"}],"name":"GoalMinimumReached","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_beneficiary","type":"address"},{"indexed":false,"name":"_amountRaised","type":"uint256"},{"indexed":false,"name":"_totalUsdRaised","type":"uint256"}],"name":"GoalMaximumReached","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_backer","type":"address"},{"indexed":false,"name":"_amount","type":"uint256"},{"indexed":false,"name":"_isContribution","type":"bool"}],"name":"FundTransfer","type":"event"}]},{"name":"TWN","address":"0x2eF1aB8a26187C58BB8aAeB11B2fC6D25C5c0716","comment":"","abi":[{"constant":false,"inputs":[{"name":"newToken","type":"address"}],"name":"setToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newAdvisorsTokensWallet","type":"address"}],"name":"setAdvisorsTokensWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newDevWallet","type":"address"}],"name":"setDevWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"PERCENT_RATE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newFoundersTokensWallet","type":"address"}],"name":"setFoundersTokensWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"lockChanges","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"foundersTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minted","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"wallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"smartContractDevelopersWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newBountyTokensPercent","type":"uint256"}],"name":"setBountyTokensPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"advisorsTokensPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newAdvisorsTokensPercent","type":"uint256"}],"name":"setAdvisorsTokensPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newDevPercent","type":"uint256"}],"name":"setDevPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"finishMinting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newEnd","type":"uint256"}],"name":"setEnd","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"foundersTokensPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getBonus","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"changesLocked","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bountyTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"bountyTokensPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devWithdrawn","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newMinInvestedLimit","type":"uint256"}],"name":"setMinInvestedLimit","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"widthraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"bonuses","outputs":[{"name":"periodInDays","type":"uint256"},{"name":"bonus","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newFoundersTokensPercent","type":"uint256"}],"name":"setFoundersTokensPercent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"limit","type":"uint256"},{"name":"bonus","type":"uint256"}],"name":"addBonus","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"hardcap","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"createTokens","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"start","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"invested","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"minInvestedLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"widthrawDev","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nextSaleAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newWallet","type":"address"}],"name":"setWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bonusesCount","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newHardcap","type":"uint256"}],"name":"setHardcap","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newNextSaleAgent","type":"address"}],"name":"setNextSaleAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"advisorsTokensWallet","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"end","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newStart","type":"uint256"}],"name":"setStart","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newBountyTokensWallet","type":"address"}],"name":"setBountyTokensWallet","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"token","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"devPercent","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"}]},{"name":"URB","address":"0x931684139f756C24eC0731E9F74FE50e5548dDeF","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_fromVault","type":"address"},{"name":"_tokensAmount","type":"uint256"},{"name":"_beneficiary","type":"address"},{"name":"_unlockTime","type":"uint256"}],"name":"lockTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"vestingCountOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"urbitTeamTokensVault","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"HARD_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"saleClosedTimestamp","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"releasableBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseVestedTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_tokensAmount","type":"uint256"},{"name":"_beneficiary","type":"address"},{"name":"_duration","type":"uint256"}],"name":"lockBountyTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"lockedBalanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"retainedTokensVault","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"senderIsAdmin","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_subtractedValue","type":"uint256"}],"name":"decreaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"MAGNITUDE","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_index","type":"uint256"}],"name":"vestingOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_newUrbitAdminAddress","type":"address"}],"name":"changeAdmin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"burnUnsoldTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"createSaleTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rewardsTokensVault","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleTokensAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"saleClosed","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_fromVault","type":"address"},{"name":"_tokensAmount","type":"uint256"},{"name":"_beneficiary","type":"address"},{"name":"_start","type":"uint256"},{"name":"_cliff","type":"uint256"},{"name":"_duration","type":"uint256"},{"name":"_revocable","type":"bool"}],"name":"vestTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_owner","type":"address"}],"name":"releaseVestedTokensFor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_addedValue","type":"uint256"}],"name":"increaseApproval","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"bountyTokensVault","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"uint256"}],"name":"vestingsOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"urbitAdminAddress","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"closeSale","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"advisorsTokensVault","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_urbitAdminAddress","type":"address"},{"name":"_saleTokensAddress","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"burner","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"VDOC - dutyof.care","address":"0x82BD526bDB718C6d4DD2291Ed013A5186cAE2DCa","comment":"","abi":[{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setTransferAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"mintingFinished","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"}],"name":"setReleaseAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"receiver","type":"address"},{"name":"amount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"burnAmount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"mintAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"addr","type":"address"},{"name":"state","type":"bool"}],"name":"setMintAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"value","type":"uint256"}],"name":"upgrade","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"}],"name":"setTokenInformation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"releaseTokenTransfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"upgradeMaster","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getUpgradeState","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"transferAgents","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"released","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"canUpgrade","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalUpgraded","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"releaseAgent","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"agent","type":"address"}],"name":"setUpgradeAgent","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isToken","outputs":[{"name":"weAre","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"BURN_ADDRESS","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"master","type":"address"}],"name":"setUpgradeMaster","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_initialSupply","type":"uint256"},{"name":"_decimals","type":"uint256"},{"name":"_mintable","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"name":"newName","type":"string"},{"indexed":false,"name":"newSymbol","type":"string"}],"name":"UpdatedTokenInformation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Upgrade","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"agent","type":"address"}],"name":"UpgradeAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"addr","type":"address"},{"indexed":false,"name":"state","type":"bool"}],"name":"MintingAgentChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"receiver","type":"address"},{"indexed":false,"name":"amount","type":"uint256"}],"name":"Minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"burner","type":"address"},{"indexed":false,"name":"burnedAmount","type":"uint256"}],"name":"Burned","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"VIBEX","address":"0x882448f83d90b2bf477af2ea79327fdea1335d93","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"startDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ETH_RECEIVED_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"proceed","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"finalize","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenExchange","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalReceivedEth","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"pause","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"MIN_ETH_TRANS","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ethFundDeposit","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"deadlines","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenAccountAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"","type":"uint256"}],"name":"prices","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"state","outputs":[{"name":"","type":"uint8"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"endDate","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"ETH_RECEIVED_CAP","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"startRedeeming","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_MIN","outputs":[{"name":"","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[],"name":"redeemTokens","outputs":[],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"tokenExchangeAddress","outputs":[{"name":"","type":"address"}],"payable":false,"type":"function"},{"inputs":[],"payable":false,"type":"constructor"},{"payable":true,"type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"LogCreateVIBEX","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"},{"indexed":false,"name":"_value2","type":"uint256"},{"indexed":false,"name":"_value3","type":"uint256"}],"name":"LogRedeemVIBE","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"VORMACOIN","address":"0xc3bc9eb71f75ec439a6b6c8e8b746fcf5b62f703","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeSub","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeDiv","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"tokens","type":"uint256"},{"name":"data","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeMul","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"tokenAddress","type":"address"},{"name":"tokens","type":"uint256"}],"name":"transferAnyERC20Token","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenOwner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"a","type":"uint256"},{"name":"b","type":"uint256"}],"name":"safeAdd","outputs":[{"name":"c","type":"uint256"}],"payable":false,"stateMutability":"pure","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"tokenOwner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"tokens","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"Who The Eth?","address":"0x842D6dA3097B5efdE5a81535144f947Ab482b6eE","comment":"","abi":[{"constant":true,"inputs":[],"name":"numberOfNames","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"names","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"bank","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_address","type":"address"},{"indexed":false,"name":"_name","type":"string"},{"indexed":false,"name":"_time","type":"uint256"},{"indexed":true,"name":"_referrer","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"AddedName","type":"event"},{"constant":false,"inputs":[],"name":"pullFunds","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"newName","type":"string"}],"name":"setName","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"newName","type":"string"},{"name":"ref","type":"address"}],"name":"setNameRefer","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"}]},{"name":"WhoHas","address":"0xe933c0Cd9784414d5F278C114904F5A84b396919","comment":"","abi":[{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"votings_","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_etherAmount","type":"uint256"}],"name":"calculateTokenAmountICO","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"raisedIcoValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"prizePool","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timestampMint","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"circulatingSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"circulatingSupply_","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"timestampRelease","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxSupply_","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balances","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"icoAccounts","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"icoPool","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"permissonedAccounts","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"maxMint","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_icoAddresses","type":"address[]"},{"name":"_level","type":"uint8"}],"name":"registerForICO","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_sender","type":"address"},{"indexed":false,"name":"_votingContract","type":"address"},{"indexed":false,"name":"_hash","type":"bytes32"},{"indexed":false,"name":"_voteAmount","type":"uint256"}],"name":"ParticipatedInVoting","type":"event"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"icoBuy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"},{"name":"_level","type":"uint256"}],"name":"updatePermissions","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_timespan","type":"uint256"},{"name":"_votePrice","type":"uint256"}],"name":"gernerateVoting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"TransferEvent","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_voting","type":"address"},{"indexed":false,"name":"_duration","type":"uint256"},{"indexed":false,"name":"_costPerVote","type":"uint256"}],"name":"VotingStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"winner","type":"address[]"},{"indexed":false,"name":"contest","type":"address"},{"indexed":false,"name":"payoutValue","type":"uint256"}],"name":"WinningEvent","type":"event"},{"constant":false,"inputs":[{"name":"_votingContract","type":"address"},{"name":"_votePrice","type":"uint256"}],"name":"addVoting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_votingContract","type":"address"},{"name":"_hash","type":"bytes32"},{"name":"_quantity","type":"uint256"}],"name":"payForVote","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_votingContract","type":"address"}],"name":"finalizeVoting","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_account","type":"address"}],"name":"updatePrizePool","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"constant":false,"inputs":[{"name":"_winner","type":"address[]"},{"name":"_payoutValue","type":"uint256"},{"name":"_votingAddress","type":"address"}],"name":"payout","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]},{"name":"X8X","address":"0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"MAX_UINT256","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"standard","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_tokenAddress","type":"address"},{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"salvageTokensFromContract","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_untilBlock","type":"uint256"},{"name":"_reason","type":"string"}],"name":"lockUntil","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupplyLimit","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"newOwner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lockedUntilBlock","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_owner","type":"address"},{"name":"_spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_amount","type":"uint256"}],"name":"mintTokens","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_untilBlock","type":"uint256"},{"indexed":false,"name":"_reason","type":"string"}],"name":"ContractLocked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"_prevOwner","type":"address"},{"indexed":false,"name":"_newOwner","type":"address"}],"name":"OwnerUpdate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_from","type":"address"},{"indexed":true,"name":"_to","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"_owner","type":"address"},{"indexed":true,"name":"_spender","type":"address"},{"indexed":false,"name":"_value","type":"uint256"}],"name":"Approval","type":"event"}]},{"name":"XSC","address":"0x0F513fFb4926ff82D7F60A05069047AcA295C413","comment":"","abi":[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"},{"name":"_extraData","type":"bytes"}],"name":"approveAndCall","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"","type":"address"},{"name":"","type":"address"}],"name":"allowance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"initialSupply","type":"uint256"},{"name":"tokenName","type":"string"},{"name":"tokenSymbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]},{"name":"☼Plasma Token & Token Wallet","address":"0x59416A25628A76b4730eC51486114c32E0B582A1","comment":"","abi":[{"constant":true,"inputs":[],"name":"message","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ViewerStatus","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"ViewerValue","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenRateEther","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"}],"name":"registrationFromLogin","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"},{"name":"ActiveAliasAccount","type":"bool"},{"name":"ActiveMainAccount","type":"bool"},{"name":"PromilleDeposit","type":"uint256"},{"name":"DeleteMainAccount","type":"bool"}],"name":"setupAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"NewPIN","type":"uint256"}],"name":"setupAccountPIN","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"deleteLogin","type":"string"},{"name":"newLogin","type":"string"}],"name":"setupLoginVipAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"}],"name":"setupAliasAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"},{"name":"Freezen","type":"bool"}],"name":"frozenSubAccount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"}],"name":"buyVipStatusPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"buyTokenPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"toTransferETHER","type":"address"},{"name":"microToken","type":"uint256"},{"name":"SellDeposit","type":"bool"}],"name":"sellToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"login","type":"string"},{"name":"password","type":"string"}],"name":"depositaryPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"Account","type":"address"},{"name":"microToken","type":"uint256"}],"name":"transfer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"},{"name":"PIN","type":"uint256"}],"name":"transferFromLoginPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"Login","type":"string"}],"name":"transferToLoginPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"microToken","type":"uint256"}],"name":"returnDepositToBalance","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"SubAccount","type":"address"},{"name":"PIN","type":"uint256"}],"name":"transferProtectPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"PIN","type":"uint256"}],"name":"unblockTransferProtectPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"SubAccount","type":"address"},{"name":"pinSubAccount","type":"uint256"},{"name":"promilleRefund","type":"uint256"}],"name":"transferRefundSubAccountPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"MainAccount","type":"address"},{"name":"pinMainAccount","type":"uint256"},{"name":"SubAccount","type":"address"},{"name":"pinSubAccount","type":"uint256"},{"name":"promilleReferee","type":"uint256"}],"name":"refereeTransferProtect","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"VipAccount","type":"bool"},{"name":"ActiveAliasAccount","type":"bool"},{"name":"ActiveMainAccount","type":"bool"},{"name":"MainAccount","type":"address"},{"name":"MyReferralAccount","type":"address"}],"name":"MyAccountStatus","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"Deposit","type":"bool"},{"name":"PromilleDeposit","type":"bool"},{"name":"ZoneToken","type":"bool"}],"name":"MyAccountValue","outputs":[{"name":"value","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"myMessage","type":"string"}],"name":"advertisingPay","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"name":"_value","type":"uint256"}],"name":"burnToken","outputs":[{"name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"microToken","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"Message","type":"string"}],"name":"Advertising","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":false,"name":"microToken","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"PriceVipAccountMicroEther","type":"uint256"},{"indexed":false,"name":"TransferTokensFeeInPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone1InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone2InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone3InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone4InPromille","type":"uint256"},{"indexed":false,"name":"BonusForZone5InPromille","type":"uint256"}],"name":"OptionsContract","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"microETHER","type":"uint256"}],"name":"TokenSellingRate","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/etho/contract-abi-etho.json b/dist/contracts/etho/contract-abi-etho.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/etho/contract-abi-etho.json +++ b/dist/contracts/etho/contract-abi-etho.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/etho/contract-abi-etho.min.json b/dist/contracts/etho/contract-abi-etho.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/etho/contract-abi-etho.min.json +++ b/dist/contracts/etho/contract-abi-etho.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/etsc/contract-abi-etsc.json b/dist/contracts/etsc/contract-abi-etsc.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/etsc/contract-abi-etsc.json +++ b/dist/contracts/etsc/contract-abi-etsc.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/etsc/contract-abi-etsc.min.json b/dist/contracts/etsc/contract-abi-etsc.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/etsc/contract-abi-etsc.min.json +++ b/dist/contracts/etsc/contract-abi-etsc.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/exp/contract-abi-exp.json b/dist/contracts/exp/contract-abi-exp.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/exp/contract-abi-exp.json +++ b/dist/contracts/exp/contract-abi-exp.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/exp/contract-abi-exp.min.json b/dist/contracts/exp/contract-abi-exp.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/exp/contract-abi-exp.min.json +++ b/dist/contracts/exp/contract-abi-exp.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/go/contract-abi-go.json b/dist/contracts/go/contract-abi-go.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/go/contract-abi-go.json +++ b/dist/contracts/go/contract-abi-go.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/go/contract-abi-go.min.json b/dist/contracts/go/contract-abi-go.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/go/contract-abi-go.min.json +++ b/dist/contracts/go/contract-abi-go.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/music/contract-abi-music.json b/dist/contracts/music/contract-abi-music.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/music/contract-abi-music.json +++ b/dist/contracts/music/contract-abi-music.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/music/contract-abi-music.min.json b/dist/contracts/music/contract-abi-music.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/music/contract-abi-music.min.json +++ b/dist/contracts/music/contract-abi-music.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/pirl/contract-abi-pirl.json b/dist/contracts/pirl/contract-abi-pirl.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/pirl/contract-abi-pirl.json +++ b/dist/contracts/pirl/contract-abi-pirl.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/pirl/contract-abi-pirl.min.json b/dist/contracts/pirl/contract-abi-pirl.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/pirl/contract-abi-pirl.min.json +++ b/dist/contracts/pirl/contract-abi-pirl.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/poa/contract-abi-poa.json b/dist/contracts/poa/contract-abi-poa.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/poa/contract-abi-poa.json +++ b/dist/contracts/poa/contract-abi-poa.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/poa/contract-abi-poa.min.json b/dist/contracts/poa/contract-abi-poa.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/poa/contract-abi-poa.min.json +++ b/dist/contracts/poa/contract-abi-poa.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/tomo/contract-abi-tomo.json b/dist/contracts/tomo/contract-abi-tomo.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/tomo/contract-abi-tomo.json +++ b/dist/contracts/tomo/contract-abi-tomo.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/tomo/contract-abi-tomo.min.json b/dist/contracts/tomo/contract-abi-tomo.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/tomo/contract-abi-tomo.min.json +++ b/dist/contracts/tomo/contract-abi-tomo.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/contracts/ubq/contract-abi-ubq.json b/dist/contracts/ubq/contract-abi-ubq.json index 4043b7648..688794a4c 100644 --- a/dist/contracts/ubq/contract-abi-ubq.json +++ b/dist/contracts/ubq/contract-abi-ubq.json @@ -3,6 +3,213 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } ] diff --git a/dist/contracts/ubq/contract-abi-ubq.min.json b/dist/contracts/ubq/contract-abi-ubq.min.json index 33c951b8d..c0b8ea886 100644 --- a/dist/contracts/ubq/contract-abi-ubq.min.json +++ b/dist/contracts/ubq/contract-abi-ubq.min.json @@ -1 +1 @@ -[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[]}] \ No newline at end of file +[{"name":"TEST","address":"0x0000000000000000000000000000000000000000","comment":"","abi":[{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"sale","outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"uint256"},{"name":"","type":"address"},{"name":"","type":"uint256"},{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"invalidate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"cancel","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"registrar","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionStarted","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"}],"name":"finish","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"minimumBid","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"bid","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"auctionEnds","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isBuyable","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"isAuction","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"_price","type":"uint256"},{"name":"reserve","type":"uint256"},{"name":"referrer","type":"address"}],"name":"offer","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"_name","type":"string"},{"name":"bidReferrer","type":"address"}],"name":"buy","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[{"name":"addr","type":"address"}],"name":"balance","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"_name","type":"string"}],"name":"price","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"inputs":[{"name":"_registry","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"price","type":"uint256"},{"indexed":false,"name":"reserve","type":"uint256"}],"name":"Offer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"bidder","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"bid","type":"uint256"}],"name":"Bid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"seller","type":"address"},{"indexed":true,"name":"buyer","type":"address"},{"indexed":false,"name":"name","type":"string"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"name":"name","type":"string"}],"name":"Cancel","type":"event"}]}] \ No newline at end of file diff --git a/dist/tokens/ella/tokens-ella.json b/dist/tokens/ella/tokens-ella.json index a032699ca..748e1e733 100644 --- a/dist/tokens/ella/tokens-ella.json +++ b/dist/tokens/ella/tokens-ella.json @@ -2,7 +2,7 @@ { "symbol": "MINING", "name": "MINING", - "type": "", + "type": "ERC20", "address": "0x991e7fe4b05f2b3db1d788e705963f5d647b0044", "ens_address": "", "decimals": 18, diff --git a/dist/tokens/ella/tokens-ella.min.json b/dist/tokens/ella/tokens-ella.min.json index a37bca04d..7c175e223 100644 --- a/dist/tokens/ella/tokens-ella.min.json +++ b/dist/tokens/ella/tokens-ella.min.json @@ -1 +1 @@ -[{"symbol":"MINING","name":"MINING","type":"","address":"0x991e7fe4b05f2b3db1d788e705963f5d647b0044","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}}] \ No newline at end of file +[{"symbol":"MINING","name":"MINING","type":"ERC20","address":"0x991e7fe4b05f2b3db1d788e705963f5d647b0044","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}}] \ No newline at end of file diff --git a/dist/tokens/etc/tokens-etc.json b/dist/tokens/etc/tokens-etc.json index ff76e8677..59eee7fad 100644 --- a/dist/tokens/etc/tokens-etc.json +++ b/dist/tokens/etc/tokens-etc.json @@ -53,9 +53,10 @@ }, { "symbol": "UNV", + "name": "UniversalCoin", + "type": "ERC20", "address": "0x6ADa6F48C815689502C43eC1a59F1b5DD3C04E1F", "decimals": 18, - "name": "UniversalCoin", "ens_address": "", "website": "https://universalcoin.io/", "logo": { @@ -64,7 +65,7 @@ "height": "256", "ipfs_hash": "" }, - "support": { "info@universalcoin.io": "", "url": "" }, + "support": { "email": "info@universalcoin.io", "url": "" }, "social": { "blog": "", "chat": "", diff --git a/dist/tokens/etc/tokens-etc.min.json b/dist/tokens/etc/tokens-etc.min.json index feb506eb2..cdea22826 100644 --- a/dist/tokens/etc/tokens-etc.min.json +++ b/dist/tokens/etc/tokens-etc.min.json @@ -1 +1 @@ -[{"symbol":"BEC","name":"BEC","type":"ERC20","address":"0x085fb4f24031eaedbc2b611aa528f22343eb52db","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PLAY","name":"Smart Billions","type":"ERC20","address":"0x5ace17f87c7391e5792a7683069a8025b83bbd85","ens_address":"","decimals":0,"website":"http://smartbillions.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@smartbillions.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"UNV","address":"0x6ADa6F48C815689502C43eC1a59F1b5DD3C04E1F","decimals":18,"name":"UniversalCoin","ens_address":"","website":"https://universalcoin.io/","logo":{"src":"https://i.imgur.com/al48IYQ.png","width":"256","height":"256","ipfs_hash":""},"support":{"info@universalcoin.io":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2726356.new;topicseen#new","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/UniversalCoin/","slack":"","telegram":"https://t.me/joinchat/IlFnGE8aozmwGCHG3q6eww","twitter":"https://twitter.com/Universal_Coin","youtube":""}}] \ No newline at end of file +[{"symbol":"BEC","name":"BEC","type":"ERC20","address":"0x085fb4f24031eaedbc2b611aa528f22343eb52db","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PLAY","name":"Smart Billions","type":"ERC20","address":"0x5ace17f87c7391e5792a7683069a8025b83bbd85","ens_address":"","decimals":0,"website":"http://smartbillions.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@smartbillions.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"UNV","name":"UniversalCoin","type":"ERC20","address":"0x6ADa6F48C815689502C43eC1a59F1b5DD3C04E1F","decimals":18,"ens_address":"","website":"https://universalcoin.io/","logo":{"src":"https://i.imgur.com/al48IYQ.png","width":"256","height":"256","ipfs_hash":""},"support":{"email":"info@universalcoin.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2726356.new;topicseen#new","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/UniversalCoin/","slack":"","telegram":"https://t.me/joinchat/IlFnGE8aozmwGCHG3q6eww","twitter":"https://twitter.com/Universal_Coin","youtube":""}}] \ No newline at end of file diff --git a/dist/tokens/eth/tokens-eth.json b/dist/tokens/eth/tokens-eth.json index e170e09ca..09ae0a235 100644 --- a/dist/tokens/eth/tokens-eth.json +++ b/dist/tokens/eth/tokens-eth.json @@ -386,6 +386,7 @@ }, "social": { "blog": "https://medium.com/theabyss", + "chat": "", "discord": "https://discord.theabyss.com", "facebook": "https://www.facebook.com/theabyss", "forum": "https://bitcointalk.theabyss.com", @@ -397,7 +398,7 @@ "slack": "", "telegram": "https://t.me/theabyss", "twitter": "https://twitter.com/theabyss", - "vimeo": "https://www.vimeo.com/theabyss" + "youtube": "" } }, { @@ -2992,66 +2993,66 @@ }, { "symbol": "BTT", - "name": "Blocktrade.com", + "name": "Bitether", "type": "ERC20", - "address": "0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff", + "address": "0x080aa07e2c7185150d7e4da98838a8d2feac3dfc", "ens_address": "", - "decimals": 18, - "website": "https://blocktrade.com/", + "decimals": 0, + "website": "https://bytom.io", "logo": { - "src": "https://blocktrade.com/wp-content/uploads/2018/05/blocktradecom_logo.png?39a15b&39a15b", - "width": 3938, - "height": 478, + "src": "https://www.bitether.co/wp-content/uploads/thegem-logos/logo_865d0b770c80162beeec3624ca062e6d_1x.png", + "width": 164, + "height": 63, "ipfs_hash": "" }, - "support": { - "email": "support@blocktrade.com", - "url": "https://support.blocktrade.com/" - }, + "support": { "email": "support@bitether.co", "url": "" }, "social": { - "blog": "https://blocktrade.com/news/", + "blog": "", "chat": "", - "facebook": "https://www.facebook.com/Blocktradecom/", + "facebook": "https://t.me/BitEthercoin", "forum": "", - "github": "", + "github": "https://github.com/Andyss4545/BitEther", "gitter": "", "instagram": "", - "linkedin": "https://www.linkedin.com/company/blocktradecom/", + "linkedin": "", "reddit": "", "slack": "", - "telegram": "", - "twitter": "https://twitter.com/Blocktradecom", + "telegram": "https://t.me/BitEthercoin", + "twitter": "https://twitter.com/bitEther_coin", "youtube": "" } }, { "symbol": "BTT", - "name": "Bitether", + "name": "Blocktrade.com", "type": "ERC20", - "address": "0x080aa07e2c7185150d7e4da98838a8d2feac3dfc", + "address": "0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff", "ens_address": "", - "decimals": 0, - "website": "https://bytom.io", + "decimals": 18, + "website": "https://blocktrade.com/", "logo": { - "src": "https://www.bitether.co/wp-content/uploads/thegem-logos/logo_865d0b770c80162beeec3624ca062e6d_1x.png", - "width": 164, - "height": 63, + "src": "https://blocktrade.com/wp-content/uploads/2018/05/blocktradecom_logo.png?39a15b&39a15b", + "width": 3938, + "height": 478, "ipfs_hash": "" }, - "support": { "email": "support@bitether.co", "url": "" }, + "support": { + "email": "support@blocktrade.com", + "url": "https://support.blocktrade.com/" + }, "social": { - "blog": "", + "blog": "https://blocktrade.com/news/", "chat": "", - "facebook": "https://t.me/BitEthercoin", + "facebook": "https://www.facebook.com/Blocktradecom/", "forum": "", - "github": "https://github.com/Andyss4545/BitEther", + "github": "", "gitter": "", "instagram": "", - "linkedin": "", + "linkedin": "https://www.linkedin.com/company/blocktradecom/", "reddit": "", "slack": "", - "telegram": "https://t.me/BitEthercoin", - "twitter": "https://twitter.com/bitEther_coin", + "telegram": "", + "twitter": "https://twitter.com/Blocktradecom", "youtube": "" } }, @@ -4395,14 +4396,14 @@ }, { "symbol": "COSS", - "name": "Coss Token", + "name": "COSS", "type": "ERC20", - "address": "0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c", + "address": "0x65292eeadf1426cd2df1c4793a3d7519f253913b", "ens_address": "", "decimals": 18, - "website": "https://coss.io", + "website": "", "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, - "support": { "email": "info@coss.io", "url": "" }, + "support": { "email": "", "url": "" }, "social": { "blog": "", "chat": "", @@ -4421,14 +4422,14 @@ }, { "symbol": "COSS", - "name": "COSS", + "name": "Coss Token", "type": "ERC20", - "address": "0x65292eeadf1426cd2df1c4793a3d7519f253913b", + "address": "0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c", "ens_address": "", "decimals": 18, - "website": "", + "website": "https://coss.io", "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, - "support": { "email": "", "url": "" }, + "support": { "email": "info@coss.io", "url": "" }, "social": { "blog": "", "chat": "", @@ -6046,7 +6047,7 @@ "blog": "https://medium.com/@doBETacceptBET", "chat": "https://bitcointalk.org/index.php?topic=1958953.0", "facebook": "https://www.facebook.com/betcoin.dobetacceptbet", - "fourm": "https://bitcointalk.org/index.php?topic=1958953.0", + "forum": "https://bitcointalk.org/index.php?topic=1958953.0", "github": "https://github.com/dobetacceptbet", "gitter": "", "instagram": "", @@ -6198,19 +6199,14 @@ }, { "symbol": "DRP", - "name": "Dripcoin", + "name": "DCorp", "type": "ERC20", - "address": "0x2799d90c6d44cb9aa5fbc377177f16c33e056b82", + "address": "0x621d78f2ef2fd937bfca696cabaf9a779f59b3ed", "ens_address": "", - "decimals": 0, - "website": "http://drpcoin.com", - "logo": { - "src": "https://i.imgur.com/3V7N7hr.png", - "width": "256", - "height": "256", - "ipfs_hash": "" - }, - "support": { "email": "help@drpcoin.com", "url": "" }, + "decimals": 2, + "website": "https://www.dcorp.it", + "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, + "support": { "email": "", "url": "" }, "social": { "blog": "", "chat": "", @@ -6218,25 +6214,30 @@ "forum": "", "github": "", "gitter": "", - "instagram": "https://instagram.com/drip_coin", + "instagram": "", "linkedin": "", - "reddit": "https://reddit.com/r/dripcoin", + "reddit": "", "slack": "", "telegram": "", - "twitter": "https://twitter.com/drip_coin", + "twitter": "", "youtube": "" } }, { "symbol": "DRP", - "name": "DCorp", + "name": "Dripcoin", "type": "ERC20", - "address": "0x621d78f2ef2fd937bfca696cabaf9a779f59b3ed", + "address": "0x2799d90c6d44cb9aa5fbc377177f16c33e056b82", "ens_address": "", - "decimals": 2, - "website": "https://www.dcorp.it", - "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, - "support": { "email": "", "url": "" }, + "decimals": 0, + "website": "http://drpcoin.com", + "logo": { + "src": "https://i.imgur.com/3V7N7hr.png", + "width": "256", + "height": "256", + "ipfs_hash": "" + }, + "support": { "email": "help@drpcoin.com", "url": "" }, "social": { "blog": "", "chat": "", @@ -6244,12 +6245,12 @@ "forum": "", "github": "", "gitter": "", - "instagram": "", + "instagram": "https://instagram.com/drip_coin", "linkedin": "", - "reddit": "", + "reddit": "https://reddit.com/r/dripcoin", "slack": "", "telegram": "", - "twitter": "", + "twitter": "https://twitter.com/drip_coin", "youtube": "" } }, @@ -6401,32 +6402,6 @@ "youtube": "" } }, - { - "symbol": "DTx", - "name": "DigitalTicks", - "type": "ERC20", - "address": "0x82fdedfB7635441aA5A92791D001fA7388da8025", - "ens_address": "", - "decimals": 18, - "website": "", - "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, - "support": { "email": "", "url": "" }, - "social": { - "blog": "", - "chat": "", - "facebook": "", - "forum": "", - "github": "", - "gitter": "", - "instagram": "", - "linkedin": "", - "reddit": "", - "slack": "", - "telegram": "", - "twitter": "", - "youtube": "" - } - }, { "symbol": "DTX", "name": "DaTa eXchange Token", @@ -6453,6 +6428,32 @@ "youtube": "https://www.youtube.com/channel/UCUmxSlaliIuF0Z3yNw8y_uA" } }, + { + "symbol": "DTx", + "name": "DigitalTicks", + "type": "ERC20", + "address": "0x82fdedfB7635441aA5A92791D001fA7388da8025", + "ens_address": "", + "decimals": 18, + "website": "", + "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, + "support": { "email": "", "url": "" }, + "social": { + "blog": "", + "chat": "", + "facebook": "", + "forum": "", + "github": "", + "gitter": "", + "instagram": "", + "linkedin": "", + "reddit": "", + "slack": "", + "telegram": "", + "twitter": "", + "youtube": "" + } + }, { "symbol": "DUBI", "name": "DUBI", @@ -8676,7 +8677,7 @@ "height": "286", "ipfs_hash": "" }, - "support": { "email": "admin@growchain.net" }, + "support": { "email": "admin@growchain.net", "url": "" }, "social": { "blog": "", "chat": "", @@ -8707,7 +8708,7 @@ "height": "120", "ipfs_hash": "" }, - "support": { "email": "info@gselab.org" }, + "support": { "email": "info@gselab.org", "url": "" }, "social": { "blog": "", "chat": "", @@ -9393,37 +9394,6 @@ "youtube": "https://www.youtube.com/channel/UC2lOnpQUPVE13E_Mpp5TVsA" } }, - { - "symbol": "HOT", - "name": "Hydro Protocol", - "type": "ERC20", - "address": "0x9af839687f6c94542ac5ece2e317daae355493a1", - "ens_address": "", - "decimals": 18, - "website": "https://thehydrofoundation.com/", - "logo": { - "src": "https://s2.coinmarketcap.com/static/img/coins/32x32/2430.png", - "width": "32", - "height": "32", - "ipfs_hash": "" - }, - "support": { "email": "libukang@ddex.io", "url": "" }, - "social": { - "blog": "", - "chat": "", - "facebook": "", - "forum": "", - "github": "", - "gitter": "", - "instagram": "", - "linkedin": "", - "reddit": "", - "slack": "", - "telegram": "https://t.me/hydroprotocol", - "twitter": "", - "youtube": "" - } - }, { "symbol": "HOT", "name": "HoloToken", @@ -9458,6 +9428,37 @@ "youtube": "https://www.youtube.com/channel/UCSRJRJvkZHk3f1PemqT-R0g" } }, + { + "symbol": "HOT", + "name": "Hydro Protocol", + "type": "ERC20", + "address": "0x9af839687f6c94542ac5ece2e317daae355493a1", + "ens_address": "", + "decimals": 18, + "website": "https://thehydrofoundation.com/", + "logo": { + "src": "https://s2.coinmarketcap.com/static/img/coins/32x32/2430.png", + "width": "32", + "height": "32", + "ipfs_hash": "" + }, + "support": { "email": "libukang@ddex.io", "url": "" }, + "social": { + "blog": "", + "chat": "", + "facebook": "", + "forum": "", + "github": "", + "gitter": "", + "instagram": "", + "linkedin": "", + "reddit": "", + "slack": "", + "telegram": "https://t.me/hydroprotocol", + "twitter": "", + "youtube": "" + } + }, { "symbol": "HST", "name": "HST", @@ -12240,64 +12241,64 @@ }, { "symbol": "MTC", - "name": "Medical Token Currency", + "name": "MTC Mesh Network", "type": "ERC20", - "address": "0x905E337c6c8645263D3521205Aa37bf4d034e745", + "address": "0xdfdc0d82d96f8fd40ca0cfb4a288955becec2088", "ens_address": "", "decimals": 18, - "website": "https://ico.docademic.com/", + "website": "https://www.mtc.io/", "logo": { - "src": "https://cdn.docademic.com/images/ico/mtc200.png", + "src": "http://bbs.mtc.io/upload/picture/user/avatar/7218.jpg", "width": "200", "height": "200", "ipfs_hash": "" }, - "support": { "email": "support@docademic.com", "url": "" }, + "support": { "email": "team@mtc.io", "url": "" }, "social": { - "blog": "https://news.docademic.com", - "chat": "", - "facebook": "https://www.facebook.com/docademic", + "blog": "https://weibo.com/u/6434555011?refer_flag=1001030103_&is_hot=1", + "chat": "https://t.me/MTC_IO", + "facebook": "https://www.facebook.com/mtcmeshnetworks/", "forum": "", - "github": "https://github.com/Docademic", + "github": "", "gitter": "", - "instagram": "https://www.instagram.com/docademic/", - "linkedin": "https://www.linkedin.com/company/doctordice/", - "reddit": "https://www.reddit.com/user/Docademic/", + "instagram": "", + "linkedin": "", + "reddit": "https://www.reddit.com/user/MTCMeshNetwork", "slack": "", - "telegram": "https://t.me/docademicofficial", - "twitter": "https://twitter.com/docademic", - "youtube": "https://www.youtube.com/channel/UCnF48IoeGNu6P78ABB2XhSw/videos?view_as=subscriber" + "telegram": "https://t.me/MTC_IO", + "twitter": "https://twitter.com/mtcmesh", + "youtube": "https://www.youtube.com/channel/UCL-GR6sJSh19h_ByRuE8mTw?view_as=subscriber" } }, { "symbol": "MTC", - "name": "MTC Mesh Network", + "name": "Medical Token Currency", "type": "ERC20", - "address": "0xdfdc0d82d96f8fd40ca0cfb4a288955becec2088", + "address": "0x905E337c6c8645263D3521205Aa37bf4d034e745", "ens_address": "", "decimals": 18, - "website": "https://www.mtc.io/", + "website": "https://ico.docademic.com/", "logo": { - "src": "http://bbs.mtc.io/upload/picture/user/avatar/7218.jpg", + "src": "https://cdn.docademic.com/images/ico/mtc200.png", "width": "200", "height": "200", "ipfs_hash": "" }, - "support": { "email": "team@mtc.io", "url": "" }, + "support": { "email": "support@docademic.com", "url": "" }, "social": { - "blog": "https://weibo.com/u/6434555011?refer_flag=1001030103_&is_hot=1", - "chat": "https://t.me/MTC_IO", - "facebook": "https://www.facebook.com/mtcmeshnetworks/", + "blog": "https://news.docademic.com", + "chat": "", + "facebook": "https://www.facebook.com/docademic", "forum": "", - "github": "", + "github": "https://github.com/Docademic", "gitter": "", - "instagram": "", - "linkedin": "", - "reddit": "https://www.reddit.com/user/MTCMeshNetwork", + "instagram": "https://www.instagram.com/docademic/", + "linkedin": "https://www.linkedin.com/company/doctordice/", + "reddit": "https://www.reddit.com/user/Docademic/", "slack": "", - "telegram": "https://t.me/MTC_IO", - "twitter": "https://twitter.com/mtcmesh", - "youtube": "https://www.youtube.com/channel/UCL-GR6sJSh19h_ByRuE8mTw?view_as=subscriber" + "telegram": "https://t.me/docademicofficial", + "twitter": "https://twitter.com/docademic", + "youtube": "https://www.youtube.com/channel/UCnF48IoeGNu6P78ABB2XhSw/videos?view_as=subscriber" } }, { @@ -15114,7 +15115,7 @@ "height": "", "ipfs_hash": "" }, - "support": { "email": "support@radioyo.fm" }, + "support": { "email": "support@radioyo.fm", "url": "" }, "social": { "blog": "", "chat": "", @@ -16322,6 +16323,35 @@ "youtube": "" } }, + { + "symbol": "SKRP", + "name": "Skraps", + "type": "ERC20", + "address": "0x6E34d8d84764D40f6D7b39cd569Fd017bF53177D", + "ens_address": "", + "decimals": 18, + "website": "https://skraps.io/", + "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, + "support": { + "email": "info@skraps.io", + "url": "https://skraps.io/#support" + }, + "social": { + "blog": "https://medium.com/@SKRAPS_IO", + "chat": "", + "facebook": "https://www.facebook.com/SKRAPSAPP/", + "forum": "", + "github": "", + "gitter": "", + "instagram": "", + "linkedin": "", + "reddit": "https://www.reddit.com/r/SKRAPSio/", + "slack": "", + "telegram": "https://t.me/SkrapsOfficial", + "twitter": "https://twitter.com/SKRAPS_IO", + "youtube": "" + } + }, { "symbol": "SKRP", "name": "SKRP (Phase 1-E)", @@ -16374,35 +16404,6 @@ "youtube": "" } }, - { - "symbol": "SKRP", - "name": "Skraps", - "type": "ERC20", - "address": "0x6E34d8d84764D40f6D7b39cd569Fd017bF53177D", - "ens_address": "", - "decimals": 18, - "website": "https://skraps.io/", - "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, - "support": { - "email": "info@skraps.io", - "url": "https://skraps.io/#support" - }, - "social": { - "blog": "https://medium.com/@SKRAPS_IO", - "chat": "", - "facebook": "https://www.facebook.com/SKRAPSAPP/", - "forum": "", - "github": "", - "gitter": "", - "instagram": "", - "linkedin": "", - "reddit": "https://www.reddit.com/r/SKRAPSio/", - "slack": "", - "telegram": "https://t.me/SkrapsOfficial", - "twitter": "https://twitter.com/SKRAPS_IO", - "youtube": "" - } - }, { "symbol": "SLT", "name": "Smartlands", @@ -16455,6 +16456,32 @@ "youtube": "" } }, + { + "symbol": "SMT", + "name": "SmartMesh", + "type": "ERC20", + "address": "0x55f93985431fc9304077687a35a1ba103dc1e081", + "ens_address": "", + "decimals": 18, + "website": "http://smartmesh.io", + "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, + "support": { "email": "tomcat@smartmesh.io", "url": "" }, + "social": { + "blog": "", + "chat": "", + "facebook": "https://www.facebook.com/smartmesh/", + "forum": "https://bitcointalk.org/index.php?topic=2314643.0;all", + "github": "https://github.com/SmartMeshFoundation", + "gitter": "", + "instagram": "https://www.instagram.com/explore/tags/smartmesh/", + "linkedin": "https://www.linkedin.com/company/smartmesh-foundation/", + "reddit": "https://www.reddit.com/r/SmartMesh/", + "slack": "", + "telegram": "t.me@SmartMesh", + "twitter": "https://twitter.com/smart_mesh?lang=en", + "youtube": "https://m.youtube.com/channel/UCrrPpnGqu7PJeU13U0VRPBA" + } + }, { "symbol": "SMT", "name": "Smart Node", @@ -16510,32 +16537,6 @@ "youtube": "https://www.youtube.com/channel/UCPJ919jN8eCcVDkzbCR06nw" } }, - { - "symbol": "SMT", - "name": "SmartMesh", - "type": "ERC20", - "address": "0x55f93985431fc9304077687a35a1ba103dc1e081", - "ens_address": "", - "decimals": 18, - "website": "http://smartmesh.io", - "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, - "support": { "email": "tomcat@smartmesh.io", "url": "" }, - "social": { - "blog": "", - "chat": "", - "facebook": "https://www.facebook.com/smartmesh/", - "forum": "https://bitcointalk.org/index.php?topic=2314643.0;all", - "github": "https://github.com/SmartMeshFoundation", - "gitter": "", - "instagram": "https://www.instagram.com/explore/tags/smartmesh/", - "linkedin": "https://www.linkedin.com/company/smartmesh-foundation/", - "reddit": "https://www.reddit.com/r/SmartMesh/", - "slack": "", - "telegram": "t.me@SmartMesh", - "twitter": "https://twitter.com/smart_mesh?lang=en", - "youtube": "https://m.youtube.com/channel/UCrrPpnGqu7PJeU13U0VRPBA" - } - }, { "symbol": "SNC", "name": "SNC", @@ -17846,6 +17847,37 @@ "youtube": "" } }, + { + "symbol": "TLX", + "name": "Telex", + "type": "ERC20", + "address": "0xb3616550abc8af79c7a5902def9efa3bc9a95200", + "ens_address": "", + "decimals": 8, + "website": "https://telexai.com", + "logo": { + "src": "http://telexai.com/img/tlxlogo.png", + "width": "656px", + "height": "656px", + "ipfs_hash": "" + }, + "support": { "email": "info@telexai.com", "url": "https://t.me/telexai" }, + "social": { + "blog": "https://medium.com/telexai", + "chat": "", + "facebook": "https://www.facebook.com/telexai", + "forum": "", + "github": "", + "gitter": "", + "instagram": "", + "linkedin": "", + "reddit": "", + "slack": "", + "telegram": "https://t.me/telexai", + "twitter": "https://twitter.com/telex_ai", + "youtube": "" + } + }, { "symbol": "TNT", "name": "Tierion Network Token", @@ -18181,6 +18213,37 @@ "youtube": "" } }, + { + "symbol": "URB", + "address": "0x931684139f756C24eC0731E9F74FE50e5548dDeF", + "type": "ERC20", + "decimals": 18, + "name": "Urbit Data", + "ens_address": "urbitdata.eth", + "website": "https://urbitdata.io", + "logo": { + "src": "https://urbitdata.io/blog/wp-content/uploads/2018/08/urbit-final-128x128.png", + "width": "128", + "height": "128", + "ipfs_hash": "" + }, + "support": { "email": "support@urbitdata.io", "url": "" }, + "social": { + "blog": "https://urbitdata.io/blog", + "chat": "", + "facebook": "https://facebook.com/urbitdata", + "forum": "", + "github": "https://github.com/urbitdata", + "gitter": "", + "instagram": "https://www.instagram.com/urbitdata/", + "linkedin": "https://www.linkedin.com/company/urbitdata", + "reddit": "https://www.reddit.com/r/UrbitData/", + "slack": "", + "telegram": "https://t.me/urbit", + "twitter": "https://twitter.com/urbitdata", + "youtube": "https://www.youtube.com/channel/UCJRSNm_SN1v-yzmjdmdBUPg" + } + }, { "symbol": "USDM", "name": "Mether (USDM)", @@ -18823,6 +18886,40 @@ "youtube": "" } }, + { + "symbol": "WATT", + "name": "WorkChain App Token", + "type": "ERC20", + "address": "0x829A4cA1303383F1082B6B1fB937116e4b3b5605", + "ens_address": "", + "decimals": 18, + "website": "https://workchain.io/", + "logo": { + "src": "https://workchain.io/downloads/workTOKEN/logo_128.png", + "width": "128", + "height": "128", + "ipfs_hash": "" + }, + "support": { + "email": "ping@workchain.io", + "url": "https://help.workchain.io/" + }, + "social": { + "blog": "https://medium.com/workchain-io", + "chat": "", + "facebook": "https://www.facebook.com/workchain.io", + "forum": "https://bitcointalk.org/index.php?topic=4747371.0", + "github": "https://github.com/workchainio", + "gitter": "", + "instagram": "https://www.instagram.com/workchain.io/", + "linkedin": "https://www.linkedin.com/company/workchain-io/", + "reddit": "https://www.reddit.com/r/workchainio", + "slack": "", + "telegram": "https://t.me/workchainio", + "twitter": "https://twitter.com/workchain_io", + "youtube": "https://www.youtube.com/channel/UCA8M_FrBflu3ahdF0sBFPcA" + } + }, { "symbol": "WAX", "name": "WAX", @@ -19168,16 +19265,16 @@ }, { "symbol": "WOLK", - "name": "Wolk Token", + "name": "WOLK", "type": "ERC20", - "address": "0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f", + "address": "0x728781E75735dc0962Df3a51d7Ef47E798A7107E", "ens_address": "", "decimals": 18, - "website": "https://www.wolk.com", + "website": "", "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, - "support": { "email": "services@wolk.com", "url": "" }, + "support": { "email": "", "url": "" }, "social": { - "blog": "https://blog.wolk.com", + "blog": "", "chat": "", "facebook": "", "forum": "", @@ -19185,25 +19282,25 @@ "gitter": "", "instagram": "", "linkedin": "", - "reddit": "https://www.reddit.com/r/wolktoken", + "reddit": "", "slack": "", - "telegram": "https://t.me/joinchat/GkePIg2-n4y5VQn4epAQOw", - "twitter": "https://twitter.com/wolkinc", + "telegram": "", + "twitter": "", "youtube": "" } }, { "symbol": "WOLK", - "name": "WOLK", + "name": "Wolk Token", "type": "ERC20", - "address": "0x728781E75735dc0962Df3a51d7Ef47E798A7107E", + "address": "0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f", "ens_address": "", "decimals": 18, - "website": "", + "website": "https://www.wolk.com", "logo": { "src": "", "width": "", "height": "", "ipfs_hash": "" }, - "support": { "email": "", "url": "" }, + "support": { "email": "services@wolk.com", "url": "" }, "social": { - "blog": "", + "blog": "https://blog.wolk.com", "chat": "", "facebook": "", "forum": "", @@ -19211,10 +19308,10 @@ "gitter": "", "instagram": "", "linkedin": "", - "reddit": "", + "reddit": "https://www.reddit.com/r/wolktoken", "slack": "", - "telegram": "", - "twitter": "", + "telegram": "https://t.me/joinchat/GkePIg2-n4y5VQn4epAQOw", + "twitter": "https://twitter.com/wolkinc", "youtube": "" } }, diff --git a/dist/tokens/eth/tokens-eth.min.json b/dist/tokens/eth/tokens-eth.min.json index 69e5f74f0..a48e24f32 100644 --- a/dist/tokens/eth/tokens-eth.min.json +++ b/dist/tokens/eth/tokens-eth.min.json @@ -1 +1 @@ -[{"symbol":"$FFC","name":"$Fluzcoin","type":"ERC20","address":"0x4E84E9e5fb0A972628Cf4568c403167EF1D40431","ens_address":"","decimals":18,"website":"https://fluzcoin.io/","logo":{"src":"https://i.imgur.com/ar18ECx.png","width":"358","height":"373","ipfs_hash":""},"support":{"email":"info@fluzcoin.io","url":"https://fluzcoin.io/"},"social":{"blog":"https://medium.com/@fluzcoin","chat":"","facebook":"https://www.facebook.com/fluzcoin/","forum":"https://bitcointalk.org/index.php?topic=3794410.0","github":"https://github.com/Fluzcoin","gitter":"","instagram":"https://www.instagram.com/fluzcoin.official/","linkedin":"https://www.linkedin.com/company/fluzcoin/","reddit":"https://www.reddit.com/r/fluzcoin/","slack":"","telegram":"https://t.me/Fluzcoin_Foundation","twitter":"https://twitter.com/fluzcoin","youtube":"https://www.youtube.com/channel/UCdK-HoZdmvmC-9bS5TeJT0g"}},{"symbol":"$FXY","name":"$FIXY NETWORK","type":"ERC20","address":"0xa024e8057eec474a9b2356833707dd0579e26ef3","ens_address":"","decimals":18,"website":"https://fixyapp.io","logo":{"src":"https://ibb.co/diUwiJ","width":"300","height":"299","ipfs_hash":""},"support":{"email":"ht@fixyapp.io","url":"https://fixyapp.io"},"social":{"blog":"https://medium.com/@fixynetwork","chat":"","facebook":"https://www.facebook.com/Fixyapp.io/","forum":"https://bitcointalk.org/index.php?topic=3084108.0","github":"https://github.com/fixynetwork/FIXY-NETWORK","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/fixynetwork","twitter":"https://twitter.com/fixy_app","youtube":""}},{"symbol":"$HUR","name":"$Hurify Token","type":"ERC20","address":"0xcdb7ecfd3403eef3882c65b761ef9b5054890a47","ens_address":"","decimals":18,"website":"https://hurify.co/","logo":{"src":"https://hurify.co/wp-content/uploads/2018/03/hurify_fav_icon.png","width":"300","height":"302","ipfs_hash":""},"support":{"email":"support@hurify.co","url":"https://hurify.co"},"social":{"blog":"https://hurify.co/blog","chat":"","facebook":"https://www.facebook.com/hurify/","forum":"https://bitcointalk.org/index.php?action=profile;u=1244776","github":"https://github.com/HurifyPlatform","gitter":"","instagram":"","medium":"https://medium.com/@Hurify","linkedin":"https://www.linkedin.com/company/hurify/","reddit":"https://www.reddit.com/user/Hurify/","slack":"","telegram":"https://t.me/joinchat/hurifyico","twitter":"https://twitter.com/Hurify_hur","youtube":"https://www.youtube.com/channel/UCcdoOI2eF06j1W_E6tgs3uw"}},{"symbol":"$IQN","name":"$IQeon","type":"ERC20","address":"0x0db8d8b76bc361bacbb72e2c491e06085a97ab31","ens_address":"","decimals":18,"website":"https://iqeon.io/","logo":{"src":"https://s3.eu-central-1.amazonaws.com/iqeon-content/logo/4_5953844568075010913.png","width":115,"height":128,"ipfs_hash":""},"support":{"email":"support@iqeon.io","url":"https://iqeon.io/faq"},"social":{"blog":"https://iqeon.io/news","chat":"","facebook":"https://www.facebook.com/iqeon/","forum":"https://bitcointalk.org/index.php?topic=2479328.0","github":"https://github.com/iqeon","gitter":"","instagram":"https://www.instagram.com/iqeon.io/","linkedin":"https://www.linkedin.com/company/iqeon/","reddit":"https://www.reddit.com/r/IQeon/","slack":"","telegram":"https://t.me/IQeonICO","twitter":"https://twitter.com/IQeon","youtube":"https://www.youtube.com/channel/UCf2z_AnX8YvLAgsrjtHYP1Q"}},{"symbol":"$TEAK","name":"$TEAK","type":"ERC20","address":"0x7dd7f56d697cc0f2b52bd55c057f378f1fe6ab4b","ens_address":"","decimals":18,"website":"https://steak.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@steak.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"0xBTC","name":"0xBitcoin","type":"ERC20","address":"0xB6eD7644C69416d67B522e20bC294A9a9B405B31","ens_address":"","decimals":8,"website":"https://0xbitcoin.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@0xbitcoin.org","url":"https://0xbitcoin.org/"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/0xbitcoin","slack":"","telegram":"t.me/ZEROxBTC","twitter":"","youtube":""}},{"symbol":"1ST","name":"FirstBlood","type":"ERC20","address":"0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7","ens_address":"","decimals":18,"website":"https://firstblood.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.firstblood.io","telegram":"","twitter":"","youtube":""}},{"symbol":"1WO","name":"1WO","type":"ERC20","address":"0xfdbc1adc26f0f8f8606a5d63b7d3a3cd21c22b23","ens_address":"","decimals":8,"website":"https://ico.1worldonline.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@1worldonline.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/1WorldOnlineInc","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/Fu2jLgtH-b2obpp1FO5jyQ","twitter":"https://twitter.com/1World_Online","youtube":""}},{"symbol":"2DC","name":"DualChain","type":"ERC20","address":"0x9fC0583220eB44fAeE9e2dc1E63F39204DDD9090","ens_address":"","decimals":18,"website":"","logo":{"src":"https://image.ibb.co/iniG4c/282541262323.png","width":"400","height":"400","ipfs_hash":""},"support":{"email":"admin@comprabitcoin.online","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CompraBitcoin-1453383194773687/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"300","name":"300 Token Sparta","type":"ERC20","address":"0xaEc98A708810414878c3BCDF46Aad31dEd4a4557","ens_address":"","decimals":18,"website":"https://300tokensparta.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/300_Token","youtube":""}},{"symbol":"3LT","name":"TrillionToken","type":"ERC20","address":"0x430241368c1D293fdA21DBa8Bb7aF32007c59109","ens_address":"","decimals":8,"website":"https://3lt.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"A18","name":"Apollo18","type":"ERC20","address":"0xBDe8f7820b5544a49D34F9dDeaCAbEDC7C0B5adc","ens_address":"","decimals":0,"website":"https://apollo18.co.in","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@apollo18.co.in","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.apollo18.co.in","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://telegram.apollo18.co.in","twitter":"https://twitter.apollo18.co.in","youtube":""}},{"symbol":"ABT","name":"ArcBlock Token","type":"ERC20","address":"0xb98d4c97425d9908e66e53a6fdf673acca0be986","ens_address":"","decimals":18,"website":"https://www.arcblock.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@arcblock.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ABYSS","name":"ABYSS","type":"ERC20","address":"0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6","ens_address":"","decimals":18,"website":"https://www.theabyss.com","logo":{"src":"https://www.theabyss.com/static/img/abyss_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@theabyss.com","url":"https://t.me/theabyss"},"social":{"blog":"https://medium.com/theabyss","discord":"https://discord.theabyss.com","facebook":"https://www.facebook.com/theabyss","forum":"https://bitcointalk.theabyss.com","github":"https://github.com/theabyssportal","gitter":"","instagram":"https://instagram.com/theabyssportal","linkedin":"https://www.linkedin.com/company/theabyss","reddit":"https://reddit.theabyss.com","slack":"","telegram":"https://t.me/theabyss","twitter":"https://twitter.com/theabyss","vimeo":"https://www.vimeo.com/theabyss"}},{"symbol":"ACC","name":"Accelerator Network","type":"ERC20","address":"0x13f1b7fdfbe1fc66676d56483e21b1ecb40b58e2","ens_address":"","decimals":18,"website":"http://accelerator.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@accelerator.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.accelerator.network","telegram":"","twitter":"https://twitter.com/Accelerator_net","youtube":""}},{"symbol":"ADH","name":"AdHive Token","type":"ERC20","address":"0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31","ens_address":"","decimals":18,"website":"https://adhive.tv","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@adhive.tv","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/adhivetv","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/adhivetv","twitter":"https://twitter.com/AdhiveTv","youtube":""}},{"symbol":"ADI","name":"Aditus","type":"ERC20","address":"0x8810C63470d38639954c6B41AaC545848C46484a","ens_address":"","decimals":18,"website":"https://aditus.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@aditus.net","url":""},"social":{"blog":"https://medium.com/aditusnetwork","chat":"","facebook":"","forum":"","github":"https://github.com/aditus","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/aditus","slack":"","telegram":"http://t.me/aditusnetwork","twitter":"","youtube":""}},{"symbol":"ADL","name":"Adelphoi","type":"ERC20","address":"0x660e71483785f66133548b10f6926dc332b06e61","ens_address":"","decimals":18,"website":"https://adel.io","logo":{"src":"https://pbs.twimg.com/profile_images/995709693044690944/5LSmUn49_400x400.png","width":"211","height":"211","ipfs_hash":""},"support":{"email":"info@adel.io","url":"https://adel.io/contact"},"social":{"blog":"https://medium.com/adel","chat":"https://t.me/Adelphoi","facebook":"https://www.facebook.com/adelphoi.io","forum":"https://bitcointalk.org/index.php?topic=2135312","github":"","gitter":"","instagram":"https://instagram.com/adelphoi.io","linkedin":"https://www.linkedin.com/company/adelphoi","reddit":"https://www.reddit.com/r/adel","slack":"https://adel-signup.herokuapp.com","telegram":"https://t.me/Adelphoi","twitter":"https://twitter.com/adelphoi_io","youtube":"https://www.youtube.com/channel/UC90BbGKzqnlqDUHgw0K7mhw"}},{"symbol":"ADST","name":"AdShares","type":"ERC20","address":"0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0","ens_address":"","decimals":0,"website":"https://adshares.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"office@adshares.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ADT","name":"AdToken","type":"ERC20","address":"0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD","ens_address":"","decimals":9,"website":"https://adtoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@metax.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/adchain","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/adChain","slack":"https://adchain.slack.com","telegram":"","twitter":"https://twitter.com/ad_chain","youtube":""}},{"symbol":"ADX","name":"AdEx Network","type":"ERC20","address":"0x4470BB87d77b963A013DB939BE332f927f2b992e","ens_address":"","decimals":4,"website":"https://www.adex.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/the-adex-blog","chat":"","facebook":"","forum":"","github":"https://github.com/AdExBlockchain","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/AdEx","slack":"","telegram":"https://t.me/AdExNetwork","twitter":"https://twitter.com/AdEx_Network","youtube":""}},{"symbol":"AE","name":"aeternity","type":"ERC20","address":"0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d","ens_address":"","decimals":18,"website":"https://www.aeternity.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@aeternity.com","url":""},"social":{"blog":"https://blog.aeternity.com/","chat":"","facebook":"https://www.facebook.com/aeternityproject/","forum":"","github":"https://github.com/aeternity","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Aeternity/","slack":"","telegram":"https://telegram.me/aeternity","twitter":"https://twitter.com/aetrnty","youtube":""}},{"symbol":"AGI","name":"SingularityNET","type":"ERC20","address":"0x8eB24319393716668D768dCEC29356ae9CfFe285","ens_address":"","decimals":8,"website":"https://singularitynet.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@singularitynet.io","url":""},"social":{"blog":"https://blog.singularitynet.io","chat":"","facebook":"https://www.facebook.com/singularityNET.io","forum":"","github":"https://github.com/singnet/singnet","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SingularityNet","slack":"","telegram":"https://t.me/singularitynet","twitter":"https://twitter.com/singularity_net","youtube":""}},{"symbol":"AION","name":"Aion","type":"ERC20","address":"0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466","ens_address":"","decimals":8,"website":"https://aion.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.aion.network/","chat":"","facebook":"https://www.facebook.com/AionBlockchain/","forum":"https://forum.aion.network/","github":"https://github.com/aionnetwork","gitter":"","instagram":"","linkedin":"https://linkedin.com/company/aion-network","reddit":"","slack":"","telegram":"https://t.me/aion_blockchain","twitter":"https://twitter.com/Aion_Network","youtube":"https://youtube.com/channel/UCu4u9tYEgUyNL9KMgrCZvXQ"}},{"symbol":"AIR","name":"AirToken","type":"ERC20","address":"0x27dce1ec4d3f72c3e457cc50354f1f975ddef488","ens_address":"","decimals":8,"website":"https://airtoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"corporate@airfox.io","url":""},"social":{"blog":"https://medium.com/@airfox","chat":"https://open.kakao.com/o/gl69MFz","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2078932","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/AirToken","slack":"https://shielded-mesa-79992.herokuapp.com","telegram":"https://t.me/airfoxico","twitter":"https://twitter.com/airtoken","youtube":""}},{"symbol":"AIX","name":"Aigang","type":"ERC20","address":"0x1063ce524265d5a3A624f4914acd573dD89ce988","ens_address":"","decimals":18,"website":"https://aigang.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/aigang-network","chat":"","facebook":"","forum":"","github":"https://github.com/AigangNetwork","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/aigangnetwork","twitter":"https://twitter.com/aigangnetwork","youtube":""}},{"symbol":"AKC","name":"ARTWOOK COIN","type":"ERC20","address":"0x1ca43a170bad619322e6f54d46b57e504db663aa","ens_address":"","decimals":18,"website":"https://artwook.com","logo":{"src":"https://artwook.com/logo/akc-line.png","width":"256","height":"256","ipfs_hash":""},"support":{"email":"contact@artwook.com","url":"https://artwook.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/ArtWook-2029005760759166","forum":"","github":"https://github.com/artwook","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/artwook","twitter":"https://twitter.com/artwook_akc","youtube":"https://www.youtube.com/watch?v=TJn_TojlmHI"}},{"symbol":"ALCO","name":"ALCO","type":"ERC20","address":"0x181a63746d3adcf356cbc73ace22832ffbb1ee5a","ens_address":"","decimals":8,"website":"https://alaricoin.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@alaricoin.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/alaricoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Alaricoin","youtube":""}},{"symbol":"ALIS","name":"ALIS Token","type":"ERC20","address":"0xEA610B1153477720748DC13ED378003941d84fAB","ens_address":"","decimals":18,"website":"https://alismedia.jp","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@alismedia.jp","url":""},"social":{"blog":"https://medium.com/@alismedia","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2102935","github":"https://github.com/AlisProject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://alis-slack.herokuapp.com","telegram":"","twitter":"https://twitter.com/ALIS_media","youtube":""}},{"symbol":"ALTS","name":"ALTS Token","type":"ERC20","address":"0x638ac149ea8ef9a1286c41b977017aa7359e6cfa","ens_address":"","decimals":18,"website":"http://www.altcoinstalks.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"dev@altcoinstalks.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/AltcoinsTalks","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/FVTLFELkfHI6_CKz7AbIpQ","twitter":"https://twitter.com/AltcoinsTalks","youtube":""}},{"symbol":"AMB","name":"Amber Token","type":"ERC20","address":"0x4dc3643dbc642b72c158e7f3d2ff232df61cb6ce","ens_address":"","decimals":18,"website":"https://ambrosus.com/index.html","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.ambrosus.com/","chat":"","facebook":"https://www.facebook.com/ambrosusAMB","forum":"","github":"https://github.com/ambrosus","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/ambrosus","reddit":"https://www.reddit.com/r/ambrosus/","slack":"","telegram":"https://t.me/AmbrosusAMB","twitter":"https://twitter.com/AmbrosusAMB","youtube":"https://youtu.be/OkdCV6zw3lI"}},{"symbol":"AMIS","name":"AMIS","type":"ERC20","address":"0x949bed886c739f1a3273629b3320db0c5024c719","ens_address":"","decimals":9,"website":"http://erc20-amis.amisolution.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@amisolution.net","url":""},"social":{"blog":"https://medium.com/@AMIS_ERC20","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=1816765.0","github":"https://github.com/amisolution/ERC20-AMIS","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://amisolution.herokuapp.com","telegram":"","twitter":"https://twitter.com/AMIS_ERC20","youtube":""}},{"symbol":"AMLT","name":"AMLT","type":"ERC20","address":"0xca0e7269600d353f70b14ad118a49575455c0f2f","ens_address":"","decimals":18,"website":"https://amlt.coinfirm.io/","logo":{"src":"https://s3.eu-west-2.amazonaws.com/amlt/AMLT_logo_mew.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"amlt@coinfirm.io ","url":"https://amlt.coinfirm.io/"},"social":{"blog":"https://blog.coinfirm.io/","chat":"","facebook":"https://www.facebook.com/AMLToken/","forum":"https://bitcointalk.org/index.php?topic=2375580.0","github":"https://github.com/amlt-by-coinfirm","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/amltoken/","reddit":"https://www.reddit.com/r/AMLT/","slack":"","telegram":"https://t.me/AMLT_Coinfirm","twitter":"https://twitter.com/AMLT_Token","youtube":"https://www.youtube.com/watch?v=WqNMiR-bgZE"}},{"symbol":"AMN","name":"Amon","type":"ERC20","address":"0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c","ens_address":"amntoken.eth","decimals":18,"website":"https://amon.tech","logo":{"src":"https://amon.tech/assets/img/token/amn.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"hello@amon.tech","url":"https://help.amon.tech"},"social":{"blog":"https://medium.com/@amontech","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2875733.0","github":"https://github.com/amontech","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/amon-tech","reddit":"","slack":"","telegram":"https://t.me/amontech","twitter":"https://twitter.com/amonwallet","youtube":""}},{"symbol":"AMO","name":"AMO Coin","type":"ERC20","address":"0x38c87aa89b2b8cd9b95b736e1fa7b612ea972169","ens_address":"","decimals":18,"website":"https://amo.foundation","logo":{"src":"https://amo.foundation/wordpress/wp-content/uploads/2018/05/symbol.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"support@amo.foundation","url":""},"social":{"blog":"https://medium.com/@amoblockchain","chat":"","facebook":"https://www.facebook.com/amoblockchain/","forum":"","github":"https://github.com/AMO-Project/","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/amo_blockchain_official_global","twitter":"https://twitter.com/amoblockchain","youtube":"https://www.youtube.com/channel/UCXH8Amsheu1fzeWdTQ8-sBg"}},{"symbol":"AMTC","name":"AmberTime Coin","type":"ERC20","address":"0x84936cF7630AA3e27Dd9AfF968b140d5AEE49F5a","ens_address":"","decimals":8,"website":"https://ambertime.org/","logo":{"src":"https://ambertime.org/img/amber-logo-white.png","width":"780","height":"228","ipfs_hash":""},"support":{"email":"info@ambertime.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ANT","name":"ANT","type":"ERC20","address":"0x960b236A07cf122663c4303350609A66A7B288C0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"APIS","name":"APIS","type":"ERC20","address":"0x4c0fbe1bb46612915e7967d2c3213cd4d87257ad","ens_address":"","decimals":18,"website":"https://apisplatform.io","logo":{"src":"https://apisplatform.io/img/icon_250.png","width":250,"height":250,"ipfs_hash":""},"support":{"email":"apis_official@apisplatform.io","url":""},"social":{"blog":"https://medium.com/apisplatform","chat":"","facebook":"","forum":"","github":"https://github.com/Oxchild/crowdsale","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/TheApisplatform","twitter":"https://twitter.com/Apis11Official","youtube":"https://www.youtube.com/channel/UCArVzPjkC_BrqkjFG3DZOjQ"}},{"symbol":"APPC","name":"AppCoins","type":"ERC20","address":"0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db","ens_address":"","decimals":18,"website":"https://appcoins.io","logo":{"src":"https://ibb.co/jFsGsG","width":250,"height":250,"ipfs_hash":""},"support":{"email":"info@appcoins.io","url":""},"social":{"blog":"https://medium.com/@appcoins","chat":"","facebook":"https://www.facebook.com/AppCoinsOfficial","forum":"https://bitcointalk.org/index.php?topic=2280664.0","github":"https://github.com/Aptoide/AppCoins-ethereumj","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/AppcoinsProtocol","slack":"","telegram":"https://t.me/appcoinsofficial","twitter":"https://twitter.com/AppCoinsProject","youtube":""}},{"symbol":"APT","name":"AIGang","type":"ERC20","address":"0x23ae3c5b39b12f0693e05435eeaa1e51d8c61530","ens_address":"","decimals":18,"website":"https://aigang.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@aigang.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.aigang.network","telegram":"https://t.me/aigangnetwork","twitter":"","youtube":""}},{"symbol":"ARC","name":"ARC","type":"ERC20","address":"0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ARCT","name":"ArbitrageCT","type":"ERC20","address":"0x1245ef80f4d9e02ed9425375e8f649b9221b31d8","ens_address":"","decimals":8,"website":"https://www.arbitragect.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@arbitragect.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/groups/arbitragect","forum":"https://bitcointalk.org/index.php?topic=2242346","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/arbitrageCT","slack":"","telegram":"https://t.me/ArbitrageCT","twitter":"https://twitter.com/arbitrage_ct","youtube":""}},{"symbol":"ARD","name":"Accord","type":"ERC20","address":"0x75aa7b0d02532f3833b66c7f0ad35376d373ddf8","ens_address":"","decimals":18,"website":"https://accordtoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@accordtoken.com","url":""},"social":{"blog":"https://medium.com/accord-ard","chat":"","facebook":"https://www.facebook.com/AccordToken","forum":"","github":"https://github.com/accordtoken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Accord_Token","youtube":""}},{"symbol":"ARN","name":"Aeron Token","type":"ERC20","address":"0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6","ens_address":"","decimals":8,"website":"https://aeron.aero","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@aeron.aero","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ART","name":"ART","type":"ERC20","address":"0xfec0cF7fE078a500abf15F1284958F22049c2C7e","ens_address":"","decimals":18,"website":"https://cofound.it/en/projects/maecenas","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cofound.it","url":""},"social":{"blog":"https://support.cofound.it/hc/en-us/articles/115001315351-Crowdsale-token-list-information","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ARX","name":"ARX","type":"ERC20","address":"0x7705FaA34B16EB6d77Dfc7812be2367ba6B0248e","ens_address":"","decimals":8,"website":"https://artex.global","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@artex.global","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/va109/Artex","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/ARTEX_GLOBAL","twitter":"","youtube":""}},{"symbol":"ARXT","name":"Assistive Reality ARX","type":"ERC20","address":"0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5","ens_address":"","decimals":18,"website":"https://aronline.io","logo":{"src":"https://aronline.io/wp-content/uploads/2018/01/favicon.png","width":"100","height":"100","ipfs_hash":""},"support":{"email":"staff@aronline.io","url":"https://aronline.io/"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/AssistiveReality/","forum":"","github":"https://github.com/va109/Artex","gitter":"","instagram":"https://www.instagram.com/AssistiveReality/","linkedin":"https://www.linkedin.com/in/assistive-reality/","reddit":"","slack":"","telegram":"https://t.me/AssistiveReality_ARX","twitter":"https://twitter.com/aronline_io/","youtube":""}},{"symbol":"AST","name":"Airswap","type":"ERC20","address":"0x27054b13b1B798B345b591a4d22e6562d47eA75a","ens_address":"","decimals":4,"website":"https://airswap.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@airswap.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ATH (AIgatha Token)","name":"AIgatha Token","type":"ERC20","address":"0x1543d0F83489e82A1344DF6827B23d541F235A50","ens_address":"","decimals":18,"website":"https://aigatha.com","logo":{"src":"https://aigatha.com/img/AIgatha_Logo.png","width":"300","height":"300","ipfs_hash":""},"support":{"email":"support@aigatha.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/AIgatha-149935052349262","forum":"","github":"https://github.com/AIgatha","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/aigatha/","reddit":"https://www.reddit.com/r/AIgatha/","slack":"https://aigatha.slack.com/messages","telegram":"https://t.me/aigatha","twitter":"https://twitter.com/a_igatha","youtube":"https://www.youtube.com/channel/UCn6fx0FNK6M3og8Ew773pRw"}},{"symbol":"ATH (Athenian Warrior token)","name":"Athenian Warrior Token","type":"ERC20","address":"0x17052d51E954592C1046320c2371AbaB6C73Ef10","ens_address":"","decimals":18,"website":"https://athenianwarriortoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/ATHwarriortoken","youtube":""}},{"symbol":"ATL","name":"ATL","type":"ERC20","address":"0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05","ens_address":"","decimals":18,"website":"https://atlant.io","logo":{"src":"https://atlant.io/promo/Atlant_custom_300x300_logo.png","width":"300","height":"300","ipfs_hash":""},"support":{"email":"help@atlant.io","url":""},"social":{"blog":"https://blog.atlant.io/","chat":"https://t.me/atlant_eng","facebook":"https://business.facebook.com/atlantplatform/","forum":"https://bitcointalk.org/index.php?topic=2053239.0","github":"https://github.com/AtlantPlatform","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/atlant.io/","reddit":"https://www.reddit.com/r/atlantio/","slack":"","telegram":"https://t.me/atlant_eng","twitter":"https://twitter.com/atlantio","youtube":"https://www.youtube.com/channel/UCOunbV9gX_aB43S6chXuirw"}},{"symbol":"ATMI","name":"Atonomi","type":"ERC20","address":"0x97AEB5066E1A590e868b511457BEb6FE99d329F5","ens_address":"","decimals":18,"website":"https://atonomi.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@atonomi.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/atonomi/","forum":"","github":"https://github.com/atonomi","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/atonomi/","reddit":"","slack":"","telegram":"https://t.me/atonomi_io","twitter":"https://twitter.com/atonomi","youtube":"https://www.youtube.com/c/Atonomi"}},{"symbol":"ATT","name":"Atmatrix Token","type":"ERC20","address":"0x887834d3b8d450b6bab109c252df3da286d73ce4","ens_address":"","decimals":18,"website":"https://atmatrix.org/?locale=en","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/ATMatrix","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ATTN","name":"Attention Token","type":"ERC20","address":"0x6339784d9478da43106a429196772a029c2f177d","ens_address":"","decimals":18,"website":"https://attentionnetwork.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@attentionnetwork.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/attention_network","twitter":"https://twitter.com/attentionnet","youtube":""}},{"symbol":"AVA","name":"AVA","type":"ERC20","address":"0xeD247980396B10169BB1d36f6e278eD16700a60f","ens_address":"","decimals":4,"website":"https://avalon.nu","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@avalon.nu","url":""},"social":{"blog":"https://medium.com/@AvalonPlatform","chat":"","facebook":"https://www.facebook.com/avalonplatform","forum":"https://bitcointalk.org/index.php?topic=2065193","github":"https://github.com/AvalonPlatform","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/AvalonPlatform","slack":"","telegram":"https://t.me/joinchat/GQEIcg6hXg-QWXwzDDiOgA","twitter":"https://twitter.com/Avalonplatform","youtube":""}},{"symbol":"AVT","name":"AVT","type":"ERC20","address":"0x0d88ed6e74bbfd96b831231638b66c05571e824f","ens_address":"","decimals":18,"website":"https://aventus.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@aventus.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Aventus","slack":"https://slack.aventus.io","telegram":"","twitter":"https://twitter.com/AventusSystems","youtube":""}},{"symbol":"AX1","name":"AX1 Mining Token","type":"ERC20","address":"0xcd4b4b0f3284a33ac49c67961ec6e111708318cf","ens_address":"token.ax1mining.eth","decimals":5,"website":"https://ax1.io","logo":{"src":"https://ax1.io/images/AX1-Platinum-Coin.png","width":"100","height":"100","ipfs_hash":""},"support":{"email":"online@ax1.io","url":""},"social":{"blog":"https://medium.com/@support_98049","chat":"","facebook":"https://www.facebook.com/ax1mining/","forum":"","github":"https://github.com/Pickeringwareltd/AX1_v1.03","gitter":"","instagram":"https://www.instagram.com/ax1mining/","linkedin":"https://www.linkedin.com/company/18515393/admin/updates/","reddit":"https://www.reddit.com/r/AX1/","slack":"","telegram":"https://t.me/ax1miningico","twitter":"https://twitter.com/Ax1mining","youtube":""}},{"symbol":"AXPR","name":"AXPR","type":"ERC20","address":"0xC39E626A04C5971D770e319760D7926502975e47","ens_address":"","decimals":18,"website":"https://www.axpire.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@axpire.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Axpire-537274833301303","forum":"","github":"https://github.com/axpire/","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/aXpire/","slack":"","telegram":"https://t.me/AxpireOfficial","twitter":"https://twitter.com/aXpire_official","youtube":""}},{"symbol":"BANX","name":"BANX","type":"ERC20","address":"0xf87f0d9153fea549c728ad61cb801595a68b73de","ens_address":"","decimals":18,"website":"https://pre.ubanx.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@ubanx.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BAT","name":"BAT","type":"ERC20","address":"0x0D8775F648430679A709E98d2b0Cb6250d2887EF","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BBK","name":"BRICKBLOCK TOKEN","type":"ERC20","address":"0x4a6058666cf1057eaC3CD3A5a614620547559fc9","ens_address":"","decimals":18,"website":"https://www.brickblock.io/","logo":{"src":"https://www.brickblock.io/images/bb_logo_white.svg?crc=205463457","width":"100","height":"100","ipfs_hash":""},"support":{"email":"support@brickblock.io","url":"https://www.brickblock.io/"},"social":{"blog":"https://blog.brickblock.io/","chat":"","facebook":"https://www.facebook.com/brickblock.io/","forum":"","github":"https://github.com/brickblock-io","gitter":"","instagram":"https://www.instagram.com/brickblock.io/","linkedin":"https://www.linkedin.com/company/18035479/","reddit":"https://www.reddit.com/r/BrickBlock/","slack":"https://brickblock-team.slack.com/","telegram":"https://t.me/brickblock ","twitter":"https://twitter.com/brickblock_io","youtube":"https://www.youtube.com/channel/UC7etm1NmMFIlg2KJ6VXNNrA"}},{"symbol":"BCBC","name":"Beercoin","type":"ERC20","address":"0x7367a68039d4704f30bfbf6d948020c3b07dfc59","ens_address":"beercoin-bcbc.eth","decimals":18,"website":"https://www.beerchain.technology","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@beerchain.technology","url":"https://www.beerchain.technology"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/beerchain.technology","forum":"","github":"https://github.com/beerchain/beercoin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/beerchaintechnology","reddit":"https://www.reddit.com/r/beerchain","slack":"","telegram":"https://t.me/beerchaintechnology","twitter":"https://twitter.com/beerchaintech","youtube":""}},{"symbol":"BCDN","name":"BCDN","type":"ERC20","address":"0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40","ens_address":"","decimals":15,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BCDT","name":"Blockchain Certified Data Token","type":"ERC20","address":"0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5","ens_address":"bcdiploma.eth","decimals":18,"website":"https://www.bcdiploma.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contactus@blockchaincertifieddata.com","url":""},"social":{"blog":"https://medium.com/bcdiploma","chat":"","facebook":"https://www.facebook.com/BCDiploma","forum":"","github":"https://github.com/VinceBCD/BCDiploma","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/showcase/25042709","reddit":"","slack":"","telegram":"https://t.me/BCDiploma","twitter":"https://twitter.com/BCDiploma","youtube":""}},{"symbol":"BCL","name":"BCL","type":"ERC20","address":"0xbc1234552EBea32B5121190356bBa6D3Bb225bb5","ens_address":"","decimals":18,"website":"https://www.bitclave.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@bitclave.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.bitclave.com","telegram":"","twitter":"","youtube":""}},{"symbol":"BCPT","name":"BCPT","type":"ERC20","address":"0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd","ens_address":"","decimals":18,"website":"https://blockmason.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@blockmason.io","url":""},"social":{"blog":"https://medium.com/@blockmason","chat":"","facebook":"https://www.facebook.com/blockmasonio","forum":"https://bitcointalk.org/index.php?topic=2129993.0","github":"https://github.com/blockmason","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/blockmason","slack":"","telegram":"https://t.me/blockmason","twitter":"https://twitter.com/blockmasonio","youtube":"https://www.youtube.com/channel/UCqv0UBWjgjM5JZkxdQR7DYw"}},{"symbol":"BCV","name":"BitCapitalVendor Token","type":"ERC20","address":"0x1014613e2b3cbc4d575054d4982e580d9b99d7b1","ens_address":"","decimals":8,"website":"https://bitcv.one/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://bitcv.one/#contact"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/BitCapitalVendor","forum":"","github":"https://github.com/bitcv","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/bcvtoken","twitter":"https://twitter.com/BCVofficial","youtube":""}},{"symbol":"BDG","name":"BitDegree Token","type":"ERC20","address":"0x1961B3331969eD52770751fC718ef530838b6dEE","ens_address":"","decimals":18,"website":"https://bitdegree.org","logo":{"src":"https://raw.githubusercontent.com/bitdegree/banners/master/logos/2515x3285_letter_black.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"hello@bitdegree.org","url":""},"social":{"blog":"blog.bitdegree.org","chat":"","facebook":"www.facebook.com/bitdegree.org","forum":"","github":"https://github.com/bitdegree","gitter":"","instagram":"https://www.instagram.com/bitdegree","linkedin":"https://www.linkedin.com/company/bitdegree","reddit":"reddit.com/r/bitdegree","slack":"","telegram":"t.me/bitdegree","twitter":"https://twitter.com/bitdegree_org","youtube":"https://www.youtube.com/channel/UCuiGDksOmsM8y-_txG3wPYg"}},{"symbol":"BEE","name":"Bee Token","type":"ERC20","address":"0x4D8fc1453a0F359e99c9675954e656D80d996FbF","ens_address":"","decimals":18,"website":"https://www.beetoken.com","logo":{"src":"https://etherscan.io/token/images/beetoken_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@thebeetoken","chat":"","facebook":"https://www.facebook.com/thebeetoken","forum":"","github":"https://github.com/thebeetoken","gitter":"","instagram":"https://www.instagram.com/thebeetoken","linkedin":"","reddit":"https://www.reddit.com/r/beetoken","slack":"","telegram":"https://t.me/beetoken","twitter":"https://twitter.com/thebeetoken","youtube":""}},{"symbol":"BeerCoin","name":"BeerCoin","type":"ERC20","address":"0x74C1E4b8caE59269ec1D85D3D4F324396048F4ac","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BERRY","name":"Berry","type":"ERC20","address":"0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c","ens_address":"","decimals":14,"website":"https://rentberry.com","logo":{"src":"https://etherscan.io/token/images/rentberry_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"hello@rentberry.com","url":"https://rentberry.com/contact"},"social":{"blog":"https://rentberry.com/blog","chat":"","facebook":"https://www.facebook.com/RentberryInc","forum":"https://bitcointalk.org/index.php?topic=2448767","github":"https://github.com/Rentberry","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/rentberry","reddit":"https://www.reddit.com/r/Rentberry","slack":"","telegram":"https://t.me/rentberry","twitter":"https://twitter.com/rentberry_","youtube":"https://www.youtube.com/channel/UC1tJKugchHhE_2Y9kWJNXLA"}},{"symbol":"BET","name":"BET","type":"ERC20","address":"0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BETHER","name":"Bethereum","type":"ERC20","address":"0x14C926F2290044B647e1Bf2072e67B495eff1905","ens_address":"","decimals":18,"website":"https://www.bethereum.com/","logo":{"src":"https://image.ibb.co/jPRLCx/icon_default_1.png","width":250,"height":250,"ipfs_hash":""},"support":{"email":"team@bethereum.com","url":""},"social":{"blog":"https://medium.com/bethereum","chat":"","facebook":"https://www.facebook.com/bethereumproject/","forum":"https://bitcointalk.org/index.php?topic=2898723.0","github":"https://github.com/bethereumproject","gitter":"","instagram":"https://www.instagram.com/bethereum/","linkedin":"https://www.linkedin.com/company/bethereum/","reddit":"https://www.reddit.com/r/bethereum","slack":"","telegram":"https://t.me/bethereum","twitter":"https://twitter.com/bethereumteam","youtube":"https://www.youtube.com/channel/UCECoUw0v3gsAFULCVD7YSmA"}},{"symbol":"BETR","name":"BETR","type":"ERC20","address":"0x763186eb8d4856d536ed4478302971214febc6a9","ens_address":"","decimals":18,"website":"https://www.betterbetting.org","logo":{"src":"https://betterbetting.org/assets/images/bb-token-icon_w28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"info@betterbetting.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/BETRBetting","forum":"","github":"https://github.com/betterbetting","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/betterbetting/","reddit":"https://www.reddit.com/user/BETRBetting/","slack":"https://betterbetting.slack.com/","telegram":"https://t.me/betterbetting","twitter":"https://twitter.com/BETRBetting","youtube":"https://www.youtube.com/channel/UCFvNUWRiedqvcpNHqLnDAXg"}},{"symbol":"BKB","name":"BetKing Bankroll Token","type":"ERC20","address":"0xb2bfeb70b903f1baac7f2ba2c62934c7e5b974c4","ens_address":"","decimals":8,"website":"https://betking.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@betking.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/betkingcasino","forum":"https://bitcointalk.org/index.php?topic=2150057","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BetKing","slack":"","telegram":"https://t.me/joinchat/GmNTqw7kaxhGRqsJhRuzzw","twitter":"https://twitter.com/betkingio","youtube":""}},{"symbol":"BKRx","name":"BlockRx","type":"ERC20","address":"0x3cf9e0c385a5abec9fd2a71790aa344c4e8e3570","ens_address":"","decimals":18,"website":"https://www.blockrx.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BlockRX","slack":"","telegram":"","twitter":"https://twitter.com/blockrxproject","youtube":""}},{"symbol":"BKX","name":"BANKEX","type":"ERC20","address":"0x45245bc59219eeaaf6cd3f382e078a461ff9de7b","ens_address":"","decimals":18,"website":"https://bankex.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"bankex@bankex.com","url":""},"social":{"blog":"https://blog.bankex.org","chat":"","facebook":"https://www.facebook.com/BankExchange/","forum":"https://bitcointalk.org/index.php?topic=2013627.0","github":"https://github.com/BankEx","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/bankex/","slack":"","telegram":"https://t.me/bankex","twitter":"https://twitter.com/BankExProtocol","youtube":""}},{"symbol":"BLT","name":"Bloom","type":"ERC20","address":"0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e","ens_address":"","decimals":18,"website":"https://hellobloom.io","logo":{"src":"https://etherscan.io/token/images/hellobloom_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"team@hellobloom.io","url":"https://hellobloom.io/faq"},"social":{"blog":"https://blog.hellobloom.io","chat":"","facebook":"https://facebook.com/bloomtoken","forum":"","github":"https://github.com/hellobloom","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BloomToken","slack":"https://slack.hellobloom.io","telegram":"https://t.me/joinchat/FFWDdQ1hxqIg3jLe7zBVFQ","twitter":"https://twitter.com/bloomtoken","youtube":"https://www.youtube.com/channel/UCaMfVoHQzwX47XKUawWVCzg"}},{"symbol":"BLX (Bullion)","name":"Bullion Crypto","type":"ERC20","address":"0xce59d29b09aae565feeef8e52f47c3cd5368c663","ens_address":"","decimals":18,"website":"www.bullioncrypto.info","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@bullioncrypto.info","url":"https://iconomi.zendesk.com/hc/en-us/requests/new"},"social":{"blog":"http://www.bullioncrypto.info/blog","chat":"","facebook":"https://facebook.com/bullioncrypto","forum":"https://bitcointalk.org/index.php?topic=2072092.0","github":"https://github.com/bullioncoin","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://bullioncoin.slack.com","telegram":"https://t.me/bullion_coin","twitter":"https://twitter.com/bullion_coin","youtube":""}},{"symbol":"BLX (Iconomi)","name":"Iconomi","type":"ERC20","address":"0xE5a7c12972f3bbFe70ed29521C8949b8Af6a0970","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"w"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BLZ","name":"Bluezelle","type":"ERC20","address":"0x5732046A883704404F284Ce41FfADd5b007FD668","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"w"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BMC","name":"Blackmoon Crypto BMC Token","type":"ERC20","address":"0xdf6ef343350780bf8c3410bf062e0c015b1dd671","ens_address":"","decimals":8,"website":"https://blackmooncrypto.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"account@blackmooncrypto.com","url":""},"social":{"blog":"https://medium.com/blackmoon-crypto","chat":"","facebook":"","forum":"","github":"https://github.com/blackmoonfg","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://blackmooncrypto.herokuapp.com","telegram":"https://t.me/blackmooncrypto","twitter":"","youtube":""}},{"symbol":"BMT","name":"BMT","type":"ERC20","address":"0xf028adee51533b1b47beaa890feb54a457f51e89","ens_address":"","decimals":18,"website":"https://bmchain.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@bmchain.io","url":""},"social":{"blog":"https://medium.io@bmchain","chat":"","facebook":"https://www.facebook.com/BMChain","forum":"https://bitcointalk.org/index.php?topic=2096750.0","github":"https://github.com/BMChain/BMChain-Token-Distribution-Interface","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BMCHAIN","slack":"","telegram":"https://t.me/bmchain","twitter":"https://twitter.com/bmchain","youtube":""}},{"symbol":"BMX","name":"BitMartToken","type":"ERC20","address":"0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8","ens_address":"","decimals":18,"website":"https://www.bitmart.com","logo":{"src":"https://www.bitmart.com/images/white-logo.png","width":"100","height":"100","ipfs_hash":""},"support":{"email":"support@bitmart.com","url":"support.bitmart.com"},"social":{"blog":"https://www.facebook.com/bitmartexchange/?modal=admin_todo_tour","chat":"","facebook":"https://www.facebook.com/bitmartexchange","forum":"","github":"https://github.com/AweProton","gitter":"","instagram":"https://www.instagram.com/bitmart_exchange/","linkedin":"https://www.linkedin.com/company/bitmart","reddit":"https://www.reddit.com/r/BitMartExchange/","slack":"","telegram":"https://t.me/BitmartExchange","twitter":"https://twitter.com/BitMartExchange","youtube":"https://www.youtube.com/watch?v=Cr5-eBEWgqg"}},{"symbol":"BNB","name":"BNB","type":"ERC20","address":"0xb8c77482e45f1f44de1745f52c74426c631bdd52","ens_address":"","decimals":18,"website":"https://www.binance.com","logo":{"src":"https://etherscan.io/token/images/binance_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@binance.zendesk.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/binance2017","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/binance","slack":"","telegram":"","twitter":"https://twitter.com/binance_2017","youtube":""}},{"symbol":"BNC","name":"BNC","type":"ERC20","address":"0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F","ens_address":"","decimals":12,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BNFT","name":"Benefits Coin","type":"ERC20","address":"0xdA2C424Fc98c741c2d4ef2f42897CEfed897CA75","ens_address":"","decimals":9,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@bnft.life","url":"http://bnft.life"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BNT","name":"Bancor","type":"ERC20","address":"0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BNTY","name":"Bounty0x Token","type":"ERC20","address":"0xd2d6158683aee4cc838067727209a0aaf4359de3","ens_address":"","decimals":18,"website":"https://bounty0x.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@bounty0x.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/bounty0x","forum":"https://bitcointalk.org/index.php?topic=2285672.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Bounty0x","slack":"","telegram":"https://t.me/bounty0x","twitter":"https://twitter.com/bounty0x","youtube":"https://www.youtube.com/channel/UCz6Sy-x4BhFR8CDT2bjGrLw"}},{"symbol":"BOB","name":"Bob's repair","type":"ERC20","address":"0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134","ens_address":"","decimals":18,"website":"https://bobsrepair.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BON","name":"Bonpay","type":"ERC20","address":"0xCc34366E3842cA1BD36c1f324d15257960fCC801","ens_address":"","decimals":18,"website":"https://bonpay.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@bonpay.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BOP","name":"BlockOptiopns Token","type":"ERC20","address":"0x7f1e2c7d6a69bf34824d72c53b4550e895c0d8c2","ens_address":"","decimals":8,"website":"https://blockoptions.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/Blockoptions-1282191258569444","forum":"https://bitcointalk.org/index.php?topic=2047320","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://slack.blockoptions.io","telegram":"","twitter":"https://twitter.com/blockoptions_io","youtube":""}},{"symbol":"BOU","name":"Boule Coin","type":"ERC20","address":"0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d","ens_address":"","decimals":18,"website":"https://www.boule.one","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@boule.one","url":""},"social":{"blog":"https://medium.com/boulecoin","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/FSM1Gw0WEk5Hb-SuoIIwqA","twitter":"","youtube":""}},{"symbol":"BOX","name":"BOX Token","type":"ERC20","address":"0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD","ens_address":"","decimals":18,"website":"https://box.la/","logo":{"src":"https://box.la/box_logo200px.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"contact@box.la","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/boxla888","forum":"","github":"https://github.com/boxproject","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/boxla888/","slack":"https://box-la.slack.com/","telegram":"https://t.me/safeboxla","twitter":"https://twitter.com/boxla888","youtube":""}},{"symbol":"BPT","name":"Blockport Token","type":"ERC20","address":"0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8","ens_address":"","decimals":18,"website":"https://blockport.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@blockport.io","url":""},"social":{"blog":"https://medium.com/blockport","chat":"https://t.me/blockport","facebook":"https://facebook.com/blockport","forum":"","github":"https://github.com/Blockport/tokensale","gitter":"","instagram":"https://www.instagram.com/blockport.io/","linkedin":"","reddit":"https://www.reddit.com/r/Blockport/","slack":"","telegram":"https://t.me/blockport","twitter":"https://twitter.com/Blockportio","youtube":"https://www.youtube.com/channel/UCdNoOi83qcievKU_T0jOyig"}},{"symbol":"BRAT","name":"BRAT","type":"ERC20","address":"0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@brat.red","url":"https://brat.red"},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2024699.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/coinbrat","twitter":"","youtube":""}},{"symbol":"BRD","name":"Bread","type":"ERC20","address":"0x558ec3152e2eb2174905cd19aea4e34a23de9ad6","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BSDC","name":"BSDC","type":"ERC20","address":"0xf26ef5e0545384b7dcc0f297f2674189586830df","ens_address":"","decimals":18,"website":"http://bitsidea.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"bitsideahelp@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/BitsIdea/BitsIdea","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/BitsIdea","twitter":"https://twitter.com/bitsideahelp","youtube":""}},{"symbol":"BST","name":"BlocksquareToken","type":"ERC20","address":"0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a","ens_address":"","decimals":18,"website":"https://blocksquare.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"future@blocksquare.io","url":""},"social":{"blog":"http://go.blocksquare.io/medium","chat":"","facebook":"http://go.blocksquare.io/facebook","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"http://go.blocksquare.io/reddit","slack":"","telegram":"http://go.blocksquare.io/telegram","twitter":"http://go.blocksquare.io/twitter","youtube":""}},{"symbol":"BTCE","name":"EthereumBitcoin","type":"ERC20","address":"0x0886949c1b8C412860c4264Ceb8083d1365e86CF","ens_address":"","decimals":8,"website":"https://btcetoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"btcetoken@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/BTCE_Token","youtube":""}},{"symbol":"BTCL","name":"BTC Lite","type":"ERC20","address":"0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50","ens_address":"","decimals":8,"website":"http://btclite.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"btclitetoken@gmail.com","url":""},"social":{"blog":"http://btclite.org/blog/","chat":"https://t.me/BTCLchat","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/btclite/","slack":"","telegram":"http://t.me/BTCLITE","twitter":"https://twitter.com/BTCliteofficial","youtube":""}},{"symbol":"BTE","name":"BTE","type":"ERC20","address":"0x73dd069c299a5d691e9836243bcaec9c8c1d8734","ens_address":"","decimals":8,"website":"http://bitcoineum.com/miner","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"http://bitcoineum.com"},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2098740.0;prev_next=prev","github":"https://github.com/bitcoineum/Sharkpool","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/ethereum/comments/6oo54i/bitcoineum_virtual_mining_on_ethereum","slack":"","telegram":"","twitter":"https://twitter.com/bitcoineum","youtube":""}},{"symbol":"BTH","name":"Bytether","type":"ERC20","address":"0xfad572db566e5234ac9fc3d570c4edc0050eaa92","ens_address":"","decimals":18,"website":"https://www.bytether.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Bytether","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/bytether","slack":"https://bytether.slack.com","telegram":"","twitter":"https://twitter.com/bytether","youtube":""}},{"symbol":"BTK","name":"Bitcoin Token","type":"ERC20","address":"0xdb8646f5b487b5dd979fac618350e85018f557d4","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"http://www.altcoinstalks.com/index.php?board=153.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/HLlnQw9SOw6HzYIehZOCMw","twitter":"https://twitter.com/bitcoin_token","youtube":""}},{"symbol":"BTL (Battle)","name":"BTL (Battle)","type":"ERC20","address":"0x2accaB9cb7a48c3E82286F0b2f8798D201F4eC3f","ens_address":"","decimals":18,"website":"http://persians.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"king.serse@gmx.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/Neurone/persians","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://battlesmartcontract.slack.com","telegram":"","twitter":"https://twitter.com/persian_token","youtube":""}},{"symbol":"BTL (Bitlle)","name":"Bitlle Token","type":"ERC20","address":"0x92685E93956537c25Bb75D5d47fca4266dd628B8","ens_address":"","decimals":4,"website":"https://bitlle.com","logo":{"src":"https://bitlle.com/img/btl.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@bitlle.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/bitlle","twitter":"","youtube":""}},{"symbol":"BTM","name":"Bytom","type":"ERC20","address":"0xcb97e65f07da24d46bcdd078ebebd7c6e6e3d750","ens_address":"","decimals":8,"website":"https://bytom.io","logo":{"src":"https://etherscan.io/token/images/bytom_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@bytom.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/bytom","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Bytom_Official","youtube":""}},{"symbol":"BTQ","name":"Bitcoin Boutique","type":"ERC20","address":"0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3","ens_address":"","decimals":18,"website":"https://thebtcbtq.com","logo":{"src":"https://s9.postimg.org/6r4j2hc3z/btcbtq.png","width":"","height":"","ipfs_hash":""},"support":{"email":"btcbtq@gmail.com","url":"https://thebtcbtq.com/contact"},"social":{"blog":"https://thebtcbtq.com/blog","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?action=profile;u=1380159","github":"","gitter":"","instagram":"https://instagram.com/btcbtq","linkedin":"","reddit":"https://www.reddit.com/u/thebtcbtq","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BTT","name":"Blocktrade.com","type":"ERC20","address":"0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff","ens_address":"","decimals":18,"website":"https://blocktrade.com/","logo":{"src":"https://blocktrade.com/wp-content/uploads/2018/05/blocktradecom_logo.png?39a15b&39a15b","width":3938,"height":478,"ipfs_hash":""},"support":{"email":"support@blocktrade.com","url":"https://support.blocktrade.com/"},"social":{"blog":"https://blocktrade.com/news/","chat":"","facebook":"https://www.facebook.com/Blocktradecom/","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/blocktradecom/","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Blocktradecom","youtube":""}},{"symbol":"BTT","name":"Bitether","type":"ERC20","address":"0x080aa07e2c7185150d7e4da98838a8d2feac3dfc","ens_address":"","decimals":0,"website":"https://bytom.io","logo":{"src":"https://www.bitether.co/wp-content/uploads/thegem-logos/logo_865d0b770c80162beeec3624ca062e6d_1x.png","width":164,"height":63,"ipfs_hash":""},"support":{"email":"support@bitether.co","url":""},"social":{"blog":"","chat":"","facebook":"https://t.me/BitEthercoin","forum":"","github":"https://github.com/Andyss4545/BitEther","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/BitEthercoin","twitter":"https://twitter.com/bitEther_coin","youtube":""}},{"symbol":"BTZ","name":"BTZ by Bunz","type":"ERC20","address":"0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BUC","name":"BeeUnity Chain","type":"ERC20","address":"0xca3c18a65b802ec267f8f4802545e7f53d24c75e","ens_address":"","decimals":18,"website":"https://beeunity.org","logo":{"src":"http://beeunity.org/wp-content/uploads/2018/03/buc60.png","width":60,"height":37,"ipfs_hash":""},"support":{"email":"support@beeunity.org","url":""},"social":{"blog":"","chat":"","facebook":"https://goo.gl/VhHEoA","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/beeunity","reddit":"","slack":"","telegram":"https://t.me/beeunity","twitter":"https://twitter.com/beeunity","youtube":""}},{"symbol":"C20","name":"Crypto20's Token","type":"ERC20","address":"0x26E75307Fc0C021472fEb8F727839531F112f317","ens_address":"crypto20.eth","decimals":18,"website":"https://crypto20.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@crypto20.com","url":""},"social":{"blog":"https://medium.crypto20.com","chat":"","facebook":"","forum":"","github":"https://github.com/cryptotwenty","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/cryptotwenty","slack":"https://join.slack.com/t/cryptotwenty/shared_invite/enQtMjU1NjI1NDg3NjMyLWU3NTUwMzY3NzA1MzFlYTMyMDYxYTQ5OTFhMzhhZDU4NWJkZjVhN2M2NTE2MDhhYTEyM2IwNWE4ZmQ3YTk5N2Y","telegram":"","twitter":"https://twitter.com/CRYPTOtwenty","youtube":""}},{"symbol":"C8","name":"Carboneum","type":"ERC20","address":"0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CAG","name":"Change Bank","type":"ERC20","address":"0x7d4b8Cce0591C9044a22ee543533b72E976E36C3","ens_address":"","decimals":18,"website":"https://change-bank.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@change-bank.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://coinchange.slack.com","telegram":"https://t.me/joinchat/GWX8HkLwpOoocINbLXfRtg","twitter":"","youtube":""}},{"symbol":"CAN","name":"CAN","type":"ERC20","address":"0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0","ens_address":"","decimals":6,"website":"https://canya.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"support@canya.io"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/canya-io","slack":"","telegram":"https://t.me/joinchat/HBzcbUP42NwHZKBwnEIkkw","twitter":"https://twitter.com/canya_io","youtube":""}},{"symbol":"CAR","name":"Car Sharing Community","type":"ERC20","address":"0x423e4322cdda29156b49a17dfbd2acc4b280600d","ens_address":"","decimals":9,"website":"https://mycarcoin.com","logo":{"src":"https://mycarcoin.com/Carcoin/img/logo-carcoin.png","width":291,"height":291,"ipfs_hash":""},"support":{"email":"support@mycarcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/mycaroin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CSCGLOBALL1","youtube":""}},{"symbol":"CAR (CarBlock)","name":"CarBlock","type":"ERC20","address":"0x4d9e23a3842fe7eb7682b9725cf6c507c424a41b","ens_address":"","decimals":18,"website":"https://www.carblock.io","logo":{"src":"https://www.carblock.io/logo-400x400.png","width":400,"height":400,"ipfs_hash":""},"support":{"email":"support@carblock.io","url":""},"social":{"blog":"https://medium.com/carblock","chat":"","facebook":"https://www.facebook.com/carblockofficial/?ref=aymt_homepage_panel","forum":"","github":"https://github.com/carblock-io","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/carblockglobal","twitter":"https://twitter.com/carblock_io","youtube":"https://www.youtube.com/channel/UCjgN4_1Jvv1KlETeoWalBVA"}},{"symbol":"CARB","name":"CarbCoin","type":"ERC20","address":"0xa517a46baad6b054a76bd19c46844f717fe69fea","ens_address":"","decimals":8,"website":"https://carbcoin.eu/","logo":{"src":"https://carbcoin.eu/logo.jpg","width":400,"height":400,"ipfs_hash":""},"support":{"email":"support@carbcoin.com","url":"https://carbcoin.eu/"},"social":{"blog":"https://medium.com/@carbcoin","chat":"","facebook":"https://www.facebook.com/CarbCoin-1965160970477337/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CarbCoin","youtube":""}},{"symbol":"CARD","name":"Cardstack Token","type":"ERC20","address":"0xB07ec2c28834B889b1CE527Ca0F19364cD38935c","ens_address":"","decimals":0,"website":"https://cardstack.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cardstack.com","url":""},"social":{"blog":"https://medium.com/cardstack","chat":"","facebook":"","forum":"","github":"https://github.com/cardstack","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://telegram.me/cardstack","twitter":"https://twitter.com/cardstack","youtube":""}},{"symbol":"CARE","name":"Token CARE","type":"ERC20","address":"0xbf18f246b9301f231e9561b35a3879769bb46375","ens_address":"","decimals":18,"website":"https://tombcare.com/","logo":{"src":"https://tombcare.com/images/logo.png","width":"45","height":"45","ipfs_hash":""},"support":{"email":"support@tombcare.com","url":"https://t.me/tombcare"},"social":{"blog":"https://medium.com/tombcare","chat":"https://t.me/tombcare","facebook":"https://www.facebook.com/TombCare/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/tombcare/","slack":"","telegram":"https://t.me/tombcare","twitter":"https://twitter.com/TombCare","youtube":"https://www.youtube.com/channel/UCCzBf2groMdCzeE4akKwRpA"}},{"symbol":"CAS","name":"Cashaa","type":"ERC20","address":"0xe8780B48bdb05F928697A5e8155f672ED91462F7","ens_address":"","decimals":18,"website":"https://cashaa.com","logo":{"src":"https://cashaa.com/img/tkn-icon1.png","width":20,"height":20,"ipfs_hash":""},"support":{"email":"hello@cashaa.com","url":"https://cashaa.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/cashaaLtd","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/CashaaLtd","twitter":"https://twitter.com/CashaaLTD","youtube":"https://www.youtube.com/channel/UCwRJjX6dNz49j3Pc0ROZJbg"}},{"symbol":"CAT (BitClave)","name":"CAT (BitClave)","type":"ERC20","address":"0x1234567461d3f8db7496581774bd869c83d51c93","ens_address":"","decimals":18,"website":"https://www.bitclave.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@bitclave.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.bitclave.com","telegram":"","twitter":"","youtube":""}},{"symbol":"CAT (Blockcat)","name":"CAT (Blockcat)","type":"ERC20","address":"0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8","ens_address":"","decimals":18,"website":"https://blockcat.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@blockcat.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.blockcat.io","telegram":"","twitter":"https://twitter.com/blockcatio","youtube":""}},{"symbol":"CATs (BitClave)_Old","name":"CATs (BitClave)_Old","type":"ERC20","address":"0x68e14bb5A45B9681327E16E528084B9d962C1a39","ens_address":"","decimals":18,"website":"https://www.bitclave.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@bitclave.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.bitclave.com","telegram":"","twitter":"","youtube":""}},{"symbol":"CBIX","name":"Cubrix","type":"ERC20","address":"0x05c3617cbf1304b9260aa61ec960f115d67becea","ens_address":"","decimals":18,"website":"https://cubrix.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cubrix.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/Cubrixio","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/cubrixio","twitter":"https://twitter.com/Cubrix3","youtube":""}},{"symbol":"CC3","name":"Coal Coin","type":"ERC20","address":"0xc166038705FFBAb3794185b3a9D925632A1DF37D","ens_address":"","decimals":18,"website":"https://coalcoin.tech/en","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@coalcoin.tech","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/coal.coin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CoalCoin","youtube":"https://www.youtube.com/channel/UC3EW4C952V3apzqOPMo0bMA"}},{"symbol":"CCC (CryptoCrashCourse)","name":"CryptoCrashCourse","type":"ERC20","address":"0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7","ens_address":"","decimals":18,"website":"http://cryptocrashcourse.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@blockchainlead.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/blockchainlead","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/CryptoCrashCourse","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CCC (ICONOMI)","name":"CCC (ICONOMI)","type":"ERC20","address":"0xbe11eeb186e624b8f26a5045575a1340e4054552","ens_address":"","decimals":18,"website":"https://www.iconomi.net/dashboard/#/daa/CCC","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@iconomi.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CCLC","name":"Christ Coin","type":"ERC20","address":"0xd348e07a2806505b856123045d27aeed90924b50","ens_address":"christcoins.eth","decimals":8,"website":"https://christcoins.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@christcoins.io","url":""},"social":{"blog":"https://lifechange.io/app/posts","chat":"","facebook":"https://www.facebook.com/Lifechange.io","forum":"","github":"https://github.com/lifechange-io/christ-coin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/LifeChangeNetwork","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CCS","name":"CacaoShares","type":"ERC20","address":"0x315ce59fafd3a8d562b7ec1c8542382d2710b06c","ens_address":"cacaoshares.eth","decimals":18,"website":"http://www.cacaoshares.com","logo":{"src":"http://cacaoshares.com/wp-content/uploads/2017/12/cropped-logo-cherry-2018-1-e1513046302595.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"ico@1cacaoshares.com","url":"http://www.cacaoshares.com"},"social":{"blog":"http://www.cacaoshares.com/blog","chat":"","facebook":"","forum":"","github":"github.com/AnalemaTechnologies/CacaoShares","gitter":"","instagram":"http://www.instagram.com/cacaoshares","linkedin":"https://www.linkedin.com/company/cacaoshares","reddit":"","slack":"","telegram":"https://t.me/joinchat/FoJjLkP1Qxh9yZbCZ5mC9A","twitter":"https://twitter.com/cacaoshares","youtube":""}},{"symbol":"CDL","name":"Confideal","type":"ERC20","address":"0x8a95ca448A52C0ADf0054bB3402dC5e09CD6B232","ens_address":"","decimals":18,"website":"https://confideal.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@confideal.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/confideal.io","forum":"","github":"https://github.com/confideal","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/11040676","reddit":"https://www.reddit.com/r/Confideal","slack":"","telegram":"https://t.me/confidealioeng","twitter":"https://twitter.com/confideal_io","youtube":""}},{"symbol":"CDT","name":"CoinDash","type":"ERC20","address":"0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af","ens_address":"","decimals":18,"website":"https://www.coindash.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://www.twitter.com/CoinDashio","youtube":""}},{"symbol":"CDX","name":"CDX","type":"ERC20","address":"0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b","ens_address":"","decimals":18,"website":"https://commodityadnetwork.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@commodityadnetwork.com","url":"https://commodityadnetwork.com/contact"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CDX","name":"Carbon Dollar X","type":"ERC20","address":"0x2cb101d7da0ebaa57d3f2fef46d7ffb7bb64592b","ens_address":"","decimals":0,"website":"https://www.carbondollarx.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@carbondollarx.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/carbondollarx","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/carbondollarx","linkedin":"https://www.linkedin.com/company/carbondollarx","reddit":"https://www.reddit.com/u/carbondollarx","slack":"","telegram":"https://t.me/carbondollarx","twitter":"https://www.twitter.com/carbondollarx","youtube":"https://www.youtube.com/channel/UCpUjgQVqPrVjiqF3EHwmmVg"}},{"symbol":"CEEK","name":"CEEK VR Token","type":"ERC20","address":"0xb056c38f6b7dc4064367403e26424cd2c60655e1","ens_address":"","decimals":18,"website":"https://www.ceek.com/","logo":{"src":"https://www.ceek.io/wp-content/uploads/2018/04/coin.png","width":"317","height":"308","ipfs_hash":""},"support":{"email":"success@ceek.com","url":"https://www.ceek.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/ceekvrtokensale","twitter":"https://twitter.com/CEEK","youtube":""}},{"symbol":"CET","name":"DICE Money Dicet","type":"ERC20","address":"0xf660ca1e228e7be1fa8b4f5583145e31147fb577","ens_address":"","decimals":18,"website":"https://dice.money/","logo":{"src":"https://www.dropbox.com/s/5ag9npp048m1qf0/logo_transparent_small.png?dl=0","width":"480","height":"480","ipfs_hash":""},"support":{"email":"contact@dice.money","url":"https://dice.money"},"social":{"blog":"https://medium.com/@DICEsup/","chat":"","facebook":"https://www.facebook.com/DICEsup/","forum":"","github":"https://github.com/DICE-Money/","gitter":"","instagram":"https://www.instagram.com/DICEsup/","linkedin":"linkedin.com/company/dice-money/","reddit":"https://www.reddit.com/r/DICEsup/","slack":"","telegram":"https://t.me/DICEMoneyNews","twitter":"https://twitter.com/DICEsup","youtube":"https://www.youtube.com/channel/UCQAJZnp670MZWnNbZY_ovsg"}},{"symbol":"CFC","name":"CryptFillCoin","type":"ERC20","address":"0x5dff89a2caa4d76bc286f74d67bd718eb834da61","ens_address":"","decimals":18,"website":"https://cryptfillcoin.com","logo":{"src":"https://cryptfillcoin.com/images/resources/logo.png","width":"60","height":"60","ipfs_hash":""},"support":{"email":"info@cryptfillcoin.com","url":"https://cryptfillcoin.com/"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/cryptfill/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CFI","name":"CFI","type":"ERC20","address":"0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CFTY","name":"Crafty Token","type":"ERC20","address":"0x6956983f8b3ce173b4ab84361aa0ad52f38d936f","ens_address":"","decimals":8,"website":"https://crafty.work/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@crafty.work","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/crafty.wk","forum":"","github":"https://github.com/crafty-work","gitter":"","instagram":"https://www.instagram.com/craftywork_/","linkedin":"https://www.linkedin.com/company/crafty-work/","reddit":"https://www.reddit.com/user/crafty_work/","slack":"","telegram":"https://t.me/joinchat/B9-OJQ8acnW_cSAOPAXDXw","twitter":"https://twitter.com/craftywork_","youtube":"https://www.youtube.com/channel/UCkUk22YsTDWiFUMoI_y9kpQ"}},{"symbol":"CHSB","name":"CHSB","type":"ERC20","address":"0xba9d4199fab4f26efe3551d490e3821486f135ba","ens_address":"","decimals":8,"website":"https://swissborg.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CK","name":"CK","type":"ERC20","address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","ens_address":"","decimals":0,"website":"https://cryptokitties.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/CryptoKitties","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CLB","name":"Cloudbric","type":"ERC20","address":"0xb1c1cb8c7c1992dba24e628bf7d38e71dad46aeb","ens_address":"","decimals":18,"website":"https://www.cloudbric.io/","logo":{"src":"https://uploads-ssl.webflow.com/5ad9bd61b926b5696f03050f/5ad9bdd84bee8e3cee66af78_CLB_symbol_white%20(1).png","width":"814","height":"976","ipfs_hash":""},"support":{"email":"ico@cloudbric.com","url":""},"social":{"blog":"https://cloudbric.com/blog","chat":"https://t.me/cloudbric","facebook":"http://www.facebook.com/cloudbric","forum":"","github":"https://github.com/Cloudbric-Project","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/cloudbric/","reddit":"https://www.reddit.com/r/cloudbric/","slack":"","telegram":"https://t.me/cloudbric","twitter":"http://www.twitter.com/cloudbric","youtube":""}},{"symbol":"CLL","name":"CryptoLiveLeak","type":"ERC20","address":"0x3dc9a42fa7afe57be03c58fd7f4411b1e466c508","ens_address":"","decimals":18,"website":"https://www.cryptoliveleak.com/","logo":{"src":"https://github.com/CryptoLiveLeak/CLL-Token/blob/master/28%20x%2028%20CLL%20png.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"contactus@cryptoliveleak.com","url":""},"social":{"blog":"https://medium.com/@cryptoliveleak","chat":"","facebook":"https://www.facebook.com/CryptoLiveLeak/","forum":"","github":"https://github.com/CryptoLiveLeak/CLL-Token","gitter":"","instagram":"https://www.instagram.com/cryptoliveleak/","linkedin":"","reddit":"https://www.reddit.com/r/CryptoLiveLeak/","slack":"","telegram":"https://t.me/CryptoLiveLeak","twitter":"https://twitter.com/CryptoLiveLeak","youtube":"https://www.youtube.com/channel/UCeoB_bpoVOcwIh-MSLxzNpA"}},{"symbol":"CLN","name":"ColuLocalNetwork","type":"ERC20","address":"0x4162178B78D6985480A308B2190EE5517460406D","ens_address":"","decimals":18,"website":"https://cln.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"cln@colu.com","url":""},"social":{"blog":"https://medium.com/colu","chat":"","facebook":"https://www.facebook.com/ColuNetwork/","forum":"","github":"https://github.com/colucom/CLN-solidity","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/Gcrd9Q_E_rgGEjDqmn9Gtg","twitter":"https://twitter.com/ColuNetwork","youtube":""}},{"symbol":"CLP","name":"CryptoLending","type":"ERC20","address":"0x7fce2856899a6806eeef70807985fc7554c66340","ens_address":"","decimals":9,"website":"https://cryptolending.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"henry@cryptolending.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CLPcoin-125929678066347","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CMBT","name":"CMBToken","type":"ERC20","address":"0x3edd235c3e840c1f29286b2e39370a255c7b6fdb","ens_address":"","decimals":8,"website":"https://www.coinmarketbrasil.com.br","logo":{"src":"https://2.bp.blogspot.com/-J35HB-_P0u8/WngvMTjjb6I/AAAAAAAAKzI/KO0DgrLZAV0TxF8dc3faw36XqR9msmP2gCLcBGAs/s1600/eth-cmbt.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"atendimento@coinmarketbrasil.com.br","url":""},"social":{"blog":"https://blog.coinmarketbrasil.com.br/","chat":"","facebook":"https://www.facebook.com/coinmarketbr","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/11386115/","reddit":"https://www.reddit.com/r/CryptoMartCMC","slack":"","telegram":"","twitter":"https://twitter.com/CoinMarketBR","youtube":"https://www.youtube.com/channel/UC97StlfGfolk4nsxDv4tcsw"}},{"symbol":"CMC","name":"CryptoMart","type":"ERC20","address":"0x7e667525521cF61352e2E01b50FaaaE7Df39749a","ens_address":"","decimals":18,"website":"https://www.cryptomart.me","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/CryptoMartCMC","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CMT","name":"CyberMiles Token","type":"ERC20","address":"0xf85fEea2FdD81d51177F6b8F35F0e6734Ce45F5F","ens_address":"","decimals":18,"website":"https://cm.5miles.com","logo":{"src":"http://res.5milesapp.com/image/upload/v1512116368/ico/cmt28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@5miles.com","url":""},"social":{"blog":"http://www.cybermiles.io","chat":"","facebook":"https://www.facebook.com/cybermiles","forum":"","github":"https://github.com/CyberMiles","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/CyberMiles","slack":"https://slack.5miles.com","telegram":"https://t.me/cybermilestoken","twitter":"https://twitter.com/cybermiles","youtube":""}},{"symbol":"CNB","name":"Canabio","type":"ERC20","address":"0xEBf2F9E8De960f64ec0fDCDa6Cb282423133347B","ens_address":"","decimals":8,"website":"https://canabio.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@canabio.net","url":"https://canabio.net"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CanabioToken","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CanabioProject","youtube":""}},{"symbol":"CND","name":"Cindicator","type":"ERC20","address":"0xd4c435f5b09f855c3317c8524cb1f586e42795fa","ens_address":"","decimals":18,"website":"https://cindicator.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cindicator.com","url":"https://cindicator.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/crowdindicator","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Cindicator","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CO2","name":"Climatecoin","type":"ERC20","address":"0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b","ens_address":"","decimals":18,"website":"https://climatecoin.io","logo":{"src":"https://climatecoin.io/uploads/logosmall-1-42x42.png","width":"42","height":"42","ipfs_hash":""},"support":{"email":"info@climatecoin.com","url":"https://climatecoin.io"},"social":{"blog":"https://medium.com/@Climatecoin","chat":"https://t.me/joinchat/Fy8RMAvg7dTdD0ZhOu1a1w","facebook":"https://www.facebook.com/climatecoinofficial","forum":"https://bitcointalk.org/index.php?topic=2188692.0","github":"https://github.com/climatecoinio","gitter":"","instagram":"https://www.instagram.com/climatecoin","linkedin":"https://www.linkedin.com/company/11229823","reddit":"https://www.reddit.com/user/CLIMATECOIN","slack":"https://climatecoinofficial.slack.com","telegram":"https://t.me/climatecoinofficial","twitter":"https://twitter.com/infoclimatecoin","youtube":"https://www.youtube.com/channel/UCa5Q35bRxMZDBcEAEgfisKA"}},{"symbol":"CO2Bit","name":"CO2Bit","type":"ERC20","address":"0x574b36bced443338875d171cc377e691f7d4f887","ens_address":"co2energy.eth","decimals":18,"website":"https://co2bit.com","logo":{"src":"http://co2bit.com/wp-content/uploads/2017/12/28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"info@co2bit.com","url":"https://co2bit.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"COB","name":"Cobinhood Token","type":"ERC20","address":"0xb2f7eb1f2c37645be61d73953035360e768d81e6","ens_address":"","decimals":18,"website":"https://cobinhood.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cobinhood.com","url":""},"social":{"blog":"https://medium.com/@cobinhood","chat":"","facebook":"","forum":"","github":"https://github.com/cobinhood","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://slack.cobinhood.com","telegram":"https://t.me/cobinhood","twitter":"https://twitter.com/cobinhood","youtube":""}},{"symbol":"COFI","name":"CoinFi Token","type":"ERC20","address":"0x3136eF851592aCf49CA4C825131E364170FA32b3","ens_address":"","decimals":18,"website":"https://www.coinfi.com","logo":{"src":"https://blog.coinfi.com/wp-content/uploads/2018/01/coinfi-token-logo_28x28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@coinfi.com","url":""},"social":{"blog":"https://blog.coinfi.com","chat":"","facebook":"https://www.facebook.com/coinfiproject","forum":"","github":"https://github.com/coinfi","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/u/coinfi","slack":"","telegram":"https://t.me/coinfi","twitter":"https://twitter.com/coin_fi","youtube":""}},{"symbol":"COIL","name":"CoinOil","type":"ERC20","address":"0x0c91b015aba6f7b4738dcd36e7410138b29adc29","ens_address":"","decimals":8,"website":"https://coinoil.io/","logo":{"src":"https://coinoil.io/oldw/assets/images/logo/icon.png","width":"146","height":"157","ipfs_hash":""},"support":{"email":"support@Coinoil.io","url":""},"social":{"blog":"","chat":"","facebook":"https://fb.com/CoinOil","forum":"","github":"https://github.com/CoinOil","gitter":"","instagram":"https://instagram.com/coinoil.io","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://www.twitter.com/Coinoil","youtube":""}},{"symbol":"COIN","name":"Coinvest V2 Token","type":"ERC20","address":"0x5e8f855966d638135a968861e80dda722291b06d","ens_address":"","decimals":18,"website":"https://coinve.st","logo":{"src":"https://coinve.st/assets/images/Coinvest_Profile.png","width":"250","height":"250","ipfs_hash":""},"support":{"email":"support@coinve.st","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CoinvestHQ","forum":"https://bitcointalk.org/index.php?topic=2381017.0","github":"https://github.com/CoinvestHQ","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/coinvesthq/","reddit":"http://reddit.com/r/Coinvest","slack":"","telegram":"https://t.me/CoinvestHQ","twitter":"https://www.twitter.com/CoinvestHQ","youtube":"https://www.youtube.com/channel/UCX-pE6nXFg3uK2_cMQ5n6jA"}},{"symbol":"COSS","name":"Coss Token","type":"ERC20","address":"0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c","ens_address":"","decimals":18,"website":"https://coss.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@coss.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"COSS","name":"COSS","type":"ERC20","address":"0x65292eeadf1426cd2df1c4793a3d7519f253913b","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"COV","name":"Covesting","type":"ERC20","address":"0xE2FB6529EF566a080e6d23dE0bd351311087D567","ens_address":"","decimals":18,"website":"https://covesting.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/covesting","slack":"","telegram":"","twitter":"https://twitter.com/covesting","youtube":""}},{"symbol":"CPEX","name":"CoinPulseToken","type":"ERC20","address":"0xb787d4eac8899730bb8c57fc3c998c49c5244ec0","ens_address":"","decimals":8,"website":"https://CoinPulse.io","logo":{"src":"https://i.imgur.com/GaPxtv5.png","width":256,"height":256,"ipfs_hash":""},"support":{"email":"support@coinpulse.io","url":"https://coinpulse.io"},"social":{"blog":"https://medium.com/@coinpulse","chat":"https://t.me/coinpulseex","facebook":"https://www.facebook.com/coinpulseex","forum":"https://bitcointalk.org/index.php?topic=2432836.0","github":"https://github.com/coinpulse","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/coinpulseex","slack":"https://coinpulse.slack.com/join/shared_invite/enQtMjc0MzkwMjk3NjY0LTE4YzZlNWUyMWJiNjQwMDI0MGJkYjAxMzA2ODU2ZDAzYTBiN2Y4NDI2NTljYTBmMWMxNmM0ZDIyNjQ0M2JmMTA","telegram":"https://t.me/coinpulseex","twitter":"https://twitter.com/coinpulseex","youtube":"https://youtube.com/coinpulseexchange"}},{"symbol":"CPY","name":"COPYTRACK","type":"ERC20","address":"0xf44745fbd41f6a1ba151df190db0564c5fcc4410","ens_address":"","decimals":18,"website":"https://copytrack.io","logo":{"src":"https://cdn.copytrack.io/media/cpy.png?auto=compress&w=200","width":200,"height":200,"ipfs_hash":""},"support":{"email":"support@copytrack.io","url":"https://copytrack.io"},"social":{"blog":"https://medium.com/aditusnetwork","chat":"","facebook":"https://www.facebook.com/COPYTRACK","forum":"","github":"https://github.com/aditus","gitter":"","instagram":"https://www.instagram.com/copytrack","linkedin":"https://www.linkedin.com/company/10840600","reddit":"","slack":"","telegram":"https://t.me/copytrackhq","twitter":"https://twitter.com/CopytrackHQ","youtube":""}},{"symbol":"CR7","name":"CR7Coin","type":"ERC20","address":"0x7f585b9130c64e9e9f470b618a7badd03d79ca7e","ens_address":"","decimals":18,"website":"https://cr7coin.org","logo":{"src":"https://cr7coin.org/assets/images/logo2.png","width":200,"height":200,"ipfs_hash":""},"support":{"email":"hello@cr7coin.org","url":"https://cr7coin.org"},"social":{"blog":"https://medium.com/@CR7Coin","chat":"","facebook":"https://www.facebook.com/CR7Coin","forum":"","github":"https://github.com/CR7CoinProject","gitter":"","instagram":"https://www.instagram.com/CR7Coin","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/CR7Coin","twitter":"https://twitter.com/TheCR7Coin","youtube":""}},{"symbol":"CRB","name":"CRB","type":"ERC20","address":"0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CRED","name":"CRED","type":"ERC20","address":"0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD","ens_address":"","decimals":18,"website":"https://verify.as","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@verify.as","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/verifyas","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/verifyas","twitter":"","youtube":""}},{"symbol":"CREDO","name":"Credo / Bitbounce","type":"ERC20","address":"0x4e0603e2a27a30480e5e3a4fe548e29ef12f64be","ens_address":"","decimals":18,"website":"https://bitbounce.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"stewart@team.bitbounce.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CRGO","name":"CargoCoin","type":"ERC20","address":"0xf49cdd50ad408d387d611f88a647179c3de3492b","ens_address":"","decimals":18,"website":"https://thecargocoin.com","logo":{"src":"https://thecargocoin.com/images/logo_icon.png","width":"44","height":"44","ipfs_hash":""},"support":{"email":"info@thecargocoin.com","url":"https://thecargocoin.com/contact.html"},"social":{"blog":"https://medium.com/@thecargocoin","chat":"","facebook":"https://www.facebook.com/thecargocoin/","forum":"https://bitcointalk.org/index.php?topic=3224289","github":"https://github.com/CargoCoinRepo/Cargo-Coin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/cargocoin/","reddit":"https://www.reddit.com/user/thecargocoin","slack":"https://thecargocoin.slack.com/","telegram":"http://t.me/thecargocoingroup","twitter":"https://twitter.com/thecargocoin","youtube":"https://www.youtube.com/c/CargoCoin"}},{"symbol":"CRMT","name":"Cremit","type":"ERC20","address":"0x9238bfb781a55eacc3cf05f7df94038c198cd9b9","ens_address":"","decimals":8,"website":"https://www.cremit.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cremit.co","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CRPT","name":"CrypteriumToken","type":"ERC20","address":"0x80a7e048f37a50500351c204cb407766fa3bae7f","ens_address":"","decimals":18,"website":"https://crypterium.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@crypterium.io","url":""},"social":{"blog":"https://medium.com/@crypterium_io","chat":"","facebook":"https://www.facebook.com/crypterium.io","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/crypterium","reddit":"","slack":"","telegram":"https://t.me/crypterium","twitter":"https://twitter.com/@crypterium","youtube":"https://www.youtube.com/channel/UCulhwOW251X2fpRJ7bTCCvg"}},{"symbol":"CRT","name":"CreamtoeCoin","type":"ERC20","address":"0xF0da1186a4977226b9135d0613ee72e229EC3F4d","ens_address":"","decimals":18,"website":"http://creamtoecoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@creamtoecoin.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CryptoCarbon","name":"CryptoCarbon","type":"ERC20","address":"0xE4c94d45f7Aef7018a5D66f44aF780ec6023378e","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CTF","name":"CryptoTask","type":"ERC20","address":"0x4545750F39aF6Be4F237B6869D4EccA928Fd5A85","ens_address":"","decimals":18,"website":"www.cryptotask.org","logo":{"src":"https://www.cryptotask.org/wp-content/uploads/2017/10/Logo_H-01.svg","width":"","height":"","ipfs_hash":""},"support":{"email":"info@cryptotask.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/vkajic/cryptotask","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CTG","name":"CT Global Token","type":"ERC20","address":"0xc87c5dd86a3d567ff28701886fb0745aaa898da4","ens_address":"christiantraders.eth","decimals":18,"website":"https://christiantraders.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@christiantraders.com","url":"https://christiantraders.com"},"social":{"blog":"http://emini.cfrn.net","chat":"https://christiantraders.com","facebook":"facebook.com/cryptodailyinfo/","forum":"https://discordapp.com/channels/432450856319975424/432451525093359618","github":"github.com/CTGlobal/ChristianTraders","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/dewayne-reeves/","reddit":"","slack":"","telegram":"https://t.me/ChristianTraders","twitter":"https://twitter.com/cryptodailyinfo","youtube":"https://youtube.com/CFRN"}},{"symbol":"CTGC","name":"Convenient To Go","type":"ERC20","address":"0x9e7d29bd499b6c7da2a5b2eafcf4a39d3bd845d1","ens_address":"christiantraders.eth","decimals":18,"website":"https://www.ctgcoin.org","logo":{"src":"https://www.ctgcoin.org/upload/logo/ctg.logo.png","width":"68","height":"41","ipfs_hash":""},"support":{"email":"support@ctgcoin.org","url":"https://www.ctgcoin.org"},"social":{"blog":"https://weibo.com/6550499942/info","chat":"","facebook":"https://www.facebook.com/ctg.coin","forum":"","github":"https://github.com/ctgcoin/","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://telegram.me/CTGgroup","twitter":"https://twitter.com/CtGcoin","youtube":""}},{"symbol":"CTL","name":"CTL","type":"ERC20","address":"0xbf4cfd7d1edeeea5f6600827411b41a21eb08abd","ens_address":"","decimals":2,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CTT","name":"ChainTrade Token","type":"ERC20","address":"0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5","ens_address":"","decimals":18,"website":"https://chaintrade.net","logo":{"src":"https://chaintrade.net/wp-content/uploads/2017/09/chaintrade-logo-600x600.png","width":600,"height":600,"ipfs_hash":""},"support":{"email":"contact@chaintrade.net","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/ChainTrade","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/ChainTrade","youtube":"https://www.youtube.com/channel/UCUuSL2luzBpErQ32mHhp10Q"}},{"symbol":"CTX","name":"CarTaxi","type":"ERC20","address":"0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66","ens_address":"","decimals":18,"website":"https://cartaxi.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@cartaxi.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/cartaxi.io","forum":"https://bitcointalk.org/index.php?topic=2113124","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/cartaxi_io","twitter":"https://twitter.com/CarTaxi_24","youtube":""}},{"symbol":"cV","name":"carVertical","type":"ERC20","address":"0xdA6cb58A0D0C01610a29c5A65c303e13e885887C","ens_address":"","decimals":18,"website":"https://www.carvertical.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@carvertical.com","url":""},"social":{"blog":"https://www.carvertical.com/#blog","chat":"","facebook":"https://www.facebook.com/cartaxi.io","forum":"https://bitcointalk.org/index.php?topic=2113124","github":"https://github.com/carVertical","gitter":"","instagram":"https://www.instagram.com/carvertical.io","linkedin":"https://www.linkedin.com/company/18321878","reddit":"https://www.reddit.com/r/carVertical","slack":"","telegram":"https://t.me/carVerticalio","twitter":"https://twitter.com/verticalcar","youtube":"https://www.youtube.com/channel/UCRqoBXtP2v0H8C844YN8mdA"}},{"symbol":"CVC","name":"CVC","type":"ERC20","address":"0x41e5560054824ea6b0732e656e3ad64e20e94e45","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CXC","name":"CoxxxCoin","type":"ERC20","address":"0x2134057c0b461f898d375cead652acae62b59541","ens_address":"","decimals":18,"website":"http://coxxxcoin.com","logo":{"src":"http://www.coxxxcoin.com/CoxxxCoin.256.png","width":"","height":"","ipfs_hash":""},"support":{"email":"coxxxcoin@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/coxxxcoin/smart_contract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/CoxxxCoin/","slack":"https://coxxxcoin.slack.com","telegram":"","twitter":"https://twitter.com/coxxxcoin","youtube":""}},{"symbol":"CXO","name":"CargoX","type":"ERC20","address":"0xb6EE9668771a79be7967ee29a63D4184F8097143","ens_address":"","decimals":18,"website":"https://cargox.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@cargox.io","url":""},"social":{"blog":"https://medium.com/cargoxio","chat":"","facebook":"https://www.facebook.com/cargox.io","forum":"","github":"https://github.com/cargoxio","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/cargoxio","slack":"","telegram":"https://t.me/joinchat/GAKhBQ48675fRRMEd-kLcw","twitter":"https://twitter.com/cargoxio","youtube":""}},{"symbol":"CYFM","name":"CyberFM","type":"ERC20","address":"0x3f06B5D78406cD97bdf10f5C420B241D32759c80","ens_address":"","decimals":18,"website":"https://cyberfmradio.com","logo":{"src":"https://mftu.net/tokeninfo/cyfm/0x3f06B5D78406cD97bdf10f5C420B241D32759c80.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"service@cyberfmradio.com","url":""},"social":{"blog":"https://mftu.net/site","chat":"","facebook":"https://facebook.com/cyberfm","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/cyberfm","slack":"","telegram":"https://t.me/mftudotnet","twitter":"https://twitter.com/cyber_fm","youtube":""}},{"symbol":"DAB","name":"DAB","type":"ERC20","address":"0xdab0C31BF34C897Fb0Fe90D12EC9401caf5c36Ec","ens_address":"","decimals":0,"website":"https://dabco.in","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dabco.in","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DADI","name":"DADI","type":"ERC20","address":"0xfb2f26f266fb2805a387230f2aa0a331b4d96fba","ens_address":"","decimals":18,"website":"https://dadi.cloud","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dadi.co","url":""},"social":{"blog":"https://medium.com/@daditech","chat":"","facebook":"","forum":"https://forum.dadi.tech","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/dadi","youtube":""}},{"symbol":"DAI","name":"Dai Stablecoin v1.0","type":"ERC20","address":"0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359","ens_address":"","decimals":18,"website":"https://makerdao.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@makerdao.com","url":"https://chat.makerdao.com"},"social":{"blog":"","chat":"https://chat.makerdao.com","facebook":"","forum":"","github":"https://github.com/makerdao","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/MakerDAO","slack":"","telegram":"","twitter":"https://twitter.com/MakerDAO","youtube":""}},{"symbol":"DALC","name":"DaleCoin","type":"ERC20","address":"0x07d9e49ea402194bf48a8276dafb16e4ed633317","ens_address":"","decimals":8,"website":"http://www.dalecoin.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dalecoin.org","url":""},"social":{"blog":"","chat":"","facebook":"https://web.facebook.com/dalecoin","forum":"https://bitcointalk.org/index.php?topic=2057829.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/dalecoin","twitter":"http://twitter.com/DalecoinN","youtube":""}},{"symbol":"DAN","name":"DaneelToken","type":"ERC20","address":"0x9B70740e708a083C6fF38Df52297020f5DfAa5EE","ens_address":"","decimals":10,"website":"https://daneel.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"information@daneel.io","url":""},"social":{"blog":"https://medium.com/@daneel_project","chat":"","facebook":"https://fb.me/daneelproject","forum":"https://bitcointalk.org/index.php?topic=2376203","github":"https://github.com/project-daneel","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/DaneelCommunity","twitter":"https://twitter.com/daneelproject","youtube":""}},{"symbol":"DAO","name":"DAO","type":"ERC20","address":"0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413","ens_address":"","decimals":16,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DAT","name":"Datum Token","type":"ERC20","address":"0x81c9151de0c8bafcd325a57e3db5a5df1cebf79c","ens_address":"","decimals":18,"website":"https://datum.org","logo":{"src":"https://datum.org/assets/images/datumlogo_square_128px.png","width":128,"height":128,"ipfs_hash":""},"support":{"email":"support@datum.org","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/datumnetwork","forum":"https://bitcointalk.org/index.php?topic=2049312.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/datumnetwork","twitter":"https://twitter.com/datumnetwork","youtube":""}},{"symbol":"DATABroker","name":"DATABroker","type":"ERC20","address":"0x1b5f21ee98eed48d292e8e2d3ed82b40a9728a22","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DATACoin","name":"DATACoin","type":"ERC20","address":"0x0cf0ee63788a0849fe5297f3407f701e122cc023","ens_address":"","decimals":18,"website":"https://www.streamr.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@streamr.com","url":""},"social":{"blog":"https://blog.streamr.com","chat":"","facebook":"","forum":"","github":"https://github.com/streamr-dev","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.streamr.com","telegram":"","twitter":"https://twitter.com/streamrinc","youtube":""}},{"symbol":"DAV","name":"DAV Token","type":"ERC20","address":"0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14","ens_address":"","decimals":18,"website":"https://dav.network/","logo":{"src":"https://dav.network/img/logo-mew.png","width":500,"height":500,"ipfs_hash":""},"support":{"email":"support@dav.network","url":""},"social":{"blog":"https://medium.com/davnetwork","chat":"","facebook":"","forum":"","github":"https://github.com/DAVFoundation","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/dav-foundation","reddit":"https://www.reddit.com/r/DAVNetwork/","slack":"","telegram":"https://t.me/DAVNetwork","twitter":"https://twitter.com/DavNetwork","youtube":"https://www.youtube.com/c/DAVNetwork"}},{"symbol":"DAXT","name":"Digital Asset Exchange Token","type":"ERC20","address":"0x61725f3db4004afe014745b21dab1e1677cc328b","ens_address":"","decimals":18,"website":"https://www.daxt.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"concierge@blockex.com","url":""},"social":{"blog":"https://www.blockex.com/blogslistings","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://blockex.slack.com/","telegram":"","twitter":"https://twitter.com/blockex","youtube":""}},{"symbol":"DCC","name":"Distributed Credit Chain","type":"ERC20","address":"0xffa93aacf49297d51e211817452839052fdfb961","ens_address":"","decimals":18,"website":"http://dcc.finance","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@dcc.finance","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Distributed-Credit-Chain-425721787866299/","forum":"","github":"https://github.com/DistributedBanking/DCC","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/dccofficial/","slack":"","telegram":"https://t.me/DccOfficial","twitter":"https://twitter.com/DccOfficial2018/","youtube":""}},{"symbol":"DCL","name":"DCL","type":"ERC20","address":"0x399A0e6FbEb3d74c85357439f4c8AeD9678a5cbF","ens_address":"","decimals":3,"website":"https://www.DisLedger.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@DisLedger.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/DisLedger_Launch","twitter":"https://twitter.com/DisledgerInfo","youtube":""}},{"symbol":"DCN","name":"Dentacoin","type":"ERC20","address":"0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6","ens_address":"Dentacoin.eth","decimals":0,"website":"https://dentacoin.com","logo":{"src":"https://dentacoin.com/web/img/DCNlogo.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"admin@dentacoin.com","url":"https://dentacoin.com"},"social":{"blog":"https://www.blog.dentacoin.com","chat":"https://dentacoin.com","facebook":"https://www.facebook.com/dentacoin","forum":"https://bitcointalk.org/index.php?topic=1944236.0","github":"https://github.com/Dentacoin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Dentacoin","slack":"","telegram":"https://t.me/dentacoin","twitter":"https://twitter.com/dentacoin?lang=en","youtube":"https://www.youtube.com/channel/UCSL-UsN8dc4CzHWiCv-NfrQ"}},{"symbol":"DDF","name":"DDF","type":"ERC20","address":"0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DEB","name":"DEBITUM","type":"ERC20","address":"0x151202C9c18e495656f372281F493EB7698961D5","ens_address":"","decimals":18,"website":"https://debitum.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@debitum.network","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/DebitumNetwork","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/24999208/","reddit":"https://www.reddit.com/user/DebitumNetwork","slack":"","telegram":"https://t.me/joinchat/G6KFmURKsu0FIfJetJ3mOA","twitter":"https://twitter.com/DebitumNetwork","youtube":""}},{"symbol":"DENT","name":"DENT","type":"ERC20","address":"0x3597bfd533a99c9aa083587b074434e61eb0a258","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DEPO (CRYPTODEPOZIT)","name":"CRYPTODEPOZIT","type":"ERC20","address":"0x7cF271966F36343Bf0150F25E5364f7961c58201","ens_address":"","decimals":0,"website":"Aridika.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DEPO (Depository Network)","name":"DEPO (Depository Network)","type":"ERC20","address":"0x89cbeac5e8a13f0ebb4c74fadfc69be81a501106","ens_address":"","decimals":18,"website":"https://depository.network","logo":{"src":"https://i.imgur.com/ar18ECx.png","width":"358","height":"373","ipfs_hash":""},"support":{"email":"support@depository.network","url":"https://depository.network/"},"social":{"blog":"https://depository.network/blog/","chat":"","facebook":"https://www.facebook.com/depository.network/","forum":"https://bitcointalk.org/index.php?topic=4544199","github":"https://github.com/DepositoryNetwork/DepositoryTokenSmartContract","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/depositorynetwork/","reddit":"https://www.reddit.com/r/DepositoryNetworkDepo/","slack":"","telegram":"https://t.me/depositorynetwork","twitter":"https://twitter.com/deponetwork","youtube":"https://www.youtube.com/channel/UCi7oC83SlkcDXQa5eA0Bkxg"}},{"symbol":"Devcon2 Token","name":"Devcon2 Token","type":"ERC20","address":"0xdd94De9cFE063577051A5eb7465D08317d8808B6","ens_address":"","decimals":0,"website":"https://www.devcon2-token.com","logo":{"src":"https://etherscan.io/token/images/Devcon2.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DGD","name":"Digix DAO","type":"ERC20","address":"0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A","ens_address":"","decimals":9,"website":"https://www.dgx.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/digix","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DGPT","name":"DigiPulse","type":"ERC20","address":"0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1","ens_address":"token.digipulse.eth","decimals":18,"website":"https://www.digipulse.io","logo":{"src":"https://files.coinmarketcap.com/static/img/coins/200x200/digipulse.png","width":200,"height":200,"ipfs_hash":""},"support":{"email":"hello@digipulse.io","url":"https://www.digipulse.io"},"social":{"blog":"https://blog.digipulse.io","chat":"https://discord.gg/aDm4hP3","facebook":"https://www.facebook.com/digipulse.io","forum":"https://bitcointalk.org/index.php?topic=2203117.0","github":"https://github.com/digipulseio","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/24788224","reddit":"https://www.reddit.com/r/Digipulse","slack":"","telegram":"https://t.me/digipulse_official","twitter":"https://twitter.com/DigiPulseIO","youtube":"https://www.youtube.com/channel/UCndaovd_Ps0onxh7HccLSIQ"}},{"symbol":"DGS","name":"Dragonglass","type":"ERC20","address":"0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b","ens_address":"","decimals":8,"website":"https://dragonglass.com/","logo":{"src":"https://dragonglass.com/wp-content/uploads/2018/06/LogoX132_color_2.png","width":"132","height":"132","ipfs_hash":""},"support":{"email":"support@dragonglass.com","url":"https://t.me/dragonglassco"},"social":{"blog":"http://medium.com/dragonglasscom","chat":"","facebook":"https://www.facebook.com/dragonglasscom","forum":"","github":"https://github.com/dragonglasscom","gitter":"","instagram":"https://instagram.com/dragonglass_official/","linkedin":"https://www.linkedin.com/company/dragonglass/","reddit":"","slack":"https://discordapp.com/invite/eZkxuZg","telegram":"https://t.me/dragonglassco","twitter":"https://twitter.com/dragonglasscom","youtube":"https://www.youtube.com/channel/UCneuYA9RuRFCb-usyb03eWw"}},{"symbol":"DGTX","name":"DigitexFutures","type":"ERC20","address":"0x1c83501478f1320977047008496dacbd60bb15ef","ens_address":"","decimals":18,"website":"https://digitexfutures.com/","logo":{"src":"https://digitexfutures.com/img/DGTX.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"support@digitexfutures.com","url":"https://digitexfutures.com/contact/"},"social":{"blog":"https://blog.digitexfutures.com/","chat":"https://t.me/digitexfutureschat","facebook":"https://www.facebook.com/DigitexFutures","forum":"https://www.reddit.com/r/DigitexFutures/","github":"https://github.com/DigitexFutures","gitter":"","instagram":"https://www.instagram.com/digitexfutures/","linkedin":"https://www.linkedin.com/company/digitex-futures-exchange/","reddit":"https://www.reddit.com/r/DigitexFutures","slack":"https://discordapp.com/invite/eZkxuZg","telegram":"https://t.me/digitexfutureschat","twitter":"https://twitter.com/digitexfutures","youtube":"https://www.youtube.com/channel/UCjY3JG9agHi2ePDTm6sJysw"}},{"symbol":"DGX","name":"DGX","type":"ERC20","address":"0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf","ens_address":"","decimals":9,"website":"https://www.dgx.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DGX1","name":"DGX1","type":"ERC20","address":"0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855","ens_address":"","decimals":9,"website":"https://www.dgx.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DICE","name":"Etheroll","type":"ERC20","address":"0x2e071D2966Aa7D8dECB1005885bA1977D6038A65","ens_address":"","decimals":16,"website":"https://etheroll.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/etheroll","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DIP","name":"Decentralized Insurance Protocol","type":"ERC20","address":"0xc719d010B63E5bbF2C0551872CD5316ED26AcD83","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DIVX","name":"DIVX","type":"ERC20","address":"0x13f11C9905A08ca76e3e853bE63D4f0944326C72","ens_address":"","decimals":18,"website":"https://www.diviproject.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@diviproject.org","url":""},"social":{"blog":"","chat":"https://discord.gg/KQdVYsF","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/DiviProject","slack":"","telegram":"https://t.me/joinchat/EAdiTQ3yZk_GkqU0IdG-Gg","twitter":"","youtube":""}},{"symbol":"DLT","name":"Agrello","type":"ERC20","address":"0x07e3c70653548b04f0a75970c1f81b4cbbfb606f","ens_address":"","decimals":18,"website":"https://www.agrello.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@agrello.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DMT","name":"DMarket Token","type":"ERC20","address":"0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1","ens_address":"","decimals":8,"website":"https://dmarket.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dmarket.io","url":"https://dmarket.io"},"social":{"blog":"https://dmarket.io/info/en/updates","chat":"","facebook":"https://www.facebook.com/dmarketcommunity","forum":"https://bitcointalk.org/index.php?topic=2041720.new#new","github":"https://github.com/suntechsoft/dmarket-smartcontract","gitter":"","instagram":"https://www.instagram.com/dmarket.io","linkedin":"https://www.linkedin.com/company/18149400","reddit":"https://www.reddit.com/r/D_Market","slack":"https://dmarket.io/slack","telegram":"https://t.me/joinchat/CV8tCULRq_vJ2Xzu9Iopqg","twitter":"https://twitter.com/dmarket_io","youtube":"https://www.youtube.com/watch?v=h5fI1A2gB-E"}},{"symbol":"DNT","name":"DistrictOx","type":"ERC20","address":"0x0abdace70d3790235af448c88547603b945604ea","ens_address":"","decimals":18,"website":"https://district0x.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.district0x.io","chat":"","facebook":"","forum":"","github":"https://github.com/district0x","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://district0x-slack.herokuapp.com","telegram":"","twitter":"https://twitter.com/district0x","youtube":""}},{"symbol":"DNX","name":"DenCity","type":"ERC20","address":"0xE43E2041dc3786e166961eD9484a5539033d10fB","ens_address":"","decimals":18,"website":"https://dencity.life","logo":{"src":"https://dencity.life/assets/images/logo.png","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@dencity.life","url":""},"social":{"blog":"https://medium.com/dencity","chat":"","facebook":"https://www.facebook.com/Dencity-128638871159525","forum":"https://bitcointalk.org/index.php?topic=2488839","github":"https://github.com/DenCity-life","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Dencity","slack":"","telegram":"https://t.me/Dencity","twitter":"https://twitter.com/dencity_life","youtube":""}},{"symbol":"DoBETacceptBET(DCA)","name":"DCA","type":"ERC20","address":"0x386Faa4703a34a7Fdb19Bec2e14Fd427C9638416","ens_address":"","decimals":18,"website":"www.dobetacceptbet.com","logo":{"src":"https://cloud.mail.ru/public/CTJL/QwWyu3Y4e","width":200,"height":200,"ipfs_hash":""},"support":{"email":"support@dobet.info","url":"www.dobetacceptbet.com"},"social":{"blog":"https://medium.com/@doBETacceptBET","chat":"https://bitcointalk.org/index.php?topic=1958953.0","facebook":"https://www.facebook.com/betcoin.dobetacceptbet","fourm":"https://bitcointalk.org/index.php?topic=1958953.0","github":"https://github.com/dobetacceptbet","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/betcoin-dobetacceptbet-1a6073144/","reddit":"https://www.reddit.com/user/doBETacceptBET","slack":"","telegram":"@doBETacceptBET","twitter":"@doBETacceptBET","youtube":"https://www.youtube.com/channel/UC1zXY-rO7_EPUyuKzPEVKfg"}},{"symbol":"DOW","name":"DOW","type":"ERC20","address":"0x76974c7b79dc8a6a109fd71fd7ceb9e40eff5382","ens_address":"","decimals":18,"website":"https://dowcoin.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"dowcoin@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DPP","name":"Digital Assets Power Play","type":"ERC20","address":"0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB","ens_address":"","decimals":18,"website":"https://cofound.it/en/projects/digital-assets-power-play","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://support.cofound.it/hc/en-us/articles/115001315351-Crowdsale-token-list-information"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DRGN","name":"Dragon","type":"ERC20","address":"0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e","ens_address":"dragonchain.eth","decimals":18,"website":"https://dragonchain.com","logo":{"src":"https://dragonchain.com/assets/images/dragon.png","width":813,"height":879,"ipfs_hash":""},"support":{"email":"support@dragonchain.com","url":""},"social":{"blog":"https://dragonchain.com/blog","chat":"https://t.me/dragontalk","facebook":"","forum":"","github":"https://github.com/dragonchain/dragonchain","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18216867","reddit":"https://www.reddit.com/r/dragonchain","slack":"","telegram":"https://t.me/dragontalk","twitter":"https://twitter.com/dragonchaingang","youtube":"https://www.youtube.com/channel/UC2_StJYNWFrQz2wiL8n6hoA/videos"}},{"symbol":"DROP (dropil)","name":"Dropil","type":"ERC20","address":"0x4672bad527107471cb5067a887f4656d585a8a31","ens_address":"","decimals":18,"website":"https://dropil.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://dex.dropil.com/newticket"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DROP (droplex)","name":"Droplex","type":"ERC20","address":"0x3c75226555FC496168d48B88DF83B95F16771F37","ens_address":"","decimals":0,"website":"https://droplex.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@droplex.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DRP","name":"Dripcoin","type":"ERC20","address":"0x2799d90c6d44cb9aa5fbc377177f16c33e056b82","ens_address":"","decimals":0,"website":"http://drpcoin.com","logo":{"src":"https://i.imgur.com/3V7N7hr.png","width":"256","height":"256","ipfs_hash":""},"support":{"email":"help@drpcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"https://instagram.com/drip_coin","linkedin":"","reddit":"https://reddit.com/r/dripcoin","slack":"","telegram":"","twitter":"https://twitter.com/drip_coin","youtube":""}},{"symbol":"DRP","name":"DCorp","type":"ERC20","address":"0x621d78f2ef2fd937bfca696cabaf9a779f59b3ed","ens_address":"","decimals":2,"website":"https://www.dcorp.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DRVH","name":"Driveholic Token","type":"ERC20","address":"0x62d4c04644314f35868ba4c65cc27a77681de7a9","ens_address":"","decimals":18,"website":"https://driveholic.com/","logo":{"src":"https://airdrop.driveholic.com/icon/apple-icon-180x180.png","width":"180","height":"180","ipfs_hash":""},"support":{"email":"airdrop@driveholic.com","url":"https://airdrop.driveholic.com/"},"social":{"blog":"https://medium.com/@driveholicsite","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=4613024","github":"https://github.com/TeamDriveholic","gitter":"","instagram":"https://www.instagram.com/driveholicsite/","linkedin":"","reddit":"https://www.reddit.com/r/driveholic/","slack":"","telegram":"https://t.me/driveholicairdrop","twitter":"https://twitter.com/driveholic","youtube":""}},{"symbol":"DSC","name":"Digital Safe Coin","type":"ERC20","address":"0x1e09BD8Cadb441632e441Db3e1D79909EE0A2256","ens_address":"","decimals":1,"website":"https://digitalsafecoin.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@digitalsafecoin.com","url":""},"social":{"blog":"","chat":"https://tawk.to/chat/54f94986d99780432012be7e/default/?$_tawk_popout=true","facebook":"web.facebook.com/digitalsafecoin/","forum":"","github":"github.com/xxxxyy1","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"twitter.com/xxxxyy1","youtube":"https://www.youtube.com/channel/UCKRONjyORHrFO2nOXlwJVzg"}},{"symbol":"DTH","name":"dether","type":"ERC20","address":"0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190","ens_address":"","decimals":18,"website":"https://dether.io","logo":{"src":"https://ipfs.io/ipfs/QmTbnd1okDoU188cLCFvZorxWgfVHdoLwwnLKxkJJFcncv","width":"349","height":"349","ipfs_hash":"QmTbnd1okDoU188cLCFvZorxWgfVHdoLwwnLKxkJJFcncv"},"support":{"email":"support@dether.io","url":"https://dether.io"},"social":{"blog":"https://medium.com/@DETHER","chat":"https://t.me/joinchat/GkdUjUQ4jx_Apxmz2km4ww","facebook":"https://www.facebook.com/dether.io/","forum":"https://medium.com/@DETHER","github":"https://github.com/dethertech","gitter":"https://gitter.im/dether-js","instagram":"https://www.instagram.com/dether.io/","linkedin":"https://www.linkedin.com/company/dether-io/","reddit":"https://www.reddit.com/r/Dether/","slack":"https://dether.slack.com/messages/C4HEL2KLK/details/","telegram":"https://t.me/joinchat/GkdUjUQ4jx_Apxmz2km4ww","twitter":"https://twitter.com/dether_io","youtube":"https://www.youtube.com/channel/UCXkA5w4KdpnBMeIsu62ZS8w"}},{"symbol":"DTR","name":"DTR","type":"ERC20","address":"0xd234bf2410a0009df9c3c63b610c09738f18ccd7","ens_address":"","decimals":8,"website":"https://www.tokens.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/tokens.net","forum":"https://bitcointalk.org/index.php?topic=2339770","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/tokensnet","youtube":""}},{"symbol":"DTT","name":"Delphi Tech Token","type":"ERC20","address":"0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676","ens_address":"","decimals":18,"website":"https://delphifund.org/","logo":{"src":"https://delphifund.org/wp-content/uploads/2018/04/delphi400x400.jpg","width":"400","height":"400","ipfs_hash":""},"support":{"email":"support@delphifund.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/DTToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Delphitechtoken","youtube":""}},{"symbol":"DTx","name":"DigitalTicks","type":"ERC20","address":"0x82fdedfB7635441aA5A92791D001fA7388da8025","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DTX","name":"DaTa eXchange Token","type":"ERC20","address":"0x765f0c16d1ddc279295c1a7c24b0883f62d33f75","ens_address":"","decimals":18,"website":"https://databrokerdao.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@databrokerdao.com","url":""},"social":{"blog":"https://medium.com/databrokerdao","chat":"","facebook":"https://www.facebook.com/DataBrokerDAO","forum":"https://bitcointalk.org/index.php?topic=2113309.0","github":"https://github.com/DataBrokerDAO","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/DatabrokerDAO/","slack":"","telegram":"https://t.me/databrokerdao","twitter":"https://twitter.com/DataBrokerDAO","youtube":"https://www.youtube.com/channel/UCUmxSlaliIuF0Z3yNw8y_uA"}},{"symbol":"DUBI","name":"DUBI","type":"ERC20","address":"0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c","ens_address":"","decimals":18,"website":"https://prps.io","logo":{"src":"https://imgur.com/qoz7jTX","width":"50","height":"61","ipfs_hash":""},"support":{"email":"support@gamingforgood.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/nionis/purpose","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/PRPS","slack":"","telegram":"","twitter":"https://twitter.com/prps_io","youtube":""}},{"symbol":"EAGLE","name":"EagleCoin","type":"ERC20","address":"0x994f0dffdbae0bbf09b652d6f11a493fd33f42b9","ens_address":"","decimals":18,"website":"https://eaglepay.io","logo":{"src":"https://pasteboard.co/GYomPdv.jpg","width":"","height":"","ipfs_hash":""},"support":{"email":"team@eaglepay.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/EagleCoin","forum":"","github":"https://github.com/elangindonesia/EagleCoin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/13453528","reddit":"","slack":"","telegram":"https://t.me/eaglecoinworld","twitter":"https://twitter.com/EaglecoinID","youtube":"https://www.youtube.com/channel/UCMj7jcOXML6pqsWWajLgKKQ"}},{"symbol":"eBCH","name":"eBCH","type":"ERC20","address":"0xafc39788c51f0c1ff7b55317f3e70299e521fff6","ens_address":"","decimals":8,"website":"https://ebitcoincash.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@ebitcoincash.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/eBCHCoin-1528769833904071","forum":"https://bitcointalk.org/index.php?topic=2432836.0;all","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/eBCHCoin","slack":"https://ebch.slack.com","telegram":"https://t.me/eBCHCoin","twitter":"https://twitter.com/eBCHCoin","youtube":""}},{"symbol":"eBTC","name":"eBTC","type":"ERC20","address":"0xeb7c20027172e5d143fb030d50f91cece2d1485d","ens_address":"","decimals":8,"website":"https://ebitcoin.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@ebitcoin.org","url":""},"social":{"blog":"https://medium.com/@eBTCFoundation","chat":"","facebook":"https://www.facebook.com/eBitcoin.org","forum":"https://bitcointalk.org/index.php?topic=2210565.0","github":"https://github.com/eBTCCommunityTrustToken/eBTC","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/eBTC","slack":"","telegram":"https://t.me/ComTrust","twitter":"https://twitter.com/ebtcfoundation","youtube":"https://www.youtube.com/channel/UC3qfrY1tpUFEy3nOjqaGBDw/videos"}},{"symbol":"ECN","name":"ECN","type":"ERC20","address":"0xa578acc0cb7875781b7880903f4594d13cfa8b98","ens_address":"","decimals":2,"website":"www.cewrd.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@cewrd.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ECO2","name":"EtherCO2","type":"ERC20","address":"0x17F93475d2A978f527c3f7c44aBf44AdfBa60D5C","ens_address":"","decimals":2,"website":"http://www.ethco2.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ethco2@163.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"EDC","name":"Education Credits","type":"ERC20","address":"0xfa1de2ee97e4c10c94c91cb2b5062b89fb140b82","ens_address":"","decimals":6,"website":"https://www.edc.network","logo":{"src":"https://edc.network/images/edc-logo28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"info@edc.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"EDG","name":"Edgeless","type":"ERC20","address":"0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c","ens_address":"","decimals":0,"website":"https://edgeless.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://edgelessethcasino.signup.team","telegram":"","twitter":"","youtube":""}},{"symbol":"EDO","name":"Eidoo","type":"ERC20","address":"0xced4e93198734ddaff8492d525bd258d49eb388e","ens_address":"","decimals":18,"website":"https://eidoo.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@eidoo.io","url":""},"social":{"blog":"https://medium.com/eidoo","chat":"","facebook":"https://www.facebook.com/eidoocrypto","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/AAAAAERSsZk99wFzx2v_Kw","twitter":"https://twitter.com/eidoo_io","youtube":""}},{"symbol":"EDR","name":"Endor Protocol Token","type":"ERC20","address":"0xc528c28FEC0A90C083328BC45f587eE215760A0F","ens_address":"","decimals":18,"website":"https://www.endor.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@endor.com","url":""},"social":{"blog":"https://medium.com/@endorcoin","chat":"","facebook":"https://www.facebook.com/Endordotcom-1105921412798077","forum":"https://bitcointalk.org/index.php?topic=2943168","github":"https://github.com/EndorCoin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/endor-software-ltd","reddit":"https://www.reddit.com/r/EndorCoin/","slack":"","telegram":"https://t.me/endorcoinGroup","twitter":"https://twitter.com/endorprotocol","youtube":""}},{"symbol":"EDU","name":"EDU Token","type":"ERC20","address":"0x2a22e5cca00a3d63308fa39f29202eb1b39eef52","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"eGAS","name":"ETH GAS","type":"ERC20","address":"0xb53a96bcbdd9cf78dff20bab6c2be7baec8f00f8","ens_address":"","decimals":8,"website":"http://www.ethgas.stream","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"egas@ethgas.stream","url":"http://www.ethgas.stream"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/eth_gas","youtube":""}},{"symbol":"EGT","name":"Egretia Token","type":"ERC20","address":"0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34","ens_address":"","decimals":18,"website":"https://www.egretia.io","logo":{"src":"http://egretia.io/static/logo-356.png","width":"356","height":"356","ipfs_hash":""},"support":{"email":"contact@egretia.io","url":"https://www.egretia.io"},"social":{"blog":"http://blog.egretia.io","chat":"","facebook":"https://www.facebook.com/Egretia.io/","forum":"","github":"https://github.com/egretia","gitter":"","instagram":"https://www.instagram.com/egretia_io/","linkedin":"https://www.linkedin.com/company/egretia/","reddit":"https://www.reddit.com/r/Egretia/","slack":"","telegram":"http://t.me/Egretia","twitter":"https://twitter.com/Egretia_io","youtube":""}},{"symbol":"EHT","name":"EasyHomes","type":"ERC20","address":"0xf9F0FC7167c311Dd2F1e21E9204F87EBA9012fB2","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@easyhomes.io","url":"https://easyhomes.io"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/teameasyhomes","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/teameasyhomes","slack":"https://easyhomesico.slack.com","telegram":"","twitter":"https://twitter.com/teameasyhomes","youtube":""}},{"symbol":"ELF","name":"ELF Token","type":"ERC20","address":"0xbf2179859fc6d5bee9bf9158632dc51678a4100e","ens_address":"","decimals":18,"website":"https://aelf.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/aelfio/","forum":"","github":"https://github.com/aelfProject","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/aelfofficial/","slack":"https://slack.aelf.io/","telegram":"https://t.me/aelfblockchain","twitter":"https://twitter.com/aelfblockchain","youtube":""}},{"symbol":"ELIX","name":"Elixir Token","type":"ERC20","address":"0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8","ens_address":"","decimals":18,"website":"https://elixirtoken.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@elixirtoken.io","url":""},"social":{"blog":"https://medium.com/@elixirtoken","chat":"https://discordapp.com/invite/Q479hnP","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2144082.80","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/elixirtoken","slack":"","telegram":"https://t.me/ElixirToken","twitter":"https://twitter.com/ELIXToken","youtube":""}},{"symbol":"ELTCOIN","name":"ELTCOIN","type":"ERC20","address":"0x44197a4c44d6a059297caf6be4f7e172bd56caaf","ens_address":"","decimals":8,"website":"http://www.eltcoin.tech/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/officialELTCOIN","forum":"","github":"https://github.com/eltcoin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/eLTCoin","slack":"","telegram":"https://t.me/ELTCOIN","twitter":"https://twitter.com/officialELTCoin","youtube":"https://www.youtube.com/channel/UCCpJqoXegl501zfHevtTilQ"}},{"symbol":"ELY","name":"ELYCOIN","type":"ERC20","address":"0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8","ens_address":"","decimals":18,"website":"https://elycoin.io","logo":{"src":"https://elycoin.io/assets/images/ely128.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"support@elycoin.io","url":""},"social":{"blog":"https://medium.com/@Elysian_Ely","chat":"","facebook":"https://www.facebook.com/ElysianxELY","forum":"https://forum.elycoin.io/","github":"https://github.com/Elysian-ELY","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/elysian-ely","reddit":"https://www.reddit.com/r/elysian_ely","slack":"","telegram":"https://t.me/elysian_ely","twitter":"https://twitter.com/Elysian_ELY","youtube":"https://www.youtube.com/channel/UCm0BGtPu1nB-7HbeJsHKJTw"}},{"symbol":"EMON","name":"Etheremon","type":"ERC20","address":"0xb67b88a25708a35ae7c2d736d398d268ce4f7f83","ens_address":"","decimals":8,"website":"https://www.etheremon.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@etheremon.com","url":""},"social":{"blog":"https://medium.com/@myetheremon","chat":"","facebook":"https://www.facebook.com/etheremon/","forum":"","github":"https://github.com/etheremon/smartcontract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/etheremon/","slack":"","telegram":"","twitter":"https://twitter.com/myetheremon","youtube":""}},{"symbol":"EMONT","name":"Etheremon Token","type":"ERC20","address":"0x95daaab98046846bf4b2853e23cba236fa394a31","ens_address":"","decimals":8,"website":"https://www.etheremon.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@etheremon.com","url":""},"social":{"blog":"https://medium.com/@myetheremon","chat":"","facebook":"https://www.facebook.com/etheremon","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/etheremon","slack":"","telegram":"","twitter":"https://twitter.com/myetheremon","youtube":""}},{"symbol":"EMT","name":"easyMINE Token","type":"ERC20","address":"0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97","ens_address":"","decimals":18,"website":"https://easymine.io","logo":{"src":"https://etherscan.io/token/images/easymine_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@easymine.io","url":""},"social":{"blog":"https://blog.easymine.io","chat":"","facebook":"https://www.facebook.com/easymine.io/","forum":"","github":"https://github.com/easyMINE","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.easymine.io/","telegram":"https://t.me/easyMINEio","twitter":"https://twitter.com/easymineio","youtube":"https://www.youtube.com/c/easyMINE"}},{"symbol":"EMV","name":"EMovieVenture","type":"ERC20","address":"0xB802b24E0637c2B87D2E8b7784C055BBE921011a","ens_address":"","decimals":2,"website":"http://emovieventure.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@emovieventure.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ENC","name":"Ethernet.Cash","type":"ERC20","address":"0x039f5050de4908f9b5ddf40a4f3aa3f329086387","ens_address":"","decimals":18,"website":"https://ethernet.cash","logo":{"src":"https://ethernet.cash/images/logo28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"contact@ethernet.cash","url":""},"social":{"blog":"https://medium.com/@ethernetcash","chat":"","facebook":"https://fb.me/ethernetcash.official","forum":"","github":"https://github.com/ethernetcash","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/ethernetcash","twitter":"https://twitter.com/ethernetcash","youtube":""}},{"symbol":"ENG","name":"Enigma","type":"ERC20","address":"0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4","ens_address":"","decimals":8,"website":"https://enigma.co/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@enigma.co","url":""},"social":{"blog":"https://blog.enigma.co/","chat":"","facebook":"https://www.facebook.com/enigmacatalyst/","forum":"","github":"https://github.com/enigmampc","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/enigmacatalyst","slack":"https://slack.enigma.co/","telegram":"https://t.me/enigmacatalyst","twitter":"https://twitter.com/enigmampc","youtube":""}},{"symbol":"ENJ","name":"ENJIN","type":"ERC20","address":"0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c","ens_address":"","decimals":18,"website":"https://enjincoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@enjin.com","url":""},"social":{"blog":"https://medium.com/@coinfork","chat":"","facebook":"https://www.facebook.com/enjinsocial","forum":"","github":"https://github.com/enjin/contracts","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://enjincoin.io/slack","telegram":"","twitter":"https://twitter.com/enjincs","youtube":""}},{"symbol":"ENTRP","name":"Hut34 Entropy Token","type":"ERC20","address":"0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3","ens_address":"","decimals":18,"website":"https://hut34.io/","logo":{"src":"https://hut34.io/images/comms/Hut34-logo-orange.jpg","width":"300","height":"300","ipfs_hash":""},"support":{"email":"admin@hut34.io","url":""},"social":{"blog":"https://medium.com/@hut34project","chat":"","facebook":"https://www.facebook.com/hut34project","forum":"","github":"https://github.com/hut34","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18132913/","reddit":"","slack":"","telegram":"https://t.me/hut34","twitter":"https://twitter.com/hut34project","youtube":"https://www.youtube.com/channel/UCiemFFyT2Sv2ulrRQfNI89Q"}},{"symbol":"EOS","name":"EOS","type":"ERC20","address":"0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"eos@block.one","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"eosDAC","name":"eosDAC","type":"ERC20","address":"0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba","ens_address":"","decimals":18,"website":"https://eosdac.io/","logo":{"src":"https://eosdac.io/wp-content/uploads/2018/03/eosdaclogo1-200-jpeg.jpg","width":"200","height":"200","ipfs_hash":""},"support":{"email":"hello@eosdac.io","url":"https://t.me/eosdacio"},"social":{"blog":"","chat":"","facebook":"https://facebook.com/eosdac","forum":"","github":"https://github.com/eosdac","gitter":"","instagram":"https://instagram.com/eosdac","linkedin":"https://linkedin.com/company/eosdac","reddit":"https://www.reddit.com/r/EOSDAC/","slack":"","telegram":"https://t.me/eosdacio","twitter":"https://twitter.com/eosdac","youtube":""}},{"symbol":"EPX","name":"ethPoker.io EPX","type":"ERC20","address":"0x35BAA72038F127f9f8C8f9B491049f64f377914d","ens_address":"","decimals":4,"website":"https://ethPoker.io","logo":{"src":"https://ethpoker.io/wp-content/uploads/2018/03/smallBlueIcon.png","width":"51","height":"50","ipfs_hash":""},"support":{"email":"admin@ethPoker.io","url":"https://ethPoker.io"},"social":{"blog":"https://ethpoker.io/","chat":"","facebook":"","forum":"","github":"https://github.com/EthPokerIO/ethpokerIO","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/ethpoker/","reddit":"","slack":"","telegram":"https://t.me/EthPokerIOpresale","twitter":"https://twitter.com/ethpoker","youtube":""}},{"symbol":"ESZ","name":"ESZCoin","type":"ERC20","address":"0xe8a1df958be379045e2b46a31a98b93a2ecdfded","ens_address":"","decimals":18,"website":"https://ethersportz.com","logo":{"src":"https://ethersportz.com/ESZCoin200by200.png","width":200,"height":200,"ipfs_hash":""},"support":{"email":"info@ethersportz.com","url":""},"social":{"blog":"http://medium.com/@EtherSportz","chat":"https://discord.gg/Hf2eMvV","facebook":"https://www.facebook.com/ethersportz","forum":"","github":"https://github.com/EtherSportz/ESZCoin","gitter":"","instagram":"https://www.facebook.com/EtherSportz","linkedin":"http://linkedin.com/company/ethersportz","reddit":"","slack":"","telegram":"https://t.me/ESZCoin","twitter":"https://www.instagram.com/EtherSportz","youtube":"https://youtube.com/ethersportz"}},{"symbol":"ETBS","name":"Ethbits","type":"ERC20","address":"0x1b9743f556d65e757c4c650b4555baf354cb8bd3","ens_address":"","decimals":12,"website":"https://www.ethbits.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mr@ethbits.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/EthBitsChatroom","twitter":"https://twitter.com/ethbits","youtube":""}},{"symbol":"ETCH","name":"ETCH","type":"ERC20","address":"0xdd74a7a3769fa72561b3a69e65968f49748c690c","ens_address":"","decimals":18,"website":"https://etch.work","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ETHB","name":"EtherBTC","type":"ERC20","address":"0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E","ens_address":"","decimals":8,"website":"https://etherbtc.io/faq","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"payments@etherbtc.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ETHOS","name":"ETHOS","type":"ERC20","address":"0x5Af2Be193a6ABCa9c8817001F45744777Db30756","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ETR","name":"Etheruem Risen","type":"ERC20","address":"0x6927C69fb4daf2043fbB1Cb7b86c5661416bea29","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"EURT","name":"EUR Tether (erc20)","type":"ERC20","address":"0xabdf147870235fcfc34153828c769a70b3fae01f","ens_address":"","decimals":6,"website":"https://tether.to","logo":{"src":"https://etherscan.io/token/images/tether-euro_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"billy@tether.to","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/tether_to","youtube":""}},{"symbol":"EVE","name":"EVE","type":"ERC20","address":"0x923108a439C4e8C2315c4f6521E5cE95B44e9B4c","ens_address":"","decimals":18,"website":"https://devery.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@devery.io","url":""},"social":{"blog":"https://medium.com/devery-io","chat":"","facebook":"https://www.facebook.com/devery.io","forum":"","github":"https://github.com/devery","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18282115","reddit":"https://www.reddit.com/r/deveryofficial","slack":"","telegram":"https://t.me/deverychat","twitter":"https://twitter.com/deveryofficial","youtube":""}},{"symbol":"EVN","name":"Envion AG","type":"ERC20","address":"0xd780Ae2Bf04cD96E577D3D014762f831d97129d0","ens_address":"","decimals":18,"website":"https://envion.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"question@envion.org","url":""},"social":{"blog":"https://medium.com/@envion","chat":"https://bitcointalk.org/index.php?topic=2348435","facebook":"https://www.facebook.com/envion.org","forum":"","github":"https://github.com/envion/Smart-Contracts","gitter":"","instagram":"https://www.instagram.com/envion_official","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/Envion","twitter":"https://twitter.com/Envion_org","youtube":""}},{"symbol":"EVX","name":"EVX Token","type":"ERC20","address":"0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8","ens_address":"","decimals":4,"website":"https://everex.io ","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@everex.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/everexio","slack":"https://everex.slack.com","telegram":"https://t.me/everexio","twitter":"https://twitter.com/everexio","youtube":""}},{"symbol":"EXMR","name":"eXMRcoin","type":"ERC20","address":"0xc98e0639c6d2ec037a615341c369666b110e80e5","ens_address":"","decimals":8,"website":"https://exmr.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@exmr.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/exmrcoin/","forum":"","github":"https://github.com/eXMRcoin/","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/eXMRcoin/","slack":"","telegram":"https://t.me/joinEXMR/","twitter":"https://www.twitter.com/eXMRCoin","youtube":""}},{"symbol":"EXY","name":"Experty","type":"ERC20","address":"0x5c743a35E903F6c584514ec617ACEe0611Cf44f3","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"E₹","name":"eRupee","type":"ERC20","address":"0xb67734521eAbBE9C773729dB73E16CC2dfb20A58","ens_address":"","decimals":2,"website":"https://erupee.wordpress.com","logo":{"src":"https://raw.githubusercontent.com/eRupee/images/master/coin%20logo.png","width":900,"height":720,"ipfs_hash":""},"support":{"email":"erupee@protonmail.com","url":"https://erupee.wordpress.com"},"social":{"blog":"https://erupee.wordpress.com","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2839333.new#new","github":"https://github.com/eRupee","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/eRupee","slack":"https://erupeecoin.slack.com","telegram":"t.me/eRupee","twitter":"https://twitter.com/eRupeeCoin","youtube":""}},{"symbol":"FAM","name":"FAM","type":"ERC20","address":"0x190e569bE071F40c704e15825F285481CB74B6cC","ens_address":"","decimals":12,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"FAN","name":"Fan Token","type":"ERC20","address":"0x90162f41886c0946d09999736f1c15c8a105a421","ens_address":"","decimals":18,"website":"https://tokensale.fanfare.global","logo":{"src":"https://imgland.oss-cn-hangzhou.aliyuncs.com/photo/2018/c80e9fbb-c8f9-4c66-9044-0c4c32392405.png","width":"866","height":"866","ipfs_hash":""},"support":{"email":"tokensale@fanfare.global","url":""},"social":{"blog":"https://medium.com/fanfareglobal","chat":"","facebook":"https://www.facebook.com/fanfareglobal","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/fanfareglobal/","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/FanfareICO","twitter":"https://twitter.com/FanFare_Global","youtube":"https://www.youtube.com/c/fanfareglobal"}},{"symbol":"FANX","name":"FANX Token","type":"ERC20","address":"0x7dcb3b2356c822d3577d4d060d0d5d78c860488c","ens_address":"","decimals":18,"website":"http://www.fanx.one/","logo":{"src":"http://www.fanx.one/static/img/logo.png","width":"132","height":"132","ipfs_hash":""},"support":{"email":"contact@fanx.one","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"FKX","name":"Knoxstertoken","type":"ERC20","address":"0x009e864923b49263c7F10D19B7f8Ab7a9A5AAd33","ens_address":"","decimals":18,"website":"https://fortknoxster.com","logo":{"src":"https://fortknoxster.com/wp-content/uploads/2017/11/FortKnoxster-Icon-256.png","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@fortknoxster.com","url":"https://fortknoxster.com/knowledge-base/"},"social":{"blog":"https://medium.com/fortknoxster","chat":"","facebook":"https://www.facebook.com/FortKnoxster","forum":"","github":"https://github.com/FortKnoxster","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FortKnoxster/","slack":"","telegram":"https://t.me/FortKnoxster","twitter":"https://twitter.com/FortKnoxster","youtube":"https://www.youtube.com/channel/UCZB8URO26cktviSxp3SeHig/videos"}},{"symbol":"FLIXX","name":"FLIXX","type":"ERC20","address":"0xf04a8ac553FceDB5BA99A64799155826C136b0Be","ens_address":"","decimals":18,"website":"flixxo.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"info@flixxo.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"t.me/flixxo","twitter":"","youtube":""}},{"symbol":"FLMC","name":"Filmscoin","type":"ERC20","address":"0x04cC783b450b8D11F3C7d00DD03fDF7FB51fE9F2","ens_address":"","decimals":18,"website":"https://filmscoin.com","logo":{"src":"https://filmscoin.com/images/icon-flmc28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/cryptofilms","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/filmscoin","twitter":"https://twitter.com/filmscoin1","youtube":""}},{"symbol":"FLP","name":"FLIP Token","type":"ERC20","address":"0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3","ens_address":"","decimals":18,"website":"https://gameflip.com","logo":{"src":"https://tokensale.gameflip.com/img/ico/flip_logo_64x64.png","width":64,"height":64,"ipfs_hash":""},"support":{"email":"support@gameflip.com","url":"https://gameflip.zendesk.com/hc/en-us"},"social":{"blog":"https://medium.com/@fliptoken","chat":"","facebook":"https://www.facebook.com/Gameflipapp","forum":"","github":"https://github.com/gameflip","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Gameflip","slack":"","telegram":"","twitter":"https://twitter.com/Gameflip","youtube":""}},{"symbol":"FLR","name":"Flair Coin","type":"ERC20","address":"0x9aeFBE0b3C3ba9Eab262CB9856E8157AB7648e09","ens_address":"","decimals":18,"website":"https://flaircoin.co/","logo":{"src":"https://flaircoin.co/assets/images/flair_logo_64x64.png","width":"64","height":"64","ipfs_hash":""},"support":{"email":"info@flaircoin.co","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"FLUZ","name":"Fluz Fluz Global","type":"ERC20","address":"0x954b5de09a55e59755acbda29e1eb74a45d30175","ens_address":"","decimals":18,"website":"https://ico.fluzfluz.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@fluzfluz.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/fluzfluz","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FluzFluzGlobal","slack":"","telegram":"https://t.me/fluzfluzico","twitter":"https://twitter.com/fluzfluz","youtube":""}},{"symbol":"FLX","name":"BitFlux","type":"ERC20","address":"0x70b147e01e9285e7ce68b9ba437fe3a9190e756a","ens_address":"","decimals":18,"website":"fluxproject.xyz","logo":{"src":"https://fluxproject.xyz/gallery_gen/271ecfb9c8f4f7dfc5ea539cfa57f44d_150x150.png","width":"150","height":"150","ipfs_hash":""},"support":{"email":"support@fluxproject.xyz","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FLUXProject","slack":"","telegram":"https://t.me/joinchat/GZcBtg6Oi6mjkBAn-t9Z4A","twitter":"https://twitter.com/flux_project","youtube":""}},{"symbol":"FND","name":"FundRequest","type":"ERC20","address":"0x4df47b4969b2911c966506e3592c41389493953b","ens_address":"","decimals":18,"website":"https://fundrequest.io","logo":{"src":"https://raw.githubusercontent.com/FundRequest/logo/master/Logo%20icon%20500x500.png","width":"500","height":"500","ipfs_hash":"QmbGpu4tWoHEtPy64tNeYENsNqTSF22U12VRYswhjYjNcj"},"support":{"email":"info@fundrequest.io","url":""},"social":{"blog":"https://blog.fundrequest.io","chat":"https://fundrequest.chat","facebook":"https://www.facebook.com/FundRequestplatform","forum":"","github":"https://github.com/FundRequest","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/fundrequest","reddit":"https://www.reddit.com/r/fundrequest","slack":"","telegram":"https://t.me/fundrequestofficial","twitter":"https://twitter.com/fundrequest_io","youtube":""}},{"symbol":"FRD","name":"FARAD Cryptoken","type":"ERC20","address":"0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4","ens_address":"","decimals":18,"website":"https://farad.energy","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@virtue.finance","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/faradcryptoken","forum":"https://bitcointalk.org/index.php?topic=2075985","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://faradcryptoken.slack.com","telegram":"","twitter":"https://twitter.com/FARADCryptoken","youtube":""}},{"symbol":"FTC","name":"FTC","type":"ERC20","address":"0xe6f74dcfa0e20883008d8c16b6d9a329189d0c30","ens_address":"","decimals":2,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@ftccoins.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"FTR","name":"Futourist Token","type":"ERC20","address":"0x2023DCf7c438c8C8C0B0F28dBaE15520B4f3Ee20","ens_address":"","decimals":18,"website":"https://futourist.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@futourist.io","url":""},"social":{"blog":"https://medium.com/futourist","chat":"","facebook":"https://www.facebook.com/futourist.io/","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/futourist.io/","linkedin":"","reddit":"","slack":"","telegram":"https://medium.com/futourist","twitter":"https://twitter.com/futouristinfo","youtube":""}},{"symbol":"FTT","name":"FarmaTrust Token","type":"ERC20","address":"0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc","ens_address":"","decimals":18,"website":"https://www.farmatrust.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@farmatrust.com","url":""},"social":{"blog":"https://medium.com/@farmatrust","chat":"","facebook":"https://www.facebook.com/farmatrustchain","forum":"https://bitcointalk.org/index.php?topic=2496382","github":"https://github.com/farmatrust","gitter":"","instagram":"https://www.instagram.com/farmatrust","linkedin":"https://www.linkedin.com/company/24797056","reddit":"https://www.reddit.com/user/FarmaTrust","slack":"","telegram":"https://t.me/farmatrust","twitter":"https://twitter.com/farmatrust","youtube":""}},{"symbol":"FTXT","name":"FUTURAX","type":"ERC20","address":"0x41875c2332b0877cdfaa699b641402b7d4642c32","ens_address":"","decimals":8,"website":"https://futurax.global","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@futurax.global","url":""},"social":{"blog":"https://medium.com/@FuturaxProject","chat":"https://t.me/futurax","facebook":"https://www.facebook.com/futuraxproject/","forum":"","github":"https://github.com/futuraxproject","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/futuraxglobal/","reddit":"","slack":"","telegram":"https://t.me/futurax_info","twitter":"https://twitter.com/FuturaxProject","youtube":""}},{"symbol":"FUCK","name":"Finally Usable Crypto Karma","type":"ERC20","address":"0x65be44c747988fbf606207698c944df4442efe19","ens_address":"","decimals":4,"website":"https://fucktoken.com","logo":{"src":"https://etherscan.io/token/images/fucktoken_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@fucktoken.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=1945661.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FuckToken","slack":"https://fucktoken.slack.com/join/shared_invite/MjMyNDgzNzc4MDY1LTE1MDM5Nzg2MTctY2FlOWMzMGNiMw","telegram":"","twitter":"https://twitter.com/FuckToken","youtube":""}},{"symbol":"FUEL","name":"Etherparty FUEL","type":"ERC20","address":"0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40","ens_address":"","decimals":18,"website":"https://etherparty.io","logo":{"src":"https://image.ibb.co/mzeWD6/EP3_Blue.png","width":804,"height":804,"ipfs_hash":"ipfs/QmNLpXoqbZzZ7jEn8Pn58A3UwW38sMCeAVoJra2BUwxqvA"},"support":{"email":"support@etherparty.io","url":""},"social":{"blog":"https://medium.com/etherparty","chat":"https://t.me/etherparty","facebook":"https://www.facebook.com/etherparty","forum":"https://bitcointalk.org/index.php?topic=2005965","github":"https://github.com/etherparty","gitter":"","instagram":"https://www.instagram.com/etherparty_io","linkedin":"https://www.linkedin.com/company/etherparty","reddit":"https://www.reddit.com/r/etherparty","slack":"","telegram":"https://t.me/etherparty","twitter":"https://twitter.com/etherparty_io","youtube":"https://www.youtube.com/channel/UCwBzpneop1za6w4DYJJgsIQ"}},{"symbol":"FUN","name":"Funfair","type":"ERC20","address":"0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b","ens_address":"","decimals":8,"website":"https://funfair.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FunfairTech/comments/6nadvm/funfair_token_contract_update","slack":"https://funfair-slackin.herokuapp.com","telegram":"","twitter":"https://twitter.com/FunFairTech/status/885910956701876224","youtube":""}},{"symbol":"FYN","name":"Fund Yourself Now","type":"ERC20","address":"0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a","ens_address":"","decimals":18,"website":"www.fundyourselfnow.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@fundyourselfnow.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://fundyourselfnowslack.herokuapp.com","telegram":"https://t.me/fundyourselfnow","twitter":"https://twitter.com/fundyourselfnow","youtube":""}},{"symbol":"GAM","name":"Gambit","type":"ERC20","address":"0xf67451dc8421f0e0afeb52faa8101034ed081ed9","ens_address":"","decimals":8,"website":"http://gambitcrypto.com","logo":{"src":"https://gateway.ipfs.io/ipfs/QmSDhPfF52qV7KcYMQ6kosvxc9TnMY45fMHst2hJEscUoh","width":4167,"height":4167,"ipfs_hash":"QmSDhPfF52qV7KcYMQ6kosvxc9TnMY45fMHst2hJEscUoh"},"support":{"email":"raithe@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/BlockchainLabsNZ/gambit","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/gambitcrypto","youtube":""}},{"symbol":"GANA","name":"GANA","type":"ERC20","address":"0xc0EA6306F6360FE7dCAB65D16Bf1a3AF92C79Aa2","ens_address":"","decimals":18,"website":"https://ganacoin.io","logo":{"src":"http://cdn.ganacoin.io/logo/gana_symbol_24.png","width":24,"height":24,"ipfs_hash":""},"support":{"email":"info@ganacoin.io","url":""},"social":{"blog":"https://medium.com/ganaproject","chat":"","facebook":"https://www.facebook.com/GanaProject/","forum":"","github":"https://github.com/GanaProject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/gana_official","twitter":"https://twitter.com/ganaproject","youtube":""}},{"symbol":"GAVEL","name":"GAVEL","type":"ERC20","address":"0x708876f486e448ee89eb332bfbc8e593553058b9","ens_address":"","decimals":18,"website":"http://gavelcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@gavelcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GBT","name":"GBT","type":"ERC20","address":"0x7585F835ae2d522722d2684323a0ba83401f32f5","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GBX","name":"Globitex","type":"ERC20","address":"0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283","ens_address":"","decimals":8,"website":"https://www.globitexico.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@globitex.com","url":""},"social":{"blog":"https://medium.com/@globitex","chat":"","facebook":"https://www.facebook.com/globitex","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Globitex","slack":"","telegram":"https://t.me/globitex","twitter":"https://twitter.com/globitex_","youtube":""}},{"symbol":"GCP","name":"Globcoin Crypto Platform","type":"ERC20","address":"0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23","ens_address":"","decimals":18,"website":"https://globcoin.io/","logo":{"src":"https://globcoin.io/assets/img/favicon-128x128.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"community@globcoin.io","url":""},"social":{"blog":"https://medium.com/@globcoin_io","chat":"","facebook":"https://www.facebook.com/globcoin.io","forum":"","github":"https://github.com/Globcoin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/globcoin-io/","reddit":"https://www.reddit.com/r/globcoin/","slack":"","telegram":"https://t.me/globcoin","twitter":"https://twitter.com/Globcoin_io","youtube":"https://www.youtube.com/channel/UCd5vYU38p0YrQTUZ6UEKGdA/videos"}},{"symbol":"GEE","name":"Geens NPO","type":"ERC20","address":"0x4F4f0Db4de903B88f2B1a2847971E231D54F8fd3","ens_address":"","decimals":8,"website":"https://www.geens.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@geens.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/GeensNPO","forum":"","github":"https://github.com/GeensNPO","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/GeensNPO","slack":"","telegram":"https://t.me/GeensNPO","twitter":"https://twitter.com/GeensNPO","youtube":""}},{"symbol":"GELD","name":"GELD","type":"ERC20","address":"0x24083bb30072643c3bb90b44b7285860a755e687","ens_address":"","decimals":18,"website":"https://www.soerengelder.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"supportgelder@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/gelder","youtube":""}},{"symbol":"GEN","name":"DAOstack","type":"ERC20","address":"0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf","ens_address":"","decimals":18,"website":"https://daostack.io","logo":{"src":"https://daostack.io/daostack2828.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@daostack.io","url":""},"social":{"blog":"https://medium.com/daostack","chat":"","facebook":"","forum":"https://forum.daostack.io","github":"https://github.com/daostack","gitter":"https://gitter.im/daostack/Lobby","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/daostack","slack":"","telegram":"https://t.me/daostackcommunity","twitter":"https://twitter.com/daostack","youtube":"https://www.youtube.com/daostack"}},{"symbol":"GET","name":"GET","type":"ERC20","address":"0x8a854288a5976036a725879164ca3e91d30c6a1b","ens_address":"","decimals":18,"website":"http://www.get-protocol.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@get-protocol.io","url":""},"social":{"blog":"https://blog.get-protocol.io/","chat":"","facebook":"https://www.facebook.com/getprotocol","forum":"","github":"https://github.com/Getprotocol","gitter":"","instagram":"https://www.instagram.com/getprotocol/","linkedin":"","reddit":"https://www.reddit.com/r/GETprotocol/","slack":"","telegram":"https://t.me/getprotocol","twitter":"https://twitter.com/getprotocol","youtube":"https://www.youtube.com/getprotocol"}},{"symbol":"GIF","name":"GIFcoin Token","type":"ERC20","address":"0xFcD862985628b254061F7A918035B80340D045d3","ens_address":"","decimals":18,"website":"https://gifcoin.io/","logo":{"src":"https://www.gifcoin.io/assets/images/default/frontend/gifsingle400.png","width":"400","height":"400","ipfs_hash":""},"support":{"email":"support@gifcoin.io","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/gifcoin.io","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/gifcoin","twitter":"https://twitter.com/gifcoin_io","youtube":"https://youtube.com/channel/UCLq13wzOH1STqW8I-Z-ctAQ"}},{"symbol":"GIM","name":"Gimli","type":"ERC20","address":"0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93","ens_address":"","decimals":8,"website":"https://gimli.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@gimli.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/thegimliproject","forum":"https://bitcointalk.org/index.php?topic=2014659.0","github":"https://github.com/thegimliproject/GimliToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.firstblood.io","telegram":"https://www.t.me/thegimliproject","twitter":"https://twitter.com/thegimliproject","youtube":""}},{"symbol":"GMT","name":"GMT","type":"ERC20","address":"0xb3Bd49E28f8F832b8d1E246106991e546c323502","ens_address":"","decimals":18,"website":"http://www.mercuryprotocol.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@mercuryprotocol.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/mercuryprotocol","slack":"https://www.mercuryprotocol.com/slack","telegram":"https://t.me/joinchat/G47gcA8f5EYFfEsILw7H2w","twitter":"https://twitter.com/mercuryprotocol","youtube":"https://www.youtube.com/channel/UCa_tIG6rzXFBYpyMM_CuCQA/videos"}},{"symbol":"GNO","name":"Gnosis","type":"ERC20","address":"0x6810e776880C02933D47DB1b9fc05908e5386b96","ens_address":"","decimals":18,"website":"https://gnosis.pm","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.gnosis.pm","telegram":"","twitter":"","youtube":""}},{"symbol":"GNT","name":"Golem","type":"ERC20","address":"0xa74476443119A942dE498590Fe1f2454d7D4aC0d","ens_address":"","decimals":18,"website":"https://golem.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://golemproject.org:3000","telegram":"","twitter":"","youtube":""}},{"symbol":"GOLDX","name":"GOLDX","type":"ERC20","address":"0xeAb43193CF0623073Ca89DB9B712796356FA7414","ens_address":"","decimals":18,"website":"https://www.hellogold.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"goldx@hellogold.org","url":""},"social":{"blog":"https://medium.com/hellogold","chat":"","facebook":"https://www.facebook.com/HelloGoldFoundation/","forum":"","github":"https://github.com/myHelloGold/Foundation","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/HelloGold/","slack":"","telegram":"https://t.me/HelloGoldFoundation","twitter":"https://twitter.com/FoundationHG","youtube":""}},{"symbol":"GRID","name":"GRID","type":"ERC20","address":"0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd","ens_address":"","decimals":12,"website":"https://gridplus.io/token-sale","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"gridplus@consensys.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GROW","name":"Growchain","type":"ERC20","address":"0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6","ens_address":"","decimals":8,"website":"http://www.growchain.us","logo":{"src":"http://www.growchain.us/data/logo.png","width":"300","height":"286","ipfs_hash":""},"support":{"email":"admin@growchain.net"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Growchain-347032509142186","forum":"","github":"https://github.com/growchainnet","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/I4QeehEqER7kSqHh3VJAXQ","twitter":"https://twitter.com/Growchain_net","youtube":""}},{"symbol":"GSE","name":"GSENetwork","type":"ERC20","address":"0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838","ens_address":"","decimals":4,"website":"https://www.gse.network","logo":{"src":"https://www.gse.network/static/media/gse-logo.png","width":"120","height":"120","ipfs_hash":""},"support":{"email":"info@gselab.org"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/gselabofficial","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/GSENetworkOfficial","twitter":"https://twitter.com/gselabofficial","youtube":""}},{"symbol":"GTC","name":"GTC Token","type":"ERC20","address":"0xB70835D7822eBB9426B56543E391846C107bd32C","ens_address":"","decimals":18,"website":"https://game.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"group@game.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/GameLeLe","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.game.com","telegram":"https://t.me/gameico","twitter":"https://twitter.com/gamecom666","youtube":""}},{"symbol":"GTKT","name":"GTKT","type":"ERC20","address":"0x025abad9e518516fdaafbdcdb9701b37fb7ef0fa","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GTO","name":"Gifto","type":"ERC20","address":"0xc5bbae50781be1669306b9e001eff57a2957b09d","ens_address":"","decimals":5,"website":"https://gifto.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@GIFTO","chat":"","facebook":"https://www.facebook.com/gifto.io/","forum":"","github":"https://github.com/GIFTO-io","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/GIFTO-io/","slack":"","telegram":"https://t.me/GIFTOOfficial","twitter":"https://twitter.com/GIFTO_io","youtube":""}},{"symbol":"GULD","name":"GULD ERC20","type":"ERC20","address":"0x9847345de8b614c956146bbea549336d9c8d26b6","ens_address":"","decimals":8,"website":"https://guld.io","logo":{"src":"https://guld.io/img/logo.png","width":"1000","height":"506","ipfs_hash":""},"support":{"email":"info@guld.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/guldblocktree/","forum":"","github":"https://github.com/guldcoin","gitter":"https://gitter.im/guldcoin","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/guldblocktree","twitter":"https://twitter.com/guldcoin","youtube":"https://www.youtube.com/channel/UClVwx_qNPp1UmQEjabZWK5A"}},{"symbol":"GUP","name":"GUP","type":"ERC20","address":"0xf7B098298f7C69Fc14610bf71d5e02c60792894C","ens_address":"","decimals":3,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GVT","name":"Genesis Vision","type":"ERC20","address":"0x103c3A209da59d3E7C4A89307e66521e081CFDF0","ens_address":"","decimals":18,"website":"https://genesis.vision","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@genesis.vision","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/GenesisVision","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/genesisvision","twitter":"https://twitter.com/genesis_vision","youtube":""}},{"symbol":"GXC","name":"GXC","type":"ERC20","address":"0x58ca3065c0f24c7c96aee8d6056b5b5decf9c2f8","ens_address":"","decimals":10,"website":"https://genevieveco.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"Info@genevieveco.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/GXCommunity","twitter":"","youtube":""}},{"symbol":"GXVC","name":"Genevieve VC","type":"ERC20","address":"0x22F0AF8D78851b72EE799e05F54A77001586B18A","ens_address":"","decimals":10,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GZE","name":"GazeCoin","type":"ERC20","address":"0x8C65e992297d5f092A756dEf24F4781a280198Ff","ens_address":"","decimals":18,"website":"https://gazecoin.io","logo":{"src":"https://media.gazecoin.io/static/icons/gazecoin-28x28-on-trans.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@gazecoin.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/gazecoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/GazeCoinPublic","twitter":"https://twitter.com/GazeCoin","youtube":""}},{"symbol":"GZR","name":"Gizer","type":"ERC20","address":"0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e","ens_address":"","decimals":6,"website":"https://gizer.io","logo":{"src":"https://etherscan.io/token/images/gizer2_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@gizer.io","url":""},"social":{"blog":"https://medium.com/@Gizer_Gaming/","chat":"https://discord.me/Gizer","facebook":"https://www.facebook.com/gazecoin","forum":"","github":"https://github.com/GizerInc/Gizer","gitter":"","instagram":"https://www.instagram.com/gizer_gaming/","linkedin":"https://www.linkedin.com/company/gizer-inc.","reddit":"https://www.reddit.com/r/Gizer/","slack":"","telegram":"https://t.me/joinchat/Em71dQ4KZ8G-XxpArXNuHg","twitter":"https://twitter.com/GazeCoin","youtube":"https://www.youtube.com/channel/UCfWwp8uANCJTm1HAYd2iDQQ/videos"}},{"symbol":"HAPPY","name":"Happiness","type":"ERC20","address":"0x5a567e28dbfa2bbd3ef13c0a01be114745349657","ens_address":"","decimals":2,"website":"https://btr.works","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@btr.works","url":""},"social":{"blog":"https://medium.com/@btrworks","chat":"","facebook":"https://www.facebook.com/btrworkscom","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/btrworks","twitter":"https://twitter.com/btrworks","youtube":"https://www.youtube.com/channel/UCjdXiMBGTm0dVtEP_fim9Zw"}},{"symbol":"HAT","name":"Hawala Today","type":"ERC20","address":"0x9002D4485b7594e3E850F0a206713B305113f69e","ens_address":"","decimals":12,"website":"https://www.hawala.today/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@hawala.today","url":""},"social":{"blog":"https://www.hawala.today/blog/","chat":"","facebook":"https://www.facebook.com/hawalatoday","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/HawalaToday/","slack":"","telegram":"","twitter":"https://twitter.com/hawalatoday","youtube":"https://t.me/hawala_chat"}},{"symbol":"HAV","name":"Havven","type":"ERC20","address":"0xC011A72400E58ecD99Ee497CF89E3775d4bd732F","ens_address":"","decimals":18,"website":"https://havven.io","logo":{"src":"https://havven.io/images/favicon3.ico","width":"32","height":"32","ipfs_hash":""},"support":{"email":"info@havven.io","url":""},"social":{"blog":"https://blog.havven.io","chat":"https://t.me/havven_official1","facebook":"https://www.facebook.com/havven.io/","forum":"https://bitcointalk.org/index.php?topic=2702470","github":"https://github.com/havven/havven","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/havven/","reddit":"https://www.reddit.com/r/havven/","slack":"","telegram":"https://t.me/havven_official1","twitter":"https://twitter.com/havven_io","youtube":"https://www.youtube.com/channel/UCGrPolyOAj3cODJIN5ssVTw"}},{"symbol":"HDG","name":"Hedge Crypto","type":"ERC20","address":"0xffe8196bc259e8dedc544d935786aa4709ec3e64","ens_address":"","decimals":18,"website":"https://www.hedge-crypto.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@hedge-crypto.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"Hdp","name":"HEdpAY","type":"ERC20","address":"0xe9ff07809ccff05dae74990e25831d0bc5cbe575","ens_address":"","decimals":18,"website":"http://hedpay.com","logo":{"src":"http://hedpay.com/content/images/systemCustom/o5VT92nyPRvA7E5j7ij265rHsezBdwnk04bXYqoY0OTsUF4IzFEIubdyfRlkLcDH_28x28.png?version=4.7.1&width=809&height=509","width":28,"height":28,"ipfs_hash":""},"support":{"email":"hedpayltd@gmail.com","url":"info@hedpay.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/hedpayltd","forum":"https://bitcointalk.org/index.php/HedPay","github":"https://github.com/HEDPAY","gitter":"","instagram":"https://www.instagram.com/myhedpay","linkedin":"https://www.linkedin.com/company/hedpay-ltd","reddit":"https://www.reddit.com/user/HEdpAY","slack":"https://hedpay.slack.com","telegram":"https://t.me/joinchat/GfkzpkPhHOM6kFZnhGbu2Q","twitter":"https://twitter.com/MyHEdpAY","youtube":""}},{"symbol":"Hdp.ф","name":"HEdpAY","type":"ERC20","address":"0x84543f868ec1b1fac510d49d13c069f64cd2d5f9","ens_address":"","decimals":18,"website":"http://hedpay.com","logo":{"src":"http://hedpay.com/content/images/systemCustom/o5VT92nyPRvA7E5j7ij265rHsezBdwnk04bXYqoY0OTsUF4IzFEIubdyfRlkLcDH_28x28.png?version=4.7.1&width=809&height=509","width":28,"height":28,"ipfs_hash":""},"support":{"email":"hedpayltd@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/hedpayltd","forum":"https://bitcointalk.org/index.php/HedPay","github":"https://github.com/HEDPAY","gitter":"","instagram":"https://www.instagram.com/myhedpay","linkedin":"https://www.linkedin.com/company/hedpay-ltd","reddit":"https://www.reddit.com/user/HEdpAY","slack":"https://hedpay.slack.com","telegram":"https://t.me/joinchat/GfkzpkPhHOM6kFZnhGbu2Q","twitter":"https://twitter.com/MyHEdpAY","youtube":""}},{"symbol":"HGT","name":"HGT","type":"ERC20","address":"0xba2184520A1cC49a6159c57e61E1844E085615B6","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"HIBT","name":"HiBTC Token","type":"ERC20","address":"0x9bb1db1445b83213a56d90d331894b3f26218e4e","ens_address":"","decimals":18,"website":"https://www.hibtc.com/","logo":{"src":"https://www.hibtc.com/om/coin-icon/HIBT-28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"admin@hibtc.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/profile.php?id=100027855751559","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/HiBTC_Exchange","youtube":""}},{"symbol":"HIG","name":"ethereumhigh ","type":"ERC20","address":"0xa9240fBCAC1F0b9A6aDfB04a53c8E3B0cC1D1444","ens_address":"","decimals":18,"website":"https://www.ethereumhigh.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"devteam@ethereumhigh.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Ethereum-High-701843846681250","forum":"","github":"https://github.com/ethereumhigh/Ethereum-High","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/icocrypto/comments/7dcfv7/ann_ethereum_high_ico_launch_on_20th/","slack":"","telegram":"","twitter":"https://twitter.com/Ethereum_High","youtube":""}},{"symbol":"HKG","name":"HKG","type":"ERC20","address":"0x14F37B574242D366558dB61f3335289a5035c506","ens_address":"","decimals":3,"website":"http://www.ether.camp","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://ether-camp-friends.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"HKY","name":"Hicky","type":"ERC20","address":"0x88ac94d5d175130347fc95e109d77ac09dbf5ab7","ens_address":"","decimals":18,"website":"https://hicky.io","logo":{"src":"http://hicky.io/assets/img/hicky-icon.svg","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@hicky.io","url":""},"social":{"blog":"https://medium.com/hickynews","chat":"https://t.me/getpicky","facebook":"","forum":"","github":"https://github.com/HickyToken/hickycontracts","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/getpicky","twitter":"https://twitter.com/HickyDapp","youtube":""}},{"symbol":"HMQ","name":"HMQ","type":"ERC20","address":"0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908","ens_address":"","decimals":8,"website":"https://humaniq.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@humaniq.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"HODL","name":"HODLCoin","type":"ERC20","address":"0xb45d7Bc4cEBcAB98aD09BABDF8C818B2292B672c","ens_address":"","decimals":18,"website":"https://github.com/arachnid/hodlcoin","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"HORSE","name":"HORSE","type":"ERC20","address":"0x5B0751713b2527d7f002c0c4e2a37e1219610A6B","ens_address":"","decimals":18,"website":"https://ethorse.com","logo":{"src":"https://ethorse.com/images/ethorse-logo.png","width":"480","height":"695","ipfs_hash":""},"support":{"email":"support@ethorse.com","url":""},"social":{"blog":"https://medium.com/@ethorse","chat":"https://discordapp.com/invite/vdTXRmT","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2573978.0","github":"https://github.com/ethorse","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Ethorse/","slack":"","telegram":"https://telegram.me/ethorse","twitter":"https://twitter.com/EthorseTeam","youtube":"https://www.youtube.com/channel/UC2lOnpQUPVE13E_Mpp5TVsA"}},{"symbol":"HOT","name":"Hydro Protocol","type":"ERC20","address":"0x9af839687f6c94542ac5ece2e317daae355493a1","ens_address":"","decimals":18,"website":"https://thehydrofoundation.com/","logo":{"src":"https://s2.coinmarketcap.com/static/img/coins/32x32/2430.png","width":"32","height":"32","ipfs_hash":""},"support":{"email":"libukang@ddex.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/hydroprotocol","twitter":"","youtube":""}},{"symbol":"HOT","name":"HoloToken","type":"ERC20","address":"0x6c6ee5e31d828de241282b9606c8e98ea48526e2","ens_address":"token.holo-host.eth","decimals":18,"website":"https://holo.host/","logo":{"src":"https://holo.host/wp-content/uploads/2017/12/Holologo_Profile.png","width":"1580","height":"1580","ipfs_hash":""},"support":{"email":"help@holo.host","url":"https://chat.holochain.org"},"social":{"blog":"https://medium.com/h-o-l-o","chat":"https://chat.holochain.org","facebook":"https://www.facebook.com/holohost/","forum":"https://bitcointalk.org/index.php?topic=2963267.0","github":"https://github.com/Holo-Host","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/holochain/","slack":"","telegram":"https://t.me/channelholo","twitter":"https://twitter.com/H_O_L_O_","youtube":"https://www.youtube.com/channel/UCSRJRJvkZHk3f1PemqT-R0g"}},{"symbol":"HST","name":"HST","type":"ERC20","address":"0x554C20B7c486beeE439277b4540A434566dC4C02","ens_address":"","decimals":18,"website":"https://horizonstate.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"questions@horizonstate.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/HorizonState","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"HVN","name":"Hive Project","type":"ERC20","address":"0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D","ens_address":"","decimals":8,"website":"https://hive-project.net","logo":{"src":"https://hive-project.net/images/hive-logo.png","width":151,"height":64,"ipfs_hash":""},"support":{"email":"support@hive-project.net","url":"https://hive-project.zendesk.com"},"social":{"blog":"https://blog.hive-project.net","chat":"","facebook":"https://www.facebook.com/HiveProject.net","forum":"","github":"https://github.com/HiveProjectLTD","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/hiveproject_net","reddit":"https://www.reddit.com/r/HiveProject_net","slack":"","telegram":"https://t.me/hiveprojectnet","twitter":"https://twitter.com/hiveproject_net","youtube":"https://www.youtube.com/channel/UCpV4Wwhy5sZbjH9hqAdHlKw"}},{"symbol":"ICE","name":"ICE","type":"ERC20","address":"0x5a84969bb663fb64F6d015DcF9F622Aedc796750","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ICN","name":"ICN","type":"ERC20","address":"0x888666CA69E0f178DED6D75b5726Cee99A87D698","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ICO","name":"ICO","type":"ERC20","address":"0xa33e729bf4fdeb868b534e1f20523463d9c46bee","ens_address":"","decimals":10,"website":"http://icocoin.org","logo":{"src":"https://etherscan.io/token/images/icocoin_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"icobi@icobi.com","url":""},"social":{"blog":"","chat":"https://u.wechat.com/EM6Tgldvr3Wn9eprwIszuSo","facebook":"https://www.facebook.com/coin.ico.7","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/icocoin1","youtube":""}},{"symbol":"ICOS","name":"ICOS","type":"ERC20","address":"0x014B50466590340D41307Cc54DCee990c8D58aa8","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"khovratovich@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ICX","name":"ICON","type":"ERC20","address":"0xb5a5f22694352c15b00323844ad545abb2b11028","ens_address":"","decimals":18,"website":"https://www.icon.foundation","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@icon.foundation","url":""},"social":{"blog":"https://medium.com/helloiconworld","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/icon","slack":"","telegram":"https://t.me/joinchat/Fqw4igkkVmYtj--ZVi-QcA","twitter":"https://twitter.com/helloiconworld","youtube":""}},{"symbol":"IDEA","name":"IDEA Token","type":"ERC20","address":"0x814cafd4782d2e728170fda68257983f03321c58","ens_address":"","decimals":0,"website":"http://www.ideatoken.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"james@embermine.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/IDEA-Token-195695784302309/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/IdeaToken","twitter":"https://twitter.com/IdeaToken","youtube":""}},{"symbol":"IFT","name":"InvestFeed","type":"ERC20","address":"0x7654915a1b82d6d2d0afc37c52af556ea8983c7e","ens_address":"","decimals":18,"website":"https://investfeed.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@investFeed","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/investFeedOfficial","slack":"","telegram":"https://t.me/investfeed","twitter":"https://twitter.com/investFeed","youtube":""}},{"symbol":"IIC","name":"IIC","type":"ERC20","address":"0x16662f73df3e79e54c6c5938b4313f92c524c120","ens_address":"","decimals":18,"website":"https://ibiscoin.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@ibiscoin.co","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/iiccoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/ibiscoin","slack":"","telegram":"https://t.me/ibiscoin","twitter":"https://twtter.com/ibiscoin","youtube":""}},{"symbol":"IKB","name":"IKB","type":"ERC20","address":"0x88AE96845e157558ef59e9Ff90E766E22E480390","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mitchellfchan@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"IMC","name":"Immune Coin","type":"ERC20","address":"0xe3831c5A982B279A198456D577cfb90424cb6340","ens_address":"","decimals":6,"website":"http://immunecoin.info","logo":{"src":"http://immunecoin.info/logo_32_32.png","width":32,"height":32,"ipfs_hash":""},"support":{"email":"imctoken2017@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/IMmune-Coin-1932949320301974","forum":"https://bitcointalk.org/index.php?topic=2336357.msg23877644#msg23877644","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/IMCtoken","twitter":"https://twitter.com/IMmuneCoin","youtube":""}},{"symbol":"IMT","name":"IMT","type":"ERC20","address":"0x22E5F62D0FA19974749faa194e3d3eF6d89c08d7","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"IND","name":"Indorse","type":"ERC20","address":"0xf8e386EDa857484f5a12e4B5DAa9984E06E73705","ens_address":"","decimals":18,"website":"https://indorse.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/indorse","slack":"https://slack.indorse.io","telegram":"","twitter":"https://twitter.com/joinindorse","youtube":""}},{"symbol":"INRM","name":"Integrated Money","type":"ERC20","address":"0x48e5413b73add2434e47504E2a22d14940dBFe78","ens_address":"","decimals":3,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"INS","name":"INS","type":"ERC20","address":"0x5b2e4a700dfbc560061e957edec8f6eeeb74a320","ens_address":"instoken.eth","decimals":10,"website":"https://ins.world","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@ins.world","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"INSTAR","name":"Insights Network","type":"ERC20","address":"0xc72fe8e3dd5bef0f9f31f259399f301272ef2a2d","ens_address":"","decimals":18,"website":"https://insights.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@insights.network","url":""},"social":{"blog":"https://medium.com/@InsightsNetwork","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://telegram.me/InsightsNetwork","twitter":"","youtube":""}},{"symbol":"INXT","name":"Internxt","type":"ERC20","address":"0xa8006c4ca56f24d6836727d106349320db7fef82","ens_address":"","decimals":8,"website":"https://internxt.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@internxt.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/internxt_io","twitter":"","youtube":""}},{"symbol":"IOST","name":"IOSToken","type":"ERC20","address":"0xFA1a856Cfa3409CFa145Fa4e20Eb270dF3EB21ab","ens_address":"","decimals":18,"website":"https://iost.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@iostoken","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/officialios","twitter":"https://twitter.com/iostoken","youtube":""}},{"symbol":"IoT","name":"IoTコイン","type":"ERC20","address":"0xc34b21f6f8e51cc965c2393b3ccfa3b82beb2403","ens_address":"","decimals":6,"website":"http://www.bitcoin-biz.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"talk01ta52@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"IOTX","name":"IoTeX Network","type":"ERC20","address":"0x6fb3e0a217407efff7ca062d46c26e5d60a14d69","ens_address":"","decimals":18,"website":"http://iotex.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@iotex.io","url":""},"social":{"blog":"https://medium.com/@iotex","chat":"","facebook":"","forum":"","github":"https://github.com/iotexproject/iotex-core","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/iotex/","reddit":"https://www.reddit.com/r/IoTeX/","slack":"","telegram":"https://t.me/IoTeXGroup","twitter":"https://twitter.com/iotex_io","youtube":"https://www.youtube.com/channel/UCdj3xY3LCktuamvuFusWOZw"}},{"symbol":"IPL","name":"InsurePal token","type":"ERC20","address":"0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80","ens_address":"","decimals":18,"website":"https://insurepal.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/insurepal-blog","chat":"","facebook":"https://www.facebook.com/InsurePal/","forum":"","github":"https://github.com/InsurePal","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18358945/","reddit":"","slack":"","telegram":"https://t.me/InsurePal","twitter":"https://twitter.com/InsurePal_io","youtube":"https://www.youtube.com/channel/UCgpEjq3P54FKDmJDyOjJ9vg"}},{"symbol":"IPSX","name":"IPSX","type":"ERC20","address":"0x001f0aa5da15585e5b2305dbab2bac425ea71007","ens_address":"","decimals":18,"website":"https://ip.sx","logo":{"src":"https://ip.sx/images/IPSX-Logo-28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"contact@ip.sx","url":""},"social":{"blog":"https://medium.ip.sx/","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"IST34","name":"IST34 Token","type":"ERC20","address":"0x0cf713b11c9b986ec40d65bd4f7fbd50f6ff2d64","ens_address":"","decimals":18,"website":"https://hiperteknoloji.org","logo":{"src":"https://hiperteknoloji.org/ht/ist34-token-28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"ist34@hiperteknoloji.org","url":""},"social":{"blog":"https://hiperteknoloji.org/2018/05/10/ist34token/","chat":"","facebook":"https://www.facebook.com/ist34token","forum":"https://bitcoingarden.org/forum/index.php?topic=33783","github":"https://github.com/IST34Token","gitter":"https://gitter.im/IST34-Token","instagram":"https://www.instagram.com/ist34_token/","linkedin":"https://www.linkedin.com/in/ist34-token","reddit":"https://www.reddit.com/user/IST34_Token","slack":"https://ist34token.slack.com","telegram":"https://t.me/IST34Token","twitter":"https://twitter.com/IST34_Token","youtube":"https://www.youtube.com/channel/UCwEbCIn8VkPMBXuyyg8Ia8w"}},{"symbol":"ITC","name":"IoT Chain","type":"ERC20","address":"0x5e6b6d9abad9093fdc861ea1600eba1b355cd940","ens_address":"","decimals":18,"website":"https://iotchain.io/","logo":{"src":"http://etherscan.io/token/images/iotchain28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@iotchain.io","url":""},"social":{"blog":"https://medium.com/@IoT_Chain","chat":"http://qm.qq.com/cgi-bin/qm/qr?k=CjS_9da0Uj5SfXX8Wm1PIDuL_Nbjzmc3","facebook":"https://www.facebook.com/IoTChain/","forum":"https://bitcointalk.org/index.php?topic=2612309.0","github":"https://github.com/IoTChainCode","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/itcofficial/","slack":"https://iotchaingroup.slack.com/","telegram":"https://t.me/IoTChain","twitter":"https://twitter.com/IoT_Chain","youtube":""}},{"symbol":"ITT","name":"ITT Token","type":"ERC20","address":"0x0aeF06DcCCC531e581f0440059E6FfCC206039EE","ens_address":"","decimals":8,"website":"http://intelligenttrading.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@intelligenttrading.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2064501","github":"https://github.com/IntelligentTrading","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/ITT_Token","slack":"https://itt-token-slack.herokuapp.com","telegram":"","twitter":"https://twitter.com/itt_token","youtube":""}},{"symbol":"IXT","name":"IXT","type":"ERC20","address":"0xfca47962d45adfdfd1ab2d972315db4ce7ccf094","ens_address":"","decimals":8,"website":"https://www.ixt.global","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@ixt.global","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/ixttoken/","reddit":"https://www.reddit.com/user/ixt-token","slack":"","telegram":"https://t.me/iXledger","twitter":"https://twitter.com/IXT_token","youtube":""}},{"symbol":"J8T","name":"J8T Token","type":"ERC20","address":"0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4","ens_address":"","decimals":8,"website":"https://jet8.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"token@jet8.io","url":""},"social":{"blog":"https://medium.com/jet8-token","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2862213.0","github":"https://github.com/jet8","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/jet8/","reddit":"https://www.reddit.com/r/Jet8","slack":"","telegram":"https://t.me/Jet8_ecosystem","twitter":"https://twitter.com/jet8app","youtube":"http://bit.ly/JET8_videos"}},{"symbol":"JBX","name":"JBOX","type":"ERC20","address":"0x884e3902C4d5cFA86de4aCE7A96AA91EbC25C0Ff","ens_address":"","decimals":18,"website":"https://www.jboxcoin.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@jboxcoin.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/jboxcommunity","forum":"https://bitcointalk.org/index.php?topic=2330794.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/jboxcoin","twitter":"https://twitter.com/@Jbox_coin","youtube":""}},{"symbol":"JET","name":"JET","type":"ERC20","address":"0x8727c112c712c4a03371ac87a74dd6ab104af768","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"JetCoins","name":"JetCoins","type":"ERC20","address":"0x773450335eD4ec3DB45aF74f34F2c85348645D39","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"JNT","name":"JNT","type":"ERC20","address":"0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7","ens_address":"","decimals":18,"website":"https://jibrel.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@jibrel.network","url":"https://jibrelnetwork.freshdesk.com/support/tickets/new"},"social":{"blog":"https://medium.com/@jibrelnetwork","chat":"","facebook":"https://www.facebook.com/jibrelnetwork","forum":"https://bitcointalk.org/index.php?topic=2057487.0","github":"https://github.com/jibrelnetwork","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/jibrel-network","reddit":"https://www.reddit.com/r/JibrelNetwork","slack":"https://jibrel.io","telegram":"https://t.me/jibrel_network","twitter":"https://twitter.com/JibrelNetwork","youtube":"https://www.youtube.com/channel/UChRHMyaETb7M9OwfQQodh7g"}},{"symbol":"JOY","name":"JOYSO","type":"ERC20","address":"0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57","ens_address":"joysoToken.eth","decimals":6,"website":"https://joyso.io/","logo":{"src":"https://etherscan.io/token/images/joyso_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@joyso.io","url":"https://joyso.zendesk.com/hc/en-us"},"social":{"blog":"https://medium.com/joyso","chat":"","facebook":"https://www.facebook.com/Joyso.io","forum":"","github":"https://github.com/Joyso-io","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/joyso/","reddit":"","slack":"","telegram":"https://t.me/joyso_io","twitter":"https://twitter.com/joyso_io","youtube":"https://www.youtube.com/channel/UCyRNTypArQG6wRdTAPapAGQ"}},{"symbol":"KC","name":"KMCC","type":"ERC20","address":"0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5","ens_address":"","decimals":18,"website":"https://www.kmcc.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"dwgoforit@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"KEE","name":"CryptoKEE","type":"ERC20","address":"0x72D32ac1c5E66BfC5b08806271f8eEF915545164","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"KEY","name":"SelfKey","type":"ERC20","address":"0x4CC19356f2D37338b9802aa8E8fc58B0373296E7","ens_address":"","decimals":18,"website":"https://selfkey.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@selfkey.org","url":""},"social":{"blog":"https://medium.com/selfkey","chat":"","facebook":"https://www.facebook.com/SelfKeyNetwork","forum":"https://bitcointalk.org/index.php?topic=2310691","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18232422","reddit":"https://www.reddit.com/r/selfkey","slack":"","telegram":"https://t.me/selfkeyfoundation","twitter":"http://twitter.com/SelfKey","youtube":"https://www.youtube.com/channel/UCsilze3-MhbCY3_QkKul3PQ"}},{"symbol":"KEY","name":"BihuKey","type":"ERC20","address":"0x4cd988afbad37289baaf53c13e98e2bd46aaea8c","ens_address":"","decimals":18,"website":"https://bihu.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"wow@bihu.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/bihu-id","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"KICK","name":"KICK","type":"ERC20","address":"0x27695E09149AdC738A978e9A678F99E4c39e9eb9","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@kickico.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/kickicoplatform","forum":"https://bitcointalk.org/index.php?topic=2046684.0","github":"https://github.com/kickico","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company-beta/11199886","reddit":"https://www.reddit.com/r/KICKICO_Platform","slack":"","telegram":"https://t.me/kickico","twitter":"https://twitter.com/KICKICOplatform","youtube":""}},{"symbol":"KIN","name":"Kin Foundation","type":"ERC20","address":"0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5","ens_address":"","decimals":18,"website":"https://kin.kik.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"kin@kik.com","url":""},"social":{"blog":"https://medium.com/kinfoundation","chat":"","facebook":"","forum":"","github":"https://github.com/kikinteractive/kin-token","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/KinFoundation","slack":"https://kinfoundation.slack.com","telegram":"","twitter":"https://twitter.com/@kin_foundation","youtube":""}},{"symbol":"KNC","name":"Kyber Network","type":"ERC20","address":"0xdd974D5C2e2928deA5F71b9825b8b646686BD200","ens_address":"","decimals":18,"website":"https://kyber.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@kyber.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/KyberNetwork","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://kybernetwork.slack.com","telegram":"","twitter":"https://twitter.com/KyberNetwork","youtube":""}},{"symbol":"KPR","name":"KPRCoin","type":"ERC20","address":"0xb5c33f965c8899d255c34cdd2a3efa8abcbb3dea","ens_address":"","decimals":18,"website":"https://www.kprms.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@kprms.com","url":"https://www.kprms.com/contact-us"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/KPRMS/","forum":"","github":"https://github.com/KPRToken/KPR-code-for-ICO","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/alain-d-ombrille-8b7063145/","reddit":"https://www.reddit.com/user/kprcoin/","slack":"","telegram":"https://t.me/joinchat/FR6XSEPfbk7K1UYiiNXr1w","twitter":"https://twitter.com/kprcoin","youtube":"https://www.youtube.com/watch?time_continue=1&v=1kq2pRe7t4U"}},{"symbol":"KRL","name":"Kryll","type":"ERC20","address":"0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0","ens_address":"","decimals":18,"website":"https://kryll.io/","logo":{"src":"https://kryll.io/external/K_256px.png","width":"512","height":"512","ipfs_hash":""},"support":{"email":"support@kryll.io","url":"https://t.me/kryll_io"},"social":{"blog":"https://medium.com/@kryll_io","chat":"","facebook":"https://www.facebook.com/kryll.io/","forum":"https://bitcointalk.org/index.php?topic=2791849.0","github":"https://github.com/Cryptense/","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/cryptense","reddit":"https://www.reddit.com/r/Kryll_io/","slack":"","telegram":"https://t.me/kryll_io","twitter":"https://twitter.com/kryll_io","youtube":"https://www.youtube.com/channel/UCET6DYvfwpIvmeY2x_VdHMQ"}},{"symbol":"KZN","name":"KaizenCoin","type":"ERC20","address":"0x9541FD8B9b5FA97381783783CeBF2F5fA793C262","ens_address":"","decimals":8,"website":"http://kaizencoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"kaizencoin@kaizencoin.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LA","name":"LATOKEN","type":"ERC20","address":"0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf","ens_address":"","decimals":18,"website":"https://latoken.com/","logo":{"src":"https://cdn.latoken.com/common/img/logo.svg","width":512,"height":512,"ipfs_hash":""},"support":{"email":"info@latoken.com","url":""},"social":{"blog":"https://blog.latoken.com/","chat":"","facebook":"https://www.facebook.com/LiquidAssetToken/","forum":"","github":"https://github.com/latoken","gitter":"","instagram":"https://www.instagram.com/latokens/","linkedin":"https://www.linkedin.com/company/latoken","reddit":"https://www.reddit.com/r/LAToken/","slack":"","telegram":"https://t.me/la_token","twitter":"https://twitter.com/LATokens","youtube":"https://www.youtube.com/channel/UCvTfsRYJYD2X26VXbqDVgTQ/featured"}},{"symbol":"LALA","name":"LALA World Token","type":"ERC20","address":"0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9","ens_address":"","decimals":18,"website":"https://lalaworld.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@lalaworld.io","url":""},"social":{"blog":"https://blog.lalaworld.io/","chat":"","facebook":"https://www.facebook.com/MyLaLaWorld","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/MyLaLaWorld/","reddit":"https://www.reddit.com/user/MyLaLaWorld/","slack":"http://bit.ly/2yiWRE4","telegram":"https://t.me/LaLaWorld","twitter":"https://twitter.com/MyLaLaWorld","youtube":"https://www.youtube.com/channel/UCCcnh2DTw_mXECPgOOBN84Q/videos"}},{"symbol":"LDC","name":"LEADCOIN","type":"ERC20","address":"0x5102791ca02fc3595398400bfe0e33d7b6c82267","ens_address":"","decimals":18,"website":"https://www.leadcoin.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@leadcoin.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/11416555/","reddit":"https://www.reddit.com/r/leadcoin/","slack":"","telegram":"https://t.me/LeadCoinNetwork","twitter":"https://twitter.com/LeadCoinNetwork","youtube":"https://www.youtube.com/channel/UCWl9l8LRP816rEcAzY66kJg"}},{"symbol":"LEDU","name":"LEDU","type":"ERC20","address":"0x5b26C5D0772E5bbaC8b3182AE9a13f9BB2D03765","ens_address":"","decimals":8,"website":"https://tokensale.liveedu.tv","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@liveedu.tv","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/livecodingtvofficial","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LEMO","name":"Lemo","type":"ERC20","address":"0x60C24407d01782C2175D32fe7C8921ed732371D1","ens_address":"","decimals":18,"website":"www.lemochain.com","logo":{"src":"https://lemochip.hellobyebye.com/logo.png","width":"110","height":"72","ipfs_hash":""},"support":{"email":"foundation@lemochain.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/LemoChain","forum":"","github":"https://github.com/LemoFoundationLtd","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/LemoChain","slack":"","telegram":"https://t.me/lemochain","twitter":"https://twitter.com/LemoChain","youtube":""}},{"symbol":"LEND","name":"EHTLend","type":"ERC20","address":"0x80fB784B7eD66730e8b1DBd9820aFD29931aab03","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LFR","name":"LifeRun Coin","type":"ERC20","address":"0xc798cd1c49db0e297312e4c682752668ce1db2ad","ens_address":"","decimals":5,"website":"https://www.liferun.cc","logo":{"src":"https://www.liferun.cc/static/LRF/images/liferun-logo28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@liferun.cc","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LGO","name":"LGO","type":"ERC20","address":"0x123ab195dd38b1b40510d467a6a359b201af056f","ens_address":"","decimals":8,"website":"https://legolas.exchange/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LGR","name":"Logarithm","type":"ERC20","address":"0x2eb86e8fc520e0f6bb5d9af08f924fe70558ab89","ens_address":"","decimals":8,"website":"https://getlogarithm.com","logo":{"src":"https://getlogarithm.com/images/logo256.png","width":256,"height":256,"ipfs_hash":""},"support":{"email":"one@getlogarithm.com","url":"https://getlogarithm.com/contact"},"social":{"blog":"","chat":"https://t.me/joinchat/CkoPiQxH8UujJ5tkifNIGA","facebook":"https://www.facebook.com/getlogarithm","forum":"https://bitcointalk.org/index.php?topic=2348732","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/CkoPiQxH8UujJ5tkifNIGA","twitter":"https://twitter.com/getlogarithm","youtube":""}},{"symbol":"LIF","name":"LIF","type":"ERC20","address":"0xEB9951021698B42e4399f9cBb6267Aa35F82D59D","ens_address":"lif.windingtree.eth","decimals":18,"website":"https://windingtree.com/","logo":{"src":"https://etherscan.io/token/images/lif_28.png","width":"28px","height":"28px","ipfs_hash":""},"support":{"email":"support@windingtree.com","url":""},"social":{"blog":"https://blog.windingtree.com","chat":"https://windingtree.rocket.chat/","facebook":"https://www.facebook.com/WindingTree","forum":"https://bitcointalk.org/index.php?topic=1946065","github":"https://github.com/windingtree","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/winding-tree","reddit":"https://reddit.com/r/windingtree","slack":"","telegram":"https://t.me/windingtree","twitter":"https://twitter.com/windingtree","youtube":"https://www.youtube.com/channel/UCFuemEOhCfenYMoNdjD0Aew"}},{"symbol":"LIFE","name":"LIFE","type":"ERC20","address":"0xff18dbc487b4c2e3222d115952babfda8ba52f5f","ens_address":"","decimals":18,"website":"www.lifelabs.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@lifelabs.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2196925.new;topicseen","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LINK (Chainlink)","name":"LINK Chainlink","type":"ERC20","address":"0x514910771af9ca656af840dff83e8264ecf986ca","ens_address":"","decimals":18,"website":"https://link.smartcontract.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@smartcontract.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://chainlinknetwork.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"LINK Platform","name":"Link Platform","type":"ERC20","address":"0xe2e6d4be086c6938b53b22144855eef674281639","ens_address":"","decimals":18,"website":"https://ethereum.link","logo":{"src":"https://etherscan.io/token/images/linkplatform28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@ethereum.link","url":""},"social":{"blog":"https://www.medium.com/@ethlink","chat":"","facebook":"https://www.facebook.com/ethereumlink","forum":"","github":"https://github.com/ethlink","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://ethereum.link/invite.php","telegram":"","twitter":"https://www.twitter.com/linkplatform","youtube":""}},{"symbol":"LIVE","name":"LIVE Token","type":"ERC20","address":"0x24A77c1F17C547105E14813e517be06b0040aa76","ens_address":"","decimals":18,"website":"https://livestars.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@livestars.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/LiveStarsPlatform","slack":"","telegram":"https://t.me/livestarsio","twitter":"https://twitter.com/LiveStarsIO","youtube":""}},{"symbol":"LNC","name":"Lancer Token","type":"ERC20","address":"0x63e634330A20150DbB61B15648bC73855d6CCF07","ens_address":"","decimals":18,"website":"https://blocklancer.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@blocklancer.net","url":""},"social":{"blog":"https://medium.com/blocklancer-revolution-of-the-freelance-job-market","chat":"https://discordapp.com/invite/Jw4wCsm","facebook":"https://www.facebook.com/blocklancer","forum":"https://bitcointalk.org/index.php?topic=1974481","github":"https://github.com/Blocklancer/Blocklancer-Contracts","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/blocklancer","slack":"https://blocklancer-slack.herokuapp.com","telegram":"http://telegram.me/officialblocklancer","twitter":"https://twitter.com/blocklancer","youtube":""}},{"symbol":"LNC-Linker Coin","name":"Linker Coin","type":"ERC20","address":"0x6beb418fc6e1958204ac8baddcf109b8e9694966","ens_address":"","decimals":18,"website":"https://www.linkercoin.com/en","logo":{"src":"https://drive.google.com/file/d/1nvFvAFWTuMg5pH7W7Apoe_-Xob2-TY_u/view?usp=sharing","width":150,"height":150,"ipfs_hash":""},"support":{"email":"staff@linkercoin.com","url":""},"social":{"blog":"https://medium.com/linkercoin","chat":"","facebook":"https://www.facebook.com/Linkercoinoffical/?fref=ts","forum":"https://bitcointalk.org/index.php?topic=2326742","github":"https://github.com/linkercoinfoundation","gitter":"","instagram":"https://www.instagram.com/linkercoin_official","linkedin":"https://www.linkedin.com/in/linker-coin-854a0a153","reddit":"https://www.reddit.com/user/LinkerCoin","slack":"","telegram":"https://t.me/linkercoin","twitter":"https://twitter.com/search?q=linkercoin&src=typd","youtube":"https://www.youtube.com/channel/UCwlpsYDS75x5ueEAAZUnZBQ"}},{"symbol":"LND","name":"Lendingblock","type":"ERC20","address":"0x0947b0e6D821378805c9598291385CE7c791A6B2","ens_address":"","decimals":18,"website":"https://lendingblock.com","logo":{"src":"https://etherscan.io/token/images/lendingblock_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@lendingblock.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/lendingblock","forum":"","github":"https://github.com/lendingblock","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18359515/","reddit":"https://www.reddit.com/r/Lendingblock/","slack":"","telegram":"https://t.me/lendingblock","twitter":"https://twitter.com/lendingblock","youtube":"https://www.youtube.com/channel/UCSW4xLO-6zXYI6BVT0o64Eg"}},{"symbol":"LOC","name":"LockChain","type":"ERC20","address":"0x5e3346444010135322268a4630d2ed5f8d09446c","ens_address":"","decimals":18,"website":"https://LockChain.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@lockchain.co","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/LockChainLOK","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/F3YOYQx123PO4FPfNRPihQ","twitter":"","youtube":""}},{"symbol":"LOCI","name":"LOCIcoin","type":"ERC20","address":"0x9c23d67aea7b95d80942e3836bcdf7e708a747c2","ens_address":"","decimals":18,"website":"https://locipro.com","logo":{"src":"https://locipro.com/assets/loci-28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"dan@loci.io","url":""},"social":{"blog":"https://medium.com/@John_Loci","chat":"","facebook":"https://www.facebook.com/Loci.InnVenn/","forum":"https://bitcointalk.org/index.php?topic=2161880.msg21647125#msg21647125","github":"http://github.com/locipro/loci-coin-sale","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/loci-pro/","reddit":"https://www.reddit.com/r/loci_io/","slack":"","telegram":"https://t.me/Loci_InnVenn","twitter":"https://twitter.com/loci_io","youtube":"https://www.youtube.com/watch?v=UNGDGDDIz7Y"}},{"symbol":"LOCUS","name":"Locus Chain","type":"ERC20","address":"0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054","ens_address":"","decimals":18,"website":"https://www.locuschain.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":" info@locuschain.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LOK","name":"LookRev Old","type":"ERC20","address":"0x21aE23B882A340A22282162086bC98D3E2B73018","ens_address":"","decimals":18,"website":"https://lookrev.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@lookrev.com","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/lookrev","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://lookrev.slack.com","telegram":"","twitter":"https://twitter.com/lookrev","youtube":""}},{"symbol":"LOOK","name":"LookRev","type":"ERC20","address":"0x253c7dd074f4bacb305387f922225a4f737c08bd","ens_address":"","decimals":18,"website":"https://lookrev.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@lookrev.com","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/lookrev","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://lookrev.slack.com","telegram":"","twitter":"https://twitter.com/lookrev","youtube":""}},{"symbol":"LOOM","name":"LOOM","type":"ERC20","address":"0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LRC","name":"LRC","type":"ERC20","address":"0xEF68e7C694F40c8202821eDF525dE3782458639f","ens_address":"","decimals":18,"website":"https://loopring.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"foundation@loopring.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/loopringorg","youtube":""}},{"symbol":"LUC","name":"LUCToken","type":"ERC20","address":"0x5dbe296f97b23c4a6aa6183d73e574d02ba5c719","ens_address":"","decimals":18,"website":"https://play2live.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@play2live,io","url":""},"social":{"blog":"https://medium.com/play2live","chat":"","facebook":"https://www.facebook.com/play2live.io/","forum":"https://bitcointalk.org/index.php?topic=2450026","github":"https://github.com/Play2Live/blockchain","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18255836/","reddit":"https://www.reddit.com/r/Play2Live/","slack":"","telegram":"https://t.me/play2live","twitter":"https://twitter.com/play_2_live","youtube":""}},{"symbol":"LUCK","name":"LUCK","type":"ERC20","address":"0xFB12e3CcA983B9f59D90912Fd17F8D745A8B2953","ens_address":"","decimals":0,"website":"http://www.luckytoken.info","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@luckytoken.info","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://www.twitter.com/lucky_token","youtube":""}},{"symbol":"LUM","name":"Lumino Coin","type":"ERC20","address":"0xa89b5934863447f6e4fc53b315a93e873bda69a3","ens_address":"","decimals":18,"website":"https://www.luminocoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"luminocoin@protonmail.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/luminocoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LUN","name":"LUN","type":"ERC20","address":"0xfa05A73FfE78ef8f1a739473e462c54bae6567D9","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"M-ETH","name":"M-ETH","type":"ERC20","address":"0x3f4b726668da46f5e0e75aa5d478acec9f38210f","ens_address":"","decimals":18,"website":"http://www.mostexclusive.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@mostexclusive.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MAD","name":"MAD","type":"ERC20","address":"0x5b09a0371c1da44a8e24d36bf5deb1141a84d875","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MAN","name":"MAN","type":"ERC20","address":"0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MANA","name":"Decentraland MANA","type":"ERC20","address":"0x0F5D2fB29fb7d3CFeE444a200298f468908cC942","ens_address":"","decimals":18,"website":"https://decentraland.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.decentraland.org","chat":"","facebook":"","forum":"","github":"https://github.com/decentraland","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.decentraland.org","telegram":"","twitter":"https://twitter.com/decentraland","youtube":""}},{"symbol":"MART","name":"Martcoin","type":"ERC20","address":"0xfdcc07Ab60660de533b5Ad26e1457b565a9D59Bd","ens_address":"","decimals":18,"website":"https://martcoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@martcoin.io","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/martcoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/martcoinchannel","twitter":"https://twitter.com/martcoin","youtube":""}},{"symbol":"MBRS","name":"Embers","type":"ERC20","address":"0x386467f1f3ddbe832448650418311a479eecfc57","ens_address":"","decimals":0,"website":"https://embermine.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@embermine.com","url":""},"social":{"blog":"","chat":"https://t.me/embermine","facebook":"https://www.facebook.com/embermine/","forum":"","github":"https://github.com/theembermine","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/TheEmbermine","youtube":""}},{"symbol":"MCAP","name":"MCAP","type":"ERC20","address":"0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MCI","name":"Musiconomi","type":"ERC20","address":"0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C","ens_address":"","decimals":18,"website":"https://musiconomi.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"musiconomi@musiconomi.com","url":""},"social":{"blog":"https://medium.com/musiconomi","chat":"","facebook":"https://www.facebook.com/Musiconomi/","forum":"","github":"https://github.com/musiconomi/","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Musiconomi/","slack":"https://musiconomi.com/slack","telegram":"","twitter":"https://twitter.com/musiconomi","youtube":""}},{"symbol":"MCO","name":"MCO","type":"ERC20","address":"0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MDA","name":"MDA","type":"ERC20","address":"0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MESH","name":"Meshbox","type":"ERC20","address":"0x01f2acf2914860331c1cb1a9acecda7475e06af8","ens_address":"","decimals":18,"website":"https://meshbox.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"MESH@MESHBOX.NETWORK","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/MeshBoxFoundation/","forum":"","github":"https://github.com/MeshBox","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/meshbox/","reddit":"","slack":"","telegram":"t.me/MeshBoxEN","twitter":"https://twitter.com/Mesh_Box","youtube":"https://www.youtube.com/channel/UCQHwUo9rRidByL9vMlv0vSQ"}},{"symbol":"MEST","name":"Monaco Estate","type":"ERC20","address":"0x5b8d43ffde4a2982b9a5387cdf21d54ead64ac8d","ens_address":"","decimals":18,"website":"https://monacoestate.io/","logo":{"src":"https://image.ibb.co/eYVsoH/monaco_estate_logo_28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"contact@monacoestate.io","url":"https://monacoestate.io/contact/"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/monacoestatetoken/","forum":"","github":"https://github.com/monacoestate","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/MonacoEstate/","slack":"","telegram":"","twitter":"https://twitter.com/monacoestateico","youtube":"https://www.youtube.com/channel/UCWNTC-aor7Nqm1o5y66yYmQ"}},{"symbol":"MFG","name":"SyncFab Manufacturing","type":"ERC20","address":"0x6710c63432a2de02954fc0f851db07146a6c0312","ens_address":"","decimals":18,"website":"https://syncfab.com/","logo":{"src":"https://blockchain.syncfab.com/assets/img/mfg-logo.png","width":"500","height":"500","ipfs_hash":""},"support":{"email":"support@syncfab.com","url":""},"social":{"blog":"https://medium.com/syncfabmfg","chat":"","facebook":"https://facebook.com/syncfab","forum":"https://bitcointalk.org/index.php?topic=2286102.0","github":"https://github.com/syncfab","gitter":"","instagram":"https://www.instagram.com/syncfab/","linkedin":"https://www.linkedin.com/company/syncfab","reddit":"https://www.reddit.com/r/syncfab/","slack":"","telegram":"https://t.me/syncfab","twitter":"https://twitter.com/syncfab","youtube":"https://youtube.com/channel/syncfab"}},{"symbol":"MFT","name":"Mainframe Token","type":"ERC20","address":"0xDF2C7238198Ad8B389666574f2d8bc411A4b7428","ens_address":"token.mainframehq.eth","decimals":18,"website":"https://mainframe.com","logo":{"src":"https://raw.githubusercontent.com/MainframeHQ/branding/master/Illustrations/Mainframe_MFT_icon_120x120.png","width":120,"height":120,"ipfs_hash":""},"support":{"email":"contact@mainframe.com","url":""},"social":{"blog":"https://blog.mainframe.com","chat":"","facebook":"https://www.facebook.com/MainframeHQ","forum":"","github":"https://github.com/MainframeHQ","gitter":"","instagram":"https://www.instagram.com/mainframehq","linkedin":"https://www.linkedin.com/company/mainframehq","reddit":"","slack":"","telegram":"https://t.me/mainframehq","twitter":"https://twitter.com/Mainframe_HQ","youtube":"https://www.youtube.com/c/MainframeHQ"}},{"symbol":"MFTU","name":"Mainstream For The Underground","type":"ERC20","address":"0x05D412CE18F24040bB3Fa45CF2C69e506586D8e8","ens_address":"","decimals":18,"website":"https://mftu.net","logo":{"src":"https://mftu.net/tokeninfo/mftu/0x05D412CE18F24040bB3Fa45CF2C69e506586D8e8.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"service@mftu.net","url":""},"social":{"blog":"https://mftu.net/site","chat":"","facebook":"https://facebook.com/cyberfm","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/cyberfm","slack":"","telegram":"https://t.me/mftudotnet","twitter":"https://twitter.com/mftu_currency","youtube":""}},{"symbol":"MGO","name":"MGO","type":"ERC20","address":"0x40395044ac3c0c57051906da938b54bd6557f212","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MIT (Mainstreet)","name":"Mainstreet","type":"ERC20","address":"0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MIT (Mychatcoin)","name":"Mychatcoin","type":"ERC20","address":"0xad8dd4c725de1d31b9e8f8d146089e9dc6882093","ens_address":"","decimals":6,"website":"https://mychatcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@mychatcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"t.me/mychatcoin","twitter":"https://twitter.com/mychatcoin","youtube":""}},{"symbol":"MKR","name":"MakerDAO","type":"ERC20","address":"0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2","ens_address":"","decimals":18,"website":"https://makerdao.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@makerdao.com","url":"https://chat.makerdao.com"},"social":{"blog":"","chat":"https://chat.makerdao.com","facebook":"","forum":"","github":"https://github.com/makerdao","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/makerdao","slack":"","telegram":"","twitter":"https://twitter.com/MakerDAO","youtube":""}},{"symbol":"MKT","name":"Mikado","type":"ERC20","address":"0x7939882b54fcf0bcae6b53dec39ad6e806176442","ens_address":"","decimals":8,"website":"https://mikado.io","logo":{"src":"https://avatars3.githubusercontent.com/u/38851395?s=400","width":"400","height":"400","ipfs_hash":""},"support":{"email":"support@mikado.io","url":""},"social":{"blog":"https://medium.com/@mikado.io","chat":"","facebook":"","forum":"","github":"https://github.com/mikadohq","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/mikadoio/","reddit":"","slack":"","telegram":"https://t.me/mikadoio","twitter":"https://twitter.com/mikadoio","youtube":""}},{"symbol":"MLN","name":"Melonport","type":"ERC20","address":"0xBEB9eF514a379B997e0798FDcC901Ee474B6D9A1","ens_address":"","decimals":18,"website":"https://melonport.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"https://chat.melonport.com","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MNE","name":"MNE","type":"ERC20","address":"0x1a95B271B0535D15fa49932Daba31BA612b52946","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MNT","name":"Media Network Token","type":"ERC20","address":"0xA9877b1e05D035899131DBd1e403825166D09f92","ens_address":"","decimals":18,"website":"https://coinjoker.com","logo":{"src":"https://etherscan.io/token/images/coinjoker_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@coinjoker.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CoinJokerCom","forum":"","github":"https://github.com/coinjoker/cjtoken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CoinJoker","youtube":""}},{"symbol":"MNTP","name":"Goldmint MNT Prelaunch Token","type":"ERC20","address":"0x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc","ens_address":"","decimals":18,"website":"https://goldmint.io","logo":{"src":"https://etherscan.io/token/images/goldmint_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"invest@goldmint.io","url":""},"social":{"blog":"https://blog.goldmint.io","chat":"","facebook":"https://facebook.com/goldmint.io","forum":"https://bitcointalk.org/index.php?topic=2074277","github":"https://github.com/Goldmint","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/goldmintio","slack":"https://join.slack.com/t/goldmint/shared_invite/MjE0MTY4NDQxMTUyLTE1MDA0NzM2MDctN2U3NTRhYmZhZQ","telegram":"https://t.me/goldmintio","twitter":"https://twitter.com/Goldmint_io","youtube":""}},{"symbol":"MOD","name":"Modum","type":"ERC20","address":"0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e","ens_address":"","decimals":0,"website":"https://modum.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"token@modum.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/modum.io","forum":"","github":"https://github.com/modum-io","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/modum_io","slack":"https://modum-token.slack.com","telegram":"","twitter":"https://twitter.com/modum_io","youtube":""}},{"symbol":"MOVED","name":"Twinkle","type":"ERC20","address":"0xfbd0d1c77b501796a35d86cf91d65d9778eee695","ens_address":"","decimals":3,"website":"https://www.rainbowcurrency.com/","logo":{"src":"https://www.rainbowcurrency.com/new/assets/img/logo_full2.jpg","width":"748","height":"748","ipfs_hash":""},"support":{"email":"support@rainbowcurrency.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/RainbowCurrency","forum":"https://bitcointalk.org/index.php?topic=2735483","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/RainbowCurrency","slack":"","telegram":"https://t.me/joinchat/C4OIwEUEDO69rS7rsPRpsg","twitter":"https://twitter.com/RainbowCurrency","youtube":""}},{"symbol":"MRL","name":"Marcelo","type":"ERC20","address":"0x82125AFe01819Dff1535D0D6276d57045291B6c0","ens_address":"","decimals":18,"website":"https://moneyrebel.io/","logo":{"src":"https://static.wixstatic.com/media/3e9a6a_15e519bd6672449182b4c3c557e49660~mv2.jpg/v1/fill/w_110,h_108,al_c,q_80,usm_0.66_1.00_0.01/3e9a6a_15e519bd6672449182b4c3c557e49660~mv2.webp","width":"86","height":"86","ipfs_hash":""},"support":{"email":"info@marcelo-mrl.com","url":"https://t.me/joinchat/IGyNLA9UybLEpfDZYX5xpQ"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/marcelomining/","forum":"","github":"https://github.com/MarceloMRL","gitter":"","instagram":"https://www.instagram.com/marcelo.mrl/","linkedin":"https://www.linkedin.com/company/marcelo/","reddit":"","slack":"","telegram":"https://t.me/joinchat/IGyNLA9UybLEpfDZYX5xp","twitter":"https://twitter.com/Mrl_io","youtube":""}},{"symbol":"MRP","name":"MoneyRebel Token","type":"ERC20","address":"0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c","ens_address":"","decimals":18,"website":"https://moneyrebel.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://t.me/moneyrebel"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/moneyrebelteam","youtube":""}},{"symbol":"MRV","name":"MRV","type":"ERC20","address":"0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84","ens_address":"","decimals":18,"website":"https://macroverse.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"crowdsale@macroverse.io","url":""},"social":{"blog":"","chat":"https://matrix.to/#/#macroverse:matrix.org","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MSP","name":"Mothership","type":"ERC20","address":"0x68AA3F232dA9bdC2343465545794ef3eEa5209BD","ens_address":"","decimals":18,"website":"https://mothership.cx","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@mothership.cx","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/mothershipcx","twitter":"","youtube":""}},{"symbol":"MTC","name":"Medical Token Currency","type":"ERC20","address":"0x905E337c6c8645263D3521205Aa37bf4d034e745","ens_address":"","decimals":18,"website":"https://ico.docademic.com/","logo":{"src":"https://cdn.docademic.com/images/ico/mtc200.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"support@docademic.com","url":""},"social":{"blog":"https://news.docademic.com","chat":"","facebook":"https://www.facebook.com/docademic","forum":"","github":"https://github.com/Docademic","gitter":"","instagram":"https://www.instagram.com/docademic/","linkedin":"https://www.linkedin.com/company/doctordice/","reddit":"https://www.reddit.com/user/Docademic/","slack":"","telegram":"https://t.me/docademicofficial","twitter":"https://twitter.com/docademic","youtube":"https://www.youtube.com/channel/UCnF48IoeGNu6P78ABB2XhSw/videos?view_as=subscriber"}},{"symbol":"MTC","name":"MTC Mesh Network","type":"ERC20","address":"0xdfdc0d82d96f8fd40ca0cfb4a288955becec2088","ens_address":"","decimals":18,"website":"https://www.mtc.io/","logo":{"src":"http://bbs.mtc.io/upload/picture/user/avatar/7218.jpg","width":"200","height":"200","ipfs_hash":""},"support":{"email":"team@mtc.io","url":""},"social":{"blog":"https://weibo.com/u/6434555011?refer_flag=1001030103_&is_hot=1","chat":"https://t.me/MTC_IO","facebook":"https://www.facebook.com/mtcmeshnetworks/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/MTCMeshNetwork","slack":"","telegram":"https://t.me/MTC_IO","twitter":"https://twitter.com/mtcmesh","youtube":"https://www.youtube.com/channel/UCL-GR6sJSh19h_ByRuE8mTw?view_as=subscriber"}},{"symbol":"MTH","name":"Monetha","type":"ERC20","address":"0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16","ens_address":"","decimals":5,"website":"http://www.monetha.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@monetha","chat":"","facebook":"https://www.facebook.com/Monetha.io","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/ethereum/comments/6iln7f/a_brief_overview_and_critique_of_the_monetha","slack":"https://monetha.slack.com","telegram":"https://t.me/monetha_io","twitter":"https://twitter.com/Monetha_io","youtube":""}},{"symbol":"MTL","name":"MetalPay","type":"ERC20","address":"0xF433089366899D83a9f26A773D59ec7eCF30355e","ens_address":"","decimals":8,"website":"https://www.metalpay.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@metalpay.co","url":"https://support.metalpay.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://www.metalpay.chat","telegram":"","twitter":"","youtube":""}},{"symbol":"MTN","name":"MedToken","type":"ERC20","address":"0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3","ens_address":"","decimals":18,"website":"https://medicalchain.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://medicalchain.com/en/contact/"},"social":{"blog":"https://medicalchain.com/en/news/","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/medicalchain","twitter":"https://twitter.com/medical_chain","youtube":""}},{"symbol":"MTR","name":"Mitrav","type":"ERC20","address":"0x7FC408011165760eE31bE2BF20dAf450356692Af","ens_address":"","decimals":8,"website":"https://mitrav.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@mitrav.co","url":"https://mitrav.co"},"social":{"blog":"","chat":"skype:team mitrav?add","facebook":"https://www.facebook.com/mitrav.mitrav.58","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/25049387","reddit":"https://www.reddit.com/user/Mitrav","slack":"https://mitrav.slack.com/open","telegram":"https://t.me/mitravteam","twitter":"https://twitter.com/mitrav_m","youtube":""}},{"symbol":"MTRc","name":"MTRCToken","type":"ERC20","address":"0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f","ens_address":"","decimals":18,"website":"https://modultrade.io","logo":{"src":"https://en.modultrade.io/img/new_set/modultrade_logo.svg","width":"60","height":"20","ipfs_hash":""},"support":{"email":"tokensale@modultrade.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/modultrade/","forum":"https://bitcointalk.org/index.php?topic=2240518","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/16259600/","reddit":"https://www.reddit.com/r/SandCoin","slack":"","telegram":"https://t.me/ModulTradeIO","twitter":"https://twitter.com/ModulTrade","youtube":""}},{"symbol":"MTX","name":"MTX","type":"ERC20","address":"0x0AF44e2784637218dD1D32A322D44e603A8f0c6A","ens_address":"","decimals":18,"website":"https://www.matryx.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/matryxai","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/matryxai","twitter":"https://twitter.com/matryx_ai","youtube":""}},{"symbol":"MUXE","name":"MUXE","type":"ERC20","address":"0x515669d308f887fd83a471c7764f5d084886d34d","ens_address":"","decimals":18,"website":"https://www.muxe.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@muxe.io","url":"https://support.muxe.io"},"social":{"blog":"https://www.muxe.io/blog","chat":"https://www.muxe.io","facebook":"https://www.facebook.com/MUXEproject","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://nl.linkedin.com/in/muxe-project","reddit":"https://www.reddit.com/user/MuxeProject","slack":"","telegram":"https://t.me/MUXEproject","twitter":"https://twitter.com/muxeproject","youtube":"https://www.youtube.com/channel/UCH6oO2fazB72bTdvMGK-H7w"}},{"symbol":"MVP","name":"Merculet","type":"ERC20","address":"0x8a77e40936bbc27e80e9a3f526368c967869c86d","ens_address":"","decimals":18,"website":"https://www.merculet.io","logo":{"src":"https://merculet.io/static/image/newimg/logo.png","width":"356","height":"366","ipfs_hash":""},"support":{"email":"support@merculet.io","url":""},"social":{"blog":"https://medium.com/merculet","chat":"","facebook":"https://www.facebook.com/Merculet-347541915747100","forum":"https://bitcointalk.org/index.php?topic=3180239","github":"https://github.com/Merculet","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/merculet/","reddit":"https://www.reddit.com/r/Merculet/","slack":"","telegram":"https://t.me/merculet","twitter":"https://twitter.com/Merculet_io","youtube":""}},{"symbol":"MWAT","name":"RED MWAT","type":"ERC20","address":"0x6425c6be902d692ae2db752b3c268afadb099d3b","ens_address":"","decimals":18,"website":"https://www.restartenergy.io","logo":{"src":"https://restartenergy.io/images/re-logo.png","width":342,"height":189,"ipfs_hash":""},"support":{"email":"sales@restartenergy.io","url":""},"social":{"blog":"https://blog.restartenergy.io","chat":"","facebook":"https://fb.com/restartenergydemocracy","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/restartenergy","twitter":"","youtube":""}},{"symbol":"MYD","name":"MYD","type":"ERC20","address":"0xf7e983781609012307f2514f63D526D83D24F466","ens_address":"","decimals":16,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MYST","name":"Mysterium","type":"ERC20","address":"0xa645264C5603E96c3b0B078cdab68733794B0A71","ens_address":"","decimals":8,"website":"https://mysterium.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://mysterium.network/faq"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.mysterium.network","telegram":"https://t.me/mysterium_network","twitter":"https://twitter.com/MysteriumNet","youtube":""}},{"symbol":"NAC","name":"Nami ICO","type":"ERC20","address":"0x8d80de8A78198396329dfA769aD54d24bF90E7aa","ens_address":"","decimals":18,"website":"https://nami.trade","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@nami.io","url":""},"social":{"blog":"nami.io/newsroom","chat":"","facebook":"https://www.facebook.com/NAMI.TRADE.OFFICIAL/","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/nami-trade-official/","reddit":"","slack":"","telegram":"https://t.me/namitrade","twitter":"https://twitter.com/namidotio","youtube":"https://www.youtube.com/channel/UCYAqEagemhtu0MOtnE7rNJQ"}},{"symbol":"NAVI","name":"NaviToken","type":"ERC20","address":"0x588047365df5ba589f923604aac23d673555c623","ens_address":"","decimals":18,"website":"https://naviaddress.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@naviaddress.com","url":""},"social":{"blog":"https://medium.com/@naviaddress","chat":"","facebook":"https://www.facebook.com/naviaddressplatform/","forum":"https://bitcointalk.org/index.php?topic=2461416.0","github":"https://github.com/naviworld","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/naviaddress/","reddit":"https://www.reddit.com/r/Naviaddress/","slack":"","telegram":"https://t.me/naviaddress","twitter":"https://twitter.com/naviaddress","youtube":"https://www.youtube.com/channel/UChkEvQamePmBzDb5XlwipLQ"}},{"symbol":"NBAI","name":"NebulaAiToken","type":"ERC20","address":"0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D","ens_address":"","decimals":18,"website":"https://tokensale.nebula-ai.network","logo":{"src":"https://tokensale.nebula-ai.network/ressources/images/1801349612.jpg","width":"320","height":"310","ipfs_hash":""},"support":{"email":"contact@nebula-ai.com","url":"https://www.nebula-ai.com/#Contact"},"social":{"blog":"https://bitcointalk.org/index.php?topic=3220514.msg33494165#msg33494165","chat":"","facebook":"https://www.facebook.com/NebulaAI","forum":"","github":"https://github.com/nebulaai","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/nebula-ai","reddit":"","slack":"","telegram":"https://t.me/NebulaAICommunity","twitter":"https://twitter.com/nebula_ai","youtube":"https://www.youtube.com/channel/UCWltsUAyiser4-_eLLGmpdg"}},{"symbol":"nCash","name":"NucleusVision","type":"ERC20","address":"0x809826cceab68c387726af962713b64cb5cb3cca","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NCT","name":"Nectar","type":"ERC20","address":"0x9e46a38f5daabe8683e10793b06749eef7d733d1","ens_address":"","decimals":18,"website":"https://polyswarm.io","logo":{"src":"https://polyswarm.io/img/coin/nectar_300x300.png","width":"301","height":"301","ipfs_hash":"QmaQmaNUDawjkbnH6STZStmUMx32se3rBTvgHeZi7Cygmq"},"support":{"email":"info@polyswarm.io","url":""},"social":{"blog":"https://medium.com/swarmdotmarket","chat":"","facebook":"https://www.facebook.com/PolySwarm/","forum":"","github":"https://github.com/polyswarm","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/swarm-industries","reddit":"https://www.reddit.com/r/polyswarm","slack":"","telegram":"https://t.me/polyswarm","twitter":"https://twitter.com/polyswarm","youtube":"https://www.youtube.com/channel/UClkA8JVQ--oMsPomOKM85fA"}},{"symbol":"NDC","name":"Neverdie","type":"ERC20","address":"0xa54ddc7b3cce7fc8b1e3fa0256d0db80d2c10970","ens_address":"","decimals":18,"website":"https://neverdie.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NET","name":"NIMIQ","type":"ERC20","address":"0xcfb98637bcae43C13323EAa1731cED2B716962fD","ens_address":"","decimals":18,"website":"https://nimiq.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://nimiq-slackin.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"NEU","name":"NEU Fund","type":"ERC20","address":"0xa823e6722006afe99e91c30ff5295052fe6b8e32","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/neufundorg","forum":"https://bitcointalk.org/index.php?topic=2335433","github":"https://github.com/neufund","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/neufund","slack":"https://neufund.org/slack","telegram":"https://t.me/neufund","twitter":"https://twitter.com/neufundorg","youtube":""}},{"symbol":"NGC","name":"NAGA Coin","type":"ERC20","address":"0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131","ens_address":"","decimals":18,"website":"https://www.nagaico.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@nagaico.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/thenagaico/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/thenagaico","youtube":""}},{"symbol":"NIMFA","name":"Ninfa Money","type":"ERC20","address":"0xe26517A9967299453d3F1B48Aa005E6127e67210","ens_address":"","decimals":18,"website":"https://nimfamoney.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@nimfamoney.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/nimfamoney","forum":"https://bitcointalk.org/index.php?topic=2040087","github":"https://github.com/nimfamoney","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/Nimfamoney","twitter":"https://twitter.com/nimfamoney","youtube":""}},{"symbol":"NMR","name":"NMR","type":"ERC20","address":"0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NOX","name":"NOX","type":"ERC20","address":"0xec46f8207d766012454c408de210bcbc2243e71c","ens_address":"","decimals":18,"website":"https://nitro.live","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"general@nitro.live","url":""},"social":{"blog":"https://medium.com/@NitroToken","chat":"","facebook":"https://www.facebook.com/NitroToken","forum":"https://bitcointalk.org/index.php?topic=2254986.0","github":"https://github.com/nitrotoken/nitro-crowdsale","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/nitrotoken","slack":"","telegram":"https://t.me/NitroToken_NOX","twitter":"https://twitter.com/nitrotoken","youtube":""}},{"symbol":"NPER","name":"NPER","type":"ERC20","address":"0x4ce6b362bc77a24966dda9078f9cef81b3b886a7","ens_address":"","decimals":18,"website":"https://nper.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@nper.io","url":""},"social":{"blog":"https://medium.com/@NPERproject","chat":"","facebook":"","forum":"","github":"https://github.com/NperProject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NUG","name":"Nuggets Token","type":"ERC20","address":"0x245ef47d4d0505ecf3ac463f4d81f41ade8f1fd1","ens_address":"","decimals":18,"website":"https://nuggets.life/","logo":{"src":"https://etherscan.io/token/images/nuggettoken_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"nuggets-token@nuggets.life","url":""},"social":{"blog":"https://medium.nuggets.life/","chat":"","facebook":"https://www.facebook.com/nuggetsPAYandID","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/nuggets/","reddit":"","slack":"","telegram":"https://t.me/nuggetsblockchain","twitter":"https://twitter.com/nuggetsPAYandID","youtube":"https://www.youtube.com/channel/UCYiRuMEN5V2vjCKsvru0qaw"}},{"symbol":"NULS","name":"NULS","type":"ERC20","address":"0xb91318f35bdb262e9423bc7c7c2a3a93dd93c92c","ens_address":"","decimals":18,"website":"https://nuls.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hi@nuls.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/nulscommunity","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/nulsservice","slack":"","telegram":"https://t.me/Nulsio","twitter":"https://twitter.com/nulsservice","youtube":""}},{"symbol":"nUSD","name":"Havven-Backed USD Nomins (nUSD)","type":"ERC20","address":"0x57Ab1E02fEE23774580C119740129eAC7081e9D3","ens_address":"","decimals":18,"website":"https://www.havven.io","logo":{"src":"https://www.havven.io/images/favicon3.ico","width":"32","height":"32","ipfs_hash":""},"support":{"email":"support@havven.io","url":""},"social":{"blog":"https://blog.havven.io","chat":"https://t.me/havven_official1","facebook":"https://www.facebook.com/havven.io/","forum":"https://bitcointalk.org/index.php?topic=2702470","github":"https://github.com/havven/havven","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/havven/","reddit":"https://www.reddit.com/r/havven/","slack":"","telegram":"https://t.me/havven_official1","twitter":"https://twitter.com/havven_io","youtube":"https://www.youtube.com/channel/UCGrPolyOAj3cODJIN5ssVTw"}},{"symbol":"NxC","name":"Nexium","type":"ERC20","address":"0x45e42D659D9f9466cD5DF622506033145a9b89Bc","ens_address":"","decimals":3,"website":"https://beyond-the-void.net","logo":{"src":"https://www.beyond-the-void.net/nxc.png","width":300,"height":300,"ipfs_hash":""},"support":{"email":"contact@beyond-the-void.net","url":""},"social":{"blog":"https://www.beyond-the-void.net/wiki/posts","chat":"https://discordapp.com/invite/C7TqmaQ","facebook":"https://www.facebook.com/beyondvoid","forum":"https://bitcointalk.org/index.php?topic=1630816.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BeyondTheVoidGame","slack":"http://beyond-the-void.slack.com","telegram":"","twitter":"https://twitter.com/BeyondVoidGame","youtube":"https://www.youtube.com/channel/UCD1IdjsnzXFdOarY20gMPQQ"}},{"symbol":"NXX","name":"NXX","type":"ERC20","address":"0x7627de4b93263a6a7570b8dafa64bae812e5c394","ens_address":"","decimals":8,"website":"https://www.nexxuscoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@nexxusuniversity.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NXX OLD","name":"NXX OLD","type":"ERC20","address":"0x5c6183d10A00CD747a6Dbb5F658aD514383e9419","ens_address":"","decimals":8,"website":"https://www.nexxuscoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"bob@nexxuspartners.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"OAK","name":"OAK","type":"ERC20","address":"0x5e888B83B7287EED4fB7DA7b7d0A0D4c735d94b3","ens_address":"","decimals":18,"website":"https://aco.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@aco.ai","url":"https://knowledgebase.aco.ai"},"social":{"blog":"https://medium.com/theacorncollective","chat":"","facebook":"https://www.facebook.com/TheAcornCollectiveICO","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/acorncollective/","reddit":"https://www.reddit.com/r/TheAcornCollective/","slack":"","telegram":"https://t.me/joinchat/HI_eCBG0fCRCl1ja-d5JDg","twitter":"https://twitter.com/AcoCollective","youtube":"https://www.youtube.com/channel/UCfwHzwNR66HYtgruKKKxEvA"}},{"symbol":"OAX","name":"OAX","type":"ERC20","address":"0x701C244b988a513c945973dEFA05de933b23Fe1D","ens_address":"","decimals":18,"website":"https://www.openanx.org/en","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/OpenANX","slack":"https://openanx.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"OCC","name":"Original Crypto Coin","type":"ERC20","address":"0x0235fe624e044a05eed7a43e16e3083bc8a4287a","ens_address":"","decimals":18,"website":"https://www.OriginalCryptoCoin.com/","logo":{"src":"https://originalcryptocoin.com/wp-content/uploads/2018/01/cc-black-500.png","width":"500","height":"500","ipfs_hash":""},"support":{"email":"support@originalcryptocoin.com","url":""},"social":{"blog":"https://originalcryptocoin.com/blog/","chat":"","facebook":"https://www.facebook.com/OrigCryptoCoin/","forum":"","github":"https://github.com/OriginalCrypto/","gitter":"","instagram":"https://www.instagram.com/origcryptocoin/","linkedin":"https://www.linkedin.com/company/original-crypto-coin","reddit":"www.reddit.com/r/originalcryptocoin/","slack":"","telegram":"https://t.me/OrigCryptoCoin","twitter":"https://twitter.com/origcryptocoin","youtube":"https://www.youtube.com/channel/UCK_Iuc8ukPYlWCqxelxg7HQ/"}},{"symbol":"ODE","name":"ODEM Token","type":"ERC20","address":"0xbf52f2ab39e26e0951d2a02b49b7702abe30406a","ens_address":"","decimals":18,"website":"https://odem.io/","logo":{"src":"https://odem.io/wp-content/uploads/2017/09/odem-logo-sq-v0.2.png","width":"1000","height":"1000","ipfs_hash":""},"support":{"email":"support@odem.io","url":""},"social":{"blog":"https://medium.com/odem","chat":"","facebook":"https://www.facebook.com/odemio/","forum":"","github":"https://github.com/odemio","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/odem-io/","reddit":"https://www.reddit.com/r/ODEM/","slack":"","telegram":"https://t.me/odem_io","twitter":"https://twitter.com/ODEM_IO","youtube":""}},{"symbol":"OHNI","name":"Ohni","type":"ERC20","address":"0x6f539a9456a5bcb6334a1a41207c3788f5825207","ens_address":"","decimals":18,"website":"http://ohni.us","logo":{"src":"https://ohni.us/wp-content/uploads/2018/05/Main_Logo-e1526670376669.png","width":"256","height":"256","ipfs_hash":""},"support":{"email":"james@ohni.us","url":""},"social":{"blog":"ohni.us/blog","chat":"ohni.us/discord","facebook":"","forum":"","github":"ohni_us","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"OhniGroup","twitter":"OhniOfficial","youtube":""}},{"symbol":"OLD_MKR","name":"MakerDAO","type":"ERC20","address":"0xc66ea802717bfb9833400264dd12c2bceaa34a6d","ens_address":"","decimals":18,"website":"https://makerdao.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@makerdao.com","url":"https://chat.makerdao.com"},"social":{"blog":"","chat":"https://chat.makerdao.com","facebook":"","forum":"","github":"https://github.com/makerdao","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/makerdao","slack":"","telegram":"","twitter":"https://twitter.com/MakerDAO","youtube":""}},{"symbol":"OLT","name":"OneLedger Token","type":"ERC20","address":"0x64A60493D888728Cf42616e034a0dfEAe38EFCF0","ens_address":"","decimals":18,"website":"https://oneledger.io","logo":{"src":"https://etherscan.io/token/images/oneledger_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"hello@oneledger.io","url":"https://t.me/oneledger"},"social":{"blog":"","chat":"https://medium.com/@OneLedger","facebook":"","forum":"","github":"https://github.com/Oneledger","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/oneledger-innovative-tech-inc/","reddit":"https://www.reddit.com/r/OneLedger/","slack":"","telegram":"https://t.me/oneledger","twitter":"https://twitter.com/OneLedgerTech","youtube":"https://www.youtube.com/channel/UCqazyMCaD7lH-IBZrb33WPg"}},{"symbol":"OMG","name":"OMG","type":"ERC20","address":"0xd26114cd6EE289AccF82350c8d8487fedB8A0C07","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ONEK","name":"One K Token","type":"ERC20","address":"0xb23be73573bc7e03db6e5dfc62405368716d28a8","ens_address":"","decimals":18,"website":"http://onek.one","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"onektoken@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"onG","name":"onG","type":"ERC20","address":"0xd341d1680eeee3255b8c4c75bcce7eb57f144dae","ens_address":"","decimals":18,"website":"https://ongcoin.io","logo":{"src":"https://etherscan.io/token/images/ongcoin_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"success@ong.social","url":""},"social":{"blog":"https://medium.com/@onG.Social","chat":"","facebook":"https://www.facebook.com/OfficialonGsocial","forum":"https://ong.social","github":"https://github.com/onGsocial","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://ongsocial.slack.com","telegram":"https://t.me/onG_social","twitter":"https://twitter.com/Ong_Social","youtube":""}},{"symbol":"OPEN","name":"OPEN","type":"ERC20","address":"0x69c4BB240cF05D51eeab6985Bab35527d04a8C64","ens_address":"","decimals":8,"website":"openfuture.io","logo":{"src":"https://www.openfuture.io/assets/fancyLogo/Open_Fancy-Logo_120x120.png","width":"120px","height":"120px","ipfs_hash":""},"support":{"email":"support@openfuture.io","url":"https://open.crisp.help/en-us/"},"social":{"blog":"https://medium.com/@theOPENPlatform","chat":"https://open.crisp.help/en-us/","facebook":"https://www.facebook.com/OpenPlatformICO","forum":"","github":"https://github.com/OpenMoneyDigital","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/theopenplatform/","reddit":"https://www.reddit.com/r/OPENPlatform/","slack":"https://openmoneyico.slack.com","telegram":"https://t.me/joinchat/FDNbh0M079p5fnfOHFEJaw","twitter":"https://twitter.com/OpenPlatformICO","youtube":""}},{"symbol":"OPT","name":"Opus Foundation","type":"ERC20","address":"0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0","ens_address":"","decimals":18,"website":"https://opus-foundation.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@opus-foundation.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/opusfoundation","slack":"https://slack.opus-foundation.org","telegram":"","twitter":"","youtube":""}},{"symbol":"ORBS","name":"Orbs","type":"ERC20","address":"0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA","ens_address":"","decimals":18,"website":"https://orbs.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@orbs.com","url":""},"social":{"blog":"https://medium.com/orbs-network","chat":"http://t.me/orbs_network","facebook":"https://www.facebook.com/OrbsNetwork/","forum":"","github":"https://github.com/orbs-network","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/orbs/","reddit":"https://www.reddit.com/r/ORBS_Network/","slack":"","telegram":"http://t.me/orbs_network","twitter":"https://twitter.com/orbs_network","youtube":""}},{"symbol":"ORCA","name":"ORCA Token","type":"ERC20","address":"0x6F59e0461Ae5E2799F1fB3847f05a63B16d0DbF8","ens_address":"","decimals":18,"website":"https://www.orcaalliance.eu","logo":{"src":"https://drive.google.com/open?id=1lCrBZQ7CNkVcUwPPet4j4WU7p1TUrY_1","width":"120px","height":"120px","ipfs_hash":""},"support":{"email":"hello@orcaalliance.eu","url":""},"social":{"blog":"https://medium.com/@ORCA_Alliance","chat":"https://t.me/ORCAalliance","facebook":"https://www.facebook.com/ORCAAlliance/","forum":"","github":"https://github.com/orcaalliance","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/orca_foundation_io","reddit":"https://www.reddit.com/r/ORCA_Alliance/","slack":"","telegram":"https://t.me/ORCAalliance","twitter":"https://twitter.com/ORCA_Alliance","youtube":"https://www.youtube.com/channel/UCSGGZqtOFOD1dpj3rMJrCYw"}},{"symbol":"OST","name":"Simple Token 'OST'","type":"ERC20","address":"0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA","ens_address":"","decimals":18,"website":"https://simpletoken.org","logo":{"src":"https://etherscan.io/token/images/ost_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@ost.com","url":"https://help.ost.com"},"social":{"blog":"https://medium.com/ostdotcom","chat":"","facebook":"https://www.facebook.com/ost","forum":"","github":"https://github.com/OpenSTFoundation","gitter":"https://gitter.im/OpenSTFoundation/SimpleToken","instagram":"https://www.instagram.com/ostdotcom/","linkedin":"https://www.linkedin.com/company/ostdotcom/","reddit":"https://www.reddit.com/r/OSTdotcom","slack":"","telegram":"https://www.t.me/ostdotcom","twitter":"https://twitter.com/OSTdotcom","youtube":"https://www.youtube.com/ostdotcom"}},{"symbol":"OWN","name":"OWNDATA","type":"ERC20","address":"0x170b275ced089fffaebfe927f445a350ed9160dc","ens_address":"","decimals":8,"website":"https://owndata.network","logo":{"src":"https://owndata.network/assets/front/images/favicon/android-icon-28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@owndata.network","url":""},"social":{"blog":"https://steemit.com/@owndata","chat":"","facebook":"https://www.facebook.com/owndata-137559923583121/","forum":"https://bitcointalk.org/index.php?topic=2996349.0","github":"https://github.com/owndata","gitter":"","instagram":"https://www.instagram.com/owndata_coin/","linkedin":"https://www.linkedin.com/company/owndata-network/","reddit":"https://www.reddit.com/user/owndata_coin/","slack":"","telegram":"https://t.me/joinchat/Hr2kt06aQWrteu_rnRu-Kgn","twitter":"https://twitter.com/owndata_coin","youtube":"https://www.youtube.com/channel/UCWv1jXDDuTDE9tiQEJkn8UA?view_as=subscriber"}},{"symbol":"Ox Fina","name":"Ox Fina","type":"ERC20","address":"0x65a15014964f2102ff58647e16a16a6b9e14bcf6","ens_address":"","decimals":3,"website":"https://oxfina.com","logo":{"src":"https://etherscan.io/token/images/oxfina_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@oxfina.com","url":""},"social":{"blog":"https://oxfina.com/blog","chat":"","facebook":"https://www.facebook.com/oxfina","forum":"https://bitcointalk.org/index.php?topic=1984985","github":"https://github.com/oxfina","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/u/oxfina","slack":"https://oxfina.slack.com","telegram":"https://t.me/joinchat/AAAAAA6MBEr4wbqEcsuyXg","twitter":"https://twitter.com/oxfina","youtube":""}},{"symbol":"PAL","name":"PolicyPal Network","type":"ERC20","address":"0xfeDAE5642668f8636A11987Ff386bfd215F942EE","ens_address":"","decimals":18,"website":"https://www.policypal.network","logo":{"src":"https://etherscan.io/token/images/policypal_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@policypal.com","url":""},"social":{"blog":"https://medium.com/@policypalnet","chat":"","facebook":"","forum":"","github":"https://github.com/policypalnet","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18528158","reddit":"","slack":"","telegram":"https://t.me/PolicyPalNetwork","twitter":"https://twitter.com/PolicyPalNET","youtube":""}},{"symbol":"PARETO","name":"PARETO","type":"ERC20","address":"0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc","ens_address":"","decimals":18,"website":"https://pareto.network","logo":{"src":"https://pareto.network/images/square500x500.png","width":500,"height":500,"ipfs_hash":""},"support":{"email":"hello@pareto.network","url":""},"social":{"blog":"https://blog.pareto.network","chat":"https://t.me/paretonetworkdiscussion","facebook":"https://www.facebook.com/paretonetworkofficial","forum":"https://bitcointalk.org/index.php?topic=2367454.0","github":"https://github.com/ParetoNetwork","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/11252108","reddit":"https://www.reddit.com/r/ParetoNetwork","slack":"","telegram":"https://t.me/paretonetworkdiscussion","twitter":"https://twitter.com/paretonetwork","youtube":"https://www.youtube.com/channel/UCWbAwsAEmNksqhhDlgBaSQA"}},{"symbol":"PASS","name":"PASS Token","type":"ERC20","address":"0x77761e63c05aee6648fdaeaa9b94248351af9bcd","ens_address":"","decimals":18,"website":"http://www.wisepass.co","logo":{"src":"http://www.wisepass.co/wordpress/home/images/logo.png","width":40,"height":40,"ipfs_hash":""},"support":{"email":"ico@wisepass.co","url":""},"social":{"blog":"","chat":"https://t.me/wisepass","facebook":"https://fb.com/wisepass","forum":"https://bitcointalk.org/index.php?topic=4458873.0","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/solidity-trade/","reddit":"https://www.reddit.com/r/WisePassICO/","slack":"","telegram":"https://t.me/wisepass","twitter":"https://twitter.com/wisepass_co","youtube":"https://www.youtube.com/channel/UCKZ4LdzdKo1aHg0ruK43Aww"}},{"symbol":"PATENTS","name":"PATENTS","type":"ERC20","address":"0x694404595e3075a942397f466aacd462ff1a7bd0","ens_address":"","decimals":18,"website":"https://www.smartillions.ch","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@smartillions.ch","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PATH","name":"PATH","type":"ERC20","address":"0xF813F3902bBc00A6DCe378634d3B79D84F9803d7","ens_address":"","decimals":18,"website":"https://path.network","logo":{"src":"https://path.network/images/path-128x128.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"contact@path.network","url":""},"social":{"blog":"","chat":"https://t.me/pathnetwork","facebook":"https://www.facebook.com/pathtoken","forum":"https://plus.google.com/110646804829818635758","github":"https://github.com/path-network-token","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/pathnetwork/","reddit":"https://www.reddit.com/r/pathtoken","slack":"","telegram":"https://t.me/pathnetwork","twitter":"https://twitter.com/pathtoken","youtube":""}},{"symbol":"PAY","name":"TenX","type":"ERC20","address":"0xB97048628DB6B661D4C2aA833e95Dbe1A905B280","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PBL","name":"PBL","type":"ERC20","address":"0x55648de19836338549130b1af587f16bea46f66b","ens_address":"","decimals":18,"website":"https://publica.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@publica.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2079885","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/publicaio","slack":"","telegram":"https://t.me/publicaofficial","twitter":"https://twitter.com/PublicaIO","youtube":""}},{"symbol":"PBT","name":"Primalbase Token (PBT)","type":"ERC20","address":"0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0","ens_address":"","decimals":4,"website":"http://primalbase.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@primalbase.com","url":""},"social":{"blog":"https://medium.com/primalbase","chat":"","facebook":"https://www.facebook.com/primalbasehq","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/primalbase/","linkedin":"","reddit":"","slack":"https://projectprimal.slack.com/","telegram":"https://t.me/joinchat/AAAAAELBNMavaVUQvMRffQ","twitter":"https://twitter.com/primalbasehq","youtube":"https://www.youtube.com/channel/UCuWyGTEoCOSZrw8KWMKeucQ"}},{"symbol":"PCH","name":"PITCH","type":"ERC20","address":"0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e","ens_address":"","decimals":18,"website":"https://www.pitchapply.com","logo":{"src":"https://image.ibb.co/e9kStm/Pitch_Apply_Token_logo_500x500.png","width":"500","height":"500","ipfs_hash":""},"support":{"email":"hello@pitchapply.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/pitchapply","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/pitchapplycommunity","twitter":"https://twitter.com/PitchApply","youtube":""}},{"symbol":"PCL","name":"PCL","type":"ERC20","address":"0x3618516F45CD3c913F81F9987AF41077932Bc40d","ens_address":"","decimals":8,"website":"https://peculium.io","logo":{"src":"https://peculium.io/images/icon/logo.png","width":310,"height":310,"ipfs_hash":""},"support":{"email":"support@peculium.io","url":"www.peculium.io"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/PeculiumICO","forum":"https://bitcointalk.org/index.php?topic=2249486","github":"https://github.com/PeculiumPCL/Peculium","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/25046861","reddit":"https://www.reddit.com/r/Peculium","slack":"https://join.slack.com/t/peculium/shared_invite/enQtMjc2Nzc5NjA0Nzg4LTJiYmYyMGQ0Y2VlYzUyOTcwOTIwYmRkNzczODQyMWMyZWE4ZGZkMGM3NGU5OTRkM2YwNWQ5MmFlNjkzNmI4M2Q","telegram":"https://t.me/ico_peculium","twitter":"https://twitter.com/_Peculium","youtube":"https://www.youtube.com/watch?v=kg2vYFJ_R50"}},{"symbol":"PCLOLD","name":"PCLOLD","type":"ERC20","address":"0x53148Bb4551707edF51a1e8d7A93698d18931225","ens_address":"","decimals":8,"website":"https://peculium.io","logo":{"src":"https://peculium.io/images/icon/logo.png","width":310,"height":310,"ipfs_hash":""},"support":{"email":"support@peculium.io","url":"www.peculium.io"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/PeculiumICO","forum":"https://bitcointalk.org/index.php?topic=2249486","github":"https://github.com/PeculiumPCL/Peculium","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/25046861","reddit":"https://www.reddit.com/r/Peculium","slack":"https://join.slack.com/t/peculium/shared_invite/enQtMjc2Nzc5NjA0Nzg4LTJiYmYyMGQ0Y2VlYzUyOTcwOTIwYmRkNzczODQyMWMyZWE4ZGZkMGM3NGU5OTRkM2YwNWQ5MmFlNjkzNmI4M2Q","telegram":"https://t.me/ico_peculium","twitter":"https://twitter.com/_Peculium","youtube":"https://www.youtube.com/watch?v=kg2vYFJ_R50"}},{"symbol":"PEG","name":"PEG Network Token","type":"ERC20","address":"0x8Ae56a6850a7cbeaC3c3Ab2cB311e7620167eAC8","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PET","name":"PETHEREUM","type":"ERC20","address":"0x5884969Ec0480556E11d119980136a4C17eDDEd1","ens_address":"","decimals":18,"website":"https://pethereum.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@pethereum.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Pethereum-140501866654240/","forum":"","github":"https://github.com/Pethereum","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/Pethereum/","slack":"","telegram":"","twitter":"https://twitter.com/Pethereum_org","youtube":"https://www.youtube.com/channel/UCOgp9A2Xv-Ilu9PvCFMLB1g"}},{"symbol":"PETRO","name":"PETRO","type":"ERC20","address":"0xec18f898b4076a3e18f1089d33376cc380bde61d","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/getpetro","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PEXT","name":"PEX-Token","type":"ERC20","address":"0x55c2A0C171D920843560594dE3d6EEcC09eFc098","ens_address":"","decimals":4,"website":"https://prime-ex.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"erc20@prime-ex.com","url":""},"social":{"blog":"https://prime-ex.com/pex-blog","chat":"","facebook":"https://www.facebook.com/PEXTokens","forum":"https://bitcointalk.org/index.php?topic=2150472.msg21513985#msg21513985","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/25037545","reddit":"","slack":"","telegram":"https://t.me/PEXTokens","twitter":"https://twitter.com/PEXTokens","youtube":"https://www.youtube.com/channel/UCQ_4BHl1qE1dz_vijSt_tqw?view_as=subscriber"}},{"symbol":"PIPL","name":"PIPL Coin","type":"ERC20","address":"0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4","ens_address":"","decimals":8,"website":"https://piplcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@piplcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/PiplCoin","forum":"https://bitcointalk.org/index.php?topic=2018431.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/piplcoin?lang=en","youtube":""}},{"symbol":"PIX","name":"PIX","type":"ERC20","address":"0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15","ens_address":"","decimals":0,"website":"www.lampix.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Lampix.co","forum":"https://bitcointalk.org/index.php?topic=2044884.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Lampix","slack":"https://lampix-invite.herokuapp.com","telegram":"","twitter":"https://twitter.com/lampix_co","youtube":""}},{"symbol":"PLASMA","name":"PLASMA","type":"ERC20","address":"0x59416A25628A76b4730eC51486114c32E0B582A1","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"plasma.token@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PLAY","name":"HeroCoin","type":"ERC20","address":"0xE477292f1B3268687A29376116B0ED27A9c76170","ens_address":"","decimals":18,"website":"www.herocoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@herocoin.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/herosphere.gg","forum":"https://bitcointalk.org/index.php?topic=2116864.msg21169697#msg21169697","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/HEROcoin","slack":"https://join.slack.com/t/herocoin/shared_invite/enQtMjQyNTQ1NDU3ODYxLTVmMzlmNTg5ZTUyODM4NzFjZGVjNGFlZjYzOTM0MzI1YWIwZWMxN2UzMWMxYWQ2MDE4NDQ3OTE4Y2I1NmMyYjU","telegram":"https://t.me/joinchat/FsEwOwtrCZMWwHokEj70Gw","twitter":"https://twitter.com/HEROcoinio","youtube":""}},{"symbol":"PLBT","name":"Polybius","type":"ERC20","address":"0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02","ens_address":"","decimals":6,"website":"https://polybius.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@polybius.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/projectpolybius","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/polybius_eng","twitter":"https://twitter.com/PolybiusBank","youtube":""}},{"symbol":"PLR","name":"Pillar Project","type":"ERC20","address":"0xe3818504c1B32bF1557b16C238B2E01Fd3149C17","ens_address":"","decimals":18,"website":"https://www.pillarproject.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/twentythirty/PillarToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://pillarproject.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"PLU","name":"Plutus","type":"ERC20","address":"0xD8912C10681D8B21Fd3742244f44658dBA12264E","ens_address":"","decimals":18,"website":"https://plutus.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=1870606.760","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"POE","name":"Po.et Tokens","type":"ERC20","address":"0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195","ens_address":"","decimals":8,"website":"https://po.et","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@po.et","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"POIN","name":"Potatoin","type":"ERC20","address":"0x43f6a1be992dee408721748490772b15143ce0a7","ens_address":"","decimals":0,"website":"https://potatoin.foundation","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"peterke@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"POLY","name":"Polymath Network","type":"ERC20","address":"0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC","ens_address":"","decimals":18,"website":"https://polymath.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@polymath.zendesk.com","url":""},"social":{"blog":"https://blog.polymath.network","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"http://t.me/polymathnetwork","twitter":"https://twitter.com/polymathnetwork","youtube":""}},{"symbol":"POOL","name":"Stake Pool","type":"ERC20","address":"0x779B7b713C86e3E6774f5040D9cCC2D43ad375F8","ens_address":"","decimals":8,"website":"http://stakepool.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"stakepool@stakepool.co"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"POS","name":"PoSToken","type":"ERC20","address":"0xee609fe292128cad03b786dbb9bc2634ccdbe7fc","ens_address":"","decimals":18,"website":"https://postoken.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@postoken.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2110712.0","github":"https://github.com/PoSToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://postoken.slack.com","telegram":"","twitter":"https://twitter.com/PoSToken","youtube":""}},{"symbol":"POWR","name":"PowerLedger","type":"ERC20","address":"0x595832f8fc6bf59c85c527fec3740a1b7a361269","ens_address":"","decimals":6,"website":"https://powerledger.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mc@powerledger.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PPP","name":"PayPie","type":"ERC20","address":"0xc42209accc14029c1012fb5680d95fbd6036e2a0","ens_address":"","decimals":18,"website":"https://www.paypie.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@paypie.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/PayPieTokens","twitter":"","youtube":""}},{"symbol":"PPT","name":"Populous","type":"ERC20","address":"0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a","ens_address":"","decimals":8,"website":"https://populous.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@populous.co","url":""},"social":{"blog":"https://medium.com/@BitPopulous","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PRE","name":"Presearch","type":"ERC20","address":"0x88a3e4f35d64aad41a6d4030ac9afe4356cb84fa","ens_address":"","decimals":18,"website":"https://presearch.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@presearch.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/presearch","twitter":"","youtube":""}},{"symbol":"PRG","name":"PRG","type":"ERC20","address":"0x7728dfef5abd468669eb7f9b48a7f70a501ed29d","ens_address":"","decimals":6,"website":"https://paragoncoin.com","logo":{"src":"https://etherscan.io/token/images/paragon2.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@paragoncoin.com","url":""},"social":{"blog":"https://medium.com/@paragoncoin","chat":"","facebook":"https://www.facebook.com/paragoncoin","forum":"https://bitcointalk.org/index.php?topic=2092712","github":"https://github.com/paragon-coin/token","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/Bvx800IXuCoe-QGoLXoVlQ","twitter":"https://twitter.com/ParagonCoin","youtube":""}},{"symbol":"PRL","name":"Oyster Pearl","type":"ERC20","address":"0x1844b21593262668b7248d0f57a220caaba46ab9","ens_address":"","decimals":18,"website":"https://oyster.ws","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@oyster.ws","url":""},"social":{"blog":"https://medium.com/oysterprotocol","chat":"","facebook":"","forum":"","github":"https://github.com/oysterprotocol","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Oyster","slack":"","telegram":"https://t.me/oysterprotocol","twitter":"https://twitter.com/OysterProtocol","youtube":""}},{"symbol":"PRO","name":"Propy","type":"ERC20","address":"0x226bb599a12C826476e3A771454697EA52E9E220","ens_address":"","decimals":8,"website":"https://propy.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@propy.com","url":""},"social":{"blog":"https://medium.com/@propy","chat":"","facebook":"https://www.facebook.com/propyinc","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/propy-inc-","reddit":"","slack":"https://propy.slack.com","telegram":"https://t.me/propy","twitter":"https://twitter.com/propyinc","youtube":""}},{"symbol":"PRON","name":"PronCoin","type":"ERC20","address":"0xA3149E0fA0061A9007fAf307074cdCd290f0e2Fd","ens_address":"","decimals":8,"website":"https://proncoin.io","logo":{"src":"https://pbs.twimg.com/profile_images/943518409899302912/_qB2ilhB_400x400.jpg","width":"400","height":"400","ipfs_hash":""},"support":{"email":"support@proncoin.io","url":"https://proncoin.io"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/PronCoin-914325038734407","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/PronCoin","youtube":""}},{"symbol":"PRPS","name":"Purpose","type":"ERC20","address":"0xd94F2778e2B3913C53637Ae60647598bE588c570","ens_address":"","decimals":18,"website":"https://prps.io","logo":{"src":"https://imgur.com/hm9naIz","width":"385","height":"385","ipfs_hash":""},"support":{"email":"support@gamingforgood.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/nionis/purpose","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/PRPS","slack":"","telegram":"","twitter":"https://twitter.com/prps_io","youtube":""}},{"symbol":"PRS","name":"Persians","type":"ERC20","address":"0x163733bcc28dbf26B41a8CfA83e369b5B3af741b","ens_address":"","decimals":18,"website":"http://persians.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"king.serse@gmx.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/Neurone/persians","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://battlesmartcontract.slack.com","telegram":"","twitter":"https://twitter.com/persian_token","youtube":""}},{"symbol":"PRSP","name":"PRSP","type":"ERC20","address":"0x0c04d4f331da8df75f9e2e271e3f3f1494c66c36","ens_address":"","decimals":9,"website":"http://www.prsp.me","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"prspme@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PT","name":"PornToken","type":"ERC20","address":"0x66497a283e0a007ba3974e837784c6ae323447de","ens_address":"","decimals":18,"website":"https://www.porntoken.io","logo":{"src":"https://www.porntoken.io/porntoken.256.png","width":256,"height":256,"ipfs_hash":""},"support":{"email":"support@porntoken.io","url":"https://www.porntoken.io/contact"},"social":{"blog":"https://www.porntoken.io/blog","chat":"","facebook":"","forum":"","github":"https://github.com/porntoken/smart_contract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/porntoken","slack":"https://porntoken.slack.com","telegram":"","twitter":"http://www.twitter.com/porntoken","youtube":"https://www.youtube.com/channel/UCwYD8VSclMxBOAksP5MZJow"}},{"symbol":"PTC","name":"ParrotCoin","type":"ERC20","address":"0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666","ens_address":"","decimals":18,"website":"http://parrotcoin.club","logo":{"src":"http://parrotcoin.club/favicon.ico","width":"","height":"","ipfs_hash":""},"support":{"email":"info@parrotcoin.club","url":"http://parrotcoin.club/contact.html"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/groups/810188769172490/","forum":"","github":"https://github.com/ParrotCoin","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/ParrotCoin","youtube":"https://www.youtube.com/channel/UC_opgFSvRVsumZdCH7p_Rrw"}},{"symbol":"PTOY","name":"PTOY","type":"ERC20","address":"0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PTWO","name":"PornTokenV2","type":"ERC20","address":"0x5512e1d6a7be424b4323126b4f9e86d023f95764","ens_address":"","decimals":18,"website":"https://www.porntoken.io","logo":{"src":"https://www.porntoken.io/PorntokenV2.256.png","width":256,"height":256,"ipfs_hash":""},"support":{"email":"support@porntoken.io","url":"https://www.porntoken.io/contact"},"social":{"blog":"https://www.porntoken.io/blog","chat":"","facebook":"","forum":"","github":"https://github.com/porntoken/smart_contract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/porntoken","slack":"https://porntoken.slack.com","telegram":"","twitter":"http://www.twitter.com/porntoken","youtube":"https://www.youtube.com/channel/UCwYD8VSclMxBOAksP5MZJow"}},{"symbol":"PUC","name":"Pour Coin","type":"ERC20","address":"0xef6b4ce8c9bc83744fbcde2657b32ec18790458a","ens_address":"","decimals":0,"website":"http://price-s.info","logo":{"src":"http://price-s.info/wp-content/uploads/2018/01/p.png","width":32,"height":32,"ipfs_hash":""},"support":{"email":"puc@price-s.info","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2657718","github":"https://github.com/pourcoin/pourcoin-PUC/projects","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/tb/7mll2m","slack":"","telegram":"","twitter":"https://twitter.com/pourcoin","youtube":""}},{"symbol":"PXT","name":"Populous XBRL Token (PXT)","type":"ERC20","address":"0xc14830e53aa344e8c14603a91229a0b925b0b262","ens_address":"","decimals":8,"website":"https://populous.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@populous.co","url":""},"social":{"blog":"https://medium.com/@BitPopulous","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://bitpopulous.slack.com","telegram":"","twitter":"https://twitter.com/BitPopulous","youtube":""}},{"symbol":"QASH","name":"QASH","type":"ERC20","address":"0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6","ens_address":"","decimals":6,"website":"https://liquid.plus","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://liquid-qash.zendesk.com"},"social":{"blog":"https://steemit.com/@quoineliquid","chat":"","facebook":"https://www.facebook.com/QUOINE.SG","forum":"https://bitcointalk.org/index.php?topic=2256844","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/QASH","slack":"","telegram":"https://t.me/QUOINE","twitter":"https://twitter.com/quoine_SG","youtube":"https://www.youtube.com/channel/UCOR2GJnFoOgTazC5v6mBTSA"}},{"symbol":"QAU","name":"QAU","type":"ERC20","address":"0x671AbBe5CE652491985342e85428EB1b07bC6c64","ens_address":"","decimals":8,"website":"http://www.quantumproject.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@quantumproject.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"QBX","name":"qiibeeToken","type":"ERC20","address":"0x2467aa6b5a2351416fd4c3def8462d841feeecec","ens_address":"","decimals":18,"website":"https://www.qiibee.com","logo":{"src":"https://avatars0.githubusercontent.com/u/31820267?s=400&u=f671cf8b24876d0dddf9b16930d31cc2114103eb&v=4","width":"378","height":"378","ipfs_hash":""},"support":{"email":"support@qiibee.com","url":"https://qiibee.com"},"social":{"blog":"https://blog.qiibee.com","chat":"","facebook":"https://www.facebook.com/qiibee","forum":"","github":"https://github.com/qiibee","gitter":"","instagram":"https://www.instagram.com/qiibee","linkedin":"https://www.linkedin.com/company/qiibee-ag","reddit":"","slack":"","telegram":"https://t.me/qiibee","twitter":"https://twitter.com/qiibee","youtube":""}},{"symbol":"QNT","name":"Quant","type":"ERC20","address":"0x4a220E6096B25EADb88358cb44068A3248254675","ens_address":"","decimals":18,"website":"https://www.quant.network/","logo":{"src":"https://developer.quant.network/quant-q-token_28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@quant.network","url":"https://support.quant.network"},"social":{"blog":"https://medium.com/@quant_network","chat":"","facebook":"https://www.facebook.com/quantnetwork","forum":"","github":"https://github.com/quantnetwork","gitter":"","instagram":"https://www.instagram.com/quantnetwork","linkedin":"https://www.linkedin.com/company/quantnetwork/","reddit":"https://www.reddit.com/r/QuantNetwork/","slack":"","telegram":"http://telegram.quant.network","twitter":"https://twitter.com/quant_network","youtube":"https://www.youtube.com/channel/UCsz53-6ZYJCI0TtE4M_kdkA"}},{"symbol":"QRG","name":"QRG","type":"ERC20","address":"0xFFAA5ffc455d9131f8A2713A741fD1960330508B","ens_address":"","decimals":18,"website":"http://qrg-stamps.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"QRL","name":"QRL","type":"ERC20","address":"0x697beac28B09E122C4332D163985e8a73121b97F","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"QSP","name":"Quantstamp Token","type":"ERC20","address":"0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d","ens_address":"","decimals":18,"website":"https://quantstamp.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/quantstamp","chat":"","facebook":"https://www.facebook.com/quantstamp/","forum":"","github":"https://github.com/quantstamp","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Quantstamp/","slack":"","telegram":"https://t.me/quantstamp","twitter":"https://twitter.com/Quantstamp","youtube":""}},{"symbol":"QTQ","name":"TiiQu's Q Token","type":"ERC20","address":"0x2C3C1F05187dBa7A5f2Dd47Dca57281C4d4F183F","ens_address":"","decimals":18,"website":"http://tiiqu.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"samuel.hr@tiiqu.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/TiiQu-Network/TiiQu-Network","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/TiiQu","slack":"https://tiiqu.slack.com","telegram":"","twitter":"https://twitter.com/tiiqu_network","youtube":""}},{"symbol":"QTUM","name":"Qtum","type":"ERC20","address":"0x9a642d6b3368ddc662CA244bAdf32cDA716005BC","ens_address":"","decimals":18,"website":"https://qtum.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"foundation@qtum.org","url":""},"social":{"blog":"https://qtum.org/en/blog","chat":"","facebook":"https://www.facebook.com/QtumOfficial/","forum":"https://forum.qtum.org/","github":"https://github.com/qtumproject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://qtumslack.herokuapp.com/","telegram":"","twitter":"https://twitter.com/QtumOfficial","youtube":""}},{"symbol":"RAO","name":"RadioYo","type":"ERC20","address":"0x45edb535942a8c84d9f4b5d37e1b25f91ea4804c","ens_address":"","decimals":18,"website":"https://rao.radioyo.fm","logo":{"src":"https://raw.githubusercontent.com/gharshr/ICO_smartcontract/master/RAO_Token.png","width":"","height":"","ipfs_hash":""},"support":{"email":"support@radioyo.fm"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/radioyofm","forum":"","github":"https://github.com/RadioYoFM/ICO_smartcontract/","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/radioyo","reddit":"https://www.reddit.com/r/RadioYo/","slack":"https://radioyo.slack.com","telegram":"https://t.me/joinchat/AAAAAEMBG4bGWaQGuDkstg","twitter":"https://twitter.com/radioyofm","youtube":""}},{"symbol":"RBLX","name":"Rublix","type":"ERC20","address":"0xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e","ens_address":"","decimals":18,"website":"https://rublix.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@rublix.io","url":""},"social":{"blog":"https://blog.rublix.io/","chat":"","facebook":"https://www.facebook.com/Rublixdev/","forum":"","github":"https://github.com/rublixdev","gitter":"","instagram":"https://www.instagram.com/rublixdev/","linkedin":"","reddit":"https://www.reddit.com/r/Rublix/","slack":"","telegram":"https://t.me/rublixdev","twitter":"https://twitter.com/RublixDev","youtube":""}},{"symbol":"RCN","name":"Ripio Credit Network","type":"ERC20","address":"0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"RDN","name":"Radien Network","type":"ERC20","address":"0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6","ens_address":"","decimals":18,"website":"https://raiden.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@raiden.network","url":""},"social":{"blog":"","chat":"https://riot.im/app/#/room/#raiden-network:matrix.org","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/raidennetwork","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"REA","name":"Realisto","type":"ERC20","address":"0x767bA2915EC344015a7938E3eEDfeC2785195D05","ens_address":"","decimals":18,"website":"https://www.realisto.io","logo":{"src":"https://realisto.io/files/images/rea-token-logo-128x136.png","width":"128","height":"136","ipfs_hash":""},"support":{"email":"contact@realisto.io","url":""},"social":{"blog":"https://medium.com/@realisto","chat":"","facebook":"https://www.facebook.com/REALISTOICO","forum":"https://bitcointalk.org/index.php?topic=2353634.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/realistochat","twitter":"https://twitter.com/REALISTO_TOKEN","youtube":""}},{"symbol":"REBL","name":"Rebellious","type":"ERC20","address":"0x5f53f7a8075614b699baad0bc2c899f4bad8fbbf","ens_address":"","decimals":18,"website":"https://www.rebellious.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"https://discord.gg/q4yBxct","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2357352.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/RebelliousCoin","twitter":"https://twitter.com/RebelliousCoin","youtube":""}},{"symbol":"RED","name":"Red Community Token","type":"ERC20","address":"0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f","ens_address":"","decimals":18,"website":"https://ico.red-lang.org","logo":{"src":"https://static.red-lang.org/pr/logo/red-token-logo_sq_128x128.png","width":128,"height":128,"ipfs_hash":""},"support":{"email":"token@red-lang.org","url":"https://t.me/redofficial"},"social":{"blog":"https://www.red-lang.org","chat":"","facebook":"https://www.facebook.com/groups/redlanguage/about","forum":"","github":"https://github.com/red","gitter":"https://gitter.im/red/red/welcome","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/redlang","slack":"","telegram":"https://t.me/redofficial","twitter":"https://twitter.com/red_lang","youtube":""}},{"symbol":"REDC","name":"RedCab","type":"ERC20","address":"0xB563300A3BAc79FC09B93b6F84CE0d4465A2AC27","ens_address":"","decimals":18,"website":"https://redcab.io","logo":{"src":"https://i.imgur.com/EgxuJmy.png","width":128,"height":128,"ipfs_hash":""},"support":{"email":"info@redcab.io","url":"https://t.me/redcab_ico"},"social":{"blog":"https://medium.com/redcab","chat":"https://t.me/redcab_ico","facebook":"https://www.facebook.com/redcabeg","forum":"https://bitcointalk.org/index.php?topic=3834815.0","github":"https://github.com/Redcabllc","gitter":"","instagram":"https://www.instagram.com/redcab.co/","linkedin":"https://linkedin.com/company/redcab","reddit":"https://www.reddit.com/u/redcab_io","slack":"","telegram":"https://t.me/redcab_ico","twitter":"https://twitter.com/redcab_llc","youtube":"https://www.youtube.com/channel/UChSUOalHabZIWL4Ewq6b0RA?"}},{"symbol":"REN","name":"Republic Protocol","type":"ERC20","address":"0x408e41876cCCDC0F92210600ef50372656052a38","ens_address":"republicprotocol.eth","decimals":18,"website":"https://republicprotocol.com","logo":{"src":"https://republicprotocol.github.io/files/logo/ren.svg","width":"256","height":"256","ipfs_hash":"QmbomLqopXo9L89XrAkApeavccPDgXg713KxRjxe1vyhfx"},"support":{"email":"support@republicprotocol.com","url":""},"social":{"blog":"https://medium.com/republicprotocol","chat":"","facebook":"https://www.facebook.com/RepublicProtocol","forum":"","github":"http://github.com/republicprotocol","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/republic-protocol","reddit":"https://www.reddit.com/r/republicprotocol","slack":"","telegram":"https://t.me/republicprotocol","twitter":"https://twitter.com/republicorg","youtube":""}},{"symbol":"REP","name":"Augur","type":"ERC20","address":"0x1985365e9f78359a9B6AD760e32412f4a445E862","ens_address":"","decimals":18,"website":"https://augur.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Augur","slack":"https://invite.augur.net","telegram":"","twitter":"","youtube":""}},{"symbol":"REQ","name":"Request Network","type":"ERC20","address":"0x8f8221aFbB33998d8584A2B05749bA73c37a938a","ens_address":"","decimals":18,"website":"https://request.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"req@request.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/requestnetwork","slack":"https://requestnetwork.slack.com","telegram":"","twitter":"https://twitter.com/requestnetwork","youtube":""}},{"symbol":"REX","name":"REX","type":"ERC20","address":"0xf05a9382A4C3F29E2784502754293D88b835109C","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"RFR","name":"Refereum","type":"ERC20","address":"0xd0929d411954c47438dc1d871dd6081f5c5e149c","ens_address":"refereum.eth","decimals":4,"website":"https://refereum.com","logo":{"src":"28","width":"28","height":"https://etherscan.io/token/images/refereum.png","ipfs_hash":""},"support":{"email":"team@refereum.com","url":"https://help.refereum.com/"},"social":{"blog":"https://medium.com/refereum","chat":"https://discordapp.com/invite/RASrHyD","facebook":"https://www.facebook.com/Refereum/","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/refereum/","linkedin":"https://www.linkedin.com/company/refereum","reddit":"https://www.reddit.com/r/Refereum/","slack":"","telegram":"https://t.me/refereumtalk","twitter":"https://twitter.com/Refereum","youtube":""}},{"symbol":"RIPT","name":"RiptideCoin","type":"ERC20","address":"0xdd007278b667f6bef52fd0a4c23604aa1f96039a","ens_address":"","decimals":8,"website":"https://riptidecoin.com","logo":{"src":"https://etherscan.io/token/images/riptide_28.png","width":24,"height":24,"ipfs_hash":""},"support":{"email":"support@riptidecoin.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/RiptideCoin","forum":"","github":"https://github.com/riptidecoin/riptide-coin","gitter":"","instagram":"https://www.instagram.com/riptide_coin","linkedin":"","reddit":"","slack":"https://mmjfintech.slack.com","telegram":"","twitter":"https://twitter.com/RiptideCoin","youtube":""}},{"symbol":"RLC","name":"IEx.ec","type":"ERC20","address":"0x607F4C5BB672230e8672085532f7e901544a7375","ens_address":"","decimals":9,"website":"http://crowdsale.iex.ec","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://52.44.51.109:3000","telegram":"","twitter":"","youtube":""}},{"symbol":"RLT","name":"RLT","type":"ERC20","address":"0xcCeD5B8288086BE8c38E23567e684C3740be4D48","ens_address":"","decimals":10,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"RLTY","name":"SMARTRealty","type":"ERC20","address":"0xbe99B09709fc753b09BCf557A992F6605D5997B0","ens_address":"","decimals":8,"website":"www.smartrealty.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@smartrealty.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/SMARTRealty-1877878195858356","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SMARTRealty","slack":"https://join.slack.com/t/smartrealty/shared_invite/enQtMzAwMTA1NTM2MjI5LTU5NWU0NmFlODc1OTQ0NjNkYTA5YzIxNDNiY2JiMjM2MjBiZjZjODA5MmQxMDYyM2U5NmYzZTA4Njc2MTQwOWI","telegram":"https://t.me/joinchat/BaF91g_sD4e0Jrmv5Idisg","twitter":"https://twitter.com/rltytoken","youtube":""}},{"symbol":"RLX","name":"Relex","type":"ERC20","address":"0x4a42d2c580f83dce404acad18dab26db11a1750e","ens_address":"","decimals":18,"website":"www.relex.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@relex.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2075473.20","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/relextalk","youtube":""}},{"symbol":"RNDR","name":"Render Token","type":"ERC20","address":"0x0996bfb5d057faa237640e2506be7b4f9c46de0b","ens_address":"","decimals":18,"website":"https://rendertoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@rendertoken.com","url":""},"social":{"blog":"","chat":"https://rendertoken.rocket.chat","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/RenderToken","slack":"","telegram":"","twitter":"https://twitter.com/rendertoken","youtube":""}},{"symbol":"ROCK","name":"Rocket Token","type":"ERC20","address":"0xA40106134c5bF4c41411554e6db99B95A15ed9d8","ens_address":"","decimals":18,"website":"https://rocketico.io","logo":{"src":"https://rocketico.io/app/media/token_icon.png","width":34,"height":34,"ipfs_hash":""},"support":{"email":"support@rocketico.io","url":""},"social":{"blog":"https://blog.rocketico.io/","chat":"","facebook":"","forum":"","github":"https://github.com/rocketico","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company-beta/18198957/","reddit":"","slack":"","telegram":"https://t.me/RocketICOen","twitter":"https://twitter.com/rocketico_io","youtube":"https://www.youtube.com/channel/UCzwtmszqPnIdzdj2hYoa2YQ"}},{"symbol":"ROK","name":"Rocketchain","type":"ERC20","address":"0xc9de4b7f0c3d991e967158e4d4bfa4b51ec0b114","ens_address":"","decimals":18,"website":"https://rockchain.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"yosra.helal@rockchain.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ROUND","name":"ROUND","type":"ERC20","address":"0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"RPL","name":"Rocket Pool","type":"ERC20","address":"0xb4efd85c19999d84251304bda99e90b92300bd93","ens_address":"","decimals":18,"website":"https://www.rocketpool.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@mail.rocketpool.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/rocketpool","slack":"http://slack.rocketpool.net","telegram":"","twitter":"","youtube":""}},{"symbol":"RTN","name":"RiderToken","type":"ERC20","address":"0x54b293226000ccBFC04DF902eEC567CB4C35a903","ens_address":"","decimals":18,"website":"http://ridertoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ridercoinofficial@gmail.com","url":"http://ridertoken.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Rider-Token-ICO-171436110107068","forum":"","github":"https://github.com/Ridercoin2/RiderCoin/blob/master/README.md","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/FFraxA_gh6l2-Ahev-AxHQ","twitter":"https://twitter.com/RiderTokenICO","youtube":""}},{"symbol":"RVT","name":"Rivetz","type":"ERC20","address":"0x3d1ba9be9f66b8ee101911bc36d3fb562eac2244","ens_address":"","decimals":18,"website":"https://rivetzintl.com","logo":{"src":"https://rivetz.com/img/logo/color-250px.png","width":250,"height":250,"ipfs_hash":""},"support":{"email":"sales@rivetzintl.com","url":"https://rivetzintl.com"},"social":{"blog":"","chat":"https://discord.gg/VNrDBUV","facebook":"https://www.facebook.com/Rivetz-1409224065995167","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/rivet_group","twitter":"https://twitter.com/rivetzcorp","youtube":"https://www.youtube.com/watch?v=GbC65mIMjnw"}},{"symbol":"S-A-PAT","name":"S-A-PAT","type":"ERC20","address":"0x1ec8fe51a9b6a3a6c427d17d9ecc3060fbc4a45c","ens_address":"","decimals":18,"website":"https://www.smartillions.ch","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@smartillions.ch","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"S-ETH","name":"S-ETH","type":"ERC20","address":"0x3eb91d237e491e0dee8582c402d85cb440fb6b54","ens_address":"","decimals":18,"website":"https://www.smartillions.ch","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@smartillions.ch","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SALT","name":"Salt Lending Token","type":"ERC20","address":"0x4156D3342D5c385a87D264F90653733592000581","ens_address":"","decimals":8,"website":"https://saltlending.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"saltcommunity.slack.com","telegram":"","twitter":"https://twitter.com/SaltLending","youtube":""}},{"symbol":"SAN","name":"Santiment","type":"ERC20","address":"0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098","ens_address":"","decimals":18,"website":"https://santiment.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@santiment.net","url":""},"social":{"blog":"https://medium.com/santiment","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://santiment-slack.herokuapp.com","telegram":"https://t.me/santiment_network","twitter":"https://twitter.com/santimentfeed","youtube":""}},{"symbol":"SCANDI","name":"Scandiweb Coin","type":"ERC20","address":"0x78fe18e41f436e1981a3a60d1557c8a7a9370461","ens_address":"","decimals":2,"website":"https://scandiweb.com","logo":{"src":"https://i.imgur.com/KrgWBxm.jpg","width":"300","height":"300","ipfs_hash":""},"support":{"email":"info@scandiweb.com","url":""},"social":{"blog":"https://medium.com/@scandiweb","chat":"","facebook":"https://www.facebook.com/scandiweb","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/scandiweb_life/","linkedin":"https://www.linkedin.com/company/scandiweb/","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/scandiweb","youtube":"https://www.youtube.com/channel/UCQKucH_fDghjSM43QBX0itg/feed"}},{"symbol":"SCL","name":"SocialCoin","type":"ERC20","address":"0xd7631787b4dcc87b1254cfd1e5ce48e96823dee8","ens_address":"","decimals":8,"website":"https://ico.nexus.social","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@nexus.social","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/nexussocialnetwork","forum":"https://bitcointalk.org/index.php?topic=2039735","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/nexus_social","slack":"http://slack.nexus.social","telegram":"https://t.me/nexus_social","twitter":"https://twitter.com/nexus_socials","youtube":""}},{"symbol":"SenSatorI","name":"SenSatorI Token","type":"ERC20","address":"0x4ca74185532dc1789527194e5b9c866dd33f4e82","ens_address":"","decimals":18,"website":"http://theglobalbitcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"iSensatori@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SenSatorIToken","slack":"","telegram":"","twitter":"https://twitter.com/Sensatori_dev","youtube":""}},{"symbol":"SENSE","name":"Sensay","type":"ERC20","address":"0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf","ens_address":"","decimals":8,"website":"https://sensay.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/sensay","youtube":""}},{"symbol":"SET","name":"SET","type":"ERC20","address":"0xe06eda7435ba749b047380ced49121dde93334ae","ens_address":"","decimals":0,"website":"http://sydeth.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/SydEthereum/meetup-token#meetup-token","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://chat.sydeth.com","twitter":"https://twitter.com/sydethereum","youtube":""}},{"symbol":"SEXY","name":"Sexy Token","type":"ERC20","address":"0x98f5e9b7f0e33956c0443e81bf7deb8b5b1ed545","ens_address":"","decimals":18,"website":"http://sexytoken.co","logo":{"src":"https://etherscan.io/token/images/sexytoken28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@sexytoken.co","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SGEL","name":"SGELDER","type":"ERC20","address":"0xa1ccc166faf0E998b3E33225A1A0301B1C86119D","ens_address":"","decimals":18,"website":"https://www.soerengelder.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"supportgelder@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SGT","name":"StatusGenesis","type":"ERC20","address":"0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468","ens_address":"","decimals":1,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SGT","name":"SelfieYo Gold Token","type":"ERC20","address":"0x37427576324fE1f3625c9102674772d7CF71377d","ens_address":"","decimals":18,"website":"https://sgt.selfieyo.com","logo":{"src":"https://sgt.selfieyo.com/wp-content/uploads/2018/01/token-new.png","width":"400","height":"400","ipfs_hash":""},"support":{"email":"sgt@selfieyo.com","url":""},"social":{"blog":"","chat":"","discord":"https://discord.gg/QY6EVuY","facebook":"https://www.facebook.com/SelfieYoApp/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/SGTcoin","twitter":"https://twitter.com/SelfieYo","youtube":""}},{"symbol":"SHIT","name":"SHIT","type":"ERC20","address":"0xEF2E9966eb61BB494E5375d5Df8d67B7dB8A780D","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SIFT","name":"SIFT","type":"ERC20","address":"0x8a187d5285d316bcbc9adafc08b51d70a0d8e000","ens_address":"","decimals":0,"website":"https://smartift.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@smartift.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2037464.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/smartift.com","twitter":"https://twitter.com/smartift","youtube":""}},{"symbol":"SIG","name":"Signal","type":"ERC20","address":"0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792","ens_address":"","decimals":18,"website":"https://spectivvr.com","logo":{"src":"https://uploads-ssl.webflow.com/58fd371467a8320d4f29aed3/5906667d95a2d43d31378ce7_60x60logo.png","width":"251","height":"251","ipfs_hash":""},"support":{"email":"info@spectivvr.com","url":""},"social":{"blog":"https://medium.com/spectiv-vr","chat":"http://t.me/spectivtelegram","facebook":"https://www.facebook.com/spectivvr/","forum":"","github":"https://github.com/SpectivOfficial","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Spectiv","slack":"https://communityinviter.com/apps/spectivvr/welcome","telegram":"http://t.me/spectivtelegram","twitter":"https://twitter.com/spectivvr","youtube":""}},{"symbol":"SKIN","name":"SKIN","type":"ERC20","address":"0x2bDC0D42996017fCe214b21607a515DA41A9E0C5","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SKO1","name":"Sikoba","type":"ERC20","address":"0x4994e81897a920c0FEA235eb8CEdEEd3c6fFF697","ens_address":"","decimals":18,"website":"http://www.sikoba.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@sikoba.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://sikoba-presale.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"SKR","name":"SKR Token","type":"ERC20","address":"0x4c382F8E09615AC86E08CE58266CC227e7d4D913","ens_address":"","decimals":6,"website":"https://tokensale.skrilla.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mailto:support@skrilla.com","url":""},"social":{"blog":"https://medium.com/@Skrilla","chat":"https://discordapp.com/invite/F77VmjV","facebook":"https://www.facebook.com/SkrillaEsports","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/skrillatokensale","twitter":"https://twitter.com/playskrilla","youtube":""}},{"symbol":"SKRP","name":"SKRP (Phase 1-E)","type":"ERC20","address":"0x324a48ebcbb46e61993931ef9d35f6697cd2901b","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SKRP","name":"Skraps","type":"ERC20","address":"0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052","ens_address":"","decimals":18,"website":"https://skraps.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@skraps.io","url":""},"social":{"blog":"https://medium.com/@SKRAPS_IO","chat":"","facebook":"https://www.facebook.com/SKRAPSAPP","forum":"https://bitcointalk.org/index.php?topic=2520387.msg25746537#msg25746537","github":"https://github.com/SkrapsIO","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SKRAPSio","slack":"","telegram":"https://t.me/SkrapsOfficial","twitter":"https://twitter.com/SKRAPS_IO","youtube":""}},{"symbol":"SKRP","name":"Skraps","type":"ERC20","address":"0x6E34d8d84764D40f6D7b39cd569Fd017bF53177D","ens_address":"","decimals":18,"website":"https://skraps.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@skraps.io","url":"https://skraps.io/#support"},"social":{"blog":"https://medium.com/@SKRAPS_IO","chat":"","facebook":"https://www.facebook.com/SKRAPSAPP/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SKRAPSio/","slack":"","telegram":"https://t.me/SkrapsOfficial","twitter":"https://twitter.com/SKRAPS_IO","youtube":""}},{"symbol":"SLT","name":"Smartlands","type":"ERC20","address":"0x7A5fF295Dc8239d5C2374E4D894202aAF029Cab6","ens_address":"","decimals":3,"website":"http://smartlands.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"contact@smartlands.io"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SMART","name":"Smart Billions","type":"ERC20","address":"0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C","ens_address":"","decimals":0,"website":"http://smartbillions.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@smartbillions.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/smartbns","forum":"https://bitcointalk.org/index.php?topic=2175951.0","github":"https://github.com/SmartBillions/SmartBillions","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SmartBillions","slack":"https://smartbillions.slack.com","telegram":"https://t.me/SmartBillionsGroup","twitter":"https://twitter.com/smartbns","youtube":""}},{"symbol":"SMT","name":"Smart Node","type":"ERC20","address":"0x2dcfaac11c9eebd8c6c42103fe9e2a6ad237af27","ens_address":"","decimals":18,"website":"http://smartnode.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@smartnode.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Smart.Node.Group","forum":"https://bitcointalk.org/index.php?topic=2612181","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/SmartNodeGroup","youtube":"https://www.youtube.com/channel/UC2FvYOXYEOPKgOzdePT8BRA"}},{"symbol":"SMT","name":"Social Media Market","type":"ERC20","address":"0x78Eb8DC641077F049f910659b6d580E80dC4d237","ens_address":"","decimals":8,"website":"https://socialmedia.market","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@socialmedia.market","url":"https://t.me/socialmediamarket_eng"},"social":{"blog":"https://medium.com/socialmedia-market","chat":"https://t.me/joinchat/B3UENkIW3R9A6v_4KnpOZQ","facebook":"https://www.facebook.com/SocialMedia.Market.platform","forum":"https://bitcointalk.org/index.php?topic=2291309.0","github":"https://github.com/SocialMediaMarket","gitter":"","instagram":"https://instagram.com/socialmedia.io","linkedin":"https://www.linkedin.com/company/socialmedia-market/","reddit":"https://github.com/SocialMediaMarket","slack":"","telegram":"https://t.me/joinchat/B3UENkIW3R9A6v_4KnpOZQ","twitter":"https://twitter.com/socialmedia_mrk","youtube":"https://www.youtube.com/channel/UCPJ919jN8eCcVDkzbCR06nw"}},{"symbol":"SMT","name":"SmartMesh","type":"ERC20","address":"0x55f93985431fc9304077687a35a1ba103dc1e081","ens_address":"","decimals":18,"website":"http://smartmesh.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"tomcat@smartmesh.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/smartmesh/","forum":"https://bitcointalk.org/index.php?topic=2314643.0;all","github":"https://github.com/SmartMeshFoundation","gitter":"","instagram":"https://www.instagram.com/explore/tags/smartmesh/","linkedin":"https://www.linkedin.com/company/smartmesh-foundation/","reddit":"https://www.reddit.com/r/SmartMesh/","slack":"","telegram":"t.me@SmartMesh","twitter":"https://twitter.com/smart_mesh?lang=en","youtube":"https://m.youtube.com/channel/UCrrPpnGqu7PJeU13U0VRPBA"}},{"symbol":"SNC","name":"SNC","type":"ERC20","address":"0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404","ens_address":"","decimals":18,"website":"https://suncontract.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/suncontractorg","forum":"https://bitcointalk.org/index.php?topic=1934763.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/suncontract","slack":"","telegram":"","twitter":"https://twitter.com/sun_contract","youtube":""}},{"symbol":"SND","name":"Sandcoin","type":"ERC20","address":"0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa","ens_address":"","decimals":0,"website":"https://www.sandcoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@sandcoin.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2049619.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SandCoin","slack":"","telegram":"https://t.me/sandcoin","twitter":"","youtube":""}},{"symbol":"SNG","name":"SINERGIA","type":"ERC20","address":"0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7","ens_address":"","decimals":8,"website":"https://sinergiablockchain.org/index-en.html","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@sinergiablockchain.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/SinergiaBlockchain/","forum":"https://bitcointalk.org/index.php?topic=2210037.0","github":"https://github.com/SinergiaBlockchain","gitter":"","instagram":"https://www.instagram.com/Sinergia_Blockchain","linkedin":"https://www.linkedin.com/company/11226873/","reddit":"https://www.reddit.com/user/Sinergia_Blockchain/comments/7huc5i/sinergia_blockchain_first_blockchain_technology/","slack":"https://slack.singulardtv.com","telegram":"https://t.me/ComunidadSinergiaBlockchain","twitter":"https://twitter.com/Sinergia_B","youtube":"https://www.youtube.com/channel/UCeDj2iS0d3v0tM6YeUdr60g"}},{"symbol":"SNGLS","name":"SingularDTV","type":"ERC20","address":"0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009","ens_address":"","decimals":0,"website":"https://singulardtv.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.singulardtv.com","telegram":"","twitter":"","youtube":""}},{"symbol":"SNIP","name":"SNIP","type":"ERC20","address":"0x44F588aEeB8C44471439D1270B3603c66a9262F1","ens_address":"","decimals":18,"website":"https://www.snip.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@snip.today","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/sniptoday","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/sniptoday","twitter":"https://www.twitter.com/sniptoday","youtube":""}},{"symbol":"SNM","name":"SNM","type":"ERC20","address":"0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SNOV","name":"SNOV","type":"ERC20","address":"0xbdc5bac39dbe132b1e030e898ae3830017d7d969","ens_address":"","decimals":18,"website":"https://tokensale.snov.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@snov.io","url":"https://tokensale.snov.io"},"social":{"blog":"https://snov.io/blog","chat":"","facebook":"https://www.facebook.com/Snovio-ICO-147118702534568","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Snovio_ICO","slack":"","telegram":"https://t.me/snovio_ico","twitter":"https://twitter.com/snovio_ico","youtube":"https://www.youtube.com/channel/UCfvMUI2tXgc0Pcjk0hF5pSw"}},{"symbol":"SNT","name":"Status Network Token","type":"ERC20","address":"0x744d70FDBE2Ba4CF95131626614a1763DF805B9E","ens_address":"","decimals":18,"website":"https://status.im","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SOL","name":"Sola Token","type":"ERC20","address":"0x1f54638b7737193ffd86c19ec51907a7c41755d8","ens_address":"","decimals":6,"website":"https://sola.foundation","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hi@sola.foundation","url":""},"social":{"blog":"https://medium.com/solaplatform","chat":"","facebook":"https://facebook.com/solaplatform","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/solaplatform","twitter":"https://twitter.com/solaplatform","youtube":""}},{"symbol":"SPANK","name":"SpankChain","type":"ERC20","address":"0x42d6622dece394b54999fbd73d108123806f6a18","ens_address":"spankchain.eth","decimals":18,"website":"https://spankchain.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/spankchain","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/_spankchain","linkedin":"","reddit":"https://www.reddit.com/r/SpankChain","slack":"","telegram":"","twitter":"https://twitter.com/SpankChain","youtube":"https://www.youtube.com/channel/UCRonD1SJuucnq9GJCJL_crQ"}},{"symbol":"SPARC","name":"SPARC","type":"ERC20","address":"0x58bf7df57d9DA7113c4cCb49d8463D4908C735cb","ens_address":"","decimals":18,"website":"https://kingsds.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@kingsds.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://kingsds.slack.com","telegram":"","twitter":"https://twitter.com/kingsdsnetwork","youtube":""}},{"symbol":"SPARTA","name":"SPARTA","type":"ERC20","address":"0x24aef3bf1a47561500f9430d74ed4097c47f51f2","ens_address":"","decimals":4,"website":"https://www.spartaico.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"reachout@spartaico.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SpartaStartups","slack":"","telegram":"https://t.me/joinchat/FiHDZw5qhOTmSArzrs42rQ","twitter":"https://twitter.com/spartaico","youtube":""}},{"symbol":"SPF","name":"Sportify","type":"ERC20","address":"0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef","ens_address":"","decimals":18,"website":"https://sportyfi.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@sportyfi.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/sportyfi_io","youtube":""}},{"symbol":"SPN","name":"Sapien","type":"ERC20","address":"0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A","ens_address":"","decimals":6,"website":"https://www.sapien.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/SapienNetwork","twitter":"","youtube":""}},{"symbol":"SRN","name":"Sirin Labs","type":"ERC20","address":"0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25","ens_address":"","decimals":18,"website":"https://sirinlabs.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"crowdsale@sirinlabs.com","url":""},"social":{"blog":"https://medium.com/@sirinlabs","chat":"","facebook":"https://www.facebook.com/SirinLabs/?fref=ts","forum":"https://bitcointalk.org/index.php?topic=2285838","github":"https://github.com/sirin-labs/crowdsale-smart-contract","gitter":"","instagram":"https://www.instagram.com/sirinlabs","linkedin":"https://www.linkedin.com/company-beta/10487115","reddit":"https://www.reddit.com/r/SirinLabs","slack":"","telegram":"https://t.me/sirinlabs","twitter":"https://twitter.com/SIRINLABS","youtube":""}},{"symbol":"SS","name":"Sharder","type":"ERC20","address":"0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4","ens_address":"","decimals":18,"website":"https://sharder.org","logo":{"src":"https://oss.sharder.org/sharder/Token/Token-logo-132x132.png","width":"132","height":"132","ipfs_hash":""},"support":{"email":"service@sharder.org","url":""},"social":{"blog":"https://medium.com/@SharderChain","chat":"","facebook":"https://facebook.com/SharderChain","forum":"https://community.sharder.org","github":"https://github.com/Sharders","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/Sharder/","slack":"","telegram":"https://t.me/sharder_talk","twitter":"https://twitter.com/SharderChain","youtube":""}},{"symbol":"SSH","name":"StreamShares","type":"ERC20","address":"0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"STAC","name":"Starter Coin","type":"ERC20","address":"0x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4","ens_address":"","decimals":18,"website":"https://coinstarter.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@coinstarter.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/realCoinStarter","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/coinstarter","twitter":"https://twitter.com/realCoinStarter","youtube":""}},{"symbol":"STAR","name":"Star Token","type":"ERC20","address":"0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc","ens_address":"","decimals":18,"website":"http://starbase.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@starbase.co","url":""},"social":{"blog":"","chat":"https://starbase.rocket.chat","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://starbase-community.slack.com","telegram":"https://t.me/starbase","twitter":"","youtube":""}},{"symbol":"STC","name":"StrikeCoin Token","type":"ERC20","address":"0x629aEe55ed49581C33ab27f9403F7992A289ffd5","ens_address":"","decimals":18,"website":"https://dimensions.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dimensions.network","url":"https://dimensions.network/en/contact_us"},"social":{"blog":"","chat":"","facebook":"https://fb.me/dimensionsnetwork","forum":"","github":"https://github.com/DimensionsNetwork","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/dimensions-network","reddit":"https://www.reddit.com/r/DimensionsNetwork","slack":"","telegram":"https://t.me/DimensionsTalk","twitter":"https://twitter.com/DN_STC","youtube":"https://www.youtube.com/channel/UCticN7-IvIaEpbXVdbsBlcQ/videos"}},{"symbol":"STK","name":"STK Token","type":"ERC20","address":"0xaE73B38d1c9A8b274127ec30160a4927C4d71824","ens_address":"","decimals":18,"website":"https://stktoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@STKtoken","chat":"https://discordapp.com/invite/38EXN5D","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/STKToken","slack":"","telegram":"https://t.me/stktoken","twitter":"https://twitter.com/stktoken","youtube":"https://www.youtube.com/c/STACKFINTECH"}},{"symbol":"STN","name":"Saturn Network","type":"ERC20","address":"0x599346779e90fc3F5F997b5ea715349820F91571","ens_address":"","decimals":4,"website":"https://saturn.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://rados.io","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2046046","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/rados_io","youtube":""}},{"symbol":"STORJ","name":"STORJ","type":"ERC20","address":"0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"STORM","name":"Storm Token","type":"ERC20","address":"0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433","ens_address":"","decimals":18,"website":"https://www.stormtoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@stormtoken.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/stormtoken","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/GHTZGQwsy9mZk0KFEEjGtg","twitter":"https://twitter.com/storm_token","youtube":""}},{"symbol":"STP","name":"StashPay","type":"ERC20","address":"0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36","ens_address":"","decimals":8,"website":"https://stashpay.io","logo":{"src":"https://etherscan.io/token/images/stash_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@stashpay.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/stashpay.io","forum":"","github":"https://github.com/stashpayio","gitter":"","instagram":"https://www.instagram.com/stashpay.io","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/stashpay","youtube":""}},{"symbol":"STQ","name":"Storiqa","type":"ERC20","address":"0x5c3a228510d246b78a3765c20221cbf3082b44a4","ens_address":"","decimals":18,"website":"https://storiqa.com","logo":{"src":"https://s2.coinmarketcap.com/static/img/coins/32x32/2541.png","width":"32","height":"32","ipfs_hash":""},"support":{"email":"support@storiqa.zendesk.com","url":""},"social":{"blog":"https://medium.com/@storiqa","chat":"https://t.me/storiqa_en","facebook":"https://www.facebook.com/storiqa/","forum":"https://bitcointalk.org/index.php?topic=2233274","github":"https://github.com/Storiqa/","gitter":"","instagram":"https://www.instagram.com/storiqa/","linkedin":"https://ru.linkedin.com/company/storiqa","reddit":"https://www.reddit.com/r/Storiqa/","slack":"","telegram":"https://t.me/storiqa_en","twitter":"https://twitter.com/storiqa","youtube":"https://www.youtube.com/channel/UCU_VW6azYd0cXFACzofUy5w"}},{"symbol":"STRC","name":"STRC","type":"ERC20","address":"0x46492473755e8dF960F8034877F61732D718CE96","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"STX","name":"StoxToken","type":"ERC20","address":"0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45","ens_address":"","decimals":18,"website":"https://www.stox.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/stx-technologies/stox-token","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/STOX","slack":"","telegram":"https://t.me/joinchat/DByWw0Pnq9BAy4FqPv_Lyg","twitter":"https://twitter.com/stx_coin","youtube":""}},{"symbol":"SUB","name":"Substratum","type":"ERC20","address":"0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A","ens_address":"","decimals":2,"website":"https://substratum.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SubstratumNetwork","slack":"http://x.co/SubSlack","telegram":"","twitter":"https://twitter.com/SubstratumNet","youtube":""}},{"symbol":"SWM","name":"Swarm Fund Token","type":"ERC20","address":"0x9e88613418cf03dca54d6a2cf6ad934a78c7a17a","ens_address":"","decimals":18,"website":"https://swarm.fund","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mailto:info@swarm.fund","url":""},"social":{"blog":"https://blog.swarm.fund","chat":"","facebook":"https://www.facebook.com/swarmalliance","forum":"","github":"https://github.com/swarmfund","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/5229919","reddit":"https://www.reddit.com/r/swarm","slack":"","telegram":"https://t.me/swarmfund","twitter":"https://twitter.com/TheSwarmFund","youtube":"https://www.youtube.com/c/swarmfund"}},{"symbol":"SWT","name":"Swarm City Token","type":"ERC20","address":"0xB9e7F8568e08d5659f5D29C4997173d84CdF2607","ens_address":"","decimals":18,"website":"http://swarm.city","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://swarm-slack-invite.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"SXDT","name":"Spectre.ai D-Token","type":"ERC20","address":"0x12b306fa98f4cbb8d4457fdff3a0a0a56f07ccdf","ens_address":"","decimals":18,"website":"www.spectre.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@spectre.ai","url":""},"social":{"blog":"https://medium.com/teamspectreai","chat":"","facebook":"https://www.facebook.com/spectrepage","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/GjkGkw7IfwUVuPiWxctD4g","twitter":"https://twitter.com/SpectreAI","youtube":""}},{"symbol":"SXUT","name":"Spectre.ai U-Token","type":"ERC20","address":"0x2c82c73d5b34aa015989462b2948cd616a37641f","ens_address":"","decimals":18,"website":"www.spectre.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@spectre.ai","url":""},"social":{"blog":"https://medium.com/teamspectreai","chat":"","facebook":"https://www.facebook.com/spectrepage","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/GjkGkw7IfwUVuPiWxctD4g","twitter":"https://twitter.com/SpectreAI","youtube":""}},{"symbol":"SYN","name":"Synapse","type":"ERC20","address":"0x10b123fddde003243199aad03522065dc05827a0","ens_address":"","decimals":18,"website":"https://synapse.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"support@synapse.ai"},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2198553","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/aisynapse","youtube":""}},{"symbol":"TaaS","name":"Token-as-a-Service","type":"ERC20","address":"0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C","ens_address":"","decimals":6,"website":"https://taas.fund","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://taasfund.signup.team","telegram":"","twitter":"","youtube":""}},{"symbol":"TAU","name":"Lamden Tau","type":"ERC20","address":"0xc27a2f05fa577a83ba0fdb4c38443c0718356501","ens_address":"","decimals":18,"website":"https://www.lamden.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@lamden.io","url":"https://www.lamden.io"},"social":{"blog":"https://blog.lamden.io","chat":"https://t.me/lamdenchat","facebook":"https://www.facebook.com/LamdenTau","forum":"","github":"https://github.com/lamden","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/lamden","slack":"","telegram":"https://t.me/lamdenchat","twitter":"https://www.twitter.com/LamdenTau","youtube":""}},{"symbol":"TBC2","name":"TBC2","type":"ERC20","address":"0xFACCD5Fc83c3E4C3c1AC1EF35D15adf06bCF209C","ens_address":"","decimals":8,"website":"https://www.tbc.erc20.club","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"erc20club@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/TBC2-257999158050457","forum":"","github":"https://github.com/erc20club","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"TBT","name":"TBitBot","type":"ERC20","address":"0xAFe60511341a37488de25Bef351952562E31fCc1","ens_address":"","decimals":8,"website":"https://tbitbot.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@tbitbot.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/tbit.bot.5","forum":"","github":"https://github.com/tbitbot","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/tbitbot","slack":"https://tbotworkspace.slack.com","telegram":"","twitter":"https://twitter.com/tbit_bot","youtube":""}},{"symbol":"TCA","type":"ERC20","address":"0xfA0eF5E034CaE1AE752d59bdb8aDcDe37Ed7aB97","decimals":18,"name":"TangguoTao Token","ens_address":"","website":"https://www.tcandy.io","logo":{"src":"https://www.tcandy.io/images/logo.png","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@tcandy.io","url":""},"social":{"blog":"https://weibo.com/u/6612897220","chat":"","facebook":"https://www.facebook.com/tcandy.io","forum":"","github":"https://github.com/TcandyChain","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/TcandyChain","youtube":""}},{"symbol":"TDH","name":"TrustedHealth","type":"ERC20","address":"0x2a1dbabe65c595B0022e75208C34014139d5d357","ens_address":"","decimals":18,"website":"https://trustedhealth.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@trustedhealth.io","url":""},"social":{"blog":"https://medium.com/trustedhealth-io","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/trustedhealth-io/","reddit":"https://www.reddit.com/r/TrustedHealth/","slack":"","telegram":"https://t.me/TrustedHealth_io","twitter":"https://twitter.com/_trustedhealth","youtube":""}},{"symbol":"TEL","name":"Telcoin","type":"ERC20","address":"0x85e076361cc813a908ff672f9bad1541474402b2","ens_address":"","decimals":2,"website":"https://www.telco.in","logo":{"src":"https://www.telco.in/logo.png","width":"","height":"","ipfs_hash":""},"support":{"email":"tokensupport@telco.in","url":""},"social":{"blog":"https://medium.com/@telcoin","chat":"","facebook":"","forum":"","github":"https://github.com/telcoin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Telcoin","slack":"","telegram":"https://t.me/TelcoinCommunity","twitter":"https://twitter.com/telcoin_team","youtube":"https://www.youtube.com/channel/UCBEKBh64cZy7U3O7VtKsLOg"}},{"symbol":"TFL","name":"TrueFlip","type":"ERC20","address":"0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9","ens_address":"","decimals":8,"website":"https://trueflip.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=1928663.60","github":"https://github.com/TrueFlip","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"THETA","name":"Theta Token","type":"ERC20","address":"0x3883f5e181fccaf8410fa61e12b59bad963fb645","ens_address":"","decimals":18,"website":"https://www.thetatoken.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@thetatoken.org","url":""},"social":{"blog":"","chat":"","facebook":"facebook.com/ThetaToken/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"reddit.com/r/thetatoken/","slack":"","telegram":"https://t.me/thetatoken","twitter":"twitter.com/thetatoken","youtube":""}},{"symbol":"THUG","name":"THUG","type":"ERC20","address":"0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"TICO","name":"Topinvestmentcoin","type":"ERC20","address":"0xa5db1d6f7a0d5bccc17d0bfd39d7af32d5e5edc6","ens_address":"","decimals":5,"website":"https://www.topinvestmentcoin.online/","logo":{"src":"https://i.imgur.com/DnDglhQ.png","width":"130","height":"129","ipfs_hash":""},"support":{"email":"support@topinvestmentcoin.online","url":"https://www.topinvestmentcoin.online/"},"social":{"blog":"https://medium.com/topinvestmentcoin","chat":"","facebook":"https://web.facebook.com/Topinvestmentcoin/","forum":"https://bitcointalk.org/index.php?topic=3123082.0#new","github":"https://github.com/Topinvestmentcoin/Topinvestmentcoin-","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/topinvestmentcoin","twitter":"https://www.twitter.com/Topinvestcoin","youtube":""}},{"symbol":"TIME","name":"Chronobank","type":"ERC20","address":"0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53","ens_address":"","decimals":8,"website":"https://chronobank.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://chronobank.io/faq"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://chronobank.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"TIO","name":"TIO","type":"ERC20","address":"0x80bc5512561c7f85a3a9508c7df7901b370fa1df","ens_address":"","decimals":18,"website":"https://trade.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@trade.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/TradeToken","twitter":"","youtube":""}},{"symbol":"TIX","name":"Blocktix","type":"ERC20","address":"0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4","ens_address":"","decimals":18,"website":"https://www.blocktix.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@blocktix.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.blocktix.io","telegram":"","twitter":"","youtube":""}},{"symbol":"TKN","name":"TokenCard","type":"ERC20","address":"0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a","ens_address":"","decimals":8,"website":"https://etherscan.io/token/TokenCard","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://tokencard-team.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"TNT","name":"Tierion Network Token","type":"ERC20","address":"0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8","ens_address":"","decimals":8,"website":"https://tierion.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@tierion.com","url":"https://tierion.com/contact"},"social":{"blog":"https://medium.com/tierion","chat":"","facebook":"https://facebook.com/TierionInc","forum":"","github":"https://github.com/tierion","gitter":"","instagram":"","linkedin":"https://linkedin.com/company/tierion","reddit":"https://reddit.com/r/tierion","slack":"","telegram":"https://t.me/tierion","twitter":"https://twitter.com/tierion","youtube":""}},{"symbol":"TOOR","name":"ToorCoin","type":"ERC20","address":"0x8eb965ee9cCFBCE76c0a06264492c0afEfc2826d","ens_address":"","decimals":18,"website":"https://www.toorcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@toorcoin.com","url":""},"social":{"blog":"https://medium.com/toorcoin","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=3478302.0","github":"https://github.com/toorister/toorcoin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Toorcoin","slack":"","telegram":"https://t.me/Toorcoin","twitter":"https://twitter.com/toorcoin","youtube":"https://www.youtube.com/channel/UCYjYlMqYT9UnHgrkqdGhsjQ"}},{"symbol":"TRC","name":"The Real Coin","type":"ERC20","address":"0xcB3F902bf97626391bF8bA87264bbC3DC13469be","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"therealcoin2017@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"TRCN","name":"The Real Coin","type":"ERC20","address":"0x566Fd7999B1Fc3988022bD38507A48F0bCf22c77","ens_address":"","decimals":18,"website":"http://www.therealcoinz.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"Contact@therealcoinz.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/AAAAAE5H5N1SoT0lYvhBXA","twitter":"https://mobile.twitter.com/OfficialTRCoin","youtube":""}},{"symbol":"TRST","name":"TRST","type":"ERC20","address":"0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b","ens_address":"","decimals":6,"website":"https://www.wetrust.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/wetrust-blog","chat":"","facebook":"https://www.facebook.com/wetrustplatform","forum":"https://bitcointalk.org/index.php?topic=1773367","github":"https://github.com/WeTrustPlatform","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/WeTrustPlatform","slack":"https://www.wetrust.io/slack-invite","telegram":"","twitter":"https://twitter.com/wetrustplatform","youtube":""}},{"symbol":"TRX","name":"Tron Lab Token","type":"ERC20","address":"0xf230b790e05390fc8295f4d3f60332c93bed42e2","ens_address":"","decimals":6,"website":"https://tronlab.com/en.html","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"service@tronlab.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/TronFoundation-144555002795817","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://tronfoundation.slack.com","telegram":"https://t.me/joinchat/GIjGvkK7dhnO8gapCPfqew","twitter":"https://twitter.com/tronfoundation","youtube":""}},{"symbol":"TSW","name":"TeslaWatt","type":"ERC20","address":"0x6B87999bE87358065bBdE41e8a0fe0B7b1cd2514","ens_address":"","decimals":18,"website":"https://www.teslawatt.com","logo":{"src":"https://www.teslawatt.com/icon-tesla1.jpg","width":"270","height":"270","ipfs_hash":""},"support":{"email":"blockchain@teslawatt.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/TeslaWatt-146558099344457/","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/teslawattllc/","linkedin":"https://www.linkedin.com/company/teslawatt/","reddit":"","slack":"","telegram":"https://bit.ly/2J0NHxT","twitter":"https://twitter.com/TeslaWatt","youtube":"https://www.youtube.com/channel/UC57TF8T2Ct90sN-FwzALXaQ/featured?view_as=subscriber"}},{"symbol":"TWN","name":"The World News","type":"ERC20","address":"0x2eF1aB8a26187C58BB8aAeB11B2fC6D25C5c0716","ens_address":"","decimals":18,"website":"https://ico.theworldnews.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@theworldnews.net","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/theworldnewstop","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/27158220","reddit":"https://www.reddit.com/user/the-world-news","slack":"","telegram":"https://t.me/theworldnewsdev","twitter":"https://twitter.com/TheWorldNewsNet","youtube":""}},{"symbol":"UKG","name":"UnikoinGold","type":"ERC20","address":"0x24692791bc444c5cd0b81e3cbcaba4b04acd1f3b","ens_address":"","decimals":18,"website":"https://unikoingold.com","logo":{"src":"https://f.unkrn.com/2017-11-04/a/1509813079_unikoin-icon-gold.svg","width":264,"height":264,"ipfs_hash":""},"support":{"email":"support@unikoingold.com","url":""},"social":{"blog":"https://news.unikrn.com/topic/UnikoinGold","chat":"https://community.unikrn.com","facebook":"https://www.facebook.com/unikoingold","forum":"https://bitcointalk.org/index.php?topic=2206150.40","github":"https://github.com/unikoingold/UnikoinGold-UKG-Contract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/unikoingold","slack":"","telegram":"","twitter":"https://twitter.com/unikoingold","youtube":""}},{"symbol":"UMKA","name":"UMKA","type":"ERC20","address":"0x8e5afc69f6227a3ad75ed346c8723bc62ce97123","ens_address":"","decimals":4,"website":"https://umka.city","logo":{"src":"https://cdn-images-1.medium.com/fit/c/200/200/1*2qbLwo61-mobpkNCWeBcLQ.jpeg","width":200,"height":200,"ipfs_hash":""},"support":{"email":"umka.labormarket@gmail.com","url":""},"social":{"blog":"https://medium.com/@umka_","chat":"https://t.me/umka2018","facebook":"https://www.facebook.com/freelance.umka/","forum":"https://bitcointalk.org/index.php?topic=3382203.msg35440294#msg35440294","github":"https://github.com/UMKAman","gitter":"","instagram":"https://www.instagram.com/umka_freelance/","linkedin":"https://www.linkedin.com/company/umka/","reddit":"https://www.reddit.com/user/UMKA_Labor_Market","slack":"","telegram":"https://t.me/umkachannel","twitter":"https://twitter.com/umka_freelance","youtube":"https://www.youtube.com/channel/UCzuPC-job7i8A8ycobx939w"}},{"symbol":"Unicorn","name":"Unicorn","type":"ERC20","address":"0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"UQC","name":"Uquid Coin","type":"ERC20","address":"0xd01db73e047855efb414e6202098c4be4cd2423b","ens_address":"","decimals":18,"website":"https://uquidcoin.com","logo":{"src":"https://etherscan.io/token/images/uquid_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"admin@uquidcoin.com","url":""},"social":{"blog":"https://medium.com/@uquidcoin","chat":"","facebook":"https://www.facebook.com/uquidcoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/uquidcoin","slack":"https://uquid.herokuapp.com","telegram":"https://t.me/uquidcoin","twitter":"https://twitter.com/UquidC","youtube":""}},{"symbol":"USDM","name":"Mether (USDM)","type":"ERC20","address":"0xD760ADdFb24D9C01Fe4Bfea7475C5e3636684058","ens_address":"","decimals":2,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"USDT","name":"USD Tether (erc20)","type":"ERC20","address":"0xdac17f958d2ee523a2206206994597c13d831ec7","ens_address":"","decimals":6,"website":"https://tether.to","logo":{"src":"https://etherscan.io/token/images/tether28_2.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"billy@tether.to","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/tether_to","youtube":""}},{"symbol":"UTK","name":"UTK","type":"ERC20","address":"0x70a72833d6bf7f508c8224ce59ea1ef3d0ea3a38","ens_address":"","decimals":18,"website":"https://utrust.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@utrust.io","url":""},"social":{"blog":"https://medium.com/@UTRUST","chat":"","facebook":"https://www.facebook.com/utrust.io","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/utrustofficial","twitter":"https://twitter.com/UTRUST_Official","youtube":""}},{"symbol":"UTN-P","name":"Universa","type":"ERC20","address":"0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7","ens_address":"","decimals":18,"website":"https://www.universa.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@universa.io","url":""},"social":{"blog":"https://medium.com/universablockchain","chat":"","facebook":"https://www.facebook.com/Universablockchain/","forum":"","github":"https://github.com/UniversaBlockchain/universa","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/Uplatform","twitter":"https://twitter.com/Universa_News","youtube":""}},{"symbol":"UUU","name":"U Networks","type":"ERC20","address":"0x3543638eD4a9006E4840B105944271Bcea15605D","ens_address":"","decimals":18,"website":"https://u.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VDG","name":"VeriDocGlobal","type":"ERC20","address":"0x57C75ECCc8557136D32619a191fBCDc88560d711","ens_address":"","decimals":0,"website":"https://www.veridocglobal.com/","logo":{"src":"https://veridocglobal.com/Themes/veridoc/Content/img/logo.png","width":"350","height":"145","ipfs_hash":""},"support":{"email":"admin@veridocglobal.com","url":"https://www.veridocglobal.com/contactus"},"social":{"blog":"https://veridocglobal.com/news","chat":"","facebook":"https://www.facebook.com/VeriDocGlobal","forum":"","github":"https://github.com/VeriDocGlobal","gitter":"","instagram":"https://www.instagram.com/VeriDocGlobal/","linkedin":"https://www.linkedin.com/company/veridocglobal","reddit":"","slack":"","telegram":"https://t.me/veridocglobal","twitter":"https://twitter.com/VeriDocGlobal","youtube":"https://www.youtube.com/channel/UCbl5uvM3vd-XRm-aDj2YZJw"}},{"symbol":"VDOC","name":"Duty of Care Token","type":"ERC20","address":"0x82BD526bDB718C6d4DD2291Ed013A5186cAE2DCa","ens_address":"","decimals":18,"website":"https://www.dutyof.care/token-launch/","logo":{"src":"https://www.dutyof.care/assets/img/favicon.png","width":"32","height":"32","ipfs_hash":""},"support":{"email":"info@dutyof.care","url":"https://dutyof.care"},"social":{"blog":"https://medium.com/@dutyof.care","chat":"https://chat.dutyof.care/channel/vdoc-community","facebook":"https://www.facebook.com/duty0fcare","forum":"https://bitcointalk.org/index.php?topic=2900263.0","github":"https://github.com/BlueBikeSolutions","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/dutyofcare/","reddit":"https://www.reddit.com/r/dutyofcare","slack":"","telegram":"","twitter":"https://twitter.com/duty0fcare","youtube":"https://www.youtube.com/channel/UCRZ1RspK2VLbFsxNsb8PHTg"}},{"symbol":"VEE","name":"BLOCKv","type":"ERC20","address":"0x340d2bde5eb28c1eed91b2f790723e3b160613b7","ens_address":"","decimals":18,"website":"https://blockv.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"jessica@blockv.io","url":""},"social":{"blog":"https://medium.com/@blockv_io","chat":"","facebook":"https://www.facebook.com/blockv.io","forum":"","github":"https://github.com/blockv","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/blockv","slack":"","telegram":"https://t.me/block_v","twitter":"https://twitter.com/blockv_io","youtube":""}},{"symbol":"VEN","name":"Vechain","type":"ERC20","address":"0xD850942eF8811f2A866692A623011bDE52a462C1","ens_address":"","decimals":18,"website":"https://tokensale.vechain.com/en","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@vechain.com","url":""},"social":{"blog":"","chat":"http://u.wechat.com/MH_e7eabTidsPXiG842RsHM","facebook":"","forum":"","github":"https://github.com/vechain-team","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://vechainofficial.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"VENUS","name":"VENUS","type":"ERC20","address":"0xEbeD4fF9fe34413db8fC8294556BBD1528a4DAca","ens_address":"","decimals":3,"website":"http://venuscoin.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@venuscoin.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2361864.msg24084012#msg24084012","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VERI","name":"Veritas","type":"ERC20","address":"0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374","ens_address":"","decimals":18,"website":"http://veritas.veritaseum.com/index.php","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"reggie@veritaseum.com%20","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VIB","name":"VIB","type":"ERC20","address":"0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724","ens_address":"","decimals":18,"website":"https://www.viberate.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@viberate.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://viberateico.slack.com","telegram":"https://t.me/joinchat/F-zenkQffjbGY7YqqSQl1w","twitter":"","youtube":""}},{"symbol":"VIBE","name":"VIBE Coin","type":"ERC20","address":"0xe8ff5c9c75deb346acac493c463c8950be03dfba","ens_address":"","decimals":18,"website":"http://vibehub.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@vibehub.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/vibehubvr","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/VibeHub","slack":"https://join.slack.com/t/vibehub/shared_invite/MjExNDM5MTcwMjU3LTE0OTk4ODk2ODYtNGM1YmU1OGU3YQ","telegram":"","twitter":"https://twitter.com/VibeHubVR","youtube":""}},{"symbol":"VIBEX","name":"VIBEX Exchange Token","type":"ERC20","address":"0x882448f83d90b2bf477af2ea79327fdea1335d93","ens_address":"","decimals":18,"website":"https://vibehub.io/ico/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://docs.google.com/forms/d/e/1FAIpQLSeFYeXPb9NtYTNskdGXoxGSm8TQo5qBw8PsW8Q68fsVGRgsQg/viewform"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/vibehubvr/","forum":"","github":"https://github.com/amack2u/VibeHub","gitter":"","instagram":"https://www.instagram.com/vibehub.io/","linkedin":"","reddit":"","slack":"https://goo.gl/uf6Tvh","telegram":"","twitter":"https://twitter.com/VibeHubVR","youtube":"https://www.youtube.com/channel/UCbZuYQJpz2G2x2Y2eIbw_UA"}},{"symbol":"VIEW","name":"Viewly","type":"ERC20","address":"0xF03f8D65BaFA598611C3495124093c56e8F638f0","ens_address":"viewtoken.eth","decimals":18,"website":"https://view.ly/","logo":{"src":"https://i.imgur.com/G285h1R.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"support@view.ly","url":"https://viewly.typeform.com/to/eGUK0a"},"social":{"blog":"https://blog.view.ly","chat":"https://discordapp.com/invite/MkTqjnG","facebook":"https://facebook.com/theviewly","forum":"https://bitcointalk.org/index.php?topic=2158676.0","github":"https://github.com/Viewly/","gitter":"","instagram":"https://instagram.com/view.ly","linkedin":"https://www.linkedin.com/company/11354197/","reddit":"https://www.reddit.com/r/viewly/","slack":"","telegram":"https://t.me/viewly","twitter":"https://twitter.com/officialviewly","youtube":""}},{"symbol":"VIT","name":"Vice Industry Token","type":"ERC20","address":"0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c","ens_address":"","decimals":18,"website":"https://vicetoken.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/viceindustrytoken","chat":"","facebook":"https://www.facebook.com/vicetoken/","forum":"","github":"https://github.com/ViceIndustryToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/viceindustrytoken","twitter":"https://twitter.com/ViceToken","youtube":""}},{"symbol":"VIU","name":"VIU","type":"ERC20","address":"0x519475b31653e46d20cd09f9fdcf3b12bdacb4f5","ens_address":"","decimals":18,"website":"https://viuly.io","logo":{"src":"https://etherscan.io/token/images/viuly_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@viuly.com","url":""},"social":{"blog":"https://medium.com/@Viuly","chat":"","facebook":"https://www.facebook.com/viuly","forum":"https://bitcointalk.org/index.php?topic=2353646.0","github":"https://github.com/viuly","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Viuly","slack":"","telegram":"https://t.me/viulyofficial","twitter":"https://twitter.com/ViulyOfficial","youtube":""}},{"symbol":"VLD","name":"Valid","type":"ERC20","address":"0x922ac473a3cc241fd3a0049ed14536452d58d73c","ens_address":"","decimals":18,"website":"https://valid.global/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.valid.global/","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VOC","name":"VORMACOIN","type":"ERC20","address":"0xc3bc9eb71f75ec439a6b6c8e8b746fcf5b62f703","ens_address":"","decimals":18,"website":"https://vormacoin.io/","logo":{"src":"https://vormacoin.io/assets/images/logo/icon.png","width":"200","height":"150","ipfs_hash":""},"support":{"email":"info@vormacoin.io","url":""},"social":{"blog":"https://blog.vormacoin.com/","chat":"","facebook":"https://www.facebook.com/VormaCoin-421138531662966/?ref=br_rs","forum":"","github":"https://github.com/vormacoin","gitter":"","instagram":"https://www.instagram.com/vormacoin.io/","linkedin":"","reddit":"https://www.reddit.com/user/vormacoin","slack":"","telegram":"http://t.me/vormacoinVOC","twitter":"https://twitter.com/vormacoin","youtube":""}},{"symbol":"VOISE","name":"Voise","type":"ERC20","address":"0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3","ens_address":"","decimals":8,"website":"https://voise.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@voise.it","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VRS","name":"Veros","type":"ERC20","address":"0xeDBaF3c5100302dCddA53269322f3730b1F0416d","ens_address":"","decimals":5,"website":"https://veros.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VSL","name":"Vdice","type":"ERC20","address":"0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170","ens_address":"","decimals":18,"website":"https://www.vdice.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.vdice.io","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://vdice-slack-invite-page.stamplayapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"WaBi","name":"WaBi","type":"ERC20","address":"0x286BDA1413a2Df81731D4930ce2F862a35A609fE","ens_address":"","decimals":18,"website":"https://www.wacoin.io","logo":{"src":"https://etherscan.io/token/images/wacoin_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"","url":"support@wacoin.io"},"social":{"blog":"https://medium.com/@wabiico","chat":"","facebook":"https://www.facebook.com/wabiico","forum":"https://bitcointalk.org/index.php?topic=2038385.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/WabiToken","slack":"","telegram":"https://t.me/joinchat/GOTG3EIRK4fBEURKmiOYFg","twitter":"https://twitter.com/wabiico","youtube":""}},{"symbol":"WAX","name":"WAX","type":"ERC20","address":"0x39Bb259F66E1C59d5ABEF88375979b4D20D98022","ens_address":"","decimals":8,"website":"https://wax.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@wax.io","url":""},"social":{"blog":"https://medium.com/wax-io","chat":"","facebook":"https://www.facebook.com/WAX.io.Community","forum":"","github":"https://github.com/waxio","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/WAX_io","slack":"","telegram":"https://t.me/waxtokenannoucements","twitter":"https://twitter.com/wax_io","youtube":"https://www.youtube.com/channel/UCQPwMpYKMDiudnw41QwliHQ"}},{"symbol":"WBA","name":"WeBetCrypto","type":"ERC20","address":"0x74951B677de32D596EE851A233336926e6A2cd09","ens_address":"","decimals":7,"website":"http://webetcrypto.io/wbc","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@webetcrypto.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/WBCrypto","forum":"https://bitcointalk.org/index.php?topic=2128992.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/webetcrypto","youtube":""}},{"symbol":"WCT","name":"WePower","type":"ERC20","address":"0x6a0a97e47d15aad1d132a1ac79a480e3f2079063","ens_address":"","decimals":18,"website":"https://wepower.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@wepower.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://wepower.network/slack","telegram":"https://t.me/Wepower","twitter":"","youtube":""}},{"symbol":"WETH","name":"WETH","type":"ERC20","address":"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","ens_address":"","decimals":18,"website":"https://weth.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@makerdao.com","url":"https://chat.makerdao.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WHEN","name":"WHEN Token","type":"ERC20","address":"0xf4fe95603881d0e07954fd7605e0e9a916e42c44","ens_address":"whentoken.eth","decimals":18,"website":"https://interface.whenhub.com/","logo":{"src":"https://interface.whenhub.com/img/shares/when-token-icon.png","width":"1024","height":"1024","ipfs_hash":""},"support":{"email":"support@whenhub.com","url":"https://whenhub.zendesk.com/hc/en-us/requests/new"},"social":{"blog":"https://www.whenhub.com/category/blog/","chat":"","facebook":"https://www.facebook.com/whenhub/","forum":"https://bitcointalk.org/index.php?topic=3168733.0","github":"https://github.com/WhenHub","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/whenhub/","reddit":"https://www.reddit.com/r/WhenHub","slack":"","telegram":"https://t.me/WhenHubTokenSale","twitter":"https://twitter.com/WhenHub","youtube":""}},{"symbol":"WHO","name":"WhoHas","type":"ERC20","address":"0xe933c0Cd9784414d5F278C114904F5A84b396919","ens_address":"","decimals":18,"website":"https://whohas.io","logo":{"src":"https://whohas.io/wp-content/uploads/2018/02/blueEye_blackText.png","width":"552","height":"608","ipfs_hash":""},"support":{"email":"info@whohas.io","url":"https://whohas.io/#team"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/WhoHas-2006052279409232","forum":"","github":"https://github.com/chrisbsd/whohas","gitter":"","instagram":"https://www.instagram.com/whohas_app","linkedin":"","reddit":"","slack":"https://whohas.slack.com","telegram":"","twitter":"https://twitter.com/WhoHas_App","youtube":""}},{"symbol":"WiC","name":"Wi Coin","type":"ERC20","address":"0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB","ens_address":"","decimals":18,"website":"https://www.cryptowi.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@cryptowi.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/WiC-1411131028954062","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://join.slack.com/t/wictokensale/shared_invite/MjE2NzA4ODI0NDgyLTE1MDA4OTM3NzUtODEzZGY0YjFhYw","telegram":"https://t.me/joinchat/FLaoRUChXsc2PD_QCBziZQ","twitter":"https://twitter.com/WiC_Crypto","youtube":""}},{"symbol":"WIC","name":"WickNote","type":"ERC20","address":"0x62cd07d414ec50b68c7ecaa863a23d344f2d062f","ens_address":"","decimals":0,"website":"https://wicknote.com","logo":{"src":"http://wicknote.com/wicklogo-small.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@wicknote.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/wicknote/wicknote","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WILD","name":"WILD Token","type":"ERC20","address":"0xD3C00772B24D997A812249ca637a921e81357701","ens_address":"","decimals":18,"website":"http://www.wildcrypto.com","logo":{"src":"http://wildtoken.com/wp-content/uploads/2017/12/WildCrypto-Logo-Only-copy-300x275.png","width":"","height":"","ipfs_hash":""},"support":{"email":"info@wildcrypto.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/WildCrypto","forum":"","github":"https://github.com/WildCryptoICO/Wild-Crypto-Token","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/WildCrypto","slack":"","telegram":"https://t.me/joinchat/GJ80yE8A1_ZuwubD_jExjg","twitter":"https://twitter.com/WildCrypto","youtube":"https://www.youtube.com/channel/UCY0-r0TNdZ95abuydyTC19Q"}},{"symbol":"WINGS","name":"WINGS","type":"ERC20","address":"0x667088b212ce3d06a1b553a7221E1fD19000d9aF","ens_address":"","decimals":18,"website":"https://wings.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@url.ai","url":"https://hi.wings.ai"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WMK","name":"WemarkToken","type":"ERC20","address":"0xbfbe5332f172d77811bc6c272844f3e54a7b23bb","ens_address":"","decimals":18,"website":"https://www.wemark.com","logo":{"src":"https://cdn.wemark.com/wmk-logo-250.png","width":"250","height":"250","ipfs_hash":""},"support":{"email":"support@wemark.com","url":""},"social":{"blog":"https://medium.com/wemark-stories","chat":"","facebook":"https://www.facebook.com/WemarkOfficial/","forum":"","github":"https://github.com/WemarkSource","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Wemark/","slack":"","telegram":"https://t.me/wemark","twitter":"https://twitter.com/@_wemark","youtube":"https://www.youtube.com/channel/UCKIxNl0HhoTWshUnrBL70Og"}},{"symbol":"WNK","name":"Woonk","type":"ERC20","address":"0xd73A66B8FB26Be8B0AcD7c52Bd325054Ac7d468b","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WOLK","name":"Wolk Token","type":"ERC20","address":"0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f","ens_address":"","decimals":18,"website":"https://www.wolk.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"services@wolk.com","url":""},"social":{"blog":"https://blog.wolk.com","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/wolktoken","slack":"","telegram":"https://t.me/joinchat/GkePIg2-n4y5VQn4epAQOw","twitter":"https://twitter.com/wolkinc","youtube":""}},{"symbol":"WOLK","name":"WOLK","type":"ERC20","address":"0x728781E75735dc0962Df3a51d7Ef47E798A7107E","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WPR","name":"WePower Token","type":"ERC20","address":"0x4CF488387F035FF08c371515562CBa712f9015d4","ens_address":"","decimals":18,"website":"https://wepower.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@wepower.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/WePowerNetwork","twitter":"","youtube":""}},{"symbol":"WRK","name":"WorkCoin","type":"ERC20","address":"0x71e8d74ff1c923e369d0e70dfb09866629c4dd35","ens_address":"","decimals":18,"website":"https://workcoin.net/","logo":{"src":"https://workcoin.net/images/workcoin_logo.svg","width":"","height":"","ipfs_hash":""},"support":{"email":"support@workcoin.net","url":""},"social":{"blog":"https://medium.com/workcoin","chat":"","facebook":"https://www.facebook.com/workcoingroup/","forum":"","github":"https://github.com/TMWorkCoin","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"http://t.me/workcoin","twitter":"https://twitter.com/realWorkCoin","youtube":""}},{"symbol":"WTC","name":"Walton","type":"ERC20","address":"0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WYS","name":"wystoken","type":"ERC20","address":"0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a","ens_address":"","decimals":18,"website":"https://www.wystoken.org","logo":{"src":"https://ibb.co/hmP1vo","width":"150","height":"150","ipfs_hash":""},"support":{"email":"contact@wysker.org","url":"https://www.wysker.com"},"social":{"blog":"https://bitcointalk.org/index.php?topic=2443093.0","chat":"","facebook":"https://www.facebook.com/wysker","forum":"","github":"https://github.com/wysker","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/wysker/","slack":"","telegram":"https://t.me/wysker","twitter":"https://twitter.com/wysker_","youtube":"https://www.youtube.com/channel/UCjmCaHP6hbiJzQ_fKYzpCkw"}},{"symbol":"WYV","name":"WyvernToken","type":"ERC20","address":"0x056017c55aE7AE32d12AeF7C679dF83A85ca75Ff","ens_address":"wyverntoken.eth","decimals":18,"website":"https://projectwyvern.com","logo":{"src":"https://raw.githubusercontent.com/ProjectWyvern/wyvern-branding/master/logo/logo-square-red-transparent-28x28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"team@projectwyvern.com","url":"https://projectwyvern.com/contact"},"social":{"blog":"https://blog.projectwyvern.com","chat":"https://riot.im/app/#/room/#projectwyvern:matrix.org","facebook":"https://www.facebook.com/WyvernExchange","forum":"","github":"https://github.com/ProjectWyvern","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/projectwyvern","slack":"","telegram":"","twitter":"https://twitter.com/WyvernExchange","youtube":""}},{"symbol":"X8X","name":"X8X","type":"ERC20","address":"0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c","ens_address":"","decimals":18,"website":"https://x8currency.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@x8currency.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://x8currency.herokuapp.com","telegram":"https://t.me/joinchat/DLdRTA4n4K-w1Fsn6v3oCQ","twitter":"https://twitter.com/x8currency","youtube":""}},{"symbol":"XAUR","name":"Xaurum","type":"ERC20","address":"0x4DF812F6064def1e5e029f1ca858777CC98D2D81","ens_address":"","decimals":8,"website":"http://www.xaurum.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XBP","name":"BlitzPredict","type":"ERC20","address":"0x28dee01d53fed0edf5f6e310bf8ef9311513ae40","ens_address":"","decimals":18,"website":"https://www.blitzpredict.io","logo":{"src":"https://s3.amazonaws.com/blitzpredict-public/MEW+Logo.png","width":"250","height":"250","ipfs_hash":""},"support":{"email":"mew@blitzpredict.io","url":""},"social":{"blog":"https://medium.com/@BlitzPredict1","chat":"","facebook":"","forum":"","github":"https://github.com/blitzpredict","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BlitzPredict/","slack":"","telegram":"https://t.me/BlitzPredict","twitter":"https://twitter.com/@blitzpredict","youtube":""}},{"symbol":"XCC","name":"CoinCrowd","type":"ERC20","address":"0x4d829f8c92a6691c56300d020c9e0db984cfe2ba","ens_address":"coincrowd.eth","decimals":18,"website":"https://www.coincrowd.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"staff@coincrowd.it","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/coincrowd-it","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/coincrowd","twitter":"https://twitter.com/coincrowdit","youtube":""}},{"symbol":"XFS","name":"Fanship","type":"ERC20","address":"0x16aF5bfb4Ae7E475b9aDC3Bf5Cb2f1E6a50d7940","ens_address":"","decimals":8,"website":"http://fanship.world/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XGG","name":"Going Gems","type":"ERC20","address":"0xf6b6aa0ef0f5edc2c1c5d925477f97eaf66303e7","ens_address":"","decimals":8,"website":"https://www.going-gems.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@going-gems.com","url":""},"social":{"blog":"https://www.going-gems.com/#blog","chat":"","facebook":"https://web.facebook.com/Going-Gems-307192689810299/","forum":"","github":"https://github.com/GoingGems","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://goinggemsholding.slack.com","telegram":"https://t.me/GoingGemsChannel","twitter":"https://twitter.com/GoingGems","youtube":""}},{"symbol":"XGM","name":"XGM","type":"ERC20","address":"0x533ef0984b2FAA227AcC620C67cce12aA39CD8CD","ens_address":"","decimals":8,"website":"https://www.xaurum.org/gamma","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"gamma@xaurum.pro","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/xaurumofficial","forum":"https://bitcointalk.org/index.php?topic=2057494.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/xaurum","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XGT","name":"XGT","type":"ERC20","address":"0x30f4A3e0aB7a76733D8b60b89DD93c3D0b4c9E2f","ens_address":"","decimals":18,"website":"https://cryptogene.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@cryptogene","chat":"","facebook":"https://www.facebook.com/cryptogenec","forum":"","github":"https://github.com/CryptogeneProject/CryptogeneToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/Cryptogene","twitter":"https://twitter.com/cryptogenegroup","youtube":""}},{"symbol":"XID","name":"XID","type":"ERC20","address":"0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XNK","name":"Ink Protocol","type":"ERC20","address":"0xBC86727E770de68B1060C91f6BB6945c73e10388","ens_address":"","decimals":18,"website":"https://paywithink.com","logo":{"src":"https://etherscan.io/token/images/paywithink_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"admin@paywithink.com","url":""},"social":{"blog":"http://medium.com/@paywithink","chat":"","facebook":"","forum":"","github":"https://github.com/InkProtocol/","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/paywithink","twitter":"https://twitter.com/PayWithInk","youtube":"https://www.youtube.com/channel/UC7bcqPWiNGxdXI3Wh3V68vw"}},{"symbol":"XNN","name":"XENON","type":"ERC20","address":"0xab95e915c123fded5bdfb6325e35ef5515f1ea69","ens_address":"","decimals":18,"website":"https://xenon.network","logo":{"src":"https://etherscan.io/token/images/xenon_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@xenon.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://join.slack.com/t/xenonnetwork/shared_invite/enQtMjQ1NzQ2MTQ1OTA2LWI5MjkzZWQxNzRmYzNmOGE5Nzc2MWYyN2NjM2Y2MTZjNjA2MDUyNmI5ZGFkNjU3YzE5NGVjNjA0YzkzMDk5ZGU","telegram":"","twitter":"https://twitter.com/XenonNet","youtube":""}},{"symbol":"XNT","name":"XNT","type":"ERC20","address":"0x572e6f318056ba0c5d47a422653113843d250691","ens_address":"","decimals":0,"website":"https://exante.eu","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"nt@exante.eu","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XPAT","name":"Pangea Arbitration Token","type":"ERC20","address":"0xBB1fA4FdEB3459733bF67EbC6f893003fA976a82","ens_address":"","decimals":18,"website":"https://bitnation.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"usersupport@bitnation.co","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/MyBitnation/","forum":"","github":"https://github.com/Bit-Nation/","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XRL","name":"XRL","type":"ERC20","address":"0xB24754bE79281553dc1adC160ddF5Cd9b74361a4","ens_address":"","decimals":9,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XSC","name":"XSC","type":"ERC20","address":"0x0F513fFb4926ff82D7F60A05069047AcA295C413","ens_address":"","decimals":18,"website":"http://crowdstart.capital","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@crowdstart.capital","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://bit.ly/2zMX0hm","telegram":"","twitter":"","youtube":""}},{"symbol":"YEED","name":"YGGDRASH","type":"ERC20","address":"0xca2796f9f61dc7b238aab043971e49c6164df375","ens_address":"","decimals":18,"website":"https://yggdrash.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"YUPIE","name":"YUPIE","type":"ERC20","address":"0x0F33bb20a282A7649C7B3AFf644F084a9348e933","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"tiboyv@seznam.cz","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://goalman.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"ZAP","name":"ZAP","type":"ERC20","address":"0x6781a0f84c7e9e846dcb84a9a5bd49333067b104","ens_address":"","decimals":18,"website":"https://zap.store","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@zapproject.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/zapproject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ZIL","name":"Zilliqa","type":"ERC20","address":"0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27","ens_address":"","decimals":12,"website":"https://www.zilliqa.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"enquiry@zilliqa.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/zilliqa","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/zilliqa/","slack":"","telegram":"https://t.me/zilliqa","twitter":"https://twitter.com/zilliqa","youtube":"https://www.youtube.com/channel/UCvinnFbf0u71cajoxKcfZIQ"}},{"symbol":"ZMN","name":"ZMINE","type":"ERC20","address":"0x554ffc77f4251a9fb3c0e3590a6a205f8d4e067d","ens_address":"","decimals":18,"website":"https://www.zmine.com","logo":{"src":"https://zmine.com/img/logo_300x300.png","width":"300","height":"300","ipfs_hash":""},"support":{"email":"support@zmine.com","url":""},"social":{"blog":"https://zmine.com/blog/en/","chat":"https://t.me/zminegroupchat","facebook":"https://www.facebook.com/zmineofficial","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/zmineofficial","twitter":"","youtube":""}},{"symbol":"ZRX","name":"0x Project","type":"ERC20","address":"0xE41d2489571d322189246DaFA5ebDe1F4699F498","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ZST","name":"Zeus Exchange","type":"ERC20","address":"0xe386b139ed3715ca4b18fd52671bdcea1cdfe4b1","ens_address":"","decimals":8,"website":"http://zeus.exchange","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@zeus.exchange","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/Zeus-Exchange-158864051329242","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/B8kRS0IMUdyEVi9CxH7Djw","twitter":"https://twitter.com/ExchangeZeus","youtube":""}}] \ No newline at end of file +[{"symbol":"$FFC","name":"$Fluzcoin","type":"ERC20","address":"0x4E84E9e5fb0A972628Cf4568c403167EF1D40431","ens_address":"","decimals":18,"website":"https://fluzcoin.io/","logo":{"src":"https://i.imgur.com/ar18ECx.png","width":"358","height":"373","ipfs_hash":""},"support":{"email":"info@fluzcoin.io","url":"https://fluzcoin.io/"},"social":{"blog":"https://medium.com/@fluzcoin","chat":"","facebook":"https://www.facebook.com/fluzcoin/","forum":"https://bitcointalk.org/index.php?topic=3794410.0","github":"https://github.com/Fluzcoin","gitter":"","instagram":"https://www.instagram.com/fluzcoin.official/","linkedin":"https://www.linkedin.com/company/fluzcoin/","reddit":"https://www.reddit.com/r/fluzcoin/","slack":"","telegram":"https://t.me/Fluzcoin_Foundation","twitter":"https://twitter.com/fluzcoin","youtube":"https://www.youtube.com/channel/UCdK-HoZdmvmC-9bS5TeJT0g"}},{"symbol":"$FXY","name":"$FIXY NETWORK","type":"ERC20","address":"0xa024e8057eec474a9b2356833707dd0579e26ef3","ens_address":"","decimals":18,"website":"https://fixyapp.io","logo":{"src":"https://ibb.co/diUwiJ","width":"300","height":"299","ipfs_hash":""},"support":{"email":"ht@fixyapp.io","url":"https://fixyapp.io"},"social":{"blog":"https://medium.com/@fixynetwork","chat":"","facebook":"https://www.facebook.com/Fixyapp.io/","forum":"https://bitcointalk.org/index.php?topic=3084108.0","github":"https://github.com/fixynetwork/FIXY-NETWORK","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/fixynetwork","twitter":"https://twitter.com/fixy_app","youtube":""}},{"symbol":"$HUR","name":"$Hurify Token","type":"ERC20","address":"0xcdb7ecfd3403eef3882c65b761ef9b5054890a47","ens_address":"","decimals":18,"website":"https://hurify.co/","logo":{"src":"https://hurify.co/wp-content/uploads/2018/03/hurify_fav_icon.png","width":"300","height":"302","ipfs_hash":""},"support":{"email":"support@hurify.co","url":"https://hurify.co"},"social":{"blog":"https://hurify.co/blog","chat":"","facebook":"https://www.facebook.com/hurify/","forum":"https://bitcointalk.org/index.php?action=profile;u=1244776","github":"https://github.com/HurifyPlatform","gitter":"","instagram":"","medium":"https://medium.com/@Hurify","linkedin":"https://www.linkedin.com/company/hurify/","reddit":"https://www.reddit.com/user/Hurify/","slack":"","telegram":"https://t.me/joinchat/hurifyico","twitter":"https://twitter.com/Hurify_hur","youtube":"https://www.youtube.com/channel/UCcdoOI2eF06j1W_E6tgs3uw"}},{"symbol":"$IQN","name":"$IQeon","type":"ERC20","address":"0x0db8d8b76bc361bacbb72e2c491e06085a97ab31","ens_address":"","decimals":18,"website":"https://iqeon.io/","logo":{"src":"https://s3.eu-central-1.amazonaws.com/iqeon-content/logo/4_5953844568075010913.png","width":115,"height":128,"ipfs_hash":""},"support":{"email":"support@iqeon.io","url":"https://iqeon.io/faq"},"social":{"blog":"https://iqeon.io/news","chat":"","facebook":"https://www.facebook.com/iqeon/","forum":"https://bitcointalk.org/index.php?topic=2479328.0","github":"https://github.com/iqeon","gitter":"","instagram":"https://www.instagram.com/iqeon.io/","linkedin":"https://www.linkedin.com/company/iqeon/","reddit":"https://www.reddit.com/r/IQeon/","slack":"","telegram":"https://t.me/IQeonICO","twitter":"https://twitter.com/IQeon","youtube":"https://www.youtube.com/channel/UCf2z_AnX8YvLAgsrjtHYP1Q"}},{"symbol":"$TEAK","name":"$TEAK","type":"ERC20","address":"0x7dd7f56d697cc0f2b52bd55c057f378f1fe6ab4b","ens_address":"","decimals":18,"website":"https://steak.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@steak.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"0xBTC","name":"0xBitcoin","type":"ERC20","address":"0xB6eD7644C69416d67B522e20bC294A9a9B405B31","ens_address":"","decimals":8,"website":"https://0xbitcoin.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@0xbitcoin.org","url":"https://0xbitcoin.org/"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/0xbitcoin","slack":"","telegram":"t.me/ZEROxBTC","twitter":"","youtube":""}},{"symbol":"1ST","name":"FirstBlood","type":"ERC20","address":"0xAf30D2a7E90d7DC361c8C4585e9BB7D2F6f15bc7","ens_address":"","decimals":18,"website":"https://firstblood.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.firstblood.io","telegram":"","twitter":"","youtube":""}},{"symbol":"1WO","name":"1WO","type":"ERC20","address":"0xfdbc1adc26f0f8f8606a5d63b7d3a3cd21c22b23","ens_address":"","decimals":8,"website":"https://ico.1worldonline.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@1worldonline.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/1WorldOnlineInc","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/Fu2jLgtH-b2obpp1FO5jyQ","twitter":"https://twitter.com/1World_Online","youtube":""}},{"symbol":"2DC","name":"DualChain","type":"ERC20","address":"0x9fC0583220eB44fAeE9e2dc1E63F39204DDD9090","ens_address":"","decimals":18,"website":"","logo":{"src":"https://image.ibb.co/iniG4c/282541262323.png","width":"400","height":"400","ipfs_hash":""},"support":{"email":"admin@comprabitcoin.online","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CompraBitcoin-1453383194773687/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"300","name":"300 Token Sparta","type":"ERC20","address":"0xaEc98A708810414878c3BCDF46Aad31dEd4a4557","ens_address":"","decimals":18,"website":"https://300tokensparta.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/300_Token","youtube":""}},{"symbol":"3LT","name":"TrillionToken","type":"ERC20","address":"0x430241368c1D293fdA21DBa8Bb7aF32007c59109","ens_address":"","decimals":8,"website":"https://3lt.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"A18","name":"Apollo18","type":"ERC20","address":"0xBDe8f7820b5544a49D34F9dDeaCAbEDC7C0B5adc","ens_address":"","decimals":0,"website":"https://apollo18.co.in","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@apollo18.co.in","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.apollo18.co.in","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://telegram.apollo18.co.in","twitter":"https://twitter.apollo18.co.in","youtube":""}},{"symbol":"ABT","name":"ArcBlock Token","type":"ERC20","address":"0xb98d4c97425d9908e66e53a6fdf673acca0be986","ens_address":"","decimals":18,"website":"https://www.arcblock.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@arcblock.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ABYSS","name":"ABYSS","type":"ERC20","address":"0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6","ens_address":"","decimals":18,"website":"https://www.theabyss.com","logo":{"src":"https://www.theabyss.com/static/img/abyss_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@theabyss.com","url":"https://t.me/theabyss"},"social":{"blog":"https://medium.com/theabyss","chat":"","discord":"https://discord.theabyss.com","facebook":"https://www.facebook.com/theabyss","forum":"https://bitcointalk.theabyss.com","github":"https://github.com/theabyssportal","gitter":"","instagram":"https://instagram.com/theabyssportal","linkedin":"https://www.linkedin.com/company/theabyss","reddit":"https://reddit.theabyss.com","slack":"","telegram":"https://t.me/theabyss","twitter":"https://twitter.com/theabyss","youtube":""}},{"symbol":"ACC","name":"Accelerator Network","type":"ERC20","address":"0x13f1b7fdfbe1fc66676d56483e21b1ecb40b58e2","ens_address":"","decimals":18,"website":"http://accelerator.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@accelerator.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.accelerator.network","telegram":"","twitter":"https://twitter.com/Accelerator_net","youtube":""}},{"symbol":"ADH","name":"AdHive Token","type":"ERC20","address":"0xE69a353b3152Dd7b706ff7dD40fe1d18b7802d31","ens_address":"","decimals":18,"website":"https://adhive.tv","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@adhive.tv","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/adhivetv","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/adhivetv","twitter":"https://twitter.com/AdhiveTv","youtube":""}},{"symbol":"ADI","name":"Aditus","type":"ERC20","address":"0x8810C63470d38639954c6B41AaC545848C46484a","ens_address":"","decimals":18,"website":"https://aditus.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@aditus.net","url":""},"social":{"blog":"https://medium.com/aditusnetwork","chat":"","facebook":"","forum":"","github":"https://github.com/aditus","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/aditus","slack":"","telegram":"http://t.me/aditusnetwork","twitter":"","youtube":""}},{"symbol":"ADL","name":"Adelphoi","type":"ERC20","address":"0x660e71483785f66133548b10f6926dc332b06e61","ens_address":"","decimals":18,"website":"https://adel.io","logo":{"src":"https://pbs.twimg.com/profile_images/995709693044690944/5LSmUn49_400x400.png","width":"211","height":"211","ipfs_hash":""},"support":{"email":"info@adel.io","url":"https://adel.io/contact"},"social":{"blog":"https://medium.com/adel","chat":"https://t.me/Adelphoi","facebook":"https://www.facebook.com/adelphoi.io","forum":"https://bitcointalk.org/index.php?topic=2135312","github":"","gitter":"","instagram":"https://instagram.com/adelphoi.io","linkedin":"https://www.linkedin.com/company/adelphoi","reddit":"https://www.reddit.com/r/adel","slack":"https://adel-signup.herokuapp.com","telegram":"https://t.me/Adelphoi","twitter":"https://twitter.com/adelphoi_io","youtube":"https://www.youtube.com/channel/UC90BbGKzqnlqDUHgw0K7mhw"}},{"symbol":"ADST","name":"AdShares","type":"ERC20","address":"0x422866a8F0b032c5cf1DfBDEf31A20F4509562b0","ens_address":"","decimals":0,"website":"https://adshares.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"office@adshares.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ADT","name":"AdToken","type":"ERC20","address":"0xD0D6D6C5Fe4a677D343cC433536BB717bAe167dD","ens_address":"","decimals":9,"website":"https://adtoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@metax.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/adchain","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/adChain","slack":"https://adchain.slack.com","telegram":"","twitter":"https://twitter.com/ad_chain","youtube":""}},{"symbol":"ADX","name":"AdEx Network","type":"ERC20","address":"0x4470BB87d77b963A013DB939BE332f927f2b992e","ens_address":"","decimals":4,"website":"https://www.adex.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/the-adex-blog","chat":"","facebook":"","forum":"","github":"https://github.com/AdExBlockchain","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/AdEx","slack":"","telegram":"https://t.me/AdExNetwork","twitter":"https://twitter.com/AdEx_Network","youtube":""}},{"symbol":"AE","name":"aeternity","type":"ERC20","address":"0x5ca9a71b1d01849c0a95490cc00559717fcf0d1d","ens_address":"","decimals":18,"website":"https://www.aeternity.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@aeternity.com","url":""},"social":{"blog":"https://blog.aeternity.com/","chat":"","facebook":"https://www.facebook.com/aeternityproject/","forum":"","github":"https://github.com/aeternity","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Aeternity/","slack":"","telegram":"https://telegram.me/aeternity","twitter":"https://twitter.com/aetrnty","youtube":""}},{"symbol":"AGI","name":"SingularityNET","type":"ERC20","address":"0x8eB24319393716668D768dCEC29356ae9CfFe285","ens_address":"","decimals":8,"website":"https://singularitynet.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@singularitynet.io","url":""},"social":{"blog":"https://blog.singularitynet.io","chat":"","facebook":"https://www.facebook.com/singularityNET.io","forum":"","github":"https://github.com/singnet/singnet","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SingularityNet","slack":"","telegram":"https://t.me/singularitynet","twitter":"https://twitter.com/singularity_net","youtube":""}},{"symbol":"AION","name":"Aion","type":"ERC20","address":"0x4CEdA7906a5Ed2179785Cd3A40A69ee8bc99C466","ens_address":"","decimals":8,"website":"https://aion.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.aion.network/","chat":"","facebook":"https://www.facebook.com/AionBlockchain/","forum":"https://forum.aion.network/","github":"https://github.com/aionnetwork","gitter":"","instagram":"","linkedin":"https://linkedin.com/company/aion-network","reddit":"","slack":"","telegram":"https://t.me/aion_blockchain","twitter":"https://twitter.com/Aion_Network","youtube":"https://youtube.com/channel/UCu4u9tYEgUyNL9KMgrCZvXQ"}},{"symbol":"AIR","name":"AirToken","type":"ERC20","address":"0x27dce1ec4d3f72c3e457cc50354f1f975ddef488","ens_address":"","decimals":8,"website":"https://airtoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"corporate@airfox.io","url":""},"social":{"blog":"https://medium.com/@airfox","chat":"https://open.kakao.com/o/gl69MFz","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2078932","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/AirToken","slack":"https://shielded-mesa-79992.herokuapp.com","telegram":"https://t.me/airfoxico","twitter":"https://twitter.com/airtoken","youtube":""}},{"symbol":"AIX","name":"Aigang","type":"ERC20","address":"0x1063ce524265d5a3A624f4914acd573dD89ce988","ens_address":"","decimals":18,"website":"https://aigang.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/aigang-network","chat":"","facebook":"","forum":"","github":"https://github.com/AigangNetwork","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/aigangnetwork","twitter":"https://twitter.com/aigangnetwork","youtube":""}},{"symbol":"AKC","name":"ARTWOOK COIN","type":"ERC20","address":"0x1ca43a170bad619322e6f54d46b57e504db663aa","ens_address":"","decimals":18,"website":"https://artwook.com","logo":{"src":"https://artwook.com/logo/akc-line.png","width":"256","height":"256","ipfs_hash":""},"support":{"email":"contact@artwook.com","url":"https://artwook.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/ArtWook-2029005760759166","forum":"","github":"https://github.com/artwook","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/artwook","twitter":"https://twitter.com/artwook_akc","youtube":"https://www.youtube.com/watch?v=TJn_TojlmHI"}},{"symbol":"ALCO","name":"ALCO","type":"ERC20","address":"0x181a63746d3adcf356cbc73ace22832ffbb1ee5a","ens_address":"","decimals":8,"website":"https://alaricoin.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@alaricoin.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/alaricoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Alaricoin","youtube":""}},{"symbol":"ALIS","name":"ALIS Token","type":"ERC20","address":"0xEA610B1153477720748DC13ED378003941d84fAB","ens_address":"","decimals":18,"website":"https://alismedia.jp","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@alismedia.jp","url":""},"social":{"blog":"https://medium.com/@alismedia","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2102935","github":"https://github.com/AlisProject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://alis-slack.herokuapp.com","telegram":"","twitter":"https://twitter.com/ALIS_media","youtube":""}},{"symbol":"ALTS","name":"ALTS Token","type":"ERC20","address":"0x638ac149ea8ef9a1286c41b977017aa7359e6cfa","ens_address":"","decimals":18,"website":"http://www.altcoinstalks.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"dev@altcoinstalks.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/AltcoinsTalks","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/FVTLFELkfHI6_CKz7AbIpQ","twitter":"https://twitter.com/AltcoinsTalks","youtube":""}},{"symbol":"AMB","name":"Amber Token","type":"ERC20","address":"0x4dc3643dbc642b72c158e7f3d2ff232df61cb6ce","ens_address":"","decimals":18,"website":"https://ambrosus.com/index.html","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.ambrosus.com/","chat":"","facebook":"https://www.facebook.com/ambrosusAMB","forum":"","github":"https://github.com/ambrosus","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/ambrosus","reddit":"https://www.reddit.com/r/ambrosus/","slack":"","telegram":"https://t.me/AmbrosusAMB","twitter":"https://twitter.com/AmbrosusAMB","youtube":"https://youtu.be/OkdCV6zw3lI"}},{"symbol":"AMIS","name":"AMIS","type":"ERC20","address":"0x949bed886c739f1a3273629b3320db0c5024c719","ens_address":"","decimals":9,"website":"http://erc20-amis.amisolution.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@amisolution.net","url":""},"social":{"blog":"https://medium.com/@AMIS_ERC20","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=1816765.0","github":"https://github.com/amisolution/ERC20-AMIS","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://amisolution.herokuapp.com","telegram":"","twitter":"https://twitter.com/AMIS_ERC20","youtube":""}},{"symbol":"AMLT","name":"AMLT","type":"ERC20","address":"0xca0e7269600d353f70b14ad118a49575455c0f2f","ens_address":"","decimals":18,"website":"https://amlt.coinfirm.io/","logo":{"src":"https://s3.eu-west-2.amazonaws.com/amlt/AMLT_logo_mew.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"amlt@coinfirm.io ","url":"https://amlt.coinfirm.io/"},"social":{"blog":"https://blog.coinfirm.io/","chat":"","facebook":"https://www.facebook.com/AMLToken/","forum":"https://bitcointalk.org/index.php?topic=2375580.0","github":"https://github.com/amlt-by-coinfirm","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/amltoken/","reddit":"https://www.reddit.com/r/AMLT/","slack":"","telegram":"https://t.me/AMLT_Coinfirm","twitter":"https://twitter.com/AMLT_Token","youtube":"https://www.youtube.com/watch?v=WqNMiR-bgZE"}},{"symbol":"AMN","name":"Amon","type":"ERC20","address":"0x737f98ac8ca59f2c68ad658e3c3d8c8963e40a4c","ens_address":"amntoken.eth","decimals":18,"website":"https://amon.tech","logo":{"src":"https://amon.tech/assets/img/token/amn.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"hello@amon.tech","url":"https://help.amon.tech"},"social":{"blog":"https://medium.com/@amontech","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2875733.0","github":"https://github.com/amontech","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/amon-tech","reddit":"","slack":"","telegram":"https://t.me/amontech","twitter":"https://twitter.com/amonwallet","youtube":""}},{"symbol":"AMO","name":"AMO Coin","type":"ERC20","address":"0x38c87aa89b2b8cd9b95b736e1fa7b612ea972169","ens_address":"","decimals":18,"website":"https://amo.foundation","logo":{"src":"https://amo.foundation/wordpress/wp-content/uploads/2018/05/symbol.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"support@amo.foundation","url":""},"social":{"blog":"https://medium.com/@amoblockchain","chat":"","facebook":"https://www.facebook.com/amoblockchain/","forum":"","github":"https://github.com/AMO-Project/","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/amo_blockchain_official_global","twitter":"https://twitter.com/amoblockchain","youtube":"https://www.youtube.com/channel/UCXH8Amsheu1fzeWdTQ8-sBg"}},{"symbol":"AMTC","name":"AmberTime Coin","type":"ERC20","address":"0x84936cF7630AA3e27Dd9AfF968b140d5AEE49F5a","ens_address":"","decimals":8,"website":"https://ambertime.org/","logo":{"src":"https://ambertime.org/img/amber-logo-white.png","width":"780","height":"228","ipfs_hash":""},"support":{"email":"info@ambertime.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ANT","name":"ANT","type":"ERC20","address":"0x960b236A07cf122663c4303350609A66A7B288C0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"APIS","name":"APIS","type":"ERC20","address":"0x4c0fbe1bb46612915e7967d2c3213cd4d87257ad","ens_address":"","decimals":18,"website":"https://apisplatform.io","logo":{"src":"https://apisplatform.io/img/icon_250.png","width":250,"height":250,"ipfs_hash":""},"support":{"email":"apis_official@apisplatform.io","url":""},"social":{"blog":"https://medium.com/apisplatform","chat":"","facebook":"","forum":"","github":"https://github.com/Oxchild/crowdsale","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/TheApisplatform","twitter":"https://twitter.com/Apis11Official","youtube":"https://www.youtube.com/channel/UCArVzPjkC_BrqkjFG3DZOjQ"}},{"symbol":"APPC","name":"AppCoins","type":"ERC20","address":"0x1a7a8bd9106f2b8d977e08582dc7d24c723ab0db","ens_address":"","decimals":18,"website":"https://appcoins.io","logo":{"src":"https://ibb.co/jFsGsG","width":250,"height":250,"ipfs_hash":""},"support":{"email":"info@appcoins.io","url":""},"social":{"blog":"https://medium.com/@appcoins","chat":"","facebook":"https://www.facebook.com/AppCoinsOfficial","forum":"https://bitcointalk.org/index.php?topic=2280664.0","github":"https://github.com/Aptoide/AppCoins-ethereumj","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/AppcoinsProtocol","slack":"","telegram":"https://t.me/appcoinsofficial","twitter":"https://twitter.com/AppCoinsProject","youtube":""}},{"symbol":"APT","name":"AIGang","type":"ERC20","address":"0x23ae3c5b39b12f0693e05435eeaa1e51d8c61530","ens_address":"","decimals":18,"website":"https://aigang.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@aigang.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.aigang.network","telegram":"https://t.me/aigangnetwork","twitter":"","youtube":""}},{"symbol":"ARC","name":"ARC","type":"ERC20","address":"0xAc709FcB44a43c35F0DA4e3163b117A17F3770f5","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ARCT","name":"ArbitrageCT","type":"ERC20","address":"0x1245ef80f4d9e02ed9425375e8f649b9221b31d8","ens_address":"","decimals":8,"website":"https://www.arbitragect.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@arbitragect.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/groups/arbitragect","forum":"https://bitcointalk.org/index.php?topic=2242346","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/arbitrageCT","slack":"","telegram":"https://t.me/ArbitrageCT","twitter":"https://twitter.com/arbitrage_ct","youtube":""}},{"symbol":"ARD","name":"Accord","type":"ERC20","address":"0x75aa7b0d02532f3833b66c7f0ad35376d373ddf8","ens_address":"","decimals":18,"website":"https://accordtoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@accordtoken.com","url":""},"social":{"blog":"https://medium.com/accord-ard","chat":"","facebook":"https://www.facebook.com/AccordToken","forum":"","github":"https://github.com/accordtoken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Accord_Token","youtube":""}},{"symbol":"ARN","name":"Aeron Token","type":"ERC20","address":"0xBA5F11b16B155792Cf3B2E6880E8706859A8AEB6","ens_address":"","decimals":8,"website":"https://aeron.aero","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@aeron.aero","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ART","name":"ART","type":"ERC20","address":"0xfec0cF7fE078a500abf15F1284958F22049c2C7e","ens_address":"","decimals":18,"website":"https://cofound.it/en/projects/maecenas","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cofound.it","url":""},"social":{"blog":"https://support.cofound.it/hc/en-us/articles/115001315351-Crowdsale-token-list-information","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ARX","name":"ARX","type":"ERC20","address":"0x7705FaA34B16EB6d77Dfc7812be2367ba6B0248e","ens_address":"","decimals":8,"website":"https://artex.global","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@artex.global","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/va109/Artex","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/ARTEX_GLOBAL","twitter":"","youtube":""}},{"symbol":"ARXT","name":"Assistive Reality ARX","type":"ERC20","address":"0xb0D926c1BC3d78064F3e1075D5bD9A24F35Ae6C5","ens_address":"","decimals":18,"website":"https://aronline.io","logo":{"src":"https://aronline.io/wp-content/uploads/2018/01/favicon.png","width":"100","height":"100","ipfs_hash":""},"support":{"email":"staff@aronline.io","url":"https://aronline.io/"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/AssistiveReality/","forum":"","github":"https://github.com/va109/Artex","gitter":"","instagram":"https://www.instagram.com/AssistiveReality/","linkedin":"https://www.linkedin.com/in/assistive-reality/","reddit":"","slack":"","telegram":"https://t.me/AssistiveReality_ARX","twitter":"https://twitter.com/aronline_io/","youtube":""}},{"symbol":"AST","name":"Airswap","type":"ERC20","address":"0x27054b13b1B798B345b591a4d22e6562d47eA75a","ens_address":"","decimals":4,"website":"https://airswap.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@airswap.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ATH (AIgatha Token)","name":"AIgatha Token","type":"ERC20","address":"0x1543d0F83489e82A1344DF6827B23d541F235A50","ens_address":"","decimals":18,"website":"https://aigatha.com","logo":{"src":"https://aigatha.com/img/AIgatha_Logo.png","width":"300","height":"300","ipfs_hash":""},"support":{"email":"support@aigatha.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/AIgatha-149935052349262","forum":"","github":"https://github.com/AIgatha","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/aigatha/","reddit":"https://www.reddit.com/r/AIgatha/","slack":"https://aigatha.slack.com/messages","telegram":"https://t.me/aigatha","twitter":"https://twitter.com/a_igatha","youtube":"https://www.youtube.com/channel/UCn6fx0FNK6M3og8Ew773pRw"}},{"symbol":"ATH (Athenian Warrior token)","name":"Athenian Warrior Token","type":"ERC20","address":"0x17052d51E954592C1046320c2371AbaB6C73Ef10","ens_address":"","decimals":18,"website":"https://athenianwarriortoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/ATHwarriortoken","youtube":""}},{"symbol":"ATL","name":"ATL","type":"ERC20","address":"0x78B7FADA55A64dD895D8c8c35779DD8b67fA8a05","ens_address":"","decimals":18,"website":"https://atlant.io","logo":{"src":"https://atlant.io/promo/Atlant_custom_300x300_logo.png","width":"300","height":"300","ipfs_hash":""},"support":{"email":"help@atlant.io","url":""},"social":{"blog":"https://blog.atlant.io/","chat":"https://t.me/atlant_eng","facebook":"https://business.facebook.com/atlantplatform/","forum":"https://bitcointalk.org/index.php?topic=2053239.0","github":"https://github.com/AtlantPlatform","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/atlant.io/","reddit":"https://www.reddit.com/r/atlantio/","slack":"","telegram":"https://t.me/atlant_eng","twitter":"https://twitter.com/atlantio","youtube":"https://www.youtube.com/channel/UCOunbV9gX_aB43S6chXuirw"}},{"symbol":"ATMI","name":"Atonomi","type":"ERC20","address":"0x97AEB5066E1A590e868b511457BEb6FE99d329F5","ens_address":"","decimals":18,"website":"https://atonomi.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@atonomi.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/atonomi/","forum":"","github":"https://github.com/atonomi","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/atonomi/","reddit":"","slack":"","telegram":"https://t.me/atonomi_io","twitter":"https://twitter.com/atonomi","youtube":"https://www.youtube.com/c/Atonomi"}},{"symbol":"ATT","name":"Atmatrix Token","type":"ERC20","address":"0x887834d3b8d450b6bab109c252df3da286d73ce4","ens_address":"","decimals":18,"website":"https://atmatrix.org/?locale=en","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/ATMatrix","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ATTN","name":"Attention Token","type":"ERC20","address":"0x6339784d9478da43106a429196772a029c2f177d","ens_address":"","decimals":18,"website":"https://attentionnetwork.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@attentionnetwork.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/attention_network","twitter":"https://twitter.com/attentionnet","youtube":""}},{"symbol":"AVA","name":"AVA","type":"ERC20","address":"0xeD247980396B10169BB1d36f6e278eD16700a60f","ens_address":"","decimals":4,"website":"https://avalon.nu","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@avalon.nu","url":""},"social":{"blog":"https://medium.com/@AvalonPlatform","chat":"","facebook":"https://www.facebook.com/avalonplatform","forum":"https://bitcointalk.org/index.php?topic=2065193","github":"https://github.com/AvalonPlatform","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/AvalonPlatform","slack":"","telegram":"https://t.me/joinchat/GQEIcg6hXg-QWXwzDDiOgA","twitter":"https://twitter.com/Avalonplatform","youtube":""}},{"symbol":"AVT","name":"AVT","type":"ERC20","address":"0x0d88ed6e74bbfd96b831231638b66c05571e824f","ens_address":"","decimals":18,"website":"https://aventus.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@aventus.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Aventus","slack":"https://slack.aventus.io","telegram":"","twitter":"https://twitter.com/AventusSystems","youtube":""}},{"symbol":"AX1","name":"AX1 Mining Token","type":"ERC20","address":"0xcd4b4b0f3284a33ac49c67961ec6e111708318cf","ens_address":"token.ax1mining.eth","decimals":5,"website":"https://ax1.io","logo":{"src":"https://ax1.io/images/AX1-Platinum-Coin.png","width":"100","height":"100","ipfs_hash":""},"support":{"email":"online@ax1.io","url":""},"social":{"blog":"https://medium.com/@support_98049","chat":"","facebook":"https://www.facebook.com/ax1mining/","forum":"","github":"https://github.com/Pickeringwareltd/AX1_v1.03","gitter":"","instagram":"https://www.instagram.com/ax1mining/","linkedin":"https://www.linkedin.com/company/18515393/admin/updates/","reddit":"https://www.reddit.com/r/AX1/","slack":"","telegram":"https://t.me/ax1miningico","twitter":"https://twitter.com/Ax1mining","youtube":""}},{"symbol":"AXPR","name":"AXPR","type":"ERC20","address":"0xC39E626A04C5971D770e319760D7926502975e47","ens_address":"","decimals":18,"website":"https://www.axpire.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@axpire.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Axpire-537274833301303","forum":"","github":"https://github.com/axpire/","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/aXpire/","slack":"","telegram":"https://t.me/AxpireOfficial","twitter":"https://twitter.com/aXpire_official","youtube":""}},{"symbol":"BANX","name":"BANX","type":"ERC20","address":"0xf87f0d9153fea549c728ad61cb801595a68b73de","ens_address":"","decimals":18,"website":"https://pre.ubanx.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@ubanx.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BAT","name":"BAT","type":"ERC20","address":"0x0D8775F648430679A709E98d2b0Cb6250d2887EF","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BBK","name":"BRICKBLOCK TOKEN","type":"ERC20","address":"0x4a6058666cf1057eaC3CD3A5a614620547559fc9","ens_address":"","decimals":18,"website":"https://www.brickblock.io/","logo":{"src":"https://www.brickblock.io/images/bb_logo_white.svg?crc=205463457","width":"100","height":"100","ipfs_hash":""},"support":{"email":"support@brickblock.io","url":"https://www.brickblock.io/"},"social":{"blog":"https://blog.brickblock.io/","chat":"","facebook":"https://www.facebook.com/brickblock.io/","forum":"","github":"https://github.com/brickblock-io","gitter":"","instagram":"https://www.instagram.com/brickblock.io/","linkedin":"https://www.linkedin.com/company/18035479/","reddit":"https://www.reddit.com/r/BrickBlock/","slack":"https://brickblock-team.slack.com/","telegram":"https://t.me/brickblock ","twitter":"https://twitter.com/brickblock_io","youtube":"https://www.youtube.com/channel/UC7etm1NmMFIlg2KJ6VXNNrA"}},{"symbol":"BCBC","name":"Beercoin","type":"ERC20","address":"0x7367a68039d4704f30bfbf6d948020c3b07dfc59","ens_address":"beercoin-bcbc.eth","decimals":18,"website":"https://www.beerchain.technology","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@beerchain.technology","url":"https://www.beerchain.technology"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/beerchain.technology","forum":"","github":"https://github.com/beerchain/beercoin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/beerchaintechnology","reddit":"https://www.reddit.com/r/beerchain","slack":"","telegram":"https://t.me/beerchaintechnology","twitter":"https://twitter.com/beerchaintech","youtube":""}},{"symbol":"BCDN","name":"BCDN","type":"ERC20","address":"0x1e797Ce986C3CFF4472F7D38d5C4aba55DfEFE40","ens_address":"","decimals":15,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BCDT","name":"Blockchain Certified Data Token","type":"ERC20","address":"0xacfa209fb73bf3dd5bbfb1101b9bc999c49062a5","ens_address":"bcdiploma.eth","decimals":18,"website":"https://www.bcdiploma.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contactus@blockchaincertifieddata.com","url":""},"social":{"blog":"https://medium.com/bcdiploma","chat":"","facebook":"https://www.facebook.com/BCDiploma","forum":"","github":"https://github.com/VinceBCD/BCDiploma","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/showcase/25042709","reddit":"","slack":"","telegram":"https://t.me/BCDiploma","twitter":"https://twitter.com/BCDiploma","youtube":""}},{"symbol":"BCL","name":"BCL","type":"ERC20","address":"0xbc1234552EBea32B5121190356bBa6D3Bb225bb5","ens_address":"","decimals":18,"website":"https://www.bitclave.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@bitclave.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.bitclave.com","telegram":"","twitter":"","youtube":""}},{"symbol":"BCPT","name":"BCPT","type":"ERC20","address":"0x1c4481750daa5Ff521A2a7490d9981eD46465Dbd","ens_address":"","decimals":18,"website":"https://blockmason.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@blockmason.io","url":""},"social":{"blog":"https://medium.com/@blockmason","chat":"","facebook":"https://www.facebook.com/blockmasonio","forum":"https://bitcointalk.org/index.php?topic=2129993.0","github":"https://github.com/blockmason","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/blockmason","slack":"","telegram":"https://t.me/blockmason","twitter":"https://twitter.com/blockmasonio","youtube":"https://www.youtube.com/channel/UCqv0UBWjgjM5JZkxdQR7DYw"}},{"symbol":"BCV","name":"BitCapitalVendor Token","type":"ERC20","address":"0x1014613e2b3cbc4d575054d4982e580d9b99d7b1","ens_address":"","decimals":8,"website":"https://bitcv.one/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://bitcv.one/#contact"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/BitCapitalVendor","forum":"","github":"https://github.com/bitcv","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/bcvtoken","twitter":"https://twitter.com/BCVofficial","youtube":""}},{"symbol":"BDG","name":"BitDegree Token","type":"ERC20","address":"0x1961B3331969eD52770751fC718ef530838b6dEE","ens_address":"","decimals":18,"website":"https://bitdegree.org","logo":{"src":"https://raw.githubusercontent.com/bitdegree/banners/master/logos/2515x3285_letter_black.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"hello@bitdegree.org","url":""},"social":{"blog":"blog.bitdegree.org","chat":"","facebook":"www.facebook.com/bitdegree.org","forum":"","github":"https://github.com/bitdegree","gitter":"","instagram":"https://www.instagram.com/bitdegree","linkedin":"https://www.linkedin.com/company/bitdegree","reddit":"reddit.com/r/bitdegree","slack":"","telegram":"t.me/bitdegree","twitter":"https://twitter.com/bitdegree_org","youtube":"https://www.youtube.com/channel/UCuiGDksOmsM8y-_txG3wPYg"}},{"symbol":"BEE","name":"Bee Token","type":"ERC20","address":"0x4D8fc1453a0F359e99c9675954e656D80d996FbF","ens_address":"","decimals":18,"website":"https://www.beetoken.com","logo":{"src":"https://etherscan.io/token/images/beetoken_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@thebeetoken","chat":"","facebook":"https://www.facebook.com/thebeetoken","forum":"","github":"https://github.com/thebeetoken","gitter":"","instagram":"https://www.instagram.com/thebeetoken","linkedin":"","reddit":"https://www.reddit.com/r/beetoken","slack":"","telegram":"https://t.me/beetoken","twitter":"https://twitter.com/thebeetoken","youtube":""}},{"symbol":"BeerCoin","name":"BeerCoin","type":"ERC20","address":"0x74C1E4b8caE59269ec1D85D3D4F324396048F4ac","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BERRY","name":"Berry","type":"ERC20","address":"0x6aeb95f06cda84ca345c2de0f3b7f96923a44f4c","ens_address":"","decimals":14,"website":"https://rentberry.com","logo":{"src":"https://etherscan.io/token/images/rentberry_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"hello@rentberry.com","url":"https://rentberry.com/contact"},"social":{"blog":"https://rentberry.com/blog","chat":"","facebook":"https://www.facebook.com/RentberryInc","forum":"https://bitcointalk.org/index.php?topic=2448767","github":"https://github.com/Rentberry","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/rentberry","reddit":"https://www.reddit.com/r/Rentberry","slack":"","telegram":"https://t.me/rentberry","twitter":"https://twitter.com/rentberry_","youtube":"https://www.youtube.com/channel/UC1tJKugchHhE_2Y9kWJNXLA"}},{"symbol":"BET","name":"BET","type":"ERC20","address":"0x8aA33A7899FCC8eA5fBe6A608A109c3893A1B8b2","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BETHER","name":"Bethereum","type":"ERC20","address":"0x14C926F2290044B647e1Bf2072e67B495eff1905","ens_address":"","decimals":18,"website":"https://www.bethereum.com/","logo":{"src":"https://image.ibb.co/jPRLCx/icon_default_1.png","width":250,"height":250,"ipfs_hash":""},"support":{"email":"team@bethereum.com","url":""},"social":{"blog":"https://medium.com/bethereum","chat":"","facebook":"https://www.facebook.com/bethereumproject/","forum":"https://bitcointalk.org/index.php?topic=2898723.0","github":"https://github.com/bethereumproject","gitter":"","instagram":"https://www.instagram.com/bethereum/","linkedin":"https://www.linkedin.com/company/bethereum/","reddit":"https://www.reddit.com/r/bethereum","slack":"","telegram":"https://t.me/bethereum","twitter":"https://twitter.com/bethereumteam","youtube":"https://www.youtube.com/channel/UCECoUw0v3gsAFULCVD7YSmA"}},{"symbol":"BETR","name":"BETR","type":"ERC20","address":"0x763186eb8d4856d536ed4478302971214febc6a9","ens_address":"","decimals":18,"website":"https://www.betterbetting.org","logo":{"src":"https://betterbetting.org/assets/images/bb-token-icon_w28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"info@betterbetting.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/BETRBetting","forum":"","github":"https://github.com/betterbetting","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/betterbetting/","reddit":"https://www.reddit.com/user/BETRBetting/","slack":"https://betterbetting.slack.com/","telegram":"https://t.me/betterbetting","twitter":"https://twitter.com/BETRBetting","youtube":"https://www.youtube.com/channel/UCFvNUWRiedqvcpNHqLnDAXg"}},{"symbol":"BKB","name":"BetKing Bankroll Token","type":"ERC20","address":"0xb2bfeb70b903f1baac7f2ba2c62934c7e5b974c4","ens_address":"","decimals":8,"website":"https://betking.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@betking.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/betkingcasino","forum":"https://bitcointalk.org/index.php?topic=2150057","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BetKing","slack":"","telegram":"https://t.me/joinchat/GmNTqw7kaxhGRqsJhRuzzw","twitter":"https://twitter.com/betkingio","youtube":""}},{"symbol":"BKRx","name":"BlockRx","type":"ERC20","address":"0x3cf9e0c385a5abec9fd2a71790aa344c4e8e3570","ens_address":"","decimals":18,"website":"https://www.blockrx.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BlockRX","slack":"","telegram":"","twitter":"https://twitter.com/blockrxproject","youtube":""}},{"symbol":"BKX","name":"BANKEX","type":"ERC20","address":"0x45245bc59219eeaaf6cd3f382e078a461ff9de7b","ens_address":"","decimals":18,"website":"https://bankex.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"bankex@bankex.com","url":""},"social":{"blog":"https://blog.bankex.org","chat":"","facebook":"https://www.facebook.com/BankExchange/","forum":"https://bitcointalk.org/index.php?topic=2013627.0","github":"https://github.com/BankEx","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/bankex/","slack":"","telegram":"https://t.me/bankex","twitter":"https://twitter.com/BankExProtocol","youtube":""}},{"symbol":"BLT","name":"Bloom","type":"ERC20","address":"0x107c4504cd79C5d2696Ea0030a8dD4e92601B82e","ens_address":"","decimals":18,"website":"https://hellobloom.io","logo":{"src":"https://etherscan.io/token/images/hellobloom_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"team@hellobloom.io","url":"https://hellobloom.io/faq"},"social":{"blog":"https://blog.hellobloom.io","chat":"","facebook":"https://facebook.com/bloomtoken","forum":"","github":"https://github.com/hellobloom","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BloomToken","slack":"https://slack.hellobloom.io","telegram":"https://t.me/joinchat/FFWDdQ1hxqIg3jLe7zBVFQ","twitter":"https://twitter.com/bloomtoken","youtube":"https://www.youtube.com/channel/UCaMfVoHQzwX47XKUawWVCzg"}},{"symbol":"BLX (Bullion)","name":"Bullion Crypto","type":"ERC20","address":"0xce59d29b09aae565feeef8e52f47c3cd5368c663","ens_address":"","decimals":18,"website":"www.bullioncrypto.info","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@bullioncrypto.info","url":"https://iconomi.zendesk.com/hc/en-us/requests/new"},"social":{"blog":"http://www.bullioncrypto.info/blog","chat":"","facebook":"https://facebook.com/bullioncrypto","forum":"https://bitcointalk.org/index.php?topic=2072092.0","github":"https://github.com/bullioncoin","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://bullioncoin.slack.com","telegram":"https://t.me/bullion_coin","twitter":"https://twitter.com/bullion_coin","youtube":""}},{"symbol":"BLX (Iconomi)","name":"Iconomi","type":"ERC20","address":"0xE5a7c12972f3bbFe70ed29521C8949b8Af6a0970","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"w"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BLZ","name":"Bluezelle","type":"ERC20","address":"0x5732046A883704404F284Ce41FfADd5b007FD668","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"w"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BMC","name":"Blackmoon Crypto BMC Token","type":"ERC20","address":"0xdf6ef343350780bf8c3410bf062e0c015b1dd671","ens_address":"","decimals":8,"website":"https://blackmooncrypto.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"account@blackmooncrypto.com","url":""},"social":{"blog":"https://medium.com/blackmoon-crypto","chat":"","facebook":"","forum":"","github":"https://github.com/blackmoonfg","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://blackmooncrypto.herokuapp.com","telegram":"https://t.me/blackmooncrypto","twitter":"","youtube":""}},{"symbol":"BMT","name":"BMT","type":"ERC20","address":"0xf028adee51533b1b47beaa890feb54a457f51e89","ens_address":"","decimals":18,"website":"https://bmchain.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@bmchain.io","url":""},"social":{"blog":"https://medium.io@bmchain","chat":"","facebook":"https://www.facebook.com/BMChain","forum":"https://bitcointalk.org/index.php?topic=2096750.0","github":"https://github.com/BMChain/BMChain-Token-Distribution-Interface","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BMCHAIN","slack":"","telegram":"https://t.me/bmchain","twitter":"https://twitter.com/bmchain","youtube":""}},{"symbol":"BMX","name":"BitMartToken","type":"ERC20","address":"0x986EE2B944c42D017F52Af21c4c69B84DBeA35d8","ens_address":"","decimals":18,"website":"https://www.bitmart.com","logo":{"src":"https://www.bitmart.com/images/white-logo.png","width":"100","height":"100","ipfs_hash":""},"support":{"email":"support@bitmart.com","url":"support.bitmart.com"},"social":{"blog":"https://www.facebook.com/bitmartexchange/?modal=admin_todo_tour","chat":"","facebook":"https://www.facebook.com/bitmartexchange","forum":"","github":"https://github.com/AweProton","gitter":"","instagram":"https://www.instagram.com/bitmart_exchange/","linkedin":"https://www.linkedin.com/company/bitmart","reddit":"https://www.reddit.com/r/BitMartExchange/","slack":"","telegram":"https://t.me/BitmartExchange","twitter":"https://twitter.com/BitMartExchange","youtube":"https://www.youtube.com/watch?v=Cr5-eBEWgqg"}},{"symbol":"BNB","name":"BNB","type":"ERC20","address":"0xb8c77482e45f1f44de1745f52c74426c631bdd52","ens_address":"","decimals":18,"website":"https://www.binance.com","logo":{"src":"https://etherscan.io/token/images/binance_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@binance.zendesk.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/binance2017","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/binance","slack":"","telegram":"","twitter":"https://twitter.com/binance_2017","youtube":""}},{"symbol":"BNC","name":"BNC","type":"ERC20","address":"0xdD6Bf56CA2ada24c683FAC50E37783e55B57AF9F","ens_address":"","decimals":12,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BNFT","name":"Benefits Coin","type":"ERC20","address":"0xdA2C424Fc98c741c2d4ef2f42897CEfed897CA75","ens_address":"","decimals":9,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@bnft.life","url":"http://bnft.life"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BNT","name":"Bancor","type":"ERC20","address":"0x1F573D6Fb3F13d689FF844B4cE37794d79a7FF1C","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BNTY","name":"Bounty0x Token","type":"ERC20","address":"0xd2d6158683aee4cc838067727209a0aaf4359de3","ens_address":"","decimals":18,"website":"https://bounty0x.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@bounty0x.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/bounty0x","forum":"https://bitcointalk.org/index.php?topic=2285672.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Bounty0x","slack":"","telegram":"https://t.me/bounty0x","twitter":"https://twitter.com/bounty0x","youtube":"https://www.youtube.com/channel/UCz6Sy-x4BhFR8CDT2bjGrLw"}},{"symbol":"BOB","name":"Bob's repair","type":"ERC20","address":"0xDF347911910b6c9A4286bA8E2EE5ea4a39eB2134","ens_address":"","decimals":18,"website":"https://bobsrepair.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BON","name":"Bonpay","type":"ERC20","address":"0xCc34366E3842cA1BD36c1f324d15257960fCC801","ens_address":"","decimals":18,"website":"https://bonpay.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@bonpay.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BOP","name":"BlockOptiopns Token","type":"ERC20","address":"0x7f1e2c7d6a69bf34824d72c53b4550e895c0d8c2","ens_address":"","decimals":8,"website":"https://blockoptions.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/Blockoptions-1282191258569444","forum":"https://bitcointalk.org/index.php?topic=2047320","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://slack.blockoptions.io","telegram":"","twitter":"https://twitter.com/blockoptions_io","youtube":""}},{"symbol":"BOU","name":"Boule Coin","type":"ERC20","address":"0xC2C63F23ec5E97efbD7565dF9Ec764FDc7d4e91d","ens_address":"","decimals":18,"website":"https://www.boule.one","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@boule.one","url":""},"social":{"blog":"https://medium.com/boulecoin","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/FSM1Gw0WEk5Hb-SuoIIwqA","twitter":"","youtube":""}},{"symbol":"BOX","name":"BOX Token","type":"ERC20","address":"0xe1A178B681BD05964d3e3Ed33AE731577d9d96dD","ens_address":"","decimals":18,"website":"https://box.la/","logo":{"src":"https://box.la/box_logo200px.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"contact@box.la","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/boxla888","forum":"","github":"https://github.com/boxproject","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/boxla888/","slack":"https://box-la.slack.com/","telegram":"https://t.me/safeboxla","twitter":"https://twitter.com/boxla888","youtube":""}},{"symbol":"BPT","name":"Blockport Token","type":"ERC20","address":"0x327682779bAB2BF4d1337e8974ab9dE8275A7Ca8","ens_address":"","decimals":18,"website":"https://blockport.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@blockport.io","url":""},"social":{"blog":"https://medium.com/blockport","chat":"https://t.me/blockport","facebook":"https://facebook.com/blockport","forum":"","github":"https://github.com/Blockport/tokensale","gitter":"","instagram":"https://www.instagram.com/blockport.io/","linkedin":"","reddit":"https://www.reddit.com/r/Blockport/","slack":"","telegram":"https://t.me/blockport","twitter":"https://twitter.com/Blockportio","youtube":"https://www.youtube.com/channel/UCdNoOi83qcievKU_T0jOyig"}},{"symbol":"BRAT","name":"BRAT","type":"ERC20","address":"0x9E77D5a1251b6F7D456722A6eaC6D2d5980bd891","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@brat.red","url":"https://brat.red"},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2024699.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/coinbrat","twitter":"","youtube":""}},{"symbol":"BRD","name":"Bread","type":"ERC20","address":"0x558ec3152e2eb2174905cd19aea4e34a23de9ad6","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BSDC","name":"BSDC","type":"ERC20","address":"0xf26ef5e0545384b7dcc0f297f2674189586830df","ens_address":"","decimals":18,"website":"http://bitsidea.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"bitsideahelp@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/BitsIdea/BitsIdea","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/BitsIdea","twitter":"https://twitter.com/bitsideahelp","youtube":""}},{"symbol":"BST","name":"BlocksquareToken","type":"ERC20","address":"0x509A38b7a1cC0dcd83Aa9d06214663D9eC7c7F4a","ens_address":"","decimals":18,"website":"https://blocksquare.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"future@blocksquare.io","url":""},"social":{"blog":"http://go.blocksquare.io/medium","chat":"","facebook":"http://go.blocksquare.io/facebook","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"http://go.blocksquare.io/reddit","slack":"","telegram":"http://go.blocksquare.io/telegram","twitter":"http://go.blocksquare.io/twitter","youtube":""}},{"symbol":"BTCE","name":"EthereumBitcoin","type":"ERC20","address":"0x0886949c1b8C412860c4264Ceb8083d1365e86CF","ens_address":"","decimals":8,"website":"https://btcetoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"btcetoken@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/BTCE_Token","youtube":""}},{"symbol":"BTCL","name":"BTC Lite","type":"ERC20","address":"0x5acD19b9c91e596b1f062f18e3D02da7eD8D1e50","ens_address":"","decimals":8,"website":"http://btclite.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"btclitetoken@gmail.com","url":""},"social":{"blog":"http://btclite.org/blog/","chat":"https://t.me/BTCLchat","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/btclite/","slack":"","telegram":"http://t.me/BTCLITE","twitter":"https://twitter.com/BTCliteofficial","youtube":""}},{"symbol":"BTE","name":"BTE","type":"ERC20","address":"0x73dd069c299a5d691e9836243bcaec9c8c1d8734","ens_address":"","decimals":8,"website":"http://bitcoineum.com/miner","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"http://bitcoineum.com"},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2098740.0;prev_next=prev","github":"https://github.com/bitcoineum/Sharkpool","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/ethereum/comments/6oo54i/bitcoineum_virtual_mining_on_ethereum","slack":"","telegram":"","twitter":"https://twitter.com/bitcoineum","youtube":""}},{"symbol":"BTH","name":"Bytether","type":"ERC20","address":"0xfad572db566e5234ac9fc3d570c4edc0050eaa92","ens_address":"","decimals":18,"website":"https://www.bytether.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Bytether","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/bytether","slack":"https://bytether.slack.com","telegram":"","twitter":"https://twitter.com/bytether","youtube":""}},{"symbol":"BTK","name":"Bitcoin Token","type":"ERC20","address":"0xdb8646f5b487b5dd979fac618350e85018f557d4","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"http://www.altcoinstalks.com/index.php?board=153.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/HLlnQw9SOw6HzYIehZOCMw","twitter":"https://twitter.com/bitcoin_token","youtube":""}},{"symbol":"BTL (Battle)","name":"BTL (Battle)","type":"ERC20","address":"0x2accaB9cb7a48c3E82286F0b2f8798D201F4eC3f","ens_address":"","decimals":18,"website":"http://persians.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"king.serse@gmx.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/Neurone/persians","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://battlesmartcontract.slack.com","telegram":"","twitter":"https://twitter.com/persian_token","youtube":""}},{"symbol":"BTL (Bitlle)","name":"Bitlle Token","type":"ERC20","address":"0x92685E93956537c25Bb75D5d47fca4266dd628B8","ens_address":"","decimals":4,"website":"https://bitlle.com","logo":{"src":"https://bitlle.com/img/btl.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@bitlle.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/bitlle","twitter":"","youtube":""}},{"symbol":"BTM","name":"Bytom","type":"ERC20","address":"0xcb97e65f07da24d46bcdd078ebebd7c6e6e3d750","ens_address":"","decimals":8,"website":"https://bytom.io","logo":{"src":"https://etherscan.io/token/images/bytom_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@bytom.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/bytom","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Bytom_Official","youtube":""}},{"symbol":"BTQ","name":"Bitcoin Boutique","type":"ERC20","address":"0x16B0E62aC13a2fAeD36D18bce2356d25Ab3CfAD3","ens_address":"","decimals":18,"website":"https://thebtcbtq.com","logo":{"src":"https://s9.postimg.org/6r4j2hc3z/btcbtq.png","width":"","height":"","ipfs_hash":""},"support":{"email":"btcbtq@gmail.com","url":"https://thebtcbtq.com/contact"},"social":{"blog":"https://thebtcbtq.com/blog","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?action=profile;u=1380159","github":"","gitter":"","instagram":"https://instagram.com/btcbtq","linkedin":"","reddit":"https://www.reddit.com/u/thebtcbtq","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BTT","name":"Bitether","type":"ERC20","address":"0x080aa07e2c7185150d7e4da98838a8d2feac3dfc","ens_address":"","decimals":0,"website":"https://bytom.io","logo":{"src":"https://www.bitether.co/wp-content/uploads/thegem-logos/logo_865d0b770c80162beeec3624ca062e6d_1x.png","width":164,"height":63,"ipfs_hash":""},"support":{"email":"support@bitether.co","url":""},"social":{"blog":"","chat":"","facebook":"https://t.me/BitEthercoin","forum":"","github":"https://github.com/Andyss4545/BitEther","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/BitEthercoin","twitter":"https://twitter.com/bitEther_coin","youtube":""}},{"symbol":"BTT","name":"Blocktrade.com","type":"ERC20","address":"0xFA456Cf55250A839088b27EE32A424d7DAcB54Ff","ens_address":"","decimals":18,"website":"https://blocktrade.com/","logo":{"src":"https://blocktrade.com/wp-content/uploads/2018/05/blocktradecom_logo.png?39a15b&39a15b","width":3938,"height":478,"ipfs_hash":""},"support":{"email":"support@blocktrade.com","url":"https://support.blocktrade.com/"},"social":{"blog":"https://blocktrade.com/news/","chat":"","facebook":"https://www.facebook.com/Blocktradecom/","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/blocktradecom/","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Blocktradecom","youtube":""}},{"symbol":"BTZ","name":"BTZ by Bunz","type":"ERC20","address":"0xE5f867dE1EA81346df5181b8b48DD6B0BB3357B0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"BUC","name":"BeeUnity Chain","type":"ERC20","address":"0xca3c18a65b802ec267f8f4802545e7f53d24c75e","ens_address":"","decimals":18,"website":"https://beeunity.org","logo":{"src":"http://beeunity.org/wp-content/uploads/2018/03/buc60.png","width":60,"height":37,"ipfs_hash":""},"support":{"email":"support@beeunity.org","url":""},"social":{"blog":"","chat":"","facebook":"https://goo.gl/VhHEoA","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/beeunity","reddit":"","slack":"","telegram":"https://t.me/beeunity","twitter":"https://twitter.com/beeunity","youtube":""}},{"symbol":"C20","name":"Crypto20's Token","type":"ERC20","address":"0x26E75307Fc0C021472fEb8F727839531F112f317","ens_address":"crypto20.eth","decimals":18,"website":"https://crypto20.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@crypto20.com","url":""},"social":{"blog":"https://medium.crypto20.com","chat":"","facebook":"","forum":"","github":"https://github.com/cryptotwenty","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/cryptotwenty","slack":"https://join.slack.com/t/cryptotwenty/shared_invite/enQtMjU1NjI1NDg3NjMyLWU3NTUwMzY3NzA1MzFlYTMyMDYxYTQ5OTFhMzhhZDU4NWJkZjVhN2M2NTE2MDhhYTEyM2IwNWE4ZmQ3YTk5N2Y","telegram":"","twitter":"https://twitter.com/CRYPTOtwenty","youtube":""}},{"symbol":"C8","name":"Carboneum","type":"ERC20","address":"0xd42debE4eDc92Bd5a3FBb4243e1ecCf6d63A4A5d","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CAG","name":"Change Bank","type":"ERC20","address":"0x7d4b8Cce0591C9044a22ee543533b72E976E36C3","ens_address":"","decimals":18,"website":"https://change-bank.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@change-bank.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://coinchange.slack.com","telegram":"https://t.me/joinchat/GWX8HkLwpOoocINbLXfRtg","twitter":"","youtube":""}},{"symbol":"CAN","name":"CAN","type":"ERC20","address":"0x1d462414fe14cf489c7A21CaC78509f4bF8CD7c0","ens_address":"","decimals":6,"website":"https://canya.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"support@canya.io"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/canya-io","slack":"","telegram":"https://t.me/joinchat/HBzcbUP42NwHZKBwnEIkkw","twitter":"https://twitter.com/canya_io","youtube":""}},{"symbol":"CAR","name":"Car Sharing Community","type":"ERC20","address":"0x423e4322cdda29156b49a17dfbd2acc4b280600d","ens_address":"","decimals":9,"website":"https://mycarcoin.com","logo":{"src":"https://mycarcoin.com/Carcoin/img/logo-carcoin.png","width":291,"height":291,"ipfs_hash":""},"support":{"email":"support@mycarcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/mycaroin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CSCGLOBALL1","youtube":""}},{"symbol":"CAR (CarBlock)","name":"CarBlock","type":"ERC20","address":"0x4d9e23a3842fe7eb7682b9725cf6c507c424a41b","ens_address":"","decimals":18,"website":"https://www.carblock.io","logo":{"src":"https://www.carblock.io/logo-400x400.png","width":400,"height":400,"ipfs_hash":""},"support":{"email":"support@carblock.io","url":""},"social":{"blog":"https://medium.com/carblock","chat":"","facebook":"https://www.facebook.com/carblockofficial/?ref=aymt_homepage_panel","forum":"","github":"https://github.com/carblock-io","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/carblockglobal","twitter":"https://twitter.com/carblock_io","youtube":"https://www.youtube.com/channel/UCjgN4_1Jvv1KlETeoWalBVA"}},{"symbol":"CARB","name":"CarbCoin","type":"ERC20","address":"0xa517a46baad6b054a76bd19c46844f717fe69fea","ens_address":"","decimals":8,"website":"https://carbcoin.eu/","logo":{"src":"https://carbcoin.eu/logo.jpg","width":400,"height":400,"ipfs_hash":""},"support":{"email":"support@carbcoin.com","url":"https://carbcoin.eu/"},"social":{"blog":"https://medium.com/@carbcoin","chat":"","facebook":"https://www.facebook.com/CarbCoin-1965160970477337/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CarbCoin","youtube":""}},{"symbol":"CARD","name":"Cardstack Token","type":"ERC20","address":"0xB07ec2c28834B889b1CE527Ca0F19364cD38935c","ens_address":"","decimals":0,"website":"https://cardstack.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cardstack.com","url":""},"social":{"blog":"https://medium.com/cardstack","chat":"","facebook":"","forum":"","github":"https://github.com/cardstack","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://telegram.me/cardstack","twitter":"https://twitter.com/cardstack","youtube":""}},{"symbol":"CARE","name":"Token CARE","type":"ERC20","address":"0xbf18f246b9301f231e9561b35a3879769bb46375","ens_address":"","decimals":18,"website":"https://tombcare.com/","logo":{"src":"https://tombcare.com/images/logo.png","width":"45","height":"45","ipfs_hash":""},"support":{"email":"support@tombcare.com","url":"https://t.me/tombcare"},"social":{"blog":"https://medium.com/tombcare","chat":"https://t.me/tombcare","facebook":"https://www.facebook.com/TombCare/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/tombcare/","slack":"","telegram":"https://t.me/tombcare","twitter":"https://twitter.com/TombCare","youtube":"https://www.youtube.com/channel/UCCzBf2groMdCzeE4akKwRpA"}},{"symbol":"CAS","name":"Cashaa","type":"ERC20","address":"0xe8780B48bdb05F928697A5e8155f672ED91462F7","ens_address":"","decimals":18,"website":"https://cashaa.com","logo":{"src":"https://cashaa.com/img/tkn-icon1.png","width":20,"height":20,"ipfs_hash":""},"support":{"email":"hello@cashaa.com","url":"https://cashaa.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/cashaaLtd","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/CashaaLtd","twitter":"https://twitter.com/CashaaLTD","youtube":"https://www.youtube.com/channel/UCwRJjX6dNz49j3Pc0ROZJbg"}},{"symbol":"CAT (BitClave)","name":"CAT (BitClave)","type":"ERC20","address":"0x1234567461d3f8db7496581774bd869c83d51c93","ens_address":"","decimals":18,"website":"https://www.bitclave.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@bitclave.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.bitclave.com","telegram":"","twitter":"","youtube":""}},{"symbol":"CAT (Blockcat)","name":"CAT (Blockcat)","type":"ERC20","address":"0x56ba2Ee7890461f463F7be02aAC3099f6d5811A8","ens_address":"","decimals":18,"website":"https://blockcat.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@blockcat.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.blockcat.io","telegram":"","twitter":"https://twitter.com/blockcatio","youtube":""}},{"symbol":"CATs (BitClave)_Old","name":"CATs (BitClave)_Old","type":"ERC20","address":"0x68e14bb5A45B9681327E16E528084B9d962C1a39","ens_address":"","decimals":18,"website":"https://www.bitclave.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@bitclave.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.bitclave.com","telegram":"","twitter":"","youtube":""}},{"symbol":"CBIX","name":"Cubrix","type":"ERC20","address":"0x05c3617cbf1304b9260aa61ec960f115d67becea","ens_address":"","decimals":18,"website":"https://cubrix.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cubrix.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/Cubrixio","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/cubrixio","twitter":"https://twitter.com/Cubrix3","youtube":""}},{"symbol":"CC3","name":"Coal Coin","type":"ERC20","address":"0xc166038705FFBAb3794185b3a9D925632A1DF37D","ens_address":"","decimals":18,"website":"https://coalcoin.tech/en","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@coalcoin.tech","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/coal.coin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CoalCoin","youtube":"https://www.youtube.com/channel/UC3EW4C952V3apzqOPMo0bMA"}},{"symbol":"CCC (CryptoCrashCourse)","name":"CryptoCrashCourse","type":"ERC20","address":"0x28577A6d31559bd265Ce3ADB62d0458550F7b8a7","ens_address":"","decimals":18,"website":"http://cryptocrashcourse.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@blockchainlead.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/blockchainlead","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/CryptoCrashCourse","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CCC (ICONOMI)","name":"CCC (ICONOMI)","type":"ERC20","address":"0xbe11eeb186e624b8f26a5045575a1340e4054552","ens_address":"","decimals":18,"website":"https://www.iconomi.net/dashboard/#/daa/CCC","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@iconomi.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CCLC","name":"Christ Coin","type":"ERC20","address":"0xd348e07a2806505b856123045d27aeed90924b50","ens_address":"christcoins.eth","decimals":8,"website":"https://christcoins.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@christcoins.io","url":""},"social":{"blog":"https://lifechange.io/app/posts","chat":"","facebook":"https://www.facebook.com/Lifechange.io","forum":"","github":"https://github.com/lifechange-io/christ-coin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/LifeChangeNetwork","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CCS","name":"CacaoShares","type":"ERC20","address":"0x315ce59fafd3a8d562b7ec1c8542382d2710b06c","ens_address":"cacaoshares.eth","decimals":18,"website":"http://www.cacaoshares.com","logo":{"src":"http://cacaoshares.com/wp-content/uploads/2017/12/cropped-logo-cherry-2018-1-e1513046302595.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"ico@1cacaoshares.com","url":"http://www.cacaoshares.com"},"social":{"blog":"http://www.cacaoshares.com/blog","chat":"","facebook":"","forum":"","github":"github.com/AnalemaTechnologies/CacaoShares","gitter":"","instagram":"http://www.instagram.com/cacaoshares","linkedin":"https://www.linkedin.com/company/cacaoshares","reddit":"","slack":"","telegram":"https://t.me/joinchat/FoJjLkP1Qxh9yZbCZ5mC9A","twitter":"https://twitter.com/cacaoshares","youtube":""}},{"symbol":"CDL","name":"Confideal","type":"ERC20","address":"0x8a95ca448A52C0ADf0054bB3402dC5e09CD6B232","ens_address":"","decimals":18,"website":"https://confideal.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@confideal.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/confideal.io","forum":"","github":"https://github.com/confideal","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/11040676","reddit":"https://www.reddit.com/r/Confideal","slack":"","telegram":"https://t.me/confidealioeng","twitter":"https://twitter.com/confideal_io","youtube":""}},{"symbol":"CDT","name":"CoinDash","type":"ERC20","address":"0x177d39AC676ED1C67A2b268AD7F1E58826E5B0af","ens_address":"","decimals":18,"website":"https://www.coindash.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://www.twitter.com/CoinDashio","youtube":""}},{"symbol":"CDX","name":"CDX","type":"ERC20","address":"0x6fFF3806Bbac52A20e0d79BC538d527f6a22c96b","ens_address":"","decimals":18,"website":"https://commodityadnetwork.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@commodityadnetwork.com","url":"https://commodityadnetwork.com/contact"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CDX","name":"Carbon Dollar X","type":"ERC20","address":"0x2cb101d7da0ebaa57d3f2fef46d7ffb7bb64592b","ens_address":"","decimals":0,"website":"https://www.carbondollarx.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@carbondollarx.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/carbondollarx","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/carbondollarx","linkedin":"https://www.linkedin.com/company/carbondollarx","reddit":"https://www.reddit.com/u/carbondollarx","slack":"","telegram":"https://t.me/carbondollarx","twitter":"https://www.twitter.com/carbondollarx","youtube":"https://www.youtube.com/channel/UCpUjgQVqPrVjiqF3EHwmmVg"}},{"symbol":"CEEK","name":"CEEK VR Token","type":"ERC20","address":"0xb056c38f6b7dc4064367403e26424cd2c60655e1","ens_address":"","decimals":18,"website":"https://www.ceek.com/","logo":{"src":"https://www.ceek.io/wp-content/uploads/2018/04/coin.png","width":"317","height":"308","ipfs_hash":""},"support":{"email":"success@ceek.com","url":"https://www.ceek.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/ceekvrtokensale","twitter":"https://twitter.com/CEEK","youtube":""}},{"symbol":"CET","name":"DICE Money Dicet","type":"ERC20","address":"0xf660ca1e228e7be1fa8b4f5583145e31147fb577","ens_address":"","decimals":18,"website":"https://dice.money/","logo":{"src":"https://www.dropbox.com/s/5ag9npp048m1qf0/logo_transparent_small.png?dl=0","width":"480","height":"480","ipfs_hash":""},"support":{"email":"contact@dice.money","url":"https://dice.money"},"social":{"blog":"https://medium.com/@DICEsup/","chat":"","facebook":"https://www.facebook.com/DICEsup/","forum":"","github":"https://github.com/DICE-Money/","gitter":"","instagram":"https://www.instagram.com/DICEsup/","linkedin":"linkedin.com/company/dice-money/","reddit":"https://www.reddit.com/r/DICEsup/","slack":"","telegram":"https://t.me/DICEMoneyNews","twitter":"https://twitter.com/DICEsup","youtube":"https://www.youtube.com/channel/UCQAJZnp670MZWnNbZY_ovsg"}},{"symbol":"CFC","name":"CryptFillCoin","type":"ERC20","address":"0x5dff89a2caa4d76bc286f74d67bd718eb834da61","ens_address":"","decimals":18,"website":"https://cryptfillcoin.com","logo":{"src":"https://cryptfillcoin.com/images/resources/logo.png","width":"60","height":"60","ipfs_hash":""},"support":{"email":"info@cryptfillcoin.com","url":"https://cryptfillcoin.com/"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/cryptfill/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CFI","name":"CFI","type":"ERC20","address":"0x12FEF5e57bF45873Cd9B62E9DBd7BFb99e32D73e","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CFTY","name":"Crafty Token","type":"ERC20","address":"0x6956983f8b3ce173b4ab84361aa0ad52f38d936f","ens_address":"","decimals":8,"website":"https://crafty.work/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@crafty.work","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/crafty.wk","forum":"","github":"https://github.com/crafty-work","gitter":"","instagram":"https://www.instagram.com/craftywork_/","linkedin":"https://www.linkedin.com/company/crafty-work/","reddit":"https://www.reddit.com/user/crafty_work/","slack":"","telegram":"https://t.me/joinchat/B9-OJQ8acnW_cSAOPAXDXw","twitter":"https://twitter.com/craftywork_","youtube":"https://www.youtube.com/channel/UCkUk22YsTDWiFUMoI_y9kpQ"}},{"symbol":"CHSB","name":"CHSB","type":"ERC20","address":"0xba9d4199fab4f26efe3551d490e3821486f135ba","ens_address":"","decimals":8,"website":"https://swissborg.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CK","name":"CK","type":"ERC20","address":"0x06012c8cf97bead5deae237070f9587f8e7a266d","ens_address":"","decimals":0,"website":"https://cryptokitties.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/CryptoKitties","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CLB","name":"Cloudbric","type":"ERC20","address":"0xb1c1cb8c7c1992dba24e628bf7d38e71dad46aeb","ens_address":"","decimals":18,"website":"https://www.cloudbric.io/","logo":{"src":"https://uploads-ssl.webflow.com/5ad9bd61b926b5696f03050f/5ad9bdd84bee8e3cee66af78_CLB_symbol_white%20(1).png","width":"814","height":"976","ipfs_hash":""},"support":{"email":"ico@cloudbric.com","url":""},"social":{"blog":"https://cloudbric.com/blog","chat":"https://t.me/cloudbric","facebook":"http://www.facebook.com/cloudbric","forum":"","github":"https://github.com/Cloudbric-Project","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/cloudbric/","reddit":"https://www.reddit.com/r/cloudbric/","slack":"","telegram":"https://t.me/cloudbric","twitter":"http://www.twitter.com/cloudbric","youtube":""}},{"symbol":"CLL","name":"CryptoLiveLeak","type":"ERC20","address":"0x3dc9a42fa7afe57be03c58fd7f4411b1e466c508","ens_address":"","decimals":18,"website":"https://www.cryptoliveleak.com/","logo":{"src":"https://github.com/CryptoLiveLeak/CLL-Token/blob/master/28%20x%2028%20CLL%20png.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"contactus@cryptoliveleak.com","url":""},"social":{"blog":"https://medium.com/@cryptoliveleak","chat":"","facebook":"https://www.facebook.com/CryptoLiveLeak/","forum":"","github":"https://github.com/CryptoLiveLeak/CLL-Token","gitter":"","instagram":"https://www.instagram.com/cryptoliveleak/","linkedin":"","reddit":"https://www.reddit.com/r/CryptoLiveLeak/","slack":"","telegram":"https://t.me/CryptoLiveLeak","twitter":"https://twitter.com/CryptoLiveLeak","youtube":"https://www.youtube.com/channel/UCeoB_bpoVOcwIh-MSLxzNpA"}},{"symbol":"CLN","name":"ColuLocalNetwork","type":"ERC20","address":"0x4162178B78D6985480A308B2190EE5517460406D","ens_address":"","decimals":18,"website":"https://cln.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"cln@colu.com","url":""},"social":{"blog":"https://medium.com/colu","chat":"","facebook":"https://www.facebook.com/ColuNetwork/","forum":"","github":"https://github.com/colucom/CLN-solidity","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/Gcrd9Q_E_rgGEjDqmn9Gtg","twitter":"https://twitter.com/ColuNetwork","youtube":""}},{"symbol":"CLP","name":"CryptoLending","type":"ERC20","address":"0x7fce2856899a6806eeef70807985fc7554c66340","ens_address":"","decimals":9,"website":"https://cryptolending.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"henry@cryptolending.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CLPcoin-125929678066347","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CMBT","name":"CMBToken","type":"ERC20","address":"0x3edd235c3e840c1f29286b2e39370a255c7b6fdb","ens_address":"","decimals":8,"website":"https://www.coinmarketbrasil.com.br","logo":{"src":"https://2.bp.blogspot.com/-J35HB-_P0u8/WngvMTjjb6I/AAAAAAAAKzI/KO0DgrLZAV0TxF8dc3faw36XqR9msmP2gCLcBGAs/s1600/eth-cmbt.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"atendimento@coinmarketbrasil.com.br","url":""},"social":{"blog":"https://blog.coinmarketbrasil.com.br/","chat":"","facebook":"https://www.facebook.com/coinmarketbr","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/11386115/","reddit":"https://www.reddit.com/r/CryptoMartCMC","slack":"","telegram":"","twitter":"https://twitter.com/CoinMarketBR","youtube":"https://www.youtube.com/channel/UC97StlfGfolk4nsxDv4tcsw"}},{"symbol":"CMC","name":"CryptoMart","type":"ERC20","address":"0x7e667525521cF61352e2E01b50FaaaE7Df39749a","ens_address":"","decimals":18,"website":"https://www.cryptomart.me","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/CryptoMartCMC","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CMT","name":"CyberMiles Token","type":"ERC20","address":"0xf85fEea2FdD81d51177F6b8F35F0e6734Ce45F5F","ens_address":"","decimals":18,"website":"https://cm.5miles.com","logo":{"src":"http://res.5milesapp.com/image/upload/v1512116368/ico/cmt28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@5miles.com","url":""},"social":{"blog":"http://www.cybermiles.io","chat":"","facebook":"https://www.facebook.com/cybermiles","forum":"","github":"https://github.com/CyberMiles","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/CyberMiles","slack":"https://slack.5miles.com","telegram":"https://t.me/cybermilestoken","twitter":"https://twitter.com/cybermiles","youtube":""}},{"symbol":"CNB","name":"Canabio","type":"ERC20","address":"0xEBf2F9E8De960f64ec0fDCDa6Cb282423133347B","ens_address":"","decimals":8,"website":"https://canabio.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@canabio.net","url":"https://canabio.net"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CanabioToken","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CanabioProject","youtube":""}},{"symbol":"CND","name":"Cindicator","type":"ERC20","address":"0xd4c435f5b09f855c3317c8524cb1f586e42795fa","ens_address":"","decimals":18,"website":"https://cindicator.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cindicator.com","url":"https://cindicator.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/crowdindicator","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Cindicator","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CO2","name":"Climatecoin","type":"ERC20","address":"0xB4b1D2C217EC0776584CE08D3DD98F90EDedA44b","ens_address":"","decimals":18,"website":"https://climatecoin.io","logo":{"src":"https://climatecoin.io/uploads/logosmall-1-42x42.png","width":"42","height":"42","ipfs_hash":""},"support":{"email":"info@climatecoin.com","url":"https://climatecoin.io"},"social":{"blog":"https://medium.com/@Climatecoin","chat":"https://t.me/joinchat/Fy8RMAvg7dTdD0ZhOu1a1w","facebook":"https://www.facebook.com/climatecoinofficial","forum":"https://bitcointalk.org/index.php?topic=2188692.0","github":"https://github.com/climatecoinio","gitter":"","instagram":"https://www.instagram.com/climatecoin","linkedin":"https://www.linkedin.com/company/11229823","reddit":"https://www.reddit.com/user/CLIMATECOIN","slack":"https://climatecoinofficial.slack.com","telegram":"https://t.me/climatecoinofficial","twitter":"https://twitter.com/infoclimatecoin","youtube":"https://www.youtube.com/channel/UCa5Q35bRxMZDBcEAEgfisKA"}},{"symbol":"CO2Bit","name":"CO2Bit","type":"ERC20","address":"0x574b36bced443338875d171cc377e691f7d4f887","ens_address":"co2energy.eth","decimals":18,"website":"https://co2bit.com","logo":{"src":"http://co2bit.com/wp-content/uploads/2017/12/28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"info@co2bit.com","url":"https://co2bit.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"COB","name":"Cobinhood Token","type":"ERC20","address":"0xb2f7eb1f2c37645be61d73953035360e768d81e6","ens_address":"","decimals":18,"website":"https://cobinhood.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cobinhood.com","url":""},"social":{"blog":"https://medium.com/@cobinhood","chat":"","facebook":"","forum":"","github":"https://github.com/cobinhood","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://slack.cobinhood.com","telegram":"https://t.me/cobinhood","twitter":"https://twitter.com/cobinhood","youtube":""}},{"symbol":"COFI","name":"CoinFi Token","type":"ERC20","address":"0x3136eF851592aCf49CA4C825131E364170FA32b3","ens_address":"","decimals":18,"website":"https://www.coinfi.com","logo":{"src":"https://blog.coinfi.com/wp-content/uploads/2018/01/coinfi-token-logo_28x28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@coinfi.com","url":""},"social":{"blog":"https://blog.coinfi.com","chat":"","facebook":"https://www.facebook.com/coinfiproject","forum":"","github":"https://github.com/coinfi","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/u/coinfi","slack":"","telegram":"https://t.me/coinfi","twitter":"https://twitter.com/coin_fi","youtube":""}},{"symbol":"COIL","name":"CoinOil","type":"ERC20","address":"0x0c91b015aba6f7b4738dcd36e7410138b29adc29","ens_address":"","decimals":8,"website":"https://coinoil.io/","logo":{"src":"https://coinoil.io/oldw/assets/images/logo/icon.png","width":"146","height":"157","ipfs_hash":""},"support":{"email":"support@Coinoil.io","url":""},"social":{"blog":"","chat":"","facebook":"https://fb.com/CoinOil","forum":"","github":"https://github.com/CoinOil","gitter":"","instagram":"https://instagram.com/coinoil.io","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://www.twitter.com/Coinoil","youtube":""}},{"symbol":"COIN","name":"Coinvest V2 Token","type":"ERC20","address":"0x5e8f855966d638135a968861e80dda722291b06d","ens_address":"","decimals":18,"website":"https://coinve.st","logo":{"src":"https://coinve.st/assets/images/Coinvest_Profile.png","width":"250","height":"250","ipfs_hash":""},"support":{"email":"support@coinve.st","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CoinvestHQ","forum":"https://bitcointalk.org/index.php?topic=2381017.0","github":"https://github.com/CoinvestHQ","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/coinvesthq/","reddit":"http://reddit.com/r/Coinvest","slack":"","telegram":"https://t.me/CoinvestHQ","twitter":"https://www.twitter.com/CoinvestHQ","youtube":"https://www.youtube.com/channel/UCX-pE6nXFg3uK2_cMQ5n6jA"}},{"symbol":"COSS","name":"COSS","type":"ERC20","address":"0x65292eeadf1426cd2df1c4793a3d7519f253913b","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"COSS","name":"Coss Token","type":"ERC20","address":"0x9e96604445ec19ffed9a5e8dd7b50a29c899a10c","ens_address":"","decimals":18,"website":"https://coss.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@coss.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"COV","name":"Covesting","type":"ERC20","address":"0xE2FB6529EF566a080e6d23dE0bd351311087D567","ens_address":"","decimals":18,"website":"https://covesting.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/covesting","slack":"","telegram":"","twitter":"https://twitter.com/covesting","youtube":""}},{"symbol":"CPEX","name":"CoinPulseToken","type":"ERC20","address":"0xb787d4eac8899730bb8c57fc3c998c49c5244ec0","ens_address":"","decimals":8,"website":"https://CoinPulse.io","logo":{"src":"https://i.imgur.com/GaPxtv5.png","width":256,"height":256,"ipfs_hash":""},"support":{"email":"support@coinpulse.io","url":"https://coinpulse.io"},"social":{"blog":"https://medium.com/@coinpulse","chat":"https://t.me/coinpulseex","facebook":"https://www.facebook.com/coinpulseex","forum":"https://bitcointalk.org/index.php?topic=2432836.0","github":"https://github.com/coinpulse","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/coinpulseex","slack":"https://coinpulse.slack.com/join/shared_invite/enQtMjc0MzkwMjk3NjY0LTE4YzZlNWUyMWJiNjQwMDI0MGJkYjAxMzA2ODU2ZDAzYTBiN2Y4NDI2NTljYTBmMWMxNmM0ZDIyNjQ0M2JmMTA","telegram":"https://t.me/coinpulseex","twitter":"https://twitter.com/coinpulseex","youtube":"https://youtube.com/coinpulseexchange"}},{"symbol":"CPY","name":"COPYTRACK","type":"ERC20","address":"0xf44745fbd41f6a1ba151df190db0564c5fcc4410","ens_address":"","decimals":18,"website":"https://copytrack.io","logo":{"src":"https://cdn.copytrack.io/media/cpy.png?auto=compress&w=200","width":200,"height":200,"ipfs_hash":""},"support":{"email":"support@copytrack.io","url":"https://copytrack.io"},"social":{"blog":"https://medium.com/aditusnetwork","chat":"","facebook":"https://www.facebook.com/COPYTRACK","forum":"","github":"https://github.com/aditus","gitter":"","instagram":"https://www.instagram.com/copytrack","linkedin":"https://www.linkedin.com/company/10840600","reddit":"","slack":"","telegram":"https://t.me/copytrackhq","twitter":"https://twitter.com/CopytrackHQ","youtube":""}},{"symbol":"CR7","name":"CR7Coin","type":"ERC20","address":"0x7f585b9130c64e9e9f470b618a7badd03d79ca7e","ens_address":"","decimals":18,"website":"https://cr7coin.org","logo":{"src":"https://cr7coin.org/assets/images/logo2.png","width":200,"height":200,"ipfs_hash":""},"support":{"email":"hello@cr7coin.org","url":"https://cr7coin.org"},"social":{"blog":"https://medium.com/@CR7Coin","chat":"","facebook":"https://www.facebook.com/CR7Coin","forum":"","github":"https://github.com/CR7CoinProject","gitter":"","instagram":"https://www.instagram.com/CR7Coin","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/CR7Coin","twitter":"https://twitter.com/TheCR7Coin","youtube":""}},{"symbol":"CRB","name":"CRB","type":"ERC20","address":"0xAef38fBFBF932D1AeF3B808Bc8fBd8Cd8E1f8BC5","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CRED","name":"CRED","type":"ERC20","address":"0x672a1AD4f667FB18A333Af13667aa0Af1F5b5bDD","ens_address":"","decimals":18,"website":"https://verify.as","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@verify.as","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/verifyas","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/verifyas","twitter":"","youtube":""}},{"symbol":"CREDO","name":"Credo / Bitbounce","type":"ERC20","address":"0x4e0603e2a27a30480e5e3a4fe548e29ef12f64be","ens_address":"","decimals":18,"website":"https://bitbounce.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"stewart@team.bitbounce.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CRGO","name":"CargoCoin","type":"ERC20","address":"0xf49cdd50ad408d387d611f88a647179c3de3492b","ens_address":"","decimals":18,"website":"https://thecargocoin.com","logo":{"src":"https://thecargocoin.com/images/logo_icon.png","width":"44","height":"44","ipfs_hash":""},"support":{"email":"info@thecargocoin.com","url":"https://thecargocoin.com/contact.html"},"social":{"blog":"https://medium.com/@thecargocoin","chat":"","facebook":"https://www.facebook.com/thecargocoin/","forum":"https://bitcointalk.org/index.php?topic=3224289","github":"https://github.com/CargoCoinRepo/Cargo-Coin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/cargocoin/","reddit":"https://www.reddit.com/user/thecargocoin","slack":"https://thecargocoin.slack.com/","telegram":"http://t.me/thecargocoingroup","twitter":"https://twitter.com/thecargocoin","youtube":"https://www.youtube.com/c/CargoCoin"}},{"symbol":"CRMT","name":"Cremit","type":"ERC20","address":"0x9238bfb781a55eacc3cf05f7df94038c198cd9b9","ens_address":"","decimals":8,"website":"https://www.cremit.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@cremit.co","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CRPT","name":"CrypteriumToken","type":"ERC20","address":"0x80a7e048f37a50500351c204cb407766fa3bae7f","ens_address":"","decimals":18,"website":"https://crypterium.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@crypterium.io","url":""},"social":{"blog":"https://medium.com/@crypterium_io","chat":"","facebook":"https://www.facebook.com/crypterium.io","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/crypterium","reddit":"","slack":"","telegram":"https://t.me/crypterium","twitter":"https://twitter.com/@crypterium","youtube":"https://www.youtube.com/channel/UCulhwOW251X2fpRJ7bTCCvg"}},{"symbol":"CRT","name":"CreamtoeCoin","type":"ERC20","address":"0xF0da1186a4977226b9135d0613ee72e229EC3F4d","ens_address":"","decimals":18,"website":"http://creamtoecoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@creamtoecoin.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CryptoCarbon","name":"CryptoCarbon","type":"ERC20","address":"0xE4c94d45f7Aef7018a5D66f44aF780ec6023378e","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CTF","name":"CryptoTask","type":"ERC20","address":"0x4545750F39aF6Be4F237B6869D4EccA928Fd5A85","ens_address":"","decimals":18,"website":"www.cryptotask.org","logo":{"src":"https://www.cryptotask.org/wp-content/uploads/2017/10/Logo_H-01.svg","width":"","height":"","ipfs_hash":""},"support":{"email":"info@cryptotask.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/vkajic/cryptotask","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CTG","name":"CT Global Token","type":"ERC20","address":"0xc87c5dd86a3d567ff28701886fb0745aaa898da4","ens_address":"christiantraders.eth","decimals":18,"website":"https://christiantraders.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@christiantraders.com","url":"https://christiantraders.com"},"social":{"blog":"http://emini.cfrn.net","chat":"https://christiantraders.com","facebook":"facebook.com/cryptodailyinfo/","forum":"https://discordapp.com/channels/432450856319975424/432451525093359618","github":"github.com/CTGlobal/ChristianTraders","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/dewayne-reeves/","reddit":"","slack":"","telegram":"https://t.me/ChristianTraders","twitter":"https://twitter.com/cryptodailyinfo","youtube":"https://youtube.com/CFRN"}},{"symbol":"CTGC","name":"Convenient To Go","type":"ERC20","address":"0x9e7d29bd499b6c7da2a5b2eafcf4a39d3bd845d1","ens_address":"christiantraders.eth","decimals":18,"website":"https://www.ctgcoin.org","logo":{"src":"https://www.ctgcoin.org/upload/logo/ctg.logo.png","width":"68","height":"41","ipfs_hash":""},"support":{"email":"support@ctgcoin.org","url":"https://www.ctgcoin.org"},"social":{"blog":"https://weibo.com/6550499942/info","chat":"","facebook":"https://www.facebook.com/ctg.coin","forum":"","github":"https://github.com/ctgcoin/","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://telegram.me/CTGgroup","twitter":"https://twitter.com/CtGcoin","youtube":""}},{"symbol":"CTL","name":"CTL","type":"ERC20","address":"0xbf4cfd7d1edeeea5f6600827411b41a21eb08abd","ens_address":"","decimals":2,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CTT","name":"ChainTrade Token","type":"ERC20","address":"0xE3Fa177AcecfB86721Cf6f9f4206bd3Bd672D7d5","ens_address":"","decimals":18,"website":"https://chaintrade.net","logo":{"src":"https://chaintrade.net/wp-content/uploads/2017/09/chaintrade-logo-600x600.png","width":600,"height":600,"ipfs_hash":""},"support":{"email":"contact@chaintrade.net","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/ChainTrade","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/ChainTrade","youtube":"https://www.youtube.com/channel/UCUuSL2luzBpErQ32mHhp10Q"}},{"symbol":"CTX","name":"CarTaxi","type":"ERC20","address":"0x662aBcAd0b7f345AB7FfB1b1fbb9Df7894f18e66","ens_address":"","decimals":18,"website":"https://cartaxi.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@cartaxi.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/cartaxi.io","forum":"https://bitcointalk.org/index.php?topic=2113124","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/cartaxi_io","twitter":"https://twitter.com/CarTaxi_24","youtube":""}},{"symbol":"cV","name":"carVertical","type":"ERC20","address":"0xdA6cb58A0D0C01610a29c5A65c303e13e885887C","ens_address":"","decimals":18,"website":"https://www.carvertical.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@carvertical.com","url":""},"social":{"blog":"https://www.carvertical.com/#blog","chat":"","facebook":"https://www.facebook.com/cartaxi.io","forum":"https://bitcointalk.org/index.php?topic=2113124","github":"https://github.com/carVertical","gitter":"","instagram":"https://www.instagram.com/carvertical.io","linkedin":"https://www.linkedin.com/company/18321878","reddit":"https://www.reddit.com/r/carVertical","slack":"","telegram":"https://t.me/carVerticalio","twitter":"https://twitter.com/verticalcar","youtube":"https://www.youtube.com/channel/UCRqoBXtP2v0H8C844YN8mdA"}},{"symbol":"CVC","name":"CVC","type":"ERC20","address":"0x41e5560054824ea6b0732e656e3ad64e20e94e45","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"CXC","name":"CoxxxCoin","type":"ERC20","address":"0x2134057c0b461f898d375cead652acae62b59541","ens_address":"","decimals":18,"website":"http://coxxxcoin.com","logo":{"src":"http://www.coxxxcoin.com/CoxxxCoin.256.png","width":"","height":"","ipfs_hash":""},"support":{"email":"coxxxcoin@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/coxxxcoin/smart_contract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/CoxxxCoin/","slack":"https://coxxxcoin.slack.com","telegram":"","twitter":"https://twitter.com/coxxxcoin","youtube":""}},{"symbol":"CXO","name":"CargoX","type":"ERC20","address":"0xb6EE9668771a79be7967ee29a63D4184F8097143","ens_address":"","decimals":18,"website":"https://cargox.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@cargox.io","url":""},"social":{"blog":"https://medium.com/cargoxio","chat":"","facebook":"https://www.facebook.com/cargox.io","forum":"","github":"https://github.com/cargoxio","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/cargoxio","slack":"","telegram":"https://t.me/joinchat/GAKhBQ48675fRRMEd-kLcw","twitter":"https://twitter.com/cargoxio","youtube":""}},{"symbol":"CYFM","name":"CyberFM","type":"ERC20","address":"0x3f06B5D78406cD97bdf10f5C420B241D32759c80","ens_address":"","decimals":18,"website":"https://cyberfmradio.com","logo":{"src":"https://mftu.net/tokeninfo/cyfm/0x3f06B5D78406cD97bdf10f5C420B241D32759c80.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"service@cyberfmradio.com","url":""},"social":{"blog":"https://mftu.net/site","chat":"","facebook":"https://facebook.com/cyberfm","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/cyberfm","slack":"","telegram":"https://t.me/mftudotnet","twitter":"https://twitter.com/cyber_fm","youtube":""}},{"symbol":"DAB","name":"DAB","type":"ERC20","address":"0xdab0C31BF34C897Fb0Fe90D12EC9401caf5c36Ec","ens_address":"","decimals":0,"website":"https://dabco.in","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dabco.in","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DADI","name":"DADI","type":"ERC20","address":"0xfb2f26f266fb2805a387230f2aa0a331b4d96fba","ens_address":"","decimals":18,"website":"https://dadi.cloud","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dadi.co","url":""},"social":{"blog":"https://medium.com/@daditech","chat":"","facebook":"","forum":"https://forum.dadi.tech","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/dadi","youtube":""}},{"symbol":"DAI","name":"Dai Stablecoin v1.0","type":"ERC20","address":"0x89d24A6b4CcB1B6fAA2625fE562bDD9a23260359","ens_address":"","decimals":18,"website":"https://makerdao.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@makerdao.com","url":"https://chat.makerdao.com"},"social":{"blog":"","chat":"https://chat.makerdao.com","facebook":"","forum":"","github":"https://github.com/makerdao","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/MakerDAO","slack":"","telegram":"","twitter":"https://twitter.com/MakerDAO","youtube":""}},{"symbol":"DALC","name":"DaleCoin","type":"ERC20","address":"0x07d9e49ea402194bf48a8276dafb16e4ed633317","ens_address":"","decimals":8,"website":"http://www.dalecoin.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dalecoin.org","url":""},"social":{"blog":"","chat":"","facebook":"https://web.facebook.com/dalecoin","forum":"https://bitcointalk.org/index.php?topic=2057829.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/dalecoin","twitter":"http://twitter.com/DalecoinN","youtube":""}},{"symbol":"DAN","name":"DaneelToken","type":"ERC20","address":"0x9B70740e708a083C6fF38Df52297020f5DfAa5EE","ens_address":"","decimals":10,"website":"https://daneel.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"information@daneel.io","url":""},"social":{"blog":"https://medium.com/@daneel_project","chat":"","facebook":"https://fb.me/daneelproject","forum":"https://bitcointalk.org/index.php?topic=2376203","github":"https://github.com/project-daneel","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/DaneelCommunity","twitter":"https://twitter.com/daneelproject","youtube":""}},{"symbol":"DAO","name":"DAO","type":"ERC20","address":"0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413","ens_address":"","decimals":16,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DAT","name":"Datum Token","type":"ERC20","address":"0x81c9151de0c8bafcd325a57e3db5a5df1cebf79c","ens_address":"","decimals":18,"website":"https://datum.org","logo":{"src":"https://datum.org/assets/images/datumlogo_square_128px.png","width":128,"height":128,"ipfs_hash":""},"support":{"email":"support@datum.org","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/datumnetwork","forum":"https://bitcointalk.org/index.php?topic=2049312.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/datumnetwork","twitter":"https://twitter.com/datumnetwork","youtube":""}},{"symbol":"DATABroker","name":"DATABroker","type":"ERC20","address":"0x1b5f21ee98eed48d292e8e2d3ed82b40a9728a22","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DATACoin","name":"DATACoin","type":"ERC20","address":"0x0cf0ee63788a0849fe5297f3407f701e122cc023","ens_address":"","decimals":18,"website":"https://www.streamr.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@streamr.com","url":""},"social":{"blog":"https://blog.streamr.com","chat":"","facebook":"","forum":"","github":"https://github.com/streamr-dev","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.streamr.com","telegram":"","twitter":"https://twitter.com/streamrinc","youtube":""}},{"symbol":"DAV","name":"DAV Token","type":"ERC20","address":"0xd82Df0ABD3f51425Eb15ef7580fDA55727875f14","ens_address":"","decimals":18,"website":"https://dav.network/","logo":{"src":"https://dav.network/img/logo-mew.png","width":500,"height":500,"ipfs_hash":""},"support":{"email":"support@dav.network","url":""},"social":{"blog":"https://medium.com/davnetwork","chat":"","facebook":"","forum":"","github":"https://github.com/DAVFoundation","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/dav-foundation","reddit":"https://www.reddit.com/r/DAVNetwork/","slack":"","telegram":"https://t.me/DAVNetwork","twitter":"https://twitter.com/DavNetwork","youtube":"https://www.youtube.com/c/DAVNetwork"}},{"symbol":"DAXT","name":"Digital Asset Exchange Token","type":"ERC20","address":"0x61725f3db4004afe014745b21dab1e1677cc328b","ens_address":"","decimals":18,"website":"https://www.daxt.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"concierge@blockex.com","url":""},"social":{"blog":"https://www.blockex.com/blogslistings","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://blockex.slack.com/","telegram":"","twitter":"https://twitter.com/blockex","youtube":""}},{"symbol":"DCC","name":"Distributed Credit Chain","type":"ERC20","address":"0xffa93aacf49297d51e211817452839052fdfb961","ens_address":"","decimals":18,"website":"http://dcc.finance","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@dcc.finance","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Distributed-Credit-Chain-425721787866299/","forum":"","github":"https://github.com/DistributedBanking/DCC","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/dccofficial/","slack":"","telegram":"https://t.me/DccOfficial","twitter":"https://twitter.com/DccOfficial2018/","youtube":""}},{"symbol":"DCL","name":"DCL","type":"ERC20","address":"0x399A0e6FbEb3d74c85357439f4c8AeD9678a5cbF","ens_address":"","decimals":3,"website":"https://www.DisLedger.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@DisLedger.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/DisLedger_Launch","twitter":"https://twitter.com/DisledgerInfo","youtube":""}},{"symbol":"DCN","name":"Dentacoin","type":"ERC20","address":"0x08d32b0da63e2C3bcF8019c9c5d849d7a9d791e6","ens_address":"Dentacoin.eth","decimals":0,"website":"https://dentacoin.com","logo":{"src":"https://dentacoin.com/web/img/DCNlogo.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"admin@dentacoin.com","url":"https://dentacoin.com"},"social":{"blog":"https://www.blog.dentacoin.com","chat":"https://dentacoin.com","facebook":"https://www.facebook.com/dentacoin","forum":"https://bitcointalk.org/index.php?topic=1944236.0","github":"https://github.com/Dentacoin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Dentacoin","slack":"","telegram":"https://t.me/dentacoin","twitter":"https://twitter.com/dentacoin?lang=en","youtube":"https://www.youtube.com/channel/UCSL-UsN8dc4CzHWiCv-NfrQ"}},{"symbol":"DDF","name":"DDF","type":"ERC20","address":"0xcC4eF9EEAF656aC1a2Ab886743E98e97E090ed38","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DEB","name":"DEBITUM","type":"ERC20","address":"0x151202C9c18e495656f372281F493EB7698961D5","ens_address":"","decimals":18,"website":"https://debitum.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@debitum.network","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/DebitumNetwork","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/24999208/","reddit":"https://www.reddit.com/user/DebitumNetwork","slack":"","telegram":"https://t.me/joinchat/G6KFmURKsu0FIfJetJ3mOA","twitter":"https://twitter.com/DebitumNetwork","youtube":""}},{"symbol":"DENT","name":"DENT","type":"ERC20","address":"0x3597bfd533a99c9aa083587b074434e61eb0a258","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DEPO (CRYPTODEPOZIT)","name":"CRYPTODEPOZIT","type":"ERC20","address":"0x7cF271966F36343Bf0150F25E5364f7961c58201","ens_address":"","decimals":0,"website":"Aridika.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DEPO (Depository Network)","name":"DEPO (Depository Network)","type":"ERC20","address":"0x89cbeac5e8a13f0ebb4c74fadfc69be81a501106","ens_address":"","decimals":18,"website":"https://depository.network","logo":{"src":"https://i.imgur.com/ar18ECx.png","width":"358","height":"373","ipfs_hash":""},"support":{"email":"support@depository.network","url":"https://depository.network/"},"social":{"blog":"https://depository.network/blog/","chat":"","facebook":"https://www.facebook.com/depository.network/","forum":"https://bitcointalk.org/index.php?topic=4544199","github":"https://github.com/DepositoryNetwork/DepositoryTokenSmartContract","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/depositorynetwork/","reddit":"https://www.reddit.com/r/DepositoryNetworkDepo/","slack":"","telegram":"https://t.me/depositorynetwork","twitter":"https://twitter.com/deponetwork","youtube":"https://www.youtube.com/channel/UCi7oC83SlkcDXQa5eA0Bkxg"}},{"symbol":"Devcon2 Token","name":"Devcon2 Token","type":"ERC20","address":"0xdd94De9cFE063577051A5eb7465D08317d8808B6","ens_address":"","decimals":0,"website":"https://www.devcon2-token.com","logo":{"src":"https://etherscan.io/token/images/Devcon2.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DGD","name":"Digix DAO","type":"ERC20","address":"0xE0B7927c4aF23765Cb51314A0E0521A9645F0E2A","ens_address":"","decimals":9,"website":"https://www.dgx.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/digix","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DGPT","name":"DigiPulse","type":"ERC20","address":"0xf6cFe53d6FEbaEEA051f400ff5fc14F0cBBDacA1","ens_address":"token.digipulse.eth","decimals":18,"website":"https://www.digipulse.io","logo":{"src":"https://files.coinmarketcap.com/static/img/coins/200x200/digipulse.png","width":200,"height":200,"ipfs_hash":""},"support":{"email":"hello@digipulse.io","url":"https://www.digipulse.io"},"social":{"blog":"https://blog.digipulse.io","chat":"https://discord.gg/aDm4hP3","facebook":"https://www.facebook.com/digipulse.io","forum":"https://bitcointalk.org/index.php?topic=2203117.0","github":"https://github.com/digipulseio","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/24788224","reddit":"https://www.reddit.com/r/Digipulse","slack":"","telegram":"https://t.me/digipulse_official","twitter":"https://twitter.com/DigiPulseIO","youtube":"https://www.youtube.com/channel/UCndaovd_Ps0onxh7HccLSIQ"}},{"symbol":"DGS","name":"Dragonglass","type":"ERC20","address":"0x6aEDbF8dFF31437220dF351950Ba2a3362168d1b","ens_address":"","decimals":8,"website":"https://dragonglass.com/","logo":{"src":"https://dragonglass.com/wp-content/uploads/2018/06/LogoX132_color_2.png","width":"132","height":"132","ipfs_hash":""},"support":{"email":"support@dragonglass.com","url":"https://t.me/dragonglassco"},"social":{"blog":"http://medium.com/dragonglasscom","chat":"","facebook":"https://www.facebook.com/dragonglasscom","forum":"","github":"https://github.com/dragonglasscom","gitter":"","instagram":"https://instagram.com/dragonglass_official/","linkedin":"https://www.linkedin.com/company/dragonglass/","reddit":"","slack":"https://discordapp.com/invite/eZkxuZg","telegram":"https://t.me/dragonglassco","twitter":"https://twitter.com/dragonglasscom","youtube":"https://www.youtube.com/channel/UCneuYA9RuRFCb-usyb03eWw"}},{"symbol":"DGTX","name":"DigitexFutures","type":"ERC20","address":"0x1c83501478f1320977047008496dacbd60bb15ef","ens_address":"","decimals":18,"website":"https://digitexfutures.com/","logo":{"src":"https://digitexfutures.com/img/DGTX.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"support@digitexfutures.com","url":"https://digitexfutures.com/contact/"},"social":{"blog":"https://blog.digitexfutures.com/","chat":"https://t.me/digitexfutureschat","facebook":"https://www.facebook.com/DigitexFutures","forum":"https://www.reddit.com/r/DigitexFutures/","github":"https://github.com/DigitexFutures","gitter":"","instagram":"https://www.instagram.com/digitexfutures/","linkedin":"https://www.linkedin.com/company/digitex-futures-exchange/","reddit":"https://www.reddit.com/r/DigitexFutures","slack":"https://discordapp.com/invite/eZkxuZg","telegram":"https://t.me/digitexfutureschat","twitter":"https://twitter.com/digitexfutures","youtube":"https://www.youtube.com/channel/UCjY3JG9agHi2ePDTm6sJysw"}},{"symbol":"DGX","name":"DGX","type":"ERC20","address":"0x4f3afec4e5a3f2a6a1a411def7d7dfe50ee057bf","ens_address":"","decimals":9,"website":"https://www.dgx.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DGX1","name":"DGX1","type":"ERC20","address":"0x55b9a11c2e8351b4Ffc7b11561148bfaC9977855","ens_address":"","decimals":9,"website":"https://www.dgx.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DICE","name":"Etheroll","type":"ERC20","address":"0x2e071D2966Aa7D8dECB1005885bA1977D6038A65","ens_address":"","decimals":16,"website":"https://etheroll.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/etheroll","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DIP","name":"Decentralized Insurance Protocol","type":"ERC20","address":"0xc719d010B63E5bbF2C0551872CD5316ED26AcD83","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DIVX","name":"DIVX","type":"ERC20","address":"0x13f11C9905A08ca76e3e853bE63D4f0944326C72","ens_address":"","decimals":18,"website":"https://www.diviproject.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@diviproject.org","url":""},"social":{"blog":"","chat":"https://discord.gg/KQdVYsF","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/DiviProject","slack":"","telegram":"https://t.me/joinchat/EAdiTQ3yZk_GkqU0IdG-Gg","twitter":"","youtube":""}},{"symbol":"DLT","name":"Agrello","type":"ERC20","address":"0x07e3c70653548b04f0a75970c1f81b4cbbfb606f","ens_address":"","decimals":18,"website":"https://www.agrello.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@agrello.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DMT","name":"DMarket Token","type":"ERC20","address":"0x2ccbFF3A042c68716Ed2a2Cb0c544A9f1d1935E1","ens_address":"","decimals":8,"website":"https://dmarket.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dmarket.io","url":"https://dmarket.io"},"social":{"blog":"https://dmarket.io/info/en/updates","chat":"","facebook":"https://www.facebook.com/dmarketcommunity","forum":"https://bitcointalk.org/index.php?topic=2041720.new#new","github":"https://github.com/suntechsoft/dmarket-smartcontract","gitter":"","instagram":"https://www.instagram.com/dmarket.io","linkedin":"https://www.linkedin.com/company/18149400","reddit":"https://www.reddit.com/r/D_Market","slack":"https://dmarket.io/slack","telegram":"https://t.me/joinchat/CV8tCULRq_vJ2Xzu9Iopqg","twitter":"https://twitter.com/dmarket_io","youtube":"https://www.youtube.com/watch?v=h5fI1A2gB-E"}},{"symbol":"DNT","name":"DistrictOx","type":"ERC20","address":"0x0abdace70d3790235af448c88547603b945604ea","ens_address":"","decimals":18,"website":"https://district0x.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.district0x.io","chat":"","facebook":"","forum":"","github":"https://github.com/district0x","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://district0x-slack.herokuapp.com","telegram":"","twitter":"https://twitter.com/district0x","youtube":""}},{"symbol":"DNX","name":"DenCity","type":"ERC20","address":"0xE43E2041dc3786e166961eD9484a5539033d10fB","ens_address":"","decimals":18,"website":"https://dencity.life","logo":{"src":"https://dencity.life/assets/images/logo.png","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@dencity.life","url":""},"social":{"blog":"https://medium.com/dencity","chat":"","facebook":"https://www.facebook.com/Dencity-128638871159525","forum":"https://bitcointalk.org/index.php?topic=2488839","github":"https://github.com/DenCity-life","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Dencity","slack":"","telegram":"https://t.me/Dencity","twitter":"https://twitter.com/dencity_life","youtube":""}},{"symbol":"DoBETacceptBET(DCA)","name":"DCA","type":"ERC20","address":"0x386Faa4703a34a7Fdb19Bec2e14Fd427C9638416","ens_address":"","decimals":18,"website":"www.dobetacceptbet.com","logo":{"src":"https://cloud.mail.ru/public/CTJL/QwWyu3Y4e","width":200,"height":200,"ipfs_hash":""},"support":{"email":"support@dobet.info","url":"www.dobetacceptbet.com"},"social":{"blog":"https://medium.com/@doBETacceptBET","chat":"https://bitcointalk.org/index.php?topic=1958953.0","facebook":"https://www.facebook.com/betcoin.dobetacceptbet","forum":"https://bitcointalk.org/index.php?topic=1958953.0","github":"https://github.com/dobetacceptbet","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/betcoin-dobetacceptbet-1a6073144/","reddit":"https://www.reddit.com/user/doBETacceptBET","slack":"","telegram":"@doBETacceptBET","twitter":"@doBETacceptBET","youtube":"https://www.youtube.com/channel/UC1zXY-rO7_EPUyuKzPEVKfg"}},{"symbol":"DOW","name":"DOW","type":"ERC20","address":"0x76974c7b79dc8a6a109fd71fd7ceb9e40eff5382","ens_address":"","decimals":18,"website":"https://dowcoin.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"dowcoin@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DPP","name":"Digital Assets Power Play","type":"ERC20","address":"0x01b3Ec4aAe1B8729529BEB4965F27d008788B0EB","ens_address":"","decimals":18,"website":"https://cofound.it/en/projects/digital-assets-power-play","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://support.cofound.it/hc/en-us/articles/115001315351-Crowdsale-token-list-information"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DRGN","name":"Dragon","type":"ERC20","address":"0x419c4db4b9e25d6db2ad9691ccb832c8d9fda05e","ens_address":"dragonchain.eth","decimals":18,"website":"https://dragonchain.com","logo":{"src":"https://dragonchain.com/assets/images/dragon.png","width":813,"height":879,"ipfs_hash":""},"support":{"email":"support@dragonchain.com","url":""},"social":{"blog":"https://dragonchain.com/blog","chat":"https://t.me/dragontalk","facebook":"","forum":"","github":"https://github.com/dragonchain/dragonchain","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18216867","reddit":"https://www.reddit.com/r/dragonchain","slack":"","telegram":"https://t.me/dragontalk","twitter":"https://twitter.com/dragonchaingang","youtube":"https://www.youtube.com/channel/UC2_StJYNWFrQz2wiL8n6hoA/videos"}},{"symbol":"DROP (dropil)","name":"Dropil","type":"ERC20","address":"0x4672bad527107471cb5067a887f4656d585a8a31","ens_address":"","decimals":18,"website":"https://dropil.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://dex.dropil.com/newticket"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DROP (droplex)","name":"Droplex","type":"ERC20","address":"0x3c75226555FC496168d48B88DF83B95F16771F37","ens_address":"","decimals":0,"website":"https://droplex.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@droplex.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DRP","name":"DCorp","type":"ERC20","address":"0x621d78f2ef2fd937bfca696cabaf9a779f59b3ed","ens_address":"","decimals":2,"website":"https://www.dcorp.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DRP","name":"Dripcoin","type":"ERC20","address":"0x2799d90c6d44cb9aa5fbc377177f16c33e056b82","ens_address":"","decimals":0,"website":"http://drpcoin.com","logo":{"src":"https://i.imgur.com/3V7N7hr.png","width":"256","height":"256","ipfs_hash":""},"support":{"email":"help@drpcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"https://instagram.com/drip_coin","linkedin":"","reddit":"https://reddit.com/r/dripcoin","slack":"","telegram":"","twitter":"https://twitter.com/drip_coin","youtube":""}},{"symbol":"DRVH","name":"Driveholic Token","type":"ERC20","address":"0x62d4c04644314f35868ba4c65cc27a77681de7a9","ens_address":"","decimals":18,"website":"https://driveholic.com/","logo":{"src":"https://airdrop.driveholic.com/icon/apple-icon-180x180.png","width":"180","height":"180","ipfs_hash":""},"support":{"email":"airdrop@driveholic.com","url":"https://airdrop.driveholic.com/"},"social":{"blog":"https://medium.com/@driveholicsite","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=4613024","github":"https://github.com/TeamDriveholic","gitter":"","instagram":"https://www.instagram.com/driveholicsite/","linkedin":"","reddit":"https://www.reddit.com/r/driveholic/","slack":"","telegram":"https://t.me/driveholicairdrop","twitter":"https://twitter.com/driveholic","youtube":""}},{"symbol":"DSC","name":"Digital Safe Coin","type":"ERC20","address":"0x1e09BD8Cadb441632e441Db3e1D79909EE0A2256","ens_address":"","decimals":1,"website":"https://digitalsafecoin.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@digitalsafecoin.com","url":""},"social":{"blog":"","chat":"https://tawk.to/chat/54f94986d99780432012be7e/default/?$_tawk_popout=true","facebook":"web.facebook.com/digitalsafecoin/","forum":"","github":"github.com/xxxxyy1","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"twitter.com/xxxxyy1","youtube":"https://www.youtube.com/channel/UCKRONjyORHrFO2nOXlwJVzg"}},{"symbol":"DTH","name":"dether","type":"ERC20","address":"0x5adc961D6AC3f7062D2eA45FEFB8D8167d44b190","ens_address":"","decimals":18,"website":"https://dether.io","logo":{"src":"https://ipfs.io/ipfs/QmTbnd1okDoU188cLCFvZorxWgfVHdoLwwnLKxkJJFcncv","width":"349","height":"349","ipfs_hash":"QmTbnd1okDoU188cLCFvZorxWgfVHdoLwwnLKxkJJFcncv"},"support":{"email":"support@dether.io","url":"https://dether.io"},"social":{"blog":"https://medium.com/@DETHER","chat":"https://t.me/joinchat/GkdUjUQ4jx_Apxmz2km4ww","facebook":"https://www.facebook.com/dether.io/","forum":"https://medium.com/@DETHER","github":"https://github.com/dethertech","gitter":"https://gitter.im/dether-js","instagram":"https://www.instagram.com/dether.io/","linkedin":"https://www.linkedin.com/company/dether-io/","reddit":"https://www.reddit.com/r/Dether/","slack":"https://dether.slack.com/messages/C4HEL2KLK/details/","telegram":"https://t.me/joinchat/GkdUjUQ4jx_Apxmz2km4ww","twitter":"https://twitter.com/dether_io","youtube":"https://www.youtube.com/channel/UCXkA5w4KdpnBMeIsu62ZS8w"}},{"symbol":"DTR","name":"DTR","type":"ERC20","address":"0xd234bf2410a0009df9c3c63b610c09738f18ccd7","ens_address":"","decimals":8,"website":"https://www.tokens.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/tokens.net","forum":"https://bitcointalk.org/index.php?topic=2339770","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/tokensnet","youtube":""}},{"symbol":"DTT","name":"Delphi Tech Token","type":"ERC20","address":"0xf9F7c29CFdf19FCf1f2AA6B84aA367Bcf1bD1676","ens_address":"","decimals":18,"website":"https://delphifund.org/","logo":{"src":"https://delphifund.org/wp-content/uploads/2018/04/delphi400x400.jpg","width":"400","height":"400","ipfs_hash":""},"support":{"email":"support@delphifund.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/DTToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/Delphitechtoken","youtube":""}},{"symbol":"DTX","name":"DaTa eXchange Token","type":"ERC20","address":"0x765f0c16d1ddc279295c1a7c24b0883f62d33f75","ens_address":"","decimals":18,"website":"https://databrokerdao.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@databrokerdao.com","url":""},"social":{"blog":"https://medium.com/databrokerdao","chat":"","facebook":"https://www.facebook.com/DataBrokerDAO","forum":"https://bitcointalk.org/index.php?topic=2113309.0","github":"https://github.com/DataBrokerDAO","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/DatabrokerDAO/","slack":"","telegram":"https://t.me/databrokerdao","twitter":"https://twitter.com/DataBrokerDAO","youtube":"https://www.youtube.com/channel/UCUmxSlaliIuF0Z3yNw8y_uA"}},{"symbol":"DTx","name":"DigitalTicks","type":"ERC20","address":"0x82fdedfB7635441aA5A92791D001fA7388da8025","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"DUBI","name":"DUBI","type":"ERC20","address":"0x9c6Fa42209169bCeA032e401188a6fc3e9C9f59c","ens_address":"","decimals":18,"website":"https://prps.io","logo":{"src":"https://imgur.com/qoz7jTX","width":"50","height":"61","ipfs_hash":""},"support":{"email":"support@gamingforgood.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/nionis/purpose","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/PRPS","slack":"","telegram":"","twitter":"https://twitter.com/prps_io","youtube":""}},{"symbol":"EAGLE","name":"EagleCoin","type":"ERC20","address":"0x994f0dffdbae0bbf09b652d6f11a493fd33f42b9","ens_address":"","decimals":18,"website":"https://eaglepay.io","logo":{"src":"https://pasteboard.co/GYomPdv.jpg","width":"","height":"","ipfs_hash":""},"support":{"email":"team@eaglepay.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/EagleCoin","forum":"","github":"https://github.com/elangindonesia/EagleCoin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/13453528","reddit":"","slack":"","telegram":"https://t.me/eaglecoinworld","twitter":"https://twitter.com/EaglecoinID","youtube":"https://www.youtube.com/channel/UCMj7jcOXML6pqsWWajLgKKQ"}},{"symbol":"eBCH","name":"eBCH","type":"ERC20","address":"0xafc39788c51f0c1ff7b55317f3e70299e521fff6","ens_address":"","decimals":8,"website":"https://ebitcoincash.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@ebitcoincash.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/eBCHCoin-1528769833904071","forum":"https://bitcointalk.org/index.php?topic=2432836.0;all","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/eBCHCoin","slack":"https://ebch.slack.com","telegram":"https://t.me/eBCHCoin","twitter":"https://twitter.com/eBCHCoin","youtube":""}},{"symbol":"eBTC","name":"eBTC","type":"ERC20","address":"0xeb7c20027172e5d143fb030d50f91cece2d1485d","ens_address":"","decimals":8,"website":"https://ebitcoin.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@ebitcoin.org","url":""},"social":{"blog":"https://medium.com/@eBTCFoundation","chat":"","facebook":"https://www.facebook.com/eBitcoin.org","forum":"https://bitcointalk.org/index.php?topic=2210565.0","github":"https://github.com/eBTCCommunityTrustToken/eBTC","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/eBTC","slack":"","telegram":"https://t.me/ComTrust","twitter":"https://twitter.com/ebtcfoundation","youtube":"https://www.youtube.com/channel/UC3qfrY1tpUFEy3nOjqaGBDw/videos"}},{"symbol":"ECN","name":"ECN","type":"ERC20","address":"0xa578acc0cb7875781b7880903f4594d13cfa8b98","ens_address":"","decimals":2,"website":"www.cewrd.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@cewrd.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ECO2","name":"EtherCO2","type":"ERC20","address":"0x17F93475d2A978f527c3f7c44aBf44AdfBa60D5C","ens_address":"","decimals":2,"website":"http://www.ethco2.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ethco2@163.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"EDC","name":"Education Credits","type":"ERC20","address":"0xfa1de2ee97e4c10c94c91cb2b5062b89fb140b82","ens_address":"","decimals":6,"website":"https://www.edc.network","logo":{"src":"https://edc.network/images/edc-logo28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"info@edc.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"EDG","name":"Edgeless","type":"ERC20","address":"0x08711D3B02C8758F2FB3ab4e80228418a7F8e39c","ens_address":"","decimals":0,"website":"https://edgeless.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://edgelessethcasino.signup.team","telegram":"","twitter":"","youtube":""}},{"symbol":"EDO","name":"Eidoo","type":"ERC20","address":"0xced4e93198734ddaff8492d525bd258d49eb388e","ens_address":"","decimals":18,"website":"https://eidoo.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@eidoo.io","url":""},"social":{"blog":"https://medium.com/eidoo","chat":"","facebook":"https://www.facebook.com/eidoocrypto","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/AAAAAERSsZk99wFzx2v_Kw","twitter":"https://twitter.com/eidoo_io","youtube":""}},{"symbol":"EDR","name":"Endor Protocol Token","type":"ERC20","address":"0xc528c28FEC0A90C083328BC45f587eE215760A0F","ens_address":"","decimals":18,"website":"https://www.endor.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@endor.com","url":""},"social":{"blog":"https://medium.com/@endorcoin","chat":"","facebook":"https://www.facebook.com/Endordotcom-1105921412798077","forum":"https://bitcointalk.org/index.php?topic=2943168","github":"https://github.com/EndorCoin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/endor-software-ltd","reddit":"https://www.reddit.com/r/EndorCoin/","slack":"","telegram":"https://t.me/endorcoinGroup","twitter":"https://twitter.com/endorprotocol","youtube":""}},{"symbol":"EDU","name":"EDU Token","type":"ERC20","address":"0x2a22e5cca00a3d63308fa39f29202eb1b39eef52","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"eGAS","name":"ETH GAS","type":"ERC20","address":"0xb53a96bcbdd9cf78dff20bab6c2be7baec8f00f8","ens_address":"","decimals":8,"website":"http://www.ethgas.stream","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"egas@ethgas.stream","url":"http://www.ethgas.stream"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/eth_gas","youtube":""}},{"symbol":"EGT","name":"Egretia Token","type":"ERC20","address":"0x8e1b448EC7aDFc7Fa35FC2e885678bD323176E34","ens_address":"","decimals":18,"website":"https://www.egretia.io","logo":{"src":"http://egretia.io/static/logo-356.png","width":"356","height":"356","ipfs_hash":""},"support":{"email":"contact@egretia.io","url":"https://www.egretia.io"},"social":{"blog":"http://blog.egretia.io","chat":"","facebook":"https://www.facebook.com/Egretia.io/","forum":"","github":"https://github.com/egretia","gitter":"","instagram":"https://www.instagram.com/egretia_io/","linkedin":"https://www.linkedin.com/company/egretia/","reddit":"https://www.reddit.com/r/Egretia/","slack":"","telegram":"http://t.me/Egretia","twitter":"https://twitter.com/Egretia_io","youtube":""}},{"symbol":"EHT","name":"EasyHomes","type":"ERC20","address":"0xf9F0FC7167c311Dd2F1e21E9204F87EBA9012fB2","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@easyhomes.io","url":"https://easyhomes.io"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/teameasyhomes","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/teameasyhomes","slack":"https://easyhomesico.slack.com","telegram":"","twitter":"https://twitter.com/teameasyhomes","youtube":""}},{"symbol":"ELF","name":"ELF Token","type":"ERC20","address":"0xbf2179859fc6d5bee9bf9158632dc51678a4100e","ens_address":"","decimals":18,"website":"https://aelf.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/aelfio/","forum":"","github":"https://github.com/aelfProject","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/aelfofficial/","slack":"https://slack.aelf.io/","telegram":"https://t.me/aelfblockchain","twitter":"https://twitter.com/aelfblockchain","youtube":""}},{"symbol":"ELIX","name":"Elixir Token","type":"ERC20","address":"0xc8C6A31A4A806d3710A7B38b7B296D2fABCCDBA8","ens_address":"","decimals":18,"website":"https://elixirtoken.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@elixirtoken.io","url":""},"social":{"blog":"https://medium.com/@elixirtoken","chat":"https://discordapp.com/invite/Q479hnP","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2144082.80","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/elixirtoken","slack":"","telegram":"https://t.me/ElixirToken","twitter":"https://twitter.com/ELIXToken","youtube":""}},{"symbol":"ELTCOIN","name":"ELTCOIN","type":"ERC20","address":"0x44197a4c44d6a059297caf6be4f7e172bd56caaf","ens_address":"","decimals":8,"website":"http://www.eltcoin.tech/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/officialELTCOIN","forum":"","github":"https://github.com/eltcoin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/eLTCoin","slack":"","telegram":"https://t.me/ELTCOIN","twitter":"https://twitter.com/officialELTCoin","youtube":"https://www.youtube.com/channel/UCCpJqoXegl501zfHevtTilQ"}},{"symbol":"ELY","name":"ELYCOIN","type":"ERC20","address":"0xa95592DCFfA3C080B4B40E459c5f5692F67DB7F8","ens_address":"","decimals":18,"website":"https://elycoin.io","logo":{"src":"https://elycoin.io/assets/images/ely128.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"support@elycoin.io","url":""},"social":{"blog":"https://medium.com/@Elysian_Ely","chat":"","facebook":"https://www.facebook.com/ElysianxELY","forum":"https://forum.elycoin.io/","github":"https://github.com/Elysian-ELY","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/elysian-ely","reddit":"https://www.reddit.com/r/elysian_ely","slack":"","telegram":"https://t.me/elysian_ely","twitter":"https://twitter.com/Elysian_ELY","youtube":"https://www.youtube.com/channel/UCm0BGtPu1nB-7HbeJsHKJTw"}},{"symbol":"EMON","name":"Etheremon","type":"ERC20","address":"0xb67b88a25708a35ae7c2d736d398d268ce4f7f83","ens_address":"","decimals":8,"website":"https://www.etheremon.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@etheremon.com","url":""},"social":{"blog":"https://medium.com/@myetheremon","chat":"","facebook":"https://www.facebook.com/etheremon/","forum":"","github":"https://github.com/etheremon/smartcontract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/etheremon/","slack":"","telegram":"","twitter":"https://twitter.com/myetheremon","youtube":""}},{"symbol":"EMONT","name":"Etheremon Token","type":"ERC20","address":"0x95daaab98046846bf4b2853e23cba236fa394a31","ens_address":"","decimals":8,"website":"https://www.etheremon.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@etheremon.com","url":""},"social":{"blog":"https://medium.com/@myetheremon","chat":"","facebook":"https://www.facebook.com/etheremon","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/etheremon","slack":"","telegram":"","twitter":"https://twitter.com/myetheremon","youtube":""}},{"symbol":"EMT","name":"easyMINE Token","type":"ERC20","address":"0x9501BFc48897DCEEadf73113EF635d2fF7ee4B97","ens_address":"","decimals":18,"website":"https://easymine.io","logo":{"src":"https://etherscan.io/token/images/easymine_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@easymine.io","url":""},"social":{"blog":"https://blog.easymine.io","chat":"","facebook":"https://www.facebook.com/easymine.io/","forum":"","github":"https://github.com/easyMINE","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.easymine.io/","telegram":"https://t.me/easyMINEio","twitter":"https://twitter.com/easymineio","youtube":"https://www.youtube.com/c/easyMINE"}},{"symbol":"EMV","name":"EMovieVenture","type":"ERC20","address":"0xB802b24E0637c2B87D2E8b7784C055BBE921011a","ens_address":"","decimals":2,"website":"http://emovieventure.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@emovieventure.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ENC","name":"Ethernet.Cash","type":"ERC20","address":"0x039f5050de4908f9b5ddf40a4f3aa3f329086387","ens_address":"","decimals":18,"website":"https://ethernet.cash","logo":{"src":"https://ethernet.cash/images/logo28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"contact@ethernet.cash","url":""},"social":{"blog":"https://medium.com/@ethernetcash","chat":"","facebook":"https://fb.me/ethernetcash.official","forum":"","github":"https://github.com/ethernetcash","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/ethernetcash","twitter":"https://twitter.com/ethernetcash","youtube":""}},{"symbol":"ENG","name":"Enigma","type":"ERC20","address":"0xf0ee6b27b759c9893ce4f094b49ad28fd15a23e4","ens_address":"","decimals":8,"website":"https://enigma.co/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@enigma.co","url":""},"social":{"blog":"https://blog.enigma.co/","chat":"","facebook":"https://www.facebook.com/enigmacatalyst/","forum":"","github":"https://github.com/enigmampc","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/enigmacatalyst","slack":"https://slack.enigma.co/","telegram":"https://t.me/enigmacatalyst","twitter":"https://twitter.com/enigmampc","youtube":""}},{"symbol":"ENJ","name":"ENJIN","type":"ERC20","address":"0xF629cBd94d3791C9250152BD8dfBDF380E2a3B9c","ens_address":"","decimals":18,"website":"https://enjincoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@enjin.com","url":""},"social":{"blog":"https://medium.com/@coinfork","chat":"","facebook":"https://www.facebook.com/enjinsocial","forum":"","github":"https://github.com/enjin/contracts","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://enjincoin.io/slack","telegram":"","twitter":"https://twitter.com/enjincs","youtube":""}},{"symbol":"ENTRP","name":"Hut34 Entropy Token","type":"ERC20","address":"0x5BC7e5f0Ab8b2E10D2D0a3F21739FCe62459aeF3","ens_address":"","decimals":18,"website":"https://hut34.io/","logo":{"src":"https://hut34.io/images/comms/Hut34-logo-orange.jpg","width":"300","height":"300","ipfs_hash":""},"support":{"email":"admin@hut34.io","url":""},"social":{"blog":"https://medium.com/@hut34project","chat":"","facebook":"https://www.facebook.com/hut34project","forum":"","github":"https://github.com/hut34","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18132913/","reddit":"","slack":"","telegram":"https://t.me/hut34","twitter":"https://twitter.com/hut34project","youtube":"https://www.youtube.com/channel/UCiemFFyT2Sv2ulrRQfNI89Q"}},{"symbol":"EOS","name":"EOS","type":"ERC20","address":"0x86fa049857e0209aa7d9e616f7eb3b3b78ecfdb0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"eos@block.one","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"eosDAC","name":"eosDAC","type":"ERC20","address":"0x7e9e431a0b8c4d532c745b1043c7fa29a48d4fba","ens_address":"","decimals":18,"website":"https://eosdac.io/","logo":{"src":"https://eosdac.io/wp-content/uploads/2018/03/eosdaclogo1-200-jpeg.jpg","width":"200","height":"200","ipfs_hash":""},"support":{"email":"hello@eosdac.io","url":"https://t.me/eosdacio"},"social":{"blog":"","chat":"","facebook":"https://facebook.com/eosdac","forum":"","github":"https://github.com/eosdac","gitter":"","instagram":"https://instagram.com/eosdac","linkedin":"https://linkedin.com/company/eosdac","reddit":"https://www.reddit.com/r/EOSDAC/","slack":"","telegram":"https://t.me/eosdacio","twitter":"https://twitter.com/eosdac","youtube":""}},{"symbol":"EPX","name":"ethPoker.io EPX","type":"ERC20","address":"0x35BAA72038F127f9f8C8f9B491049f64f377914d","ens_address":"","decimals":4,"website":"https://ethPoker.io","logo":{"src":"https://ethpoker.io/wp-content/uploads/2018/03/smallBlueIcon.png","width":"51","height":"50","ipfs_hash":""},"support":{"email":"admin@ethPoker.io","url":"https://ethPoker.io"},"social":{"blog":"https://ethpoker.io/","chat":"","facebook":"","forum":"","github":"https://github.com/EthPokerIO/ethpokerIO","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/ethpoker/","reddit":"","slack":"","telegram":"https://t.me/EthPokerIOpresale","twitter":"https://twitter.com/ethpoker","youtube":""}},{"symbol":"ESZ","name":"ESZCoin","type":"ERC20","address":"0xe8a1df958be379045e2b46a31a98b93a2ecdfded","ens_address":"","decimals":18,"website":"https://ethersportz.com","logo":{"src":"https://ethersportz.com/ESZCoin200by200.png","width":200,"height":200,"ipfs_hash":""},"support":{"email":"info@ethersportz.com","url":""},"social":{"blog":"http://medium.com/@EtherSportz","chat":"https://discord.gg/Hf2eMvV","facebook":"https://www.facebook.com/ethersportz","forum":"","github":"https://github.com/EtherSportz/ESZCoin","gitter":"","instagram":"https://www.facebook.com/EtherSportz","linkedin":"http://linkedin.com/company/ethersportz","reddit":"","slack":"","telegram":"https://t.me/ESZCoin","twitter":"https://www.instagram.com/EtherSportz","youtube":"https://youtube.com/ethersportz"}},{"symbol":"ETBS","name":"Ethbits","type":"ERC20","address":"0x1b9743f556d65e757c4c650b4555baf354cb8bd3","ens_address":"","decimals":12,"website":"https://www.ethbits.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mr@ethbits.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/EthBitsChatroom","twitter":"https://twitter.com/ethbits","youtube":""}},{"symbol":"ETCH","name":"ETCH","type":"ERC20","address":"0xdd74a7a3769fa72561b3a69e65968f49748c690c","ens_address":"","decimals":18,"website":"https://etch.work","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ETHB","name":"EtherBTC","type":"ERC20","address":"0x3a26746Ddb79B1B8e4450e3F4FFE3285A307387E","ens_address":"","decimals":8,"website":"https://etherbtc.io/faq","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"payments@etherbtc.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ETHOS","name":"ETHOS","type":"ERC20","address":"0x5Af2Be193a6ABCa9c8817001F45744777Db30756","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ETR","name":"Etheruem Risen","type":"ERC20","address":"0x6927C69fb4daf2043fbB1Cb7b86c5661416bea29","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"EURT","name":"EUR Tether (erc20)","type":"ERC20","address":"0xabdf147870235fcfc34153828c769a70b3fae01f","ens_address":"","decimals":6,"website":"https://tether.to","logo":{"src":"https://etherscan.io/token/images/tether-euro_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"billy@tether.to","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/tether_to","youtube":""}},{"symbol":"EVE","name":"EVE","type":"ERC20","address":"0x923108a439C4e8C2315c4f6521E5cE95B44e9B4c","ens_address":"","decimals":18,"website":"https://devery.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@devery.io","url":""},"social":{"blog":"https://medium.com/devery-io","chat":"","facebook":"https://www.facebook.com/devery.io","forum":"","github":"https://github.com/devery","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18282115","reddit":"https://www.reddit.com/r/deveryofficial","slack":"","telegram":"https://t.me/deverychat","twitter":"https://twitter.com/deveryofficial","youtube":""}},{"symbol":"EVN","name":"Envion AG","type":"ERC20","address":"0xd780Ae2Bf04cD96E577D3D014762f831d97129d0","ens_address":"","decimals":18,"website":"https://envion.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"question@envion.org","url":""},"social":{"blog":"https://medium.com/@envion","chat":"https://bitcointalk.org/index.php?topic=2348435","facebook":"https://www.facebook.com/envion.org","forum":"","github":"https://github.com/envion/Smart-Contracts","gitter":"","instagram":"https://www.instagram.com/envion_official","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/Envion","twitter":"https://twitter.com/Envion_org","youtube":""}},{"symbol":"EVX","name":"EVX Token","type":"ERC20","address":"0xf3db5fa2c66b7af3eb0c0b782510816cbe4813b8","ens_address":"","decimals":4,"website":"https://everex.io ","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@everex.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/everexio","slack":"https://everex.slack.com","telegram":"https://t.me/everexio","twitter":"https://twitter.com/everexio","youtube":""}},{"symbol":"EXMR","name":"eXMRcoin","type":"ERC20","address":"0xc98e0639c6d2ec037a615341c369666b110e80e5","ens_address":"","decimals":8,"website":"https://exmr.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@exmr.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/exmrcoin/","forum":"","github":"https://github.com/eXMRcoin/","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/eXMRcoin/","slack":"","telegram":"https://t.me/joinEXMR/","twitter":"https://www.twitter.com/eXMRCoin","youtube":""}},{"symbol":"EXY","name":"Experty","type":"ERC20","address":"0x5c743a35E903F6c584514ec617ACEe0611Cf44f3","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"E₹","name":"eRupee","type":"ERC20","address":"0xb67734521eAbBE9C773729dB73E16CC2dfb20A58","ens_address":"","decimals":2,"website":"https://erupee.wordpress.com","logo":{"src":"https://raw.githubusercontent.com/eRupee/images/master/coin%20logo.png","width":900,"height":720,"ipfs_hash":""},"support":{"email":"erupee@protonmail.com","url":"https://erupee.wordpress.com"},"social":{"blog":"https://erupee.wordpress.com","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2839333.new#new","github":"https://github.com/eRupee","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/eRupee","slack":"https://erupeecoin.slack.com","telegram":"t.me/eRupee","twitter":"https://twitter.com/eRupeeCoin","youtube":""}},{"symbol":"FAM","name":"FAM","type":"ERC20","address":"0x190e569bE071F40c704e15825F285481CB74B6cC","ens_address":"","decimals":12,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"FAN","name":"Fan Token","type":"ERC20","address":"0x90162f41886c0946d09999736f1c15c8a105a421","ens_address":"","decimals":18,"website":"https://tokensale.fanfare.global","logo":{"src":"https://imgland.oss-cn-hangzhou.aliyuncs.com/photo/2018/c80e9fbb-c8f9-4c66-9044-0c4c32392405.png","width":"866","height":"866","ipfs_hash":""},"support":{"email":"tokensale@fanfare.global","url":""},"social":{"blog":"https://medium.com/fanfareglobal","chat":"","facebook":"https://www.facebook.com/fanfareglobal","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/fanfareglobal/","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/FanfareICO","twitter":"https://twitter.com/FanFare_Global","youtube":"https://www.youtube.com/c/fanfareglobal"}},{"symbol":"FANX","name":"FANX Token","type":"ERC20","address":"0x7dcb3b2356c822d3577d4d060d0d5d78c860488c","ens_address":"","decimals":18,"website":"http://www.fanx.one/","logo":{"src":"http://www.fanx.one/static/img/logo.png","width":"132","height":"132","ipfs_hash":""},"support":{"email":"contact@fanx.one","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"FKX","name":"Knoxstertoken","type":"ERC20","address":"0x009e864923b49263c7F10D19B7f8Ab7a9A5AAd33","ens_address":"","decimals":18,"website":"https://fortknoxster.com","logo":{"src":"https://fortknoxster.com/wp-content/uploads/2017/11/FortKnoxster-Icon-256.png","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@fortknoxster.com","url":"https://fortknoxster.com/knowledge-base/"},"social":{"blog":"https://medium.com/fortknoxster","chat":"","facebook":"https://www.facebook.com/FortKnoxster","forum":"","github":"https://github.com/FortKnoxster","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FortKnoxster/","slack":"","telegram":"https://t.me/FortKnoxster","twitter":"https://twitter.com/FortKnoxster","youtube":"https://www.youtube.com/channel/UCZB8URO26cktviSxp3SeHig/videos"}},{"symbol":"FLIXX","name":"FLIXX","type":"ERC20","address":"0xf04a8ac553FceDB5BA99A64799155826C136b0Be","ens_address":"","decimals":18,"website":"flixxo.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"info@flixxo.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"t.me/flixxo","twitter":"","youtube":""}},{"symbol":"FLMC","name":"Filmscoin","type":"ERC20","address":"0x04cC783b450b8D11F3C7d00DD03fDF7FB51fE9F2","ens_address":"","decimals":18,"website":"https://filmscoin.com","logo":{"src":"https://filmscoin.com/images/icon-flmc28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/cryptofilms","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/filmscoin","twitter":"https://twitter.com/filmscoin1","youtube":""}},{"symbol":"FLP","name":"FLIP Token","type":"ERC20","address":"0x3a1Bda28AdB5B0a812a7CF10A1950c920F79BcD3","ens_address":"","decimals":18,"website":"https://gameflip.com","logo":{"src":"https://tokensale.gameflip.com/img/ico/flip_logo_64x64.png","width":64,"height":64,"ipfs_hash":""},"support":{"email":"support@gameflip.com","url":"https://gameflip.zendesk.com/hc/en-us"},"social":{"blog":"https://medium.com/@fliptoken","chat":"","facebook":"https://www.facebook.com/Gameflipapp","forum":"","github":"https://github.com/gameflip","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Gameflip","slack":"","telegram":"","twitter":"https://twitter.com/Gameflip","youtube":""}},{"symbol":"FLR","name":"Flair Coin","type":"ERC20","address":"0x9aeFBE0b3C3ba9Eab262CB9856E8157AB7648e09","ens_address":"","decimals":18,"website":"https://flaircoin.co/","logo":{"src":"https://flaircoin.co/assets/images/flair_logo_64x64.png","width":"64","height":"64","ipfs_hash":""},"support":{"email":"info@flaircoin.co","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"FLUZ","name":"Fluz Fluz Global","type":"ERC20","address":"0x954b5de09a55e59755acbda29e1eb74a45d30175","ens_address":"","decimals":18,"website":"https://ico.fluzfluz.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@fluzfluz.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/fluzfluz","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FluzFluzGlobal","slack":"","telegram":"https://t.me/fluzfluzico","twitter":"https://twitter.com/fluzfluz","youtube":""}},{"symbol":"FLX","name":"BitFlux","type":"ERC20","address":"0x70b147e01e9285e7ce68b9ba437fe3a9190e756a","ens_address":"","decimals":18,"website":"fluxproject.xyz","logo":{"src":"https://fluxproject.xyz/gallery_gen/271ecfb9c8f4f7dfc5ea539cfa57f44d_150x150.png","width":"150","height":"150","ipfs_hash":""},"support":{"email":"support@fluxproject.xyz","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FLUXProject","slack":"","telegram":"https://t.me/joinchat/GZcBtg6Oi6mjkBAn-t9Z4A","twitter":"https://twitter.com/flux_project","youtube":""}},{"symbol":"FND","name":"FundRequest","type":"ERC20","address":"0x4df47b4969b2911c966506e3592c41389493953b","ens_address":"","decimals":18,"website":"https://fundrequest.io","logo":{"src":"https://raw.githubusercontent.com/FundRequest/logo/master/Logo%20icon%20500x500.png","width":"500","height":"500","ipfs_hash":"QmbGpu4tWoHEtPy64tNeYENsNqTSF22U12VRYswhjYjNcj"},"support":{"email":"info@fundrequest.io","url":""},"social":{"blog":"https://blog.fundrequest.io","chat":"https://fundrequest.chat","facebook":"https://www.facebook.com/FundRequestplatform","forum":"","github":"https://github.com/FundRequest","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/fundrequest","reddit":"https://www.reddit.com/r/fundrequest","slack":"","telegram":"https://t.me/fundrequestofficial","twitter":"https://twitter.com/fundrequest_io","youtube":""}},{"symbol":"FRD","name":"FARAD Cryptoken","type":"ERC20","address":"0x0ABeFb7611Cb3A01EA3FaD85f33C3C934F8e2cF4","ens_address":"","decimals":18,"website":"https://farad.energy","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@virtue.finance","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/faradcryptoken","forum":"https://bitcointalk.org/index.php?topic=2075985","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://faradcryptoken.slack.com","telegram":"","twitter":"https://twitter.com/FARADCryptoken","youtube":""}},{"symbol":"FTC","name":"FTC","type":"ERC20","address":"0xe6f74dcfa0e20883008d8c16b6d9a329189d0c30","ens_address":"","decimals":2,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@ftccoins.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"FTR","name":"Futourist Token","type":"ERC20","address":"0x2023DCf7c438c8C8C0B0F28dBaE15520B4f3Ee20","ens_address":"","decimals":18,"website":"https://futourist.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@futourist.io","url":""},"social":{"blog":"https://medium.com/futourist","chat":"","facebook":"https://www.facebook.com/futourist.io/","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/futourist.io/","linkedin":"","reddit":"","slack":"","telegram":"https://medium.com/futourist","twitter":"https://twitter.com/futouristinfo","youtube":""}},{"symbol":"FTT","name":"FarmaTrust Token","type":"ERC20","address":"0x2AEC18c5500f21359CE1BEA5Dc1777344dF4C0Dc","ens_address":"","decimals":18,"website":"https://www.farmatrust.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@farmatrust.com","url":""},"social":{"blog":"https://medium.com/@farmatrust","chat":"","facebook":"https://www.facebook.com/farmatrustchain","forum":"https://bitcointalk.org/index.php?topic=2496382","github":"https://github.com/farmatrust","gitter":"","instagram":"https://www.instagram.com/farmatrust","linkedin":"https://www.linkedin.com/company/24797056","reddit":"https://www.reddit.com/user/FarmaTrust","slack":"","telegram":"https://t.me/farmatrust","twitter":"https://twitter.com/farmatrust","youtube":""}},{"symbol":"FTXT","name":"FUTURAX","type":"ERC20","address":"0x41875c2332b0877cdfaa699b641402b7d4642c32","ens_address":"","decimals":8,"website":"https://futurax.global","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@futurax.global","url":""},"social":{"blog":"https://medium.com/@FuturaxProject","chat":"https://t.me/futurax","facebook":"https://www.facebook.com/futuraxproject/","forum":"","github":"https://github.com/futuraxproject","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/futuraxglobal/","reddit":"","slack":"","telegram":"https://t.me/futurax_info","twitter":"https://twitter.com/FuturaxProject","youtube":""}},{"symbol":"FUCK","name":"Finally Usable Crypto Karma","type":"ERC20","address":"0x65be44c747988fbf606207698c944df4442efe19","ens_address":"","decimals":4,"website":"https://fucktoken.com","logo":{"src":"https://etherscan.io/token/images/fucktoken_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@fucktoken.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=1945661.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FuckToken","slack":"https://fucktoken.slack.com/join/shared_invite/MjMyNDgzNzc4MDY1LTE1MDM5Nzg2MTctY2FlOWMzMGNiMw","telegram":"","twitter":"https://twitter.com/FuckToken","youtube":""}},{"symbol":"FUEL","name":"Etherparty FUEL","type":"ERC20","address":"0xEA38eAa3C86c8F9B751533Ba2E562deb9acDED40","ens_address":"","decimals":18,"website":"https://etherparty.io","logo":{"src":"https://image.ibb.co/mzeWD6/EP3_Blue.png","width":804,"height":804,"ipfs_hash":"ipfs/QmNLpXoqbZzZ7jEn8Pn58A3UwW38sMCeAVoJra2BUwxqvA"},"support":{"email":"support@etherparty.io","url":""},"social":{"blog":"https://medium.com/etherparty","chat":"https://t.me/etherparty","facebook":"https://www.facebook.com/etherparty","forum":"https://bitcointalk.org/index.php?topic=2005965","github":"https://github.com/etherparty","gitter":"","instagram":"https://www.instagram.com/etherparty_io","linkedin":"https://www.linkedin.com/company/etherparty","reddit":"https://www.reddit.com/r/etherparty","slack":"","telegram":"https://t.me/etherparty","twitter":"https://twitter.com/etherparty_io","youtube":"https://www.youtube.com/channel/UCwBzpneop1za6w4DYJJgsIQ"}},{"symbol":"FUN","name":"Funfair","type":"ERC20","address":"0x419D0d8BdD9aF5e606Ae2232ed285Aff190E711b","ens_address":"","decimals":8,"website":"https://funfair.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/FunfairTech/comments/6nadvm/funfair_token_contract_update","slack":"https://funfair-slackin.herokuapp.com","telegram":"","twitter":"https://twitter.com/FunFairTech/status/885910956701876224","youtube":""}},{"symbol":"FYN","name":"Fund Yourself Now","type":"ERC20","address":"0x88FCFBc22C6d3dBaa25aF478C578978339BDe77a","ens_address":"","decimals":18,"website":"www.fundyourselfnow.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@fundyourselfnow.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://fundyourselfnowslack.herokuapp.com","telegram":"https://t.me/fundyourselfnow","twitter":"https://twitter.com/fundyourselfnow","youtube":""}},{"symbol":"GAM","name":"Gambit","type":"ERC20","address":"0xf67451dc8421f0e0afeb52faa8101034ed081ed9","ens_address":"","decimals":8,"website":"http://gambitcrypto.com","logo":{"src":"https://gateway.ipfs.io/ipfs/QmSDhPfF52qV7KcYMQ6kosvxc9TnMY45fMHst2hJEscUoh","width":4167,"height":4167,"ipfs_hash":"QmSDhPfF52qV7KcYMQ6kosvxc9TnMY45fMHst2hJEscUoh"},"support":{"email":"raithe@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/BlockchainLabsNZ/gambit","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/gambitcrypto","youtube":""}},{"symbol":"GANA","name":"GANA","type":"ERC20","address":"0xc0EA6306F6360FE7dCAB65D16Bf1a3AF92C79Aa2","ens_address":"","decimals":18,"website":"https://ganacoin.io","logo":{"src":"http://cdn.ganacoin.io/logo/gana_symbol_24.png","width":24,"height":24,"ipfs_hash":""},"support":{"email":"info@ganacoin.io","url":""},"social":{"blog":"https://medium.com/ganaproject","chat":"","facebook":"https://www.facebook.com/GanaProject/","forum":"","github":"https://github.com/GanaProject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/gana_official","twitter":"https://twitter.com/ganaproject","youtube":""}},{"symbol":"GAVEL","name":"GAVEL","type":"ERC20","address":"0x708876f486e448ee89eb332bfbc8e593553058b9","ens_address":"","decimals":18,"website":"http://gavelcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@gavelcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GBT","name":"GBT","type":"ERC20","address":"0x7585F835ae2d522722d2684323a0ba83401f32f5","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GBX","name":"Globitex","type":"ERC20","address":"0x12fCd6463E66974cF7bBC24FFC4d40d6bE458283","ens_address":"","decimals":8,"website":"https://www.globitexico.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@globitex.com","url":""},"social":{"blog":"https://medium.com/@globitex","chat":"","facebook":"https://www.facebook.com/globitex","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Globitex","slack":"","telegram":"https://t.me/globitex","twitter":"https://twitter.com/globitex_","youtube":""}},{"symbol":"GCP","name":"Globcoin Crypto Platform","type":"ERC20","address":"0xdb0F69306FF8F949f258E83f6b87ee5D052d0b23","ens_address":"","decimals":18,"website":"https://globcoin.io/","logo":{"src":"https://globcoin.io/assets/img/favicon-128x128.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"community@globcoin.io","url":""},"social":{"blog":"https://medium.com/@globcoin_io","chat":"","facebook":"https://www.facebook.com/globcoin.io","forum":"","github":"https://github.com/Globcoin","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/globcoin-io/","reddit":"https://www.reddit.com/r/globcoin/","slack":"","telegram":"https://t.me/globcoin","twitter":"https://twitter.com/Globcoin_io","youtube":"https://www.youtube.com/channel/UCd5vYU38p0YrQTUZ6UEKGdA/videos"}},{"symbol":"GEE","name":"Geens NPO","type":"ERC20","address":"0x4F4f0Db4de903B88f2B1a2847971E231D54F8fd3","ens_address":"","decimals":8,"website":"https://www.geens.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@geens.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/GeensNPO","forum":"","github":"https://github.com/GeensNPO","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/GeensNPO","slack":"","telegram":"https://t.me/GeensNPO","twitter":"https://twitter.com/GeensNPO","youtube":""}},{"symbol":"GELD","name":"GELD","type":"ERC20","address":"0x24083bb30072643c3bb90b44b7285860a755e687","ens_address":"","decimals":18,"website":"https://www.soerengelder.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"supportgelder@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/gelder","youtube":""}},{"symbol":"GEN","name":"DAOstack","type":"ERC20","address":"0x543Ff227F64Aa17eA132Bf9886cAb5DB55DCAddf","ens_address":"","decimals":18,"website":"https://daostack.io","logo":{"src":"https://daostack.io/daostack2828.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@daostack.io","url":""},"social":{"blog":"https://medium.com/daostack","chat":"","facebook":"","forum":"https://forum.daostack.io","github":"https://github.com/daostack","gitter":"https://gitter.im/daostack/Lobby","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/daostack","slack":"","telegram":"https://t.me/daostackcommunity","twitter":"https://twitter.com/daostack","youtube":"https://www.youtube.com/daostack"}},{"symbol":"GET","name":"GET","type":"ERC20","address":"0x8a854288a5976036a725879164ca3e91d30c6a1b","ens_address":"","decimals":18,"website":"http://www.get-protocol.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@get-protocol.io","url":""},"social":{"blog":"https://blog.get-protocol.io/","chat":"","facebook":"https://www.facebook.com/getprotocol","forum":"","github":"https://github.com/Getprotocol","gitter":"","instagram":"https://www.instagram.com/getprotocol/","linkedin":"","reddit":"https://www.reddit.com/r/GETprotocol/","slack":"","telegram":"https://t.me/getprotocol","twitter":"https://twitter.com/getprotocol","youtube":"https://www.youtube.com/getprotocol"}},{"symbol":"GIF","name":"GIFcoin Token","type":"ERC20","address":"0xFcD862985628b254061F7A918035B80340D045d3","ens_address":"","decimals":18,"website":"https://gifcoin.io/","logo":{"src":"https://www.gifcoin.io/assets/images/default/frontend/gifsingle400.png","width":"400","height":"400","ipfs_hash":""},"support":{"email":"support@gifcoin.io","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/gifcoin.io","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/gifcoin","twitter":"https://twitter.com/gifcoin_io","youtube":"https://youtube.com/channel/UCLq13wzOH1STqW8I-Z-ctAQ"}},{"symbol":"GIM","name":"Gimli","type":"ERC20","address":"0xaE4f56F072c34C0a65B3ae3E4DB797D831439D93","ens_address":"","decimals":8,"website":"https://gimli.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@gimli.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/thegimliproject","forum":"https://bitcointalk.org/index.php?topic=2014659.0","github":"https://github.com/thegimliproject/GimliToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.firstblood.io","telegram":"https://www.t.me/thegimliproject","twitter":"https://twitter.com/thegimliproject","youtube":""}},{"symbol":"GMT","name":"GMT","type":"ERC20","address":"0xb3Bd49E28f8F832b8d1E246106991e546c323502","ens_address":"","decimals":18,"website":"http://www.mercuryprotocol.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@mercuryprotocol.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/mercuryprotocol","slack":"https://www.mercuryprotocol.com/slack","telegram":"https://t.me/joinchat/G47gcA8f5EYFfEsILw7H2w","twitter":"https://twitter.com/mercuryprotocol","youtube":"https://www.youtube.com/channel/UCa_tIG6rzXFBYpyMM_CuCQA/videos"}},{"symbol":"GNO","name":"Gnosis","type":"ERC20","address":"0x6810e776880C02933D47DB1b9fc05908e5386b96","ens_address":"","decimals":18,"website":"https://gnosis.pm","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.gnosis.pm","telegram":"","twitter":"","youtube":""}},{"symbol":"GNT","name":"Golem","type":"ERC20","address":"0xa74476443119A942dE498590Fe1f2454d7D4aC0d","ens_address":"","decimals":18,"website":"https://golem.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://golemproject.org:3000","telegram":"","twitter":"","youtube":""}},{"symbol":"GOLDX","name":"GOLDX","type":"ERC20","address":"0xeAb43193CF0623073Ca89DB9B712796356FA7414","ens_address":"","decimals":18,"website":"https://www.hellogold.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"goldx@hellogold.org","url":""},"social":{"blog":"https://medium.com/hellogold","chat":"","facebook":"https://www.facebook.com/HelloGoldFoundation/","forum":"","github":"https://github.com/myHelloGold/Foundation","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/HelloGold/","slack":"","telegram":"https://t.me/HelloGoldFoundation","twitter":"https://twitter.com/FoundationHG","youtube":""}},{"symbol":"GRID","name":"GRID","type":"ERC20","address":"0x12b19d3e2ccc14da04fae33e63652ce469b3f2fd","ens_address":"","decimals":12,"website":"https://gridplus.io/token-sale","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"gridplus@consensys.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GROW","name":"Growchain","type":"ERC20","address":"0x0a9A9ce600D08BF9b76F49FA4e7b38A67EBEB1E6","ens_address":"","decimals":8,"website":"http://www.growchain.us","logo":{"src":"http://www.growchain.us/data/logo.png","width":"300","height":"286","ipfs_hash":""},"support":{"email":"admin@growchain.net","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Growchain-347032509142186","forum":"","github":"https://github.com/growchainnet","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/I4QeehEqER7kSqHh3VJAXQ","twitter":"https://twitter.com/Growchain_net","youtube":""}},{"symbol":"GSE","name":"GSENetwork","type":"ERC20","address":"0xe530441f4f73bDB6DC2fA5aF7c3fC5fD551Ec838","ens_address":"","decimals":4,"website":"https://www.gse.network","logo":{"src":"https://www.gse.network/static/media/gse-logo.png","width":"120","height":"120","ipfs_hash":""},"support":{"email":"info@gselab.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/gselabofficial","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/GSENetworkOfficial","twitter":"https://twitter.com/gselabofficial","youtube":""}},{"symbol":"GTC","name":"GTC Token","type":"ERC20","address":"0xB70835D7822eBB9426B56543E391846C107bd32C","ens_address":"","decimals":18,"website":"https://game.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"group@game.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/GameLeLe","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.game.com","telegram":"https://t.me/gameico","twitter":"https://twitter.com/gamecom666","youtube":""}},{"symbol":"GTKT","name":"GTKT","type":"ERC20","address":"0x025abad9e518516fdaafbdcdb9701b37fb7ef0fa","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GTO","name":"Gifto","type":"ERC20","address":"0xc5bbae50781be1669306b9e001eff57a2957b09d","ens_address":"","decimals":5,"website":"https://gifto.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@GIFTO","chat":"","facebook":"https://www.facebook.com/gifto.io/","forum":"","github":"https://github.com/GIFTO-io","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/GIFTO-io/","slack":"","telegram":"https://t.me/GIFTOOfficial","twitter":"https://twitter.com/GIFTO_io","youtube":""}},{"symbol":"GULD","name":"GULD ERC20","type":"ERC20","address":"0x9847345de8b614c956146bbea549336d9c8d26b6","ens_address":"","decimals":8,"website":"https://guld.io","logo":{"src":"https://guld.io/img/logo.png","width":"1000","height":"506","ipfs_hash":""},"support":{"email":"info@guld.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/guldblocktree/","forum":"","github":"https://github.com/guldcoin","gitter":"https://gitter.im/guldcoin","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/guldblocktree","twitter":"https://twitter.com/guldcoin","youtube":"https://www.youtube.com/channel/UClVwx_qNPp1UmQEjabZWK5A"}},{"symbol":"GUP","name":"GUP","type":"ERC20","address":"0xf7B098298f7C69Fc14610bf71d5e02c60792894C","ens_address":"","decimals":3,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GVT","name":"Genesis Vision","type":"ERC20","address":"0x103c3A209da59d3E7C4A89307e66521e081CFDF0","ens_address":"","decimals":18,"website":"https://genesis.vision","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@genesis.vision","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/GenesisVision","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/genesisvision","twitter":"https://twitter.com/genesis_vision","youtube":""}},{"symbol":"GXC","name":"GXC","type":"ERC20","address":"0x58ca3065c0f24c7c96aee8d6056b5b5decf9c2f8","ens_address":"","decimals":10,"website":"https://genevieveco.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"Info@genevieveco.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/GXCommunity","twitter":"","youtube":""}},{"symbol":"GXVC","name":"Genevieve VC","type":"ERC20","address":"0x22F0AF8D78851b72EE799e05F54A77001586B18A","ens_address":"","decimals":10,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"GZE","name":"GazeCoin","type":"ERC20","address":"0x8C65e992297d5f092A756dEf24F4781a280198Ff","ens_address":"","decimals":18,"website":"https://gazecoin.io","logo":{"src":"https://media.gazecoin.io/static/icons/gazecoin-28x28-on-trans.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@gazecoin.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/gazecoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/GazeCoinPublic","twitter":"https://twitter.com/GazeCoin","youtube":""}},{"symbol":"GZR","name":"Gizer","type":"ERC20","address":"0xE638dc39b6aDBEE8526b5C22380b4b45dAf46d8e","ens_address":"","decimals":6,"website":"https://gizer.io","logo":{"src":"https://etherscan.io/token/images/gizer2_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@gizer.io","url":""},"social":{"blog":"https://medium.com/@Gizer_Gaming/","chat":"https://discord.me/Gizer","facebook":"https://www.facebook.com/gazecoin","forum":"","github":"https://github.com/GizerInc/Gizer","gitter":"","instagram":"https://www.instagram.com/gizer_gaming/","linkedin":"https://www.linkedin.com/company/gizer-inc.","reddit":"https://www.reddit.com/r/Gizer/","slack":"","telegram":"https://t.me/joinchat/Em71dQ4KZ8G-XxpArXNuHg","twitter":"https://twitter.com/GazeCoin","youtube":"https://www.youtube.com/channel/UCfWwp8uANCJTm1HAYd2iDQQ/videos"}},{"symbol":"HAPPY","name":"Happiness","type":"ERC20","address":"0x5a567e28dbfa2bbd3ef13c0a01be114745349657","ens_address":"","decimals":2,"website":"https://btr.works","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@btr.works","url":""},"social":{"blog":"https://medium.com/@btrworks","chat":"","facebook":"https://www.facebook.com/btrworkscom","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/btrworks","twitter":"https://twitter.com/btrworks","youtube":"https://www.youtube.com/channel/UCjdXiMBGTm0dVtEP_fim9Zw"}},{"symbol":"HAT","name":"Hawala Today","type":"ERC20","address":"0x9002D4485b7594e3E850F0a206713B305113f69e","ens_address":"","decimals":12,"website":"https://www.hawala.today/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@hawala.today","url":""},"social":{"blog":"https://www.hawala.today/blog/","chat":"","facebook":"https://www.facebook.com/hawalatoday","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/HawalaToday/","slack":"","telegram":"","twitter":"https://twitter.com/hawalatoday","youtube":"https://t.me/hawala_chat"}},{"symbol":"HAV","name":"Havven","type":"ERC20","address":"0xC011A72400E58ecD99Ee497CF89E3775d4bd732F","ens_address":"","decimals":18,"website":"https://havven.io","logo":{"src":"https://havven.io/images/favicon3.ico","width":"32","height":"32","ipfs_hash":""},"support":{"email":"info@havven.io","url":""},"social":{"blog":"https://blog.havven.io","chat":"https://t.me/havven_official1","facebook":"https://www.facebook.com/havven.io/","forum":"https://bitcointalk.org/index.php?topic=2702470","github":"https://github.com/havven/havven","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/havven/","reddit":"https://www.reddit.com/r/havven/","slack":"","telegram":"https://t.me/havven_official1","twitter":"https://twitter.com/havven_io","youtube":"https://www.youtube.com/channel/UCGrPolyOAj3cODJIN5ssVTw"}},{"symbol":"HDG","name":"Hedge Crypto","type":"ERC20","address":"0xffe8196bc259e8dedc544d935786aa4709ec3e64","ens_address":"","decimals":18,"website":"https://www.hedge-crypto.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@hedge-crypto.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"Hdp","name":"HEdpAY","type":"ERC20","address":"0xe9ff07809ccff05dae74990e25831d0bc5cbe575","ens_address":"","decimals":18,"website":"http://hedpay.com","logo":{"src":"http://hedpay.com/content/images/systemCustom/o5VT92nyPRvA7E5j7ij265rHsezBdwnk04bXYqoY0OTsUF4IzFEIubdyfRlkLcDH_28x28.png?version=4.7.1&width=809&height=509","width":28,"height":28,"ipfs_hash":""},"support":{"email":"hedpayltd@gmail.com","url":"info@hedpay.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/hedpayltd","forum":"https://bitcointalk.org/index.php/HedPay","github":"https://github.com/HEDPAY","gitter":"","instagram":"https://www.instagram.com/myhedpay","linkedin":"https://www.linkedin.com/company/hedpay-ltd","reddit":"https://www.reddit.com/user/HEdpAY","slack":"https://hedpay.slack.com","telegram":"https://t.me/joinchat/GfkzpkPhHOM6kFZnhGbu2Q","twitter":"https://twitter.com/MyHEdpAY","youtube":""}},{"symbol":"Hdp.ф","name":"HEdpAY","type":"ERC20","address":"0x84543f868ec1b1fac510d49d13c069f64cd2d5f9","ens_address":"","decimals":18,"website":"http://hedpay.com","logo":{"src":"http://hedpay.com/content/images/systemCustom/o5VT92nyPRvA7E5j7ij265rHsezBdwnk04bXYqoY0OTsUF4IzFEIubdyfRlkLcDH_28x28.png?version=4.7.1&width=809&height=509","width":28,"height":28,"ipfs_hash":""},"support":{"email":"hedpayltd@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/hedpayltd","forum":"https://bitcointalk.org/index.php/HedPay","github":"https://github.com/HEDPAY","gitter":"","instagram":"https://www.instagram.com/myhedpay","linkedin":"https://www.linkedin.com/company/hedpay-ltd","reddit":"https://www.reddit.com/user/HEdpAY","slack":"https://hedpay.slack.com","telegram":"https://t.me/joinchat/GfkzpkPhHOM6kFZnhGbu2Q","twitter":"https://twitter.com/MyHEdpAY","youtube":""}},{"symbol":"HGT","name":"HGT","type":"ERC20","address":"0xba2184520A1cC49a6159c57e61E1844E085615B6","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"HIBT","name":"HiBTC Token","type":"ERC20","address":"0x9bb1db1445b83213a56d90d331894b3f26218e4e","ens_address":"","decimals":18,"website":"https://www.hibtc.com/","logo":{"src":"https://www.hibtc.com/om/coin-icon/HIBT-28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"admin@hibtc.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/profile.php?id=100027855751559","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/HiBTC_Exchange","youtube":""}},{"symbol":"HIG","name":"ethereumhigh ","type":"ERC20","address":"0xa9240fBCAC1F0b9A6aDfB04a53c8E3B0cC1D1444","ens_address":"","decimals":18,"website":"https://www.ethereumhigh.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"devteam@ethereumhigh.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Ethereum-High-701843846681250","forum":"","github":"https://github.com/ethereumhigh/Ethereum-High","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/icocrypto/comments/7dcfv7/ann_ethereum_high_ico_launch_on_20th/","slack":"","telegram":"","twitter":"https://twitter.com/Ethereum_High","youtube":""}},{"symbol":"HKG","name":"HKG","type":"ERC20","address":"0x14F37B574242D366558dB61f3335289a5035c506","ens_address":"","decimals":3,"website":"http://www.ether.camp","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://ether-camp-friends.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"HKY","name":"Hicky","type":"ERC20","address":"0x88ac94d5d175130347fc95e109d77ac09dbf5ab7","ens_address":"","decimals":18,"website":"https://hicky.io","logo":{"src":"http://hicky.io/assets/img/hicky-icon.svg","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@hicky.io","url":""},"social":{"blog":"https://medium.com/hickynews","chat":"https://t.me/getpicky","facebook":"","forum":"","github":"https://github.com/HickyToken/hickycontracts","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/getpicky","twitter":"https://twitter.com/HickyDapp","youtube":""}},{"symbol":"HMQ","name":"HMQ","type":"ERC20","address":"0xcbCC0F036ED4788F63FC0fEE32873d6A7487b908","ens_address":"","decimals":8,"website":"https://humaniq.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@humaniq.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"HODL","name":"HODLCoin","type":"ERC20","address":"0xb45d7Bc4cEBcAB98aD09BABDF8C818B2292B672c","ens_address":"","decimals":18,"website":"https://github.com/arachnid/hodlcoin","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"HORSE","name":"HORSE","type":"ERC20","address":"0x5B0751713b2527d7f002c0c4e2a37e1219610A6B","ens_address":"","decimals":18,"website":"https://ethorse.com","logo":{"src":"https://ethorse.com/images/ethorse-logo.png","width":"480","height":"695","ipfs_hash":""},"support":{"email":"support@ethorse.com","url":""},"social":{"blog":"https://medium.com/@ethorse","chat":"https://discordapp.com/invite/vdTXRmT","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2573978.0","github":"https://github.com/ethorse","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Ethorse/","slack":"","telegram":"https://telegram.me/ethorse","twitter":"https://twitter.com/EthorseTeam","youtube":"https://www.youtube.com/channel/UC2lOnpQUPVE13E_Mpp5TVsA"}},{"symbol":"HOT","name":"HoloToken","type":"ERC20","address":"0x6c6ee5e31d828de241282b9606c8e98ea48526e2","ens_address":"token.holo-host.eth","decimals":18,"website":"https://holo.host/","logo":{"src":"https://holo.host/wp-content/uploads/2017/12/Holologo_Profile.png","width":"1580","height":"1580","ipfs_hash":""},"support":{"email":"help@holo.host","url":"https://chat.holochain.org"},"social":{"blog":"https://medium.com/h-o-l-o","chat":"https://chat.holochain.org","facebook":"https://www.facebook.com/holohost/","forum":"https://bitcointalk.org/index.php?topic=2963267.0","github":"https://github.com/Holo-Host","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/holochain/","slack":"","telegram":"https://t.me/channelholo","twitter":"https://twitter.com/H_O_L_O_","youtube":"https://www.youtube.com/channel/UCSRJRJvkZHk3f1PemqT-R0g"}},{"symbol":"HOT","name":"Hydro Protocol","type":"ERC20","address":"0x9af839687f6c94542ac5ece2e317daae355493a1","ens_address":"","decimals":18,"website":"https://thehydrofoundation.com/","logo":{"src":"https://s2.coinmarketcap.com/static/img/coins/32x32/2430.png","width":"32","height":"32","ipfs_hash":""},"support":{"email":"libukang@ddex.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/hydroprotocol","twitter":"","youtube":""}},{"symbol":"HST","name":"HST","type":"ERC20","address":"0x554C20B7c486beeE439277b4540A434566dC4C02","ens_address":"","decimals":18,"website":"https://horizonstate.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"questions@horizonstate.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/HorizonState","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"HVN","name":"Hive Project","type":"ERC20","address":"0xC0Eb85285d83217CD7c891702bcbC0FC401E2D9D","ens_address":"","decimals":8,"website":"https://hive-project.net","logo":{"src":"https://hive-project.net/images/hive-logo.png","width":151,"height":64,"ipfs_hash":""},"support":{"email":"support@hive-project.net","url":"https://hive-project.zendesk.com"},"social":{"blog":"https://blog.hive-project.net","chat":"","facebook":"https://www.facebook.com/HiveProject.net","forum":"","github":"https://github.com/HiveProjectLTD","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/hiveproject_net","reddit":"https://www.reddit.com/r/HiveProject_net","slack":"","telegram":"https://t.me/hiveprojectnet","twitter":"https://twitter.com/hiveproject_net","youtube":"https://www.youtube.com/channel/UCpV4Wwhy5sZbjH9hqAdHlKw"}},{"symbol":"ICE","name":"ICE","type":"ERC20","address":"0x5a84969bb663fb64F6d015DcF9F622Aedc796750","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ICN","name":"ICN","type":"ERC20","address":"0x888666CA69E0f178DED6D75b5726Cee99A87D698","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ICO","name":"ICO","type":"ERC20","address":"0xa33e729bf4fdeb868b534e1f20523463d9c46bee","ens_address":"","decimals":10,"website":"http://icocoin.org","logo":{"src":"https://etherscan.io/token/images/icocoin_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"icobi@icobi.com","url":""},"social":{"blog":"","chat":"https://u.wechat.com/EM6Tgldvr3Wn9eprwIszuSo","facebook":"https://www.facebook.com/coin.ico.7","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/icocoin1","youtube":""}},{"symbol":"ICOS","name":"ICOS","type":"ERC20","address":"0x014B50466590340D41307Cc54DCee990c8D58aa8","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"khovratovich@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ICX","name":"ICON","type":"ERC20","address":"0xb5a5f22694352c15b00323844ad545abb2b11028","ens_address":"","decimals":18,"website":"https://www.icon.foundation","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@icon.foundation","url":""},"social":{"blog":"https://medium.com/helloiconworld","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/icon","slack":"","telegram":"https://t.me/joinchat/Fqw4igkkVmYtj--ZVi-QcA","twitter":"https://twitter.com/helloiconworld","youtube":""}},{"symbol":"IDEA","name":"IDEA Token","type":"ERC20","address":"0x814cafd4782d2e728170fda68257983f03321c58","ens_address":"","decimals":0,"website":"http://www.ideatoken.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"james@embermine.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/IDEA-Token-195695784302309/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/IdeaToken","twitter":"https://twitter.com/IdeaToken","youtube":""}},{"symbol":"IFT","name":"InvestFeed","type":"ERC20","address":"0x7654915a1b82d6d2d0afc37c52af556ea8983c7e","ens_address":"","decimals":18,"website":"https://investfeed.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@investFeed","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/investFeedOfficial","slack":"","telegram":"https://t.me/investfeed","twitter":"https://twitter.com/investFeed","youtube":""}},{"symbol":"IIC","name":"IIC","type":"ERC20","address":"0x16662f73df3e79e54c6c5938b4313f92c524c120","ens_address":"","decimals":18,"website":"https://ibiscoin.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@ibiscoin.co","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/iiccoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/ibiscoin","slack":"","telegram":"https://t.me/ibiscoin","twitter":"https://twtter.com/ibiscoin","youtube":""}},{"symbol":"IKB","name":"IKB","type":"ERC20","address":"0x88AE96845e157558ef59e9Ff90E766E22E480390","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mitchellfchan@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"IMC","name":"Immune Coin","type":"ERC20","address":"0xe3831c5A982B279A198456D577cfb90424cb6340","ens_address":"","decimals":6,"website":"http://immunecoin.info","logo":{"src":"http://immunecoin.info/logo_32_32.png","width":32,"height":32,"ipfs_hash":""},"support":{"email":"imctoken2017@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/IMmune-Coin-1932949320301974","forum":"https://bitcointalk.org/index.php?topic=2336357.msg23877644#msg23877644","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/IMCtoken","twitter":"https://twitter.com/IMmuneCoin","youtube":""}},{"symbol":"IMT","name":"IMT","type":"ERC20","address":"0x22E5F62D0FA19974749faa194e3d3eF6d89c08d7","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"IND","name":"Indorse","type":"ERC20","address":"0xf8e386EDa857484f5a12e4B5DAa9984E06E73705","ens_address":"","decimals":18,"website":"https://indorse.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/indorse","slack":"https://slack.indorse.io","telegram":"","twitter":"https://twitter.com/joinindorse","youtube":""}},{"symbol":"INRM","name":"Integrated Money","type":"ERC20","address":"0x48e5413b73add2434e47504E2a22d14940dBFe78","ens_address":"","decimals":3,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"INS","name":"INS","type":"ERC20","address":"0x5b2e4a700dfbc560061e957edec8f6eeeb74a320","ens_address":"instoken.eth","decimals":10,"website":"https://ins.world","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@ins.world","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"INSTAR","name":"Insights Network","type":"ERC20","address":"0xc72fe8e3dd5bef0f9f31f259399f301272ef2a2d","ens_address":"","decimals":18,"website":"https://insights.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@insights.network","url":""},"social":{"blog":"https://medium.com/@InsightsNetwork","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://telegram.me/InsightsNetwork","twitter":"","youtube":""}},{"symbol":"INXT","name":"Internxt","type":"ERC20","address":"0xa8006c4ca56f24d6836727d106349320db7fef82","ens_address":"","decimals":8,"website":"https://internxt.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@internxt.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/internxt_io","twitter":"","youtube":""}},{"symbol":"IOST","name":"IOSToken","type":"ERC20","address":"0xFA1a856Cfa3409CFa145Fa4e20Eb270dF3EB21ab","ens_address":"","decimals":18,"website":"https://iost.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@iostoken","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/officialios","twitter":"https://twitter.com/iostoken","youtube":""}},{"symbol":"IoT","name":"IoTコイン","type":"ERC20","address":"0xc34b21f6f8e51cc965c2393b3ccfa3b82beb2403","ens_address":"","decimals":6,"website":"http://www.bitcoin-biz.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"talk01ta52@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"IOTX","name":"IoTeX Network","type":"ERC20","address":"0x6fb3e0a217407efff7ca062d46c26e5d60a14d69","ens_address":"","decimals":18,"website":"http://iotex.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@iotex.io","url":""},"social":{"blog":"https://medium.com/@iotex","chat":"","facebook":"","forum":"","github":"https://github.com/iotexproject/iotex-core","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/iotex/","reddit":"https://www.reddit.com/r/IoTeX/","slack":"","telegram":"https://t.me/IoTeXGroup","twitter":"https://twitter.com/iotex_io","youtube":"https://www.youtube.com/channel/UCdj3xY3LCktuamvuFusWOZw"}},{"symbol":"IPL","name":"InsurePal token","type":"ERC20","address":"0x64CdF819d3E75Ac8eC217B3496d7cE167Be42e80","ens_address":"","decimals":18,"website":"https://insurepal.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/insurepal-blog","chat":"","facebook":"https://www.facebook.com/InsurePal/","forum":"","github":"https://github.com/InsurePal","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18358945/","reddit":"","slack":"","telegram":"https://t.me/InsurePal","twitter":"https://twitter.com/InsurePal_io","youtube":"https://www.youtube.com/channel/UCgpEjq3P54FKDmJDyOjJ9vg"}},{"symbol":"IPSX","name":"IPSX","type":"ERC20","address":"0x001f0aa5da15585e5b2305dbab2bac425ea71007","ens_address":"","decimals":18,"website":"https://ip.sx","logo":{"src":"https://ip.sx/images/IPSX-Logo-28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"contact@ip.sx","url":""},"social":{"blog":"https://medium.ip.sx/","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"IST34","name":"IST34 Token","type":"ERC20","address":"0x0cf713b11c9b986ec40d65bd4f7fbd50f6ff2d64","ens_address":"","decimals":18,"website":"https://hiperteknoloji.org","logo":{"src":"https://hiperteknoloji.org/ht/ist34-token-28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"ist34@hiperteknoloji.org","url":""},"social":{"blog":"https://hiperteknoloji.org/2018/05/10/ist34token/","chat":"","facebook":"https://www.facebook.com/ist34token","forum":"https://bitcoingarden.org/forum/index.php?topic=33783","github":"https://github.com/IST34Token","gitter":"https://gitter.im/IST34-Token","instagram":"https://www.instagram.com/ist34_token/","linkedin":"https://www.linkedin.com/in/ist34-token","reddit":"https://www.reddit.com/user/IST34_Token","slack":"https://ist34token.slack.com","telegram":"https://t.me/IST34Token","twitter":"https://twitter.com/IST34_Token","youtube":"https://www.youtube.com/channel/UCwEbCIn8VkPMBXuyyg8Ia8w"}},{"symbol":"ITC","name":"IoT Chain","type":"ERC20","address":"0x5e6b6d9abad9093fdc861ea1600eba1b355cd940","ens_address":"","decimals":18,"website":"https://iotchain.io/","logo":{"src":"http://etherscan.io/token/images/iotchain28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@iotchain.io","url":""},"social":{"blog":"https://medium.com/@IoT_Chain","chat":"http://qm.qq.com/cgi-bin/qm/qr?k=CjS_9da0Uj5SfXX8Wm1PIDuL_Nbjzmc3","facebook":"https://www.facebook.com/IoTChain/","forum":"https://bitcointalk.org/index.php?topic=2612309.0","github":"https://github.com/IoTChainCode","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/itcofficial/","slack":"https://iotchaingroup.slack.com/","telegram":"https://t.me/IoTChain","twitter":"https://twitter.com/IoT_Chain","youtube":""}},{"symbol":"ITT","name":"ITT Token","type":"ERC20","address":"0x0aeF06DcCCC531e581f0440059E6FfCC206039EE","ens_address":"","decimals":8,"website":"http://intelligenttrading.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@intelligenttrading.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2064501","github":"https://github.com/IntelligentTrading","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/ITT_Token","slack":"https://itt-token-slack.herokuapp.com","telegram":"","twitter":"https://twitter.com/itt_token","youtube":""}},{"symbol":"IXT","name":"IXT","type":"ERC20","address":"0xfca47962d45adfdfd1ab2d972315db4ce7ccf094","ens_address":"","decimals":8,"website":"https://www.ixt.global","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@ixt.global","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/ixttoken/","reddit":"https://www.reddit.com/user/ixt-token","slack":"","telegram":"https://t.me/iXledger","twitter":"https://twitter.com/IXT_token","youtube":""}},{"symbol":"J8T","name":"J8T Token","type":"ERC20","address":"0x0d262e5dc4a06a0f1c90ce79c7a60c09dfc884e4","ens_address":"","decimals":8,"website":"https://jet8.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"token@jet8.io","url":""},"social":{"blog":"https://medium.com/jet8-token","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2862213.0","github":"https://github.com/jet8","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/jet8/","reddit":"https://www.reddit.com/r/Jet8","slack":"","telegram":"https://t.me/Jet8_ecosystem","twitter":"https://twitter.com/jet8app","youtube":"http://bit.ly/JET8_videos"}},{"symbol":"JBX","name":"JBOX","type":"ERC20","address":"0x884e3902C4d5cFA86de4aCE7A96AA91EbC25C0Ff","ens_address":"","decimals":18,"website":"https://www.jboxcoin.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@jboxcoin.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/jboxcommunity","forum":"https://bitcointalk.org/index.php?topic=2330794.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/jboxcoin","twitter":"https://twitter.com/@Jbox_coin","youtube":""}},{"symbol":"JET","name":"JET","type":"ERC20","address":"0x8727c112c712c4a03371ac87a74dd6ab104af768","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"JetCoins","name":"JetCoins","type":"ERC20","address":"0x773450335eD4ec3DB45aF74f34F2c85348645D39","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"JNT","name":"JNT","type":"ERC20","address":"0xa5Fd1A791C4dfcaacC963D4F73c6Ae5824149eA7","ens_address":"","decimals":18,"website":"https://jibrel.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@jibrel.network","url":"https://jibrelnetwork.freshdesk.com/support/tickets/new"},"social":{"blog":"https://medium.com/@jibrelnetwork","chat":"","facebook":"https://www.facebook.com/jibrelnetwork","forum":"https://bitcointalk.org/index.php?topic=2057487.0","github":"https://github.com/jibrelnetwork","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/jibrel-network","reddit":"https://www.reddit.com/r/JibrelNetwork","slack":"https://jibrel.io","telegram":"https://t.me/jibrel_network","twitter":"https://twitter.com/JibrelNetwork","youtube":"https://www.youtube.com/channel/UChRHMyaETb7M9OwfQQodh7g"}},{"symbol":"JOY","name":"JOYSO","type":"ERC20","address":"0xDDe12a12A6f67156e0DA672be05c374e1B0a3e57","ens_address":"joysoToken.eth","decimals":6,"website":"https://joyso.io/","logo":{"src":"https://etherscan.io/token/images/joyso_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@joyso.io","url":"https://joyso.zendesk.com/hc/en-us"},"social":{"blog":"https://medium.com/joyso","chat":"","facebook":"https://www.facebook.com/Joyso.io","forum":"","github":"https://github.com/Joyso-io","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/joyso/","reddit":"","slack":"","telegram":"https://t.me/joyso_io","twitter":"https://twitter.com/joyso_io","youtube":"https://www.youtube.com/channel/UCyRNTypArQG6wRdTAPapAGQ"}},{"symbol":"KC","name":"KMCC","type":"ERC20","address":"0x0D6DD9f68d24EC1d5fE2174f3EC8DAB52B52BaF5","ens_address":"","decimals":18,"website":"https://www.kmcc.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"dwgoforit@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"KEE","name":"CryptoKEE","type":"ERC20","address":"0x72D32ac1c5E66BfC5b08806271f8eEF915545164","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"KEY","name":"SelfKey","type":"ERC20","address":"0x4CC19356f2D37338b9802aa8E8fc58B0373296E7","ens_address":"","decimals":18,"website":"https://selfkey.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@selfkey.org","url":""},"social":{"blog":"https://medium.com/selfkey","chat":"","facebook":"https://www.facebook.com/SelfKeyNetwork","forum":"https://bitcointalk.org/index.php?topic=2310691","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18232422","reddit":"https://www.reddit.com/r/selfkey","slack":"","telegram":"https://t.me/selfkeyfoundation","twitter":"http://twitter.com/SelfKey","youtube":"https://www.youtube.com/channel/UCsilze3-MhbCY3_QkKul3PQ"}},{"symbol":"KEY","name":"BihuKey","type":"ERC20","address":"0x4cd988afbad37289baaf53c13e98e2bd46aaea8c","ens_address":"","decimals":18,"website":"https://bihu.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"wow@bihu.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/bihu-id","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"KICK","name":"KICK","type":"ERC20","address":"0x27695E09149AdC738A978e9A678F99E4c39e9eb9","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@kickico.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/kickicoplatform","forum":"https://bitcointalk.org/index.php?topic=2046684.0","github":"https://github.com/kickico","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company-beta/11199886","reddit":"https://www.reddit.com/r/KICKICO_Platform","slack":"","telegram":"https://t.me/kickico","twitter":"https://twitter.com/KICKICOplatform","youtube":""}},{"symbol":"KIN","name":"Kin Foundation","type":"ERC20","address":"0x818Fc6C2Ec5986bc6E2CBf00939d90556aB12ce5","ens_address":"","decimals":18,"website":"https://kin.kik.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"kin@kik.com","url":""},"social":{"blog":"https://medium.com/kinfoundation","chat":"","facebook":"","forum":"","github":"https://github.com/kikinteractive/kin-token","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/KinFoundation","slack":"https://kinfoundation.slack.com","telegram":"","twitter":"https://twitter.com/@kin_foundation","youtube":""}},{"symbol":"KNC","name":"Kyber Network","type":"ERC20","address":"0xdd974D5C2e2928deA5F71b9825b8b646686BD200","ens_address":"","decimals":18,"website":"https://kyber.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@kyber.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/KyberNetwork","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://kybernetwork.slack.com","telegram":"","twitter":"https://twitter.com/KyberNetwork","youtube":""}},{"symbol":"KPR","name":"KPRCoin","type":"ERC20","address":"0xb5c33f965c8899d255c34cdd2a3efa8abcbb3dea","ens_address":"","decimals":18,"website":"https://www.kprms.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@kprms.com","url":"https://www.kprms.com/contact-us"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/KPRMS/","forum":"","github":"https://github.com/KPRToken/KPR-code-for-ICO","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/alain-d-ombrille-8b7063145/","reddit":"https://www.reddit.com/user/kprcoin/","slack":"","telegram":"https://t.me/joinchat/FR6XSEPfbk7K1UYiiNXr1w","twitter":"https://twitter.com/kprcoin","youtube":"https://www.youtube.com/watch?time_continue=1&v=1kq2pRe7t4U"}},{"symbol":"KRL","name":"Kryll","type":"ERC20","address":"0x464ebe77c293e473b48cfe96ddcf88fcf7bfdac0","ens_address":"","decimals":18,"website":"https://kryll.io/","logo":{"src":"https://kryll.io/external/K_256px.png","width":"512","height":"512","ipfs_hash":""},"support":{"email":"support@kryll.io","url":"https://t.me/kryll_io"},"social":{"blog":"https://medium.com/@kryll_io","chat":"","facebook":"https://www.facebook.com/kryll.io/","forum":"https://bitcointalk.org/index.php?topic=2791849.0","github":"https://github.com/Cryptense/","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/cryptense","reddit":"https://www.reddit.com/r/Kryll_io/","slack":"","telegram":"https://t.me/kryll_io","twitter":"https://twitter.com/kryll_io","youtube":"https://www.youtube.com/channel/UCET6DYvfwpIvmeY2x_VdHMQ"}},{"symbol":"KZN","name":"KaizenCoin","type":"ERC20","address":"0x9541FD8B9b5FA97381783783CeBF2F5fA793C262","ens_address":"","decimals":8,"website":"http://kaizencoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"kaizencoin@kaizencoin.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LA","name":"LATOKEN","type":"ERC20","address":"0xE50365f5D679CB98a1dd62D6F6e58e59321BcdDf","ens_address":"","decimals":18,"website":"https://latoken.com/","logo":{"src":"https://cdn.latoken.com/common/img/logo.svg","width":512,"height":512,"ipfs_hash":""},"support":{"email":"info@latoken.com","url":""},"social":{"blog":"https://blog.latoken.com/","chat":"","facebook":"https://www.facebook.com/LiquidAssetToken/","forum":"","github":"https://github.com/latoken","gitter":"","instagram":"https://www.instagram.com/latokens/","linkedin":"https://www.linkedin.com/company/latoken","reddit":"https://www.reddit.com/r/LAToken/","slack":"","telegram":"https://t.me/la_token","twitter":"https://twitter.com/LATokens","youtube":"https://www.youtube.com/channel/UCvTfsRYJYD2X26VXbqDVgTQ/featured"}},{"symbol":"LALA","name":"LALA World Token","type":"ERC20","address":"0xfD107B473AB90e8Fbd89872144a3DC92C40Fa8C9","ens_address":"","decimals":18,"website":"https://lalaworld.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@lalaworld.io","url":""},"social":{"blog":"https://blog.lalaworld.io/","chat":"","facebook":"https://www.facebook.com/MyLaLaWorld","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/MyLaLaWorld/","reddit":"https://www.reddit.com/user/MyLaLaWorld/","slack":"http://bit.ly/2yiWRE4","telegram":"https://t.me/LaLaWorld","twitter":"https://twitter.com/MyLaLaWorld","youtube":"https://www.youtube.com/channel/UCCcnh2DTw_mXECPgOOBN84Q/videos"}},{"symbol":"LDC","name":"LEADCOIN","type":"ERC20","address":"0x5102791ca02fc3595398400bfe0e33d7b6c82267","ens_address":"","decimals":18,"website":"https://www.leadcoin.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@leadcoin.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/11416555/","reddit":"https://www.reddit.com/r/leadcoin/","slack":"","telegram":"https://t.me/LeadCoinNetwork","twitter":"https://twitter.com/LeadCoinNetwork","youtube":"https://www.youtube.com/channel/UCWl9l8LRP816rEcAzY66kJg"}},{"symbol":"LEDU","name":"LEDU","type":"ERC20","address":"0x5b26C5D0772E5bbaC8b3182AE9a13f9BB2D03765","ens_address":"","decimals":8,"website":"https://tokensale.liveedu.tv","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@liveedu.tv","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/livecodingtvofficial","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LEMO","name":"Lemo","type":"ERC20","address":"0x60C24407d01782C2175D32fe7C8921ed732371D1","ens_address":"","decimals":18,"website":"www.lemochain.com","logo":{"src":"https://lemochip.hellobyebye.com/logo.png","width":"110","height":"72","ipfs_hash":""},"support":{"email":"foundation@lemochain.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/LemoChain","forum":"","github":"https://github.com/LemoFoundationLtd","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/LemoChain","slack":"","telegram":"https://t.me/lemochain","twitter":"https://twitter.com/LemoChain","youtube":""}},{"symbol":"LEND","name":"EHTLend","type":"ERC20","address":"0x80fB784B7eD66730e8b1DBd9820aFD29931aab03","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LFR","name":"LifeRun Coin","type":"ERC20","address":"0xc798cd1c49db0e297312e4c682752668ce1db2ad","ens_address":"","decimals":5,"website":"https://www.liferun.cc","logo":{"src":"https://www.liferun.cc/static/LRF/images/liferun-logo28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@liferun.cc","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LGO","name":"LGO","type":"ERC20","address":"0x123ab195dd38b1b40510d467a6a359b201af056f","ens_address":"","decimals":8,"website":"https://legolas.exchange/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LGR","name":"Logarithm","type":"ERC20","address":"0x2eb86e8fc520e0f6bb5d9af08f924fe70558ab89","ens_address":"","decimals":8,"website":"https://getlogarithm.com","logo":{"src":"https://getlogarithm.com/images/logo256.png","width":256,"height":256,"ipfs_hash":""},"support":{"email":"one@getlogarithm.com","url":"https://getlogarithm.com/contact"},"social":{"blog":"","chat":"https://t.me/joinchat/CkoPiQxH8UujJ5tkifNIGA","facebook":"https://www.facebook.com/getlogarithm","forum":"https://bitcointalk.org/index.php?topic=2348732","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/CkoPiQxH8UujJ5tkifNIGA","twitter":"https://twitter.com/getlogarithm","youtube":""}},{"symbol":"LIF","name":"LIF","type":"ERC20","address":"0xEB9951021698B42e4399f9cBb6267Aa35F82D59D","ens_address":"lif.windingtree.eth","decimals":18,"website":"https://windingtree.com/","logo":{"src":"https://etherscan.io/token/images/lif_28.png","width":"28px","height":"28px","ipfs_hash":""},"support":{"email":"support@windingtree.com","url":""},"social":{"blog":"https://blog.windingtree.com","chat":"https://windingtree.rocket.chat/","facebook":"https://www.facebook.com/WindingTree","forum":"https://bitcointalk.org/index.php?topic=1946065","github":"https://github.com/windingtree","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/winding-tree","reddit":"https://reddit.com/r/windingtree","slack":"","telegram":"https://t.me/windingtree","twitter":"https://twitter.com/windingtree","youtube":"https://www.youtube.com/channel/UCFuemEOhCfenYMoNdjD0Aew"}},{"symbol":"LIFE","name":"LIFE","type":"ERC20","address":"0xff18dbc487b4c2e3222d115952babfda8ba52f5f","ens_address":"","decimals":18,"website":"www.lifelabs.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@lifelabs.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2196925.new;topicseen","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LINK (Chainlink)","name":"LINK Chainlink","type":"ERC20","address":"0x514910771af9ca656af840dff83e8264ecf986ca","ens_address":"","decimals":18,"website":"https://link.smartcontract.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@smartcontract.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://chainlinknetwork.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"LINK Platform","name":"Link Platform","type":"ERC20","address":"0xe2e6d4be086c6938b53b22144855eef674281639","ens_address":"","decimals":18,"website":"https://ethereum.link","logo":{"src":"https://etherscan.io/token/images/linkplatform28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@ethereum.link","url":""},"social":{"blog":"https://www.medium.com/@ethlink","chat":"","facebook":"https://www.facebook.com/ethereumlink","forum":"","github":"https://github.com/ethlink","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://ethereum.link/invite.php","telegram":"","twitter":"https://www.twitter.com/linkplatform","youtube":""}},{"symbol":"LIVE","name":"LIVE Token","type":"ERC20","address":"0x24A77c1F17C547105E14813e517be06b0040aa76","ens_address":"","decimals":18,"website":"https://livestars.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@livestars.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/LiveStarsPlatform","slack":"","telegram":"https://t.me/livestarsio","twitter":"https://twitter.com/LiveStarsIO","youtube":""}},{"symbol":"LNC","name":"Lancer Token","type":"ERC20","address":"0x63e634330A20150DbB61B15648bC73855d6CCF07","ens_address":"","decimals":18,"website":"https://blocklancer.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@blocklancer.net","url":""},"social":{"blog":"https://medium.com/blocklancer-revolution-of-the-freelance-job-market","chat":"https://discordapp.com/invite/Jw4wCsm","facebook":"https://www.facebook.com/blocklancer","forum":"https://bitcointalk.org/index.php?topic=1974481","github":"https://github.com/Blocklancer/Blocklancer-Contracts","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/blocklancer","slack":"https://blocklancer-slack.herokuapp.com","telegram":"http://telegram.me/officialblocklancer","twitter":"https://twitter.com/blocklancer","youtube":""}},{"symbol":"LNC-Linker Coin","name":"Linker Coin","type":"ERC20","address":"0x6beb418fc6e1958204ac8baddcf109b8e9694966","ens_address":"","decimals":18,"website":"https://www.linkercoin.com/en","logo":{"src":"https://drive.google.com/file/d/1nvFvAFWTuMg5pH7W7Apoe_-Xob2-TY_u/view?usp=sharing","width":150,"height":150,"ipfs_hash":""},"support":{"email":"staff@linkercoin.com","url":""},"social":{"blog":"https://medium.com/linkercoin","chat":"","facebook":"https://www.facebook.com/Linkercoinoffical/?fref=ts","forum":"https://bitcointalk.org/index.php?topic=2326742","github":"https://github.com/linkercoinfoundation","gitter":"","instagram":"https://www.instagram.com/linkercoin_official","linkedin":"https://www.linkedin.com/in/linker-coin-854a0a153","reddit":"https://www.reddit.com/user/LinkerCoin","slack":"","telegram":"https://t.me/linkercoin","twitter":"https://twitter.com/search?q=linkercoin&src=typd","youtube":"https://www.youtube.com/channel/UCwlpsYDS75x5ueEAAZUnZBQ"}},{"symbol":"LND","name":"Lendingblock","type":"ERC20","address":"0x0947b0e6D821378805c9598291385CE7c791A6B2","ens_address":"","decimals":18,"website":"https://lendingblock.com","logo":{"src":"https://etherscan.io/token/images/lendingblock_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@lendingblock.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/lendingblock","forum":"","github":"https://github.com/lendingblock","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18359515/","reddit":"https://www.reddit.com/r/Lendingblock/","slack":"","telegram":"https://t.me/lendingblock","twitter":"https://twitter.com/lendingblock","youtube":"https://www.youtube.com/channel/UCSW4xLO-6zXYI6BVT0o64Eg"}},{"symbol":"LOC","name":"LockChain","type":"ERC20","address":"0x5e3346444010135322268a4630d2ed5f8d09446c","ens_address":"","decimals":18,"website":"https://LockChain.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@lockchain.co","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/LockChainLOK","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/F3YOYQx123PO4FPfNRPihQ","twitter":"","youtube":""}},{"symbol":"LOCI","name":"LOCIcoin","type":"ERC20","address":"0x9c23d67aea7b95d80942e3836bcdf7e708a747c2","ens_address":"","decimals":18,"website":"https://locipro.com","logo":{"src":"https://locipro.com/assets/loci-28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"dan@loci.io","url":""},"social":{"blog":"https://medium.com/@John_Loci","chat":"","facebook":"https://www.facebook.com/Loci.InnVenn/","forum":"https://bitcointalk.org/index.php?topic=2161880.msg21647125#msg21647125","github":"http://github.com/locipro/loci-coin-sale","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/loci-pro/","reddit":"https://www.reddit.com/r/loci_io/","slack":"","telegram":"https://t.me/Loci_InnVenn","twitter":"https://twitter.com/loci_io","youtube":"https://www.youtube.com/watch?v=UNGDGDDIz7Y"}},{"symbol":"LOCUS","name":"Locus Chain","type":"ERC20","address":"0xC64500DD7B0f1794807e67802F8Abbf5F8Ffb054","ens_address":"","decimals":18,"website":"https://www.locuschain.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":" info@locuschain.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LOK","name":"LookRev Old","type":"ERC20","address":"0x21aE23B882A340A22282162086bC98D3E2B73018","ens_address":"","decimals":18,"website":"https://lookrev.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@lookrev.com","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/lookrev","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://lookrev.slack.com","telegram":"","twitter":"https://twitter.com/lookrev","youtube":""}},{"symbol":"LOOK","name":"LookRev","type":"ERC20","address":"0x253c7dd074f4bacb305387f922225a4f737c08bd","ens_address":"","decimals":18,"website":"https://lookrev.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@lookrev.com","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/lookrev","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://lookrev.slack.com","telegram":"","twitter":"https://twitter.com/lookrev","youtube":""}},{"symbol":"LOOM","name":"LOOM","type":"ERC20","address":"0xa4e8c3ec456107ea67d3075bf9e3df3a75823db0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LRC","name":"LRC","type":"ERC20","address":"0xEF68e7C694F40c8202821eDF525dE3782458639f","ens_address":"","decimals":18,"website":"https://loopring.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"foundation@loopring.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/loopringorg","youtube":""}},{"symbol":"LUC","name":"LUCToken","type":"ERC20","address":"0x5dbe296f97b23c4a6aa6183d73e574d02ba5c719","ens_address":"","decimals":18,"website":"https://play2live.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@play2live,io","url":""},"social":{"blog":"https://medium.com/play2live","chat":"","facebook":"https://www.facebook.com/play2live.io/","forum":"https://bitcointalk.org/index.php?topic=2450026","github":"https://github.com/Play2Live/blockchain","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18255836/","reddit":"https://www.reddit.com/r/Play2Live/","slack":"","telegram":"https://t.me/play2live","twitter":"https://twitter.com/play_2_live","youtube":""}},{"symbol":"LUCK","name":"LUCK","type":"ERC20","address":"0xFB12e3CcA983B9f59D90912Fd17F8D745A8B2953","ens_address":"","decimals":0,"website":"http://www.luckytoken.info","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@luckytoken.info","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://www.twitter.com/lucky_token","youtube":""}},{"symbol":"LUM","name":"Lumino Coin","type":"ERC20","address":"0xa89b5934863447f6e4fc53b315a93e873bda69a3","ens_address":"","decimals":18,"website":"https://www.luminocoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"luminocoin@protonmail.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/luminocoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"LUN","name":"LUN","type":"ERC20","address":"0xfa05A73FfE78ef8f1a739473e462c54bae6567D9","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"M-ETH","name":"M-ETH","type":"ERC20","address":"0x3f4b726668da46f5e0e75aa5d478acec9f38210f","ens_address":"","decimals":18,"website":"http://www.mostexclusive.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@mostexclusive.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MAD","name":"MAD","type":"ERC20","address":"0x5b09a0371c1da44a8e24d36bf5deb1141a84d875","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MAN","name":"MAN","type":"ERC20","address":"0xe25bCec5D3801cE3a794079BF94adF1B8cCD802D","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MANA","name":"Decentraland MANA","type":"ERC20","address":"0x0F5D2fB29fb7d3CFeE444a200298f468908cC942","ens_address":"","decimals":18,"website":"https://decentraland.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.decentraland.org","chat":"","facebook":"","forum":"","github":"https://github.com/decentraland","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.decentraland.org","telegram":"","twitter":"https://twitter.com/decentraland","youtube":""}},{"symbol":"MART","name":"Martcoin","type":"ERC20","address":"0xfdcc07Ab60660de533b5Ad26e1457b565a9D59Bd","ens_address":"","decimals":18,"website":"https://martcoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@martcoin.io","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/martcoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/martcoinchannel","twitter":"https://twitter.com/martcoin","youtube":""}},{"symbol":"MBRS","name":"Embers","type":"ERC20","address":"0x386467f1f3ddbe832448650418311a479eecfc57","ens_address":"","decimals":0,"website":"https://embermine.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@embermine.com","url":""},"social":{"blog":"","chat":"https://t.me/embermine","facebook":"https://www.facebook.com/embermine/","forum":"","github":"https://github.com/theembermine","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/TheEmbermine","youtube":""}},{"symbol":"MCAP","name":"MCAP","type":"ERC20","address":"0x93E682107d1E9defB0b5ee701C71707a4B2E46Bc","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MCI","name":"Musiconomi","type":"ERC20","address":"0x138A8752093F4f9a79AaeDF48d4B9248fab93c9C","ens_address":"","decimals":18,"website":"https://musiconomi.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"musiconomi@musiconomi.com","url":""},"social":{"blog":"https://medium.com/musiconomi","chat":"","facebook":"https://www.facebook.com/Musiconomi/","forum":"","github":"https://github.com/musiconomi/","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Musiconomi/","slack":"https://musiconomi.com/slack","telegram":"","twitter":"https://twitter.com/musiconomi","youtube":""}},{"symbol":"MCO","name":"MCO","type":"ERC20","address":"0xB63B606Ac810a52cCa15e44bB630fd42D8d1d83d","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MDA","name":"MDA","type":"ERC20","address":"0x51DB5Ad35C671a87207d88fC11d593AC0C8415bd","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MESH","name":"Meshbox","type":"ERC20","address":"0x01f2acf2914860331c1cb1a9acecda7475e06af8","ens_address":"","decimals":18,"website":"https://meshbox.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"MESH@MESHBOX.NETWORK","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/MeshBoxFoundation/","forum":"","github":"https://github.com/MeshBox","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/meshbox/","reddit":"","slack":"","telegram":"t.me/MeshBoxEN","twitter":"https://twitter.com/Mesh_Box","youtube":"https://www.youtube.com/channel/UCQHwUo9rRidByL9vMlv0vSQ"}},{"symbol":"MEST","name":"Monaco Estate","type":"ERC20","address":"0x5b8d43ffde4a2982b9a5387cdf21d54ead64ac8d","ens_address":"","decimals":18,"website":"https://monacoestate.io/","logo":{"src":"https://image.ibb.co/eYVsoH/monaco_estate_logo_28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"contact@monacoestate.io","url":"https://monacoestate.io/contact/"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/monacoestatetoken/","forum":"","github":"https://github.com/monacoestate","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/MonacoEstate/","slack":"","telegram":"","twitter":"https://twitter.com/monacoestateico","youtube":"https://www.youtube.com/channel/UCWNTC-aor7Nqm1o5y66yYmQ"}},{"symbol":"MFG","name":"SyncFab Manufacturing","type":"ERC20","address":"0x6710c63432a2de02954fc0f851db07146a6c0312","ens_address":"","decimals":18,"website":"https://syncfab.com/","logo":{"src":"https://blockchain.syncfab.com/assets/img/mfg-logo.png","width":"500","height":"500","ipfs_hash":""},"support":{"email":"support@syncfab.com","url":""},"social":{"blog":"https://medium.com/syncfabmfg","chat":"","facebook":"https://facebook.com/syncfab","forum":"https://bitcointalk.org/index.php?topic=2286102.0","github":"https://github.com/syncfab","gitter":"","instagram":"https://www.instagram.com/syncfab/","linkedin":"https://www.linkedin.com/company/syncfab","reddit":"https://www.reddit.com/r/syncfab/","slack":"","telegram":"https://t.me/syncfab","twitter":"https://twitter.com/syncfab","youtube":"https://youtube.com/channel/syncfab"}},{"symbol":"MFT","name":"Mainframe Token","type":"ERC20","address":"0xDF2C7238198Ad8B389666574f2d8bc411A4b7428","ens_address":"token.mainframehq.eth","decimals":18,"website":"https://mainframe.com","logo":{"src":"https://raw.githubusercontent.com/MainframeHQ/branding/master/Illustrations/Mainframe_MFT_icon_120x120.png","width":120,"height":120,"ipfs_hash":""},"support":{"email":"contact@mainframe.com","url":""},"social":{"blog":"https://blog.mainframe.com","chat":"","facebook":"https://www.facebook.com/MainframeHQ","forum":"","github":"https://github.com/MainframeHQ","gitter":"","instagram":"https://www.instagram.com/mainframehq","linkedin":"https://www.linkedin.com/company/mainframehq","reddit":"","slack":"","telegram":"https://t.me/mainframehq","twitter":"https://twitter.com/Mainframe_HQ","youtube":"https://www.youtube.com/c/MainframeHQ"}},{"symbol":"MFTU","name":"Mainstream For The Underground","type":"ERC20","address":"0x05D412CE18F24040bB3Fa45CF2C69e506586D8e8","ens_address":"","decimals":18,"website":"https://mftu.net","logo":{"src":"https://mftu.net/tokeninfo/mftu/0x05D412CE18F24040bB3Fa45CF2C69e506586D8e8.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"service@mftu.net","url":""},"social":{"blog":"https://mftu.net/site","chat":"","facebook":"https://facebook.com/cyberfm","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/cyberfm","slack":"","telegram":"https://t.me/mftudotnet","twitter":"https://twitter.com/mftu_currency","youtube":""}},{"symbol":"MGO","name":"MGO","type":"ERC20","address":"0x40395044ac3c0c57051906da938b54bd6557f212","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MIT (Mainstreet)","name":"Mainstreet","type":"ERC20","address":"0xe23cd160761f63FC3a1cF78Aa034b6cdF97d3E0C","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MIT (Mychatcoin)","name":"Mychatcoin","type":"ERC20","address":"0xad8dd4c725de1d31b9e8f8d146089e9dc6882093","ens_address":"","decimals":6,"website":"https://mychatcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@mychatcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"t.me/mychatcoin","twitter":"https://twitter.com/mychatcoin","youtube":""}},{"symbol":"MKR","name":"MakerDAO","type":"ERC20","address":"0x9f8F72aA9304c8B593d555F12eF6589cC3A579A2","ens_address":"","decimals":18,"website":"https://makerdao.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@makerdao.com","url":"https://chat.makerdao.com"},"social":{"blog":"","chat":"https://chat.makerdao.com","facebook":"","forum":"","github":"https://github.com/makerdao","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/makerdao","slack":"","telegram":"","twitter":"https://twitter.com/MakerDAO","youtube":""}},{"symbol":"MKT","name":"Mikado","type":"ERC20","address":"0x7939882b54fcf0bcae6b53dec39ad6e806176442","ens_address":"","decimals":8,"website":"https://mikado.io","logo":{"src":"https://avatars3.githubusercontent.com/u/38851395?s=400","width":"400","height":"400","ipfs_hash":""},"support":{"email":"support@mikado.io","url":""},"social":{"blog":"https://medium.com/@mikado.io","chat":"","facebook":"","forum":"","github":"https://github.com/mikadohq","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/mikadoio/","reddit":"","slack":"","telegram":"https://t.me/mikadoio","twitter":"https://twitter.com/mikadoio","youtube":""}},{"symbol":"MLN","name":"Melonport","type":"ERC20","address":"0xBEB9eF514a379B997e0798FDcC901Ee474B6D9A1","ens_address":"","decimals":18,"website":"https://melonport.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"https://chat.melonport.com","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MNE","name":"MNE","type":"ERC20","address":"0x1a95B271B0535D15fa49932Daba31BA612b52946","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MNT","name":"Media Network Token","type":"ERC20","address":"0xA9877b1e05D035899131DBd1e403825166D09f92","ens_address":"","decimals":18,"website":"https://coinjoker.com","logo":{"src":"https://etherscan.io/token/images/coinjoker_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@coinjoker.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/CoinJokerCom","forum":"","github":"https://github.com/coinjoker/cjtoken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/CoinJoker","youtube":""}},{"symbol":"MNTP","name":"Goldmint MNT Prelaunch Token","type":"ERC20","address":"0x83cee9e086a77e492ee0bb93c2b0437ad6fdeccc","ens_address":"","decimals":18,"website":"https://goldmint.io","logo":{"src":"https://etherscan.io/token/images/goldmint_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"invest@goldmint.io","url":""},"social":{"blog":"https://blog.goldmint.io","chat":"","facebook":"https://facebook.com/goldmint.io","forum":"https://bitcointalk.org/index.php?topic=2074277","github":"https://github.com/Goldmint","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/goldmintio","slack":"https://join.slack.com/t/goldmint/shared_invite/MjE0MTY4NDQxMTUyLTE1MDA0NzM2MDctN2U3NTRhYmZhZQ","telegram":"https://t.me/goldmintio","twitter":"https://twitter.com/Goldmint_io","youtube":""}},{"symbol":"MOD","name":"Modum","type":"ERC20","address":"0x957c30aB0426e0C93CD8241E2c60392d08c6aC8e","ens_address":"","decimals":0,"website":"https://modum.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"token@modum.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/modum.io","forum":"","github":"https://github.com/modum-io","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/modum_io","slack":"https://modum-token.slack.com","telegram":"","twitter":"https://twitter.com/modum_io","youtube":""}},{"symbol":"MOVED","name":"Twinkle","type":"ERC20","address":"0xfbd0d1c77b501796a35d86cf91d65d9778eee695","ens_address":"","decimals":3,"website":"https://www.rainbowcurrency.com/","logo":{"src":"https://www.rainbowcurrency.com/new/assets/img/logo_full2.jpg","width":"748","height":"748","ipfs_hash":""},"support":{"email":"support@rainbowcurrency.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/RainbowCurrency","forum":"https://bitcointalk.org/index.php?topic=2735483","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/RainbowCurrency","slack":"","telegram":"https://t.me/joinchat/C4OIwEUEDO69rS7rsPRpsg","twitter":"https://twitter.com/RainbowCurrency","youtube":""}},{"symbol":"MRL","name":"Marcelo","type":"ERC20","address":"0x82125AFe01819Dff1535D0D6276d57045291B6c0","ens_address":"","decimals":18,"website":"https://moneyrebel.io/","logo":{"src":"https://static.wixstatic.com/media/3e9a6a_15e519bd6672449182b4c3c557e49660~mv2.jpg/v1/fill/w_110,h_108,al_c,q_80,usm_0.66_1.00_0.01/3e9a6a_15e519bd6672449182b4c3c557e49660~mv2.webp","width":"86","height":"86","ipfs_hash":""},"support":{"email":"info@marcelo-mrl.com","url":"https://t.me/joinchat/IGyNLA9UybLEpfDZYX5xpQ"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/marcelomining/","forum":"","github":"https://github.com/MarceloMRL","gitter":"","instagram":"https://www.instagram.com/marcelo.mrl/","linkedin":"https://www.linkedin.com/company/marcelo/","reddit":"","slack":"","telegram":"https://t.me/joinchat/IGyNLA9UybLEpfDZYX5xp","twitter":"https://twitter.com/Mrl_io","youtube":""}},{"symbol":"MRP","name":"MoneyRebel Token","type":"ERC20","address":"0x21f0F0fD3141Ee9E11B3d7f13a1028CD515f459c","ens_address":"","decimals":18,"website":"https://moneyrebel.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://t.me/moneyrebel"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/moneyrebelteam","youtube":""}},{"symbol":"MRV","name":"MRV","type":"ERC20","address":"0xAB6CF87a50F17d7F5E1FEaf81B6fE9FfBe8EBF84","ens_address":"","decimals":18,"website":"https://macroverse.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"crowdsale@macroverse.io","url":""},"social":{"blog":"","chat":"https://matrix.to/#/#macroverse:matrix.org","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MSP","name":"Mothership","type":"ERC20","address":"0x68AA3F232dA9bdC2343465545794ef3eEa5209BD","ens_address":"","decimals":18,"website":"https://mothership.cx","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@mothership.cx","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/mothershipcx","twitter":"","youtube":""}},{"symbol":"MTC","name":"MTC Mesh Network","type":"ERC20","address":"0xdfdc0d82d96f8fd40ca0cfb4a288955becec2088","ens_address":"","decimals":18,"website":"https://www.mtc.io/","logo":{"src":"http://bbs.mtc.io/upload/picture/user/avatar/7218.jpg","width":"200","height":"200","ipfs_hash":""},"support":{"email":"team@mtc.io","url":""},"social":{"blog":"https://weibo.com/u/6434555011?refer_flag=1001030103_&is_hot=1","chat":"https://t.me/MTC_IO","facebook":"https://www.facebook.com/mtcmeshnetworks/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/MTCMeshNetwork","slack":"","telegram":"https://t.me/MTC_IO","twitter":"https://twitter.com/mtcmesh","youtube":"https://www.youtube.com/channel/UCL-GR6sJSh19h_ByRuE8mTw?view_as=subscriber"}},{"symbol":"MTC","name":"Medical Token Currency","type":"ERC20","address":"0x905E337c6c8645263D3521205Aa37bf4d034e745","ens_address":"","decimals":18,"website":"https://ico.docademic.com/","logo":{"src":"https://cdn.docademic.com/images/ico/mtc200.png","width":"200","height":"200","ipfs_hash":""},"support":{"email":"support@docademic.com","url":""},"social":{"blog":"https://news.docademic.com","chat":"","facebook":"https://www.facebook.com/docademic","forum":"","github":"https://github.com/Docademic","gitter":"","instagram":"https://www.instagram.com/docademic/","linkedin":"https://www.linkedin.com/company/doctordice/","reddit":"https://www.reddit.com/user/Docademic/","slack":"","telegram":"https://t.me/docademicofficial","twitter":"https://twitter.com/docademic","youtube":"https://www.youtube.com/channel/UCnF48IoeGNu6P78ABB2XhSw/videos?view_as=subscriber"}},{"symbol":"MTH","name":"Monetha","type":"ERC20","address":"0xaF4DcE16Da2877f8c9e00544c93B62Ac40631F16","ens_address":"","decimals":5,"website":"http://www.monetha.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@monetha","chat":"","facebook":"https://www.facebook.com/Monetha.io","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/ethereum/comments/6iln7f/a_brief_overview_and_critique_of_the_monetha","slack":"https://monetha.slack.com","telegram":"https://t.me/monetha_io","twitter":"https://twitter.com/Monetha_io","youtube":""}},{"symbol":"MTL","name":"MetalPay","type":"ERC20","address":"0xF433089366899D83a9f26A773D59ec7eCF30355e","ens_address":"","decimals":8,"website":"https://www.metalpay.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@metalpay.co","url":"https://support.metalpay.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://www.metalpay.chat","telegram":"","twitter":"","youtube":""}},{"symbol":"MTN","name":"MedToken","type":"ERC20","address":"0x41dbecc1cdc5517c6f76f6a6e836adbee2754de3","ens_address":"","decimals":18,"website":"https://medicalchain.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://medicalchain.com/en/contact/"},"social":{"blog":"https://medicalchain.com/en/news/","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/medicalchain","twitter":"https://twitter.com/medical_chain","youtube":""}},{"symbol":"MTR","name":"Mitrav","type":"ERC20","address":"0x7FC408011165760eE31bE2BF20dAf450356692Af","ens_address":"","decimals":8,"website":"https://mitrav.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@mitrav.co","url":"https://mitrav.co"},"social":{"blog":"","chat":"skype:team mitrav?add","facebook":"https://www.facebook.com/mitrav.mitrav.58","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/25049387","reddit":"https://www.reddit.com/user/Mitrav","slack":"https://mitrav.slack.com/open","telegram":"https://t.me/mitravteam","twitter":"https://twitter.com/mitrav_m","youtube":""}},{"symbol":"MTRc","name":"MTRCToken","type":"ERC20","address":"0x1e49fF77c355A3e38D6651ce8404AF0E48c5395f","ens_address":"","decimals":18,"website":"https://modultrade.io","logo":{"src":"https://en.modultrade.io/img/new_set/modultrade_logo.svg","width":"60","height":"20","ipfs_hash":""},"support":{"email":"tokensale@modultrade.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/modultrade/","forum":"https://bitcointalk.org/index.php?topic=2240518","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/16259600/","reddit":"https://www.reddit.com/r/SandCoin","slack":"","telegram":"https://t.me/ModulTradeIO","twitter":"https://twitter.com/ModulTrade","youtube":""}},{"symbol":"MTX","name":"MTX","type":"ERC20","address":"0x0AF44e2784637218dD1D32A322D44e603A8f0c6A","ens_address":"","decimals":18,"website":"https://www.matryx.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/matryxai","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/matryxai","twitter":"https://twitter.com/matryx_ai","youtube":""}},{"symbol":"MUXE","name":"MUXE","type":"ERC20","address":"0x515669d308f887fd83a471c7764f5d084886d34d","ens_address":"","decimals":18,"website":"https://www.muxe.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@muxe.io","url":"https://support.muxe.io"},"social":{"blog":"https://www.muxe.io/blog","chat":"https://www.muxe.io","facebook":"https://www.facebook.com/MUXEproject","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://nl.linkedin.com/in/muxe-project","reddit":"https://www.reddit.com/user/MuxeProject","slack":"","telegram":"https://t.me/MUXEproject","twitter":"https://twitter.com/muxeproject","youtube":"https://www.youtube.com/channel/UCH6oO2fazB72bTdvMGK-H7w"}},{"symbol":"MVP","name":"Merculet","type":"ERC20","address":"0x8a77e40936bbc27e80e9a3f526368c967869c86d","ens_address":"","decimals":18,"website":"https://www.merculet.io","logo":{"src":"https://merculet.io/static/image/newimg/logo.png","width":"356","height":"366","ipfs_hash":""},"support":{"email":"support@merculet.io","url":""},"social":{"blog":"https://medium.com/merculet","chat":"","facebook":"https://www.facebook.com/Merculet-347541915747100","forum":"https://bitcointalk.org/index.php?topic=3180239","github":"https://github.com/Merculet","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/merculet/","reddit":"https://www.reddit.com/r/Merculet/","slack":"","telegram":"https://t.me/merculet","twitter":"https://twitter.com/Merculet_io","youtube":""}},{"symbol":"MWAT","name":"RED MWAT","type":"ERC20","address":"0x6425c6be902d692ae2db752b3c268afadb099d3b","ens_address":"","decimals":18,"website":"https://www.restartenergy.io","logo":{"src":"https://restartenergy.io/images/re-logo.png","width":342,"height":189,"ipfs_hash":""},"support":{"email":"sales@restartenergy.io","url":""},"social":{"blog":"https://blog.restartenergy.io","chat":"","facebook":"https://fb.com/restartenergydemocracy","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/restartenergy","twitter":"","youtube":""}},{"symbol":"MYD","name":"MYD","type":"ERC20","address":"0xf7e983781609012307f2514f63D526D83D24F466","ens_address":"","decimals":16,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"MYST","name":"Mysterium","type":"ERC20","address":"0xa645264C5603E96c3b0B078cdab68733794B0A71","ens_address":"","decimals":8,"website":"https://mysterium.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://mysterium.network/faq"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.mysterium.network","telegram":"https://t.me/mysterium_network","twitter":"https://twitter.com/MysteriumNet","youtube":""}},{"symbol":"NAC","name":"Nami ICO","type":"ERC20","address":"0x8d80de8A78198396329dfA769aD54d24bF90E7aa","ens_address":"","decimals":18,"website":"https://nami.trade","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@nami.io","url":""},"social":{"blog":"nami.io/newsroom","chat":"","facebook":"https://www.facebook.com/NAMI.TRADE.OFFICIAL/","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/nami-trade-official/","reddit":"","slack":"","telegram":"https://t.me/namitrade","twitter":"https://twitter.com/namidotio","youtube":"https://www.youtube.com/channel/UCYAqEagemhtu0MOtnE7rNJQ"}},{"symbol":"NAVI","name":"NaviToken","type":"ERC20","address":"0x588047365df5ba589f923604aac23d673555c623","ens_address":"","decimals":18,"website":"https://naviaddress.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@naviaddress.com","url":""},"social":{"blog":"https://medium.com/@naviaddress","chat":"","facebook":"https://www.facebook.com/naviaddressplatform/","forum":"https://bitcointalk.org/index.php?topic=2461416.0","github":"https://github.com/naviworld","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/naviaddress/","reddit":"https://www.reddit.com/r/Naviaddress/","slack":"","telegram":"https://t.me/naviaddress","twitter":"https://twitter.com/naviaddress","youtube":"https://www.youtube.com/channel/UChkEvQamePmBzDb5XlwipLQ"}},{"symbol":"NBAI","name":"NebulaAiToken","type":"ERC20","address":"0x17f8aFB63DfcDcC90ebE6e84F060Cc306A98257D","ens_address":"","decimals":18,"website":"https://tokensale.nebula-ai.network","logo":{"src":"https://tokensale.nebula-ai.network/ressources/images/1801349612.jpg","width":"320","height":"310","ipfs_hash":""},"support":{"email":"contact@nebula-ai.com","url":"https://www.nebula-ai.com/#Contact"},"social":{"blog":"https://bitcointalk.org/index.php?topic=3220514.msg33494165#msg33494165","chat":"","facebook":"https://www.facebook.com/NebulaAI","forum":"","github":"https://github.com/nebulaai","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/nebula-ai","reddit":"","slack":"","telegram":"https://t.me/NebulaAICommunity","twitter":"https://twitter.com/nebula_ai","youtube":"https://www.youtube.com/channel/UCWltsUAyiser4-_eLLGmpdg"}},{"symbol":"nCash","name":"NucleusVision","type":"ERC20","address":"0x809826cceab68c387726af962713b64cb5cb3cca","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NCT","name":"Nectar","type":"ERC20","address":"0x9e46a38f5daabe8683e10793b06749eef7d733d1","ens_address":"","decimals":18,"website":"https://polyswarm.io","logo":{"src":"https://polyswarm.io/img/coin/nectar_300x300.png","width":"301","height":"301","ipfs_hash":"QmaQmaNUDawjkbnH6STZStmUMx32se3rBTvgHeZi7Cygmq"},"support":{"email":"info@polyswarm.io","url":""},"social":{"blog":"https://medium.com/swarmdotmarket","chat":"","facebook":"https://www.facebook.com/PolySwarm/","forum":"","github":"https://github.com/polyswarm","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/swarm-industries","reddit":"https://www.reddit.com/r/polyswarm","slack":"","telegram":"https://t.me/polyswarm","twitter":"https://twitter.com/polyswarm","youtube":"https://www.youtube.com/channel/UClkA8JVQ--oMsPomOKM85fA"}},{"symbol":"NDC","name":"Neverdie","type":"ERC20","address":"0xa54ddc7b3cce7fc8b1e3fa0256d0db80d2c10970","ens_address":"","decimals":18,"website":"https://neverdie.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NET","name":"NIMIQ","type":"ERC20","address":"0xcfb98637bcae43C13323EAa1731cED2B716962fD","ens_address":"","decimals":18,"website":"https://nimiq.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://nimiq-slackin.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"NEU","name":"NEU Fund","type":"ERC20","address":"0xa823e6722006afe99e91c30ff5295052fe6b8e32","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/neufundorg","forum":"https://bitcointalk.org/index.php?topic=2335433","github":"https://github.com/neufund","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/neufund","slack":"https://neufund.org/slack","telegram":"https://t.me/neufund","twitter":"https://twitter.com/neufundorg","youtube":""}},{"symbol":"NGC","name":"NAGA Coin","type":"ERC20","address":"0x72dd4b6bd852a3aa172be4d6c5a6dbec588cf131","ens_address":"","decimals":18,"website":"https://www.nagaico.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@nagaico.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/thenagaico/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/thenagaico","youtube":""}},{"symbol":"NIMFA","name":"Ninfa Money","type":"ERC20","address":"0xe26517A9967299453d3F1B48Aa005E6127e67210","ens_address":"","decimals":18,"website":"https://nimfamoney.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@nimfamoney.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/nimfamoney","forum":"https://bitcointalk.org/index.php?topic=2040087","github":"https://github.com/nimfamoney","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/Nimfamoney","twitter":"https://twitter.com/nimfamoney","youtube":""}},{"symbol":"NMR","name":"NMR","type":"ERC20","address":"0x1776e1F26f98b1A5dF9cD347953a26dd3Cb46671","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NOX","name":"NOX","type":"ERC20","address":"0xec46f8207d766012454c408de210bcbc2243e71c","ens_address":"","decimals":18,"website":"https://nitro.live","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"general@nitro.live","url":""},"social":{"blog":"https://medium.com/@NitroToken","chat":"","facebook":"https://www.facebook.com/NitroToken","forum":"https://bitcointalk.org/index.php?topic=2254986.0","github":"https://github.com/nitrotoken/nitro-crowdsale","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/nitrotoken","slack":"","telegram":"https://t.me/NitroToken_NOX","twitter":"https://twitter.com/nitrotoken","youtube":""}},{"symbol":"NPER","name":"NPER","type":"ERC20","address":"0x4ce6b362bc77a24966dda9078f9cef81b3b886a7","ens_address":"","decimals":18,"website":"https://nper.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@nper.io","url":""},"social":{"blog":"https://medium.com/@NPERproject","chat":"","facebook":"","forum":"","github":"https://github.com/NperProject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NUG","name":"Nuggets Token","type":"ERC20","address":"0x245ef47d4d0505ecf3ac463f4d81f41ade8f1fd1","ens_address":"","decimals":18,"website":"https://nuggets.life/","logo":{"src":"https://etherscan.io/token/images/nuggettoken_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"nuggets-token@nuggets.life","url":""},"social":{"blog":"https://medium.nuggets.life/","chat":"","facebook":"https://www.facebook.com/nuggetsPAYandID","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/nuggets/","reddit":"","slack":"","telegram":"https://t.me/nuggetsblockchain","twitter":"https://twitter.com/nuggetsPAYandID","youtube":"https://www.youtube.com/channel/UCYiRuMEN5V2vjCKsvru0qaw"}},{"symbol":"NULS","name":"NULS","type":"ERC20","address":"0xb91318f35bdb262e9423bc7c7c2a3a93dd93c92c","ens_address":"","decimals":18,"website":"https://nuls.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hi@nuls.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/nulscommunity","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/nulsservice","slack":"","telegram":"https://t.me/Nulsio","twitter":"https://twitter.com/nulsservice","youtube":""}},{"symbol":"nUSD","name":"Havven-Backed USD Nomins (nUSD)","type":"ERC20","address":"0x57Ab1E02fEE23774580C119740129eAC7081e9D3","ens_address":"","decimals":18,"website":"https://www.havven.io","logo":{"src":"https://www.havven.io/images/favicon3.ico","width":"32","height":"32","ipfs_hash":""},"support":{"email":"support@havven.io","url":""},"social":{"blog":"https://blog.havven.io","chat":"https://t.me/havven_official1","facebook":"https://www.facebook.com/havven.io/","forum":"https://bitcointalk.org/index.php?topic=2702470","github":"https://github.com/havven/havven","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/havven/","reddit":"https://www.reddit.com/r/havven/","slack":"","telegram":"https://t.me/havven_official1","twitter":"https://twitter.com/havven_io","youtube":"https://www.youtube.com/channel/UCGrPolyOAj3cODJIN5ssVTw"}},{"symbol":"NxC","name":"Nexium","type":"ERC20","address":"0x45e42D659D9f9466cD5DF622506033145a9b89Bc","ens_address":"","decimals":3,"website":"https://beyond-the-void.net","logo":{"src":"https://www.beyond-the-void.net/nxc.png","width":300,"height":300,"ipfs_hash":""},"support":{"email":"contact@beyond-the-void.net","url":""},"social":{"blog":"https://www.beyond-the-void.net/wiki/posts","chat":"https://discordapp.com/invite/C7TqmaQ","facebook":"https://www.facebook.com/beyondvoid","forum":"https://bitcointalk.org/index.php?topic=1630816.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BeyondTheVoidGame","slack":"http://beyond-the-void.slack.com","telegram":"","twitter":"https://twitter.com/BeyondVoidGame","youtube":"https://www.youtube.com/channel/UCD1IdjsnzXFdOarY20gMPQQ"}},{"symbol":"NXX","name":"NXX","type":"ERC20","address":"0x7627de4b93263a6a7570b8dafa64bae812e5c394","ens_address":"","decimals":8,"website":"https://www.nexxuscoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@nexxusuniversity.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"NXX OLD","name":"NXX OLD","type":"ERC20","address":"0x5c6183d10A00CD747a6Dbb5F658aD514383e9419","ens_address":"","decimals":8,"website":"https://www.nexxuscoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"bob@nexxuspartners.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"OAK","name":"OAK","type":"ERC20","address":"0x5e888B83B7287EED4fB7DA7b7d0A0D4c735d94b3","ens_address":"","decimals":18,"website":"https://aco.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@aco.ai","url":"https://knowledgebase.aco.ai"},"social":{"blog":"https://medium.com/theacorncollective","chat":"","facebook":"https://www.facebook.com/TheAcornCollectiveICO","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/acorncollective/","reddit":"https://www.reddit.com/r/TheAcornCollective/","slack":"","telegram":"https://t.me/joinchat/HI_eCBG0fCRCl1ja-d5JDg","twitter":"https://twitter.com/AcoCollective","youtube":"https://www.youtube.com/channel/UCfwHzwNR66HYtgruKKKxEvA"}},{"symbol":"OAX","name":"OAX","type":"ERC20","address":"0x701C244b988a513c945973dEFA05de933b23Fe1D","ens_address":"","decimals":18,"website":"https://www.openanx.org/en","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/OpenANX","slack":"https://openanx.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"OCC","name":"Original Crypto Coin","type":"ERC20","address":"0x0235fe624e044a05eed7a43e16e3083bc8a4287a","ens_address":"","decimals":18,"website":"https://www.OriginalCryptoCoin.com/","logo":{"src":"https://originalcryptocoin.com/wp-content/uploads/2018/01/cc-black-500.png","width":"500","height":"500","ipfs_hash":""},"support":{"email":"support@originalcryptocoin.com","url":""},"social":{"blog":"https://originalcryptocoin.com/blog/","chat":"","facebook":"https://www.facebook.com/OrigCryptoCoin/","forum":"","github":"https://github.com/OriginalCrypto/","gitter":"","instagram":"https://www.instagram.com/origcryptocoin/","linkedin":"https://www.linkedin.com/company/original-crypto-coin","reddit":"www.reddit.com/r/originalcryptocoin/","slack":"","telegram":"https://t.me/OrigCryptoCoin","twitter":"https://twitter.com/origcryptocoin","youtube":"https://www.youtube.com/channel/UCK_Iuc8ukPYlWCqxelxg7HQ/"}},{"symbol":"ODE","name":"ODEM Token","type":"ERC20","address":"0xbf52f2ab39e26e0951d2a02b49b7702abe30406a","ens_address":"","decimals":18,"website":"https://odem.io/","logo":{"src":"https://odem.io/wp-content/uploads/2017/09/odem-logo-sq-v0.2.png","width":"1000","height":"1000","ipfs_hash":""},"support":{"email":"support@odem.io","url":""},"social":{"blog":"https://medium.com/odem","chat":"","facebook":"https://www.facebook.com/odemio/","forum":"","github":"https://github.com/odemio","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/odem-io/","reddit":"https://www.reddit.com/r/ODEM/","slack":"","telegram":"https://t.me/odem_io","twitter":"https://twitter.com/ODEM_IO","youtube":""}},{"symbol":"OHNI","name":"Ohni","type":"ERC20","address":"0x6f539a9456a5bcb6334a1a41207c3788f5825207","ens_address":"","decimals":18,"website":"http://ohni.us","logo":{"src":"https://ohni.us/wp-content/uploads/2018/05/Main_Logo-e1526670376669.png","width":"256","height":"256","ipfs_hash":""},"support":{"email":"james@ohni.us","url":""},"social":{"blog":"ohni.us/blog","chat":"ohni.us/discord","facebook":"","forum":"","github":"ohni_us","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"OhniGroup","twitter":"OhniOfficial","youtube":""}},{"symbol":"OLD_MKR","name":"MakerDAO","type":"ERC20","address":"0xc66ea802717bfb9833400264dd12c2bceaa34a6d","ens_address":"","decimals":18,"website":"https://makerdao.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@makerdao.com","url":"https://chat.makerdao.com"},"social":{"blog":"","chat":"https://chat.makerdao.com","facebook":"","forum":"","github":"https://github.com/makerdao","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/makerdao","slack":"","telegram":"","twitter":"https://twitter.com/MakerDAO","youtube":""}},{"symbol":"OLT","name":"OneLedger Token","type":"ERC20","address":"0x64A60493D888728Cf42616e034a0dfEAe38EFCF0","ens_address":"","decimals":18,"website":"https://oneledger.io","logo":{"src":"https://etherscan.io/token/images/oneledger_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"hello@oneledger.io","url":"https://t.me/oneledger"},"social":{"blog":"","chat":"https://medium.com/@OneLedger","facebook":"","forum":"","github":"https://github.com/Oneledger","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/oneledger-innovative-tech-inc/","reddit":"https://www.reddit.com/r/OneLedger/","slack":"","telegram":"https://t.me/oneledger","twitter":"https://twitter.com/OneLedgerTech","youtube":"https://www.youtube.com/channel/UCqazyMCaD7lH-IBZrb33WPg"}},{"symbol":"OMG","name":"OMG","type":"ERC20","address":"0xd26114cd6EE289AccF82350c8d8487fedB8A0C07","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ONEK","name":"One K Token","type":"ERC20","address":"0xb23be73573bc7e03db6e5dfc62405368716d28a8","ens_address":"","decimals":18,"website":"http://onek.one","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"onektoken@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"onG","name":"onG","type":"ERC20","address":"0xd341d1680eeee3255b8c4c75bcce7eb57f144dae","ens_address":"","decimals":18,"website":"https://ongcoin.io","logo":{"src":"https://etherscan.io/token/images/ongcoin_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"success@ong.social","url":""},"social":{"blog":"https://medium.com/@onG.Social","chat":"","facebook":"https://www.facebook.com/OfficialonGsocial","forum":"https://ong.social","github":"https://github.com/onGsocial","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://ongsocial.slack.com","telegram":"https://t.me/onG_social","twitter":"https://twitter.com/Ong_Social","youtube":""}},{"symbol":"OPEN","name":"OPEN","type":"ERC20","address":"0x69c4BB240cF05D51eeab6985Bab35527d04a8C64","ens_address":"","decimals":8,"website":"openfuture.io","logo":{"src":"https://www.openfuture.io/assets/fancyLogo/Open_Fancy-Logo_120x120.png","width":"120px","height":"120px","ipfs_hash":""},"support":{"email":"support@openfuture.io","url":"https://open.crisp.help/en-us/"},"social":{"blog":"https://medium.com/@theOPENPlatform","chat":"https://open.crisp.help/en-us/","facebook":"https://www.facebook.com/OpenPlatformICO","forum":"","github":"https://github.com/OpenMoneyDigital","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/theopenplatform/","reddit":"https://www.reddit.com/r/OPENPlatform/","slack":"https://openmoneyico.slack.com","telegram":"https://t.me/joinchat/FDNbh0M079p5fnfOHFEJaw","twitter":"https://twitter.com/OpenPlatformICO","youtube":""}},{"symbol":"OPT","name":"Opus Foundation","type":"ERC20","address":"0x4355fC160f74328f9b383dF2EC589bB3dFd82Ba0","ens_address":"","decimals":18,"website":"https://opus-foundation.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@opus-foundation.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/opusfoundation","slack":"https://slack.opus-foundation.org","telegram":"","twitter":"","youtube":""}},{"symbol":"ORBS","name":"Orbs","type":"ERC20","address":"0xff56Cc6b1E6dEd347aA0B7676C85AB0B3D08B0FA","ens_address":"","decimals":18,"website":"https://orbs.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@orbs.com","url":""},"social":{"blog":"https://medium.com/orbs-network","chat":"http://t.me/orbs_network","facebook":"https://www.facebook.com/OrbsNetwork/","forum":"","github":"https://github.com/orbs-network","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/orbs/","reddit":"https://www.reddit.com/r/ORBS_Network/","slack":"","telegram":"http://t.me/orbs_network","twitter":"https://twitter.com/orbs_network","youtube":""}},{"symbol":"ORCA","name":"ORCA Token","type":"ERC20","address":"0x6F59e0461Ae5E2799F1fB3847f05a63B16d0DbF8","ens_address":"","decimals":18,"website":"https://www.orcaalliance.eu","logo":{"src":"https://drive.google.com/open?id=1lCrBZQ7CNkVcUwPPet4j4WU7p1TUrY_1","width":"120px","height":"120px","ipfs_hash":""},"support":{"email":"hello@orcaalliance.eu","url":""},"social":{"blog":"https://medium.com/@ORCA_Alliance","chat":"https://t.me/ORCAalliance","facebook":"https://www.facebook.com/ORCAAlliance/","forum":"","github":"https://github.com/orcaalliance","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/orca_foundation_io","reddit":"https://www.reddit.com/r/ORCA_Alliance/","slack":"","telegram":"https://t.me/ORCAalliance","twitter":"https://twitter.com/ORCA_Alliance","youtube":"https://www.youtube.com/channel/UCSGGZqtOFOD1dpj3rMJrCYw"}},{"symbol":"OST","name":"Simple Token 'OST'","type":"ERC20","address":"0x2C4e8f2D746113d0696cE89B35F0d8bF88E0AEcA","ens_address":"","decimals":18,"website":"https://simpletoken.org","logo":{"src":"https://etherscan.io/token/images/ost_28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@ost.com","url":"https://help.ost.com"},"social":{"blog":"https://medium.com/ostdotcom","chat":"","facebook":"https://www.facebook.com/ost","forum":"","github":"https://github.com/OpenSTFoundation","gitter":"https://gitter.im/OpenSTFoundation/SimpleToken","instagram":"https://www.instagram.com/ostdotcom/","linkedin":"https://www.linkedin.com/company/ostdotcom/","reddit":"https://www.reddit.com/r/OSTdotcom","slack":"","telegram":"https://www.t.me/ostdotcom","twitter":"https://twitter.com/OSTdotcom","youtube":"https://www.youtube.com/ostdotcom"}},{"symbol":"OWN","name":"OWNDATA","type":"ERC20","address":"0x170b275ced089fffaebfe927f445a350ed9160dc","ens_address":"","decimals":8,"website":"https://owndata.network","logo":{"src":"https://owndata.network/assets/front/images/favicon/android-icon-28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@owndata.network","url":""},"social":{"blog":"https://steemit.com/@owndata","chat":"","facebook":"https://www.facebook.com/owndata-137559923583121/","forum":"https://bitcointalk.org/index.php?topic=2996349.0","github":"https://github.com/owndata","gitter":"","instagram":"https://www.instagram.com/owndata_coin/","linkedin":"https://www.linkedin.com/company/owndata-network/","reddit":"https://www.reddit.com/user/owndata_coin/","slack":"","telegram":"https://t.me/joinchat/Hr2kt06aQWrteu_rnRu-Kgn","twitter":"https://twitter.com/owndata_coin","youtube":"https://www.youtube.com/channel/UCWv1jXDDuTDE9tiQEJkn8UA?view_as=subscriber"}},{"symbol":"Ox Fina","name":"Ox Fina","type":"ERC20","address":"0x65a15014964f2102ff58647e16a16a6b9e14bcf6","ens_address":"","decimals":3,"website":"https://oxfina.com","logo":{"src":"https://etherscan.io/token/images/oxfina_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@oxfina.com","url":""},"social":{"blog":"https://oxfina.com/blog","chat":"","facebook":"https://www.facebook.com/oxfina","forum":"https://bitcointalk.org/index.php?topic=1984985","github":"https://github.com/oxfina","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/u/oxfina","slack":"https://oxfina.slack.com","telegram":"https://t.me/joinchat/AAAAAA6MBEr4wbqEcsuyXg","twitter":"https://twitter.com/oxfina","youtube":""}},{"symbol":"PAL","name":"PolicyPal Network","type":"ERC20","address":"0xfeDAE5642668f8636A11987Ff386bfd215F942EE","ens_address":"","decimals":18,"website":"https://www.policypal.network","logo":{"src":"https://etherscan.io/token/images/policypal_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@policypal.com","url":""},"social":{"blog":"https://medium.com/@policypalnet","chat":"","facebook":"","forum":"","github":"https://github.com/policypalnet","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/18528158","reddit":"","slack":"","telegram":"https://t.me/PolicyPalNetwork","twitter":"https://twitter.com/PolicyPalNET","youtube":""}},{"symbol":"PARETO","name":"PARETO","type":"ERC20","address":"0xea5f88e54d982cbb0c441cde4e79bc305e5b43bc","ens_address":"","decimals":18,"website":"https://pareto.network","logo":{"src":"https://pareto.network/images/square500x500.png","width":500,"height":500,"ipfs_hash":""},"support":{"email":"hello@pareto.network","url":""},"social":{"blog":"https://blog.pareto.network","chat":"https://t.me/paretonetworkdiscussion","facebook":"https://www.facebook.com/paretonetworkofficial","forum":"https://bitcointalk.org/index.php?topic=2367454.0","github":"https://github.com/ParetoNetwork","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/11252108","reddit":"https://www.reddit.com/r/ParetoNetwork","slack":"","telegram":"https://t.me/paretonetworkdiscussion","twitter":"https://twitter.com/paretonetwork","youtube":"https://www.youtube.com/channel/UCWbAwsAEmNksqhhDlgBaSQA"}},{"symbol":"PASS","name":"PASS Token","type":"ERC20","address":"0x77761e63c05aee6648fdaeaa9b94248351af9bcd","ens_address":"","decimals":18,"website":"http://www.wisepass.co","logo":{"src":"http://www.wisepass.co/wordpress/home/images/logo.png","width":40,"height":40,"ipfs_hash":""},"support":{"email":"ico@wisepass.co","url":""},"social":{"blog":"","chat":"https://t.me/wisepass","facebook":"https://fb.com/wisepass","forum":"https://bitcointalk.org/index.php?topic=4458873.0","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/solidity-trade/","reddit":"https://www.reddit.com/r/WisePassICO/","slack":"","telegram":"https://t.me/wisepass","twitter":"https://twitter.com/wisepass_co","youtube":"https://www.youtube.com/channel/UCKZ4LdzdKo1aHg0ruK43Aww"}},{"symbol":"PATENTS","name":"PATENTS","type":"ERC20","address":"0x694404595e3075a942397f466aacd462ff1a7bd0","ens_address":"","decimals":18,"website":"https://www.smartillions.ch","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@smartillions.ch","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PATH","name":"PATH","type":"ERC20","address":"0xF813F3902bBc00A6DCe378634d3B79D84F9803d7","ens_address":"","decimals":18,"website":"https://path.network","logo":{"src":"https://path.network/images/path-128x128.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"contact@path.network","url":""},"social":{"blog":"","chat":"https://t.me/pathnetwork","facebook":"https://www.facebook.com/pathtoken","forum":"https://plus.google.com/110646804829818635758","github":"https://github.com/path-network-token","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/pathnetwork/","reddit":"https://www.reddit.com/r/pathtoken","slack":"","telegram":"https://t.me/pathnetwork","twitter":"https://twitter.com/pathtoken","youtube":""}},{"symbol":"PAY","name":"TenX","type":"ERC20","address":"0xB97048628DB6B661D4C2aA833e95Dbe1A905B280","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PBL","name":"PBL","type":"ERC20","address":"0x55648de19836338549130b1af587f16bea46f66b","ens_address":"","decimals":18,"website":"https://publica.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@publica.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2079885","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/publicaio","slack":"","telegram":"https://t.me/publicaofficial","twitter":"https://twitter.com/PublicaIO","youtube":""}},{"symbol":"PBT","name":"Primalbase Token (PBT)","type":"ERC20","address":"0xF4c07b1865bC326A3c01339492Ca7538FD038Cc0","ens_address":"","decimals":4,"website":"http://primalbase.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@primalbase.com","url":""},"social":{"blog":"https://medium.com/primalbase","chat":"","facebook":"https://www.facebook.com/primalbasehq","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/primalbase/","linkedin":"","reddit":"","slack":"https://projectprimal.slack.com/","telegram":"https://t.me/joinchat/AAAAAELBNMavaVUQvMRffQ","twitter":"https://twitter.com/primalbasehq","youtube":"https://www.youtube.com/channel/UCuWyGTEoCOSZrw8KWMKeucQ"}},{"symbol":"PCH","name":"PITCH","type":"ERC20","address":"0xfcAC7A7515e9A9d7619fA77A1fa738111f66727e","ens_address":"","decimals":18,"website":"https://www.pitchapply.com","logo":{"src":"https://image.ibb.co/e9kStm/Pitch_Apply_Token_logo_500x500.png","width":"500","height":"500","ipfs_hash":""},"support":{"email":"hello@pitchapply.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/pitchapply","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/pitchapplycommunity","twitter":"https://twitter.com/PitchApply","youtube":""}},{"symbol":"PCL","name":"PCL","type":"ERC20","address":"0x3618516F45CD3c913F81F9987AF41077932Bc40d","ens_address":"","decimals":8,"website":"https://peculium.io","logo":{"src":"https://peculium.io/images/icon/logo.png","width":310,"height":310,"ipfs_hash":""},"support":{"email":"support@peculium.io","url":"www.peculium.io"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/PeculiumICO","forum":"https://bitcointalk.org/index.php?topic=2249486","github":"https://github.com/PeculiumPCL/Peculium","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/25046861","reddit":"https://www.reddit.com/r/Peculium","slack":"https://join.slack.com/t/peculium/shared_invite/enQtMjc2Nzc5NjA0Nzg4LTJiYmYyMGQ0Y2VlYzUyOTcwOTIwYmRkNzczODQyMWMyZWE4ZGZkMGM3NGU5OTRkM2YwNWQ5MmFlNjkzNmI4M2Q","telegram":"https://t.me/ico_peculium","twitter":"https://twitter.com/_Peculium","youtube":"https://www.youtube.com/watch?v=kg2vYFJ_R50"}},{"symbol":"PCLOLD","name":"PCLOLD","type":"ERC20","address":"0x53148Bb4551707edF51a1e8d7A93698d18931225","ens_address":"","decimals":8,"website":"https://peculium.io","logo":{"src":"https://peculium.io/images/icon/logo.png","width":310,"height":310,"ipfs_hash":""},"support":{"email":"support@peculium.io","url":"www.peculium.io"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/PeculiumICO","forum":"https://bitcointalk.org/index.php?topic=2249486","github":"https://github.com/PeculiumPCL/Peculium","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/25046861","reddit":"https://www.reddit.com/r/Peculium","slack":"https://join.slack.com/t/peculium/shared_invite/enQtMjc2Nzc5NjA0Nzg4LTJiYmYyMGQ0Y2VlYzUyOTcwOTIwYmRkNzczODQyMWMyZWE4ZGZkMGM3NGU5OTRkM2YwNWQ5MmFlNjkzNmI4M2Q","telegram":"https://t.me/ico_peculium","twitter":"https://twitter.com/_Peculium","youtube":"https://www.youtube.com/watch?v=kg2vYFJ_R50"}},{"symbol":"PEG","name":"PEG Network Token","type":"ERC20","address":"0x8Ae56a6850a7cbeaC3c3Ab2cB311e7620167eAC8","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PET","name":"PETHEREUM","type":"ERC20","address":"0x5884969Ec0480556E11d119980136a4C17eDDEd1","ens_address":"","decimals":18,"website":"https://pethereum.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@pethereum.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Pethereum-140501866654240/","forum":"","github":"https://github.com/Pethereum","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/Pethereum/","slack":"","telegram":"","twitter":"https://twitter.com/Pethereum_org","youtube":"https://www.youtube.com/channel/UCOgp9A2Xv-Ilu9PvCFMLB1g"}},{"symbol":"PETRO","name":"PETRO","type":"ERC20","address":"0xec18f898b4076a3e18f1089d33376cc380bde61d","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/getpetro","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PEXT","name":"PEX-Token","type":"ERC20","address":"0x55c2A0C171D920843560594dE3d6EEcC09eFc098","ens_address":"","decimals":4,"website":"https://prime-ex.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"erc20@prime-ex.com","url":""},"social":{"blog":"https://prime-ex.com/pex-blog","chat":"","facebook":"https://www.facebook.com/PEXTokens","forum":"https://bitcointalk.org/index.php?topic=2150472.msg21513985#msg21513985","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/25037545","reddit":"","slack":"","telegram":"https://t.me/PEXTokens","twitter":"https://twitter.com/PEXTokens","youtube":"https://www.youtube.com/channel/UCQ_4BHl1qE1dz_vijSt_tqw?view_as=subscriber"}},{"symbol":"PIPL","name":"PIPL Coin","type":"ERC20","address":"0xE64509F0bf07ce2d29A7eF19A8A9bc065477C1B4","ens_address":"","decimals":8,"website":"https://piplcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@piplcoin.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/PiplCoin","forum":"https://bitcointalk.org/index.php?topic=2018431.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/piplcoin?lang=en","youtube":""}},{"symbol":"PIX","name":"PIX","type":"ERC20","address":"0x8eFFd494eB698cc399AF6231fCcd39E08fd20B15","ens_address":"","decimals":0,"website":"www.lampix.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Lampix.co","forum":"https://bitcointalk.org/index.php?topic=2044884.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Lampix","slack":"https://lampix-invite.herokuapp.com","telegram":"","twitter":"https://twitter.com/lampix_co","youtube":""}},{"symbol":"PLASMA","name":"PLASMA","type":"ERC20","address":"0x59416A25628A76b4730eC51486114c32E0B582A1","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"plasma.token@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PLAY","name":"HeroCoin","type":"ERC20","address":"0xE477292f1B3268687A29376116B0ED27A9c76170","ens_address":"","decimals":18,"website":"www.herocoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@herocoin.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/herosphere.gg","forum":"https://bitcointalk.org/index.php?topic=2116864.msg21169697#msg21169697","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/HEROcoin","slack":"https://join.slack.com/t/herocoin/shared_invite/enQtMjQyNTQ1NDU3ODYxLTVmMzlmNTg5ZTUyODM4NzFjZGVjNGFlZjYzOTM0MzI1YWIwZWMxN2UzMWMxYWQ2MDE4NDQ3OTE4Y2I1NmMyYjU","telegram":"https://t.me/joinchat/FsEwOwtrCZMWwHokEj70Gw","twitter":"https://twitter.com/HEROcoinio","youtube":""}},{"symbol":"PLBT","name":"Polybius","type":"ERC20","address":"0x0AfFa06e7Fbe5bC9a764C979aA66E8256A631f02","ens_address":"","decimals":6,"website":"https://polybius.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@polybius.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/projectpolybius","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/polybius_eng","twitter":"https://twitter.com/PolybiusBank","youtube":""}},{"symbol":"PLR","name":"Pillar Project","type":"ERC20","address":"0xe3818504c1B32bF1557b16C238B2E01Fd3149C17","ens_address":"","decimals":18,"website":"https://www.pillarproject.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/twentythirty/PillarToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://pillarproject.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"PLU","name":"Plutus","type":"ERC20","address":"0xD8912C10681D8B21Fd3742244f44658dBA12264E","ens_address":"","decimals":18,"website":"https://plutus.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=1870606.760","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"POE","name":"Po.et Tokens","type":"ERC20","address":"0x0e0989b1f9b8a38983c2ba8053269ca62ec9b195","ens_address":"","decimals":8,"website":"https://po.et","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@po.et","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"POIN","name":"Potatoin","type":"ERC20","address":"0x43f6a1be992dee408721748490772b15143ce0a7","ens_address":"","decimals":0,"website":"https://potatoin.foundation","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"peterke@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"POLY","name":"Polymath Network","type":"ERC20","address":"0x9992eC3cF6A55b00978cdDF2b27BC6882d88D1eC","ens_address":"","decimals":18,"website":"https://polymath.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@polymath.zendesk.com","url":""},"social":{"blog":"https://blog.polymath.network","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"http://t.me/polymathnetwork","twitter":"https://twitter.com/polymathnetwork","youtube":""}},{"symbol":"POOL","name":"Stake Pool","type":"ERC20","address":"0x779B7b713C86e3E6774f5040D9cCC2D43ad375F8","ens_address":"","decimals":8,"website":"http://stakepool.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"stakepool@stakepool.co"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"POS","name":"PoSToken","type":"ERC20","address":"0xee609fe292128cad03b786dbb9bc2634ccdbe7fc","ens_address":"","decimals":18,"website":"https://postoken.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@postoken.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2110712.0","github":"https://github.com/PoSToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://postoken.slack.com","telegram":"","twitter":"https://twitter.com/PoSToken","youtube":""}},{"symbol":"POWR","name":"PowerLedger","type":"ERC20","address":"0x595832f8fc6bf59c85c527fec3740a1b7a361269","ens_address":"","decimals":6,"website":"https://powerledger.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mc@powerledger.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PPP","name":"PayPie","type":"ERC20","address":"0xc42209accc14029c1012fb5680d95fbd6036e2a0","ens_address":"","decimals":18,"website":"https://www.paypie.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"help@paypie.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/PayPieTokens","twitter":"","youtube":""}},{"symbol":"PPT","name":"Populous","type":"ERC20","address":"0xd4fa1460F537bb9085d22C7bcCB5DD450Ef28e3a","ens_address":"","decimals":8,"website":"https://populous.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@populous.co","url":""},"social":{"blog":"https://medium.com/@BitPopulous","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PRE","name":"Presearch","type":"ERC20","address":"0x88a3e4f35d64aad41a6d4030ac9afe4356cb84fa","ens_address":"","decimals":18,"website":"https://presearch.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@presearch.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/presearch","twitter":"","youtube":""}},{"symbol":"PRG","name":"PRG","type":"ERC20","address":"0x7728dfef5abd468669eb7f9b48a7f70a501ed29d","ens_address":"","decimals":6,"website":"https://paragoncoin.com","logo":{"src":"https://etherscan.io/token/images/paragon2.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"info@paragoncoin.com","url":""},"social":{"blog":"https://medium.com/@paragoncoin","chat":"","facebook":"https://www.facebook.com/paragoncoin","forum":"https://bitcointalk.org/index.php?topic=2092712","github":"https://github.com/paragon-coin/token","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/Bvx800IXuCoe-QGoLXoVlQ","twitter":"https://twitter.com/ParagonCoin","youtube":""}},{"symbol":"PRL","name":"Oyster Pearl","type":"ERC20","address":"0x1844b21593262668b7248d0f57a220caaba46ab9","ens_address":"","decimals":18,"website":"https://oyster.ws","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@oyster.ws","url":""},"social":{"blog":"https://medium.com/oysterprotocol","chat":"","facebook":"","forum":"","github":"https://github.com/oysterprotocol","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Oyster","slack":"","telegram":"https://t.me/oysterprotocol","twitter":"https://twitter.com/OysterProtocol","youtube":""}},{"symbol":"PRO","name":"Propy","type":"ERC20","address":"0x226bb599a12C826476e3A771454697EA52E9E220","ens_address":"","decimals":8,"website":"https://propy.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@propy.com","url":""},"social":{"blog":"https://medium.com/@propy","chat":"","facebook":"https://www.facebook.com/propyinc","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/propy-inc-","reddit":"","slack":"https://propy.slack.com","telegram":"https://t.me/propy","twitter":"https://twitter.com/propyinc","youtube":""}},{"symbol":"PRON","name":"PronCoin","type":"ERC20","address":"0xA3149E0fA0061A9007fAf307074cdCd290f0e2Fd","ens_address":"","decimals":8,"website":"https://proncoin.io","logo":{"src":"https://pbs.twimg.com/profile_images/943518409899302912/_qB2ilhB_400x400.jpg","width":"400","height":"400","ipfs_hash":""},"support":{"email":"support@proncoin.io","url":"https://proncoin.io"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/PronCoin-914325038734407","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/PronCoin","youtube":""}},{"symbol":"PRPS","name":"Purpose","type":"ERC20","address":"0xd94F2778e2B3913C53637Ae60647598bE588c570","ens_address":"","decimals":18,"website":"https://prps.io","logo":{"src":"https://imgur.com/hm9naIz","width":"385","height":"385","ipfs_hash":""},"support":{"email":"support@gamingforgood.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/nionis/purpose","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/PRPS","slack":"","telegram":"","twitter":"https://twitter.com/prps_io","youtube":""}},{"symbol":"PRS","name":"Persians","type":"ERC20","address":"0x163733bcc28dbf26B41a8CfA83e369b5B3af741b","ens_address":"","decimals":18,"website":"http://persians.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"king.serse@gmx.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/Neurone/persians","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://battlesmartcontract.slack.com","telegram":"","twitter":"https://twitter.com/persian_token","youtube":""}},{"symbol":"PRSP","name":"PRSP","type":"ERC20","address":"0x0c04d4f331da8df75f9e2e271e3f3f1494c66c36","ens_address":"","decimals":9,"website":"http://www.prsp.me","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"prspme@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PT","name":"PornToken","type":"ERC20","address":"0x66497a283e0a007ba3974e837784c6ae323447de","ens_address":"","decimals":18,"website":"https://www.porntoken.io","logo":{"src":"https://www.porntoken.io/porntoken.256.png","width":256,"height":256,"ipfs_hash":""},"support":{"email":"support@porntoken.io","url":"https://www.porntoken.io/contact"},"social":{"blog":"https://www.porntoken.io/blog","chat":"","facebook":"","forum":"","github":"https://github.com/porntoken/smart_contract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/porntoken","slack":"https://porntoken.slack.com","telegram":"","twitter":"http://www.twitter.com/porntoken","youtube":"https://www.youtube.com/channel/UCwYD8VSclMxBOAksP5MZJow"}},{"symbol":"PTC","name":"ParrotCoin","type":"ERC20","address":"0x2a8E98e256f32259b5E5Cb55Dd63C8e891950666","ens_address":"","decimals":18,"website":"http://parrotcoin.club","logo":{"src":"http://parrotcoin.club/favicon.ico","width":"","height":"","ipfs_hash":""},"support":{"email":"info@parrotcoin.club","url":"http://parrotcoin.club/contact.html"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/groups/810188769172490/","forum":"","github":"https://github.com/ParrotCoin","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/ParrotCoin","youtube":"https://www.youtube.com/channel/UC_opgFSvRVsumZdCH7p_Rrw"}},{"symbol":"PTOY","name":"PTOY","type":"ERC20","address":"0x8Ae4BF2C33a8e667de34B54938B0ccD03Eb8CC06","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"PTWO","name":"PornTokenV2","type":"ERC20","address":"0x5512e1d6a7be424b4323126b4f9e86d023f95764","ens_address":"","decimals":18,"website":"https://www.porntoken.io","logo":{"src":"https://www.porntoken.io/PorntokenV2.256.png","width":256,"height":256,"ipfs_hash":""},"support":{"email":"support@porntoken.io","url":"https://www.porntoken.io/contact"},"social":{"blog":"https://www.porntoken.io/blog","chat":"","facebook":"","forum":"","github":"https://github.com/porntoken/smart_contract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/porntoken","slack":"https://porntoken.slack.com","telegram":"","twitter":"http://www.twitter.com/porntoken","youtube":"https://www.youtube.com/channel/UCwYD8VSclMxBOAksP5MZJow"}},{"symbol":"PUC","name":"Pour Coin","type":"ERC20","address":"0xef6b4ce8c9bc83744fbcde2657b32ec18790458a","ens_address":"","decimals":0,"website":"http://price-s.info","logo":{"src":"http://price-s.info/wp-content/uploads/2018/01/p.png","width":32,"height":32,"ipfs_hash":""},"support":{"email":"puc@price-s.info","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2657718","github":"https://github.com/pourcoin/pourcoin-PUC/projects","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/tb/7mll2m","slack":"","telegram":"","twitter":"https://twitter.com/pourcoin","youtube":""}},{"symbol":"PXT","name":"Populous XBRL Token (PXT)","type":"ERC20","address":"0xc14830e53aa344e8c14603a91229a0b925b0b262","ens_address":"","decimals":8,"website":"https://populous.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@populous.co","url":""},"social":{"blog":"https://medium.com/@BitPopulous","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://bitpopulous.slack.com","telegram":"","twitter":"https://twitter.com/BitPopulous","youtube":""}},{"symbol":"QASH","name":"QASH","type":"ERC20","address":"0x618e75ac90b12c6049ba3b27f5d5f8651b0037f6","ens_address":"","decimals":6,"website":"https://liquid.plus","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://liquid-qash.zendesk.com"},"social":{"blog":"https://steemit.com/@quoineliquid","chat":"","facebook":"https://www.facebook.com/QUOINE.SG","forum":"https://bitcointalk.org/index.php?topic=2256844","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/QASH","slack":"","telegram":"https://t.me/QUOINE","twitter":"https://twitter.com/quoine_SG","youtube":"https://www.youtube.com/channel/UCOR2GJnFoOgTazC5v6mBTSA"}},{"symbol":"QAU","name":"QAU","type":"ERC20","address":"0x671AbBe5CE652491985342e85428EB1b07bC6c64","ens_address":"","decimals":8,"website":"http://www.quantumproject.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@quantumproject.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"QBX","name":"qiibeeToken","type":"ERC20","address":"0x2467aa6b5a2351416fd4c3def8462d841feeecec","ens_address":"","decimals":18,"website":"https://www.qiibee.com","logo":{"src":"https://avatars0.githubusercontent.com/u/31820267?s=400&u=f671cf8b24876d0dddf9b16930d31cc2114103eb&v=4","width":"378","height":"378","ipfs_hash":""},"support":{"email":"support@qiibee.com","url":"https://qiibee.com"},"social":{"blog":"https://blog.qiibee.com","chat":"","facebook":"https://www.facebook.com/qiibee","forum":"","github":"https://github.com/qiibee","gitter":"","instagram":"https://www.instagram.com/qiibee","linkedin":"https://www.linkedin.com/company/qiibee-ag","reddit":"","slack":"","telegram":"https://t.me/qiibee","twitter":"https://twitter.com/qiibee","youtube":""}},{"symbol":"QNT","name":"Quant","type":"ERC20","address":"0x4a220E6096B25EADb88358cb44068A3248254675","ens_address":"","decimals":18,"website":"https://www.quant.network/","logo":{"src":"https://developer.quant.network/quant-q-token_28x28.png","width":"28","height":"28","ipfs_hash":""},"support":{"email":"support@quant.network","url":"https://support.quant.network"},"social":{"blog":"https://medium.com/@quant_network","chat":"","facebook":"https://www.facebook.com/quantnetwork","forum":"","github":"https://github.com/quantnetwork","gitter":"","instagram":"https://www.instagram.com/quantnetwork","linkedin":"https://www.linkedin.com/company/quantnetwork/","reddit":"https://www.reddit.com/r/QuantNetwork/","slack":"","telegram":"http://telegram.quant.network","twitter":"https://twitter.com/quant_network","youtube":"https://www.youtube.com/channel/UCsz53-6ZYJCI0TtE4M_kdkA"}},{"symbol":"QRG","name":"QRG","type":"ERC20","address":"0xFFAA5ffc455d9131f8A2713A741fD1960330508B","ens_address":"","decimals":18,"website":"http://qrg-stamps.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"QRL","name":"QRL","type":"ERC20","address":"0x697beac28B09E122C4332D163985e8a73121b97F","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"QSP","name":"Quantstamp Token","type":"ERC20","address":"0x99ea4dB9EE77ACD40B119BD1dC4E33e1C070b80d","ens_address":"","decimals":18,"website":"https://quantstamp.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/quantstamp","chat":"","facebook":"https://www.facebook.com/quantstamp/","forum":"","github":"https://github.com/quantstamp","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Quantstamp/","slack":"","telegram":"https://t.me/quantstamp","twitter":"https://twitter.com/Quantstamp","youtube":""}},{"symbol":"QTQ","name":"TiiQu's Q Token","type":"ERC20","address":"0x2C3C1F05187dBa7A5f2Dd47Dca57281C4d4F183F","ens_address":"","decimals":18,"website":"http://tiiqu.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"samuel.hr@tiiqu.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/TiiQu-Network/TiiQu-Network","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/TiiQu","slack":"https://tiiqu.slack.com","telegram":"","twitter":"https://twitter.com/tiiqu_network","youtube":""}},{"symbol":"QTUM","name":"Qtum","type":"ERC20","address":"0x9a642d6b3368ddc662CA244bAdf32cDA716005BC","ens_address":"","decimals":18,"website":"https://qtum.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"foundation@qtum.org","url":""},"social":{"blog":"https://qtum.org/en/blog","chat":"","facebook":"https://www.facebook.com/QtumOfficial/","forum":"https://forum.qtum.org/","github":"https://github.com/qtumproject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://qtumslack.herokuapp.com/","telegram":"","twitter":"https://twitter.com/QtumOfficial","youtube":""}},{"symbol":"RAO","name":"RadioYo","type":"ERC20","address":"0x45edb535942a8c84d9f4b5d37e1b25f91ea4804c","ens_address":"","decimals":18,"website":"https://rao.radioyo.fm","logo":{"src":"https://raw.githubusercontent.com/gharshr/ICO_smartcontract/master/RAO_Token.png","width":"","height":"","ipfs_hash":""},"support":{"email":"support@radioyo.fm","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/radioyofm","forum":"","github":"https://github.com/RadioYoFM/ICO_smartcontract/","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/in/radioyo","reddit":"https://www.reddit.com/r/RadioYo/","slack":"https://radioyo.slack.com","telegram":"https://t.me/joinchat/AAAAAEMBG4bGWaQGuDkstg","twitter":"https://twitter.com/radioyofm","youtube":""}},{"symbol":"RBLX","name":"Rublix","type":"ERC20","address":"0xfc2c4d8f95002c14ed0a7aa65102cac9e5953b5e","ens_address":"","decimals":18,"website":"https://rublix.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@rublix.io","url":""},"social":{"blog":"https://blog.rublix.io/","chat":"","facebook":"https://www.facebook.com/Rublixdev/","forum":"","github":"https://github.com/rublixdev","gitter":"","instagram":"https://www.instagram.com/rublixdev/","linkedin":"","reddit":"https://www.reddit.com/r/Rublix/","slack":"","telegram":"https://t.me/rublixdev","twitter":"https://twitter.com/RublixDev","youtube":""}},{"symbol":"RCN","name":"Ripio Credit Network","type":"ERC20","address":"0xf970b8e36e23f7fc3fd752eea86f8be8d83375a6","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"RDN","name":"Radien Network","type":"ERC20","address":"0x255aa6df07540cb5d3d297f0d0d4d84cb52bc8e6","ens_address":"","decimals":18,"website":"https://raiden.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@raiden.network","url":""},"social":{"blog":"","chat":"https://riot.im/app/#/room/#raiden-network:matrix.org","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/raidennetwork","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"REA","name":"Realisto","type":"ERC20","address":"0x767bA2915EC344015a7938E3eEDfeC2785195D05","ens_address":"","decimals":18,"website":"https://www.realisto.io","logo":{"src":"https://realisto.io/files/images/rea-token-logo-128x136.png","width":"128","height":"136","ipfs_hash":""},"support":{"email":"contact@realisto.io","url":""},"social":{"blog":"https://medium.com/@realisto","chat":"","facebook":"https://www.facebook.com/REALISTOICO","forum":"https://bitcointalk.org/index.php?topic=2353634.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/realistochat","twitter":"https://twitter.com/REALISTO_TOKEN","youtube":""}},{"symbol":"REBL","name":"Rebellious","type":"ERC20","address":"0x5f53f7a8075614b699baad0bc2c899f4bad8fbbf","ens_address":"","decimals":18,"website":"https://www.rebellious.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"https://discord.gg/q4yBxct","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2357352.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/RebelliousCoin","twitter":"https://twitter.com/RebelliousCoin","youtube":""}},{"symbol":"RED","name":"Red Community Token","type":"ERC20","address":"0x76960dccd5a1fe799f7c29be9f19ceb4627aeb2f","ens_address":"","decimals":18,"website":"https://ico.red-lang.org","logo":{"src":"https://static.red-lang.org/pr/logo/red-token-logo_sq_128x128.png","width":128,"height":128,"ipfs_hash":""},"support":{"email":"token@red-lang.org","url":"https://t.me/redofficial"},"social":{"blog":"https://www.red-lang.org","chat":"","facebook":"https://www.facebook.com/groups/redlanguage/about","forum":"","github":"https://github.com/red","gitter":"https://gitter.im/red/red/welcome","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/redlang","slack":"","telegram":"https://t.me/redofficial","twitter":"https://twitter.com/red_lang","youtube":""}},{"symbol":"REDC","name":"RedCab","type":"ERC20","address":"0xB563300A3BAc79FC09B93b6F84CE0d4465A2AC27","ens_address":"","decimals":18,"website":"https://redcab.io","logo":{"src":"https://i.imgur.com/EgxuJmy.png","width":128,"height":128,"ipfs_hash":""},"support":{"email":"info@redcab.io","url":"https://t.me/redcab_ico"},"social":{"blog":"https://medium.com/redcab","chat":"https://t.me/redcab_ico","facebook":"https://www.facebook.com/redcabeg","forum":"https://bitcointalk.org/index.php?topic=3834815.0","github":"https://github.com/Redcabllc","gitter":"","instagram":"https://www.instagram.com/redcab.co/","linkedin":"https://linkedin.com/company/redcab","reddit":"https://www.reddit.com/u/redcab_io","slack":"","telegram":"https://t.me/redcab_ico","twitter":"https://twitter.com/redcab_llc","youtube":"https://www.youtube.com/channel/UChSUOalHabZIWL4Ewq6b0RA?"}},{"symbol":"REN","name":"Republic Protocol","type":"ERC20","address":"0x408e41876cCCDC0F92210600ef50372656052a38","ens_address":"republicprotocol.eth","decimals":18,"website":"https://republicprotocol.com","logo":{"src":"https://republicprotocol.github.io/files/logo/ren.svg","width":"256","height":"256","ipfs_hash":"QmbomLqopXo9L89XrAkApeavccPDgXg713KxRjxe1vyhfx"},"support":{"email":"support@republicprotocol.com","url":""},"social":{"blog":"https://medium.com/republicprotocol","chat":"","facebook":"https://www.facebook.com/RepublicProtocol","forum":"","github":"http://github.com/republicprotocol","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/republic-protocol","reddit":"https://www.reddit.com/r/republicprotocol","slack":"","telegram":"https://t.me/republicprotocol","twitter":"https://twitter.com/republicorg","youtube":""}},{"symbol":"REP","name":"Augur","type":"ERC20","address":"0x1985365e9f78359a9B6AD760e32412f4a445E862","ens_address":"","decimals":18,"website":"https://augur.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Augur","slack":"https://invite.augur.net","telegram":"","twitter":"","youtube":""}},{"symbol":"REQ","name":"Request Network","type":"ERC20","address":"0x8f8221aFbB33998d8584A2B05749bA73c37a938a","ens_address":"","decimals":18,"website":"https://request.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"req@request.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/requestnetwork","slack":"https://requestnetwork.slack.com","telegram":"","twitter":"https://twitter.com/requestnetwork","youtube":""}},{"symbol":"REX","name":"REX","type":"ERC20","address":"0xf05a9382A4C3F29E2784502754293D88b835109C","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"RFR","name":"Refereum","type":"ERC20","address":"0xd0929d411954c47438dc1d871dd6081f5c5e149c","ens_address":"refereum.eth","decimals":4,"website":"https://refereum.com","logo":{"src":"28","width":"28","height":"https://etherscan.io/token/images/refereum.png","ipfs_hash":""},"support":{"email":"team@refereum.com","url":"https://help.refereum.com/"},"social":{"blog":"https://medium.com/refereum","chat":"https://discordapp.com/invite/RASrHyD","facebook":"https://www.facebook.com/Refereum/","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/refereum/","linkedin":"https://www.linkedin.com/company/refereum","reddit":"https://www.reddit.com/r/Refereum/","slack":"","telegram":"https://t.me/refereumtalk","twitter":"https://twitter.com/Refereum","youtube":""}},{"symbol":"RIPT","name":"RiptideCoin","type":"ERC20","address":"0xdd007278b667f6bef52fd0a4c23604aa1f96039a","ens_address":"","decimals":8,"website":"https://riptidecoin.com","logo":{"src":"https://etherscan.io/token/images/riptide_28.png","width":24,"height":24,"ipfs_hash":""},"support":{"email":"support@riptidecoin.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/RiptideCoin","forum":"","github":"https://github.com/riptidecoin/riptide-coin","gitter":"","instagram":"https://www.instagram.com/riptide_coin","linkedin":"","reddit":"","slack":"https://mmjfintech.slack.com","telegram":"","twitter":"https://twitter.com/RiptideCoin","youtube":""}},{"symbol":"RLC","name":"IEx.ec","type":"ERC20","address":"0x607F4C5BB672230e8672085532f7e901544a7375","ens_address":"","decimals":9,"website":"http://crowdsale.iex.ec","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://52.44.51.109:3000","telegram":"","twitter":"","youtube":""}},{"symbol":"RLT","name":"RLT","type":"ERC20","address":"0xcCeD5B8288086BE8c38E23567e684C3740be4D48","ens_address":"","decimals":10,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"RLTY","name":"SMARTRealty","type":"ERC20","address":"0xbe99B09709fc753b09BCf557A992F6605D5997B0","ens_address":"","decimals":8,"website":"www.smartrealty.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@smartrealty.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/SMARTRealty-1877878195858356","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SMARTRealty","slack":"https://join.slack.com/t/smartrealty/shared_invite/enQtMzAwMTA1NTM2MjI5LTU5NWU0NmFlODc1OTQ0NjNkYTA5YzIxNDNiY2JiMjM2MjBiZjZjODA5MmQxMDYyM2U5NmYzZTA4Njc2MTQwOWI","telegram":"https://t.me/joinchat/BaF91g_sD4e0Jrmv5Idisg","twitter":"https://twitter.com/rltytoken","youtube":""}},{"symbol":"RLX","name":"Relex","type":"ERC20","address":"0x4a42d2c580f83dce404acad18dab26db11a1750e","ens_address":"","decimals":18,"website":"www.relex.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@relex.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2075473.20","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/relextalk","youtube":""}},{"symbol":"RNDR","name":"Render Token","type":"ERC20","address":"0x0996bfb5d057faa237640e2506be7b4f9c46de0b","ens_address":"","decimals":18,"website":"https://rendertoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@rendertoken.com","url":""},"social":{"blog":"","chat":"https://rendertoken.rocket.chat","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/RenderToken","slack":"","telegram":"","twitter":"https://twitter.com/rendertoken","youtube":""}},{"symbol":"ROCK","name":"Rocket Token","type":"ERC20","address":"0xA40106134c5bF4c41411554e6db99B95A15ed9d8","ens_address":"","decimals":18,"website":"https://rocketico.io","logo":{"src":"https://rocketico.io/app/media/token_icon.png","width":34,"height":34,"ipfs_hash":""},"support":{"email":"support@rocketico.io","url":""},"social":{"blog":"https://blog.rocketico.io/","chat":"","facebook":"","forum":"","github":"https://github.com/rocketico","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company-beta/18198957/","reddit":"","slack":"","telegram":"https://t.me/RocketICOen","twitter":"https://twitter.com/rocketico_io","youtube":"https://www.youtube.com/channel/UCzwtmszqPnIdzdj2hYoa2YQ"}},{"symbol":"ROK","name":"Rocketchain","type":"ERC20","address":"0xc9de4b7f0c3d991e967158e4d4bfa4b51ec0b114","ens_address":"","decimals":18,"website":"https://rockchain.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"yosra.helal@rockchain.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ROUND","name":"ROUND","type":"ERC20","address":"0x4993CB95c7443bdC06155c5f5688Be9D8f6999a5","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"RPL","name":"Rocket Pool","type":"ERC20","address":"0xb4efd85c19999d84251304bda99e90b92300bd93","ens_address":"","decimals":18,"website":"https://www.rocketpool.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@mail.rocketpool.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/rocketpool","slack":"http://slack.rocketpool.net","telegram":"","twitter":"","youtube":""}},{"symbol":"RTN","name":"RiderToken","type":"ERC20","address":"0x54b293226000ccBFC04DF902eEC567CB4C35a903","ens_address":"","decimals":18,"website":"http://ridertoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ridercoinofficial@gmail.com","url":"http://ridertoken.com"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Rider-Token-ICO-171436110107068","forum":"","github":"https://github.com/Ridercoin2/RiderCoin/blob/master/README.md","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/FFraxA_gh6l2-Ahev-AxHQ","twitter":"https://twitter.com/RiderTokenICO","youtube":""}},{"symbol":"RVT","name":"Rivetz","type":"ERC20","address":"0x3d1ba9be9f66b8ee101911bc36d3fb562eac2244","ens_address":"","decimals":18,"website":"https://rivetzintl.com","logo":{"src":"https://rivetz.com/img/logo/color-250px.png","width":250,"height":250,"ipfs_hash":""},"support":{"email":"sales@rivetzintl.com","url":"https://rivetzintl.com"},"social":{"blog":"","chat":"https://discord.gg/VNrDBUV","facebook":"https://www.facebook.com/Rivetz-1409224065995167","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/rivet_group","twitter":"https://twitter.com/rivetzcorp","youtube":"https://www.youtube.com/watch?v=GbC65mIMjnw"}},{"symbol":"S-A-PAT","name":"S-A-PAT","type":"ERC20","address":"0x1ec8fe51a9b6a3a6c427d17d9ecc3060fbc4a45c","ens_address":"","decimals":18,"website":"https://www.smartillions.ch","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@smartillions.ch","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"S-ETH","name":"S-ETH","type":"ERC20","address":"0x3eb91d237e491e0dee8582c402d85cb440fb6b54","ens_address":"","decimals":18,"website":"https://www.smartillions.ch","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@smartillions.ch","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SALT","name":"Salt Lending Token","type":"ERC20","address":"0x4156D3342D5c385a87D264F90653733592000581","ens_address":"","decimals":8,"website":"https://saltlending.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"saltcommunity.slack.com","telegram":"","twitter":"https://twitter.com/SaltLending","youtube":""}},{"symbol":"SAN","name":"Santiment","type":"ERC20","address":"0x7C5A0CE9267ED19B22F8cae653F198e3E8daf098","ens_address":"","decimals":18,"website":"https://santiment.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@santiment.net","url":""},"social":{"blog":"https://medium.com/santiment","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://santiment-slack.herokuapp.com","telegram":"https://t.me/santiment_network","twitter":"https://twitter.com/santimentfeed","youtube":""}},{"symbol":"SCANDI","name":"Scandiweb Coin","type":"ERC20","address":"0x78fe18e41f436e1981a3a60d1557c8a7a9370461","ens_address":"","decimals":2,"website":"https://scandiweb.com","logo":{"src":"https://i.imgur.com/KrgWBxm.jpg","width":"300","height":"300","ipfs_hash":""},"support":{"email":"info@scandiweb.com","url":""},"social":{"blog":"https://medium.com/@scandiweb","chat":"","facebook":"https://www.facebook.com/scandiweb","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/scandiweb_life/","linkedin":"https://www.linkedin.com/company/scandiweb/","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/scandiweb","youtube":"https://www.youtube.com/channel/UCQKucH_fDghjSM43QBX0itg/feed"}},{"symbol":"SCL","name":"SocialCoin","type":"ERC20","address":"0xd7631787b4dcc87b1254cfd1e5ce48e96823dee8","ens_address":"","decimals":8,"website":"https://ico.nexus.social","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@nexus.social","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/nexussocialnetwork","forum":"https://bitcointalk.org/index.php?topic=2039735","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/nexus_social","slack":"http://slack.nexus.social","telegram":"https://t.me/nexus_social","twitter":"https://twitter.com/nexus_socials","youtube":""}},{"symbol":"SenSatorI","name":"SenSatorI Token","type":"ERC20","address":"0x4ca74185532dc1789527194e5b9c866dd33f4e82","ens_address":"","decimals":18,"website":"http://theglobalbitcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"iSensatori@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SenSatorIToken","slack":"","telegram":"","twitter":"https://twitter.com/Sensatori_dev","youtube":""}},{"symbol":"SENSE","name":"Sensay","type":"ERC20","address":"0x6745fAB6801e376cD24F03572B9C9B0D4EdDDCcf","ens_address":"","decimals":8,"website":"https://sensay.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/sensay","youtube":""}},{"symbol":"SET","name":"SET","type":"ERC20","address":"0xe06eda7435ba749b047380ced49121dde93334ae","ens_address":"","decimals":0,"website":"http://sydeth.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/SydEthereum/meetup-token#meetup-token","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://chat.sydeth.com","twitter":"https://twitter.com/sydethereum","youtube":""}},{"symbol":"SEXY","name":"Sexy Token","type":"ERC20","address":"0x98f5e9b7f0e33956c0443e81bf7deb8b5b1ed545","ens_address":"","decimals":18,"website":"http://sexytoken.co","logo":{"src":"https://etherscan.io/token/images/sexytoken28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@sexytoken.co","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SGEL","name":"SGELDER","type":"ERC20","address":"0xa1ccc166faf0E998b3E33225A1A0301B1C86119D","ens_address":"","decimals":18,"website":"https://www.soerengelder.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"supportgelder@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SGT","name":"StatusGenesis","type":"ERC20","address":"0xd248B0D48E44aaF9c49aea0312be7E13a6dc1468","ens_address":"","decimals":1,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SGT","name":"SelfieYo Gold Token","type":"ERC20","address":"0x37427576324fE1f3625c9102674772d7CF71377d","ens_address":"","decimals":18,"website":"https://sgt.selfieyo.com","logo":{"src":"https://sgt.selfieyo.com/wp-content/uploads/2018/01/token-new.png","width":"400","height":"400","ipfs_hash":""},"support":{"email":"sgt@selfieyo.com","url":""},"social":{"blog":"","chat":"","discord":"https://discord.gg/QY6EVuY","facebook":"https://www.facebook.com/SelfieYoApp/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/SGTcoin","twitter":"https://twitter.com/SelfieYo","youtube":""}},{"symbol":"SHIT","name":"SHIT","type":"ERC20","address":"0xEF2E9966eb61BB494E5375d5Df8d67B7dB8A780D","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SIFT","name":"SIFT","type":"ERC20","address":"0x8a187d5285d316bcbc9adafc08b51d70a0d8e000","ens_address":"","decimals":0,"website":"https://smartift.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@smartift.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2037464.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/smartift.com","twitter":"https://twitter.com/smartift","youtube":""}},{"symbol":"SIG","name":"Signal","type":"ERC20","address":"0x6888a16eA9792c15A4DCF2f6C623D055c8eDe792","ens_address":"","decimals":18,"website":"https://spectivvr.com","logo":{"src":"https://uploads-ssl.webflow.com/58fd371467a8320d4f29aed3/5906667d95a2d43d31378ce7_60x60logo.png","width":"251","height":"251","ipfs_hash":""},"support":{"email":"info@spectivvr.com","url":""},"social":{"blog":"https://medium.com/spectiv-vr","chat":"http://t.me/spectivtelegram","facebook":"https://www.facebook.com/spectivvr/","forum":"","github":"https://github.com/SpectivOfficial","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Spectiv","slack":"https://communityinviter.com/apps/spectivvr/welcome","telegram":"http://t.me/spectivtelegram","twitter":"https://twitter.com/spectivvr","youtube":""}},{"symbol":"SKIN","name":"SKIN","type":"ERC20","address":"0x2bDC0D42996017fCe214b21607a515DA41A9E0C5","ens_address":"","decimals":6,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SKO1","name":"Sikoba","type":"ERC20","address":"0x4994e81897a920c0FEA235eb8CEdEEd3c6fFF697","ens_address":"","decimals":18,"website":"http://www.sikoba.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@sikoba.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://sikoba-presale.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"SKR","name":"SKR Token","type":"ERC20","address":"0x4c382F8E09615AC86E08CE58266CC227e7d4D913","ens_address":"","decimals":6,"website":"https://tokensale.skrilla.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mailto:support@skrilla.com","url":""},"social":{"blog":"https://medium.com/@Skrilla","chat":"https://discordapp.com/invite/F77VmjV","facebook":"https://www.facebook.com/SkrillaEsports","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/skrillatokensale","twitter":"https://twitter.com/playskrilla","youtube":""}},{"symbol":"SKRP","name":"Skraps","type":"ERC20","address":"0x6E34d8d84764D40f6D7b39cd569Fd017bF53177D","ens_address":"","decimals":18,"website":"https://skraps.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@skraps.io","url":"https://skraps.io/#support"},"social":{"blog":"https://medium.com/@SKRAPS_IO","chat":"","facebook":"https://www.facebook.com/SKRAPSAPP/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SKRAPSio/","slack":"","telegram":"https://t.me/SkrapsOfficial","twitter":"https://twitter.com/SKRAPS_IO","youtube":""}},{"symbol":"SKRP","name":"SKRP (Phase 1-E)","type":"ERC20","address":"0x324a48ebcbb46e61993931ef9d35f6697cd2901b","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SKRP","name":"Skraps","type":"ERC20","address":"0xfdFE8b7aB6CF1bD1E3d14538Ef40686296C42052","ens_address":"","decimals":18,"website":"https://skraps.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@skraps.io","url":""},"social":{"blog":"https://medium.com/@SKRAPS_IO","chat":"","facebook":"https://www.facebook.com/SKRAPSAPP","forum":"https://bitcointalk.org/index.php?topic=2520387.msg25746537#msg25746537","github":"https://github.com/SkrapsIO","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SKRAPSio","slack":"","telegram":"https://t.me/SkrapsOfficial","twitter":"https://twitter.com/SKRAPS_IO","youtube":""}},{"symbol":"SLT","name":"Smartlands","type":"ERC20","address":"0x7A5fF295Dc8239d5C2374E4D894202aAF029Cab6","ens_address":"","decimals":3,"website":"http://smartlands.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"contact@smartlands.io"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SMART","name":"Smart Billions","type":"ERC20","address":"0x6F6DEb5db0C4994A8283A01D6CFeEB27Fc3bBe9C","ens_address":"","decimals":0,"website":"http://smartbillions.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@smartbillions.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/smartbns","forum":"https://bitcointalk.org/index.php?topic=2175951.0","github":"https://github.com/SmartBillions/SmartBillions","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SmartBillions","slack":"https://smartbillions.slack.com","telegram":"https://t.me/SmartBillionsGroup","twitter":"https://twitter.com/smartbns","youtube":""}},{"symbol":"SMT","name":"SmartMesh","type":"ERC20","address":"0x55f93985431fc9304077687a35a1ba103dc1e081","ens_address":"","decimals":18,"website":"http://smartmesh.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"tomcat@smartmesh.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/smartmesh/","forum":"https://bitcointalk.org/index.php?topic=2314643.0;all","github":"https://github.com/SmartMeshFoundation","gitter":"","instagram":"https://www.instagram.com/explore/tags/smartmesh/","linkedin":"https://www.linkedin.com/company/smartmesh-foundation/","reddit":"https://www.reddit.com/r/SmartMesh/","slack":"","telegram":"t.me@SmartMesh","twitter":"https://twitter.com/smart_mesh?lang=en","youtube":"https://m.youtube.com/channel/UCrrPpnGqu7PJeU13U0VRPBA"}},{"symbol":"SMT","name":"Smart Node","type":"ERC20","address":"0x2dcfaac11c9eebd8c6c42103fe9e2a6ad237af27","ens_address":"","decimals":18,"website":"http://smartnode.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@smartnode.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/Smart.Node.Group","forum":"https://bitcointalk.org/index.php?topic=2612181","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/SmartNodeGroup","youtube":"https://www.youtube.com/channel/UC2FvYOXYEOPKgOzdePT8BRA"}},{"symbol":"SMT","name":"Social Media Market","type":"ERC20","address":"0x78Eb8DC641077F049f910659b6d580E80dC4d237","ens_address":"","decimals":8,"website":"https://socialmedia.market","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@socialmedia.market","url":"https://t.me/socialmediamarket_eng"},"social":{"blog":"https://medium.com/socialmedia-market","chat":"https://t.me/joinchat/B3UENkIW3R9A6v_4KnpOZQ","facebook":"https://www.facebook.com/SocialMedia.Market.platform","forum":"https://bitcointalk.org/index.php?topic=2291309.0","github":"https://github.com/SocialMediaMarket","gitter":"","instagram":"https://instagram.com/socialmedia.io","linkedin":"https://www.linkedin.com/company/socialmedia-market/","reddit":"https://github.com/SocialMediaMarket","slack":"","telegram":"https://t.me/joinchat/B3UENkIW3R9A6v_4KnpOZQ","twitter":"https://twitter.com/socialmedia_mrk","youtube":"https://www.youtube.com/channel/UCPJ919jN8eCcVDkzbCR06nw"}},{"symbol":"SNC","name":"SNC","type":"ERC20","address":"0xF4134146AF2d511Dd5EA8cDB1C4AC88C57D60404","ens_address":"","decimals":18,"website":"https://suncontract.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/suncontractorg","forum":"https://bitcointalk.org/index.php?topic=1934763.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/suncontract","slack":"","telegram":"","twitter":"https://twitter.com/sun_contract","youtube":""}},{"symbol":"SND","name":"Sandcoin","type":"ERC20","address":"0xf333b2Ace992ac2bBD8798bF57Bc65a06184afBa","ens_address":"","decimals":0,"website":"https://www.sandcoin.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@sandcoin.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2049619.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SandCoin","slack":"","telegram":"https://t.me/sandcoin","twitter":"","youtube":""}},{"symbol":"SNG","name":"SINERGIA","type":"ERC20","address":"0xcFD6Ae8BF13f42DE14867351eAff7A8A3b9FbBe7","ens_address":"","decimals":8,"website":"https://sinergiablockchain.org/index-en.html","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@sinergiablockchain.org","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/SinergiaBlockchain/","forum":"https://bitcointalk.org/index.php?topic=2210037.0","github":"https://github.com/SinergiaBlockchain","gitter":"","instagram":"https://www.instagram.com/Sinergia_Blockchain","linkedin":"https://www.linkedin.com/company/11226873/","reddit":"https://www.reddit.com/user/Sinergia_Blockchain/comments/7huc5i/sinergia_blockchain_first_blockchain_technology/","slack":"https://slack.singulardtv.com","telegram":"https://t.me/ComunidadSinergiaBlockchain","twitter":"https://twitter.com/Sinergia_B","youtube":"https://www.youtube.com/channel/UCeDj2iS0d3v0tM6YeUdr60g"}},{"symbol":"SNGLS","name":"SingularDTV","type":"ERC20","address":"0xaeC2E87E0A235266D9C5ADc9DEb4b2E29b54D009","ens_address":"","decimals":0,"website":"https://singulardtv.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.singulardtv.com","telegram":"","twitter":"","youtube":""}},{"symbol":"SNIP","name":"SNIP","type":"ERC20","address":"0x44F588aEeB8C44471439D1270B3603c66a9262F1","ens_address":"","decimals":18,"website":"https://www.snip.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@snip.today","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/sniptoday","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/sniptoday","twitter":"https://www.twitter.com/sniptoday","youtube":""}},{"symbol":"SNM","name":"SNM","type":"ERC20","address":"0x983F6d60db79ea8cA4eB9968C6aFf8cfA04B3c63","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SNOV","name":"SNOV","type":"ERC20","address":"0xbdc5bac39dbe132b1e030e898ae3830017d7d969","ens_address":"","decimals":18,"website":"https://tokensale.snov.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"ico@snov.io","url":"https://tokensale.snov.io"},"social":{"blog":"https://snov.io/blog","chat":"","facebook":"https://www.facebook.com/Snovio-ICO-147118702534568","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Snovio_ICO","slack":"","telegram":"https://t.me/snovio_ico","twitter":"https://twitter.com/snovio_ico","youtube":"https://www.youtube.com/channel/UCfvMUI2tXgc0Pcjk0hF5pSw"}},{"symbol":"SNT","name":"Status Network Token","type":"ERC20","address":"0x744d70FDBE2Ba4CF95131626614a1763DF805B9E","ens_address":"","decimals":18,"website":"https://status.im","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"SOL","name":"Sola Token","type":"ERC20","address":"0x1f54638b7737193ffd86c19ec51907a7c41755d8","ens_address":"","decimals":6,"website":"https://sola.foundation","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hi@sola.foundation","url":""},"social":{"blog":"https://medium.com/solaplatform","chat":"","facebook":"https://facebook.com/solaplatform","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/solaplatform","twitter":"https://twitter.com/solaplatform","youtube":""}},{"symbol":"SPANK","name":"SpankChain","type":"ERC20","address":"0x42d6622dece394b54999fbd73d108123806f6a18","ens_address":"spankchain.eth","decimals":18,"website":"https://spankchain.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/spankchain","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/_spankchain","linkedin":"","reddit":"https://www.reddit.com/r/SpankChain","slack":"","telegram":"","twitter":"https://twitter.com/SpankChain","youtube":"https://www.youtube.com/channel/UCRonD1SJuucnq9GJCJL_crQ"}},{"symbol":"SPARC","name":"SPARC","type":"ERC20","address":"0x58bf7df57d9DA7113c4cCb49d8463D4908C735cb","ens_address":"","decimals":18,"website":"https://kingsds.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@kingsds.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://kingsds.slack.com","telegram":"","twitter":"https://twitter.com/kingsdsnetwork","youtube":""}},{"symbol":"SPARTA","name":"SPARTA","type":"ERC20","address":"0x24aef3bf1a47561500f9430d74ed4097c47f51f2","ens_address":"","decimals":4,"website":"https://www.spartaico.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"reachout@spartaico.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SpartaStartups","slack":"","telegram":"https://t.me/joinchat/FiHDZw5qhOTmSArzrs42rQ","twitter":"https://twitter.com/spartaico","youtube":""}},{"symbol":"SPF","name":"Sportify","type":"ERC20","address":"0x85089389C14Bd9c77FC2b8F0c3d1dC3363Bf06Ef","ens_address":"","decimals":18,"website":"https://sportyfi.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@sportyfi.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/sportyfi_io","youtube":""}},{"symbol":"SPN","name":"Sapien","type":"ERC20","address":"0x20F7A3DdF244dc9299975b4Da1C39F8D5D75f05A","ens_address":"","decimals":6,"website":"https://www.sapien.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/SapienNetwork","twitter":"","youtube":""}},{"symbol":"SRN","name":"Sirin Labs","type":"ERC20","address":"0x68d57c9a1C35f63E2c83eE8e49A64e9d70528D25","ens_address":"","decimals":18,"website":"https://sirinlabs.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"crowdsale@sirinlabs.com","url":""},"social":{"blog":"https://medium.com/@sirinlabs","chat":"","facebook":"https://www.facebook.com/SirinLabs/?fref=ts","forum":"https://bitcointalk.org/index.php?topic=2285838","github":"https://github.com/sirin-labs/crowdsale-smart-contract","gitter":"","instagram":"https://www.instagram.com/sirinlabs","linkedin":"https://www.linkedin.com/company-beta/10487115","reddit":"https://www.reddit.com/r/SirinLabs","slack":"","telegram":"https://t.me/sirinlabs","twitter":"https://twitter.com/SIRINLABS","youtube":""}},{"symbol":"SS","name":"Sharder","type":"ERC20","address":"0xbbFF862d906E348E9946Bfb2132ecB157Da3D4b4","ens_address":"","decimals":18,"website":"https://sharder.org","logo":{"src":"https://oss.sharder.org/sharder/Token/Token-logo-132x132.png","width":"132","height":"132","ipfs_hash":""},"support":{"email":"service@sharder.org","url":""},"social":{"blog":"https://medium.com/@SharderChain","chat":"","facebook":"https://facebook.com/SharderChain","forum":"https://community.sharder.org","github":"https://github.com/Sharders","gitter":"","instagram":"","linkedin":"","reddit":"https://reddit.com/r/Sharder/","slack":"","telegram":"https://t.me/sharder_talk","twitter":"https://twitter.com/SharderChain","youtube":""}},{"symbol":"SSH","name":"StreamShares","type":"ERC20","address":"0x6e2050CBFB3eD8A4d39b64cC9f47E711a03a5a89","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"STAC","name":"Starter Coin","type":"ERC20","address":"0x9a005c9a89bd72a4bd27721e7a09a3c11d2b03c4","ens_address":"","decimals":18,"website":"https://coinstarter.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@coinstarter.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/realCoinStarter","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/coinstarter","twitter":"https://twitter.com/realCoinStarter","youtube":""}},{"symbol":"STAR","name":"Star Token","type":"ERC20","address":"0xF70a642bD387F94380fFb90451C2c81d4Eb82CBc","ens_address":"","decimals":18,"website":"http://starbase.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@starbase.co","url":""},"social":{"blog":"","chat":"https://starbase.rocket.chat","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://starbase-community.slack.com","telegram":"https://t.me/starbase","twitter":"","youtube":""}},{"symbol":"STC","name":"StrikeCoin Token","type":"ERC20","address":"0x629aEe55ed49581C33ab27f9403F7992A289ffd5","ens_address":"","decimals":18,"website":"https://dimensions.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@dimensions.network","url":"https://dimensions.network/en/contact_us"},"social":{"blog":"","chat":"","facebook":"https://fb.me/dimensionsnetwork","forum":"","github":"https://github.com/DimensionsNetwork","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/dimensions-network","reddit":"https://www.reddit.com/r/DimensionsNetwork","slack":"","telegram":"https://t.me/DimensionsTalk","twitter":"https://twitter.com/DN_STC","youtube":"https://www.youtube.com/channel/UCticN7-IvIaEpbXVdbsBlcQ/videos"}},{"symbol":"STK","name":"STK Token","type":"ERC20","address":"0xaE73B38d1c9A8b274127ec30160a4927C4d71824","ens_address":"","decimals":18,"website":"https://stktoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@STKtoken","chat":"https://discordapp.com/invite/38EXN5D","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/STKToken","slack":"","telegram":"https://t.me/stktoken","twitter":"https://twitter.com/stktoken","youtube":"https://www.youtube.com/c/STACKFINTECH"}},{"symbol":"STN","name":"Saturn Network","type":"ERC20","address":"0x599346779e90fc3F5F997b5ea715349820F91571","ens_address":"","decimals":4,"website":"https://saturn.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://rados.io","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2046046","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/rados_io","youtube":""}},{"symbol":"STORJ","name":"STORJ","type":"ERC20","address":"0xB64ef51C888972c908CFacf59B47C1AfBC0Ab8aC","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"STORM","name":"Storm Token","type":"ERC20","address":"0xD0a4b8946Cb52f0661273bfbC6fD0E0C75Fc6433","ens_address":"","decimals":18,"website":"https://www.stormtoken.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@stormtoken.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/stormtoken","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/GHTZGQwsy9mZk0KFEEjGtg","twitter":"https://twitter.com/storm_token","youtube":""}},{"symbol":"STP","name":"StashPay","type":"ERC20","address":"0xecd570bBf74761b960Fa04Cc10fe2c4e86FfDA36","ens_address":"","decimals":8,"website":"https://stashpay.io","logo":{"src":"https://etherscan.io/token/images/stash_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@stashpay.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/stashpay.io","forum":"","github":"https://github.com/stashpayio","gitter":"","instagram":"https://www.instagram.com/stashpay.io","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/stashpay","youtube":""}},{"symbol":"STQ","name":"Storiqa","type":"ERC20","address":"0x5c3a228510d246b78a3765c20221cbf3082b44a4","ens_address":"","decimals":18,"website":"https://storiqa.com","logo":{"src":"https://s2.coinmarketcap.com/static/img/coins/32x32/2541.png","width":"32","height":"32","ipfs_hash":""},"support":{"email":"support@storiqa.zendesk.com","url":""},"social":{"blog":"https://medium.com/@storiqa","chat":"https://t.me/storiqa_en","facebook":"https://www.facebook.com/storiqa/","forum":"https://bitcointalk.org/index.php?topic=2233274","github":"https://github.com/Storiqa/","gitter":"","instagram":"https://www.instagram.com/storiqa/","linkedin":"https://ru.linkedin.com/company/storiqa","reddit":"https://www.reddit.com/r/Storiqa/","slack":"","telegram":"https://t.me/storiqa_en","twitter":"https://twitter.com/storiqa","youtube":"https://www.youtube.com/channel/UCU_VW6azYd0cXFACzofUy5w"}},{"symbol":"STRC","name":"STRC","type":"ERC20","address":"0x46492473755e8dF960F8034877F61732D718CE96","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"STX","name":"StoxToken","type":"ERC20","address":"0x006BeA43Baa3f7A6f765F14f10A1a1b08334EF45","ens_address":"","decimals":18,"website":"https://www.stox.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/stx-technologies/stox-token","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/STOX","slack":"","telegram":"https://t.me/joinchat/DByWw0Pnq9BAy4FqPv_Lyg","twitter":"https://twitter.com/stx_coin","youtube":""}},{"symbol":"SUB","name":"Substratum","type":"ERC20","address":"0x12480E24eb5bec1a9D4369CaB6a80caD3c0A377A","ens_address":"","decimals":2,"website":"https://substratum.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/SubstratumNetwork","slack":"http://x.co/SubSlack","telegram":"","twitter":"https://twitter.com/SubstratumNet","youtube":""}},{"symbol":"SWM","name":"Swarm Fund Token","type":"ERC20","address":"0x9e88613418cf03dca54d6a2cf6ad934a78c7a17a","ens_address":"","decimals":18,"website":"https://swarm.fund","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"mailto:info@swarm.fund","url":""},"social":{"blog":"https://blog.swarm.fund","chat":"","facebook":"https://www.facebook.com/swarmalliance","forum":"","github":"https://github.com/swarmfund","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/5229919","reddit":"https://www.reddit.com/r/swarm","slack":"","telegram":"https://t.me/swarmfund","twitter":"https://twitter.com/TheSwarmFund","youtube":"https://www.youtube.com/c/swarmfund"}},{"symbol":"SWT","name":"Swarm City Token","type":"ERC20","address":"0xB9e7F8568e08d5659f5D29C4997173d84CdF2607","ens_address":"","decimals":18,"website":"http://swarm.city","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://swarm-slack-invite.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"SXDT","name":"Spectre.ai D-Token","type":"ERC20","address":"0x12b306fa98f4cbb8d4457fdff3a0a0a56f07ccdf","ens_address":"","decimals":18,"website":"www.spectre.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@spectre.ai","url":""},"social":{"blog":"https://medium.com/teamspectreai","chat":"","facebook":"https://www.facebook.com/spectrepage","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/GjkGkw7IfwUVuPiWxctD4g","twitter":"https://twitter.com/SpectreAI","youtube":""}},{"symbol":"SXUT","name":"Spectre.ai U-Token","type":"ERC20","address":"0x2c82c73d5b34aa015989462b2948cd616a37641f","ens_address":"","decimals":18,"website":"www.spectre.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@spectre.ai","url":""},"social":{"blog":"https://medium.com/teamspectreai","chat":"","facebook":"https://www.facebook.com/spectrepage","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/GjkGkw7IfwUVuPiWxctD4g","twitter":"https://twitter.com/SpectreAI","youtube":""}},{"symbol":"SYN","name":"Synapse","type":"ERC20","address":"0x10b123fddde003243199aad03522065dc05827a0","ens_address":"","decimals":18,"website":"https://synapse.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"support@synapse.ai"},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2198553","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/aisynapse","youtube":""}},{"symbol":"TaaS","name":"Token-as-a-Service","type":"ERC20","address":"0xE7775A6e9Bcf904eb39DA2b68c5efb4F9360e08C","ens_address":"","decimals":6,"website":"https://taas.fund","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://taasfund.signup.team","telegram":"","twitter":"","youtube":""}},{"symbol":"TAU","name":"Lamden Tau","type":"ERC20","address":"0xc27a2f05fa577a83ba0fdb4c38443c0718356501","ens_address":"","decimals":18,"website":"https://www.lamden.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@lamden.io","url":"https://www.lamden.io"},"social":{"blog":"https://blog.lamden.io","chat":"https://t.me/lamdenchat","facebook":"https://www.facebook.com/LamdenTau","forum":"","github":"https://github.com/lamden","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/lamden","slack":"","telegram":"https://t.me/lamdenchat","twitter":"https://www.twitter.com/LamdenTau","youtube":""}},{"symbol":"TBC2","name":"TBC2","type":"ERC20","address":"0xFACCD5Fc83c3E4C3c1AC1EF35D15adf06bCF209C","ens_address":"","decimals":8,"website":"https://www.tbc.erc20.club","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"erc20club@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/TBC2-257999158050457","forum":"","github":"https://github.com/erc20club","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"TBT","name":"TBitBot","type":"ERC20","address":"0xAFe60511341a37488de25Bef351952562E31fCc1","ens_address":"","decimals":8,"website":"https://tbitbot.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@tbitbot.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/tbit.bot.5","forum":"","github":"https://github.com/tbitbot","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/tbitbot","slack":"https://tbotworkspace.slack.com","telegram":"","twitter":"https://twitter.com/tbit_bot","youtube":""}},{"symbol":"TCA","type":"ERC20","address":"0xfA0eF5E034CaE1AE752d59bdb8aDcDe37Ed7aB97","decimals":18,"name":"TangguoTao Token","ens_address":"","website":"https://www.tcandy.io","logo":{"src":"https://www.tcandy.io/images/logo.png","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@tcandy.io","url":""},"social":{"blog":"https://weibo.com/u/6612897220","chat":"","facebook":"https://www.facebook.com/tcandy.io","forum":"","github":"https://github.com/TcandyChain","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/TcandyChain","youtube":""}},{"symbol":"TDH","name":"TrustedHealth","type":"ERC20","address":"0x2a1dbabe65c595B0022e75208C34014139d5d357","ens_address":"","decimals":18,"website":"https://trustedhealth.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@trustedhealth.io","url":""},"social":{"blog":"https://medium.com/trustedhealth-io","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/trustedhealth-io/","reddit":"https://www.reddit.com/r/TrustedHealth/","slack":"","telegram":"https://t.me/TrustedHealth_io","twitter":"https://twitter.com/_trustedhealth","youtube":""}},{"symbol":"TEL","name":"Telcoin","type":"ERC20","address":"0x85e076361cc813a908ff672f9bad1541474402b2","ens_address":"","decimals":2,"website":"https://www.telco.in","logo":{"src":"https://www.telco.in/logo.png","width":"","height":"","ipfs_hash":""},"support":{"email":"tokensupport@telco.in","url":""},"social":{"blog":"https://medium.com/@telcoin","chat":"","facebook":"","forum":"","github":"https://github.com/telcoin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Telcoin","slack":"","telegram":"https://t.me/TelcoinCommunity","twitter":"https://twitter.com/telcoin_team","youtube":"https://www.youtube.com/channel/UCBEKBh64cZy7U3O7VtKsLOg"}},{"symbol":"TFL","name":"TrueFlip","type":"ERC20","address":"0xa7f976C360ebBeD4465c2855684D1AAE5271eFa9","ens_address":"","decimals":8,"website":"https://trueflip.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=1928663.60","github":"https://github.com/TrueFlip","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"THETA","name":"Theta Token","type":"ERC20","address":"0x3883f5e181fccaf8410fa61e12b59bad963fb645","ens_address":"","decimals":18,"website":"https://www.thetatoken.org/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@thetatoken.org","url":""},"social":{"blog":"","chat":"","facebook":"facebook.com/ThetaToken/","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"reddit.com/r/thetatoken/","slack":"","telegram":"https://t.me/thetatoken","twitter":"twitter.com/thetatoken","youtube":""}},{"symbol":"THUG","name":"THUG","type":"ERC20","address":"0xfe7B915A0bAA0E79f85c5553266513F7C1c03Ed0","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"TICO","name":"Topinvestmentcoin","type":"ERC20","address":"0xa5db1d6f7a0d5bccc17d0bfd39d7af32d5e5edc6","ens_address":"","decimals":5,"website":"https://www.topinvestmentcoin.online/","logo":{"src":"https://i.imgur.com/DnDglhQ.png","width":"130","height":"129","ipfs_hash":""},"support":{"email":"support@topinvestmentcoin.online","url":"https://www.topinvestmentcoin.online/"},"social":{"blog":"https://medium.com/topinvestmentcoin","chat":"","facebook":"https://web.facebook.com/Topinvestmentcoin/","forum":"https://bitcointalk.org/index.php?topic=3123082.0#new","github":"https://github.com/Topinvestmentcoin/Topinvestmentcoin-","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/topinvestmentcoin","twitter":"https://www.twitter.com/Topinvestcoin","youtube":""}},{"symbol":"TIME","name":"Chronobank","type":"ERC20","address":"0x6531f133e6DeeBe7F2dcE5A0441aA7ef330B4e53","ens_address":"","decimals":8,"website":"https://chronobank.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://chronobank.io/faq"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://chronobank.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"TIO","name":"TIO","type":"ERC20","address":"0x80bc5512561c7f85a3a9508c7df7901b370fa1df","ens_address":"","decimals":18,"website":"https://trade.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@trade.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/TradeToken","twitter":"","youtube":""}},{"symbol":"TIX","name":"Blocktix","type":"ERC20","address":"0xEa1f346faF023F974Eb5adaf088BbCdf02d761F4","ens_address":"","decimals":18,"website":"https://www.blocktix.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@blocktix.io","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://slack.blocktix.io","telegram":"","twitter":"","youtube":""}},{"symbol":"TKN","name":"TokenCard","type":"ERC20","address":"0xaAAf91D9b90dF800Df4F55c205fd6989c977E73a","ens_address":"","decimals":8,"website":"https://etherscan.io/token/TokenCard","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://tokencard-team.herokuapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"TLX","name":"Telex","type":"ERC20","address":"0xb3616550abc8af79c7a5902def9efa3bc9a95200","ens_address":"","decimals":8,"website":"https://telexai.com","logo":{"src":"http://telexai.com/img/tlxlogo.png","width":"656px","height":"656px","ipfs_hash":""},"support":{"email":"info@telexai.com","url":"https://t.me/telexai"},"social":{"blog":"https://medium.com/telexai","chat":"","facebook":"https://www.facebook.com/telexai","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/telexai","twitter":"https://twitter.com/telex_ai","youtube":""}},{"symbol":"TNT","name":"Tierion Network Token","type":"ERC20","address":"0x08f5a9235b08173b7569f83645d2c7fb55e8ccd8","ens_address":"","decimals":8,"website":"https://tierion.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@tierion.com","url":"https://tierion.com/contact"},"social":{"blog":"https://medium.com/tierion","chat":"","facebook":"https://facebook.com/TierionInc","forum":"","github":"https://github.com/tierion","gitter":"","instagram":"","linkedin":"https://linkedin.com/company/tierion","reddit":"https://reddit.com/r/tierion","slack":"","telegram":"https://t.me/tierion","twitter":"https://twitter.com/tierion","youtube":""}},{"symbol":"TOOR","name":"ToorCoin","type":"ERC20","address":"0x8eb965ee9cCFBCE76c0a06264492c0afEfc2826d","ens_address":"","decimals":18,"website":"https://www.toorcoin.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@toorcoin.com","url":""},"social":{"blog":"https://medium.com/toorcoin","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=3478302.0","github":"https://github.com/toorister/toorcoin","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Toorcoin","slack":"","telegram":"https://t.me/Toorcoin","twitter":"https://twitter.com/toorcoin","youtube":"https://www.youtube.com/channel/UCYjYlMqYT9UnHgrkqdGhsjQ"}},{"symbol":"TRC","name":"The Real Coin","type":"ERC20","address":"0xcB3F902bf97626391bF8bA87264bbC3DC13469be","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"therealcoin2017@gmail.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"TRCN","name":"The Real Coin","type":"ERC20","address":"0x566Fd7999B1Fc3988022bD38507A48F0bCf22c77","ens_address":"","decimals":18,"website":"http://www.therealcoinz.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"Contact@therealcoinz.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/AAAAAE5H5N1SoT0lYvhBXA","twitter":"https://mobile.twitter.com/OfficialTRCoin","youtube":""}},{"symbol":"TRST","name":"TRST","type":"ERC20","address":"0xcb94be6f13a1182e4a4b6140cb7bf2025d28e41b","ens_address":"","decimals":6,"website":"https://www.wetrust.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/wetrust-blog","chat":"","facebook":"https://www.facebook.com/wetrustplatform","forum":"https://bitcointalk.org/index.php?topic=1773367","github":"https://github.com/WeTrustPlatform","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/WeTrustPlatform","slack":"https://www.wetrust.io/slack-invite","telegram":"","twitter":"https://twitter.com/wetrustplatform","youtube":""}},{"symbol":"TRX","name":"Tron Lab Token","type":"ERC20","address":"0xf230b790e05390fc8295f4d3f60332c93bed42e2","ens_address":"","decimals":6,"website":"https://tronlab.com/en.html","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"service@tronlab.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/TronFoundation-144555002795817","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://tronfoundation.slack.com","telegram":"https://t.me/joinchat/GIjGvkK7dhnO8gapCPfqew","twitter":"https://twitter.com/tronfoundation","youtube":""}},{"symbol":"TSW","name":"TeslaWatt","type":"ERC20","address":"0x6B87999bE87358065bBdE41e8a0fe0B7b1cd2514","ens_address":"","decimals":18,"website":"https://www.teslawatt.com","logo":{"src":"https://www.teslawatt.com/icon-tesla1.jpg","width":"270","height":"270","ipfs_hash":""},"support":{"email":"blockchain@teslawatt.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/TeslaWatt-146558099344457/","forum":"","github":"","gitter":"","instagram":"https://www.instagram.com/teslawattllc/","linkedin":"https://www.linkedin.com/company/teslawatt/","reddit":"","slack":"","telegram":"https://bit.ly/2J0NHxT","twitter":"https://twitter.com/TeslaWatt","youtube":"https://www.youtube.com/channel/UC57TF8T2Ct90sN-FwzALXaQ/featured?view_as=subscriber"}},{"symbol":"TWN","name":"The World News","type":"ERC20","address":"0x2eF1aB8a26187C58BB8aAeB11B2fC6D25C5c0716","ens_address":"","decimals":18,"website":"https://ico.theworldnews.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@theworldnews.net","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/theworldnewstop","forum":"","github":"","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/27158220","reddit":"https://www.reddit.com/user/the-world-news","slack":"","telegram":"https://t.me/theworldnewsdev","twitter":"https://twitter.com/TheWorldNewsNet","youtube":""}},{"symbol":"UKG","name":"UnikoinGold","type":"ERC20","address":"0x24692791bc444c5cd0b81e3cbcaba4b04acd1f3b","ens_address":"","decimals":18,"website":"https://unikoingold.com","logo":{"src":"https://f.unkrn.com/2017-11-04/a/1509813079_unikoin-icon-gold.svg","width":264,"height":264,"ipfs_hash":""},"support":{"email":"support@unikoingold.com","url":""},"social":{"blog":"https://news.unikrn.com/topic/UnikoinGold","chat":"https://community.unikrn.com","facebook":"https://www.facebook.com/unikoingold","forum":"https://bitcointalk.org/index.php?topic=2206150.40","github":"https://github.com/unikoingold/UnikoinGold-UKG-Contract","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/unikoingold","slack":"","telegram":"","twitter":"https://twitter.com/unikoingold","youtube":""}},{"symbol":"UMKA","name":"UMKA","type":"ERC20","address":"0x8e5afc69f6227a3ad75ed346c8723bc62ce97123","ens_address":"","decimals":4,"website":"https://umka.city","logo":{"src":"https://cdn-images-1.medium.com/fit/c/200/200/1*2qbLwo61-mobpkNCWeBcLQ.jpeg","width":200,"height":200,"ipfs_hash":""},"support":{"email":"umka.labormarket@gmail.com","url":""},"social":{"blog":"https://medium.com/@umka_","chat":"https://t.me/umka2018","facebook":"https://www.facebook.com/freelance.umka/","forum":"https://bitcointalk.org/index.php?topic=3382203.msg35440294#msg35440294","github":"https://github.com/UMKAman","gitter":"","instagram":"https://www.instagram.com/umka_freelance/","linkedin":"https://www.linkedin.com/company/umka/","reddit":"https://www.reddit.com/user/UMKA_Labor_Market","slack":"","telegram":"https://t.me/umkachannel","twitter":"https://twitter.com/umka_freelance","youtube":"https://www.youtube.com/channel/UCzuPC-job7i8A8ycobx939w"}},{"symbol":"Unicorn","name":"Unicorn","type":"ERC20","address":"0x89205A3A3b2A69De6Dbf7f01ED13B2108B2c43e7","ens_address":"","decimals":0,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"UQC","name":"Uquid Coin","type":"ERC20","address":"0xd01db73e047855efb414e6202098c4be4cd2423b","ens_address":"","decimals":18,"website":"https://uquidcoin.com","logo":{"src":"https://etherscan.io/token/images/uquid_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"admin@uquidcoin.com","url":""},"social":{"blog":"https://medium.com/@uquidcoin","chat":"","facebook":"https://www.facebook.com/uquidcoin","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/uquidcoin","slack":"https://uquid.herokuapp.com","telegram":"https://t.me/uquidcoin","twitter":"https://twitter.com/UquidC","youtube":""}},{"symbol":"URB","address":"0x931684139f756C24eC0731E9F74FE50e5548dDeF","type":"ERC20","decimals":18,"name":"Urbit Data","ens_address":"urbitdata.eth","website":"https://urbitdata.io","logo":{"src":"https://urbitdata.io/blog/wp-content/uploads/2018/08/urbit-final-128x128.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"support@urbitdata.io","url":""},"social":{"blog":"https://urbitdata.io/blog","chat":"","facebook":"https://facebook.com/urbitdata","forum":"","github":"https://github.com/urbitdata","gitter":"","instagram":"https://www.instagram.com/urbitdata/","linkedin":"https://www.linkedin.com/company/urbitdata","reddit":"https://www.reddit.com/r/UrbitData/","slack":"","telegram":"https://t.me/urbit","twitter":"https://twitter.com/urbitdata","youtube":"https://www.youtube.com/channel/UCJRSNm_SN1v-yzmjdmdBUPg"}},{"symbol":"USDM","name":"Mether (USDM)","type":"ERC20","address":"0xD760ADdFb24D9C01Fe4Bfea7475C5e3636684058","ens_address":"","decimals":2,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"USDT","name":"USD Tether (erc20)","type":"ERC20","address":"0xdac17f958d2ee523a2206206994597c13d831ec7","ens_address":"","decimals":6,"website":"https://tether.to","logo":{"src":"https://etherscan.io/token/images/tether28_2.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"billy@tether.to","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/tether_to","youtube":""}},{"symbol":"UTK","name":"UTK","type":"ERC20","address":"0x70a72833d6bf7f508c8224ce59ea1ef3d0ea3a38","ens_address":"","decimals":18,"website":"https://utrust.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"contact@utrust.io","url":""},"social":{"blog":"https://medium.com/@UTRUST","chat":"","facebook":"https://www.facebook.com/utrust.io","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/utrustofficial","twitter":"https://twitter.com/UTRUST_Official","youtube":""}},{"symbol":"UTN-P","name":"Universa","type":"ERC20","address":"0x9e3319636e2126e3c0bc9e3134AEC5e1508A46c7","ens_address":"","decimals":18,"website":"https://www.universa.io/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@universa.io","url":""},"social":{"blog":"https://medium.com/universablockchain","chat":"","facebook":"https://www.facebook.com/Universablockchain/","forum":"","github":"https://github.com/UniversaBlockchain/universa","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/Uplatform","twitter":"https://twitter.com/Universa_News","youtube":""}},{"symbol":"UUU","name":"U Networks","type":"ERC20","address":"0x3543638eD4a9006E4840B105944271Bcea15605D","ens_address":"","decimals":18,"website":"https://u.network/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VDG","name":"VeriDocGlobal","type":"ERC20","address":"0x57C75ECCc8557136D32619a191fBCDc88560d711","ens_address":"","decimals":0,"website":"https://www.veridocglobal.com/","logo":{"src":"https://veridocglobal.com/Themes/veridoc/Content/img/logo.png","width":"350","height":"145","ipfs_hash":""},"support":{"email":"admin@veridocglobal.com","url":"https://www.veridocglobal.com/contactus"},"social":{"blog":"https://veridocglobal.com/news","chat":"","facebook":"https://www.facebook.com/VeriDocGlobal","forum":"","github":"https://github.com/VeriDocGlobal","gitter":"","instagram":"https://www.instagram.com/VeriDocGlobal/","linkedin":"https://www.linkedin.com/company/veridocglobal","reddit":"","slack":"","telegram":"https://t.me/veridocglobal","twitter":"https://twitter.com/VeriDocGlobal","youtube":"https://www.youtube.com/channel/UCbl5uvM3vd-XRm-aDj2YZJw"}},{"symbol":"VDOC","name":"Duty of Care Token","type":"ERC20","address":"0x82BD526bDB718C6d4DD2291Ed013A5186cAE2DCa","ens_address":"","decimals":18,"website":"https://www.dutyof.care/token-launch/","logo":{"src":"https://www.dutyof.care/assets/img/favicon.png","width":"32","height":"32","ipfs_hash":""},"support":{"email":"info@dutyof.care","url":"https://dutyof.care"},"social":{"blog":"https://medium.com/@dutyof.care","chat":"https://chat.dutyof.care/channel/vdoc-community","facebook":"https://www.facebook.com/duty0fcare","forum":"https://bitcointalk.org/index.php?topic=2900263.0","github":"https://github.com/BlueBikeSolutions","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/dutyofcare/","reddit":"https://www.reddit.com/r/dutyofcare","slack":"","telegram":"","twitter":"https://twitter.com/duty0fcare","youtube":"https://www.youtube.com/channel/UCRZ1RspK2VLbFsxNsb8PHTg"}},{"symbol":"VEE","name":"BLOCKv","type":"ERC20","address":"0x340d2bde5eb28c1eed91b2f790723e3b160613b7","ens_address":"","decimals":18,"website":"https://blockv.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"jessica@blockv.io","url":""},"social":{"blog":"https://medium.com/@blockv_io","chat":"","facebook":"https://www.facebook.com/blockv.io","forum":"","github":"https://github.com/blockv","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/blockv","slack":"","telegram":"https://t.me/block_v","twitter":"https://twitter.com/blockv_io","youtube":""}},{"symbol":"VEN","name":"Vechain","type":"ERC20","address":"0xD850942eF8811f2A866692A623011bDE52a462C1","ens_address":"","decimals":18,"website":"https://tokensale.vechain.com/en","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@vechain.com","url":""},"social":{"blog":"","chat":"http://u.wechat.com/MH_e7eabTidsPXiG842RsHM","facebook":"","forum":"","github":"https://github.com/vechain-team","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://vechainofficial.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"VENUS","name":"VENUS","type":"ERC20","address":"0xEbeD4fF9fe34413db8fC8294556BBD1528a4DAca","ens_address":"","decimals":3,"website":"http://venuscoin.net","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@venuscoin.net","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"https://bitcointalk.org/index.php?topic=2361864.msg24084012#msg24084012","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VERI","name":"Veritas","type":"ERC20","address":"0x8f3470A7388c05eE4e7AF3d01D8C722b0FF52374","ens_address":"","decimals":18,"website":"http://veritas.veritaseum.com/index.php","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"reggie@veritaseum.com%20","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VIB","name":"VIB","type":"ERC20","address":"0x2C974B2d0BA1716E644c1FC59982a89DDD2fF724","ens_address":"","decimals":18,"website":"https://www.viberate.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@viberate.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://viberateico.slack.com","telegram":"https://t.me/joinchat/F-zenkQffjbGY7YqqSQl1w","twitter":"","youtube":""}},{"symbol":"VIBE","name":"VIBE Coin","type":"ERC20","address":"0xe8ff5c9c75deb346acac493c463c8950be03dfba","ens_address":"","decimals":18,"website":"http://vibehub.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@vibehub.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/vibehubvr","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/VibeHub","slack":"https://join.slack.com/t/vibehub/shared_invite/MjExNDM5MTcwMjU3LTE0OTk4ODk2ODYtNGM1YmU1OGU3YQ","telegram":"","twitter":"https://twitter.com/VibeHubVR","youtube":""}},{"symbol":"VIBEX","name":"VIBEX Exchange Token","type":"ERC20","address":"0x882448f83d90b2bf477af2ea79327fdea1335d93","ens_address":"","decimals":18,"website":"https://vibehub.io/ico/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":"https://docs.google.com/forms/d/e/1FAIpQLSeFYeXPb9NtYTNskdGXoxGSm8TQo5qBw8PsW8Q68fsVGRgsQg/viewform"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/vibehubvr/","forum":"","github":"https://github.com/amack2u/VibeHub","gitter":"","instagram":"https://www.instagram.com/vibehub.io/","linkedin":"","reddit":"","slack":"https://goo.gl/uf6Tvh","telegram":"","twitter":"https://twitter.com/VibeHubVR","youtube":"https://www.youtube.com/channel/UCbZuYQJpz2G2x2Y2eIbw_UA"}},{"symbol":"VIEW","name":"Viewly","type":"ERC20","address":"0xF03f8D65BaFA598611C3495124093c56e8F638f0","ens_address":"viewtoken.eth","decimals":18,"website":"https://view.ly/","logo":{"src":"https://i.imgur.com/G285h1R.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"support@view.ly","url":"https://viewly.typeform.com/to/eGUK0a"},"social":{"blog":"https://blog.view.ly","chat":"https://discordapp.com/invite/MkTqjnG","facebook":"https://facebook.com/theviewly","forum":"https://bitcointalk.org/index.php?topic=2158676.0","github":"https://github.com/Viewly/","gitter":"","instagram":"https://instagram.com/view.ly","linkedin":"https://www.linkedin.com/company/11354197/","reddit":"https://www.reddit.com/r/viewly/","slack":"","telegram":"https://t.me/viewly","twitter":"https://twitter.com/officialviewly","youtube":""}},{"symbol":"VIT","name":"Vice Industry Token","type":"ERC20","address":"0x23b75Bc7AaF28e2d6628C3f424B3882F8f072a3c","ens_address":"","decimals":18,"website":"https://vicetoken.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/viceindustrytoken","chat":"","facebook":"https://www.facebook.com/vicetoken/","forum":"","github":"https://github.com/ViceIndustryToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/viceindustrytoken","twitter":"https://twitter.com/ViceToken","youtube":""}},{"symbol":"VIU","name":"VIU","type":"ERC20","address":"0x519475b31653e46d20cd09f9fdcf3b12bdacb4f5","ens_address":"","decimals":18,"website":"https://viuly.io","logo":{"src":"https://etherscan.io/token/images/viuly_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@viuly.com","url":""},"social":{"blog":"https://medium.com/@Viuly","chat":"","facebook":"https://www.facebook.com/viuly","forum":"https://bitcointalk.org/index.php?topic=2353646.0","github":"https://github.com/viuly","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Viuly","slack":"","telegram":"https://t.me/viulyofficial","twitter":"https://twitter.com/ViulyOfficial","youtube":""}},{"symbol":"VLD","name":"Valid","type":"ERC20","address":"0x922ac473a3cc241fd3a0049ed14536452d58d73c","ens_address":"","decimals":18,"website":"https://valid.global/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.valid.global/","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VOC","name":"VORMACOIN","type":"ERC20","address":"0xc3bc9eb71f75ec439a6b6c8e8b746fcf5b62f703","ens_address":"","decimals":18,"website":"https://vormacoin.io/","logo":{"src":"https://vormacoin.io/assets/images/logo/icon.png","width":"200","height":"150","ipfs_hash":""},"support":{"email":"info@vormacoin.io","url":""},"social":{"blog":"https://blog.vormacoin.com/","chat":"","facebook":"https://www.facebook.com/VormaCoin-421138531662966/?ref=br_rs","forum":"","github":"https://github.com/vormacoin","gitter":"","instagram":"https://www.instagram.com/vormacoin.io/","linkedin":"","reddit":"https://www.reddit.com/user/vormacoin","slack":"","telegram":"http://t.me/vormacoinVOC","twitter":"https://twitter.com/vormacoin","youtube":""}},{"symbol":"VOISE","name":"Voise","type":"ERC20","address":"0x83eEA00D838f92dEC4D1475697B9f4D3537b56E3","ens_address":"","decimals":8,"website":"https://voise.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@voise.it","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VRS","name":"Veros","type":"ERC20","address":"0xeDBaF3c5100302dCddA53269322f3730b1F0416d","ens_address":"","decimals":5,"website":"https://veros.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"VSL","name":"Vdice","type":"ERC20","address":"0x5c543e7AE0A1104f78406C340E9C64FD9fCE5170","ens_address":"","decimals":18,"website":"https://www.vdice.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://blog.vdice.io","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://vdice-slack-invite-page.stamplayapp.com","telegram":"","twitter":"","youtube":""}},{"symbol":"WaBi","name":"WaBi","type":"ERC20","address":"0x286BDA1413a2Df81731D4930ce2F862a35A609fE","ens_address":"","decimals":18,"website":"https://www.wacoin.io","logo":{"src":"https://etherscan.io/token/images/wacoin_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"","url":"support@wacoin.io"},"social":{"blog":"https://medium.com/@wabiico","chat":"","facebook":"https://www.facebook.com/wabiico","forum":"https://bitcointalk.org/index.php?topic=2038385.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/WabiToken","slack":"","telegram":"https://t.me/joinchat/GOTG3EIRK4fBEURKmiOYFg","twitter":"https://twitter.com/wabiico","youtube":""}},{"symbol":"WATT","name":"WorkChain App Token","type":"ERC20","address":"0x829A4cA1303383F1082B6B1fB937116e4b3b5605","ens_address":"","decimals":18,"website":"https://workchain.io/","logo":{"src":"https://workchain.io/downloads/workTOKEN/logo_128.png","width":"128","height":"128","ipfs_hash":""},"support":{"email":"ping@workchain.io","url":"https://help.workchain.io/"},"social":{"blog":"https://medium.com/workchain-io","chat":"","facebook":"https://www.facebook.com/workchain.io","forum":"https://bitcointalk.org/index.php?topic=4747371.0","github":"https://github.com/workchainio","gitter":"","instagram":"https://www.instagram.com/workchain.io/","linkedin":"https://www.linkedin.com/company/workchain-io/","reddit":"https://www.reddit.com/r/workchainio","slack":"","telegram":"https://t.me/workchainio","twitter":"https://twitter.com/workchain_io","youtube":"https://www.youtube.com/channel/UCA8M_FrBflu3ahdF0sBFPcA"}},{"symbol":"WAX","name":"WAX","type":"ERC20","address":"0x39Bb259F66E1C59d5ABEF88375979b4D20D98022","ens_address":"","decimals":8,"website":"https://wax.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@wax.io","url":""},"social":{"blog":"https://medium.com/wax-io","chat":"","facebook":"https://www.facebook.com/WAX.io.Community","forum":"","github":"https://github.com/waxio","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/WAX_io","slack":"","telegram":"https://t.me/waxtokenannoucements","twitter":"https://twitter.com/wax_io","youtube":"https://www.youtube.com/channel/UCQPwMpYKMDiudnw41QwliHQ"}},{"symbol":"WBA","name":"WeBetCrypto","type":"ERC20","address":"0x74951B677de32D596EE851A233336926e6A2cd09","ens_address":"","decimals":7,"website":"http://webetcrypto.io/wbc","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@webetcrypto.io","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/WBCrypto","forum":"https://bitcointalk.org/index.php?topic=2128992.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"https://twitter.com/webetcrypto","youtube":""}},{"symbol":"WCT","name":"WePower","type":"ERC20","address":"0x6a0a97e47d15aad1d132a1ac79a480e3f2079063","ens_address":"","decimals":18,"website":"https://wepower.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@wepower.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://wepower.network/slack","telegram":"https://t.me/Wepower","twitter":"","youtube":""}},{"symbol":"WETH","name":"WETH","type":"ERC20","address":"0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2","ens_address":"","decimals":18,"website":"https://weth.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@makerdao.com","url":"https://chat.makerdao.com"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WHEN","name":"WHEN Token","type":"ERC20","address":"0xf4fe95603881d0e07954fd7605e0e9a916e42c44","ens_address":"whentoken.eth","decimals":18,"website":"https://interface.whenhub.com/","logo":{"src":"https://interface.whenhub.com/img/shares/when-token-icon.png","width":"1024","height":"1024","ipfs_hash":""},"support":{"email":"support@whenhub.com","url":"https://whenhub.zendesk.com/hc/en-us/requests/new"},"social":{"blog":"https://www.whenhub.com/category/blog/","chat":"","facebook":"https://www.facebook.com/whenhub/","forum":"https://bitcointalk.org/index.php?topic=3168733.0","github":"https://github.com/WhenHub","gitter":"","instagram":"","linkedin":"https://www.linkedin.com/company/whenhub/","reddit":"https://www.reddit.com/r/WhenHub","slack":"","telegram":"https://t.me/WhenHubTokenSale","twitter":"https://twitter.com/WhenHub","youtube":""}},{"symbol":"WHO","name":"WhoHas","type":"ERC20","address":"0xe933c0Cd9784414d5F278C114904F5A84b396919","ens_address":"","decimals":18,"website":"https://whohas.io","logo":{"src":"https://whohas.io/wp-content/uploads/2018/02/blueEye_blackText.png","width":"552","height":"608","ipfs_hash":""},"support":{"email":"info@whohas.io","url":"https://whohas.io/#team"},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/WhoHas-2006052279409232","forum":"","github":"https://github.com/chrisbsd/whohas","gitter":"","instagram":"https://www.instagram.com/whohas_app","linkedin":"","reddit":"","slack":"https://whohas.slack.com","telegram":"","twitter":"https://twitter.com/WhoHas_App","youtube":""}},{"symbol":"WiC","name":"Wi Coin","type":"ERC20","address":"0x5e4ABE6419650CA839Ce5BB7Db422b881a6064bB","ens_address":"","decimals":18,"website":"https://www.cryptowi.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"admin@cryptowi.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/WiC-1411131028954062","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://join.slack.com/t/wictokensale/shared_invite/MjE2NzA4ODI0NDgyLTE1MDA4OTM3NzUtODEzZGY0YjFhYw","telegram":"https://t.me/joinchat/FLaoRUChXsc2PD_QCBziZQ","twitter":"https://twitter.com/WiC_Crypto","youtube":""}},{"symbol":"WIC","name":"WickNote","type":"ERC20","address":"0x62cd07d414ec50b68c7ecaa863a23d344f2d062f","ens_address":"","decimals":0,"website":"https://wicknote.com","logo":{"src":"http://wicknote.com/wicklogo-small.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"support@wicknote.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/wicknote/wicknote","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WILD","name":"WILD Token","type":"ERC20","address":"0xD3C00772B24D997A812249ca637a921e81357701","ens_address":"","decimals":18,"website":"http://www.wildcrypto.com","logo":{"src":"http://wildtoken.com/wp-content/uploads/2017/12/WildCrypto-Logo-Only-copy-300x275.png","width":"","height":"","ipfs_hash":""},"support":{"email":"info@wildcrypto.com","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/WildCrypto","forum":"","github":"https://github.com/WildCryptoICO/Wild-Crypto-Token","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/user/WildCrypto","slack":"","telegram":"https://t.me/joinchat/GJ80yE8A1_ZuwubD_jExjg","twitter":"https://twitter.com/WildCrypto","youtube":"https://www.youtube.com/channel/UCY0-r0TNdZ95abuydyTC19Q"}},{"symbol":"WINGS","name":"WINGS","type":"ERC20","address":"0x667088b212ce3d06a1b553a7221E1fD19000d9aF","ens_address":"","decimals":18,"website":"https://wings.ai","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@url.ai","url":"https://hi.wings.ai"},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WMK","name":"WemarkToken","type":"ERC20","address":"0xbfbe5332f172d77811bc6c272844f3e54a7b23bb","ens_address":"","decimals":18,"website":"https://www.wemark.com","logo":{"src":"https://cdn.wemark.com/wmk-logo-250.png","width":"250","height":"250","ipfs_hash":""},"support":{"email":"support@wemark.com","url":""},"social":{"blog":"https://medium.com/wemark-stories","chat":"","facebook":"https://www.facebook.com/WemarkOfficial/","forum":"","github":"https://github.com/WemarkSource","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/Wemark/","slack":"","telegram":"https://t.me/wemark","twitter":"https://twitter.com/@_wemark","youtube":"https://www.youtube.com/channel/UCKIxNl0HhoTWshUnrBL70Og"}},{"symbol":"WNK","name":"Woonk","type":"ERC20","address":"0xd73A66B8FB26Be8B0AcD7c52Bd325054Ac7d468b","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WOLK","name":"WOLK","type":"ERC20","address":"0x728781E75735dc0962Df3a51d7Ef47E798A7107E","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WOLK","name":"Wolk Token","type":"ERC20","address":"0xF6B55acBBC49f4524Aa48D19281A9A77c54DE10f","ens_address":"","decimals":18,"website":"https://www.wolk.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"services@wolk.com","url":""},"social":{"blog":"https://blog.wolk.com","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/wolktoken","slack":"","telegram":"https://t.me/joinchat/GkePIg2-n4y5VQn4epAQOw","twitter":"https://twitter.com/wolkinc","youtube":""}},{"symbol":"WPR","name":"WePower Token","type":"ERC20","address":"0x4CF488387F035FF08c371515562CBa712f9015d4","ens_address":"","decimals":18,"website":"https://wepower.network","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"team@wepower.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/WePowerNetwork","twitter":"","youtube":""}},{"symbol":"WRK","name":"WorkCoin","type":"ERC20","address":"0x71e8d74ff1c923e369d0e70dfb09866629c4dd35","ens_address":"","decimals":18,"website":"https://workcoin.net/","logo":{"src":"https://workcoin.net/images/workcoin_logo.svg","width":"","height":"","ipfs_hash":""},"support":{"email":"support@workcoin.net","url":""},"social":{"blog":"https://medium.com/workcoin","chat":"","facebook":"https://www.facebook.com/workcoingroup/","forum":"","github":"https://github.com/TMWorkCoin","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"http://t.me/workcoin","twitter":"https://twitter.com/realWorkCoin","youtube":""}},{"symbol":"WTC","name":"Walton","type":"ERC20","address":"0xb7cb1c96db6b22b0d3d9536e0108d062bd488f74","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"WYS","name":"wystoken","type":"ERC20","address":"0xd8950fDeaa10304B7A7Fd03a2FC66BC39f3c711a","ens_address":"","decimals":18,"website":"https://www.wystoken.org","logo":{"src":"https://ibb.co/hmP1vo","width":"150","height":"150","ipfs_hash":""},"support":{"email":"contact@wysker.org","url":"https://www.wysker.com"},"social":{"blog":"https://bitcointalk.org/index.php?topic=2443093.0","chat":"","facebook":"https://www.facebook.com/wysker","forum":"","github":"https://github.com/wysker","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/wysker/","slack":"","telegram":"https://t.me/wysker","twitter":"https://twitter.com/wysker_","youtube":"https://www.youtube.com/channel/UCjmCaHP6hbiJzQ_fKYzpCkw"}},{"symbol":"WYV","name":"WyvernToken","type":"ERC20","address":"0x056017c55aE7AE32d12AeF7C679dF83A85ca75Ff","ens_address":"wyverntoken.eth","decimals":18,"website":"https://projectwyvern.com","logo":{"src":"https://raw.githubusercontent.com/ProjectWyvern/wyvern-branding/master/logo/logo-square-red-transparent-28x28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"team@projectwyvern.com","url":"https://projectwyvern.com/contact"},"social":{"blog":"https://blog.projectwyvern.com","chat":"https://riot.im/app/#/room/#projectwyvern:matrix.org","facebook":"https://www.facebook.com/WyvernExchange","forum":"","github":"https://github.com/ProjectWyvern","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/projectwyvern","slack":"","telegram":"","twitter":"https://twitter.com/WyvernExchange","youtube":""}},{"symbol":"X8X","name":"X8X","type":"ERC20","address":"0x910Dfc18D6EA3D6a7124A6F8B5458F281060fa4c","ens_address":"","decimals":18,"website":"https://x8currency.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@x8currency.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://x8currency.herokuapp.com","telegram":"https://t.me/joinchat/DLdRTA4n4K-w1Fsn6v3oCQ","twitter":"https://twitter.com/x8currency","youtube":""}},{"symbol":"XAUR","name":"Xaurum","type":"ERC20","address":"0x4DF812F6064def1e5e029f1ca858777CC98D2D81","ens_address":"","decimals":8,"website":"http://www.xaurum.org","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XBP","name":"BlitzPredict","type":"ERC20","address":"0x28dee01d53fed0edf5f6e310bf8ef9311513ae40","ens_address":"","decimals":18,"website":"https://www.blitzpredict.io","logo":{"src":"https://s3.amazonaws.com/blitzpredict-public/MEW+Logo.png","width":"250","height":"250","ipfs_hash":""},"support":{"email":"mew@blitzpredict.io","url":""},"social":{"blog":"https://medium.com/@BlitzPredict1","chat":"","facebook":"","forum":"","github":"https://github.com/blitzpredict","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/BlitzPredict/","slack":"","telegram":"https://t.me/BlitzPredict","twitter":"https://twitter.com/@blitzpredict","youtube":""}},{"symbol":"XCC","name":"CoinCrowd","type":"ERC20","address":"0x4d829f8c92a6691c56300d020c9e0db984cfe2ba","ens_address":"coincrowd.eth","decimals":18,"website":"https://www.coincrowd.it","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"staff@coincrowd.it","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/coincrowd-it","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/coincrowd","twitter":"https://twitter.com/coincrowdit","youtube":""}},{"symbol":"XFS","name":"Fanship","type":"ERC20","address":"0x16aF5bfb4Ae7E475b9aDC3Bf5Cb2f1E6a50d7940","ens_address":"","decimals":8,"website":"http://fanship.world/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XGG","name":"Going Gems","type":"ERC20","address":"0xf6b6aa0ef0f5edc2c1c5d925477f97eaf66303e7","ens_address":"","decimals":8,"website":"https://www.going-gems.com","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"support@going-gems.com","url":""},"social":{"blog":"https://www.going-gems.com/#blog","chat":"","facebook":"https://web.facebook.com/Going-Gems-307192689810299/","forum":"","github":"https://github.com/GoingGems","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://goinggemsholding.slack.com","telegram":"https://t.me/GoingGemsChannel","twitter":"https://twitter.com/GoingGems","youtube":""}},{"symbol":"XGM","name":"XGM","type":"ERC20","address":"0x533ef0984b2FAA227AcC620C67cce12aA39CD8CD","ens_address":"","decimals":8,"website":"https://www.xaurum.org/gamma","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"gamma@xaurum.pro","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/xaurumofficial","forum":"https://bitcointalk.org/index.php?topic=2057494.0","github":"","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/xaurum","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XGT","name":"XGT","type":"ERC20","address":"0x30f4A3e0aB7a76733D8b60b89DD93c3D0b4c9E2f","ens_address":"","decimals":18,"website":"https://cryptogene.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"https://medium.com/@cryptogene","chat":"","facebook":"https://www.facebook.com/cryptogenec","forum":"","github":"https://github.com/CryptogeneProject/CryptogeneToken","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/Cryptogene","twitter":"https://twitter.com/cryptogenegroup","youtube":""}},{"symbol":"XID","name":"XID","type":"ERC20","address":"0xB110eC7B1dcb8FAB8dEDbf28f53Bc63eA5BEdd84","ens_address":"","decimals":8,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XNK","name":"Ink Protocol","type":"ERC20","address":"0xBC86727E770de68B1060C91f6BB6945c73e10388","ens_address":"","decimals":18,"website":"https://paywithink.com","logo":{"src":"https://etherscan.io/token/images/paywithink_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"admin@paywithink.com","url":""},"social":{"blog":"http://medium.com/@paywithink","chat":"","facebook":"","forum":"","github":"https://github.com/InkProtocol/","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/paywithink","twitter":"https://twitter.com/PayWithInk","youtube":"https://www.youtube.com/channel/UC7bcqPWiNGxdXI3Wh3V68vw"}},{"symbol":"XNN","name":"XENON","type":"ERC20","address":"0xab95e915c123fded5bdfb6325e35ef5515f1ea69","ens_address":"","decimals":18,"website":"https://xenon.network","logo":{"src":"https://etherscan.io/token/images/xenon_28.png","width":28,"height":28,"ipfs_hash":""},"support":{"email":"contact@xenon.network","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://join.slack.com/t/xenonnetwork/shared_invite/enQtMjQ1NzQ2MTQ1OTA2LWI5MjkzZWQxNzRmYzNmOGE5Nzc2MWYyN2NjM2Y2MTZjNjA2MDUyNmI5ZGFkNjU3YzE5NGVjNjA0YzkzMDk5ZGU","telegram":"","twitter":"https://twitter.com/XenonNet","youtube":""}},{"symbol":"XNT","name":"XNT","type":"ERC20","address":"0x572e6f318056ba0c5d47a422653113843d250691","ens_address":"","decimals":0,"website":"https://exante.eu","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"nt@exante.eu","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XPAT","name":"Pangea Arbitration Token","type":"ERC20","address":"0xBB1fA4FdEB3459733bF67EbC6f893003fA976a82","ens_address":"","decimals":18,"website":"https://bitnation.co","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"usersupport@bitnation.co","url":""},"social":{"blog":"","chat":"","facebook":"https://www.facebook.com/MyBitnation/","forum":"","github":"https://github.com/Bit-Nation/","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XRL","name":"XRL","type":"ERC20","address":"0xB24754bE79281553dc1adC160ddF5Cd9b74361a4","ens_address":"","decimals":9,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"XSC","name":"XSC","type":"ERC20","address":"0x0F513fFb4926ff82D7F60A05069047AcA295C413","ens_address":"","decimals":18,"website":"http://crowdstart.capital","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@crowdstart.capital","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"http://bit.ly/2zMX0hm","telegram":"","twitter":"","youtube":""}},{"symbol":"YEED","name":"YGGDRASH","type":"ERC20","address":"0xca2796f9f61dc7b238aab043971e49c6164df375","ens_address":"","decimals":18,"website":"https://yggdrash.io","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"YUPIE","name":"YUPIE","type":"ERC20","address":"0x0F33bb20a282A7649C7B3AFf644F084a9348e933","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"tiboyv@seznam.cz","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"https://goalman.slack.com","telegram":"","twitter":"","youtube":""}},{"symbol":"ZAP","name":"ZAP","type":"ERC20","address":"0x6781a0f84c7e9e846dcb84a9a5bd49333067b104","ens_address":"","decimals":18,"website":"https://zap.store","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"hello@zapproject.org","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/zapproject","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ZIL","name":"Zilliqa","type":"ERC20","address":"0x05f4a42e251f2d52b8ed15E9FEdAacFcEF1FAD27","ens_address":"","decimals":12,"website":"https://www.zilliqa.com/","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"enquiry@zilliqa.com","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"https://github.com/zilliqa","gitter":"","instagram":"","linkedin":"","reddit":"https://www.reddit.com/r/zilliqa/","slack":"","telegram":"https://t.me/zilliqa","twitter":"https://twitter.com/zilliqa","youtube":"https://www.youtube.com/channel/UCvinnFbf0u71cajoxKcfZIQ"}},{"symbol":"ZMN","name":"ZMINE","type":"ERC20","address":"0x554ffc77f4251a9fb3c0e3590a6a205f8d4e067d","ens_address":"","decimals":18,"website":"https://www.zmine.com","logo":{"src":"https://zmine.com/img/logo_300x300.png","width":"300","height":"300","ipfs_hash":""},"support":{"email":"support@zmine.com","url":""},"social":{"blog":"https://zmine.com/blog/en/","chat":"https://t.me/zminegroupchat","facebook":"https://www.facebook.com/zmineofficial","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/zmineofficial","twitter":"","youtube":""}},{"symbol":"ZRX","name":"0x Project","type":"ERC20","address":"0xE41d2489571d322189246DaFA5ebDe1F4699F498","ens_address":"","decimals":18,"website":"","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"","url":""},"social":{"blog":"","chat":"","facebook":"","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"","twitter":"","youtube":""}},{"symbol":"ZST","name":"Zeus Exchange","type":"ERC20","address":"0xe386b139ed3715ca4b18fd52671bdcea1cdfe4b1","ens_address":"","decimals":8,"website":"http://zeus.exchange","logo":{"src":"","width":"","height":"","ipfs_hash":""},"support":{"email":"info@zeus.exchange","url":""},"social":{"blog":"","chat":"","facebook":"https://facebook.com/Zeus-Exchange-158864051329242","forum":"","github":"","gitter":"","instagram":"","linkedin":"","reddit":"","slack":"","telegram":"https://t.me/joinchat/B8kRS0IMUdyEVi9CxH7Djw","twitter":"https://twitter.com/ExchangeZeus","youtube":""}}] \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index e4478bc51..b4c6dac0b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -434,12 +434,6 @@ "graceful-readlink": "1.0.1" } }, - "component-type": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-type/-/component-type-1.2.1.tgz", - "integrity": "sha1-ikeQFwAjjk/DIml3EjAibyS0Fak=", - "dev": true - }, "concat-map": { "version": "0.0.1", "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", @@ -887,12 +881,6 @@ "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", "dev": true }, - "eivindfjeldstad-dot": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/eivindfjeldstad-dot/-/eivindfjeldstad-dot-0.0.1.tgz", - "integrity": "sha1-IvyXa/rzBuCDmjHbjoITSA+vuJM=", - "dev": true - }, "elliptic": { "version": "6.4.1", "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.4.1.tgz", @@ -2964,12 +2952,6 @@ "mime-types": "2.1.19" } }, - "typecast": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/typecast/-/typecast-0.0.1.tgz", - "integrity": "sha1-//t13La98d744pO2tuiT1sHtGd4=", - "dev": true - }, "typedarray": { "version": "0.0.6", "resolved": "https://registry.npmjs.org/typedarray/-/typedarray-0.0.6.tgz", @@ -3090,16 +3072,10 @@ "integrity": "sha512-yXJmeNaw3DnnKAOKJE51sL/ZaYfWJRl1pK9dr19YFCu0ObS231AB1/LbqTKRAQ5kw8A90rA6fr4riOUpTZvQZA==", "dev": true }, - "validate": { - "version": "4.5.1", - "resolved": "https://registry.npmjs.org/validate/-/validate-4.5.1.tgz", - "integrity": "sha512-ZdfYYgJDVrx4oxamyW0ynIoW8jIAoAeb8/pSu9XF+WCZueGogUMU7cGYHVUiWAJDc7RO3QR/EBhhkP46Wn9Hng==", - "dev": true, - "requires": { - "component-type": "1.2.1", - "eivindfjeldstad-dot": "0.0.1", - "typecast": "0.0.1" - } + "validate.js": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/validate.js/-/validate.js-0.12.0.tgz", + "integrity": "sha512-/x2RJSvbqEyxKj0RPN4xaRquK+EggjeVXiDDEyrJzsJogjtiZ9ov7lj/svVb4DM5Q5braQF4cooAryQbUwOxlA==" }, "vary": { "version": "1.1.2", diff --git a/package.json b/package.json index da970eb0f..b8274ab65 100644 --- a/package.json +++ b/package.json @@ -9,7 +9,8 @@ "build": "node createFiles.js", "lint": "prettier --config ./.prettierrc --ignore-path ./.prettierignore --write '{src,dist}/**/*.json' '!{dist}/**/**/*.min.json' './{js,json}' '!./node_modules'", "compile": "npm run build; npm run lint", - "precommit": "pretty-quick --staged" + "precommit": "pretty-quick --staged", + "validate": "node checkContract.js; node checkToken.js;" }, "license": "ISC", "bugs": { @@ -20,10 +21,10 @@ "eslint-plugin-json": "^1.2.1", "husky": "^0.14.3", "pretty-quick": "^1.6.0", - "validate": "^4.5.1", "web3": "^1.0.0-beta.35" }, "dependencies": { - "prettier": "^1.14.2" + "prettier": "^1.14.2", + "validate.js": "^0.12.0" } } diff --git a/src/contracts/akroma/0x0000000000000000000000000000000000000000.json b/src/contracts/akroma/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/akroma/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/akroma/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/clo/0x0000000000000000000000000000000000000000.json b/src/contracts/clo/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/clo/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/clo/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/egem/0x0000000000000000000000000000000000000000.json b/src/contracts/egem/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/egem/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/egem/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/ella/0x0000000000000000000000000000000000000000.json b/src/contracts/ella/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/ella/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/ella/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/eosc/0x0000000000000000000000000000000000000000.json b/src/contracts/eosc/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/eosc/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/eosc/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/eth/0x8d12a197cb00d4747a1fe03395095ce2a5cc6819.json b/src/contracts/eth/0x8d12a197cb00d4747a1fe03395095ce2a5cc6819.json index 312a6caaf..41fa21b5f 100644 --- a/src/contracts/eth/0x8d12a197cb00d4747a1fe03395095ce2a5cc6819.json +++ b/src/contracts/eth/0x8d12a197cb00d4747a1fe03395095ce2a5cc6819.json @@ -1,6 +1,7 @@ { "name": "EtherDelta (02/09/2017)", "address": "0x8d12A197cB00D4747a1fe03395095ce2A5CC6819", + "comment": "", "abi": [ { "constant": false, diff --git a/src/contracts/eth/0x931684139f756C24eC0731E9F74FE50e5548dDeF.json b/src/contracts/eth/0x931684139f756C24eC0731E9F74FE50e5548dDeF.json index 7c96d2e27..efde55721 100644 --- a/src/contracts/eth/0x931684139f756C24eC0731E9F74FE50e5548dDeF.json +++ b/src/contracts/eth/0x931684139f756C24eC0731E9F74FE50e5548dDeF.json @@ -1,6 +1,7 @@ { "name": "URB", "address": "0x931684139f756C24eC0731E9F74FE50e5548dDeF", + "comment": "", "abi": [ { "constant": true, diff --git a/src/contracts/eth/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200.json b/src/contracts/eth/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200.json index d070ca205..64dd3b9ab 100644 --- a/src/contracts/eth/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200.json +++ b/src/contracts/eth/0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200.json @@ -1,6 +1,7 @@ { "name": "Telex", "address": "0xb3616550aBc8AF79c7A5902DEF9Efa3bC9A95200", + "comment": "", "abi": [ { "constant": true, diff --git a/src/contracts/etho/0x0000000000000000000000000000000000000000.json b/src/contracts/etho/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/etho/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/etho/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/etsc/0x0000000000000000000000000000000000000000.json b/src/contracts/etsc/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/etsc/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/etsc/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/exp/0x0000000000000000000000000000000000000000.json b/src/contracts/exp/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/exp/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/exp/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/go/0x0000000000000000000000000000000000000000.json b/src/contracts/go/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/go/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/go/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/music/0x0000000000000000000000000000000000000000.json b/src/contracts/music/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/music/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/music/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/pirl/0x0000000000000000000000000000000000000000.json b/src/contracts/pirl/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/pirl/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/pirl/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/poa/0x0000000000000000000000000000000000000000.json b/src/contracts/poa/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/poa/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/poa/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/tomo/0x0000000000000000000000000000000000000000.json b/src/contracts/tomo/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/tomo/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/tomo/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/contracts/ubq/0x0000000000000000000000000000000000000000.json b/src/contracts/ubq/0x0000000000000000000000000000000000000000.json index bac0d3ad9..60b05394d 100644 --- a/src/contracts/ubq/0x0000000000000000000000000000000000000000.json +++ b/src/contracts/ubq/0x0000000000000000000000000000000000000000.json @@ -2,5 +2,212 @@ "name": "TEST", "address": "0x0000000000000000000000000000000000000000", "comment": "", - "abi": [] + "abi": [ + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "sale", + "outputs": [ + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "address" }, + { "name": "", "type": "uint256" }, + { "name": "", "type": "uint256" } + ], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "invalidate", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "cancel", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [], + "name": "registrar", + "outputs": [{ "name": "", "type": "address" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionStarted", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "finish", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [], + "name": "withdraw", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "minimumBid", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "bid", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "auctionEnds", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isBuyable", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "isAuction", + "outputs": [{ "name": "", "type": "bool" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "_price", "type": "uint256" }, + { "name": "reserve", "type": "uint256" }, + { "name": "referrer", "type": "address" } + ], + "name": "offer", + "outputs": [], + "payable": false, + "stateMutability": "nonpayable", + "type": "function" + }, + { + "constant": false, + "inputs": [ + { "name": "_name", "type": "string" }, + { "name": "bidReferrer", "type": "address" } + ], + "name": "buy", + "outputs": [], + "payable": true, + "stateMutability": "payable", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "addr", "type": "address" }], + "name": "balance", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "constant": true, + "inputs": [{ "name": "_name", "type": "string" }], + "name": "price", + "outputs": [{ "name": "", "type": "uint256" }], + "payable": false, + "stateMutability": "view", + "type": "function" + }, + { + "inputs": [{ "name": "_registry", "type": "address" }], + "payable": false, + "stateMutability": "nonpayable", + "type": "constructor" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "price", "type": "uint256" }, + { "indexed": false, "name": "reserve", "type": "uint256" } + ], + "name": "Offer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "bidder", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "bid", "type": "uint256" } + ], + "name": "Bid", + "type": "event" + }, + { + "anonymous": false, + "inputs": [ + { "indexed": true, "name": "seller", "type": "address" }, + { "indexed": true, "name": "buyer", "type": "address" }, + { "indexed": false, "name": "name", "type": "string" }, + { "indexed": false, "name": "value", "type": "uint256" } + ], + "name": "Transfer", + "type": "event" + }, + { + "anonymous": false, + "inputs": [{ "indexed": false, "name": "name", "type": "string" }], + "name": "Cancel", + "type": "event" + } + ] } diff --git a/src/tokens/ella/0x991e7fe4b05f2b3db1d788e705963f5d647b0044.json b/src/tokens/ella/0x991e7fe4b05f2b3db1d788e705963f5d647b0044.json index f4188da73..9e1401dff 100644 --- a/src/tokens/ella/0x991e7fe4b05f2b3db1d788e705963f5d647b0044.json +++ b/src/tokens/ella/0x991e7fe4b05f2b3db1d788e705963f5d647b0044.json @@ -1,7 +1,7 @@ { "symbol": "MINING", "name": "MINING", - "type": "", + "type": "ERC20", "address": "0x991e7fe4b05f2b3db1d788e705963f5d647b0044", "ens_address": "", "decimals": 18, diff --git a/src/tokens/etc/0x6ADa6F48C815689502C43eC1a59F1b5DD3C04E1F.json b/src/tokens/etc/0x6ADa6F48C815689502C43eC1a59F1b5DD3C04E1F.json index b3d405a73..596bc4f25 100644 --- a/src/tokens/etc/0x6ADa6F48C815689502C43eC1a59F1b5DD3C04E1F.json +++ b/src/tokens/etc/0x6ADa6F48C815689502C43eC1a59F1b5DD3C04E1F.json @@ -1,8 +1,9 @@ { "symbol": "UNV", + "name": "UniversalCoin", + "type": "ERC20", "address": "0x6ADa6F48C815689502C43eC1a59F1b5DD3C04E1F", "decimals": 18, - "name": "UniversalCoin", "ens_address": "", "website": "https://universalcoin.io/", "logo": { @@ -11,7 +12,7 @@ "height": "256", "ipfs_hash": "" }, - "support": { "info@universalcoin.io": "", "url": "" }, + "support": { "email": "info@universalcoin.io", "url": "" }, "social": { "blog": "", "chat": "", diff --git a/src/tokens/eth/0x0a9a9ce600d08bf9b76f49fa4e7b38a67ebeb1e6.json b/src/tokens/eth/0x0a9a9ce600d08bf9b76f49fa4e7b38a67ebeb1e6.json index 95d7fc51d..0972789e2 100644 --- a/src/tokens/eth/0x0a9a9ce600d08bf9b76f49fa4e7b38a67ebeb1e6.json +++ b/src/tokens/eth/0x0a9a9ce600d08bf9b76f49fa4e7b38a67ebeb1e6.json @@ -12,7 +12,7 @@ "height": "286", "ipfs_hash": "" }, - "support": { "email": "admin@growchain.net" }, + "support": { "email": "admin@growchain.net", "url": "" }, "social": { "blog": "", "chat": "", diff --git a/src/tokens/eth/0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6.json b/src/tokens/eth/0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6.json index a0446a75d..96e2286c9 100644 --- a/src/tokens/eth/0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6.json +++ b/src/tokens/eth/0x0e8d6b471e332f140e7d9dbb99e5e3822f728da6.json @@ -18,6 +18,7 @@ }, "social": { "blog": "https://medium.com/theabyss", + "chat": "", "discord": "https://discord.theabyss.com", "facebook": "https://www.facebook.com/theabyss", "forum": "https://bitcointalk.theabyss.com", @@ -29,6 +30,6 @@ "slack": "", "telegram": "https://t.me/theabyss", "twitter": "https://twitter.com/theabyss", - "vimeo": "https://www.vimeo.com/theabyss" + "youtube": "" } } diff --git a/src/tokens/eth/0x386faa4703a34a7fdb19bec2e14fd427c9638416.json b/src/tokens/eth/0x386faa4703a34a7fdb19bec2e14fd427c9638416.json index 88e37749d..63298e454 100644 --- a/src/tokens/eth/0x386faa4703a34a7fdb19bec2e14fd427c9638416.json +++ b/src/tokens/eth/0x386faa4703a34a7fdb19bec2e14fd427c9638416.json @@ -17,7 +17,7 @@ "blog": "https://medium.com/@doBETacceptBET", "chat": "https://bitcointalk.org/index.php?topic=1958953.0", "facebook": "https://www.facebook.com/betcoin.dobetacceptbet", - "fourm": "https://bitcointalk.org/index.php?topic=1958953.0", + "forum": "https://bitcointalk.org/index.php?topic=1958953.0", "github": "https://github.com/dobetacceptbet", "gitter": "", "instagram": "", diff --git a/src/tokens/eth/0x45edb535942a8c84d9f4b5d37e1b25f91ea4804c.json b/src/tokens/eth/0x45edb535942a8c84d9f4b5d37e1b25f91ea4804c.json index 73031c964..d70d0a354 100644 --- a/src/tokens/eth/0x45edb535942a8c84d9f4b5d37e1b25f91ea4804c.json +++ b/src/tokens/eth/0x45edb535942a8c84d9f4b5d37e1b25f91ea4804c.json @@ -12,7 +12,7 @@ "height": "", "ipfs_hash": "" }, - "support": { "email": "support@radioyo.fm" }, + "support": { "email": "support@radioyo.fm", "url": "" }, "social": { "blog": "", "chat": "", diff --git a/src/tokens/eth/0x829a4ca1303383f1082b6b1fb937116e4b3b5605.json b/src/tokens/eth/0x829a4ca1303383f1082b6b1fb937116e4b3b5605.json index 137358368..8c5f925f9 100644 --- a/src/tokens/eth/0x829a4ca1303383f1082b6b1fb937116e4b3b5605.json +++ b/src/tokens/eth/0x829a4ca1303383f1082b6b1fb937116e4b3b5605.json @@ -1,32 +1,34 @@ { - "symbol": "WATT", - "name": "WorkChain App Token", - "type": "ERC20", - "address": "0x829A4cA1303383F1082B6B1fB937116e4b3b5605", - "ens_address": "", - "decimals": 18, - "website": "https://workchain.io/", - "logo": { - "src": "https://workchain.io/downloads/workTOKEN/logo_128.png", - "width": "128", - "height": "128", - "ipfs_hash": "" - }, - "support": { "email": "ping@workchain.io", "url": "https://help.workchain.io/" }, - "social": { - "blog": "https://medium.com/workchain-io", - "chat": "", - "facebook": "https://www.facebook.com/workchain.io", - "forum": "https://bitcointalk.org/index.php?topic=4747371.0", - "github": "https://github.com/workchainio", - "gitter": "", - "instagram": "https://www.instagram.com/workchain.io/", - "linkedin": "https://www.linkedin.com/company/workchain-io/", - "reddit": "https://www.reddit.com/r/workchainio", - "slack": "", - "telegram": "https://t.me/workchainio", - "twitter": "https://twitter.com/workchain_io", - "youtube": "https://www.youtube.com/channel/UCA8M_FrBflu3ahdF0sBFPcA" - } + "symbol": "WATT", + "name": "WorkChain App Token", + "type": "ERC20", + "address": "0x829A4cA1303383F1082B6B1fB937116e4b3b5605", + "ens_address": "", + "decimals": 18, + "website": "https://workchain.io/", + "logo": { + "src": "https://workchain.io/downloads/workTOKEN/logo_128.png", + "width": "128", + "height": "128", + "ipfs_hash": "" + }, + "support": { + "email": "ping@workchain.io", + "url": "https://help.workchain.io/" + }, + "social": { + "blog": "https://medium.com/workchain-io", + "chat": "", + "facebook": "https://www.facebook.com/workchain.io", + "forum": "https://bitcointalk.org/index.php?topic=4747371.0", + "github": "https://github.com/workchainio", + "gitter": "", + "instagram": "https://www.instagram.com/workchain.io/", + "linkedin": "https://www.linkedin.com/company/workchain-io/", + "reddit": "https://www.reddit.com/r/workchainio", + "slack": "", + "telegram": "https://t.me/workchainio", + "twitter": "https://twitter.com/workchain_io", + "youtube": "https://www.youtube.com/channel/UCA8M_FrBflu3ahdF0sBFPcA" } - \ No newline at end of file +} diff --git a/src/tokens/eth/0x931684139f756C24eC0731E9F74FE50e5548dDeF.json b/src/tokens/eth/0x931684139f756C24eC0731E9F74FE50e5548dDeF.json index df72d42e0..c2cc83003 100644 --- a/src/tokens/eth/0x931684139f756C24eC0731E9F74FE50e5548dDeF.json +++ b/src/tokens/eth/0x931684139f756C24eC0731E9F74FE50e5548dDeF.json @@ -1,6 +1,7 @@ { "symbol": "URB", "address": "0x931684139f756C24eC0731E9F74FE50e5548dDeF", + "type": "ERC20", "decimals": 18, "name": "Urbit Data", "ens_address": "urbitdata.eth", diff --git a/src/tokens/eth/0xb3616550abc8af79c7a5902def9efa3bc9a95200.json b/src/tokens/eth/0xb3616550abc8af79c7a5902def9efa3bc9a95200.json index 4d83c484b..fb2862242 100644 --- a/src/tokens/eth/0xb3616550abc8af79c7a5902def9efa3bc9a95200.json +++ b/src/tokens/eth/0xb3616550abc8af79c7a5902def9efa3bc9a95200.json @@ -11,7 +11,7 @@ "width": "656px", "height": "656px", "ipfs_hash": "" - }, + }, "support": { "email": "info@telexai.com", "url": "https://t.me/telexai" diff --git a/src/tokens/eth/0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838.json b/src/tokens/eth/0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838.json index 81f748976..bf51b0baf 100644 --- a/src/tokens/eth/0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838.json +++ b/src/tokens/eth/0xe530441f4f73bdb6dc2fa5af7c3fc5fd551ec838.json @@ -12,7 +12,7 @@ "height": "120", "ipfs_hash": "" }, - "support": { "email": "info@gselab.org" }, + "support": { "email": "info@gselab.org", "url": "" }, "social": { "blog": "", "chat": "",