ETH Price: $3,387.62 (-1.45%)
Gas: 2 Gwei

Token

EpiK Protocol (AIEPK)
 

Overview

Max Total Supply

400,000,000 AIEPK

Holders

1,066 ( -0.094%)

Market

Price

$0.01 @ 0.000002 ETH (-4.58%)

Onchain Market Cap

$2,314,224.00

Circulating Supply Market Cap

$895,135.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
37,483.110928356215960594 AIEPK

Value
$216.86 ( ~0.0640154286562815 Eth) [0.0094%]
0xa701f9db977c98f9043b20225b4322f94dbd50db
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

EpiK Protocol is an AI-first blockchain that aims at an open and collaborative AI data network accessible to all AI. It provides the infrastructure for community members to curate high-quality human-labeled AI training data and contribute to AI.

Market

Volume (24H):$192,254.00
Market Capitalization:$895,135.00
Circulating Supply:155,106,967.00 AIEPK
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
EPK

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-07-14
*/

/**
 *Submitted for verification at Etherscan.io on 2020-08-27
 */

pragma solidity ^0.5.0;

/**
 * @title Math
 * @dev Assorted math operations.
 */
library Math {
    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a >= b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Calculates the average of two numbers. Since these are integers,
     * averages of an even and odd number cannot be represented, and will be
     * rounded down.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow, so we distribute
        return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2);
    }
}

/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error.
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0, "SafeMath: modulo by zero");
        return a % b;
    }
}

/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping(address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account), "Roles: account already has role");
        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account), "Roles: account does not have role");
        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(
        Role storage role,
        address account
    ) internal view returns (bool) {
        require(account != address(0), "Roles: account is the zero address");
        return role.bearer[account];
    }
}

contract MinterRole {
    using Roles for Roles.Role;

    event MinterAdded(address indexed account);
    event MinterRemoved(address indexed account);

    Roles.Role private _minters;

    constructor() internal {
        _addMinter(msg.sender);
    }

    modifier onlyMinter() {
        require(
            isMinter(msg.sender),
            "MinterRole: caller does not have the Minter role"
        );
        _;
    }

    function isMinter(address account) public view returns (bool) {
        return _minters.has(account);
    }

    function addMinter(address account) public onlyMinter {
        _addMinter(account);
    }

    function renounceMinter() public {
        _removeMinter(msg.sender);
    }

    function _addMinter(address account) internal {
        _minters.add(account);
        emit MinterAdded(account);
    }

    function _removeMinter(address account) internal {
        _minters.remove(account);
        emit MinterRemoved(account);
    }
}

/**
 * @title ERC20 interface
 * @dev see https://eips.ethereum.org/EIPS/eip-20
 */
interface IERC20 {
    function transfer(address to, uint256 value) external returns (bool);

    function approve(address spender, uint256 value) external returns (bool);

    function transferFrom(
        address from,
        address to,
        uint256 value
    ) external returns (bool);

    function totalSupply() external view returns (uint256);

    function balanceOf(address who) external view returns (uint256);

    function allowance(
        address owner,
        address spender
    ) external view returns (uint256);

