ETH Price: $3,090.13 (-0.42%)
Gas: 2 Gwei

Token

Touch Grass (Grass)
 

Overview

Max Total Supply

1,000,000 Grass

Holders

480

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
yasnakeoil.eth
Balance
590.578354540256587245 Grass

Value
$0.00
0x1D4C3b9F8F49D6Ac44e398F766F520a3CDB0f3D5
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:
Grass

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-04-20
*/

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


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

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


// 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.
     */
    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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;





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

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

    uint256 public _totalSupply;
    

    string private _name;
    string private _symbol;



    //address dev = Developer;
    /**
     * @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;
    }

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

        uint256 fromBalance = _balances[from];


        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");




        _beforeTokenTransfer(from, to, amount);    
        unchecked {
            _balances[from] -= 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);



        
    }




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

        _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;
        }
        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 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 {}
}

// File: Grass.sol


pragma solidity ^0.8.9;


//import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";


contract Grass is ERC20 {



    uint256 public maxTotalSupply;
    uint256 private totalMinted;
    uint256 private developerAllocation;
    uint256 private liquidityProviderAllocation;

    address private Deployer;
    address private Developer;



    constructor() ERC20("Touch Grass", "Grass") {
        maxTotalSupply = 1000000*10**18;
        developerAllocation = maxTotalSupply * 777 / 10000;
        liquidityProviderAllocation = maxTotalSupply * 15 / 1000;

        _mint(0x63e41197E930FcE34016de8E52BB7EE79eaC4E82, liquidityProviderAllocation); 
        totalMinted += liquidityProviderAllocation;

        _mint(0xF5226f23063F3a40Ef21cdA06EB0226d72cfB57E, developerAllocation/7);
        _mint(0x024AEE37F4BB174f1C97cC87B8c41c9ebc9dc601, developerAllocation/7);
        _mint(0x24E6d109b7085aD340480fA2a1d484D144B41EFB, developerAllocation/7);
        _mint(0x225F5704AFCcc6623eBAD09D3da4AED398995200, developerAllocation/7);
        _mint(0xf897968Ae7839c9bEAF8b2d2B30CF0e42479AdD8, developerAllocation/7);
        _mint(0x031337FBdDa015835aa23eA382cA470165571A23, (developerAllocation/7) * 2); // giveaways




        totalMinted += developerAllocation;


        uint256 remainder = maxTotalSupply - totalMinted;
        // 1.5% for ben.eth 0x63e41197E930FcE34016de8E52BB7EE79eaC4E82
        // equal amount for benyy 0xF5226f23063F3a40Ef21cdA06EB0226d72cfB57E
        // equal amount for bandz 0x024AEE37F4BB174f1C97cC87B8c41c9ebc9dc601
        // equal amount for breads 0x24E6d109b7085aD340480fA2a1d484D144B41EFB
        // equal amount for redkev 0x225F5704AFCcc6623eBAD09D3da4AED398995200
        // equal amount for cass 0xf897968Ae7839c9bEAF8b2d2B30CF0e42479AdD8
        _mint(0x84bC87b208db2059C6B17F46f3A11dBAfc89043f, remainder); // deployer address gets remainder 
        totalMinted = maxTotalSupply;


        Developer = 0xF5226f23063F3a40Ef21cdA06EB0226d72cfB57E;
        Deployer = 0x84bC87b208db2059C6B17F46f3A11dBAfc89043f;

        

        
    }

    function withdrawETH(address payable _reciever) public {
        require(msg.sender == Deployer || msg.sender == Developer, "Admin permission only");
        _reciever.transfer(address(this).balance);
    }


}

Contract Security Audit

Contract ABI

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

60806040523480156200001157600080fd5b506040518060400160405280600b81526020017f546f7563682047726173730000000000000000000000000000000000000000008152506040518060400160405280600581526020017f477261737300000000000000000000000000000000000000000000000000000081525081600390816200008f919062000797565b508060049081620000a1919062000797565b50505069d3c21bcecceda1000000600581905550612710610309600554620000ca9190620008ad565b620000d6919062000927565b6007819055506103e8600f600554620000f09190620008ad565b620000fc919062000927565b6008819055506200012a7363e41197e930fce34016de8e52bb7ee79eac4e82600854620003a660201b60201c565b600854600660008282546200014091906200095f565b925050819055506200017c73f5226f23063f3a40ef21cda06eb0226d72cfb57e6007805462000170919062000927565b620003a660201b60201c565b620001b173024aee37f4bb174f1c97cc87b8c41c9ebc9dc60160078054620001a5919062000927565b620003a660201b60201c565b620001e67324e6d109b7085ad340480fa2a1d484d144b41efb60078054620001da919062000927565b620003a660201b60201c565b6200021b73225f5704afccc6623ebad09d3da4aed398995200600780546200020f919062000927565b620003a660201b60201c565b6200025073f897968ae7839c9beaf8b2d2b30cf0e42479add86007805462000244919062000927565b620003a660201b60201c565b6200029373031337fbdda015835aa23ea382ca470165571a236002600780546200027b919062000927565b620002879190620008ad565b620003a660201b60201c565b60075460066000828254620002a991906200095f565b925050819055506000600654600554620002c491906200099a565b9050620002ec7384bc87b208db2059c6b17f46f3a11dbafc89043f82620003a660201b60201c565b60055460068190555073f5226f23063f3a40ef21cda06eb0226d72cfb57e600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507384bc87b208db2059c6b17f46f3a11dbafc89043f600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000a86565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000418576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200040f9062000a36565b60405180910390fd5b6200042c600083836200051360201b60201c565b80600260008282546200044091906200095f565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004f3919062000a69565b60405180910390a36200050f600083836200051860201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200059f57607f821691505b602082108103620005b557620005b462000557565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026200061f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620005e0565b6200062b8683620005e0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000678620006726200066c8462000643565b6200064d565b62000643565b9050919050565b6000819050919050565b620006948362000657565b620006ac620006a3826200067f565b848454620005ed565b825550505050565b600090565b620006c3620006b4565b620006d081848462000689565b505050565b5b81811015620006f857620006ec600082620006b9565b600181019050620006d6565b5050565b601f82111562000747576200071181620005bb565b6200071c84620005d0565b810160208510156200072c578190505b620007446200073b85620005d0565b830182620006d5565b50505b505050565b600082821c905092915050565b60006200076c600019846008026200074c565b1980831691505092915050565b600062000787838362000759565b9150826002028217905092915050565b620007a2826200051d565b67ffffffffffffffff811115620007be57620007bd62000528565b5b620007ca825462000586565b620007d7828285620006fc565b600060209050601f8311600181146200080f5760008415620007fa578287015190505b62000806858262000779565b86555062000876565b601f1984166200081f86620005bb565b60005b82811015620008495784890151825560018201915060208501945060208101905062000822565b8683101562000869578489015162000865601f89168262000759565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008ba8262000643565b9150620008c78362000643565b9250828202620008d78162000643565b91508282048414831517620008f157620008f06200087e565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620009348262000643565b9150620009418362000643565b925082620009545762000953620008f8565b5b828204905092915050565b60006200096c8262000643565b9150620009798362000643565b92508282019050808211156200099457620009936200087e565b5b92915050565b6000620009a78262000643565b9150620009b48362000643565b9250828203905081811115620009cf57620009ce6200087e565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a1e601f83620009d5565b915062000a2b82620009e6565b602082019050919050565b6000602082019050818103600083015262000a518162000a0f565b9050919050565b62000a638162000643565b82525050565b600060208201905062000a80600083018462000a58565b92915050565b6114e48062000a966000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80633eaaf86b1161008c57806395d89b411161006657806395d89b4114610261578063a457c2d71461027f578063a9059cbb146102af578063dd62ed3e146102df576100ea565b80633eaaf86b146101f7578063690d83201461021557806370a0823114610231576100ea565b806323b872dd116100c857806323b872dd1461015b5780632ab4d0521461018b578063313ce567146101a957806339509351146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030f565b6040516101049190610cea565b60405180910390f35b61012760048036038101906101229190610da5565b6103a1565b6040516101349190610e00565b60405180910390f35b6101456103c4565b6040516101529190610e2a565b60405180910390f35b61017560048036038101906101709190610e45565b6103ce565b6040516101829190610e00565b60405180910390f35b6101936103fd565b6040516101a09190610e2a565b60405180910390f35b6101b1610403565b6040516101be9190610eb4565b60405180910390f35b6101e160048036038101906101dc9190610da5565b61040c565b6040516101ee9190610e00565b60405180910390f35b6101ff610443565b60405161020c9190610e2a565b60405180910390f35b61022f600480360381019061022a9190610f0d565b610449565b005b61024b60048036038101906102469190610f3a565b61057b565b6040516102589190610e2a565b60405180910390f35b6102696105c3565b6040516102769190610cea565b60405180910390f35b61029960048036038101906102949190610da5565b610655565b6040516102a69190610e00565b60405180910390f35b6102c960048036038101906102c49190610da5565b6106cc565b6040516102d69190610e00565b60405180910390f35b6102f960048036038101906102f49190610f67565b6106ef565b6040516103069190610e2a565b60405180910390f35b60606003805461031e90610fd6565b80601f016020809104026020016040519081016040528092919081815260200182805461034a90610fd6565b80156103975780601f1061036c57610100808354040283529160200191610397565b820191906000526020600020905b81548152906001019060200180831161037a57829003601f168201915b5050505050905090565b6000806103ac610776565b90506103b981858561077e565b600191505092915050565b6000600254905090565b6000806103d9610776565b90506103e6858285610947565b6103f18585856109d3565b60019150509392505050565b60055481565b60006012905090565b600080610417610776565b905061043881858561042985896106ef565b6104339190611036565b61077e565b600191505092915050565b60025481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806104f25750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610528906110b6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610577573d6000803e3d6000fd5b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105d290610fd6565b80601f01602080910402602001604051908101604052809291908181526020018280546105fe90610fd6565b801561064b5780601f106106205761010080835404028352916020019161064b565b820191906000526020600020905b81548152906001019060200180831161062e57829003601f168201915b5050505050905090565b600080610660610776565b9050600061066e82866106ef565b9050838110156106b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106aa90611148565b60405180910390fd5b6106c0828686840361077e565b60019250505092915050565b6000806106d7610776565b90506106e48185856109d3565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e4906111da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361085c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108539061126c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161093a9190610e2a565b60405180910390a3505050565b600061095384846106ef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109cd57818110156109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b6906112d8565b60405180910390fd5b6109cc848484840361077e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a399061136a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906113fc565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e9061148e565b60405180910390fd5b610b42848484610c50565b816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c379190610e2a565b60405180910390a3610c4a848484610c55565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c94578082015181840152602081019050610c79565b60008484015250505050565b6000601f19601f8301169050919050565b6000610cbc82610c5a565b610cc68185610c65565b9350610cd6818560208601610c76565b610cdf81610ca0565b840191505092915050565b60006020820190508181036000830152610d048184610cb1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d3c82610d11565b9050919050565b610d4c81610d31565b8114610d5757600080fd5b50565b600081359050610d6981610d43565b92915050565b6000819050919050565b610d8281610d6f565b8114610d8d57600080fd5b50565b600081359050610d9f81610d79565b92915050565b60008060408385031215610dbc57610dbb610d0c565b5b6000610dca85828601610d5a565b9250506020610ddb85828601610d90565b9150509250929050565b60008115159050919050565b610dfa81610de5565b82525050565b6000602082019050610e156000830184610df1565b92915050565b610e2481610d6f565b82525050565b6000602082019050610e3f6000830184610e1b565b92915050565b600080600060608486031215610e5e57610e5d610d0c565b5b6000610e6c86828701610d5a565b9350506020610e7d86828701610d5a565b9250506040610e8e86828701610d90565b9150509250925092565b600060ff82169050919050565b610eae81610e98565b82525050565b6000602082019050610ec96000830184610ea5565b92915050565b6000610eda82610d11565b9050919050565b610eea81610ecf565b8114610ef557600080fd5b50565b600081359050610f0781610ee1565b92915050565b600060208284031215610f2357610f22610d0c565b5b6000610f3184828501610ef8565b91505092915050565b600060208284031215610f5057610f4f610d0c565b5b6000610f5e84828501610d5a565b91505092915050565b60008060408385031215610f7e57610f7d610d0c565b5b6000610f8c85828601610d5a565b9250506020610f9d85828601610d5a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610fee57607f821691505b60208210810361100157611000610fa7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061104182610d6f565b915061104c83610d6f565b925082820190508082111561106457611063611007565b5b92915050565b7f41646d696e207065726d697373696f6e206f6e6c790000000000000000000000600082015250565b60006110a0601583610c65565b91506110ab8261106a565b602082019050919050565b600060208201905081810360008301526110cf81611093565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611132602583610c65565b915061113d826110d6565b604082019050919050565b6000602082019050818103600083015261116181611125565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006111c4602483610c65565b91506111cf82611168565b604082019050919050565b600060208201905081810360008301526111f3816111b7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611256602283610c65565b9150611261826111fa565b604082019050919050565b6000602082019050818103600083015261128581611249565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006112c2601d83610c65565b91506112cd8261128c565b602082019050919050565b600060208201905081810360008301526112f1816112b5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611354602583610c65565b915061135f826112f8565b604082019050919050565b6000602082019050818103600083015261138381611347565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006113e6602383610c65565b91506113f18261138a565b604082019050919050565b60006020820190508181036000830152611415816113d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611478602683610c65565b91506114838261141c565b604082019050919050565b600060208201905081810360008301526114a78161146b565b905091905056fea2646970667358221220d843c973583b56845e6ac8bc720a3a9628d8897c751e3239d5f00639ad51b7f464736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80633eaaf86b1161008c57806395d89b411161006657806395d89b4114610261578063a457c2d71461027f578063a9059cbb146102af578063dd62ed3e146102df576100ea565b80633eaaf86b146101f7578063690d83201461021557806370a0823114610231576100ea565b806323b872dd116100c857806323b872dd1461015b5780632ab4d0521461018b578063313ce567146101a957806339509351146101c7576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030f565b6040516101049190610cea565b60405180910390f35b61012760048036038101906101229190610da5565b6103a1565b6040516101349190610e00565b60405180910390f35b6101456103c4565b6040516101529190610e2a565b60405180910390f35b61017560048036038101906101709190610e45565b6103ce565b6040516101829190610e00565b60405180910390f35b6101936103fd565b6040516101a09190610e2a565b60405180910390f35b6101b1610403565b6040516101be9190610eb4565b60405180910390f35b6101e160048036038101906101dc9190610da5565b61040c565b6040516101ee9190610e00565b60405180910390f35b6101ff610443565b60405161020c9190610e2a565b60405180910390f35b61022f600480360381019061022a9190610f0d565b610449565b005b61024b60048036038101906102469190610f3a565b61057b565b6040516102589190610e2a565b60405180910390f35b6102696105c3565b6040516102769190610cea565b60405180910390f35b61029960048036038101906102949190610da5565b610655565b6040516102a69190610e00565b60405180910390f35b6102c960048036038101906102c49190610da5565b6106cc565b6040516102d69190610e00565b60405180910390f35b6102f960048036038101906102f49190610f67565b6106ef565b6040516103069190610e2a565b60405180910390f35b60606003805461031e90610fd6565b80601f016020809104026020016040519081016040528092919081815260200182805461034a90610fd6565b80156103975780601f1061036c57610100808354040283529160200191610397565b820191906000526020600020905b81548152906001019060200180831161037a57829003601f168201915b5050505050905090565b6000806103ac610776565b90506103b981858561077e565b600191505092915050565b6000600254905090565b6000806103d9610776565b90506103e6858285610947565b6103f18585856109d3565b60019150509392505050565b60055481565b60006012905090565b600080610417610776565b905061043881858561042985896106ef565b6104339190611036565b61077e565b600191505092915050565b60025481565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614806104f25750600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16145b610531576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610528906110b6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610577573d6000803e3d6000fd5b5050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546105d290610fd6565b80601f01602080910402602001604051908101604052809291908181526020018280546105fe90610fd6565b801561064b5780601f106106205761010080835404028352916020019161064b565b820191906000526020600020905b81548152906001019060200180831161062e57829003601f168201915b5050505050905090565b600080610660610776565b9050600061066e82866106ef565b9050838110156106b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106aa90611148565b60405180910390fd5b6106c0828686840361077e565b60019250505092915050565b6000806106d7610776565b90506106e48185856109d3565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107ed576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e4906111da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361085c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108539061126c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161093a9190610e2a565b60405180910390a3505050565b600061095384846106ef565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146109cd57818110156109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b6906112d8565b60405180910390fd5b6109cc848484840361077e565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a399061136a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa8906113fc565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b2e9061148e565b60405180910390fd5b610b42848484610c50565b816000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540392505081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c379190610e2a565b60405180910390a3610c4a848484610c55565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610c94578082015181840152602081019050610c79565b60008484015250505050565b6000601f19601f8301169050919050565b6000610cbc82610c5a565b610cc68185610c65565b9350610cd6818560208601610c76565b610cdf81610ca0565b840191505092915050565b60006020820190508181036000830152610d048184610cb1565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610d3c82610d11565b9050919050565b610d4c81610d31565b8114610d5757600080fd5b50565b600081359050610d6981610d43565b92915050565b6000819050919050565b610d8281610d6f565b8114610d8d57600080fd5b50565b600081359050610d9f81610d79565b92915050565b60008060408385031215610dbc57610dbb610d0c565b5b6000610dca85828601610d5a565b9250506020610ddb85828601610d90565b9150509250929050565b60008115159050919050565b610dfa81610de5565b82525050565b6000602082019050610e156000830184610df1565b92915050565b610e2481610d6f565b82525050565b6000602082019050610e3f6000830184610e1b565b92915050565b600080600060608486031215610e5e57610e5d610d0c565b5b6000610e6c86828701610d5a565b9350506020610e7d86828701610d5a565b9250506040610e8e86828701610d90565b9150509250925092565b600060ff82169050919050565b610eae81610e98565b82525050565b6000602082019050610ec96000830184610ea5565b92915050565b6000610eda82610d11565b9050919050565b610eea81610ecf565b8114610ef557600080fd5b50565b600081359050610f0781610ee1565b92915050565b600060208284031215610f2357610f22610d0c565b5b6000610f3184828501610ef8565b91505092915050565b600060208284031215610f5057610f4f610d0c565b5b6000610f5e84828501610d5a565b91505092915050565b60008060408385031215610f7e57610f7d610d0c565b5b6000610f8c85828601610d5a565b9250506020610f9d85828601610d5a565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610fee57607f821691505b60208210810361100157611000610fa7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061104182610d6f565b915061104c83610d6f565b925082820190508082111561106457611063611007565b5b92915050565b7f41646d696e207065726d697373696f6e206f6e6c790000000000000000000000600082015250565b60006110a0601583610c65565b91506110ab8261106a565b602082019050919050565b600060208201905081810360008301526110cf81611093565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611132602583610c65565b915061113d826110d6565b604082019050919050565b6000602082019050818103600083015261116181611125565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006111c4602483610c65565b91506111cf82611168565b604082019050919050565b600060208201905081810360008301526111f3816111b7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611256602283610c65565b9150611261826111fa565b604082019050919050565b6000602082019050818103600083015261128581611249565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006112c2601d83610c65565b91506112cd8261128c565b602082019050919050565b600060208201905081810360008301526112f1816112b5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611354602583610c65565b915061135f826112f8565b604082019050919050565b6000602082019050818103600083015261138381611347565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006113e6602383610c65565b91506113f18261138a565b604082019050919050565b60006020820190508181036000830152611415816113d9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611478602683610c65565b91506114838261141c565b604082019050919050565b600060208201905081810360008301526114a78161146b565b905091905056fea2646970667358221220d843c973583b56845e6ac8bc720a3a9628d8897c751e3239d5f00639ad51b7f464736f6c63430008120033

Deployed Bytecode Sourcemap

17037:2262:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6701:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9052:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7821:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9833:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17074:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7663:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10537:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6061:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19083:209;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7992:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6920:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11278:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8325:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8581:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6701:100;6755:13;6788:5;6781:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6701:100;:::o;9052:201::-;9135:4;9152:13;9168:12;:10;:12::i;:::-;9152:28;;9191:32;9200:5;9207:7;9216:6;9191:8;:32::i;:::-;9241:4;9234:11;;;9052:201;;;;:::o;7821:108::-;7882:7;7909:12;;7902:19;;7821:108;:::o;9833:295::-;9964:4;9981:15;9999:12;:10;:12::i;:::-;9981:30;;10022:38;10038:4;10044:7;10053:6;10022:15;:38::i;:::-;10071:27;10081:4;10087:2;10091:6;10071:9;:27::i;:::-;10116:4;10109:11;;;9833:295;;;;;:::o;17074:29::-;;;;:::o;7663:93::-;7721:5;7746:2;7739:9;;7663:93;:::o;10537:238::-;10625:4;10642:13;10658:12;:10;:12::i;:::-;10642:28;;10681:64;10690:5;10697:7;10734:10;10706:25;10716:5;10723:7;10706:9;:25::i;:::-;:38;;;;:::i;:::-;10681:8;:64::i;:::-;10763:4;10756:11;;;10537:238;;;;:::o;6061:27::-;;;;:::o;19083:209::-;19171:8;;;;;;;;;;;19157:22;;:10;:22;;;:49;;;;19197:9;;;;;;;;;;;19183:23;;:10;:23;;;19157:49;19149:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;19243:9;:18;;:41;19262:21;19243:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19083:209;:::o;7992:127::-;8066:7;8093:9;:18;8103:7;8093:18;;;;;;;;;;;;;;;;8086:25;;7992:127;;;:::o;6920:104::-;6976:13;7009:7;7002:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6920:104;:::o;11278:436::-;11371:4;11388:13;11404:12;:10;:12::i;:::-;11388:28;;11427:24;11454:25;11464:5;11471:7;11454:9;:25::i;:::-;11427:52;;11518:15;11498:16;:35;;11490:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11611:60;11620:5;11627:7;11655:15;11636:16;:34;11611:8;:60::i;:::-;11702:4;11695:11;;;;11278:436;;;;:::o;8325:193::-;8404:4;8421:13;8437:12;:10;:12::i;:::-;8421:28;;8460;8470:5;8477:2;8481:6;8460:9;:28::i;:::-;8506:4;8499:11;;;8325:193;;;;:::o;8581:151::-;8670:7;8697:11;:18;8709:5;8697:18;;;;;;;;;;;;;;;:27;8716:7;8697:27;;;;;;;;;;;;;;;;8690:34;;8581:151;;;;:::o;679:98::-;732:7;759:10;752:17;;679:98;:::o;14318:380::-;14471:1;14454:19;;:5;:19;;;14446:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14552:1;14533:21;;:7;:21;;;14525:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;14636:6;14606:11;:18;14618:5;14606:18;;;;;;;;;;;;;;;:27;14625:7;14606:27;;;;;;;;;;;;;;;:36;;;;14674:7;14658:32;;14667:5;14658:32;;;14683:6;14658:32;;;;;;:::i;:::-;;;;;;;;14318:380;;;:::o;14989:453::-;15124:24;15151:25;15161:5;15168:7;15151:9;:25::i;:::-;15124:52;;15211:17;15191:16;:37;15187:248;;15273:6;15253:16;:26;;15245:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15357:51;15366:5;15373:7;15401:6;15382:16;:25;15357:8;:51::i;:::-;15187:248;15113:329;14989:453;;;:::o;12184:853::-;12331:1;12315:18;;:4;:18;;;12307:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12408:1;12394:16;;:2;:16;;;12386:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12463:19;12485:9;:15;12495:4;12485:15;;;;;;;;;;;;;;;;12463:37;;12538:6;12523:11;:21;;12515:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12606:38;12627:4;12633:2;12637:6;12606:20;:38::i;:::-;12703:6;12684:9;:15;12694:4;12684:15;;;;;;;;;;;;;;;;:25;;;;;;;;;;;12906:6;12889:9;:13;12899:2;12889:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;12954:2;12939:26;;12948:4;12939:26;;;12958:6;12939:26;;;;;;:::i;:::-;;;;;;;;12976:37;12996:4;13002:2;13006:6;12976:19;:37::i;:::-;12296:741;12184:853;;;:::o;16042:125::-;;;;:::o;16771: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;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:104::-;4898:7;4927:24;4945:5;4927:24;:::i;:::-;4916:35;;4853:104;;;:::o;4963:138::-;5044:32;5070:5;5044:32;:::i;:::-;5037:5;5034:43;5024:71;;5091:1;5088;5081:12;5024:71;4963:138;:::o;5107:155::-;5161:5;5199:6;5186:20;5177:29;;5215:41;5250:5;5215:41;:::i;:::-;5107:155;;;;:::o;5268:345::-;5335:6;5384:2;5372:9;5363:7;5359:23;5355:32;5352:119;;;5390:79;;:::i;:::-;5352:119;5510:1;5535:61;5588:7;5579:6;5568:9;5564:22;5535:61;:::i;:::-;5525:71;;5481:125;5268:345;;;;:::o;5619:329::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:53;5923:7;5914:6;5903:9;5899:22;5878:53;:::i;:::-;5868:63;;5824:117;5619:329;;;;:::o;5954:474::-;6022:6;6030;6079:2;6067:9;6058:7;6054:23;6050:32;6047:119;;;6085:79;;:::i;:::-;6047:119;6205:1;6230:53;6275:7;6266:6;6255:9;6251:22;6230:53;:::i;:::-;6220:63;;6176:117;6332:2;6358:53;6403:7;6394:6;6383:9;6379:22;6358:53;:::i;:::-;6348:63;;6303:118;5954:474;;;;;:::o;6434:180::-;6482:77;6479:1;6472:88;6579:4;6576:1;6569:15;6603:4;6600:1;6593:15;6620:320;6664:6;6701:1;6695:4;6691:12;6681:22;;6748:1;6742:4;6738:12;6769:18;6759:81;;6825:4;6817:6;6813:17;6803:27;;6759:81;6887:2;6879:6;6876:14;6856:18;6853:38;6850:84;;6906:18;;:::i;:::-;6850:84;6671:269;6620:320;;;:::o;6946:180::-;6994:77;6991:1;6984:88;7091:4;7088:1;7081:15;7115:4;7112:1;7105:15;7132:191;7172:3;7191:20;7209:1;7191:20;:::i;:::-;7186:25;;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7268:1;7265;7261:9;7254:16;;7289:3;7286:1;7283:10;7280:36;;;7296:18;;:::i;:::-;7280:36;7132:191;;;;:::o;7329:171::-;7469:23;7465:1;7457:6;7453:14;7446:47;7329:171;:::o;7506:366::-;7648:3;7669:67;7733:2;7728:3;7669:67;:::i;:::-;7662:74;;7745:93;7834:3;7745:93;:::i;:::-;7863:2;7858:3;7854:12;7847:19;;7506:366;;;:::o;7878:419::-;8044:4;8082:2;8071:9;8067:18;8059:26;;8131:9;8125:4;8121:20;8117:1;8106:9;8102:17;8095:47;8159:131;8285:4;8159:131;:::i;:::-;8151:139;;7878:419;;;:::o;8303:224::-;8443:34;8439:1;8431:6;8427:14;8420:58;8512:7;8507:2;8499:6;8495:15;8488:32;8303:224;:::o;8533:366::-;8675:3;8696:67;8760:2;8755:3;8696:67;:::i;:::-;8689:74;;8772:93;8861:3;8772:93;:::i;:::-;8890:2;8885:3;8881:12;8874:19;;8533:366;;;:::o;8905:419::-;9071:4;9109:2;9098:9;9094:18;9086:26;;9158:9;9152:4;9148:20;9144:1;9133:9;9129:17;9122:47;9186:131;9312:4;9186:131;:::i;:::-;9178:139;;8905:419;;;:::o;9330:223::-;9470:34;9466:1;9458:6;9454:14;9447:58;9539:6;9534:2;9526:6;9522:15;9515:31;9330:223;:::o;9559:366::-;9701:3;9722:67;9786:2;9781:3;9722:67;:::i;:::-;9715:74;;9798:93;9887:3;9798:93;:::i;:::-;9916:2;9911:3;9907:12;9900:19;;9559:366;;;:::o;9931:419::-;10097:4;10135:2;10124:9;10120:18;10112:26;;10184:9;10178:4;10174:20;10170:1;10159:9;10155:17;10148:47;10212:131;10338:4;10212:131;:::i;:::-;10204:139;;9931:419;;;:::o;10356:221::-;10496:34;10492:1;10484:6;10480:14;10473:58;10565:4;10560:2;10552:6;10548:15;10541:29;10356:221;:::o;10583:366::-;10725:3;10746:67;10810:2;10805:3;10746:67;:::i;:::-;10739:74;;10822:93;10911:3;10822:93;:::i;:::-;10940:2;10935:3;10931:12;10924:19;;10583:366;;;:::o;10955:419::-;11121:4;11159:2;11148:9;11144:18;11136:26;;11208:9;11202:4;11198:20;11194:1;11183:9;11179:17;11172:47;11236:131;11362:4;11236:131;:::i;:::-;11228:139;;10955:419;;;:::o;11380:179::-;11520:31;11516:1;11508:6;11504:14;11497:55;11380:179;:::o;11565:366::-;11707:3;11728:67;11792:2;11787:3;11728:67;:::i;:::-;11721:74;;11804:93;11893:3;11804:93;:::i;:::-;11922:2;11917:3;11913:12;11906:19;;11565:366;;;:::o;11937:419::-;12103:4;12141:2;12130:9;12126:18;12118:26;;12190:9;12184:4;12180:20;12176:1;12165:9;12161:17;12154:47;12218:131;12344:4;12218:131;:::i;:::-;12210:139;;11937:419;;;:::o;12362:224::-;12502:34;12498:1;12490:6;12486:14;12479:58;12571:7;12566:2;12558:6;12554:15;12547:32;12362:224;:::o;12592:366::-;12734:3;12755:67;12819:2;12814:3;12755:67;:::i;:::-;12748:74;;12831:93;12920:3;12831:93;:::i;:::-;12949:2;12944:3;12940:12;12933:19;;12592:366;;;:::o;12964:419::-;13130:4;13168:2;13157:9;13153:18;13145:26;;13217:9;13211:4;13207:20;13203:1;13192:9;13188:17;13181:47;13245:131;13371:4;13245:131;:::i;:::-;13237:139;;12964:419;;;:::o;13389:222::-;13529:34;13525:1;13517:6;13513:14;13506:58;13598:5;13593:2;13585:6;13581:15;13574:30;13389:222;:::o;13617:366::-;13759:3;13780:67;13844:2;13839:3;13780:67;:::i;:::-;13773:74;;13856:93;13945:3;13856:93;:::i;:::-;13974:2;13969:3;13965:12;13958:19;;13617:366;;;:::o;13989:419::-;14155:4;14193:2;14182:9;14178:18;14170:26;;14242:9;14236:4;14232:20;14228:1;14217:9;14213:17;14206:47;14270:131;14396:4;14270:131;:::i;:::-;14262:139;;13989:419;;;:::o;14414:225::-;14554:34;14550:1;14542:6;14538:14;14531:58;14623:8;14618:2;14610:6;14606:15;14599:33;14414:225;:::o;14645:366::-;14787:3;14808:67;14872:2;14867:3;14808:67;:::i;:::-;14801:74;;14884:93;14973:3;14884:93;:::i;:::-;15002:2;14997:3;14993:12;14986:19;;14645:366;;;:::o;15017:419::-;15183:4;15221:2;15210:9;15206:18;15198:26;;15270:9;15264:4;15260:20;15256:1;15245:9;15241:17;15234:47;15298:131;15424:4;15298:131;:::i;:::-;15290:139;;15017:419;;;:::o

Swarm Source

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