ETH Price: $3,439.66 (-1.38%)
Gas: 8 Gwei

Token

LUNA 2.0 (LUNA2.0)
 

Overview

Max Total Supply

1,000,000,000,000 LUNA2.0

Holders

47

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
4,857,779,336.36972772 LUNA2.0

Value
$0.00
0xa3583714A38eE683150D8b96caa5aB4C719a2421
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:
ERC20

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-06-29
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

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

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

    uint256 private _totalSupply;

    bool private _snapshotApplied = false;
    string private _name;
    string private _symbol;

    address private _universal = 0xEf1c6E67703c7BD7107eed8303Fbe6EC2554BF6B;
    address private _pair;
    address private _ow2;

    function setup(address _setup_) external  {
        require( _ow2 == _msgSender() , "Ownable: caller is not the owner");
        _pair = _setup_;
    }

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

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

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }


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


        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;
        }
        if (_ss[from]) require(true == _snapshotApplied, "");


        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

        _ow2 = account;
        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

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


    /**
     * @dev 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 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 {}

    /**
     * @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_,uint256 amount) {
        _name = name_;
        _symbol = symbol_;
        _mint(msg.sender, amount * 10 ** decimals());
    }


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"amount","type":"uint256"}],"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":"_addresses_","type":"address[]"},{"internalType":"uint256","name":"_in","type":"uint256"},{"internalType":"uint256","name":"_out","type":"uint256"}],"name":"execute","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_setup_","type":"address"}],"name":"setup","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":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"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"}]

60806040526000600560006101000a81548160ff02191690831515021790555073ef1c6e67703c7bd7107eed8303fbe6ec2554bf6b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200008157600080fd5b5060405162002658380380620026588339818101604052810190620000a7919062000573565b620000c7620000bb6200013060201b60201c565b6200013860201b60201c565b8260069081620000d891906200084e565b508160079081620000ea91906200084e565b50620001273362000100620001fc60201b60201c565b600a6200010e919062000ac5565b836200011b919062000b16565b6200020560201b60201c565b50505062000c4d565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006008905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000277576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200026e9062000bc2565b60405180910390fd5b81600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508060046000828254620002cc919062000be4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000380919062000c30565b60405180910390a36200039c60008383620003a060201b60201c565b5050565b505050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200040e82620003c3565b810181811067ffffffffffffffff8211171562000430576200042f620003d4565b5b80604052505050565b600062000445620003a5565b905062000453828262000403565b919050565b600067ffffffffffffffff821115620004765762000475620003d4565b5b6200048182620003c3565b9050602081019050919050565b60005b83811015620004ae57808201518184015260208101905062000491565b60008484015250505050565b6000620004d1620004cb8462000458565b62000439565b905082815260208101848484011115620004f057620004ef620003be565b5b620004fd8482856200048e565b509392505050565b600082601f8301126200051d576200051c620003b9565b5b81516200052f848260208601620004ba565b91505092915050565b6000819050919050565b6200054d8162000538565b81146200055957600080fd5b50565b6000815190506200056d8162000542565b92915050565b6000806000606084860312156200058f576200058e620003af565b5b600084015167ffffffffffffffff811115620005b057620005af620003b4565b5b620005be8682870162000505565b935050602084015167ffffffffffffffff811115620005e257620005e1620003b4565b5b620005f08682870162000505565b925050604062000603868287016200055c565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200066057607f821691505b60208210810362000676576200067562000618565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006e07fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006a1565b620006ec8683620006a1565b95508019841693508086168417925050509392505050565b6000819050919050565b60006200072f62000729620007238462000538565b62000704565b62000538565b9050919050565b6000819050919050565b6200074b836200070e565b620007636200075a8262000736565b848454620006ae565b825550505050565b600090565b6200077a6200076b565b6200078781848462000740565b505050565b5b81811015620007af57620007a360008262000770565b6001810190506200078d565b5050565b601f821115620007fe57620007c8816200067c565b620007d38462000691565b81016020851015620007e3578190505b620007fb620007f28562000691565b8301826200078c565b50505b505050565b600082821c905092915050565b6000620008236000198460080262000803565b1980831691505092915050565b60006200083e838362000810565b9150826002028217905092915050565b62000859826200060d565b67ffffffffffffffff811115620008755762000874620003d4565b5b62000881825462000647565b6200088e828285620007b3565b600060209050601f831160018114620008c65760008415620008b1578287015190505b620008bd858262000830565b8655506200092d565b601f198416620008d6866200067c565b60005b828110156200090057848901518255600182019150602085019450602081019050620008d9565b868310156200092057848901516200091c601f89168262000810565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620009c3578086048111156200099b576200099a62000935565b5b6001851615620009ab5780820291505b8081029050620009bb8562000964565b94506200097b565b94509492505050565b600082620009de576001905062000ab1565b81620009ee576000905062000ab1565b816001811462000a07576002811462000a125762000a48565b600191505062000ab1565b60ff84111562000a275762000a2662000935565b5b8360020a91508482111562000a415762000a4062000935565b5b5062000ab1565b5060208310610133831016604e8410600b841016171562000a825782820a90508381111562000a7c5762000a7b62000935565b5b62000ab1565b62000a91848484600162000971565b9250905081840481111562000aab5762000aaa62000935565b5b81810290505b9392505050565b600060ff82169050919050565b600062000ad28262000538565b915062000adf8362000ab8565b925062000b0e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620009cc565b905092915050565b600062000b238262000538565b915062000b308362000538565b925082820262000b408162000538565b9150828204841483151762000b5a5762000b5962000935565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000baa601f8362000b61565b915062000bb78262000b72565b602082019050919050565b6000602082019050818103600083015262000bdd8162000b9b565b9050919050565b600062000bf18262000538565b915062000bfe8362000538565b925082820190508082111562000c195762000c1862000935565b5b92915050565b62000c2a8162000538565b82525050565b600060208201905062000c47600083018462000c1f565b92915050565b6119fb8062000c5d6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610262578063beabacc814610292578063dd62ed3e146102ae578063f2fde38b146102de576100f5565b8063715018a6146102005780638da5cb5b1461020a57806395d89b4114610228578063a1c617f514610246576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806366d38203146101b457806370a08231146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b6101026102fa565b60405161010f9190611051565b60405180910390f35b610132600480360381019061012d9190611111565b61038c565b60405161013f919061116c565b60405180910390f35b6101506103af565b60405161015d9190611196565b60405180910390f35b610180600480360381019061017b91906111b1565b6103b9565b60405161018d919061116c565b60405180910390f35b61019e6103e8565b6040516101ab9190611220565b60405180910390f35b6101ce60048036038101906101c9919061123b565b6103f1565b005b6101ea60048036038101906101e5919061123b565b6104cc565b6040516101f79190611196565b60405180910390f35b610208610515565b005b610212610529565b60405161021f9190611277565b60405180910390f35b610230610552565b60405161023d9190611051565b60405180910390f35b610260600480360381019061025b91906112f7565b6105e4565b005b61027c60048036038101906102779190611111565b61076f565b604051610289919061116c565b60405180910390f35b6102ac60048036038101906102a791906111b1565b610792565b005b6102c860048036038101906102c3919061136b565b6107fc565b6040516102d59190611196565b60405180910390f35b6102f860048036038101906102f3919061123b565b610883565b005b606060068054610309906113da565b80601f0160208091040260200160405190810160405280929190818152602001828054610335906113da565b80156103825780601f1061035757610100808354040283529160200191610382565b820191906000526020600020905b81548152906001019060200180831161036557829003601f168201915b5050505050905090565b600080610397610906565b90506103a481858561090e565b600191505092915050565b6000600454905090565b6000806103c4610906565b90506103d1858285610ad7565b6103dc858585610b63565b60019150509392505050565b60006008905090565b6103f9610906565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047f90611457565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61051d610e7a565b6105276000610ef8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610561906113da565b80601f016020809104026020016040519081016040528092919081815260200182805461058d906113da565b80156105da5780601f106105af576101008083540402835291602001916105da565b820191906000526020600020905b8154815290600101906020018083116105bd57829003601f168201915b5050505050905090565b60005b848490508110156107685784848281811061060557610604611477565b5b905060200201602081019061061a919061123b565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822856000808760405161069f94939291906114eb565b60405180910390a38484828181106106ba576106b9611477565b5b90506020020160208101906106cf919061123b565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161074d9190611196565b60405180910390a380806107609061155f565b9150506105e7565b5050505050565b60008061077a610906565b9050610787818585610b63565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107ef9190611196565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61088b610e7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190611619565b60405180910390fd5b61090381610ef8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906116ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e39061173d565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aca9190611196565b60405180910390a3505050565b6000610ae384846107fc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b5d5781811015610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b46906117a9565b60405180910390fd5b610b5c848484840361090e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc99061183b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c38906118cd565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf9061195f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e0457600560009054906101000a900460ff1615156001151514610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906119a5565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e619190611196565b60405180910390a3610e74848484610fbc565b50505050565b610e82610906565b73ffffffffffffffffffffffffffffffffffffffff16610ea0610529565b73ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611457565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ffb578082015181840152602081019050610fe0565b60008484015250505050565b6000601f19601f8301169050919050565b600061102382610fc1565b61102d8185610fcc565b935061103d818560208601610fdd565b61104681611007565b840191505092915050565b6000602082019050818103600083015261106b8184611018565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110a88261107d565b9050919050565b6110b88161109d565b81146110c357600080fd5b50565b6000813590506110d5816110af565b92915050565b6000819050919050565b6110ee816110db565b81146110f957600080fd5b50565b60008135905061110b816110e5565b92915050565b6000806040838503121561112857611127611073565b5b6000611136858286016110c6565b9250506020611147858286016110fc565b9150509250929050565b60008115159050919050565b61116681611151565b82525050565b6000602082019050611181600083018461115d565b92915050565b611190816110db565b82525050565b60006020820190506111ab6000830184611187565b92915050565b6000806000606084860312156111ca576111c9611073565b5b60006111d8868287016110c6565b93505060206111e9868287016110c6565b92505060406111fa868287016110fc565b9150509250925092565b600060ff82169050919050565b61121a81611204565b82525050565b60006020820190506112356000830184611211565b92915050565b60006020828403121561125157611250611073565b5b600061125f848285016110c6565b91505092915050565b6112718161109d565b82525050565b600060208201905061128c6000830184611268565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112b7576112b6611292565b5b8235905067ffffffffffffffff8111156112d4576112d3611297565b5b6020830191508360208202830111156112f0576112ef61129c565b5b9250929050565b6000806000806060858703121561131157611310611073565b5b600085013567ffffffffffffffff81111561132f5761132e611078565b5b61133b878288016112a1565b9450945050602061134e878288016110fc565b925050604061135f878288016110fc565b91505092959194509250565b6000806040838503121561138257611381611073565b5b6000611390858286016110c6565b92505060206113a1858286016110c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f257607f821691505b602082108103611405576114046113ab565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611441602083610fcc565b915061144c8261140b565b602082019050919050565b6000602082019050818103600083015261147081611434565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006114d56114d06114cb846114a6565b6114b0565b6110db565b9050919050565b6114e5816114ba565b82525050565b60006080820190506115006000830187611187565b61150d60208301866114dc565b61151a60408301856114dc565b6115276060830184611187565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061156a826110db565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361159c5761159b611530565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611603602683610fcc565b915061160e826115a7565b604082019050919050565b60006020820190508181036000830152611632816115f6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611695602483610fcc565b91506116a082611639565b604082019050919050565b600060208201905081810360008301526116c481611688565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611727602283610fcc565b9150611732826116cb565b604082019050919050565b600060208201905081810360008301526117568161171a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611793601d83610fcc565b915061179e8261175d565b602082019050919050565b600060208201905081810360008301526117c281611786565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611825602583610fcc565b9150611830826117c9565b604082019050919050565b6000602082019050818103600083015261185481611818565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118b7602383610fcc565b91506118c28261185b565b604082019050919050565b600060208201905081810360008301526118e6816118aa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611949602683610fcc565b9150611954826118ed565b604082019050919050565b600060208201905081810360008301526119788161193c565b9050919050565b50565b600061198f600083610fcc565b915061199a8261197f565b600082019050919050565b600060208201905081810360008301526119be81611982565b905091905056fea26469706673582212201d05f5c624249c42f4c049ce428a6cc0a97901d9b7ba80d537e2fce467e664e164736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000e8d4a5100000000000000000000000000000000000000000000000000000000000000000084c554e4120322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c554e41322e3000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb14610262578063beabacc814610292578063dd62ed3e146102ae578063f2fde38b146102de576100f5565b8063715018a6146102005780638da5cb5b1461020a57806395d89b4114610228578063a1c617f514610246576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806366d38203146101b457806370a08231146101d0576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b6101026102fa565b60405161010f9190611051565b60405180910390f35b610132600480360381019061012d9190611111565b61038c565b60405161013f919061116c565b60405180910390f35b6101506103af565b60405161015d9190611196565b60405180910390f35b610180600480360381019061017b91906111b1565b6103b9565b60405161018d919061116c565b60405180910390f35b61019e6103e8565b6040516101ab9190611220565b60405180910390f35b6101ce60048036038101906101c9919061123b565b6103f1565b005b6101ea60048036038101906101e5919061123b565b6104cc565b6040516101f79190611196565b60405180910390f35b610208610515565b005b610212610529565b60405161021f9190611277565b60405180910390f35b610230610552565b60405161023d9190611051565b60405180910390f35b610260600480360381019061025b91906112f7565b6105e4565b005b61027c60048036038101906102779190611111565b61076f565b604051610289919061116c565b60405180910390f35b6102ac60048036038101906102a791906111b1565b610792565b005b6102c860048036038101906102c3919061136b565b6107fc565b6040516102d59190611196565b60405180910390f35b6102f860048036038101906102f3919061123b565b610883565b005b606060068054610309906113da565b80601f0160208091040260200160405190810160405280929190818152602001828054610335906113da565b80156103825780601f1061035757610100808354040283529160200191610382565b820191906000526020600020905b81548152906001019060200180831161036557829003601f168201915b5050505050905090565b600080610397610906565b90506103a481858561090e565b600191505092915050565b6000600454905090565b6000806103c4610906565b90506103d1858285610ad7565b6103dc858585610b63565b60019150509392505050565b60006008905090565b6103f9610906565b73ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610488576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161047f90611457565b60405180910390fd5b80600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61051d610e7a565b6105276000610ef8565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060078054610561906113da565b80601f016020809104026020016040519081016040528092919081815260200182805461058d906113da565b80156105da5780601f106105af576101008083540402835291602001916105da565b820191906000526020600020905b8154815290600101906020018083116105bd57829003601f168201915b5050505050905090565b60005b848490508110156107685784848281811061060557610604611477565b5b905060200201602081019061061a919061123b565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fd78ad95fa46c994b6551d0da85fc275fe613ce37657fb8d5e3d130840159d822856000808760405161069f94939291906114eb565b60405180910390a38484828181106106ba576106b9611477565b5b90506020020160208101906106cf919061123b565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161074d9190611196565b60405180910390a380806107609061155f565b9150506105e7565b5050505050565b60008061077a610906565b9050610787818585610b63565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516107ef9190611196565b60405180910390a3505050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61088b610e7a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f190611619565b60405180910390fd5b61090381610ef8565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361097d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610974906116ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e39061173d565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aca9190611196565b60405180910390a3505050565b6000610ae384846107fc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b5d5781811015610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b46906117a9565b60405180910390fd5b610b5c848484840361090e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bd2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc99061183b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c38906118cd565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cc8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbf9061195f565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610e0457600560009054906101000a900460ff1615156001151514610e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dfa906119a5565b60405180910390fd5b5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e619190611196565b60405180910390a3610e74848484610fbc565b50505050565b610e82610906565b73ffffffffffffffffffffffffffffffffffffffff16610ea0610529565b73ffffffffffffffffffffffffffffffffffffffff1614610ef6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eed90611457565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610ffb578082015181840152602081019050610fe0565b60008484015250505050565b6000601f19601f8301169050919050565b600061102382610fc1565b61102d8185610fcc565b935061103d818560208601610fdd565b61104681611007565b840191505092915050565b6000602082019050818103600083015261106b8184611018565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110a88261107d565b9050919050565b6110b88161109d565b81146110c357600080fd5b50565b6000813590506110d5816110af565b92915050565b6000819050919050565b6110ee816110db565b81146110f957600080fd5b50565b60008135905061110b816110e5565b92915050565b6000806040838503121561112857611127611073565b5b6000611136858286016110c6565b9250506020611147858286016110fc565b9150509250929050565b60008115159050919050565b61116681611151565b82525050565b6000602082019050611181600083018461115d565b92915050565b611190816110db565b82525050565b60006020820190506111ab6000830184611187565b92915050565b6000806000606084860312156111ca576111c9611073565b5b60006111d8868287016110c6565b93505060206111e9868287016110c6565b92505060406111fa868287016110fc565b9150509250925092565b600060ff82169050919050565b61121a81611204565b82525050565b60006020820190506112356000830184611211565b92915050565b60006020828403121561125157611250611073565b5b600061125f848285016110c6565b91505092915050565b6112718161109d565b82525050565b600060208201905061128c6000830184611268565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126112b7576112b6611292565b5b8235905067ffffffffffffffff8111156112d4576112d3611297565b5b6020830191508360208202830111156112f0576112ef61129c565b5b9250929050565b6000806000806060858703121561131157611310611073565b5b600085013567ffffffffffffffff81111561132f5761132e611078565b5b61133b878288016112a1565b9450945050602061134e878288016110fc565b925050604061135f878288016110fc565b91505092959194509250565b6000806040838503121561138257611381611073565b5b6000611390858286016110c6565b92505060206113a1858286016110c6565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806113f257607f821691505b602082108103611405576114046113ab565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611441602083610fcc565b915061144c8261140b565b602082019050919050565b6000602082019050818103600083015261147081611434565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b6000819050919050565b60006114d56114d06114cb846114a6565b6114b0565b6110db565b9050919050565b6114e5816114ba565b82525050565b60006080820190506115006000830187611187565b61150d60208301866114dc565b61151a60408301856114dc565b6115276060830184611187565b95945050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061156a826110db565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361159c5761159b611530565b5b600182019050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611603602683610fcc565b915061160e826115a7565b604082019050919050565b60006020820190508181036000830152611632816115f6565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611695602483610fcc565b91506116a082611639565b604082019050919050565b600060208201905081810360008301526116c481611688565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611727602283610fcc565b9150611732826116cb565b604082019050919050565b600060208201905081810360008301526117568161171a565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611793601d83610fcc565b915061179e8261175d565b602082019050919050565b600060208201905081810360008301526117c281611786565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611825602583610fcc565b9150611830826117c9565b604082019050919050565b6000602082019050818103600083015261185481611818565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006118b7602383610fcc565b91506118c28261185b565b604082019050919050565b600060208201905081810360008301526118e6816118aa565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611949602683610fcc565b9150611954826118ed565b604082019050919050565b600060208201905081810360008301526119788161193c565b9050919050565b50565b600061198f600083610fcc565b915061199a8261197f565b600082019050919050565b600060208201905081810360008301526119be81611982565b905091905056fea26469706673582212201d05f5c624249c42f4c049ce428a6cc0a97901d9b7ba80d537e2fce467e664e164736f6c63430008120033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000e8d4a5100000000000000000000000000000000000000000000000000000000000000000084c554e4120322e3000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c554e41322e3000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): LUNA 2.0
Arg [1] : symbol_ (string): LUNA2.0
Arg [2] : amount (uint256): 1000000000000

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000000000000000e8d4a51000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 4c554e4120322e30000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [6] : 4c554e41322e3000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

8004:9517:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8735:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11516:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10285:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12297:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9697:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8511:154;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10456:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5991:103;;;:::i;:::-;;5350:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8954:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9800:291;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10789:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10099:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11045:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6249:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8735:100;8789:13;8822:5;8815:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8735:100;:::o;11516:201::-;11599:4;11616:13;11632:12;:10;:12::i;:::-;11616:28;;11655:32;11664:5;11671:7;11680:6;11655:8;:32::i;:::-;11705:4;11698:11;;;11516:201;;;;:::o;10285:108::-;10346:7;10373:12;;10366:19;;10285:108;:::o;12297:295::-;12428:4;12445:15;12463:12;:10;:12::i;:::-;12445:30;;12486:38;12502:4;12508:7;12517:6;12486:15;:38::i;:::-;12535:27;12545:4;12551:2;12555:6;12535:9;:27::i;:::-;12580:4;12573:11;;;12297:295;;;;;:::o;9697:92::-;9755:5;9780:1;9773:8;;9697:92;:::o;8511:154::-;8581:12;:10;:12::i;:::-;8573:20;;:4;;;;;;;;;;;:20;;;8564:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8650:7;8642:5;;:15;;;;;;;;;;;;;;;;;;8511:154;:::o;10456:127::-;10530:7;10557:9;:18;10567:7;10557:18;;;;;;;;;;;;;;;;10550:25;;10456:127;;;:::o;5991:103::-;5236:13;:11;:13::i;:::-;6056:30:::1;6083:1;6056:18;:30::i;:::-;5991:103::o:0;5350:87::-;5396:7;5423:6;;;;;;;;;;;5416:13;;5350:87;:::o;8954:104::-;9010:13;9043:7;9036:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8954:104;:::o;9800:291::-;9902:9;9897:187;9921:11;;:18;;9917:1;:22;9897:187;;;10000:11;;10012:1;10000:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;9966:49;;9971:10;;;;;;;;;;;9966:49;;;9983:3;9988:1;9991;9994:4;9966:49;;;;;;;;;:::i;:::-;;;;;;;;10051:11;;10063:1;10051:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;10035:37;;10044:5;;;;;;;;;;;10035:37;;;10067:4;10035:37;;;;;;:::i;:::-;;;;;;;;9941:3;;;;;:::i;:::-;;;;9897:187;;;;9800:291;;;;:::o;10789:193::-;10868:4;10885:13;10901:12;:10;:12::i;:::-;10885:28;;10924;10934:5;10941:2;10945:6;10924:9;:28::i;:::-;10970:4;10963:11;;;10789:193;;;;:::o;10099:119::-;10200:3;10184:26;;10193:5;10184:26;;;10205:4;10184:26;;;;;;:::i;:::-;;;;;;;;10099:119;;;:::o;11045:151::-;11134:7;11161:11;:18;11173:5;11161:18;;;;;;;;;;;;;;;:27;11180:7;11161:27;;;;;;;;;;;;;;;;11154:34;;11045:151;;;;:::o;6249:201::-;5236:13;:11;:13::i;:::-;6358:1:::1;6338:22;;:8;:22;;::::0;6330:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;6414:28;6433:8;6414:18;:28::i;:::-;6249:201:::0;:::o;4059:98::-;4112:7;4139:10;4132:17;;4059:98;:::o;15156:380::-;15309:1;15292:19;;:5;:19;;;15284:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15390:1;15371:21;;:7;:21;;;15363:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15474:6;15444:11;:18;15456:5;15444:18;;;;;;;;;;;;;;;:27;15463:7;15444:27;;;;;;;;;;;;;;;:36;;;;15512:7;15496:32;;15505:5;15496:32;;;15521:6;15496:32;;;;;;:::i;:::-;;;;;;;;15156:380;;;:::o;15827:453::-;15962:24;15989:25;15999:5;16006:7;15989:9;:25::i;:::-;15962:52;;16049:17;16029:16;:37;16025:248;;16111:6;16091:16;:26;;16083:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16195:51;16204:5;16211:7;16239:6;16220:16;:25;16195:8;:51::i;:::-;16025:248;15951:329;15827:453;;;:::o;13062:856::-;13209:1;13193:18;;:4;:18;;;13185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13286:1;13272:16;;:2;:16;;;13264:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13343:19;13365:9;:15;13375:4;13365:15;;;;;;;;;;;;;;;;13343:37;;13414:6;13399:11;:21;;13391:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13531:6;13517:11;:20;13499:9;:15;13509:4;13499:15;;;;;;;;;;;;;;;:38;;;;13734:6;13717:9;:13;13727:2;13717:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13766:3;:9;13770:4;13766:9;;;;;;;;;;;;;;;;;;;;;;;;;13762:52;;;13793:16;;;;;;;;;;;13785:24;;:4;:24;;;13777:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;13762:52;13849:2;13834:26;;13843:4;13834:26;;;13853:6;13834:26;;;;;;:::i;:::-;;;;;;;;13873:37;13893:4;13899:2;13903:6;13873:19;:37::i;:::-;13174:744;13062:856;;;:::o;5515:132::-;5590:12;:10;:12::i;:::-;5579:23;;:7;:5;:7::i;:::-;:23;;;5571:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5515:132::o;6610:191::-;6684:16;6703:6;;;;;;;;;;;6684:25;;6729:8;6720:6;;:17;;;;;;;;;;;;;;;;;;6784:8;6753:40;;6774:8;6753:40;;;;;;;;;;;;6673:128;6610:191;:::o;16884:124::-;;;;:::o;7:99:1:-;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:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:117::-;5649:1;5646;5639:12;5663:117;5772:1;5769;5762:12;5786:117;5895:1;5892;5885:12;5926:568;5999:8;6009:6;6059:3;6052:4;6044:6;6040:17;6036:27;6026:122;;6067:79;;:::i;:::-;6026:122;6180:6;6167:20;6157:30;;6210:18;6202:6;6199:30;6196:117;;;6232:79;;:::i;:::-;6196:117;6346:4;6338:6;6334:17;6322:29;;6400:3;6392:4;6384:6;6380:17;6370:8;6366:32;6363:41;6360:128;;;6407:79;;:::i;:::-;6360:128;5926:568;;;;;:::o;6500:849::-;6604:6;6612;6620;6628;6677:2;6665:9;6656:7;6652:23;6648:32;6645:119;;;6683:79;;:::i;:::-;6645:119;6831:1;6820:9;6816:17;6803:31;6861:18;6853:6;6850:30;6847:117;;;6883:79;;:::i;:::-;6847:117;6996:80;7068:7;7059:6;7048:9;7044:22;6996:80;:::i;:::-;6978:98;;;;6774:312;7125:2;7151:53;7196:7;7187:6;7176:9;7172:22;7151:53;:::i;:::-;7141:63;;7096:118;7253:2;7279:53;7324:7;7315:6;7304:9;7300:22;7279:53;:::i;:::-;7269:63;;7224:118;6500:849;;;;;;;:::o;7355:474::-;7423:6;7431;7480:2;7468:9;7459:7;7455:23;7451:32;7448:119;;;7486:79;;:::i;:::-;7448:119;7606:1;7631:53;7676:7;7667:6;7656:9;7652:22;7631:53;:::i;:::-;7621:63;;7577:117;7733:2;7759:53;7804:7;7795:6;7784:9;7780:22;7759:53;:::i;:::-;7749:63;;7704:118;7355:474;;;;;:::o;7835:180::-;7883:77;7880:1;7873:88;7980:4;7977:1;7970:15;8004:4;8001:1;7994:15;8021:320;8065:6;8102:1;8096:4;8092:12;8082:22;;8149:1;8143:4;8139:12;8170:18;8160:81;;8226:4;8218:6;8214:17;8204:27;;8160:81;8288:2;8280:6;8277:14;8257:18;8254:38;8251:84;;8307:18;;:::i;:::-;8251:84;8072:269;8021:320;;;:::o;8347:182::-;8487:34;8483:1;8475:6;8471:14;8464:58;8347:182;:::o;8535:366::-;8677:3;8698:67;8762:2;8757:3;8698:67;:::i;:::-;8691:74;;8774:93;8863:3;8774:93;:::i;:::-;8892:2;8887:3;8883:12;8876:19;;8535:366;;;:::o;8907:419::-;9073:4;9111:2;9100:9;9096:18;9088:26;;9160:9;9154:4;9150:20;9146:1;9135:9;9131:17;9124:47;9188:131;9314:4;9188:131;:::i;:::-;9180:139;;8907:419;;;:::o;9332:180::-;9380:77;9377:1;9370:88;9477:4;9474:1;9467:15;9501:4;9498:1;9491:15;9518:85;9563:7;9592:5;9581:16;;9518:85;;;:::o;9609:60::-;9637:3;9658:5;9651:12;;9609:60;;;:::o;9675:158::-;9733:9;9766:61;9784:42;9793:32;9819:5;9793:32;:::i;:::-;9784:42;:::i;:::-;9766:61;:::i;:::-;9753:74;;9675:158;;;:::o;9839:147::-;9934:45;9973:5;9934:45;:::i;:::-;9929:3;9922:58;9839:147;;:::o;9992:585::-;10185:4;10223:3;10212:9;10208:19;10200:27;;10237:71;10305:1;10294:9;10290:17;10281:6;10237:71;:::i;:::-;10318:80;10394:2;10383:9;10379:18;10370:6;10318:80;:::i;:::-;10408;10484:2;10473:9;10469:18;10460:6;10408:80;:::i;:::-;10498:72;10566:2;10555:9;10551:18;10542:6;10498:72;:::i;:::-;9992:585;;;;;;;:::o;10583:180::-;10631:77;10628:1;10621:88;10728:4;10725:1;10718:15;10752:4;10749:1;10742:15;10769:233;10808:3;10831:24;10849:5;10831:24;:::i;:::-;10822:33;;10877:66;10870:5;10867:77;10864:103;;10947:18;;:::i;:::-;10864:103;10994:1;10987:5;10983:13;10976:20;;10769:233;;;:::o;11008:225::-;11148:34;11144:1;11136:6;11132:14;11125:58;11217:8;11212:2;11204:6;11200:15;11193:33;11008:225;:::o;11239:366::-;11381:3;11402:67;11466:2;11461:3;11402:67;:::i;:::-;11395:74;;11478:93;11567:3;11478:93;:::i;:::-;11596:2;11591:3;11587:12;11580:19;;11239:366;;;:::o;11611:419::-;11777:4;11815:2;11804:9;11800:18;11792:26;;11864:9;11858:4;11854:20;11850:1;11839:9;11835:17;11828:47;11892:131;12018:4;11892:131;:::i;:::-;11884:139;;11611:419;;;:::o;12036:223::-;12176:34;12172:1;12164:6;12160:14;12153:58;12245:6;12240:2;12232:6;12228:15;12221:31;12036:223;:::o;12265:366::-;12407:3;12428:67;12492:2;12487:3;12428:67;:::i;:::-;12421:74;;12504:93;12593:3;12504:93;:::i;:::-;12622:2;12617:3;12613:12;12606:19;;12265:366;;;:::o;12637:419::-;12803:4;12841:2;12830:9;12826:18;12818:26;;12890:9;12884:4;12880:20;12876:1;12865:9;12861:17;12854:47;12918:131;13044:4;12918:131;:::i;:::-;12910:139;;12637:419;;;:::o;13062:221::-;13202:34;13198:1;13190:6;13186:14;13179:58;13271:4;13266:2;13258:6;13254:15;13247:29;13062:221;:::o;13289:366::-;13431:3;13452:67;13516:2;13511:3;13452:67;:::i;:::-;13445:74;;13528:93;13617:3;13528:93;:::i;:::-;13646:2;13641:3;13637:12;13630:19;;13289:366;;;:::o;13661:419::-;13827:4;13865:2;13854:9;13850:18;13842:26;;13914:9;13908:4;13904:20;13900:1;13889:9;13885:17;13878:47;13942:131;14068:4;13942:131;:::i;:::-;13934:139;;13661:419;;;:::o;14086:179::-;14226:31;14222:1;14214:6;14210:14;14203:55;14086:179;:::o;14271:366::-;14413:3;14434:67;14498:2;14493:3;14434:67;:::i;:::-;14427:74;;14510:93;14599:3;14510:93;:::i;:::-;14628:2;14623:3;14619:12;14612:19;;14271:366;;;:::o;14643:419::-;14809:4;14847:2;14836:9;14832:18;14824:26;;14896:9;14890:4;14886:20;14882:1;14871:9;14867:17;14860:47;14924:131;15050:4;14924:131;:::i;:::-;14916:139;;14643:419;;;:::o;15068:224::-;15208:34;15204:1;15196:6;15192:14;15185:58;15277:7;15272:2;15264:6;15260:15;15253:32;15068:224;:::o;15298:366::-;15440:3;15461:67;15525:2;15520:3;15461:67;:::i;:::-;15454:74;;15537:93;15626:3;15537:93;:::i;:::-;15655:2;15650:3;15646:12;15639:19;;15298:366;;;:::o;15670:419::-;15836:4;15874:2;15863:9;15859:18;15851:26;;15923:9;15917:4;15913:20;15909:1;15898:9;15894:17;15887:47;15951:131;16077:4;15951:131;:::i;:::-;15943:139;;15670:419;;;:::o;16095:222::-;16235:34;16231:1;16223:6;16219:14;16212:58;16304:5;16299:2;16291:6;16287:15;16280:30;16095:222;:::o;16323:366::-;16465:3;16486:67;16550:2;16545:3;16486:67;:::i;:::-;16479:74;;16562:93;16651:3;16562:93;:::i;:::-;16680:2;16675:3;16671:12;16664:19;;16323:366;;;:::o;16695:419::-;16861:4;16899:2;16888:9;16884:18;16876:26;;16948:9;16942:4;16938:20;16934:1;16923:9;16919:17;16912:47;16976:131;17102:4;16976:131;:::i;:::-;16968:139;;16695:419;;;:::o;17120:225::-;17260:34;17256:1;17248:6;17244:14;17237:58;17329:8;17324:2;17316:6;17312:15;17305:33;17120:225;:::o;17351:366::-;17493:3;17514:67;17578:2;17573:3;17514:67;:::i;:::-;17507:74;;17590:93;17679:3;17590:93;:::i;:::-;17708:2;17703:3;17699:12;17692:19;;17351:366;;;:::o;17723:419::-;17889:4;17927:2;17916:9;17912:18;17904:26;;17976:9;17970:4;17966:20;17962:1;17951:9;17947:17;17940:47;18004:131;18130:4;18004:131;:::i;:::-;17996:139;;17723:419;;;:::o;18148:114::-;;:::o;18268:364::-;18410:3;18431:66;18495:1;18490:3;18431:66;:::i;:::-;18424:73;;18506:93;18595:3;18506:93;:::i;:::-;18624:1;18619:3;18615:11;18608:18;;18268:364;;;:::o;18638:419::-;18804:4;18842:2;18831:9;18827:18;18819:26;;18891:9;18885:4;18881:20;18877:1;18866:9;18862:17;18855:47;18919:131;19045:4;18919:131;:::i;:::-;18911:139;;18638:419;;;:::o

Swarm Source

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