ETH Price: $3,468.87 (+1.39%)
Gas: 10 Gwei

Token

BUNDNFT Tokens (BUNDNFT)
 

Overview

Max Total Supply

100,000 BUNDNFT

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
31.998174192685787352 BUNDNFT

Value
$0.00
0xd5687fa4114b9280a5a0f3c8a025a39ed339dd1b
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:
BundNFT

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-03-03
*/

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

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

        return true;
    }

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

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

    constructor () ERC20("BUNDNFT Tokens", "BUNDNFT") {
        _mint(msg.sender, 100000 * (10 ** uint256(decimals())));
    }

    function burn(uint256 amount) public virtual returns (bool) {
        _burn(_msgSender(), amount);
        return true;
    } 
}

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":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600e81526020017f42554e444e465420546f6b656e730000000000000000000000000000000000008152506040518060400160405280600781526020017f42554e444e4654000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200026d565b508060049080519060200190620000af9291906200026d565b505050620000f433620000c7620000fa60201b60201c565b60ff16600a620000d891906200045d565b620186a0620000e891906200059a565b6200010360201b60201c565b620006cf565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000176576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016d9062000355565b60405180910390fd5b6200018a600083836200026860201b60201c565b80600260008282546200019e9190620003a5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001f59190620003a5565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200025c919062000377565b60405180910390a35050565b505050565b8280546200027b9062000605565b90600052602060002090601f0160209004810192826200029f5760008555620002eb565b82601f10620002ba57805160ff1916838001178555620002eb565b82800160010185558215620002eb579182015b82811115620002ea578251825591602001919060010190620002cd565b5b509050620002fa9190620002fe565b5090565b5b8082111562000319576000816000905550600101620002ff565b5090565b60006200032c601f8362000394565b91506200033982620006a6565b602082019050919050565b6200034f81620005fb565b82525050565b6000602082019050818103600083015262000370816200031d565b9050919050565b60006020820190506200038e600083018462000344565b92915050565b600082825260208201905092915050565b6000620003b282620005fb565b9150620003bf83620005fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003f757620003f66200063b565b5b828201905092915050565b6000808291508390505b600185111562000454578086048111156200042c576200042b6200063b565b5b60018516156200043c5780820291505b80810290506200044c8562000699565b94506200040c565b94509492505050565b60006200046a82620005fb565b91506200047783620005fb565b9250620004a67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004ae565b905092915050565b600082620004c0576001905062000593565b81620004d0576000905062000593565b8160018114620004e95760028114620004f4576200052a565b600191505062000593565b60ff8411156200050957620005086200063b565b5b8360020a9150848211156200052357620005226200063b565b5b5062000593565b5060208310610133831016604e8410600b8410161715620005645782820a9050838111156200055e576200055d6200063b565b5b62000593565b62000573848484600162000402565b925090508184048111156200058d576200058c6200063b565b5b81810290505b9392505050565b6000620005a782620005fb565b9150620005b483620005fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620005f057620005ef6200063b565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200061e57607f821691505b602082108114156200063557620006346200066a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61174c80620006df6000396000f3fe608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c68146101a357806370a08231146101d357806395d89b4114610203578063a457c2d714610221578063a9059cbb14610251578063dd62ed3e14610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c16102b1565b6040516100ce91906110da565b60405180910390f35b6100f160048036038101906100ec9190610eb9565b610343565b6040516100fe91906110bf565b60405180910390f35b61010f610361565b60405161011c919061121c565b60405180910390f35b61013f600480360381019061013a9190610e6a565b61036b565b60405161014c91906110bf565b60405180910390f35b61015d61046c565b60405161016a9190611237565b60405180910390f35b61018d60048036038101906101889190610eb9565b610475565b60405161019a91906110bf565b60405180910390f35b6101bd60048036038101906101b89190610ef5565b610521565b6040516101ca91906110bf565b60405180910390f35b6101ed60048036038101906101e89190610e05565b61053d565b6040516101fa919061121c565b60405180910390f35b61020b610585565b60405161021891906110da565b60405180910390f35b61023b60048036038101906102369190610eb9565b610617565b60405161024891906110bf565b60405180910390f35b61026b60048036038101906102669190610eb9565b61070b565b60405161027891906110bf565b60405180910390f35b61029b60048036038101906102969190610e2e565b610729565b6040516102a8919061121c565b60405180910390f35b6060600380546102c090611380565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec90611380565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b60006103576103506107b0565b84846107b8565b6001905092915050565b6000600254905090565b6000610378848484610983565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103c36107b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043a9061117c565b60405180910390fd5b6104608561044f6107b0565b858461045b91906112c4565b6107b8565b60019150509392505050565b60006012905090565b60006105176104826107b0565b8484600160006104906107b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610512919061126e565b6107b8565b6001905092915050565b600061053461052e6107b0565b83610c02565b60019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461059490611380565b80601f01602080910402602001604051908101604052809291908181526020018280546105c090611380565b801561060d5780601f106105e25761010080835404028352916020019161060d565b820191906000526020600020905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b600080600160006106266107b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da906111fc565b60405180910390fd5b6107006106ee6107b0565b8585846106fb91906112c4565b6107b8565b600191505092915050565b600061071f6107186107b0565b8484610983565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f906111dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f9061113c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610976919061121c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea906111bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a906110fc565b60405180910390fd5b610a6e838383610dd6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb9061115c565b60405180910390fd5b8181610b0091906112c4565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b90919061126e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf4919061121c565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c699061119c565b60405180910390fd5b610c7e82600083610dd6565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb9061111c565b60405180910390fd5b8181610d1091906112c4565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d6491906112c4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc9919061121c565b60405180910390a3505050565b505050565b600081359050610dea816116e8565b92915050565b600081359050610dff816116ff565b92915050565b600060208284031215610e1757600080fd5b6000610e2584828501610ddb565b91505092915050565b60008060408385031215610e4157600080fd5b6000610e4f85828601610ddb565b9250506020610e6085828601610ddb565b9150509250929050565b600080600060608486031215610e7f57600080fd5b6000610e8d86828701610ddb565b9350506020610e9e86828701610ddb565b9250506040610eaf86828701610df0565b9150509250925092565b60008060408385031215610ecc57600080fd5b6000610eda85828601610ddb565b9250506020610eeb85828601610df0565b9150509250929050565b600060208284031215610f0757600080fd5b6000610f1584828501610df0565b91505092915050565b610f278161130a565b82525050565b6000610f3882611252565b610f42818561125d565b9350610f5281856020860161134d565b610f5b81611410565b840191505092915050565b6000610f7360238361125d565b9150610f7e82611421565b604082019050919050565b6000610f9660228361125d565b9150610fa182611470565b604082019050919050565b6000610fb960228361125d565b9150610fc4826114bf565b604082019050919050565b6000610fdc60268361125d565b9150610fe78261150e565b604082019050919050565b6000610fff60288361125d565b915061100a8261155d565b604082019050919050565b600061102260218361125d565b915061102d826115ac565b604082019050919050565b600061104560258361125d565b9150611050826115fb565b604082019050919050565b600061106860248361125d565b91506110738261164a565b604082019050919050565b600061108b60258361125d565b915061109682611699565b604082019050919050565b6110aa81611336565b82525050565b6110b981611340565b82525050565b60006020820190506110d46000830184610f1e565b92915050565b600060208201905081810360008301526110f48184610f2d565b905092915050565b6000602082019050818103600083015261111581610f66565b9050919050565b6000602082019050818103600083015261113581610f89565b9050919050565b6000602082019050818103600083015261115581610fac565b9050919050565b6000602082019050818103600083015261117581610fcf565b9050919050565b6000602082019050818103600083015261119581610ff2565b9050919050565b600060208201905081810360008301526111b581611015565b9050919050565b600060208201905081810360008301526111d581611038565b9050919050565b600060208201905081810360008301526111f58161105b565b9050919050565b600060208201905081810360008301526112158161107e565b9050919050565b600060208201905061123160008301846110a1565b92915050565b600060208201905061124c60008301846110b0565b92915050565b600081519050919050565b600082825260208201905092915050565b600061127982611336565b915061128483611336565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156112b9576112b86113b2565b5b828201905092915050565b60006112cf82611336565b91506112da83611336565b9250828210156112ed576112ec6113b2565b5b828203905092915050565b600061130382611316565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561136b578082015181840152602081019050611350565b8381111561137a576000848401525b50505050565b6000600282049050600182168061139857607f821691505b602082108114156113ac576113ab6113e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6116f1816112f8565b81146116fc57600080fd5b50565b61170881611336565b811461171357600080fd5b5056fea26469706673582212205316aef65a752d5c4b88b345e82dd71e7e9627f1ef13e3a7cbfed5e803d89e8864736f6c63430008010033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100b45760003560e01c806342966c681161007157806342966c68146101a357806370a08231146101d357806395d89b4114610203578063a457c2d714610221578063a9059cbb14610251578063dd62ed3e14610281576100b4565b806306fdde03146100b9578063095ea7b3146100d757806318160ddd1461010757806323b872dd14610125578063313ce567146101555780633950935114610173575b600080fd5b6100c16102b1565b6040516100ce91906110da565b60405180910390f35b6100f160048036038101906100ec9190610eb9565b610343565b6040516100fe91906110bf565b60405180910390f35b61010f610361565b60405161011c919061121c565b60405180910390f35b61013f600480360381019061013a9190610e6a565b61036b565b60405161014c91906110bf565b60405180910390f35b61015d61046c565b60405161016a9190611237565b60405180910390f35b61018d60048036038101906101889190610eb9565b610475565b60405161019a91906110bf565b60405180910390f35b6101bd60048036038101906101b89190610ef5565b610521565b6040516101ca91906110bf565b60405180910390f35b6101ed60048036038101906101e89190610e05565b61053d565b6040516101fa919061121c565b60405180910390f35b61020b610585565b60405161021891906110da565b60405180910390f35b61023b60048036038101906102369190610eb9565b610617565b60405161024891906110bf565b60405180910390f35b61026b60048036038101906102669190610eb9565b61070b565b60405161027891906110bf565b60405180910390f35b61029b60048036038101906102969190610e2e565b610729565b6040516102a8919061121c565b60405180910390f35b6060600380546102c090611380565b80601f01602080910402602001604051908101604052809291908181526020018280546102ec90611380565b80156103395780601f1061030e57610100808354040283529160200191610339565b820191906000526020600020905b81548152906001019060200180831161031c57829003601f168201915b5050505050905090565b60006103576103506107b0565b84846107b8565b6001905092915050565b6000600254905090565b6000610378848484610983565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103c36107b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161043a9061117c565b60405180910390fd5b6104608561044f6107b0565b858461045b91906112c4565b6107b8565b60019150509392505050565b60006012905090565b60006105176104826107b0565b8484600160006104906107b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610512919061126e565b6107b8565b6001905092915050565b600061053461052e6107b0565b83610c02565b60019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606004805461059490611380565b80601f01602080910402602001604051908101604052809291908181526020018280546105c090611380565b801561060d5780601f106105e25761010080835404028352916020019161060d565b820191906000526020600020905b8154815290600101906020018083116105f057829003601f168201915b5050505050905090565b600080600160006106266107b0565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156106e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106da906111fc565b60405180910390fd5b6107006106ee6107b0565b8585846106fb91906112c4565b6107b8565b600191505092915050565b600061071f6107186107b0565b8484610983565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610828576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161081f906111dc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f9061113c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610976919061121c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea906111bc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5a906110fc565b60405180910390fd5b610a6e838383610dd6565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb9061115c565b60405180910390fd5b8181610b0091906112c4565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b90919061126e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bf4919061121c565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c699061119c565b60405180910390fd5b610c7e82600083610dd6565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cfb9061111c565b60405180910390fd5b8181610d1091906112c4565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610d6491906112c4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc9919061121c565b60405180910390a3505050565b505050565b600081359050610dea816116e8565b92915050565b600081359050610dff816116ff565b92915050565b600060208284031215610e1757600080fd5b6000610e2584828501610ddb565b91505092915050565b60008060408385031215610e4157600080fd5b6000610e4f85828601610ddb565b9250506020610e6085828601610ddb565b9150509250929050565b600080600060608486031215610e7f57600080fd5b6000610e8d86828701610ddb565b9350506020610e9e86828701610ddb565b9250506040610eaf86828701610df0565b9150509250925092565b60008060408385031215610ecc57600080fd5b6000610eda85828601610ddb565b9250506020610eeb85828601610df0565b9150509250929050565b600060208284031215610f0757600080fd5b6000610f1584828501610df0565b91505092915050565b610f278161130a565b82525050565b6000610f3882611252565b610f42818561125d565b9350610f5281856020860161134d565b610f5b81611410565b840191505092915050565b6000610f7360238361125d565b9150610f7e82611421565b604082019050919050565b6000610f9660228361125d565b9150610fa182611470565b604082019050919050565b6000610fb960228361125d565b9150610fc4826114bf565b604082019050919050565b6000610fdc60268361125d565b9150610fe78261150e565b604082019050919050565b6000610fff60288361125d565b915061100a8261155d565b604082019050919050565b600061102260218361125d565b915061102d826115ac565b604082019050919050565b600061104560258361125d565b9150611050826115fb565b604082019050919050565b600061106860248361125d565b91506110738261164a565b604082019050919050565b600061108b60258361125d565b915061109682611699565b604082019050919050565b6110aa81611336565b82525050565b6110b981611340565b82525050565b60006020820190506110d46000830184610f1e565b92915050565b600060208201905081810360008301526110f48184610f2d565b905092915050565b6000602082019050818103600083015261111581610f66565b9050919050565b6000602082019050818103600083015261113581610f89565b9050919050565b6000602082019050818103600083015261115581610fac565b9050919050565b6000602082019050818103600083015261117581610fcf565b9050919050565b6000602082019050818103600083015261119581610ff2565b9050919050565b600060208201905081810360008301526111b581611015565b9050919050565b600060208201905081810360008301526111d581611038565b9050919050565b600060208201905081810360008301526111f58161105b565b9050919050565b600060208201905081810360008301526112158161107e565b9050919050565b600060208201905061123160008301846110a1565b92915050565b600060208201905061124c60008301846110b0565b92915050565b600081519050919050565b600082825260208201905092915050565b600061127982611336565b915061128483611336565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156112b9576112b86113b2565b5b828201905092915050565b60006112cf82611336565b91506112da83611336565b9250828210156112ed576112ec6113b2565b5b828203905092915050565b600061130382611316565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561136b578082015181840152602081019050611350565b8381111561137a576000848401525b50505050565b6000600282049050600182168061139857607f821691505b602082108114156113ac576113ab6113e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6116f1816112f8565b81146116fc57600080fd5b50565b61170881611336565b811461171357600080fd5b5056fea26469706673582212205316aef65a752d5c4b88b345e82dd71e7e9627f1ef13e3a7cbfed5e803d89e8864736f6c63430008010033