    event Transfer(address indexed from, address indexed to, uint256 value);

    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

/**
 * @title Standard ERC20 token
 *
 * @dev Implementation of the basic standard token.
 * https://eips.ethereum.org/EIPS/eip-20
 * Originally based on code by FirstBlood:
 * https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
 *
 * This implementation emits additional Approval events, allowing applications to reconstruct the allowance status for
 * all accounts just by listening to said events. Note that this isn't required by the specification, and other
 * compliant implementations may not do it.
 */
contract ERC20 is IERC20 {
    using SafeMath for uint256;

    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    /**
     * @dev Total number of tokens in existence.
     */
    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner The address to query the balance of.
     * @return A uint256 representing the amount owned by the passed address.
     */
    function balanceOf(address owner) public view returns (uint256) {
        return _balances[owner];
    }

    /**
     * @dev Function to check the amount of tokens that an owner allowed to a spender.
     * @param owner address The address which owns the funds.
     * @param spender address The address which will spend the funds.
     * @return A uint256 specifying the amount of tokens still available for the spender.
     */
    function allowance(
        address owner,
        address spender
    ) public view returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev Transfer token to a specified address.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function transfer(address to, uint256 value) public returns (bool) {
        _transfer(msg.sender, to, value);
        return true;
    }

    /**
     * @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
     * 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
     * @param spender The address which will spend the funds.
     * @param value The amount of tokens to be spent.
     */
    function approve(address spender, uint256 value) public returns (bool) {
        _approve(msg.sender, spender, value);
        return true;
    }

    /**
     * @dev Transfer tokens from one address to another.
     * Note that while this function emits an Approval event, this is not required as per the specification,
     * and other compliant implementations may not emit the event.
     * @param from address The address which you want to send tokens from
     * @param to address The address which you want to transfer to
     * @param value uint256 the amount of tokens to be transferred
     */
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public returns (bool) {
        _transfer(from, to, value);
        _approve(from, msg.sender, _allowances[from][msg.sender].sub(value));
        return true;
    }

    /**
     * @dev Increase the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowances[msg.sender][spender] == 0. To increment
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param addedValue The amount of tokens to increase the allowance by.
     */
    function increaseAllowance(
        address spender,
        uint256 addedValue
    ) public returns (bool) {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].add(addedValue)
        );
        return true;
    }

    /**
     * @dev Decrease the amount of tokens that an owner allowed to a spender.
     * approve should be called when _allowances[msg.sender][spender] == 0. To decrement
     * allowed value is better to use this function to avoid 2 calls (and wait until
     * the first transaction is mined)
     * From MonolithDAO Token.sol
     * Emits an Approval event.
     * @param spender The address which will spend the funds.
     * @param subtractedValue The amount of tokens to decrease the allowance by.
     */
    function decreaseAllowance(
        address spender,
        uint256 subtractedValue
    ) public returns (bool) {
        _approve(
            msg.sender,
            spender,
            _allowances[msg.sender][spender].sub(subtractedValue)
        );
        return true;
    }

    /**
     * @dev Transfer token for a specified addresses.
     * @param from The address to transfer from.
     * @param to The address to transfer to.
     * @param value The amount to be transferred.
     */
    function _transfer(address from, address to, uint256 value) internal {
        require(to != address(0), "ERC20: transfer to the zero address");

        _balances[from] = _balances[from].sub(value);
        _balances[to] = _balances[to].add(value);
        emit Transfer(from, to, value);
    }

    /**
     * @dev Internal function that mints an amount of the token and assigns it to
     * an account. This encapsulates the modification of balances such that the
     * proper events are emitted.
     * @param account The account that will receive the created tokens.
     * @param value The amount that will be created.
     */
    function _mint(address account, uint256 value) internal {
        require(account != address(0), "ERC20: mint to the zero address");

        _totalSupply = _totalSupply.add(value);
        _balances[account] = _balances[account].add(value);
        emit Transfer(address(0), account, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account.
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burn(address account, uint256 value) internal {
        require(account != address(0), "ERC20: burn from the zero address");

        _totalSupply = _totalSupply.sub(value);
        _balances[account] = _balances[account].sub(value);
        emit Transfer(account, address(0), value);
    }

    /**
     * @dev Approve an address to spend another addresses' tokens.
     * @param owner The address that owns the tokens.
     * @param spender The address that will spend the tokens.
     * @param value The number of tokens that can be spent.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = value;
        emit Approval(owner, spender, value);
    }

    /**
     * @dev Internal function that burns an amount of the token of a given
     * account, deducting from the sender's allowance for said account. Uses the
     * internal burn function.
     * Emits an Approval event (reflecting the reduced allowance).
     * @param account The account whose tokens will be burnt.
     * @param value The amount that will be burnt.
     */
    function _burnFrom(address account, uint256 value) internal {
        _burn(account, value);
        _approve(
            account,
            msg.sender,
            _allowances[account][msg.sender].sub(value)
        );
    }
}

/**
 * @title ERC20Mintable
 * @dev ERC20 minting logic.
 */
contract ERC20Mintable is ERC20, MinterRole {
    /**
     * @dev Function to mint tokens
     * @param to The address that will receive the minted tokens.
     * @param value The amount of tokens to mint.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 value) public onlyMinter returns (bool) {
        _mint(to, value);
        return true;
    }
}

/**
 * @title ERC20Detailed token
 * @dev The decimals are only for visualization purposes.
 * All the operations are done using the smallest and indivisible token unit,
 * just as on Ethereum all the operations are done in wei.
 */
contract ERC20Detailed is IERC20 {
    string private _name;
    string private _symbol;
    uint8 private _decimals;

    constructor(
        string memory name,
        string memory symbol,
        uint8 decimals
    ) public {
        _name = name;
        _symbol = symbol;
        _decimals = decimals;
    }

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

    /**
     * @return the symbol of the token.
     */
    function symbol() public view returns (string memory) {
        return _symbol;
    }

    /**
     * @return the number of decimals of the token.
     */
    function decimals() public view returns (uint8) {
        return _decimals;
    }
}

/**
 * @title Capped token
 * @dev Mintable token with a token cap.
 */
contract ERC20Capped is ERC20Mintable {
    uint256 private _cap;

    constructor(uint256 cap) public {
        require(cap > 0, "ERC20Capped: cap is 0");
        _cap = cap;
    }

    /**
     * @return the cap for the token minting.
     */
    function cap() public view returns (uint256) {
        return _cap;
    }

    function _mint(address account, uint256 value) internal {
        require(totalSupply().add(value) <= _cap, "ERC20Capped: cap exceeded");
        super._mint(account, value);
    }
}

contract EPK is ERC20Capped, ERC20Detailed {
    constructor(
        uint256 cap,
        string memory name,
        string memory symbol,
        uint8 decimals
    ) public ERC20Capped(cap) ERC20Detailed(name, symbol, decimals) {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"payable":false,"stateMutability":"nonpayable","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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","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":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","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":"","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":"","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":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200122d3803806200122d833981810160405260808110156200003757600080fd5b8151602083018051604051929492938301929190846401000000008211156200005f57600080fd5b9083019060208201858111156200007557600080fd5b82516401000000008111828201881017156200009057600080fd5b82525081516020918201929091019080838360005b83811015620000bf578181015183820152602001620000a5565b50505050905090810190601f168015620000ed5780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011157600080fd5b9083019060208201858111156200012757600080fd5b82516401000000008111828201881017156200014257600080fd5b82525081516020918201929091019080838360005b838110156200017157818101518382015260200162000157565b50505050905090810190601f1680156200019f5780820380516001836020036101000a031916815260200191505b50604052602001519150839050828286620001c3336001600160e01b036200026916565b6000811162000219576040805162461bcd60e51b815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b600455825162000231906005906020860190620003b1565b50815162000247906006906020850190620003b1565b506007805460ff191660ff929092169190911790555062000456945050505050565b62000284816003620002bb60201b62000bac1790919060201c565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b620002d082826001600160e01b036200034816565b1562000323576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b038216620003915760405162461bcd60e51b81526004018080602001828103825260228152602001806200120b6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003f457805160ff191683800117855562000424565b8280016001018555821562000424579182015b828111156200042457825182559160200191906001019062000407565b506200043292915062000436565b5090565b6200045391905b808211156200043257600081556001016200043d565b90565b610da580620004666000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102ee578063a9059cbb1461031a578063aa271e1a14610346578063dd62ed3e1461036c57610100565b806370a082311461029057806395d89b41146102b6578063983b2d56146102be57806398650275146102e657610100565b8063313ce567116100d3578063313ce56714610212578063355274ea14610230578063395093511461023857806340c10f191461026457610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61039a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610430565b604080519115158252519081900360200190f35b6101ca610446565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561044c565b61021a6104a3565b6040805160ff9092168252519081900360200190f35b6101ca6104ac565b6101ae6004803603604081101561024e57600080fd5b506001600160a01b0381351690602001356104b2565b6101ae6004803603604081101561027a57600080fd5b506001600160a01b0381351690602001356104ee565b6101ca600480360360208110156102a657600080fd5b50356001600160a01b031661053e565b61010d610559565b6102e4600480360360208110156102d457600080fd5b50356001600160a01b03166105ba565b005b6102e461060a565b6101ae6004803603604081101561030457600080fd5b506001600160a01b038135169060200135610615565b6101ae6004803603604081101561033057600080fd5b506001600160a01b038135169060200135610651565b6101ae6004803603602081101561035c57600080fd5b50356001600160a01b031661065e565b6101ca6004803603604081101561038257600080fd5b506001600160a01b0381358116916020013516610677565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043d3384846106a2565b50600192915050565b60025490565b600061045984848461078e565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610499918691610494908663ffffffff61088b16565b6106a2565b5060019392505050565b60075460ff1690565b60045490565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161043d918590610494908663ffffffff6108e816565b60006104f93361065e565b6105345760405162461bcd60e51b8152600401808060200182810382526030815260200180610cda6030913960400191505060405180910390fd5b61043d8383610949565b6001600160a01b031660009081526020819052604090205490565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104265780601f106103fb57610100808354040283529160200191610426565b6105c33361065e565b6105fe5760405162461bcd60e51b8152600401808060200182810382526030815260200180610cda6030913960400191505060405180910390fd5b610607816109c5565b50565b61061333610a0d565b565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161043d918590610494908663ffffffff61088b16565b600061043d33848461078e565b600061067160038363ffffffff610a5516565b92915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166106e75760405162461bcd60e51b8152600401808060200182810382526024815260200180610d4d6024913960400191505060405180910390fd5b6001600160a01b03821661072c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610cb86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166107d35760405162461bcd60e51b8152600401808060200182810382526023815260200180610c956023913960400191505060405180910390fd5b6001600160a01b0383166000908152602081905260409020546107fc908263ffffffff61088b16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610831908263ffffffff6108e816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156108e2576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610942576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60045461096482610958610446565b9063ffffffff6108e816565b11156109b7576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6109c18282610abc565b5050565b6109d660038263ffffffff610bac16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610a1e60038263ffffffff610c2d16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610a9c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610d2b6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038216610b17576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610b2a908263ffffffff6108e816565b6002556001600160a01b038216600090815260208190526040902054610b56908263ffffffff6108e816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610bb68282610a55565b15610c08576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b610c378282610a55565b610c725760405162461bcd60e51b8152600401808060200182810382526021815260200180610d0a6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7231582097eb148cd09d383c93c706f836a2384c30c713bd9dbcd82d0249b927079c29e864736f6c63430005110032526f6c65733a206163636f756e7420697320746865207a65726f20616464726573730000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000d4570694b2050726f746f636f6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005414945504b000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d7146102ee578063a9059cbb1461031a578063aa271e1a14610346578063dd62ed3e1461036c57610100565b806370a082311461029057806395d89b41146102b6578063983b2d56146102be57806398650275146102e657610100565b8063313ce567116100d3578063313ce56714610212578063355274ea14610230578063395093511461023857806340c10f191461026457610100565b806306fdde0314610105578063095ea7b31461018257806318160ddd146101c257806323b872dd146101dc575b600080fd5b61010d61039a565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561014757818101518382015260200161012f565b50505050905090810190601f1680156101745780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6101ae6004803603604081101561019857600080fd5b506001600160a01b038135169060200135610430565b604080519115158252519081900360200190f35b6101ca610446565b60408051918252519081900360200190f35b6101ae600480360360608110156101f257600080fd5b506001600160a01b0381358116916020810135909116906040013561044c565b61021a6104a3565b6040805160ff9092168252519081900360200190f35b6101ca6104ac565b6101ae6004803603604081101561024e57600080fd5b506001600160a01b0381351690602001356104b2565b6101ae6004803603604081101561027a57600080fd5b506001600160a01b0381351690602001356104ee565b6101ca600480360360208110156102a657600080fd5b50356001600160a01b031661053e565b61010d610559565b6102e4600480360360208110156102d457600080fd5b50356001600160a01b03166105ba565b005b6102e461060a565b6101ae6004803603604081101561030457600080fd5b506001600160a01b038135169060200135610615565b6101ae6004803603604081101561033057600080fd5b506001600160a01b038135169060200135610651565b6101ae6004803603602081101561035c57600080fd5b50356001600160a01b031661065e565b6101ca6004803603604081101561038257600080fd5b506001600160a01b0381358116916020013516610677565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104265780601f106103fb57610100808354040283529160200191610426565b820191906000526020600020905b81548152906001019060200180831161040957829003601f168201915b5050505050905090565b600061043d3384846106a2565b50600192915050565b60025490565b600061045984848461078e565b6001600160a01b038416600090815260016020908152604080832033808552925290912054610499918691610494908663ffffffff61088b16565b6106a2565b5060019392505050565b60075460ff1690565b60045490565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161043d918590610494908663ffffffff6108e816565b60006104f93361065e565b6105345760405162461bcd60e51b8152600401808060200182810382526030815260200180610cda6030913960400191505060405180910390fd5b61043d8383610949565b6001600160a01b031660009081526020819052604090205490565b60068054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156104265780601f106103fb57610100808354040283529160200191610426565b6105c33361065e565b6105fe5760405162461bcd60e51b8152600401808060200182810382526030815260200180610cda6030913960400191505060405180910390fd5b610607816109c5565b50565b61061333610a0d565b565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161043d918590610494908663ffffffff61088b16565b600061043d33848461078e565b600061067160038363ffffffff610a5516565b92915050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166106e75760405162461bcd60e51b8152600401808060200182810382526024815260200180610d4d6024913960400191505060405180910390fd5b6001600160a01b03821661072c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610cb86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260016020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b6001600160a01b0382166107d35760405162461bcd60e51b8152600401808060200182810382526023815260200180610c956023913960400191505060405180910390fd5b6001600160a01b0383166000908152602081905260409020546107fc908263ffffffff61088b16565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610831908263ffffffff6108e816565b6001600160a01b038084166000818152602081815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6000828211156108e2576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082820183811015610942576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b60045461096482610958610446565b9063ffffffff6108e816565b11156109b7576040805162461bcd60e51b815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b6109c18282610abc565b5050565b6109d660038263ffffffff610bac16565b6040516001600160a01b038216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b610a1e60038263ffffffff610c2d16565b6040516001600160a01b038216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b60006001600160a01b038216610a9c5760405162461bcd60e51b8152600401808060200182810382526022815260200180610d2b6022913960400191505060405180910390fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b038216610b17576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b600254610b2a908263ffffffff6108e816565b6002556001600160a01b038216600090815260208190526040902054610b56908263ffffffff6108e816565b6001600160a01b0383166000818152602081815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b610bb68282610a55565b15610c08576040805162461bcd60e51b815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b610c378282610a55565b610c725760405162461bcd60e51b8152600401808060200182810382526021815260200180610d0a6021913960400191505060405180910390fd5b6001600160a01b0316600090815260209190915260409020805460ff1916905556fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a7231582097eb148cd09d383c93c706f836a2384c30c713bd9dbcd82d0249b927079c29e864736f6c63430005110032

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

0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000d4570694b2050726f746f636f6c000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005414945504b000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : cap (uint256): 1000000000000000000000000000
Arg [1] : name (string): EpiK Protocol
Arg [2] : symbol (string): AIEPK
Arg [3] : decimals (uint8): 18

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000033b2e3c9fd0803ce8000000
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [5] : 4570694b2050726f746f636f6c00000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 414945504b000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

16271:243:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16271:243:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15256: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;15256:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8628:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8628:148:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6752:91;;;:::i;:::-;;;;;;;;;;;;;;;;9249:265;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9249:265:0;;;;;;;;;;;;;;;;;:::i;15572:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15998:75;;;:::i;10043:281::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10043:281:0;;;;;;;;:::i;14486:131::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14486:131:0;;;;;;;;:::i;7062:106::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7062:106:0;-1:-1:-1;;;;;7062:106:0;;:::i;15406:87::-;;;:::i;4593:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4593:92:0;-1:-1:-1;;;;;4593:92:0;;:::i;:::-;;4693:77;;;:::i;10858:291::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;10858:291:0;;;;;;;;:::i;7841:140::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7841:140:0;;;;;;;;:::i;4476:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4476:109:0;-1:-1:-1;;;;;4476:109:0;;:::i;7507:159::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7507:159:0;;;;;;;;;;:::i;15256:83::-;15326:5;15319:12;;;;;;;;-1:-1:-1;;15319:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15293:13;;15319:12;;15326:5;;15319:12;;15326:5;15319:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15256:83;:::o;8628:148::-;8693:4;8710:36;8719:10;8731:7;8740:5;8710:8;:36::i;:::-;-1:-1:-1;8764:4:0;8628:148;;;;:::o;6752:91::-;6823:12;;6752:91;:::o;9249:265::-;9362:4;9379:26;9389:4;9395:2;9399:5;9379:9;:26::i;:::-;-1:-1:-1;;;;;9443:17:0;;;;;;:11;:17;;;;;;;;9431:10;9443:29;;;;;;;;;9416:68;;9425:4;;9443:40;;9477:5;9443:40;:33;:40;:::i;:::-;9416:8;:68::i;:::-;-1:-1:-1;9502:4:0;9249:265;;;;;:::o;15572:83::-;15638:9;;;;15572:83;:::o;15998:75::-;16061:4;;15998:75;:::o;10043:281::-;10188:10;10148:4;10235:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;10235:32:0;;;;;;;;;;10148:4;;10165:129;;10213:7;;10235:48;;10272:10;10235:48;:36;:48;:::i;14486:131::-;14554:4;4352:20;4361:10;4352:8;:20::i;:::-;4330:118;;;;-1:-1:-1;;;4330:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14571:16;14577:2;14581:5;14571;:16::i;7062:106::-;-1:-1:-1;;;;;7144:16:0;7117:7;7144:16;;;;;;;;;;;;7062:106::o;15406:87::-;15478:7;15471:14;;;;;;;;-1:-1:-1;;15471:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15445:13;;15471:14;;15478:7;;15471:14;;15478:7;15471:14;;;;;;;;;;;;;;;;;;;;;;;;4593:92;4352:20;4361:10;4352:8;:20::i;:::-;4330:118;;;;-1:-1:-1;;;4330:118:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4658:19;4669:7;4658:10;:19::i;:::-;4593:92;:::o;4693:77::-;4737:25;4751:10;4737:13;:25::i;:::-;4693:77::o;10858:291::-;11008:10;10968:4;11055:23;;;:11;:23;;;;;;;;-1:-1:-1;;;;;11055:32:0;;;;;;;;;;10968:4;;10985:134;;11033:7;;11055:53;;11092:15;11055:53;:36;:53;:::i;7841:140::-;7902:4;7919:32;7929:10;7941:2;7945:5;7919:9;:32::i;4476:109::-;4532:4;4556:21;:8;4569:7;4556:21;:12;:21;:::i;:::-;4549:28;4476:109;-1:-1:-1;;4476:109:0:o;7507:159::-;-1:-1:-1;;;;;7631:18:0;;;7604:7;7631:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;7507:159::o;13147:335::-;-1:-1:-1;;;;;13240:19:0;;13232:68;;;;-1:-1:-1;;;13232:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13319:21:0;;13311:68;;;;-1:-1:-1;;;13311:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13392:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;13443:31;;;;;;;;;;;;;;;;;13147:335;;;:::o;11377:301::-;-1:-1:-1;;;;;11465:16:0;;11457:64;;;;-1:-1:-1;;;11457:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;11552:15:0;;:9;:15;;;;;;;;;;;:26;;11572:5;11552:26;:19;:26;:::i;:::-;-1:-1:-1;;;;;11534:15:0;;;:9;:15;;;;;;;;;;;:44;;;;11605:13;;;;;;;:24;;11623:5;11605:24;:17;:24;:::i;:::-;-1:-1:-1;;;;;11589:13:0;;;:9;:13;;;;;;;;;;;;:40;;;;11645:25;;;;;;;11589:13;;11645:25;;;;;;;;;;;;;11377:301;;;:::o;2235:184::-;2293:7;2326:1;2321;:6;;2313:49;;;;;-1:-1:-1;;;2313:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2385:5:0;;;2235:184::o;2507:181::-;2565:7;2597:5;;;2621:6;;;;2613:46;;;;;-1:-1:-1;;;2613:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2679:1;2507:181;-1:-1:-1;;;2507:181:0:o;16081:183::-;16184:4;;16156:24;16174:5;16156:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;16148:70;;;;;-1:-1:-1;;;16148:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;16229:27;16241:7;16250:5;16229:11;:27::i;:::-;16081:183;;:::o;4778:122::-;4835:21;:8;4848:7;4835:21;:12;:21;:::i;:::-;4872:20;;-1:-1:-1;;;;;4872:20:0;;;;;;;;4778:122;:::o;4908:130::-;4968:24;:8;4984:7;4968:24;:15;:24;:::i;:::-;5008:22;;-1:-1:-1;;;;;5008:22:0;;;;;;;;4908:130;:::o;3790:228::-;3887:4;-1:-1:-1;;;;;3912:21:0;;3904:68;;;;-1:-1:-1;;;3904:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;3990:20:0;:11;:20;;;;;;;;;;;;;;;3790:228::o;12030:304::-;-1:-1:-1;;;;;12105:21:0;;12097:65;;;;;-1:-1:-1;;;12097:65:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;12190:12;;:23;;12207:5;12190:23;:16;:23;:::i;:::-;12175:12;:38;-1:-1:-1;;;;;12245:18:0;;:9;:18;;;;;;;;;;;:29;;12268:5;12245:29;:22;:29;:::i;:::-;-1:-1:-1;;;;;12224:18:0;;:9;:18;;;;;;;;;;;:50;;;;12290:36;;;;;;;12224:18;;:9;;12290:36;;;;;;;;;;12030:304;;:::o;3254:178::-;3332:18;3336:4;3342:7;3332:3;:18::i;:::-;3331:19;3323:63;;;;;-1:-1:-1;;;3323:63:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3397:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;3397:27:0;3420:4;3397:27;;;3254:178::o;3512:183::-;3592:18;3596:4;3602:7;3592:3;:18::i;:::-;3584:64;;;;-1:-1:-1;;;3584:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;3659:20:0;3682:5;3659:20;;;;;;;;;;;:28;;-1:-1:-1;;3659:28:0;;;3512:183::o

Swarm Source

bzzr://97eb148cd09d383c93c706f836a2384c30c713bd9dbcd82d0249b927079c29e8
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.