ETH Price: $3,257.00 (-2.31%)
 

Overview

Max Total Supply

200,000,000 PMD

Holders

538

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,858.36079721 PMD

Value
$0.00
0xdd75e9246c38993bb6c0a6e864c75e26a5ce4e03
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
ProMind

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2021-05-07
*/

pragma solidity ^0.5.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP. Does not include
 * the optional functions; to access them see {ERC20Detailed}.
 */
interface ERC20Interface {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

contract ERC20Base is ERC20Interface {
    // Empty internal constructor, to prevent people from mistakenly deploying
    // an instance of this contract, which should be used via inheritance.
    // constructor () internal { }
    // solhint-disable-previous-line no-empty-blocks

    mapping (address => uint256) public _balances;
    mapping (address => mapping (address => uint256)) public _allowances;
    uint256 public _totalSupply;

    function transfer(address _to, uint256 _value) public returns (bool success) {
        //Default assumes totalSupply can't be over max (2^256 - 1).
        //If your token leaves out totalSupply and can issue more tokens as time goes on, you need to check if it doesn't wrap.
        //Replace the if with this one instead.
        //if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (_balances[msg.sender] >= _value && _value > 0) {
            _balances[msg.sender] -= _value;
            _balances[_to] += _value;
            emit Transfer(msg.sender, _to, _value);
            return true;
        } else { 
            return false;
        }
    }

    function transferFrom(address _from, address _to, uint256 _value) public returns (bool success) {
        //same as above. Replace this line with the following if you want to protect against wrapping uints.
        //if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
        if (_balances[_from] >= _value && _allowances[_from][msg.sender] >= _value && _value > 0) {
            _balances[_to] += _value;
            _balances[_from] -= _value;
            _allowances[_from][msg.sender] -= _value;
            emit Transfer(_from, _to, _value);
            return true;
        } else {
            return false;
        }
    }

    function balanceOf(address _owner) public view returns (uint256 balance) {
        return _balances[_owner];
    }

    function approve(address _spender, uint256 _value) public returns (bool success) {
        _allowances[msg.sender][_spender] = _value;
        emit Approval(msg.sender, _spender, _value);
        return true;
    }

    function allowance(address _owner, address _spender) public view returns (uint256 remaining) {
      return _allowances[_owner][_spender];
    }
    
    function totalSupply() public view returns (uint256 total) {
        return _totalSupply;
    }
}