Deployed Bytecode Sourcemap

14360:299:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5616:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7756:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6709:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8407:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6560:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9238:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14527:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6880:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5826:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9956:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7220:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7458:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5616:91;5661:13;5694:5;5687:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5616:91;:::o;7756:169::-;7839:4;7856:39;7865:12;:10;:12::i;:::-;7879:7;7888:6;7856:8;:39::i;:::-;7913:4;7906:11;;7756:169;;;;:::o;6709:108::-;6770:7;6797:12;;6790:19;;6709:108;:::o;8407:422::-;8513:4;8530:36;8540:6;8548:9;8559:6;8530:9;:36::i;:::-;8579:24;8606:11;:19;8618:6;8606:19;;;;;;;;;;;;;;;:33;8626:12;:10;:12::i;:::-;8606:33;;;;;;;;;;;;;;;;8579:60;;8678:6;8658:16;:26;;8650:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8740:57;8749:6;8757:12;:10;:12::i;:::-;8790:6;8771:16;:25;;;;:::i;:::-;8740:8;:57::i;:::-;8817:4;8810:11;;;8407:422;;;;;:::o;6560:84::-;6609:5;6634:2;6627:9;;6560:84;:::o;9238:215::-;9326:4;9343:80;9352:12;:10;:12::i;:::-;9366:7;9412:10;9375:11;:25;9387:12;:10;:12::i;:::-;9375:25;;;;;;;;;;;;;;;:34;9401:7;9375:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;9343:8;:80::i;:::-;9441:4;9434:11;;9238:215;;;;:::o;14527:128::-;14581:4;14598:27;14604:12;:10;:12::i;:::-;14618:6;14598:5;:27::i;:::-;14643:4;14636:11;;14527:128;;;:::o;6880:127::-;6954:7;6981:9;:18;6991:7;6981:18;;;;;;;;;;;;;;;;6974:25;;6880:127;;;:::o;5826:95::-;5873:13;5906:7;5899:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5826:95;:::o;9956:377::-;10049:4;10066:24;10093:11;:25;10105:12;:10;:12::i;:::-;10093:25;;;;;;;;;;;;;;;:34;10119:7;10093:34;;;;;;;;;;;;;;;;10066:61;;10166:15;10146:16;:35;;10138:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10234:67;10243:12;:10;:12::i;:::-;10257:7;10285:15;10266:16;:34;;;;:::i;:::-;10234:8;:67::i;:::-;10321:4;10314:11;;;9956:377;;;;:::o;7220:175::-;7306:4;7323:42;7333:12;:10;:12::i;:::-;7347:9;7358:6;7323:9;:42::i;:::-;7383:4;7376:11;;7220:175;;;;:::o;7458:151::-;7547:7;7574:11;:18;7586:5;7574:18;;;;;;;;;;;;;;;:27;7593:7;7574:27;;;;;;;;;;;;;;;;7567:34;;7458:151;;;;:::o;599:98::-;652:7;679:10;672:17;;599:98;:::o;13312:346::-;13431:1;13414:19;;:5;:19;;;;13406:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13512:1;13493:21;;:7;:21;;;;13485:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13596:6;13566:11;:18;13578:5;13566:18;;;;;;;;;;;;;;;:27;13585:7;13566:27;;;;;;;;;;;;;;;:36;;;;13634:7;13618:32;;13627:5;13618:32;;;13643:6;13618:32;;;;;;:::i;:::-;;;;;;;;13312:346;;;:::o;10823:604::-;10947:1;10929:20;;:6;:20;;;;10921:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;11031:1;11010:23;;:9;:23;;;;11002:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;11086:47;11107:6;11115:9;11126:6;11086:20;:47::i;:::-;11146:21;11170:9;:17;11180:6;11170:17;;;;;;;;;;;;;;;;11146:41;;11223:6;11206:13;:23;;11198:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;11319:6;11303:13;:22;;;;:::i;:::-;11283:9;:17;11293:6;11283:17;;;;;;;;;;;;;;;:42;;;;11360:6;11336:9;:20;11346:9;11336:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;11401:9;11384:35;;11393:6;11384:35;;;11412:6;11384:35;;;;;;:::i;:::-;;;;;;;;10823:604;;;;:::o;12380:494::-;12483:1;12464:21;;:7;:21;;;;12456:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;12536:49;12557:7;12574:1;12578:6;12536:20;:49::i;:::-;12598:22;12623:9;:18;12633:7;12623:18;;;;;;;;;;;;;;;;12598:43;;12678:6;12660:14;:24;;12652:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12772:6;12755:14;:23;;;;:::i;:::-;12734:9;:18;12744:7;12734:18;;;;;;;;;;;;;;;:44;;;;12805:6;12789:12;;:22;;;;;;;:::i;:::-;;;;;;;;12855:1;12829:37;;12838:7;12829:37;;;12859:6;12829:37;;;;;;:::i;:::-;;;;;;;;12380:494;;;:::o;14261: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:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:109::-;2298:21;2313:5;2298:21;:::i;:::-;2293:3;2286:34;2276:50;;:::o;2332:364::-;;2448:39;2481:5;2448:39;:::i;:::-;2503:71;2567:6;2562:3;2503:71;:::i;:::-;2496:78;;2583:52;2628:6;2623:3;2616:4;2609:5;2605:16;2583:52;:::i;:::-;2660:29;2682:6;2660:29;:::i;:::-;2655:3;2651:39;2644:46;;2424:272;;;;;:::o;2702:366::-;;2865:67;2929:2;2924:3;2865:67;:::i;:::-;2858:74;;2941:93;3030:3;2941:93;:::i;:::-;3059:2;3054:3;3050:12;3043:19;;2848:220;;;:::o;3074:366::-;;3237:67;3301:2;3296:3;3237:67;:::i;:::-;3230:74;;3313:93;3402:3;3313:93;:::i;:::-;3431:2;3426:3;3422:12;3415:19;;3220:220;;;:::o;3446:366::-;;3609:67;3673:2;3668:3;3609:67;:::i;:::-;3602:74;;3685:93;3774:3;3685:93;:::i;:::-;3803:2;3798:3;3794:12;3787:19;;3592:220;;;:::o;3818:366::-;;3981:67;4045:2;4040:3;3981:67;:::i;:::-;3974:74;;4057:93;4146:3;4057:93;:::i;:::-;4175:2;4170:3;4166:12;4159:19;;3964:220;;;:::o;4190:366::-;;4353:67;4417:2;4412:3;4353:67;:::i;:::-;4346:74;;4429:93;4518:3;4429:93;:::i;:::-;4547:2;4542:3;4538:12;4531:19;;4336:220;;;:::o;4562:366::-;;4725:67;4789:2;4784:3;4725:67;:::i;:::-;4718:74;;4801:93;4890:3;4801:93;:::i;:::-;4919:2;4914:3;4910:12;4903:19;;4708:220;;;:::o;4934:366::-;;5097:67;5161:2;5156:3;5097:67;:::i;:::-;5090:74;;5173:93;5262:3;5173:93;:::i;:::-;5291:2;5286:3;5282:12;5275:19;;5080:220;;;:::o;5306:366::-;;5469:67;5533:2;5528:3;5469:67;:::i;:::-;5462:74;;5545:93;5634:3;5545:93;:::i;:::-;5663:2;5658:3;5654:12;5647:19;;5452:220;;;:::o;5678:366::-;;5841:67;5905:2;5900:3;5841:67;:::i;:::-;5834:74;;5917:93;6006:3;5917:93;:::i;:::-;6035:2;6030:3;6026:12;6019:19;;5824:220;;;:::o;6050:118::-;6137:24;6155:5;6137:24;:::i;:::-;6132:3;6125:37;6115:53;;:::o;6174:112::-;6257:22;6273:5;6257:22;:::i;:::-;6252:3;6245:35;6235:51;;:::o;6292:210::-;;6417:2;6406:9;6402:18;6394:26;;6430:65;6492:1;6481:9;6477:17;6468:6;6430:65;:::i;:::-;6384:118;;;;:::o;6508:313::-;;6659:2;6648:9;6644:18;6636:26;;6708:9;6702:4;6698:20;6694:1;6683:9;6679:17;6672:47;6736:78;6809:4;6800:6;6736:78;:::i;:::-;6728:86;;6626:195;;;;:::o;6827:419::-;;7031:2;7020:9;7016:18;7008:26;;7080:9;7074:4;7070:20;7066:1;7055:9;7051:17;7044:47;7108:131;7234:4;7108:131;:::i;:::-;7100:139;;6998:248;;;:::o;7252:419::-;;7456:2;7445:9;7441:18;7433:26;;7505:9;7499:4;7495:20;7491:1;7480:9;7476:17;7469:47;7533:131;7659:4;7533:131;:::i;:::-;7525:139;;7423:248;;;:::o;7677:419::-;;7881:2;7870:9;7866:18;7858:26;;7930:9;7924:4;7920:20;7916:1;7905:9;7901:17;7894:47;7958:131;8084:4;7958:131;:::i;:::-;7950:139;;7848:248;;;:::o;8102:419::-;;8306:2;8295:9;8291:18;8283:26;;8355:9;8349:4;8345:20;8341:1;8330:9;8326:17;8319:47;8383:131;8509:4;8383:131;:::i;:::-;8375:139;;8273:248;;;:::o;8527:419::-;;8731:2;8720:9;8716:18;8708:26;;8780:9;8774:4;8770:20;8766:1;8755:9;8751:17;8744:47;8808:131;8934:4;8808:131;:::i;:::-;8800:139;;8698:248;;;:::o;8952:419::-;;9156:2;9145:9;9141:18;9133:26;;9205:9;9199:4;9195:20;9191:1;9180:9;9176:17;9169:47;9233:131;9359:4;9233:131;:::i;:::-;9225:139;;9123:248;;;:::o;9377:419::-;;9581:2;9570:9;9566:18;9558:26;;9630:9;9624:4;9620:20;9616:1;9605:9;9601:17;9594:47;9658:131;9784:4;9658:131;:::i;:::-;9650:139;;9548:248;;;:::o;9802:419::-;;10006:2;9995:9;9991:18;9983:26;;10055:9;10049:4;10045:20;10041:1;10030:9;10026:17;10019:47;10083:131;10209:4;10083:131;:::i;:::-;10075:139;;9973:248;;;:::o;10227:419::-;;10431:2;10420:9;10416:18;10408:26;;10480:9;10474:4;10470:20;10466:1;10455:9;10451:17;10444:47;10508:131;10634:4;10508:131;:::i;:::-;10500:139;;10398:248;;;:::o;10652:222::-;;10783:2;10772:9;10768:18;10760:26;;10796:71;10864:1;10853:9;10849:17;10840:6;10796:71;:::i;:::-;10750:124;;;;:::o;10880:214::-;;11007:2;10996:9;10992:18;10984:26;;11020:67;11084:1;11073:9;11069:17;11060:6;11020:67;:::i;:::-;10974:120;;;;:::o;11100:99::-;;11186:5;11180:12;11170:22;;11159:40;;;:::o;11205:169::-;;11323:6;11318:3;11311:19;11363:4;11358:3;11354:14;11339:29;;11301:73;;;;:::o;11380:305::-;;11439:20;11457:1;11439:20;:::i;:::-;11434:25;;11473:20;11491:1;11473:20;:::i;:::-;11468:25;;11627:1;11559:66;11555:74;11552:1;11549:81;11546:2;;;11633:18;;:::i;:::-;11546:2;11677:1;11674;11670:9;11663:16;;11424:261;;;;:::o;11691:191::-;;11751:20;11769:1;11751:20;:::i;:::-;11746:25;;11785:20;11803:1;11785:20;:::i;:::-;11780:25;;11824:1;11821;11818:8;11815:2;;;11829:18;;:::i;:::-;11815:2;11874:1;11871;11867:9;11859:17;;11736:146;;;;:::o;11888:96::-;;11954:24;11972:5;11954:24;:::i;:::-;11943:35;;11933:51;;;:::o;11990:90::-;;12067:5;12060:13;12053:21;12042:32;;12032:48;;;:::o;12086:126::-;;12163:42;12156:5;12152:54;12141:65;;12131:81;;;:::o;12218:77::-;;12284:5;12273:16;;12263:32;;;:::o;12301:86::-;;12376:4;12369:5;12365:16;12354:27;;12344:43;;;:::o;12393:307::-;12461:1;12471:113;12485:6;12482:1;12479:13;12471:113;;;12570:1;12565:3;12561:11;12555:18;12551:1;12546:3;12542:11;12535:39;12507:2;12504:1;12500:10;12495:15;;12471:113;;;12602:6;12599:1;12596:13;12593:2;;;12682:1;12673:6;12668:3;12664:16;12657:27;12593:2;12442:258;;;;:::o;12706:320::-;;12787:1;12781:4;12777:12;12767:22;;12834:1;12828:4;12824:12;12855:18;12845:2;;12911:4;12903:6;12899:17;12889:27;;12845:2;12973;12965:6;12962:14;12942:18;12939:38;12936:2;;;12992:18;;:::i;:::-;12936:2;12757:269;;;;:::o;13032:180::-;13080:77;13077:1;13070:88;13177:4;13174:1;13167:15;13201:4;13198:1;13191:15;13218:180;13266:77;13263:1;13256:88;13363:4;13360:1;13353:15;13387:4;13384:1;13377:15;13404:102;;13496:2;13492:7;13487:2;13480:5;13476:14;13472:28;13462:38;;13452:54;;;:::o;13512:222::-;13652:34;13648:1;13640:6;13636:14;13629:58;13721:5;13716:2;13708:6;13704:15;13697:30;13618:116;:::o;13740:221::-;13880:34;13876:1;13868:6;13864:14;13857:58;13949:4;13944:2;13936:6;13932:15;13925:29;13846:115;:::o;13967:221::-;14107:34;14103:1;14095:6;14091:14;14084:58;14176:4;14171:2;14163:6;14159:15;14152:29;14073:115;:::o;14194:225::-;14334:34;14330:1;14322:6;14318:14;14311:58;14403:8;14398:2;14390:6;14386:15;14379:33;14300:119;:::o;14425:227::-;14565:34;14561:1;14553:6;14549:14;14542:58;14634:10;14629:2;14621:6;14617:15;14610:35;14531:121;:::o;14658:220::-;14798:34;14794:1;14786:6;14782:14;14775:58;14867:3;14862:2;14854:6;14850:15;14843:28;14764:114;:::o;14884:224::-;15024:34;15020:1;15012:6;15008:14;15001:58;15093:7;15088:2;15080:6;15076:15;15069:32;14990:118;:::o;15114:223::-;15254:34;15250:1;15242:6;15238:14;15231:58;15323:6;15318:2;15310:6;15306:15;15299:31;15220:117;:::o;15343:224::-;15483:34;15479:1;15471:6;15467:14;15460:58;15552:7;15547:2;15539:6;15535:15;15528:32;15449:118;:::o;15573:122::-;15646:24;15664:5;15646:24;:::i;:::-;15639:5;15636:35;15626:2;;15685:1;15682;15675:12;15626:2;15616:79;:::o;15701:122::-;15774:24;15792:5;15774:24;:::i;:::-;15767:5;15764:35;15754:2;;15813:1;15810;15803:12;15754:2;15744:79;:::o

Swarm Source

ipfs://5316aef65a752d5c4b88b345e82dd71e7e9627f1ef13e3a7cbfed5e803d89e88
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.