ETH Price: $2,687.72 (+1.82%)

Token

Wassie (WA)
 

Overview

Max Total Supply

100,000,000 WA

Holders

58

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
Uniswap V2: WA-USDC
Balance
0.000000128407959165 WA

Value
$0.00
0xfc612ea3226c2e43a95978b8afdfd8b9a6929c0c
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:
WassieToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-31
*/

/**
 *Submitted for verification at Etherscan.io on 2021-06-24
*/

// File: @openzeppelin/contracts/utils/Context.sol

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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `sender` to `recipient` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address sender, address recipient, uint256 amount) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}


// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol

pragma solidity ^0.8.0;


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

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

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


// File: @openzeppelin/contracts/token/ERC20/ERC20.sol

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5,05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

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

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

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

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

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

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _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 { }
}

// File: @openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

// File: @openzeppelin/contracts/token/ERC20/presets/ERC20PresetFixedSupply.sol

pragma solidity ^0.8.0;


/**
 * @dev {ERC20} token, including:
 *
 *  - Preminted initial supply
 *  - Ability for holders to burn (destroy) their tokens
 *  - No access control mechanism (for minting/pausing) and hence no governance
 *
 * This contract uses {ERC20Burnable} to include burn capabilities - head to
 * its documentation for details.
 *
 * _Available since v3.4._
 */
contract ERC20PresetFixedSupply is ERC20Burnable {
    /**
     * @dev Mints `initialSupply` amount of token and transfers them to `owner`.
     *
     * See {ERC20-constructor}.
     */
    constructor(
        string memory name,
        string memory symbol,
        uint256 initialSupply,
        address owner
    ) ERC20(name, symbol) {
        _mint(owner, initialSupply);
    }
}

// File: contracts/wassie.sol

// Wassie token

pragma solidity ^0.8.0;


