ETH Price: $3,083.53 (-1.14%)
Gas: 2 Gwei

Token

Currencycoin.heni.live (CRNCY)
 

Overview

Max Total Supply

17,000,000 CRNCY

Holders

371

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
punk5098.eth
Balance
10,000 CRNCY

Value
$0.00
0x69F254C7bd1Fa6a0142CF3f29b2386899Ee1C829
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:
TheCurrency

Compiler Version
v0.8.5+commit.a4f2e591

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2022-07-29
*/

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

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;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

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.openzeppelin.com/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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, 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}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, 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) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, 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) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, 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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - 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 {}
}

// File: token.sol



pragma solidity ^0.8.5;


contract TheCurrency is ERC20 {
    address public admin ;
    constructor() ERC20("Currencycoin.heni.live", "CRNCY"){
        _mint(msg.sender, 17000000 * 10 ** 18);
        admin = msg.sender ;
    }

}

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":[],"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":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280601681526020017f43757272656e6379636f696e2e68656e692e6c697665000000000000000000008152506040518060400160405280600581526020017f43524e43590000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200028e565b508060049080519060200190620000af9291906200028e565b505050620000cf336a0e0fe3d8bb9bc7b10000006200011660201b60201c565b33600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004ea565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000189576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001809062000376565b60405180910390fd5b6200019d600083836200028460201b60201c565b8060026000828254620001b19190620003c6565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000264919062000398565b60405180910390a362000280600083836200028960201b60201c565b5050565b505050565b505050565b8280546200029c906200042d565b90600052602060002090601f016020900481019282620002c057600085556200030c565b82601f10620002db57805160ff19168380011785556200030c565b828001600101855582156200030c579182015b828111156200030b578251825591602001919060010190620002ee565b5b5090506200031b91906200031f565b5090565b5b808211156200033a57600081600090555060010162000320565b5090565b60006200034d601f83620003b5565b91506200035a82620004c1565b602082019050919050565b620003708162000423565b82525050565b6000602082019050818103600083015262000391816200033e565b9050919050565b6000602082019050620003af600083018462000365565b92915050565b600082825260208201905092915050565b6000620003d38262000423565b9150620003e08362000423565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000418576200041762000463565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200044657607f821691505b602082108114156200045d576200045c62000492565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6112d880620004fa6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101a357806395d89b41146101d3578063a457c2d7146101f1578063a9059cbb14610221578063dd62ed3e14610251578063f851a44014610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029f565b6040516100ce9190610d99565b60405180910390f35b6100f160048036038101906100ec9190610bb9565b610331565b6040516100fe9190610d7e565b60405180910390f35b61010f610354565b60405161011c9190610e9b565b60405180910390f35b61013f600480360381019061013a9190610b66565b61035e565b60405161014c9190610d7e565b60405180910390f35b61015d61038d565b60405161016a9190610eb6565b60405180910390f35b61018d60048036038101906101889190610bb9565b610396565b60405161019a9190610d7e565b60405180910390f35b6101bd60048036038101906101b89190610af9565b6103cd565b6040516101ca9190610e9b565b60405180910390f35b6101db610415565b6040516101e89190610d99565b60405180910390f35b61020b60048036038101906102069190610bb9565b6104a7565b6040516102189190610d7e565b60405180910390f35b61023b60048036038101906102369190610bb9565b61051e565b6040516102489190610d7e565b60405180910390f35b61026b60048036038101906102669190610b26565b610541565b6040516102789190610e9b565b60405180910390f35b6102896105c8565b6040516102969190610d63565b60405180910390f35b6060600380546102ae90610fcb565b80601f01602080910402602001604051908101604052809291908181526020018280546102da90610fcb565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b60008061033c6105ee565b90506103498185856105f6565b600191505092915050565b6000600254905090565b6000806103696105ee565b90506103768582856107c1565b61038185858561084d565b60019150509392505050565b60006012905090565b6000806103a16105ee565b90506103c28185856103b38589610541565b6103bd9190610eed565b6105f6565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461042490610fcb565b80601f016020809104026020016040519081016040528092919081815260200182805461045090610fcb565b801561049d5780601f106104725761010080835404028352916020019161049d565b820191906000526020600020905b81548152906001019060200180831161048057829003601f168201915b5050505050905090565b6000806104b26105ee565b905060006104c08286610541565b905083811015610505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fc90610e7b565b60405180910390fd5b61051282868684036105f6565b60019250505092915050565b6000806105296105ee565b905061053681858561084d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90610e5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd90610ddb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107b49190610e9b565b60405180910390a3505050565b60006107cd8484610541565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108475781811015610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090610dfb565b60405180910390fd5b61084684848484036105f6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b490610e3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561092d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092490610dbb565b60405180910390fd5b610938838383610ac5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590610e1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aac9190610e9b565b60405180910390a3610abf848484610aca565b50505050565b505050565b505050565b600081359050610ade81611274565b92915050565b600081359050610af38161128b565b92915050565b600060208284031215610b0f57610b0e61105b565b5b6000610b1d84828501610acf565b91505092915050565b60008060408385031215610b3d57610b3c61105b565b5b6000610b4b85828601610acf565b9250506020610b5c85828601610acf565b9150509250929050565b600080600060608486031215610b7f57610b7e61105b565b5b6000610b8d86828701610acf565b9350506020610b9e86828701610acf565b9250506040610baf86828701610ae4565b9150509250925092565b60008060408385031215610bd057610bcf61105b565b5b6000610bde85828601610acf565b9250506020610bef85828601610ae4565b9150509250929050565b610c0281610f43565b82525050565b610c1181610f55565b82525050565b6000610c2282610ed1565b610c2c8185610edc565b9350610c3c818560208601610f98565b610c4581611060565b840191505092915050565b6000610c5d602383610edc565b9150610c6882611071565b604082019050919050565b6000610c80602283610edc565b9150610c8b826110c0565b604082019050919050565b6000610ca3601d83610edc565b9150610cae8261110f565b602082019050919050565b6000610cc6602683610edc565b9150610cd182611138565b604082019050919050565b6000610ce9602583610edc565b9150610cf482611187565b604082019050919050565b6000610d0c602483610edc565b9150610d17826111d6565b604082019050919050565b6000610d2f602583610edc565b9150610d3a82611225565b604082019050919050565b610d4e81610f81565b82525050565b610d5d81610f8b565b82525050565b6000602082019050610d786000830184610bf9565b92915050565b6000602082019050610d936000830184610c08565b92915050565b60006020820190508181036000830152610db38184610c17565b905092915050565b60006020820190508181036000830152610dd481610c50565b9050919050565b60006020820190508181036000830152610df481610c73565b9050919050565b60006020820190508181036000830152610e1481610c96565b9050919050565b60006020820190508181036000830152610e3481610cb9565b9050919050565b60006020820190508181036000830152610e5481610cdc565b9050919050565b60006020820190508181036000830152610e7481610cff565b9050919050565b60006020820190508181036000830152610e9481610d22565b9050919050565b6000602082019050610eb06000830184610d45565b92915050565b6000602082019050610ecb6000830184610d54565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610ef882610f81565b9150610f0383610f81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610f3857610f37610ffd565b5b828201905092915050565b6000610f4e82610f61565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015610fb6578082015181840152602081019050610f9b565b83811115610fc5576000848401525b50505050565b60006002820490506001821680610fe357607f821691505b60208210811415610ff757610ff661102c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61127d81610f43565b811461128857600080fd5b50565b61129481610f81565b811461129f57600080fd5b5056fea264697066735822122035a93711c28e624fa1efbf156d0cabc10d9b8ce8335d44fb8abe6e2e3f4141c864736f6c63430008050033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806370a082311161007157806370a08231146101a357806395d89b41146101d3578063a457c2d7146101f1578063a9059cbb14610221578063dd62ed3e14610251578063f851a44014610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c161029f565b6040516100ce9190610d99565b60405180910390f35b6100f160048036038101906100ec9190610bb9565b610331565b6040516100fe9190610d7e565b60405180910390f35b61010f610354565b60405161011c9190610e9b565b60405180910390f35b61013f600480360381019061013a9190610b66565b61035e565b60405161014c9190610d7e565b60405180910390f35b61015d61038d565b60405161016a9190610eb6565b60405180910390f35b61018d60048036038101906101889190610bb9565b610396565b60405161019a9190610d7e565b60405180910390f35b6101bd60048036038101906101b89190610af9565b6103cd565b6040516101ca9190610e9b565b60405180910390f35b6101db610415565b6040516101e89190610d99565b60405180910390f35b61020b60048036038101906102069190610bb9565b6104a7565b6040516102189190610d7e565b60405180910390f35b61023b60048036038101906102369190610bb9565b61051e565b6040516102489190610d7e565b60405180910390f35b61026b60048036038101906102669190610b26565b610541565b6040516102789190610e9b565b60405180910390f35b6102896105c8565b6040516102969190610d63565b60405180910390f35b6060600380546102ae90610fcb565b80601f01602080910402602001604051908101604052809291908181526020018280546102da90610fcb565b80156103275780601f106102fc57610100808354040283529160200191610327565b820191906000526020600020905b81548152906001019060200180831161030a57829003601f168201915b5050505050905090565b60008061033c6105ee565b90506103498185856105f6565b600191505092915050565b6000600254905090565b6000806103696105ee565b90506103768582856107c1565b61038185858561084d565b60019150509392505050565b60006012905090565b6000806103a16105ee565b90506103c28185856103b38589610541565b6103bd9190610eed565b6105f6565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461042490610fcb565b80601f016020809104026020016040519081016040528092919081815260200182805461045090610fcb565b801561049d5780601f106104725761010080835404028352916020019161049d565b820191906000526020600020905b81548152906001019060200180831161048057829003601f168201915b5050505050905090565b6000806104b26105ee565b905060006104c08286610541565b905083811015610505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104fc90610e7b565b60405180910390fd5b61051282868684036105f6565b60019250505092915050565b6000806105296105ee565b905061053681858561084d565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610666576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065d90610e5b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156106d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cd90610ddb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516107b49190610e9b565b60405180910390a3505050565b60006107cd8484610541565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146108475781811015610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090610dfb565b60405180910390fd5b61084684848484036105f6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b490610e3b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561092d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092490610dbb565b60405180910390fd5b610938838383610ac5565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590610e1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610aac9190610e9b565b60405180910390a3610abf848484610aca565b50505050565b505050565b505050565b600081359050610ade81611274565b92915050565b600081359050610af38161128b565b92915050565b600060208284031215610b0f57610b0e61105b565b5b6000610b1d84828501610acf565b91505092915050565b60008060408385031215610b3d57610b3c61105b565b5b6000610b4b85828601610acf565b9250506020610b5c85828601610acf565b9150509250929050565b600080600060608486031215610b7f57610b7e61105b565b5b6000610b8d86828701610acf565b9350506020610b9e86828701610acf565b9250506040610baf86828701610ae4565b9150509250925092565b60008060408385031215610bd057610bcf61105b565b5b6000610bde85828601610acf565b9250506020610bef85828601610ae4565b9150509250929050565b610c0281610f43565b82525050565b610c1181610f55565b82525050565b6000610c2282610ed1565b610c2c8185610edc565b9350610c3c818560208601610f98565b610c4581611060565b840191505092915050565b6000610c5d602383610edc565b9150610c6882611071565b604082019050919050565b6000610c80602283610edc565b9150610c8b826110c0565b604082019050919050565b6000610ca3601d83610edc565b9150610cae8261110f565b602082019050919050565b6000610cc6602683610edc565b9150610cd182611138565b604082019050919050565b6000610ce9602583610edc565b9150610cf482611187565b604082019050919050565b6000610d0c602483610edc565b9150610d17826111d6565b604082019050919050565b6000610d2f602583610edc565b9150610d3a82611225565b604082019050919050565b610d4e81610f81565b82525050565b610d5d81610f8b565b82525050565b6000602082019050610d786000830184610bf9565b92915050565b6000602082019050610d936000830184610c08565b92915050565b60006020820190508181036000830152610db38184610c17565b905092915050565b60006020820190508181036000830152610dd481610c50565b9050919050565b60006020820190508181036000830152610df481610c73565b9050919050565b60006020820190508181036000830152610e1481610c96565b9050919050565b60006020820190508181036000830152610e3481610cb9565b9050919050565b60006020820190508181036000830152610e5481610cdc565b9050919050565b60006020820190508181036000830152610e7481610cff565b9050919050565b60006020820190508181036000830152610e9481610d22565b9050919050565b6000602082019050610eb06000830184610d45565b92915050565b6000602082019050610ecb6000830184610d54565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610ef882610f81565b9150610f0383610f81565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610f3857610f37610ffd565b5b828201905092915050565b6000610f4e82610f61565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015610fb6578082015181840152602081019050610f9b565b83811115610fc5576000848401525b50505050565b60006002820490506001821680610fe357607f821691505b60208210811415610ff757610ff661102c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61127d81610f43565b811461128857600080fd5b50565b61129481610f81565b811461129f57600080fd5b5056fea264697066735822122035a93711c28e624fa1efbf156d0cabc10d9b8ce8335d44fb8abe6e2e3f4141c864736f6c63430008050033

