ETH Price: $2,944.81 (-2.08%)
Gas: 3 Gwei

Token

Cerberus (CBS)
 

Overview

Max Total Supply

969,696,180 CBS

Holders

2

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Shiba Inu: SHIB Token
Balance
1,000,000 CBS

Value
$0.00
0x95ad61b0a150d79219dcf64e1e6cc01f0b64c4ce
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:
CerberusERC20Token

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-11-15
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);
}
pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}
pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
pragma solidity ^0.8.0;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override 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. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * 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 virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

pragma solidity ^0.8.0;

contract CerberusERC20Token is ERC20 {
    address public admin;
    constructor() ERC20('Cerberus', 'CBS') {
        _mint(msg.sender, 969696180000000000000000000);
        admin = msg.sender;
    }
    
    function mint(address to, uint amount) external {
        require(msg.sender == admin, 'only admin');
        _mint(to, amount);
    }
    
    function burn(uint amount) external {
        _burn(msg.sender, amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405180604001604052806008815260200167436572626572757360c01b8152506040518060400160405280600381526020016243425360e81b8152508160039080519060200190620000679291906200019d565b5080516200007d9060049060208401906200019d565b5050506200009e336b03221d27401697bd5e500000620000b660201b60201c565b600580546001600160a01b03191633179055620002e5565b6001600160a01b038216620000e85760405162461bcd60e51b8152600401620000df9062000243565b60405180910390fd5b620000f66000838362000198565b80600260008282546200010a919062000283565b90915550506001600160a01b038216600090815260208190526040812080548392906200013990849062000283565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906200017e9085906200027a565b60405180910390a3620001946000838362000198565b5050565b505050565b828054620001ab90620002a8565b90600052602060002090601f016020900481019282620001cf57600085556200021a565b82601f10620001ea57805160ff19168380011785556200021a565b828001600101855582156200021a579182015b828111156200021a578251825591602001919060010190620001fd565b50620002289291506200022c565b5090565b5b808211156200022857600081556001016200022d565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60008219821115620002a357634e487b7160e01b81526011600452602481fd5b500190565b600281046001821680620002bd57607f821691505b60208210811415620002df57634e487b7160e01b600052602260045260246000fd5b50919050565b610d6f80620002f56000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d7146101c0578063a9059cbb146101d3578063dd62ed3e146101e6578063f851a440146101f9576100ea565b806342966c681461019257806370a08231146101a557806395d89b41146101b8576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806340c10f191461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f761020e565b6040516101049190610990565b60405180910390f35b61012061011b366004610930565b6102a0565b6040516101049190610985565b6101356102bd565b6040516101049190610ca2565b6101206101503660046108f5565b6102c3565b61015d61035c565b6040516101049190610cab565b610120610178366004610930565b610361565b61019061018b366004610930565b6103b5565b005b6101906101a0366004610959565b6103ed565b6101356101b33660046108a2565b6103fa565b6100f7610419565b6101206101ce366004610930565b610428565b6101206101e1366004610930565b6104a1565b6101356101f43660046108c3565b6104b5565b6102016104e0565b6040516101049190610971565b60606003805461021d90610ce8565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610ce8565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905090565b60006102b46102ad6104ef565b84846104f3565b50600192915050565b60025490565b60006102d08484846105a7565b6001600160a01b0384166000908152600160205260408120816102f16104ef565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561033d5760405162461bcd60e51b815260040161033490610b14565b60405180910390fd5b610351856103496104ef565b8584036104f3565b506001949350505050565b601290565b60006102b461036e6104ef565b84846001600061037c6104ef565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103b09190610cb9565b6104f3565b6005546001600160a01b031633146103df5760405162461bcd60e51b815260040161033490610af0565b6103e982826106d1565b5050565b6103f73382610799565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b60606004805461021d90610ce8565b600080600160006104376104ef565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104835760405162461bcd60e51b815260040161033490610c26565b61049761048e6104ef565b858584036104f3565b5060019392505050565b60006102b46104ae6104ef565b84846105a7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031681565b3390565b6001600160a01b0383166105195760405162461bcd60e51b815260040161033490610be2565b6001600160a01b03821661053f5760405162461bcd60e51b815260040161033490610a68565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061059a908590610ca2565b60405180910390a3505050565b6001600160a01b0383166105cd5760405162461bcd60e51b815260040161033490610b9d565b6001600160a01b0382166105f35760405162461bcd60e51b8152600401610334906109e3565b6105fe838383610886565b6001600160a01b038316600090815260208190526040902054818110156106375760405162461bcd60e51b815260040161033490610aaa565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061066e908490610cb9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106b89190610ca2565b60405180910390a36106cb848484610886565b50505050565b6001600160a01b0382166106f75760405162461bcd60e51b815260040161033490610c6b565b61070360008383610886565b80600260008282546107159190610cb9565b90915550506001600160a01b03821660009081526020819052604081208054839290610742908490610cb9565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610785908590610ca2565b60405180910390a36103e960008383610886565b6001600160a01b0382166107bf5760405162461bcd60e51b815260040161033490610b5c565b6107cb82600083610886565b6001600160a01b038216600090815260208190526040902054818110156108045760405162461bcd60e51b815260040161033490610a26565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610833908490610cd1565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610876908690610ca2565b60405180910390a3610886836000845b505050565b80356001600160a01b038116811461041457600080fd5b6000602082840312156108b3578081fd5b6108bc8261088b565b9392505050565b600080604083850312156108d5578081fd5b6108de8361088b565b91506108ec6020840161088b565b90509250929050565b600080600060608486031215610909578081fd5b6109128461088b565b92506109206020850161088b565b9150604084013590509250925092565b60008060408385031215610942578182fd5b61094b8361088b565b946020939093013593505050565b60006020828403121561096a578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109bc578581018301518582016040015282016109a0565b818111156109cd5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252600a908201526937b7363c9030b236b4b760b11b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610ccc57610ccc610d23565b500190565b600082821015610ce357610ce3610d23565b500390565b600281046001821680610cfc57607f821691505b60208210811415610d1d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220506f6b198e46ee7869060709ccfc995582b7fd6a28804661b3db2e5f27db910464736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806342966c681161008c578063a457c2d711610066578063a457c2d7146101c0578063a9059cbb146101d3578063dd62ed3e146101e6578063f851a440146101f9576100ea565b806342966c681461019257806370a08231146101a557806395d89b41146101b8576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806340c10f191461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f761020e565b6040516101049190610990565b60405180910390f35b61012061011b366004610930565b6102a0565b6040516101049190610985565b6101356102bd565b6040516101049190610ca2565b6101206101503660046108f5565b6102c3565b61015d61035c565b6040516101049190610cab565b610120610178366004610930565b610361565b61019061018b366004610930565b6103b5565b005b6101906101a0366004610959565b6103ed565b6101356101b33660046108a2565b6103fa565b6100f7610419565b6101206101ce366004610930565b610428565b6101206101e1366004610930565b6104a1565b6101356101f43660046108c3565b6104b5565b6102016104e0565b6040516101049190610971565b60606003805461021d90610ce8565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610ce8565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905090565b60006102b46102ad6104ef565b84846104f3565b50600192915050565b60025490565b60006102d08484846105a7565b6001600160a01b0384166000908152600160205260408120816102f16104ef565b6001600160a01b03166001600160a01b031681526020019081526020016000205490508281101561033d5760405162461bcd60e51b815260040161033490610b14565b60405180910390fd5b610351856103496104ef565b8584036104f3565b506001949350505050565b601290565b60006102b461036e6104ef565b84846001600061037c6104ef565b6001600160a01b03908116825260208083019390935260409182016000908120918b16815292529020546103b09190610cb9565b6104f3565b6005546001600160a01b031633146103df5760405162461bcd60e51b815260040161033490610af0565b6103e982826106d1565b5050565b6103f73382610799565b50565b6001600160a01b0381166000908152602081905260409020545b919050565b60606004805461021d90610ce8565b600080600160006104376104ef565b6001600160a01b03908116825260208083019390935260409182016000908120918816815292529020549050828110156104835760405162461bcd60e51b815260040161033490610c26565b61049761048e6104ef565b858584036104f3565b5060019392505050565b60006102b46104ae6104ef565b84846105a7565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6005546001600160a01b031681565b3390565b6001600160a01b0383166105195760405162461bcd60e51b815260040161033490610be2565b6001600160a01b03821661053f5760405162461bcd60e51b815260040161033490610a68565b6001600160a01b0380841660008181526001602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259061059a908590610ca2565b60405180910390a3505050565b6001600160a01b0383166105cd5760405162461bcd60e51b815260040161033490610b9d565b6001600160a01b0382166105f35760405162461bcd60e51b8152600401610334906109e3565b6105fe838383610886565b6001600160a01b038316600090815260208190526040902054818110156106375760405162461bcd60e51b815260040161033490610aaa565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061066e908490610cb9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516106b89190610ca2565b60405180910390a36106cb848484610886565b50505050565b6001600160a01b0382166106f75760405162461bcd60e51b815260040161033490610c6b565b61070360008383610886565b80600260008282546107159190610cb9565b90915550506001600160a01b03821660009081526020819052604081208054839290610742908490610cb9565b90915550506040516001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610785908590610ca2565b60405180910390a36103e960008383610886565b6001600160a01b0382166107bf5760405162461bcd60e51b815260040161033490610b5c565b6107cb82600083610886565b6001600160a01b038216600090815260208190526040902054818110156108045760405162461bcd60e51b815260040161033490610a26565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610833908490610cd1565b90915550506040516000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90610876908690610ca2565b60405180910390a3610886836000845b505050565b80356001600160a01b038116811461041457600080fd5b6000602082840312156108b3578081fd5b6108bc8261088b565b9392505050565b600080604083850312156108d5578081fd5b6108de8361088b565b91506108ec6020840161088b565b90509250929050565b600080600060608486031215610909578081fd5b6109128461088b565b92506109206020850161088b565b9150604084013590509250925092565b60008060408385031215610942578182fd5b61094b8361088b565b946020939093013593505050565b60006020828403121561096a578081fd5b5035919050565b6001600160a01b0391909116815260200190565b901515815260200190565b6000602080835283518082850152825b818110156109bc578581018301518582016040015282016109a0565b818111156109cd5783604083870101525b50601f01601f1916929092016040019392505050565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b60208082526022908201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604082015261636560f01b606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252600a908201526937b7363c9030b236b4b760b11b604082015260600190565b60208082526028908201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616040820152676c6c6f77616e636560c01b606082015260800190565b60208082526021908201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b90815260200190565b60ff91909116815260200190565b60008219821115610ccc57610ccc610d23565b500190565b600082821015610ce357610ce3610d23565b500390565b600281046001821680610cfc57607f821691505b60208210811415610d1d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220506f6b198e46ee7869060709ccfc995582b7fd6a28804661b3db2e5f27db910464736f6c63430008000033

Deployed Bytecode Sourcemap

16152:448:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6164:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8331:169;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7284:108::-;;;:::i;:::-;;;;;;;:::i;8982:492::-;;;;;;:::i;:::-;;:::i;7126:93::-;;;:::i;:::-;;;;;;;:::i;9883:215::-;;;;;;:::i;:::-;;:::i;16368:137::-;;;;;;:::i;:::-;;:::i;:::-;;16517:80;;;;;;:::i;:::-;;:::i;7455:127::-;;;;;;:::i;:::-;;:::i;6383:104::-;;;:::i;10601:413::-;;;;;;:::i;:::-;;:::i;7795:175::-;;;;;;:::i;:::-;;:::i;8033:151::-;;;;;;:::i;:::-;;:::i;16196:20::-;;;:::i;:::-;;;;;;;:::i;6164:100::-;6218:13;6251:5;6244:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6164:100;:::o;8331:169::-;8414:4;8431:39;8440:12;:10;:12::i;:::-;8454:7;8463:6;8431:8;:39::i;:::-;-1:-1:-1;8488:4:0;8331:169;;;;:::o;7284:108::-;7372:12;;7284:108;:::o;8982:492::-;9122:4;9139:36;9149:6;9157:9;9168:6;9139:9;:36::i;:::-;-1:-1:-1;;;;;9215:19:0;;9188:24;9215:19;;;:11;:19;;;;;9188:24;9235:12;:10;:12::i;:::-;-1:-1:-1;;;;;9215:33:0;-1:-1:-1;;;;;9215:33:0;;;;;;;;;;;;;9188:60;;9287:6;9267:16;:26;;9259:79;;;;-1:-1:-1;;;9259:79:0;;;;;;;:::i;:::-;;;;;;;;;9374:57;9383:6;9391:12;:10;:12::i;:::-;9424:6;9405:16;:25;9374:8;:57::i;:::-;-1:-1:-1;9462:4:0;;8982:492;-1:-1:-1;;;;8982:492:0:o;7126:93::-;7209:2;7126:93;:::o;9883:215::-;9971:4;9988:80;9997:12;:10;:12::i;:::-;10011:7;10057:10;10020:11;:25;10032:12;:10;:12::i;:::-;-1:-1:-1;;;;;10020:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10020:25:0;;;:34;;;;;;;;;;:47;;;;:::i;:::-;9988:8;:80::i;16368:137::-;16449:5;;-1:-1:-1;;;;;16449:5:0;16435:10;:19;16427:42;;;;-1:-1:-1;;;16427:42:0;;;;;;;:::i;:::-;16480:17;16486:2;16490:6;16480:5;:17::i;:::-;16368:137;;:::o;16517:80::-;16564:25;16570:10;16582:6;16564:5;:25::i;:::-;16517:80;:::o;7455:127::-;-1:-1:-1;;;;;7556:18:0;;7529:7;7556:18;;;;;;;;;;;7455:127;;;;:::o;6383:104::-;6439:13;6472:7;6465:14;;;;;:::i;10601:413::-;10694:4;10711:24;10738:11;:25;10750:12;:10;:12::i;:::-;-1:-1:-1;;;;;10738:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;10738:25:0;;;:34;;;;;;;;;;;-1:-1:-1;10791:35:0;;;;10783:85;;;;-1:-1:-1;;;10783:85:0;;;;;;;:::i;:::-;10904:67;10913:12;:10;:12::i;:::-;10927:7;10955:15;10936:16;:34;10904:8;:67::i;:::-;-1:-1:-1;11002:4:0;;10601:413;-1:-1:-1;;;10601:413:0:o;7795:175::-;7881:4;7898:42;7908:12;:10;:12::i;:::-;7922:9;7933:6;7898:9;:42::i;8033:151::-;-1:-1:-1;;;;;8149:18:0;;;8122:7;8149:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8033:151::o;16196:20::-;;;-1:-1:-1;;;;;16196:20:0;;:::o;3947:98::-;4027:10;3947:98;:::o;14285:380::-;-1:-1:-1;;;;;14421:19:0;;14413:68;;;;-1:-1:-1;;;14413:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14500:21:0;;14492:68;;;;-1:-1:-1;;;14492:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14573:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;14625:32;;;;;14603:6;;14625:32;:::i;:::-;;;;;;;;14285:380;;;:::o;11504:733::-;-1:-1:-1;;;;;11644:20:0;;11636:70;;;;-1:-1:-1;;;11636:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11725:23:0;;11717:71;;;;-1:-1:-1;;;11717:71:0;;;;;;;:::i;:::-;11801:47;11822:6;11830:9;11841:6;11801:20;:47::i;:::-;-1:-1:-1;;;;;11885:17:0;;11861:21;11885:17;;;;;;;;;;;11921:23;;;;11913:74;;;;-1:-1:-1;;;11913:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12023:17:0;;;:9;:17;;;;;;;;;;;12043:22;;;12023:42;;12087:20;;;;;;;;:30;;12059:6;;12023:9;12087:30;;12059:6;;12087:30;:::i;:::-;;;;;;;;12152:9;-1:-1:-1;;;;;12135:35:0;12144:6;-1:-1:-1;;;;;12135:35:0;;12163:6;12135:35;;;;;;:::i;:::-;;;;;;;;12183:46;12203:6;12211:9;12222:6;12183:19;:46::i;:::-;11504:733;;;;:::o;12524:399::-;-1:-1:-1;;;;;12608:21:0;;12600:65;;;;-1:-1:-1;;;12600:65:0;;;;;;;:::i;:::-;12678:49;12707:1;12711:7;12720:6;12678:20;:49::i;:::-;12756:6;12740:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;12773:18:0;;:9;:18;;;;;;;;;;:28;;12795:6;;12773:9;:28;;12795:6;;12773:28;:::i;:::-;;;;-1:-1:-1;;12817:37:0;;-1:-1:-1;;;;;12817:37:0;;;12834:1;;12817:37;;;;12847:6;;12817:37;:::i;:::-;;;;;;;;12867:48;12895:1;12899:7;12908:6;12867:19;:48::i;13256:591::-;-1:-1:-1;;;;;13340:21:0;;13332:67;;;;-1:-1:-1;;;13332:67:0;;;;;;;:::i;:::-;13412:49;13433:7;13450:1;13454:6;13412:20;:49::i;:::-;-1:-1:-1;;;;;13499:18:0;;13474:22;13499:18;;;;;;;;;;;13536:24;;;;13528:71;;;;-1:-1:-1;;;13528:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;13635:18:0;;:9;:18;;;;;;;;;;13656:23;;;13635:44;;13701:12;:22;;13673:6;;13635:9;13701:22;;13673:6;;13701:22;:::i;:::-;;;;-1:-1:-1;;13741:37:0;;13767:1;;-1:-1:-1;;;;;13741:37:0;;;;;;;13771:6;;13741:37;:::i;:::-;;;;;;;;13791:48;13811:7;13828:1;13832:6;13791:48;13256:591;;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;:::-;345:41;264:128;-1:-1:-1;;;264:128:1:o;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:1:o;1294:190::-;;1406:2;1394:9;1385:7;1381:23;1377:32;1374:2;;;1427:6;1419;1412:22;1374:2;-1:-1:-1;1455:23:1;;1364:120;-1:-1:-1;1364:120:1:o;1489:203::-;-1:-1:-1;;;;;1653:32:1;;;;1635:51;;1623:2;1608:18;;1590:102::o;1697:187::-;1862:14;;1855:22;1837:41;;1825:2;1810:18;;1792:92::o;1889:603::-;;2030:2;2059;2048:9;2041:21;2091:6;2085:13;2134:6;2129:2;2118:9;2114:18;2107:34;2159:4;2172:140;2186:6;2183:1;2180:13;2172:140;;;2281:14;;;2277:23;;2271:30;2247:17;;;2266:2;2243:26;2236:66;2201:10;;2172:140;;;2330:6;2327:1;2324:13;2321:2;;;2400:4;2395:2;2386:6;2375:9;2371:22;2367:31;2360:45;2321:2;-1:-1:-1;2476:2:1;2455:15;-1:-1:-1;;2451:29:1;2436:45;;;;2483:2;2432:54;;2010:482;-1:-1:-1;;;2010:482:1:o;2497:399::-;2699:2;2681:21;;;2738:2;2718:18;;;2711:30;2777:34;2772:2;2757:18;;2750:62;-1:-1:-1;;;2843:2:1;2828:18;;2821:33;2886:3;2871:19;;2671:225::o;2901:398::-;3103:2;3085:21;;;3142:2;3122:18;;;3115:30;3181:34;3176:2;3161:18;;3154:62;-1:-1:-1;;;3247:2:1;3232:18;;3225:32;3289:3;3274:19;;3075:224::o;3304:398::-;3506:2;3488:21;;;3545:2;3525:18;;;3518:30;3584:34;3579:2;3564:18;;3557:62;-1:-1:-1;;;3650:2:1;3635:18;;3628:32;3692:3;3677:19;;3478:224::o;3707:402::-;3909:2;3891:21;;;3948:2;3928:18;;;3921:30;3987:34;3982:2;3967:18;;3960:62;-1:-1:-1;;;4053:2:1;4038:18;;4031:36;4099:3;4084:19;;3881:228::o;4114:334::-;4316:2;4298:21;;;4355:2;4335:18;;;4328:30;-1:-1:-1;;;4389:2:1;4374:18;;4367:40;4439:2;4424:18;;4288:160::o;4453:404::-;4655:2;4637:21;;;4694:2;4674:18;;;4667:30;4733:34;4728:2;4713:18;;4706:62;-1:-1:-1;;;4799:2:1;4784:18;;4777:38;4847:3;4832:19;;4627:230::o;4862:397::-;5064:2;5046:21;;;5103:2;5083:18;;;5076:30;5142:34;5137:2;5122:18;;5115:62;-1:-1:-1;;;5208:2:1;5193:18;;5186:31;5249:3;5234:19;;5036:223::o;5264:401::-;5466:2;5448:21;;;5505:2;5485:18;;;5478:30;5544:34;5539:2;5524:18;;5517:62;-1:-1:-1;;;5610:2:1;5595:18;;5588:35;5655:3;5640:19;;5438:227::o;5670:400::-;5872:2;5854:21;;;5911:2;5891:18;;;5884:30;5950:34;5945:2;5930:18;;5923:62;-1:-1:-1;;;6016:2:1;6001:18;;5994:34;6060:3;6045:19;;5844:226::o;6075:401::-;6277:2;6259:21;;;6316:2;6296:18;;;6289:30;6355:34;6350:2;6335:18;;6328:62;-1:-1:-1;;;6421:2:1;6406:18;;6399:35;6466:3;6451:19;;6249:227::o;6481:355::-;6683:2;6665:21;;;6722:2;6702:18;;;6695:30;6761:33;6756:2;6741:18;;6734:61;6827:2;6812:18;;6655:181::o;6841:177::-;6987:25;;;6975:2;6960:18;;6942:76::o;7023:184::-;7195:4;7183:17;;;;7165:36;;7153:2;7138:18;;7120:87::o;7212:128::-;;7283:1;7279:6;7276:1;7273:13;7270:2;;;7289:18;;:::i;:::-;-1:-1:-1;7325:9:1;;7260:80::o;7345:125::-;;7413:1;7410;7407:8;7404:2;;;7418:18;;:::i;:::-;-1:-1:-1;7455:9:1;;7394:76::o;7475:380::-;7560:1;7550:12;;7607:1;7597:12;;;7618:2;;7672:4;7664:6;7660:17;7650:27;;7618:2;7725;7717:6;7714:14;7694:18;7691:38;7688:2;;;7771:10;7766:3;7762:20;7759:1;7752:31;7806:4;7803:1;7796:15;7834:4;7831:1;7824:15;7688:2;;7530:325;;;:::o;7860:127::-;7921:10;7916:3;7912:20;7909:1;7902:31;7952:4;7949:1;7942:15;7976:4;7973:1;7966:15

Swarm Source

ipfs://506f6b198e46ee7869060709ccfc995582b7fd6a28804661b3db2e5f27db9104
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.