contract ProMind is ERC20Base {

    string private _name;
    string private _symbol;
    uint8 private _decimals;
    
    constructor (string memory name, string memory symbol, uint8 decimals, uint256 initialSupply) public payable {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
        _totalSupply = initialSupply *  10  ** uint256(decimals);
        _balances[msg.sender] = initialSupply  *  10  ** uint256(decimals);
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"},{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_balances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"_totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"remaining","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"total","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"success","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040526040516108ff3803806108ff8339818101604052608081101561002657600080fd5b810190808051604051939291908464010000000082111561004657600080fd5b90830190602082018581111561005b57600080fd5b825164010000000081118282018810171561007557600080fd5b82525081516020918201929091019080838360005b838110156100a257818101518382015260200161008a565b50505050905090810190601f1680156100cf5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156100f257600080fd5b90830190602082018581111561010757600080fd5b825164010000000081118282018810171561012157600080fd5b82525081516020918201929091019080838360005b8381101561014e578181015183820152602001610136565b50505050905090810190601f16801561017b5780820380516001836020036101000a031916815260200191505b5060409081526020828101519290910151865192945092506101a2916003918701906101ee565b5082516101b69060049060208601906101ee565b506005805460ff90931660ff1990931683179055600a9190910a02600281905533600090815260208190526040902055506102899050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061022f57805160ff191683800117855561025c565b8280016001018555821561025c579182015b8281111561025c578251825591602001919060010190610241565b5061026892915061026c565b5090565b61028691905b808211156102685760008155600101610272565b90565b610667806102986000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c80633eaaf86b116100715780633eaaf86b146102125780636ebcf6071461021a57806370a082311461024057806395d89b4114610266578063a9059cbb1461026e578063dd62ed3e1461029a576100b4565b8063024c2ddd146100b957806306fdde03146100f9578063095ea7b31461017657806318160ddd146101b657806323b872dd146101be578063313ce567146101f4575b600080fd5b6100e7600480360360408110156100cf57600080fd5b506001600160a01b03813581169160200135166102c8565b60408051918252519081900360200190f35b6101016102e5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013b578181015183820152602001610123565b50505050905090810190601f1680156101685780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a26004803603604081101561018c57600080fd5b506001600160a01b03813516906020013561037b565b604080519115158252519081900360200190f35b6100e76103e2565b6101a2600480360360608110156101d457600080fd5b506001600160a01b038135811691602081013590911690604001356103e8565b6101fc6104d3565b6040805160ff9092168252519081900360200190f35b6100e76104dc565b6100e76004803603602081101561023057600080fd5b50356001600160a01b03166104e2565b6100e76004803603602081101561025657600080fd5b50356001600160a01b03166104f4565b61010161050f565b6101a26004803603604081101561028457600080fd5b506001600160a01b038135169060200135610570565b6100e7600480360360408110156102b057600080fd5b506001600160a01b0381358116916020013516610607565b600160209081526000928352604080842090915290825290205481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103715780601f1061034657610100808354040283529160200191610371565b820191906000526020600020905b81548152906001019060200180831161035457829003601f168201915b5050505050905090565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60025490565b6001600160a01b038316600090815260208190526040812054821180159061043357506001600160a01b03841660009081526001602090815260408083203384529091529020548211155b801561043f5750600082115b156104c8576001600160a01b0380841660008181526020818152604080832080548801905593881680835284832080548890039055600182528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060016104cc565b5060005b9392505050565b60055460ff1690565b60025481565b60006020819052908152604090205481565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103715780601f1061034657610100808354040283529160200191610371565b33600090815260208190526040812054821180159061058f5750600082115b156105ff5733600081815260208181526040808320805487900390556001600160a01b03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060016103dc565b5060006103dc565b6001600160a01b0391821660009081526001602090815260408083209390941682529190915220549056fea265627a7a723158202fd8454eb7d3bd081f339b7bc40e879d501aff5e6391f2932214d987e8cc7bb664736f6c63430005110032000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000bebc200000000000000000000000000000000000000000000000000000000000000000c50726f4d696e6420436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504d440000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c80633eaaf86b116100715780633eaaf86b146102125780636ebcf6071461021a57806370a082311461024057806395d89b4114610266578063a9059cbb1461026e578063dd62ed3e1461029a576100b4565b8063024c2ddd146100b957806306fdde03146100f9578063095ea7b31461017657806318160ddd146101b657806323b872dd146101be578063313ce567146101f4575b600080fd5b6100e7600480360360408110156100cf57600080fd5b506001600160a01b03813581169160200135166102c8565b60408051918252519081900360200190f35b6101016102e5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561013b578181015183820152602001610123565b50505050905090810190601f1680156101685780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101a26004803603604081101561018c57600080fd5b506001600160a01b03813516906020013561037b565b604080519115158252519081900360200190f35b6100e76103e2565b6101a2600480360360608110156101d457600080fd5b506001600160a01b038135811691602081013590911690604001356103e8565b6101fc6104d3565b6040805160ff9092168252519081900360200190f35b6100e76104dc565b6100e76004803603602081101561023057600080fd5b50356001600160a01b03166104e2565b6100e76004803603602081101561025657600080fd5b50356001600160a01b03166104f4565b61010161050f565b6101a26004803603604081101561028457600080fd5b506001600160a01b038135169060200135610570565b6100e7600480360360408110156102b057600080fd5b506001600160a01b0381358116916020013516610607565b600160209081526000928352604080842090915290825290205481565b60038054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103715780601f1061034657610100808354040283529160200191610371565b820191906000526020600020905b81548152906001019060200180831161035457829003601f168201915b5050505050905090565b3360008181526001602090815260408083206001600160a01b038716808552908352818420869055815186815291519394909390927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925928290030190a35060015b92915050565b60025490565b6001600160a01b038316600090815260208190526040812054821180159061043357506001600160a01b03841660009081526001602090815260408083203384529091529020548211155b801561043f5750600082115b156104c8576001600160a01b0380841660008181526020818152604080832080548801905593881680835284832080548890039055600182528483203384528252918490208054879003905583518681529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35060016104cc565b5060005b9392505050565b60055460ff1690565b60025481565b60006020819052908152604090205481565b6001600160a01b031660009081526020819052604090205490565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156103715780601f1061034657610100808354040283529160200191610371565b33600090815260208190526040812054821180159061058f5750600082115b156105ff5733600081815260208181526040808320805487900390556001600160a01b03871680845292819020805487019055805186815290519293927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929181900390910190a35060016103dc565b5060006103dc565b6001600160a01b0391821660009081526001602090815260408083209390941682529190915220549056fea265627a7a723158202fd8454eb7d3bd081f339b7bc40e879d501aff5e6391f2932214d987e8cc7bb664736f6c63430005110032

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000bebc200000000000000000000000000000000000000000000000000000000000000000c50726f4d696e6420436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003504d440000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): ProMind Coin
Arg [1] : symbol (string): PMD
Arg [2] : decimals (uint8): 18
Arg [3] : initialSupply (uint256): 200000000

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 000000000000000000000000000000000000000000000000000000000bebc200
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 50726f4d696e6420436f696e0000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 504d440000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

5325:1483:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5325:1483:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3173:68;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3173:68:0;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;5868:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;5868:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4837:218;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;4837:218:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5221:97;;;:::i;3999:706::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3999:706:0;;;;;;;;;;;;;;;;;:::i;6720:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;3248:27;;;:::i;3121:45::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3121:45:0;-1:-1:-1;;;;;3121:45:0;;:::i;4713:116::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4713:116:0;-1:-1:-1;;;;;4713:116:0;;:::i;6070:87::-;;;:::i;3284:707::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;3284:707:0;;;;;;;;:::i;5063:146::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;5063:146:0;;;;;;;;;;:::i;3173:68::-;;;;;;;;;;;;;;;;;;;;;;;;:::o;5868:83::-;5938:5;5931:12;;;;;;;;-1:-1:-1;;5931:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5905:13;;5931:12;;5938:5;;5931:12;;5938:5;5931:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5868:83;:::o;4837:218::-;4941:10;4904:12;4929:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;4929:33:0;;;;;;;;;;;:42;;;4987:38;;;;;;;4904:12;;4929:33;;4941:10;;4987:38;;;;;;;;-1:-1:-1;5043:4:0;4837:218;;;;;:::o;5221:97::-;5298:12;;5221:97;:::o;3999:706::-;-1:-1:-1;;;;;4346:16:0;;4081:12;4346:16;;;;;;;;;;;:26;-1:-1:-1;4346:26:0;;;:70;;-1:-1:-1;;;;;;4376:18:0;;;;;;:11;:18;;;;;;;;4395:10;4376:30;;;;;;;;:40;-1:-1:-1;4376:40:0;4346:70;:84;;;;;4429:1;4420:6;:10;4346:84;4342:356;;;-1:-1:-1;;;;;4447:14:0;;;:9;:14;;;;;;;;;;;:24;;;;;;4486:16;;;;;;;;;:26;;;;;;;-1:-1:-1;4527:18:0;;;;;4546:10;4527:30;;;;;;;;:40;;;;;;;4587:28;;;;;;;4447:14;;4486:16;;4587:28;;;;;;;;;;-1:-1:-1;4637:4:0;4630:11;;4342:356;-1:-1:-1;4681:5:0;4342:356;3999:706;;;;;:::o;6720:83::-;6786:9;;;;6720:83;:::o;3248:27::-;;;;:::o;3121:45::-;;;;;;;;;;;;;;:::o;4713:116::-;-1:-1:-1;;;;;4804:17:0;4769:15;4804:17;;;;;;;;;;;;4713:116::o;6070:87::-;6142:7;6135:14;;;;;;;;-1:-1:-1;;6135:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6109:13;;6135:14;;6142:7;;6135:14;;6142:7;6135:14;;;;;;;;;;;;;;;;;;;;;;;;3284:707;3725:10;3347:12;3715:21;;;;;;;;;;;:31;-1:-1:-1;3715:31:0;;;:45;;;3759:1;3750:6;:10;3715:45;3711:273;;;3787:10;3777:9;:21;;;;;;;;;;;:31;;;;;;;-1:-1:-1;;;;;3823:14:0;;;;;;;;;:24;;;;;;3867:33;;;;;;;3823:14;;3787:10;3867:33;;;;;;;;;;;-1:-1:-1;3922:4:0;3915:11;;3711:273;-1:-1:-1;3967:5:0;3960:12;;5063:146;-1:-1:-1;;;;;5172:19:0;;;5137:17;5172:19;;;:11;:19;;;;;;;;:29;;;;;;;;;;;;;5063:146::o

Swarm Source

bzzr://2fd8454eb7d3bd081f339b7bc40e879d501aff5e6391f2932214d987e8cc7bb6
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.