Deployed Bytecode Sourcemap

18106:211:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6863:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9214:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7983:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9995:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7825:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10699:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8154:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7082:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11440:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8487:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8743:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18143:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6863:100;6917:13;6950:5;6943:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6863:100;:::o;9214:201::-;9297:4;9314:13;9330:12;:10;:12::i;:::-;9314:28;;9353:32;9362:5;9369:7;9378:6;9353:8;:32::i;:::-;9403:4;9396:11;;;9214:201;;;;:::o;7983:108::-;8044:7;8071:12;;8064:19;;7983:108;:::o;9995:295::-;10126:4;10143:15;10161:12;:10;:12::i;:::-;10143:30;;10184:38;10200:4;10206:7;10215:6;10184:15;:38::i;:::-;10233:27;10243:4;10249:2;10253:6;10233:9;:27::i;:::-;10278:4;10271:11;;;9995:295;;;;;:::o;7825:93::-;7883:5;7908:2;7901:9;;7825:93;:::o;10699:238::-;10787:4;10804:13;10820:12;:10;:12::i;:::-;10804:28;;10843:64;10852:5;10859:7;10896:10;10868:25;10878:5;10885:7;10868:9;:25::i;:::-;:38;;;;:::i;:::-;10843:8;:64::i;:::-;10925:4;10918:11;;;10699:238;;;;:::o;8154:127::-;8228:7;8255:9;:18;8265:7;8255:18;;;;;;;;;;;;;;;;8248:25;;8154:127;;;:::o;7082:104::-;7138:13;7171:7;7164:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7082:104;:::o;11440:436::-;11533:4;11550:13;11566:12;:10;:12::i;:::-;11550:28;;11589:24;11616:25;11626:5;11633:7;11616:9;:25::i;:::-;11589:52;;11680:15;11660:16;:35;;11652:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11773:60;11782:5;11789:7;11817:15;11798:16;:34;11773:8;:60::i;:::-;11864:4;11857:11;;;;11440:436;;;;:::o;8487:193::-;8566:4;8583:13;8599:12;:10;:12::i;:::-;8583:28;;8622;8632:5;8639:2;8643:6;8622:9;:28::i;:::-;8668:4;8661:11;;;8487:193;;;;:::o;8743:151::-;8832:7;8859:11;:18;8871:5;8859:18;;;;;;;;;;;;;;;:27;8878:7;8859:27;;;;;;;;;;;;;;;;8852:34;;8743:151;;;;:::o;18143:20::-;;;;;;;;;;;;;:::o;732:98::-;785:7;812:10;805:17;;732:98;:::o;15467:380::-;15620:1;15603:19;;:5;:19;;;;15595:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15701:1;15682:21;;:7;:21;;;;15674:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15785:6;15755:11;:18;15767:5;15755:18;;;;;;;;;;;;;;;:27;15774:7;15755:27;;;;;;;;;;;;;;;:36;;;;15823:7;15807:32;;15816:5;15807:32;;;15832:6;15807:32;;;;;;:::i;:::-;;;;;;;;15467:380;;;:::o;16138:453::-;16273:24;16300:25;16310:5;16317:7;16300:9;:25::i;:::-;16273:52;;16360:17;16340:16;:37;16336:248;;16422:6;16402:16;:26;;16394:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16506:51;16515:5;16522:7;16550:6;16531:16;:25;16506:8;:51::i;:::-;16336:248;16262:329;16138:453;;;:::o;12346:840::-;12493:1;12477:18;;:4;:18;;;;12469:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12570:1;12556:16;;:2;:16;;;;12548:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12625:38;12646:4;12652:2;12656:6;12625:20;:38::i;:::-;12676:19;12698:9;:15;12708:4;12698:15;;;;;;;;;;;;;;;;12676:37;;12747:6;12732:11;:21;;12724:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12864:6;12850:11;:20;12832:9;:15;12842:4;12832:15;;;;;;;;;;;;;;;:38;;;;13067:6;13050:9;:13;13060:2;13050:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13117:2;13102:26;;13111:4;13102:26;;;13121:6;13102:26;;;;;;:::i;:::-;;;;;;;;13141:37;13161:4;13167:2;13171:6;13141:19;:37::i;:::-;12458:728;12346:840;;;:::o;17191:125::-;;;;:::o;17920:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:2;;;411:79;;:::i;:::-;373:2;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;363:263;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:2;;;763:79;;:::i;:::-;725:2;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;715:391;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:2;;;1260:79;;:::i;:::-;1222:2;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1212:519;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:2;;;1868:79;;:::i;:::-;1830:2;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1820:391;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2972:220;;;:::o;3198:366::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3344:220;;;:::o;3570:366::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3716:220;;;:::o;3942:366::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;4088:220;;;:::o;4314:366::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4460:220;;;:::o;4686:366::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4832:220;;;:::o;5058:366::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5204:220;;;:::o;5430:118::-;5517:24;5535:5;5517:24;:::i;:::-;5512:3;5505:37;5495:53;;:::o;5554:112::-;5637:22;5653:5;5637:22;:::i;:::-;5632:3;5625:35;5615:51;;:::o;5672:222::-;5765:4;5803:2;5792:9;5788:18;5780:26;;5816:71;5884:1;5873:9;5869:17;5860:6;5816:71;:::i;:::-;5770:124;;;;:::o;5900:210::-;5987:4;6025:2;6014:9;6010:18;6002:26;;6038:65;6100:1;6089:9;6085:17;6076:6;6038:65;:::i;:::-;5992:118;;;;:::o;6116:313::-;6229:4;6267:2;6256:9;6252:18;6244:26;;6316:9;6310:4;6306:20;6302:1;6291:9;6287:17;6280:47;6344:78;6417:4;6408:6;6344:78;:::i;:::-;6336:86;;6234:195;;;;:::o;6435:419::-;6601:4;6639:2;6628:9;6624:18;6616:26;;6688:9;6682:4;6678:20;6674:1;6663:9;6659:17;6652:47;6716:131;6842:4;6716:131;:::i;:::-;6708:139;;6606:248;;;:::o;6860:419::-;7026:4;7064:2;7053:9;7049:18;7041:26;;7113:9;7107:4;7103:20;7099:1;7088:9;7084:17;7077:47;7141:131;7267:4;7141:131;:::i;:::-;7133:139;;7031:248;;;:::o;7285:419::-;7451:4;7489:2;7478:9;7474:18;7466:26;;7538:9;7532:4;7528:20;7524:1;7513:9;7509:17;7502:47;7566:131;7692:4;7566:131;:::i;:::-;7558:139;;7456:248;;;:::o;7710:419::-;7876:4;7914:2;7903:9;7899:18;7891:26;;7963:9;7957:4;7953:20;7949:1;7938:9;7934:17;7927:47;7991:131;8117:4;7991:131;:::i;:::-;7983:139;;7881:248;;;:::o;8135:419::-;8301:4;8339:2;8328:9;8324:18;8316:26;;8388:9;8382:4;8378:20;8374:1;8363:9;8359:17;8352:47;8416:131;8542:4;8416:131;:::i;:::-;8408:139;;8306:248;;;:::o;8560:419::-;8726:4;8764:2;8753:9;8749:18;8741:26;;8813:9;8807:4;8803:20;8799:1;8788:9;8784:17;8777:47;8841:131;8967:4;8841:131;:::i;:::-;8833:139;;8731:248;;;:::o;8985:419::-;9151:4;9189:2;9178:9;9174:18;9166:26;;9238:9;9232:4;9228:20;9224:1;9213:9;9209:17;9202:47;9266:131;9392:4;9266:131;:::i;:::-;9258:139;;9156:248;;;:::o;9410:222::-;9503:4;9541:2;9530:9;9526:18;9518:26;;9554:71;9622:1;9611:9;9607:17;9598:6;9554:71;:::i;:::-;9508:124;;;;:::o;9638:214::-;9727:4;9765:2;9754:9;9750:18;9742:26;;9778:67;9842:1;9831:9;9827:17;9818:6;9778:67;:::i;:::-;9732:120;;;;:::o;9939:99::-;9991:6;10025:5;10019:12;10009:22;;9998:40;;;:::o;10044:169::-;10128:11;10162:6;10157:3;10150:19;10202:4;10197:3;10193:14;10178:29;;10140:73;;;;:::o;10219:305::-;10259:3;10278:20;10296:1;10278:20;:::i;:::-;10273:25;;10312:20;10330:1;10312:20;:::i;:::-;10307:25;;10466:1;10398:66;10394:74;10391:1;10388:81;10385:2;;;10472:18;;:::i;:::-;10385:2;10516:1;10513;10509:9;10502:16;;10263:261;;;;:::o;10530:96::-;10567:7;10596:24;10614:5;10596:24;:::i;:::-;10585:35;;10575:51;;;:::o;10632:90::-;10666:7;10709:5;10702:13;10695:21;10684:32;;10674:48;;;:::o;10728:126::-;10765:7;10805:42;10798:5;10794:54;10783:65;;10773:81;;;:::o;10860:77::-;10897:7;10926:5;10915:16;;10905:32;;;:::o;10943:86::-;10978:7;11018:4;11011:5;11007:16;10996:27;;10986:43;;;:::o;11035:307::-;11103:1;11113:113;11127:6;11124:1;11121:13;11113:113;;;11212:1;11207:3;11203:11;11197:18;11193:1;11188:3;11184:11;11177:39;11149:2;11146:1;11142:10;11137:15;;11113:113;;;11244:6;11241:1;11238:13;11235:2;;;11324:1;11315:6;11310:3;11306:16;11299:27;11235:2;11084:258;;;;:::o;11348:320::-;11392:6;11429:1;11423:4;11419:12;11409:22;;11476:1;11470:4;11466:12;11497:18;11487:2;;11553:4;11545:6;11541:17;11531:27;;11487:2;11615;11607:6;11604:14;11584:18;11581:38;11578:2;;;11634:18;;:::i;:::-;11578:2;11399:269;;;;:::o;11674:180::-;11722:77;11719:1;11712:88;11819:4;11816:1;11809:15;11843:4;11840:1;11833:15;11860:180;11908:77;11905:1;11898:88;12005:4;12002:1;11995:15;12029:4;12026:1;12019:15;12169:117;12278:1;12275;12268:12;12292:102;12333:6;12384:2;12380:7;12375:2;12368:5;12364:14;12360:28;12350:38;;12340:54;;;:::o;12400:222::-;12540:34;12536:1;12528:6;12524:14;12517:58;12609:5;12604:2;12596:6;12592:15;12585:30;12506:116;:::o;12628:221::-;12768:34;12764:1;12756:6;12752:14;12745:58;12837:4;12832:2;12824:6;12820:15;12813:29;12734:115;:::o;12855:179::-;12995:31;12991:1;12983:6;12979:14;12972:55;12961:73;:::o;13040:225::-;13180:34;13176:1;13168:6;13164:14;13157:58;13249:8;13244:2;13236:6;13232:15;13225:33;13146:119;:::o;13271:224::-;13411:34;13407:1;13399:6;13395:14;13388:58;13480:7;13475:2;13467:6;13463:15;13456:32;13377:118;:::o;13501:223::-;13641:34;13637:1;13629:6;13625:14;13618:58;13710:6;13705:2;13697:6;13693:15;13686:31;13607:117;:::o;13730:224::-;13870:34;13866:1;13858:6;13854:14;13847:58;13939:7;13934:2;13926:6;13922:15;13915:32;13836:118;:::o;13960:122::-;14033:24;14051:5;14033:24;:::i;:::-;14026:5;14023:35;14013:2;;14072:1;14069;14062:12;14013:2;14003:79;:::o;14088:122::-;14161:24;14179:5;14161:24;:::i;:::-;14154:5;14151:35;14141:2;;14200:1;14197;14190:12;14141:2;14131:79;:::o

Swarm Source

ipfs://35a93711c28e624fa1efbf156d0cabc10d9b8ce8335d44fb8abe6e2e3f4141c8
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.