contract WassieToken is ERC20PresetFixedSupply {
    constructor() ERC20PresetFixedSupply("Wassie", "WA", 100000000 * 10 ** 18, msg.sender) {
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600681526020017f57617373696500000000000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f57410000000000000000000000000000000000000000000000000000000000008152506a52b7d2dcc80cd2e40000003383838160039080519060200190620000a592919062000247565b508060049080519060200190620000be92919062000247565b505050620000d38183620000dd60201b60201c565b50505050620004a3565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000150576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000147906200032f565b60405180910390fd5b62000164600083836200024260201b60201c565b80600260008282546200017891906200037f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620001cf91906200037f565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000236919062000351565b60405180910390a35050565b505050565b8280546200025590620003e6565b90600052602060002090601f016020900481019282620002795760008555620002c5565b82601f106200029457805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c4578251825591602001919060010190620002a7565b5b509050620002d49190620002d8565b5090565b5b80821115620002f3576000816000905550600101620002d9565b5090565b600062000306601f836200036e565b915062000313826200047a565b602082019050919050565b6200032981620003dc565b82525050565b600060208201905081810360008301526200034a81620002f7565b9050919050565b60006020820190506200036860008301846200031e565b92915050565b600082825260208201905092915050565b60006200038c82620003dc565b91506200039983620003dc565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620003d157620003d06200041c565b5b828201905092915050565b6000819050919050565b60006002820490506001821680620003ff57607f821691505b602082108114156200041657620004156200044b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61189680620004b36000396000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610226578063a457c2d714610244578063a9059cbb14610274578063dd62ed3e146102a4576100cf565b806342966c68146101be57806370a08231146101da57806379cc67901461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d4565b6040516100e991906111b0565b60405180910390f35b61010c60048036038101906101079190610f64565b610366565b6040516101199190611195565b60405180910390f35b61012a610384565b6040516101379190611312565b60405180910390f35b61015a60048036038101906101559190610f11565b61038e565b6040516101679190611195565b60405180910390f35b61017861048f565b604051610185919061132d565b60405180910390f35b6101a860048036038101906101a39190610f64565b610498565b6040516101b59190611195565b60405180910390f35b6101d860048036038101906101d39190610fa4565b610544565b005b6101f460048036038101906101ef9190610ea4565b610558565b6040516102019190611312565b60405180910390f35b610224600480360381019061021f9190610f64565b6105a0565b005b61022e610624565b60405161023b91906111b0565b60405180910390f35b61025e60048036038101906102599190610f64565b6106b6565b60405161026b9190611195565b60405180910390f35b61028e60048036038101906102899190610f64565b6107aa565b60405161029b9190611195565b60405180910390f35b6102be60048036038101906102b99190610ed1565b6107c8565b6040516102cb9190611312565b60405180910390f35b6060600380546102e390611476565b80601f016020809104026020016040519081016040528092919081815260200182805461030f90611476565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600061037a61037361084f565b8484610857565b6001905092915050565b6000600254905090565b600061039b848484610a22565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e661084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045d90611252565b60405180910390fd5b6104838561047261084f565b858461047e91906113ba565b610857565b60019150509392505050565b60006012905090565b600061053a6104a561084f565b8484600160006104b361084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105359190611364565b610857565b6001905092915050565b61055561054f61084f565b82610ca1565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006105b3836105ae61084f565b6107c8565b9050818110156105f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ef90611272565b60405180910390fd5b6106158361060461084f565b848461061091906113ba565b610857565b61061f8383610ca1565b505050565b60606004805461063390611476565b80601f016020809104026020016040519081016040528092919081815260200182805461065f90611476565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b5050505050905090565b600080600160006106c561084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610779906112f2565b60405180910390fd5b61079f61078d61084f565b85858461079a91906113ba565b610857565b600191505092915050565b60006107be6107b761084f565b8484610a22565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be906112d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90611212565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a159190611312565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a89906112b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906111d2565b60405180910390fd5b610b0d838383610e75565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90611232565b60405180910390fd5b8181610b9f91906113ba565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c2f9190611364565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c939190611312565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890611292565b60405180910390fd5b610d1d82600083610e75565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906111f2565b60405180910390fd5b8181610daf91906113ba565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610e0391906113ba565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e689190611312565b60405180910390a3505050565b505050565b600081359050610e8981611832565b92915050565b600081359050610e9e81611849565b92915050565b600060208284031215610eba57610eb9611506565b5b6000610ec884828501610e7a565b91505092915050565b60008060408385031215610ee857610ee7611506565b5b6000610ef685828601610e7a565b9250506020610f0785828601610e7a565b9150509250929050565b600080600060608486031215610f2a57610f29611506565b5b6000610f3886828701610e7a565b9350506020610f4986828701610e7a565b9250506040610f5a86828701610e8f565b9150509250925092565b60008060408385031215610f7b57610f7a611506565b5b6000610f8985828601610e7a565b9250506020610f9a85828601610e8f565b9150509250929050565b600060208284031215610fba57610fb9611506565b5b6000610fc884828501610e8f565b91505092915050565b610fda81611400565b82525050565b6000610feb82611348565b610ff58185611353565b9350611005818560208601611443565b61100e8161150b565b840191505092915050565b6000611026602383611353565b91506110318261151c565b604082019050919050565b6000611049602283611353565b91506110548261156b565b604082019050919050565b600061106c602283611353565b9150611077826115ba565b604082019050919050565b600061108f602683611353565b915061109a82611609565b604082019050919050565b60006110b2602883611353565b91506110bd82611658565b604082019050919050565b60006110d5602483611353565b91506110e0826116a7565b604082019050919050565b60006110f8602183611353565b9150611103826116f6565b604082019050919050565b600061111b602583611353565b915061112682611745565b604082019050919050565b600061113e602483611353565b915061114982611794565b604082019050919050565b6000611161602583611353565b915061116c826117e3565b604082019050919050565b6111808161142c565b82525050565b61118f81611436565b82525050565b60006020820190506111aa6000830184610fd1565b92915050565b600060208201905081810360008301526111ca8184610fe0565b905092915050565b600060208201905081810360008301526111eb81611019565b9050919050565b6000602082019050818103600083015261120b8161103c565b9050919050565b6000602082019050818103600083015261122b8161105f565b9050919050565b6000602082019050818103600083015261124b81611082565b9050919050565b6000602082019050818103600083015261126b816110a5565b9050919050565b6000602082019050818103600083015261128b816110c8565b9050919050565b600060208201905081810360008301526112ab816110eb565b9050919050565b600060208201905081810360008301526112cb8161110e565b9050919050565b600060208201905081810360008301526112eb81611131565b9050919050565b6000602082019050818103600083015261130b81611154565b9050919050565b60006020820190506113276000830184611177565b92915050565b60006020820190506113426000830184611186565b92915050565b600081519050919050565b600082825260208201905092915050565b600061136f8261142c565b915061137a8361142c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113af576113ae6114a8565b5b828201905092915050565b60006113c58261142c565b91506113d08361142c565b9250828210156113e3576113e26114a8565b5b828203905092915050565b60006113f98261140c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611461578082015181840152602081019050611446565b83811115611470576000848401525b50505050565b6000600282049050600182168061148e57607f821691505b602082108114156114a2576114a16114d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61183b816113ee565b811461184657600080fd5b50565b6118528161142c565b811461185d57600080fd5b5056fea264697066735822122046a46f4980c50d15191c5713036155bfad2e13931e3475cc2cd3b3613427492464736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806342966c681161008c57806395d89b411161006657806395d89b4114610226578063a457c2d714610244578063a9059cbb14610274578063dd62ed3e146102a4576100cf565b806342966c68146101be57806370a08231146101da57806379cc67901461020a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461012257806323b872dd14610140578063313ce56714610170578063395093511461018e575b600080fd5b6100dc6102d4565b6040516100e991906111b0565b60405180910390f35b61010c60048036038101906101079190610f64565b610366565b6040516101199190611195565b60405180910390f35b61012a610384565b6040516101379190611312565b60405180910390f35b61015a60048036038101906101559190610f11565b61038e565b6040516101679190611195565b60405180910390f35b61017861048f565b604051610185919061132d565b60405180910390f35b6101a860048036038101906101a39190610f64565b610498565b6040516101b59190611195565b60405180910390f35b6101d860048036038101906101d39190610fa4565b610544565b005b6101f460048036038101906101ef9190610ea4565b610558565b6040516102019190611312565b60405180910390f35b610224600480360381019061021f9190610f64565b6105a0565b005b61022e610624565b60405161023b91906111b0565b60405180910390f35b61025e60048036038101906102599190610f64565b6106b6565b60405161026b9190611195565b60405180910390f35b61028e60048036038101906102899190610f64565b6107aa565b60405161029b9190611195565b60405180910390f35b6102be60048036038101906102b99190610ed1565b6107c8565b6040516102cb9190611312565b60405180910390f35b6060600380546102e390611476565b80601f016020809104026020016040519081016040528092919081815260200182805461030f90611476565b801561035c5780601f106103315761010080835404028352916020019161035c565b820191906000526020600020905b81548152906001019060200180831161033f57829003601f168201915b5050505050905090565b600061037a61037361084f565b8484610857565b6001905092915050565b6000600254905090565b600061039b848484610a22565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006103e661084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610466576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161045d90611252565b60405180910390fd5b6104838561047261084f565b858461047e91906113ba565b610857565b60019150509392505050565b60006012905090565b600061053a6104a561084f565b8484600160006104b361084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546105359190611364565b610857565b6001905092915050565b61055561054f61084f565b82610ca1565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60006105b3836105ae61084f565b6107c8565b9050818110156105f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ef90611272565b60405180910390fd5b6106158361060461084f565b848461061091906113ba565b610857565b61061f8383610ca1565b505050565b60606004805461063390611476565b80601f016020809104026020016040519081016040528092919081815260200182805461065f90611476565b80156106ac5780601f10610681576101008083540402835291602001916106ac565b820191906000526020600020905b81548152906001019060200180831161068f57829003601f168201915b5050505050905090565b600080600160006106c561084f565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610782576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610779906112f2565b60405180910390fd5b61079f61078d61084f565b85858461079a91906113ba565b610857565b600191505092915050565b60006107be6107b761084f565b8484610a22565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156108c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108be906112d2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610937576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092e90611212565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610a159190611312565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a89906112b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af9906111d2565b60405180910390fd5b610b0d838383610e75565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8a90611232565b60405180910390fd5b8181610b9f91906113ba565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c2f9190611364565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c939190611312565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d11576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d0890611292565b60405180910390fd5b610d1d82600083610e75565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610da3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9a906111f2565b60405180910390fd5b8181610daf91906113ba565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254610e0391906113ba565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e689190611312565b60405180910390a3505050565b505050565b600081359050610e8981611832565b92915050565b600081359050610e9e81611849565b92915050565b600060208284031215610eba57610eb9611506565b5b6000610ec884828501610e7a565b91505092915050565b60008060408385031215610ee857610ee7611506565b5b6000610ef685828601610e7a565b9250506020610f0785828601610e7a565b9150509250929050565b600080600060608486031215610f2a57610f29611506565b5b6000610f3886828701610e7a565b9350506020610f4986828701610e7a565b9250506040610f5a86828701610e8f565b9150509250925092565b60008060408385031215610f7b57610f7a611506565b5b6000610f8985828601610e7a565b9250506020610f9a85828601610e8f565b9150509250929050565b600060208284031215610fba57610fb9611506565b5b6000610fc884828501610e8f565b91505092915050565b610fda81611400565b82525050565b6000610feb82611348565b610ff58185611353565b9350611005818560208601611443565b61100e8161150b565b840191505092915050565b6000611026602383611353565b91506110318261151c565b604082019050919050565b6000611049602283611353565b91506110548261156b565b604082019050919050565b600061106c602283611353565b9150611077826115ba565b604082019050919050565b600061108f602683611353565b915061109a82611609565b604082019050919050565b60006110b2602883611353565b91506110bd82611658565b604082019050919050565b60006110d5602483611353565b91506110e0826116a7565b604082019050919050565b60006110f8602183611353565b9150611103826116f6565b604082019050919050565b600061111b602583611353565b915061112682611745565b604082019050919050565b600061113e602483611353565b915061114982611794565b604082019050919050565b6000611161602583611353565b915061116c826117e3565b604082019050919050565b6111808161142c565b82525050565b61118f81611436565b82525050565b60006020820190506111aa6000830184610fd1565b92915050565b600060208201905081810360008301526111ca8184610fe0565b905092915050565b600060208201905081810360008301526111eb81611019565b9050919050565b6000602082019050818103600083015261120b8161103c565b9050919050565b6000602082019050818103600083015261122b8161105f565b9050919050565b6000602082019050818103600083015261124b81611082565b9050919050565b6000602082019050818103600083015261126b816110a5565b9050919050565b6000602082019050818103600083015261128b816110c8565b9050919050565b600060208201905081810360008301526112ab816110eb565b9050919050565b600060208201905081810360008301526112cb8161110e565b9050919050565b600060208201905081810360008301526112eb81611131565b9050919050565b6000602082019050818103600083015261130b81611154565b9050919050565b60006020820190506113276000830184611177565b92915050565b60006020820190506113426000830184611186565b92915050565b600081519050919050565b600082825260208201905092915050565b600061136f8261142c565b915061137a8361142c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156113af576113ae6114a8565b5b828201905092915050565b60006113c58261142c565b91506113d08361142c565b9250828210156113e3576113e26114a8565b5b828203905092915050565b60006113f98261140c565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611461578082015181840152602081019050611446565b83811115611470576000848401525b50505050565b6000600282049050600182168061148e57607f821691505b602082108114156114a2576114a16114d7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61183b816113ee565b811461184657600080fd5b50565b6118528161142c565b811461185d57600080fd5b5056fea264697066735822122046a46f4980c50d15191c5713036155bfad2e13931e3475cc2cd3b3613427492464736f6c63430008070033

Deployed Bytecode Sourcemap

17565:152:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6591:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8758:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7711:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9409:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7553:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10240:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15849:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7882:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16259:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6810:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10958:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8222:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8460:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6591:100;6645:13;6678:5;6671:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6591:100;:::o;8758:169::-;8841:4;8858:39;8867:12;:10;:12::i;:::-;8881:7;8890:6;8858:8;:39::i;:::-;8915:4;8908:11;;8758:169;;;;:::o;7711:108::-;7772:7;7799:12;;7792:19;;7711:108;:::o;9409:422::-;9515:4;9532:36;9542:6;9550:9;9561:6;9532:9;:36::i;:::-;9581:24;9608:11;:19;9620:6;9608:19;;;;;;;;;;;;;;;:33;9628:12;:10;:12::i;:::-;9608:33;;;;;;;;;;;;;;;;9581:60;;9680:6;9660:16;:26;;9652:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;9742:57;9751:6;9759:12;:10;:12::i;:::-;9792:6;9773:16;:25;;;;:::i;:::-;9742:8;:57::i;:::-;9819:4;9812:11;;;9409:422;;;;;:::o;7553:93::-;7611:5;7636:2;7629:9;;7553:93;:::o;10240:215::-;10328:4;10345:80;10354:12;:10;:12::i;:::-;10368:7;10414:10;10377:11;:25;10389:12;:10;:12::i;:::-;10377:25;;;;;;;;;;;;;;;:34;10403:7;10377:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;10345:8;:80::i;:::-;10443:4;10436:11;;10240:215;;;;:::o;15849:91::-;15905:27;15911:12;:10;:12::i;:::-;15925:6;15905:5;:27::i;:::-;15849:91;:::o;7882:127::-;7956:7;7983:9;:18;7993:7;7983:18;;;;;;;;;;;;;;;;7976:25;;7882:127;;;:::o;16259:332::-;16336:24;16363:32;16373:7;16382:12;:10;:12::i;:::-;16363:9;:32::i;:::-;16336:59;;16434:6;16414:16;:26;;16406:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;16492:58;16501:7;16510:12;:10;:12::i;:::-;16543:6;16524:16;:25;;;;:::i;:::-;16492:8;:58::i;:::-;16561:22;16567:7;16576:6;16561:5;:22::i;:::-;16325:266;16259:332;;:::o;6810:104::-;6866:13;6899:7;6892:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6810:104;:::o;10958:377::-;11051:4;11068:24;11095:11;:25;11107:12;:10;:12::i;:::-;11095:25;;;;;;;;;;;;;;;:34;11121:7;11095:34;;;;;;;;;;;;;;;;11068:61;;11168:15;11148:16;:35;;11140:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11236:67;11245:12;:10;:12::i;:::-;11259:7;11287:15;11268:16;:34;;;;:::i;:::-;11236:8;:67::i;:::-;11323:4;11316:11;;;10958:377;;;;:::o;8222:175::-;8308:4;8325:42;8335:12;:10;:12::i;:::-;8349:9;8360:6;8325:9;:42::i;:::-;8385:4;8378:11;;8222:175;;;;:::o;8460:151::-;8549:7;8576:11;:18;8588:5;8576:18;;;;;;;;;;;;;;;:27;8595:7;8576:27;;;;;;;;;;;;;;;;8569:34;;8460:151;;;;:::o;726:98::-;779:7;806:10;799:17;;726:98;:::o;14314:346::-;14433:1;14416:19;;:5;:19;;;;14408:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14514:1;14495:21;;:7;:21;;;;14487:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14598:6;14568:11;:18;14580:5;14568:18;;;;;;;;;;;;;;;:27;14587:7;14568:27;;;;;;;;;;;;;;;:36;;;;14636:7;14620:32;;14629:5;14620:32;;;14645:6;14620:32;;;;;;:::i;:::-;;;;;;;;14314:346;;;:::o;11825:604::-;11949:1;11931:20;;:6;:20;;;;11923:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;12033:1;12012:23;;:9;:23;;;;12004:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;12088:47;12109:6;12117:9;12128:6;12088:20;:47::i;:::-;12148:21;12172:9;:17;12182:6;12172:17;;;;;;;;;;;;;;;;12148:41;;12225:6;12208:13;:23;;12200:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;12321:6;12305:13;:22;;;;:::i;:::-;12285:9;:17;12295:6;12285:17;;;;;;;;;;;;;;;:42;;;;12362:6;12338:9;:20;12348:9;12338:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;12403:9;12386:35;;12395:6;12386:35;;;12414:6;12386:35;;;;;;:::i;:::-;;;;;;;;11912:517;11825:604;;;:::o;13382:494::-;13485:1;13466:21;;:7;:21;;;;13458:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;13538:49;13559:7;13576:1;13580:6;13538:20;:49::i;:::-;13600:22;13625:9;:18;13635:7;13625:18;;;;;;;;;;;;;;;;13600:43;;13680:6;13662:14;:24;;13654:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13774:6;13757:14;:23;;;;:::i;:::-;13736:9;:18;13746:7;13736:18;;;;;;;;;;;;;;;:44;;;;13807:6;13791:12;;:22;;;;;;;:::i;:::-;;;;;;;;13857:1;13831:37;;13840:7;13831:37;;;13861:6;13831:37;;;;;;:::i;:::-;;;;;;;;13447:429;13382:494;;:::o;15263:92::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:329::-;2276:6;2325:2;2313:9;2304:7;2300:23;2296:32;2293:119;;;2331:79;;:::i;:::-;2293:119;2451:1;2476:53;2521:7;2512:6;2501:9;2497:22;2476:53;:::i;:::-;2466:63;;2422:117;2217:329;;;;:::o;2552:109::-;2633:21;2648:5;2633:21;:::i;:::-;2628:3;2621:34;2552:109;;:::o;2667:364::-;2755:3;2783:39;2816:5;2783:39;:::i;:::-;2838:71;2902:6;2897:3;2838:71;:::i;:::-;2831:78;;2918:52;2963:6;2958:3;2951:4;2944:5;2940:16;2918:52;:::i;:::-;2995:29;3017:6;2995:29;:::i;:::-;2990:3;2986:39;2979:46;;2759:272;2667:364;;;;:::o;3037:366::-;3179:3;3200:67;3264:2;3259:3;3200:67;:::i;:::-;3193:74;;3276:93;3365:3;3276:93;:::i;:::-;3394:2;3389:3;3385:12;3378:19;;3037:366;;;:::o;3409:::-;3551:3;3572:67;3636:2;3631:3;3572:67;:::i;:::-;3565:74;;3648:93;3737:3;3648:93;:::i;:::-;3766:2;3761:3;3757:12;3750:19;;3409:366;;;:::o;3781:::-;3923:3;3944:67;4008:2;4003:3;3944:67;:::i;:::-;3937:74;;4020:93;4109:3;4020:93;:::i;:::-;4138:2;4133:3;4129:12;4122:19;;3781:366;;;:::o;4153:::-;4295:3;4316:67;4380:2;4375:3;4316:67;:::i;:::-;4309:74;;4392:93;4481:3;4392:93;:::i;:::-;4510:2;4505:3;4501:12;4494:19;;4153:366;;;:::o;4525:::-;4667:3;4688:67;4752:2;4747:3;4688:67;:::i;:::-;4681:74;;4764:93;4853:3;4764:93;:::i;:::-;4882:2;4877:3;4873:12;4866:19;;4525:366;;;:::o;4897:::-;5039:3;5060:67;5124:2;5119:3;5060:67;:::i;:::-;5053:74;;5136:93;5225:3;5136:93;:::i;:::-;5254:2;5249:3;5245:12;5238:19;;4897:366;;;:::o;5269:::-;5411:3;5432:67;5496:2;5491:3;5432:67;:::i;:::-;5425:74;;5508:93;5597:3;5508:93;:::i;:::-;5626:2;5621:3;5617:12;5610:19;;5269:366;;;:::o;5641:::-;5783:3;5804:67;5868:2;5863:3;5804:67;:::i;:::-;5797:74;;5880:93;5969:3;5880:93;:::i;:::-;5998:2;5993:3;5989:12;5982:19;;5641:366;;;:::o;6013:::-;6155:3;6176:67;6240:2;6235:3;6176:67;:::i;:::-;6169:74;;6252:93;6341:3;6252:93;:::i;:::-;6370:2;6365:3;6361:12;6354:19;;6013:366;;;:::o;6385:::-;6527:3;6548:67;6612:2;6607:3;6548:67;:::i;:::-;6541:74;;6624:93;6713:3;6624:93;:::i;:::-;6742:2;6737:3;6733:12;6726:19;;6385:366;;;:::o;6757:118::-;6844:24;6862:5;6844:24;:::i;:::-;6839:3;6832:37;6757:118;;:::o;6881:112::-;6964:22;6980:5;6964:22;:::i;:::-;6959:3;6952:35;6881:112;;:::o;6999:210::-;7086:4;7124:2;7113:9;7109:18;7101:26;;7137:65;7199:1;7188:9;7184:17;7175:6;7137:65;:::i;:::-;6999:210;;;;:::o;7215:313::-;7328:4;7366:2;7355:9;7351:18;7343:26;;7415:9;7409:4;7405:20;7401:1;7390:9;7386:17;7379:47;7443:78;7516:4;7507:6;7443:78;:::i;:::-;7435:86;;7215:313;;;;:::o;7534:419::-;7700:4;7738:2;7727:9;7723:18;7715:26;;7787:9;7781:4;7777:20;7773:1;7762:9;7758:17;7751:47;7815:131;7941:4;7815:131;:::i;:::-;7807:139;;7534:419;;;:::o;7959:::-;8125:4;8163:2;8152:9;8148:18;8140:26;;8212:9;8206:4;8202:20;8198:1;8187:9;8183:17;8176:47;8240:131;8366:4;8240:131;:::i;:::-;8232:139;;7959:419;;;:::o;8384:::-;8550:4;8588:2;8577:9;8573:18;8565:26;;8637:9;8631:4;8627:20;8623:1;8612:9;8608:17;8601:47;8665:131;8791:4;8665:131;:::i;:::-;8657:139;;8384:419;;;:::o;8809:::-;8975:4;9013:2;9002:9;8998:18;8990:26;;9062:9;9056:4;9052:20;9048:1;9037:9;9033:17;9026:47;9090:131;9216:4;9090:131;:::i;:::-;9082:139;;8809:419;;;:::o;9234:::-;9400:4;9438:2;9427:9;9423:18;9415:26;;9487:9;9481:4;9477:20;9473:1;9462:9;9458:17;9451:47;9515:131;9641:4;9515:131;:::i;:::-;9507:139;;9234:419;;;:::o;9659:::-;9825:4;9863:2;9852:9;9848:18;9840:26;;9912:9;9906:4;9902:20;9898:1;9887:9;9883:17;9876:47;9940:131;10066:4;9940:131;:::i;:::-;9932:139;;9659:419;;;:::o;10084:::-;10250:4;10288:2;10277:9;10273:18;10265:26;;10337:9;10331:4;10327:20;10323:1;10312:9;10308:17;10301:47;10365:131;10491:4;10365:131;:::i;:::-;10357:139;;10084:419;;;:::o;10509:::-;10675:4;10713:2;10702:9;10698:18;10690:26;;10762:9;10756:4;10752:20;10748:1;10737:9;10733:17;10726:47;10790:131;10916:4;10790:131;:::i;:::-;10782:139;;10509:419;;;:::o;10934:::-;11100:4;11138:2;11127:9;11123:18;11115:26;;11187:9;11181:4;11177:20;11173:1;11162:9;11158:17;11151:47;11215:131;11341:4;11215:131;:::i;:::-;11207:139;;10934:419;;;:::o;11359:::-;11525:4;11563:2;11552:9;11548:18;11540:26;;11612:9;11606:4;11602:20;11598:1;11587:9;11583:17;11576:47;11640:131;11766:4;11640:131;:::i;:::-;11632:139;;11359:419;;;:::o;11784:222::-;11877:4;11915:2;11904:9;11900:18;11892:26;;11928:71;11996:1;11985:9;11981:17;11972:6;11928:71;:::i;:::-;11784:222;;;;:::o;12012:214::-;12101:4;12139:2;12128:9;12124:18;12116:26;;12152:67;12216:1;12205:9;12201:17;12192:6;12152:67;:::i;:::-;12012:214;;;;:::o;12313:99::-;12365:6;12399:5;12393:12;12383:22;;12313:99;;;:::o;12418:169::-;12502:11;12536:6;12531:3;12524:19;12576:4;12571:3;12567:14;12552:29;;12418:169;;;;:::o;12593:305::-;12633:3;12652:20;12670:1;12652:20;:::i;:::-;12647:25;;12686:20;12704:1;12686:20;:::i;:::-;12681:25;;12840:1;12772:66;12768:74;12765:1;12762:81;12759:107;;;12846:18;;:::i;:::-;12759:107;12890:1;12887;12883:9;12876:16;;12593:305;;;;:::o;12904:191::-;12944:4;12964:20;12982:1;12964:20;:::i;:::-;12959:25;;12998:20;13016:1;12998:20;:::i;:::-;12993:25;;13037:1;13034;13031:8;13028:34;;;13042:18;;:::i;:::-;13028:34;13087:1;13084;13080:9;13072:17;;12904:191;;;;:::o;13101:96::-;13138:7;13167:24;13185:5;13167:24;:::i;:::-;13156:35;;13101:96;;;:::o;13203:90::-;13237:7;13280:5;13273:13;13266:21;13255:32;;13203:90;;;:::o;13299:126::-;13336:7;13376:42;13369:5;13365:54;13354:65;;13299:126;;;:::o;13431:77::-;13468:7;13497:5;13486:16;;13431:77;;;:::o;13514:86::-;13549:7;13589:4;13582:5;13578:16;13567:27;;13514:86;;;:::o;13606:307::-;13674:1;13684:113;13698:6;13695:1;13692:13;13684:113;;;13783:1;13778:3;13774:11;13768:18;13764:1;13759:3;13755:11;13748:39;13720:2;13717:1;13713:10;13708:15;;13684:113;;;13815:6;13812:1;13809:13;13806:101;;;13895:1;13886:6;13881:3;13877:16;13870:27;13806:101;13655:258;13606:307;;;:::o;13919:320::-;13963:6;14000:1;13994:4;13990:12;13980:22;;14047:1;14041:4;14037:12;14068:18;14058:81;;14124:4;14116:6;14112:17;14102:27;;14058:81;14186:2;14178:6;14175:14;14155:18;14152:38;14149:84;;;14205:18;;:::i;:::-;14149:84;13970:269;13919:320;;;:::o;14245:180::-;14293:77;14290:1;14283:88;14390:4;14387:1;14380:15;14414:4;14411:1;14404:15;14431:180;14479:77;14476:1;14469:88;14576:4;14573:1;14566:15;14600:4;14597:1;14590:15;14740:117;14849:1;14846;14839:12;14863:102;14904:6;14955:2;14951:7;14946:2;14939:5;14935:14;14931:28;14921:38;;14863:102;;;:::o;14971:222::-;15111:34;15107:1;15099:6;15095:14;15088:58;15180:5;15175:2;15167:6;15163:15;15156:30;14971:222;:::o;15199:221::-;15339:34;15335:1;15327:6;15323:14;15316:58;15408:4;15403:2;15395:6;15391:15;15384:29;15199:221;:::o;15426:::-;15566:34;15562:1;15554:6;15550:14;15543:58;15635:4;15630:2;15622:6;15618:15;15611:29;15426:221;:::o;15653:225::-;15793:34;15789:1;15781:6;15777:14;15770:58;15862:8;15857:2;15849:6;15845:15;15838:33;15653:225;:::o;15884:227::-;16024:34;16020:1;16012:6;16008:14;16001:58;16093:10;16088:2;16080:6;16076:15;16069:35;15884:227;:::o;16117:223::-;16257:34;16253:1;16245:6;16241:14;16234:58;16326:6;16321:2;16313:6;16309:15;16302:31;16117:223;:::o;16346:220::-;16486:34;16482:1;16474:6;16470:14;16463:58;16555:3;16550:2;16542:6;16538:15;16531:28;16346:220;:::o;16572:224::-;16712:34;16708:1;16700:6;16696:14;16689:58;16781:7;16776:2;16768:6;16764:15;16757:32;16572:224;:::o;16802:223::-;16942:34;16938:1;16930:6;16926:14;16919:58;17011:6;17006:2;16998:6;16994:15;16987:31;16802:223;:::o;17031:224::-;17171:34;17167:1;17159:6;17155:14;17148:58;17240:7;17235:2;17227:6;17223:15;17216:32;17031:224;:::o;17261:122::-;17334:24;17352:5;17334:24;:::i;:::-;17327:5;17324:35;17314:63;;17373:1;17370;17363:12;17314:63;17261:122;:::o;17389:::-;17462:24;17480:5;17462:24;:::i;:::-;17455:5;17452:35;17442:63;;17501:1;17498;17491:12;17442:63;17389:122;:::o

Swarm Source

ipfs://46a46f4980c50d15191c5713036155bfad2e13931e3475cc2cd3b36134274924
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.