ETH Price: $2,145.54 (-2.98%)

Token

ROTDOG (ROT)
 

Overview

Max Total Supply

21,000,000,000 ROT

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
moonjeet.eth
Balance
94,816,156.520806820265693006 ROT

Value
$0.00
0x071108b08ba8ced39f331a2b565ecd923b7aceb4
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:
ROT

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
No with 200 runs

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

// SPDX-License-Identifier: MIT
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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}



/**
 * @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);
}



/**
 * @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 guidelines: functions revert instead
 * of 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 {
    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 defaut value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All three 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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
     * overloaded;
     *
     * 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 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);
        _approve(sender, _msgSender(), 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");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(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:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 to 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 { }
}


contract ROT is ERC20 {
    
    
    // ------------------------------------------------------------------------
    // Constructor
    // ------------------------------------------------------------------------
    constructor() ERC20("ROTDOG", "ROT") {
        _mint(msg.sender, 21000000000000000000000000000);
    }
    
    
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        uint amountToDonate = (amount)/100;
        uint amountToSend = amount - amountToDonate;
        bool success = super.transfer(recipient, amountToSend);
        if(success == true) {
            if(amount > 0){
                super.transfer(0xE3bB3F8f77A7EE9C8302cE539f403fF01748EB89, amountToDonate);
            }
            return true;
        }
        return false;
    }
}

Contract Security Audit

Contract ABI

API
[{"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":[{"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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f524f54444f4700000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f524f54000000000000000000000000000000000000000000000000000000000081525081600390805190602001906200009692919062000240565b508060049080519060200190620000af92919062000240565b505050620000d0336b43dacaf91c1a84ff08000000620000d660201b60201c565b6200049c565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000149576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001409062000328565b60405180910390fd5b6200015d600083836200023b60201b60201c565b806002600082825462000171919062000378565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001c8919062000378565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200022f91906200034a565b60405180910390a35050565b505050565b8280546200024e90620003df565b90600052602060002090601f016020900481019282620002725760008555620002be565b82601f106200028d57805160ff1916838001178555620002be565b82800160010185558215620002be579182015b82811115620002bd578251825591602001919060010190620002a0565b5b509050620002cd9190620002d1565b5090565b5b80821115620002ec576000816000905550600101620002d2565b5090565b6000620002ff601f8362000367565b91506200030c8262000473565b602082019050919050565b6200032281620003d5565b82525050565b600060208201905081810360008301526200034381620002f0565b9050919050565b600060208201905062000361600083018462000317565b92915050565b600082825260208201905092915050565b60006200038582620003d5565b91506200039283620003d5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003ca57620003c962000415565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620003f857607f821691505b602082108114156200040f576200040e62000444565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61134b80620004ac6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610dc6565b60405180910390f35b6100e660048036038101906100e19190610c37565b610308565b6040516100f39190610dab565b60405180910390f35b610104610326565b6040516101119190610ea8565b60405180910390f35b610134600480360381019061012f9190610be8565b610330565b6040516101419190610dab565b60405180910390f35b61015261035a565b60405161015f9190610ec3565b60405180910390f35b610182600480360381019061017d9190610c37565b610363565b60405161018f9190610dab565b60405180910390f35b6101b260048036038101906101ad9190610b83565b61040f565b6040516101bf9190610ea8565b60405180910390f35b6101d0610457565b6040516101dd9190610dc6565b60405180910390f35b61020060048036038101906101fb9190610c37565b6104e9565b60405161020d9190610dab565b60405180910390f35b610230600480360381019061022b9190610c37565b6105dd565b60405161023d9190610dab565b60405180910390f35b610260600480360381019061025b9190610bac565b61065d565b60405161026d9190610ea8565b60405180910390f35b6060600380546102859061103d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b19061103d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c6103156106e4565b84846106ec565b6001905092915050565b6000600254905090565b600061033d8484846108b7565b61034f846103496106e4565b846106ec565b600190509392505050565b60006012905090565b60006104056103706106e4565b84846001600061037e6106e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104009190610efa565b6106ec565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104669061103d565b80601f01602080910402602001604051908101604052809291908181526020018280546104929061103d565b80156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b600080600160006104f86106e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac90610e88565b60405180910390fd5b6105d26105c06106e4565b8585846105cd9190610f81565b6106ec565b600191505092915050565b6000806064836105ed9190610f50565b9050600081846105fd9190610f81565b9050600061060b8683610b36565b905060011515811515141561064f5760008511156106435761064173e3bb3f8f77a7ee9c8302ce539f403ff01748eb8984610b36565b505b60019350505050610657565b600093505050505b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390610e68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c390610e08565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108aa9190610ea8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90610e48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90610de8565b60405180910390fd5b6109a2838383610b54565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90610e28565b60405180910390fd5b8181610a349190610f81565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ac49190610efa565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b289190610ea8565b60405180910390a350505050565b6000610b4a610b436106e4565b84846108b7565b6001905092915050565b505050565b600081359050610b68816112e7565b92915050565b600081359050610b7d816112fe565b92915050565b600060208284031215610b9557600080fd5b6000610ba384828501610b59565b91505092915050565b60008060408385031215610bbf57600080fd5b6000610bcd85828601610b59565b9250506020610bde85828601610b59565b9150509250929050565b600080600060608486031215610bfd57600080fd5b6000610c0b86828701610b59565b9350506020610c1c86828701610b59565b9250506040610c2d86828701610b6e565b9150509250925092565b60008060408385031215610c4a57600080fd5b6000610c5885828601610b59565b9250506020610c6985828601610b6e565b9150509250929050565b610c7c81610fc7565b82525050565b6000610c8d82610ede565b610c978185610ee9565b9350610ca781856020860161100a565b610cb0816110fc565b840191505092915050565b6000610cc8602383610ee9565b9150610cd38261110d565b604082019050919050565b6000610ceb602283610ee9565b9150610cf68261115c565b604082019050919050565b6000610d0e602683610ee9565b9150610d19826111ab565b604082019050919050565b6000610d31602583610ee9565b9150610d3c826111fa565b604082019050919050565b6000610d54602483610ee9565b9150610d5f82611249565b604082019050919050565b6000610d77602583610ee9565b9150610d8282611298565b604082019050919050565b610d9681610ff3565b82525050565b610da581610ffd565b82525050565b6000602082019050610dc06000830184610c73565b92915050565b60006020820190508181036000830152610de08184610c82565b905092915050565b60006020820190508181036000830152610e0181610cbb565b9050919050565b60006020820190508181036000830152610e2181610cde565b9050919050565b60006020820190508181036000830152610e4181610d01565b9050919050565b60006020820190508181036000830152610e6181610d24565b9050919050565b60006020820190508181036000830152610e8181610d47565b9050919050565b60006020820190508181036000830152610ea181610d6a565b9050919050565b6000602082019050610ebd6000830184610d8d565b92915050565b6000602082019050610ed86000830184610d9c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610f0582610ff3565b9150610f1083610ff3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610f4557610f4461106f565b5b828201905092915050565b6000610f5b82610ff3565b9150610f6683610ff3565b925082610f7657610f7561109e565b5b828204905092915050565b6000610f8c82610ff3565b9150610f9783610ff3565b925082821015610faa57610fa961106f565b5b828203905092915050565b6000610fc082610fd3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561102857808201518184015260208101905061100d565b83811115611037576000848401525b50505050565b6000600282049050600182168061105557607f821691505b60208210811415611069576110686110cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6112f081610fb5565b81146112fb57600080fd5b50565b61130781610ff3565b811461131257600080fd5b5056fea264697066735822122041c46df6f1b8156cb6e478e62764e8d38b631738d5f9874f9147cf9271eabfe864736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610dc6565b60405180910390f35b6100e660048036038101906100e19190610c37565b610308565b6040516100f39190610dab565b60405180910390f35b610104610326565b6040516101119190610ea8565b60405180910390f35b610134600480360381019061012f9190610be8565b610330565b6040516101419190610dab565b60405180910390f35b61015261035a565b60405161015f9190610ec3565b60405180910390f35b610182600480360381019061017d9190610c37565b610363565b60405161018f9190610dab565b60405180910390f35b6101b260048036038101906101ad9190610b83565b61040f565b6040516101bf9190610ea8565b60405180910390f35b6101d0610457565b6040516101dd9190610dc6565b60405180910390f35b61020060048036038101906101fb9190610c37565b6104e9565b60405161020d9190610dab565b60405180910390f35b610230600480360381019061022b9190610c37565b6105dd565b60405161023d9190610dab565b60405180910390f35b610260600480360381019061025b9190610bac565b61065d565b60405161026d9190610ea8565b60405180910390f35b6060600380546102859061103d565b80601f01602080910402602001604051908101604052809291908181526020018280546102b19061103d565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c6103156106e4565b84846106ec565b6001905092915050565b6000600254905090565b600061033d8484846108b7565b61034f846103496106e4565b846106ec565b600190509392505050565b60006012905090565b60006104056103706106e4565b84846001600061037e6106e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104009190610efa565b6106ec565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104669061103d565b80601f01602080910402602001604051908101604052809291908181526020018280546104929061103d565b80156104df5780601f106104b4576101008083540402835291602001916104df565b820191906000526020600020905b8154815290600101906020018083116104c257829003601f168201915b5050505050905090565b600080600160006104f86106e4565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ac90610e88565b60405180910390fd5b6105d26105c06106e4565b8585846105cd9190610f81565b6106ec565b600191505092915050565b6000806064836105ed9190610f50565b9050600081846105fd9190610f81565b9050600061060b8683610b36565b905060011515811515141561064f5760008511156106435761064173e3bb3f8f77a7ee9c8302ce539f403ff01748eb8984610b36565b505b60019350505050610657565b600093505050505b92915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561075c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075390610e68565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156107cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c390610e08565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108aa9190610ea8565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610927576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091e90610e48565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610997576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098e90610de8565b60405180910390fd5b6109a2838383610b54565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90610e28565b60405180910390fd5b8181610a349190610f81565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ac49190610efa565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b289190610ea8565b60405180910390a350505050565b6000610b4a610b436106e4565b84846108b7565b6001905092915050565b505050565b600081359050610b68816112e7565b92915050565b600081359050610b7d816112fe565b92915050565b600060208284031215610b9557600080fd5b6000610ba384828501610b59565b91505092915050565b60008060408385031215610bbf57600080fd5b6000610bcd85828601610b59565b9250506020610bde85828601610b59565b9150509250929050565b600080600060608486031215610bfd57600080fd5b6000610c0b86828701610b59565b9350506020610c1c86828701610b59565b9250506040610c2d86828701610b6e565b9150509250925092565b60008060408385031215610c4a57600080fd5b6000610c5885828601610b59565b9250506020610c6985828601610b6e565b9150509250929050565b610c7c81610fc7565b82525050565b6000610c8d82610ede565b610c978185610ee9565b9350610ca781856020860161100a565b610cb0816110fc565b840191505092915050565b6000610cc8602383610ee9565b9150610cd38261110d565b604082019050919050565b6000610ceb602283610ee9565b9150610cf68261115c565b604082019050919050565b6000610d0e602683610ee9565b9150610d19826111ab565b604082019050919050565b6000610d31602583610ee9565b9150610d3c826111fa565b604082019050919050565b6000610d54602483610ee9565b9150610d5f82611249565b604082019050919050565b6000610d77602583610ee9565b9150610d8282611298565b604082019050919050565b610d9681610ff3565b82525050565b610da581610ffd565b82525050565b6000602082019050610dc06000830184610c73565b92915050565b60006020820190508181036000830152610de08184610c82565b905092915050565b60006020820190508181036000830152610e0181610cbb565b9050919050565b60006020820190508181036000830152610e2181610cde565b9050919050565b60006020820190508181036000830152610e4181610d01565b9050919050565b60006020820190508181036000830152610e6181610d24565b9050919050565b60006020820190508181036000830152610e8181610d47565b9050919050565b60006020820190508181036000830152610ea181610d6a565b9050919050565b6000602082019050610ebd6000830184610d8d565b92915050565b6000602082019050610ed86000830184610d9c565b92915050565b600081519050919050565b600082825260208201905092915050565b6000610f0582610ff3565b9150610f1083610ff3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115610f4557610f4461106f565b5b828201905092915050565b6000610f5b82610ff3565b9150610f6683610ff3565b925082610f7657610f7561109e565b5b828204905092915050565b6000610f8c82610ff3565b9150610f9783610ff3565b925082821015610faa57610fa961106f565b5b828203905092915050565b6000610fc082610fd3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561102857808201518184015260208101905061100d565b83811115611037576000848401525b50505050565b6000600282049050600182168061105557607f821691505b60208210811415611069576110686110cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6112f081610fb5565b81146112fb57600080fd5b50565b61130781610ff3565b811461131257600080fd5b5056fea264697066735822122041c46df6f1b8156cb6e478e62764e8d38b631738d5f9874f9147cf9271eabfe864736f6c63430008010033

Deployed Bytecode Sourcemap

14190:840:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5626:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7766:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6719:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8417:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6570:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9066:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6890:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5836:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9784:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14535:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7468:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5626:91;5671:13;5704:5;5697:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5626:91;:::o;7766:169::-;7849:4;7866:39;7875:12;:10;:12::i;:::-;7889:7;7898:6;7866:8;:39::i;:::-;7923:4;7916:11;;7766:169;;;;:::o;6719:108::-;6780:7;6807:12;;6800:19;;6719:108;:::o;8417:240::-;8523:4;8540:36;8550:6;8558:9;8569:6;8540:9;:36::i;:::-;8587:38;8596:6;8604:12;:10;:12::i;:::-;8618:6;8587:8;:38::i;:::-;8645:4;8638:11;;8417:240;;;;;:::o;6570:84::-;6619:5;6644:2;6637:9;;6570:84;:::o;9066:215::-;9154:4;9171:80;9180:12;:10;:12::i;:::-;9194:7;9240:10;9203:11;:25;9215:12;:10;:12::i;:::-;9203:25;;;;;;;;;;;;;;;:34;9229:7;9203:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9171:8;:80::i;:::-;9269:4;9262:11;;9066:215;;;;:::o;6890:127::-;6964:7;6991:9;:18;7001:7;6991:18;;;;;;;;;;;;;;;;6984:25;;6890:127;;;:::o;5836:95::-;5883:13;5916:7;5909:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5836:95;:::o;9784:377::-;9877:4;9894:24;9921:11;:25;9933:12;:10;:12::i;:::-;9921:25;;;;;;;;;;;;;;;:34;9947:7;9921:34;;;;;;;;;;;;;;;;9894:61;;9994:15;9974:16;:35;;9966:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10062:67;10071:12;:10;:12::i;:::-;10085:7;10113:15;10094:16;:34;;;;:::i;:::-;10062:8;:67::i;:::-;10149:4;10142:11;;;9784:377;;;;:::o;14535:492::-;14621:4;14638:19;14669:3;14661:6;14660:12;;;;:::i;:::-;14638:34;;14683:17;14712:14;14703:6;:23;;;;:::i;:::-;14683:43;;14737:12;14752:39;14767:9;14778:12;14752:14;:39::i;:::-;14737:54;;14816:4;14805:15;;:7;:15;;;14802:195;;;14849:1;14840:6;:10;14837:123;;;14870:74;14885:42;14929:14;14870;:74::i;:::-;;14837:123;14981:4;14974:11;;;;;;;14802:195;15014:5;15007:12;;;;;14535:492;;;;;:::o;7468:151::-;7557:7;7584:11;:18;7596:5;7584:18;;;;;;;;;;;;;;;:27;7603:7;7584:27;;;;;;;;;;;;;;;;7577:34;;7468:151;;;;:::o;601:98::-;654:7;681:10;674:17;;601:98;:::o;13140:346::-;13259:1;13242:19;;:5;:19;;;;13234:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13340:1;13321:21;;:7;:21;;;;13313:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13424:6;13394:11;:18;13406:5;13394:18;;;;;;;;;;;;;;;:27;13413:7;13394:27;;;;;;;;;;;;;;;:36;;;;13462:7;13446:32;;13455:5;13446:32;;;13471:6;13446:32;;;;;;:::i;:::-;;;;;;;;13140:346;;;:::o;10651:604::-;10775:1;10757:20;;:6;:20;;;;10749:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10859:1;10838:23;;:9;:23;;;;10830:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10914:47;10935:6;10943:9;10954:6;10914:20;:47::i;:::-;10974:21;10998:9;:17;11008:6;10998:17;;;;;;;;;;;;;;;;10974:41;;11051:6;11034:13;:23;;11026:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11147:6;11131:13;:22;;;;:::i;:::-;11111:9;:17;11121:6;11111:17;;;;;;;;;;;;;;;:42;;;;11188:6;11164:9;:20;11174:9;11164:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11229:9;11212:35;;11221:6;11212:35;;;11240:6;11212:35;;;;;;:::i;:::-;;;;;;;;10651:604;;;;:::o;7230:175::-;7316:4;7333:42;7343:12;:10;:12::i;:::-;7357:9;7368:6;7333:9;:42::i;:::-;7393:4;7386:11;;7230:175;;;;:::o;14089:92::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:366::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2673:93;2762:3;2673:93;:::i;:::-;2791:2;2786:3;2782:12;2775:19;;2580:220;;;:::o;2806:366::-;;2969:67;3033:2;3028:3;2969:67;:::i;:::-;2962:74;;3045:93;3134:3;3045:93;:::i;:::-;3163:2;3158:3;3154:12;3147:19;;2952:220;;;:::o;3178:366::-;;3341:67;3405:2;3400:3;3341:67;:::i;:::-;3334:74;;3417:93;3506:3;3417:93;:::i;:::-;3535:2;3530:3;3526:12;3519:19;;3324:220;;;:::o;3550:366::-;;3713:67;3777:2;3772:3;3713:67;:::i;:::-;3706:74;;3789:93;3878:3;3789:93;:::i;:::-;3907:2;3902:3;3898:12;3891:19;;3696:220;;;:::o;3922:366::-;;4085:67;4149:2;4144:3;4085:67;:::i;:::-;4078:74;;4161:93;4250:3;4161:93;:::i;:::-;4279:2;4274:3;4270:12;4263:19;;4068:220;;;:::o;4294:366::-;;4457:67;4521:2;4516:3;4457:67;:::i;:::-;4450:74;;4533:93;4622:3;4533:93;:::i;:::-;4651:2;4646:3;4642:12;4635:19;;4440:220;;;:::o;4666:118::-;4753:24;4771:5;4753:24;:::i;:::-;4748:3;4741:37;4731:53;;:::o;4790:112::-;4873:22;4889:5;4873:22;:::i;:::-;4868:3;4861:35;4851:51;;:::o;4908:210::-;;5033:2;5022:9;5018:18;5010:26;;5046:65;5108:1;5097:9;5093:17;5084:6;5046:65;:::i;:::-;5000:118;;;;:::o;5124:313::-;;5275:2;5264:9;5260:18;5252:26;;5324:9;5318:4;5314:20;5310:1;5299:9;5295:17;5288:47;5352:78;5425:4;5416:6;5352:78;:::i;:::-;5344:86;;5242:195;;;;:::o;5443:419::-;;5647:2;5636:9;5632:18;5624:26;;5696:9;5690:4;5686:20;5682:1;5671:9;5667:17;5660:47;5724:131;5850:4;5724:131;:::i;:::-;5716:139;;5614:248;;;:::o;5868:419::-;;6072:2;6061:9;6057:18;6049:26;;6121:9;6115:4;6111:20;6107:1;6096:9;6092:17;6085:47;6149:131;6275:4;6149:131;:::i;:::-;6141:139;;6039:248;;;:::o;6293:419::-;;6497:2;6486:9;6482:18;6474:26;;6546:9;6540:4;6536:20;6532:1;6521:9;6517:17;6510:47;6574:131;6700:4;6574:131;:::i;:::-;6566:139;;6464:248;;;:::o;6718:419::-;;6922:2;6911:9;6907:18;6899:26;;6971:9;6965:4;6961:20;6957:1;6946:9;6942:17;6935:47;6999:131;7125:4;6999:131;:::i;:::-;6991:139;;6889:248;;;:::o;7143:419::-;;7347:2;7336:9;7332:18;7324:26;;7396:9;7390:4;7386:20;7382:1;7371:9;7367:17;7360:47;7424:131;7550:4;7424:131;:::i;:::-;7416:139;;7314:248;;;:::o;7568:419::-;;7772:2;7761:9;7757:18;7749:26;;7821:9;7815:4;7811:20;7807:1;7796:9;7792:17;7785:47;7849:131;7975:4;7849:131;:::i;:::-;7841:139;;7739:248;;;:::o;7993:222::-;;8124:2;8113:9;8109:18;8101:26;;8137:71;8205:1;8194:9;8190:17;8181:6;8137:71;:::i;:::-;8091:124;;;;:::o;8221:214::-;;8348:2;8337:9;8333:18;8325:26;;8361:67;8425:1;8414:9;8410:17;8401:6;8361:67;:::i;:::-;8315:120;;;;:::o;8441:99::-;;8527:5;8521:12;8511:22;;8500:40;;;:::o;8546:169::-;;8664:6;8659:3;8652:19;8704:4;8699:3;8695:14;8680:29;;8642:73;;;;:::o;8721:305::-;;8780:20;8798:1;8780:20;:::i;:::-;8775:25;;8814:20;8832:1;8814:20;:::i;:::-;8809:25;;8968:1;8900:66;8896:74;8893:1;8890:81;8887:2;;;8974:18;;:::i;:::-;8887:2;9018:1;9015;9011:9;9004:16;;8765:261;;;;:::o;9032:185::-;;9089:20;9107:1;9089:20;:::i;:::-;9084:25;;9123:20;9141:1;9123:20;:::i;:::-;9118:25;;9162:1;9152:2;;9167:18;;:::i;:::-;9152:2;9209:1;9206;9202:9;9197:14;;9074:143;;;;:::o;9223:191::-;;9283:20;9301:1;9283:20;:::i;:::-;9278:25;;9317:20;9335:1;9317:20;:::i;:::-;9312:25;;9356:1;9353;9350:8;9347:2;;;9361:18;;:::i;:::-;9347:2;9406:1;9403;9399:9;9391:17;;9268:146;;;;:::o;9420:96::-;;9486:24;9504:5;9486:24;:::i;:::-;9475:35;;9465:51;;;:::o;9522:90::-;;9599:5;9592:13;9585:21;9574:32;;9564:48;;;:::o;9618:126::-;;9695:42;9688:5;9684:54;9673:65;;9663:81;;;:::o;9750:77::-;;9816:5;9805:16;;9795:32;;;:::o;9833:86::-;;9908:4;9901:5;9897:16;9886:27;;9876:43;;;:::o;9925:307::-;9993:1;10003:113;10017:6;10014:1;10011:13;10003:113;;;10102:1;10097:3;10093:11;10087:18;10083:1;10078:3;10074:11;10067:39;10039:2;10036:1;10032:10;10027:15;;10003:113;;;10134:6;10131:1;10128:13;10125:2;;;10214:1;10205:6;10200:3;10196:16;10189:27;10125:2;9974:258;;;;:::o;10238:320::-;;10319:1;10313:4;10309:12;10299:22;;10366:1;10360:4;10356:12;10387:18;10377:2;;10443:4;10435:6;10431:17;10421:27;;10377:2;10505;10497:6;10494:14;10474:18;10471:38;10468:2;;;10524:18;;:::i;:::-;10468:2;10289:269;;;;:::o;10564:180::-;10612:77;10609:1;10602:88;10709:4;10706:1;10699:15;10733:4;10730:1;10723:15;10750:180;10798:77;10795:1;10788:88;10895:4;10892:1;10885:15;10919:4;10916:1;10909:15;10936:180;10984:77;10981:1;10974:88;11081:4;11078:1;11071:15;11105:4;11102:1;11095:15;11122:102;;11214:2;11210:7;11205:2;11198:5;11194:14;11190:28;11180:38;;11170:54;;;:::o;11230:222::-;11370:34;11366:1;11358:6;11354:14;11347:58;11439:5;11434:2;11426:6;11422:15;11415:30;11336:116;:::o;11458:221::-;11598:34;11594:1;11586:6;11582:14;11575:58;11667:4;11662:2;11654:6;11650:15;11643:29;11564:115;:::o;11685:225::-;11825:34;11821:1;11813:6;11809:14;11802:58;11894:8;11889:2;11881:6;11877:15;11870:33;11791:119;:::o;11916:224::-;12056:34;12052:1;12044:6;12040:14;12033:58;12125:7;12120:2;12112:6;12108:15;12101:32;12022:118;:::o;12146:223::-;12286:34;12282:1;12274:6;12270:14;12263:58;12355:6;12350:2;12342:6;12338:15;12331:31;12252:117;:::o;12375:224::-;12515:34;12511:1;12503:6;12499:14;12492:58;12584:7;12579:2;12571:6;12567:15;12560:32;12481:118;:::o;12605:122::-;12678:24;12696:5;12678:24;:::i;:::-;12671:5;12668:35;12658:2;;12717:1;12714;12707:12;12658:2;12648:79;:::o;12733:122::-;12806:24;12824:5;12806:24;:::i;:::-;12799:5;12796:35;12786:2;;12845:1;12842;12835:12;12786:2;12776:79;:::o

Swarm Source

ipfs://41c46df6f1b8156cb6e478e62764e8d38b631738d5f9874f9147cf9271eabfe8
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.