ETH Price: $3,072.52 (+2.72%)
Gas: 4 Gwei

Token

GENESIS (GENESIS)
 

Overview

Max Total Supply

1,000,000,000 GENESIS

Holders

2,994

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
100,000 GENESIS

Value
$0.00
0xc92d5ce55ff458e6540b49bda33b5c0aaeca5bd1
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:
GENESIS

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-09-11
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol

/*
Welcome to Genesis

This is an experiment in decentralization with the objective of providing a fair blueprint that others can eventually improve upon.

The code was written by Chat GPT.  I am not a developer or a team.

The intial supply is 500,000,000 tokens that will be locked in uniswap V3 at a starting marketcap of around 100k USD.

The total supply is 1,000,000,000 tokens.

Assuming this actually works, any single wallet will be able to mint directly from the contract one time each a quantity of 100,000 tokens.

Once the total supply has been minted, nobody should then be able to continue minting the token.

V3 is being utilized with a set marketcap (i.e. no eth will be including in making the pair) so that nobody can then simply dump their tokens as they mint.  

There will be no telegram or socials for this token.  

If a community wishes to create one, by all means take the initiative.

I hope that the outcome is the ushering of a new approach to token deployment in which everyone can mint tokens for free and share the excitement that web3
has to offer but with much less risk initially.
*/

// 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.9.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.9.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].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * 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 default value returned by this function, unless
     * it's 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");

        _beforeTokenTransfer(from, to, amount);

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

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

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

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

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

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

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

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

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

// File: contracts/GENESIS.sol



pragma solidity ^0.8.0;


contract GENESIS is ERC20 {
    uint256 public maxSupply = 1000000000 * 10**18; // Total supply in Wei (smallest unit of Ether)
    mapping(address => bool) public hasMinted;

    constructor() ERC20("GENESIS", "GENESIS") {
        _mint(msg.sender, 500000000 * 10**18); // Set the initial supply to 500,000,000 tokens
    }

    function mint100K() external {
        require(!hasMinted[msg.sender], "You have already minted");
        require(totalSupply() + 100000 * 10**18 <= maxSupply, "Maximum supply reached");

        _mint(msg.sender, 100000 * 10**18); // Mint 100,000 tokens to the caller
        hasMinted[msg.sender] = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"","type":"address"}],"name":"hasMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint100K","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"}]

60806040526b033b2e3c9fd0803ce80000006005553480156200002157600080fd5b506040518060400160405280600781526020017f47454e45534953000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f47454e455349530000000000000000000000000000000000000000000000000081525081600390816200009f9190620004c9565b508060049081620000b19190620004c9565b505050620000d2336b019d971e4fe8401e74000000620000d860201b60201c565b620006cb565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200014a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001419062000611565b60405180910390fd5b6200015e600083836200024560201b60201c565b806002600082825462000172919062000662565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620002259190620006ae565b60405180910390a362000241600083836200024a60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620002d157607f821691505b602082108103620002e757620002e662000289565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620003517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000312565b6200035d868362000312565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620003aa620003a46200039e8462000375565b6200037f565b62000375565b9050919050565b6000819050919050565b620003c68362000389565b620003de620003d582620003b1565b8484546200031f565b825550505050565b600090565b620003f5620003e6565b62000402818484620003bb565b505050565b5b818110156200042a576200041e600082620003eb565b60018101905062000408565b5050565b601f82111562000479576200044381620002ed565b6200044e8462000302565b810160208510156200045e578190505b620004766200046d8562000302565b83018262000407565b50505b505050565b600082821c905092915050565b60006200049e600019846008026200047e565b1980831691505092915050565b6000620004b983836200048b565b9150826002028217905092915050565b620004d4826200024f565b67ffffffffffffffff811115620004f057620004ef6200025a565b5b620004fc8254620002b8565b620005098282856200042e565b600060209050601f8311600181146200054157600084156200052c578287015190505b620005388582620004ab565b865550620005a8565b601f1984166200055186620002ed565b60005b828110156200057b5784890151825560018201915060208501945060208101905062000554565b868310156200059b578489015162000597601f8916826200048b565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620005f9601f83620005b0565b91506200060682620005c1565b602082019050919050565b600060208201905081810360008301526200062c81620005ea565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006200066f8262000375565b91506200067c8362000375565b925082820190508082111562000697576200069662000633565b5b92915050565b620006a88162000375565b82525050565b6000602082019050620006c560008301846200069d565b92915050565b6116e480620006db6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb14610287578063d5abeb01146102b7578063d6bf7053146102d5578063dd62ed3e146102df576100ea565b806370a082311461020957806395d89b4114610239578063a457c2d714610257576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806338e21cce146101a957806339509351146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030f565b6040516101049190610e7d565b60405180910390f35b61012760048036038101906101229190610f38565b6103a1565b6040516101349190610f93565b60405180910390f35b6101456103c4565b6040516101529190610fbd565b60405180910390f35b61017560048036038101906101709190610fd8565b6103ce565b6040516101829190610f93565b60405180910390f35b6101936103fd565b6040516101a09190611047565b60405180910390f35b6101c360048036038101906101be9190611062565b610406565b6040516101d09190610f93565b60405180910390f35b6101f360048036038101906101ee9190610f38565b610426565b6040516102009190610f93565b60405180910390f35b610223600480360381019061021e9190611062565b61045d565b6040516102309190610fbd565b60405180910390f35b6102416104a5565b60405161024e9190610e7d565b60405180910390f35b610271600480360381019061026c9190610f38565b610537565b60405161027e9190610f93565b60405180910390f35b6102a1600480360381019061029c9190610f38565b6105ae565b6040516102ae9190610f93565b60405180910390f35b6102bf6105d1565b6040516102cc9190610fbd565b60405180910390f35b6102dd6105d7565b005b6102f960048036038101906102f4919061108f565b610733565b6040516103069190610fbd565b60405180910390f35b60606003805461031e906110fe565b80601f016020809104026020016040519081016040528092919081815260200182805461034a906110fe565b80156103975780601f1061036c57610100808354040283529160200191610397565b820191906000526020600020905b81548152906001019060200180831161037a57829003601f168201915b5050505050905090565b6000806103ac6107ba565b90506103b98185856107c2565b600191505092915050565b6000600254905090565b6000806103d96107ba565b90506103e685828561098b565b6103f1858585610a17565b60019150509392505050565b60006012905090565b60066020528060005260406000206000915054906101000a900460ff1681565b6000806104316107ba565b90506104528185856104438589610733565b61044d919061115e565b6107c2565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104b4906110fe565b80601f01602080910402602001604051908101604052809291908181526020018280546104e0906110fe565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b6000806105426107ba565b905060006105508286610733565b905083811015610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c90611204565b60405180910390fd5b6105a282868684036107c2565b60019250505092915050565b6000806105b96107ba565b90506105c6818585610a17565b600191505092915050565b60055481565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065b90611270565b60405180910390fd5b60055469152d02c7e14af680000061067a6103c4565b610684919061115e565b11156106c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bc906112dc565b60405180910390fd5b6106d93369152d02c7e14af6800000610c8d565b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108289061136e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089790611400565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161097e9190610fbd565b60405180910390a3505050565b60006109978484610733565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a115781811015610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa9061146c565b60405180910390fd5b610a1084848484036107c2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d906114fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec90611590565b60405180910390fd5b610b00838383610de3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90611622565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c749190610fbd565b60405180910390a3610c87848484610de8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf39061168e565b60405180910390fd5b610d0860008383610de3565b8060026000828254610d1a919061115e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dcb9190610fbd565b60405180910390a3610ddf60008383610de8565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e27578082015181840152602081019050610e0c565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e4f82610ded565b610e598185610df8565b9350610e69818560208601610e09565b610e7281610e33565b840191505092915050565b60006020820190508181036000830152610e978184610e44565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ecf82610ea4565b9050919050565b610edf81610ec4565b8114610eea57600080fd5b50565b600081359050610efc81610ed6565b92915050565b6000819050919050565b610f1581610f02565b8114610f2057600080fd5b50565b600081359050610f3281610f0c565b92915050565b60008060408385031215610f4f57610f4e610e9f565b5b6000610f5d85828601610eed565b9250506020610f6e85828601610f23565b9150509250929050565b60008115159050919050565b610f8d81610f78565b82525050565b6000602082019050610fa86000830184610f84565b92915050565b610fb781610f02565b82525050565b6000602082019050610fd26000830184610fae565b92915050565b600080600060608486031215610ff157610ff0610e9f565b5b6000610fff86828701610eed565b935050602061101086828701610eed565b925050604061102186828701610f23565b9150509250925092565b600060ff82169050919050565b6110418161102b565b82525050565b600060208201905061105c6000830184611038565b92915050565b60006020828403121561107857611077610e9f565b5b600061108684828501610eed565b91505092915050565b600080604083850312156110a6576110a5610e9f565b5b60006110b485828601610eed565b92505060206110c585828601610eed565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061111657607f821691505b602082108103611129576111286110cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061116982610f02565b915061117483610f02565b925082820190508082111561118c5761118b61112f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111ee602583610df8565b91506111f982611192565b604082019050919050565b6000602082019050818103600083015261121d816111e1565b9050919050565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b600061125a601783610df8565b915061126582611224565b602082019050919050565b600060208201905081810360008301526112898161124d565b9050919050565b7f4d6178696d756d20737570706c79207265616368656400000000000000000000600082015250565b60006112c6601683610df8565b91506112d182611290565b602082019050919050565b600060208201905081810360008301526112f5816112b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611358602483610df8565b9150611363826112fc565b604082019050919050565b600060208201905081810360008301526113878161134b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113ea602283610df8565b91506113f58261138e565b604082019050919050565b60006020820190508181036000830152611419816113dd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611456601d83610df8565b915061146182611420565b602082019050919050565b6000602082019050818103600083015261148581611449565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114e8602583610df8565b91506114f38261148c565b604082019050919050565b60006020820190508181036000830152611517816114db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061157a602383610df8565b91506115858261151e565b604082019050919050565b600060208201905081810360008301526115a98161156d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061160c602683610df8565b9150611617826115b0565b604082019050919050565b6000602082019050818103600083015261163b816115ff565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611678601f83610df8565b915061168382611642565b602082019050919050565b600060208201905081810360008301526116a78161166b565b905091905056fea264697066735822122039edea01722565777d637186c23342dedb5828dbc4746ba437f3b103913ee82964736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a9059cbb11610066578063a9059cbb14610287578063d5abeb01146102b7578063d6bf7053146102d5578063dd62ed3e146102df576100ea565b806370a082311461020957806395d89b4114610239578063a457c2d714610257576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806338e21cce146101a957806339509351146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f761030f565b6040516101049190610e7d565b60405180910390f35b61012760048036038101906101229190610f38565b6103a1565b6040516101349190610f93565b60405180910390f35b6101456103c4565b6040516101529190610fbd565b60405180910390f35b61017560048036038101906101709190610fd8565b6103ce565b6040516101829190610f93565b60405180910390f35b6101936103fd565b6040516101a09190611047565b60405180910390f35b6101c360048036038101906101be9190611062565b610406565b6040516101d09190610f93565b60405180910390f35b6101f360048036038101906101ee9190610f38565b610426565b6040516102009190610f93565b60405180910390f35b610223600480360381019061021e9190611062565b61045d565b6040516102309190610fbd565b60405180910390f35b6102416104a5565b60405161024e9190610e7d565b60405180910390f35b610271600480360381019061026c9190610f38565b610537565b60405161027e9190610f93565b60405180910390f35b6102a1600480360381019061029c9190610f38565b6105ae565b6040516102ae9190610f93565b60405180910390f35b6102bf6105d1565b6040516102cc9190610fbd565b60405180910390f35b6102dd6105d7565b005b6102f960048036038101906102f4919061108f565b610733565b6040516103069190610fbd565b60405180910390f35b60606003805461031e906110fe565b80601f016020809104026020016040519081016040528092919081815260200182805461034a906110fe565b80156103975780601f1061036c57610100808354040283529160200191610397565b820191906000526020600020905b81548152906001019060200180831161037a57829003601f168201915b5050505050905090565b6000806103ac6107ba565b90506103b98185856107c2565b600191505092915050565b6000600254905090565b6000806103d96107ba565b90506103e685828561098b565b6103f1858585610a17565b60019150509392505050565b60006012905090565b60066020528060005260406000206000915054906101000a900460ff1681565b6000806104316107ba565b90506104528185856104438589610733565b61044d919061115e565b6107c2565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060600480546104b4906110fe565b80601f01602080910402602001604051908101604052809291908181526020018280546104e0906110fe565b801561052d5780601f106105025761010080835404028352916020019161052d565b820191906000526020600020905b81548152906001019060200180831161051057829003601f168201915b5050505050905090565b6000806105426107ba565b905060006105508286610733565b905083811015610595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161058c90611204565b60405180910390fd5b6105a282868684036107c2565b60019250505092915050565b6000806105b96107ba565b90506105c6818585610a17565b600191505092915050565b60055481565b600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610664576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065b90611270565b60405180910390fd5b60055469152d02c7e14af680000061067a6103c4565b610684919061115e565b11156106c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106bc906112dc565b60405180910390fd5b6106d93369152d02c7e14af6800000610c8d565b6001600660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610831576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108289061136e565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089790611400565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161097e9190610fbd565b60405180910390a3505050565b60006109978484610733565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a115781811015610a03576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109fa9061146c565b60405180910390fd5b610a1084848484036107c2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7d906114fe565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec90611590565b60405180910390fd5b610b00838383610de3565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610b86576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7d90611622565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610c749190610fbd565b60405180910390a3610c87848484610de8565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf39061168e565b60405180910390fd5b610d0860008383610de3565b8060026000828254610d1a919061115e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610dcb9190610fbd565b60405180910390a3610ddf60008383610de8565b5050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610e27578082015181840152602081019050610e0c565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e4f82610ded565b610e598185610df8565b9350610e69818560208601610e09565b610e7281610e33565b840191505092915050565b60006020820190508181036000830152610e978184610e44565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610ecf82610ea4565b9050919050565b610edf81610ec4565b8114610eea57600080fd5b50565b600081359050610efc81610ed6565b92915050565b6000819050919050565b610f1581610f02565b8114610f2057600080fd5b50565b600081359050610f3281610f0c565b92915050565b60008060408385031215610f4f57610f4e610e9f565b5b6000610f5d85828601610eed565b9250506020610f6e85828601610f23565b9150509250929050565b60008115159050919050565b610f8d81610f78565b82525050565b6000602082019050610fa86000830184610f84565b92915050565b610fb781610f02565b82525050565b6000602082019050610fd26000830184610fae565b92915050565b600080600060608486031215610ff157610ff0610e9f565b5b6000610fff86828701610eed565b935050602061101086828701610eed565b925050604061102186828701610f23565b9150509250925092565b600060ff82169050919050565b6110418161102b565b82525050565b600060208201905061105c6000830184611038565b92915050565b60006020828403121561107857611077610e9f565b5b600061108684828501610eed565b91505092915050565b600080604083850312156110a6576110a5610e9f565b5b60006110b485828601610eed565b92505060206110c585828601610eed565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061111657607f821691505b602082108103611129576111286110cf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061116982610f02565b915061117483610f02565b925082820190508082111561118c5761118b61112f565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111ee602583610df8565b91506111f982611192565b604082019050919050565b6000602082019050818103600083015261121d816111e1565b9050919050565b7f596f75206861766520616c7265616479206d696e746564000000000000000000600082015250565b600061125a601783610df8565b915061126582611224565b602082019050919050565b600060208201905081810360008301526112898161124d565b9050919050565b7f4d6178696d756d20737570706c79207265616368656400000000000000000000600082015250565b60006112c6601683610df8565b91506112d182611290565b602082019050919050565b600060208201905081810360008301526112f5816112b9565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611358602483610df8565b9150611363826112fc565b604082019050919050565b600060208201905081810360008301526113878161134b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006113ea602283610df8565b91506113f58261138e565b604082019050919050565b60006020820190508181036000830152611419816113dd565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611456601d83610df8565b915061146182611420565b602082019050919050565b6000602082019050818103600083015261148581611449565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006114e8602583610df8565b91506114f38261148c565b604082019050919050565b60006020820190508181036000830152611517816114db565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061157a602383610df8565b91506115858261151e565b604082019050919050565b600060208201905081810360008301526115a98161156d565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061160c602683610df8565b9150611617826115b0565b604082019050919050565b6000602082019050818103600083015261163b816115ff565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000611678601f83610df8565b915061168382611642565b602082019050919050565b600060208201905081810360008301526116a78161166b565b905091905056fea264697066735822122039edea01722565777d637186c23342dedb5828dbc4746ba437f3b103913ee82964736f6c63430008120033

Deployed Bytecode Sourcemap

18857:660:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7797:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10157:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8926:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10938:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8768:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18991:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11608:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9097:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8016:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12349:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9430:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18890:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19195:319;;;:::i;:::-;;9686:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7797:100;7851:13;7884:5;7877:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7797:100;:::o;10157:201::-;10240:4;10257:13;10273:12;:10;:12::i;:::-;10257:28;;10296:32;10305:5;10312:7;10321:6;10296:8;:32::i;:::-;10346:4;10339:11;;;10157:201;;;;:::o;8926:108::-;8987:7;9014:12;;9007:19;;8926:108;:::o;10938:261::-;11035:4;11052:15;11070:12;:10;:12::i;:::-;11052:30;;11093:38;11109:4;11115:7;11124:6;11093:15;:38::i;:::-;11142:27;11152:4;11158:2;11162:6;11142:9;:27::i;:::-;11187:4;11180:11;;;10938:261;;;;;:::o;8768:93::-;8826:5;8851:2;8844:9;;8768:93;:::o;18991:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;11608:238::-;11696:4;11713:13;11729:12;:10;:12::i;:::-;11713:28;;11752:64;11761:5;11768:7;11805:10;11777:25;11787:5;11794:7;11777:9;:25::i;:::-;:38;;;;:::i;:::-;11752:8;:64::i;:::-;11834:4;11827:11;;;11608:238;;;;:::o;9097:127::-;9171:7;9198:9;:18;9208:7;9198:18;;;;;;;;;;;;;;;;9191:25;;9097:127;;;:::o;8016:104::-;8072:13;8105:7;8098:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8016:104;:::o;12349:436::-;12442:4;12459:13;12475:12;:10;:12::i;:::-;12459:28;;12498:24;12525:25;12535:5;12542:7;12525:9;:25::i;:::-;12498:52;;12589:15;12569:16;:35;;12561:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12682:60;12691:5;12698:7;12726:15;12707:16;:34;12682:8;:60::i;:::-;12773:4;12766:11;;;;12349:436;;;;:::o;9430:193::-;9509:4;9526:13;9542:12;:10;:12::i;:::-;9526:28;;9565;9575:5;9582:2;9586:6;9565:9;:28::i;:::-;9611:4;9604:11;;;9430:193;;;;:::o;18890:46::-;;;;:::o;19195:319::-;19244:9;:21;19254:10;19244:21;;;;;;;;;;;;;;;;;;;;;;;;;19243:22;19235:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;19347:9;;19328:15;19312:13;:11;:13::i;:::-;:31;;;;:::i;:::-;:44;;19304:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;19396:34;19402:10;19414:15;19396:5;:34::i;:::-;19502:4;19478:9;:21;19488:10;19478:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;19195:319::o;9686:151::-;9775:7;9802:11;:18;9814:5;9802:18;;;;;;;;;;;;;;;:27;9821:7;9802:27;;;;;;;;;;;;;;;;9795:34;;9686:151;;;;:::o;1855:98::-;1908:7;1935:10;1928:17;;1855:98;:::o;16342:346::-;16461:1;16444:19;;:5;:19;;;16436:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16542:1;16523:21;;:7;:21;;;16515:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16626:6;16596:11;:18;16608:5;16596:18;;;;;;;;;;;;;;;:27;16615:7;16596:27;;;;;;;;;;;;;;;:36;;;;16664:7;16648:32;;16657:5;16648:32;;;16673:6;16648:32;;;;;;:::i;:::-;;;;;;;;16342:346;;;:::o;16979:419::-;17080:24;17107:25;17117:5;17124:7;17107:9;:25::i;:::-;17080:52;;17167:17;17147:16;:37;17143:248;;17229:6;17209:16;:26;;17201:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17313:51;17322:5;17329:7;17357:6;17338:16;:25;17313:8;:51::i;:::-;17143:248;17069:329;16979:419;;;:::o;13255:806::-;13368:1;13352:18;;:4;:18;;;13344:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13445:1;13431:16;;:2;:16;;;13423:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;13500:38;13521:4;13527:2;13531:6;13500:20;:38::i;:::-;13551:19;13573:9;:15;13583:4;13573:15;;;;;;;;;;;;;;;;13551:37;;13622:6;13607:11;:21;;13599:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;13739:6;13725:11;:20;13707:9;:15;13717:4;13707:15;;;;;;;;;;;;;;;:38;;;;13942:6;13925:9;:13;13935:2;13925:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13992:2;13977:26;;13986:4;13977:26;;;13996:6;13977:26;;;;;;:::i;:::-;;;;;;;;14016:37;14036:4;14042:2;14046:6;14016:19;:37::i;:::-;13333:728;13255:806;;;:::o;14348:548::-;14451:1;14432:21;;:7;:21;;;14424:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;14502:49;14531:1;14535:7;14544:6;14502:20;:49::i;:::-;14580:6;14564:12;;:22;;;;;;;:::i;:::-;;;;;;;;14757:6;14735:9;:18;14745:7;14735:18;;;;;;;;;;;;;;;;:28;;;;;;;;;;;14811:7;14790:37;;14807:1;14790:37;;;14820:6;14790:37;;;;;;:::i;:::-;;;;;;;;14840:48;14868:1;14872:7;14881:6;14840:19;:48::i;:::-;14348:548;;:::o;17998:91::-;;;;:::o;18693:90::-;;;;:::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: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:474::-;5256:6;5264;5313:2;5301:9;5292:7;5288:23;5284:32;5281:119;;;5319:79;;:::i;:::-;5281:119;5439:1;5464:53;5509:7;5500:6;5489:9;5485:22;5464:53;:::i;:::-;5454:63;;5410:117;5566:2;5592:53;5637:7;5628:6;5617:9;5613:22;5592:53;:::i;:::-;5582:63;;5537:118;5188:474;;;;;:::o;5668:180::-;5716:77;5713:1;5706:88;5813:4;5810:1;5803:15;5837:4;5834:1;5827:15;5854:320;5898:6;5935:1;5929:4;5925:12;5915:22;;5982:1;5976:4;5972:12;6003:18;5993:81;;6059:4;6051:6;6047:17;6037:27;;5993:81;6121:2;6113:6;6110:14;6090:18;6087:38;6084:84;;6140:18;;:::i;:::-;6084:84;5905:269;5854:320;;;:::o;6180:180::-;6228:77;6225:1;6218:88;6325:4;6322:1;6315:15;6349:4;6346:1;6339:15;6366:191;6406:3;6425:20;6443:1;6425:20;:::i;:::-;6420:25;;6459:20;6477:1;6459:20;:::i;:::-;6454:25;;6502:1;6499;6495:9;6488:16;;6523:3;6520:1;6517:10;6514:36;;;6530:18;;:::i;:::-;6514:36;6366:191;;;;:::o;6563:224::-;6703:34;6699:1;6691:6;6687:14;6680:58;6772:7;6767:2;6759:6;6755:15;6748:32;6563:224;:::o;6793:366::-;6935:3;6956:67;7020:2;7015:3;6956:67;:::i;:::-;6949:74;;7032:93;7121:3;7032:93;:::i;:::-;7150:2;7145:3;7141:12;7134:19;;6793:366;;;:::o;7165:419::-;7331:4;7369:2;7358:9;7354:18;7346:26;;7418:9;7412:4;7408:20;7404:1;7393:9;7389:17;7382:47;7446:131;7572:4;7446:131;:::i;:::-;7438:139;;7165:419;;;:::o;7590:173::-;7730:25;7726:1;7718:6;7714:14;7707:49;7590:173;:::o;7769:366::-;7911:3;7932:67;7996:2;7991:3;7932:67;:::i;:::-;7925:74;;8008:93;8097:3;8008:93;:::i;:::-;8126:2;8121:3;8117:12;8110:19;;7769:366;;;:::o;8141:419::-;8307:4;8345:2;8334:9;8330:18;8322:26;;8394:9;8388:4;8384:20;8380:1;8369:9;8365:17;8358:47;8422:131;8548:4;8422:131;:::i;:::-;8414:139;;8141:419;;;:::o;8566:172::-;8706:24;8702:1;8694:6;8690:14;8683:48;8566:172;:::o;8744:366::-;8886:3;8907:67;8971:2;8966:3;8907:67;:::i;:::-;8900:74;;8983:93;9072:3;8983:93;:::i;:::-;9101:2;9096:3;9092:12;9085:19;;8744:366;;;:::o;9116:419::-;9282:4;9320:2;9309:9;9305:18;9297:26;;9369:9;9363:4;9359:20;9355:1;9344:9;9340:17;9333:47;9397:131;9523:4;9397:131;:::i;:::-;9389:139;;9116:419;;;:::o;9541:223::-;9681:34;9677:1;9669:6;9665:14;9658:58;9750:6;9745:2;9737:6;9733:15;9726:31;9541:223;:::o;9770:366::-;9912:3;9933:67;9997:2;9992:3;9933:67;:::i;:::-;9926:74;;10009:93;10098:3;10009:93;:::i;:::-;10127:2;10122:3;10118:12;10111:19;;9770:366;;;:::o;10142:419::-;10308:4;10346:2;10335:9;10331:18;10323:26;;10395:9;10389:4;10385:20;10381:1;10370:9;10366:17;10359:47;10423:131;10549:4;10423:131;:::i;:::-;10415:139;;10142:419;;;:::o;10567:221::-;10707:34;10703:1;10695:6;10691:14;10684:58;10776:4;10771:2;10763:6;10759:15;10752:29;10567:221;:::o;10794:366::-;10936:3;10957:67;11021:2;11016:3;10957:67;:::i;:::-;10950:74;;11033:93;11122:3;11033:93;:::i;:::-;11151:2;11146:3;11142:12;11135:19;;10794:366;;;:::o;11166:419::-;11332:4;11370:2;11359:9;11355:18;11347:26;;11419:9;11413:4;11409:20;11405:1;11394:9;11390:17;11383:47;11447:131;11573:4;11447:131;:::i;:::-;11439:139;;11166:419;;;:::o;11591:179::-;11731:31;11727:1;11719:6;11715:14;11708:55;11591:179;:::o;11776:366::-;11918:3;11939:67;12003:2;11998:3;11939:67;:::i;:::-;11932:74;;12015:93;12104:3;12015:93;:::i;:::-;12133:2;12128:3;12124:12;12117:19;;11776:366;;;:::o;12148:419::-;12314:4;12352:2;12341:9;12337:18;12329:26;;12401:9;12395:4;12391:20;12387:1;12376:9;12372:17;12365:47;12429:131;12555:4;12429:131;:::i;:::-;12421:139;;12148:419;;;:::o;12573:224::-;12713:34;12709:1;12701:6;12697:14;12690:58;12782:7;12777:2;12769:6;12765:15;12758:32;12573:224;:::o;12803:366::-;12945:3;12966:67;13030:2;13025:3;12966:67;:::i;:::-;12959:74;;13042:93;13131:3;13042:93;:::i;:::-;13160:2;13155:3;13151:12;13144:19;;12803:366;;;:::o;13175:419::-;13341:4;13379:2;13368:9;13364:18;13356:26;;13428:9;13422:4;13418:20;13414:1;13403:9;13399:17;13392:47;13456:131;13582:4;13456:131;:::i;:::-;13448:139;;13175:419;;;:::o;13600:222::-;13740:34;13736:1;13728:6;13724:14;13717:58;13809:5;13804:2;13796:6;13792:15;13785:30;13600:222;:::o;13828:366::-;13970:3;13991:67;14055:2;14050:3;13991:67;:::i;:::-;13984:74;;14067:93;14156:3;14067:93;:::i;:::-;14185:2;14180:3;14176:12;14169:19;;13828:366;;;:::o;14200:419::-;14366:4;14404:2;14393:9;14389:18;14381:26;;14453:9;14447:4;14443:20;14439:1;14428:9;14424:17;14417:47;14481:131;14607:4;14481:131;:::i;:::-;14473:139;;14200:419;;;:::o;14625:225::-;14765:34;14761:1;14753:6;14749:14;14742:58;14834:8;14829:2;14821:6;14817:15;14810:33;14625:225;:::o;14856:366::-;14998:3;15019:67;15083:2;15078:3;15019:67;:::i;:::-;15012:74;;15095:93;15184:3;15095:93;:::i;:::-;15213:2;15208:3;15204:12;15197:19;;14856:366;;;:::o;15228:419::-;15394:4;15432:2;15421:9;15417:18;15409:26;;15481:9;15475:4;15471:20;15467:1;15456:9;15452:17;15445:47;15509:131;15635:4;15509:131;:::i;:::-;15501:139;;15228:419;;;:::o;15653:181::-;15793:33;15789:1;15781:6;15777:14;15770:57;15653:181;:::o;15840:366::-;15982:3;16003:67;16067:2;16062:3;16003:67;:::i;:::-;15996:74;;16079:93;16168:3;16079:93;:::i;:::-;16197:2;16192:3;16188:12;16181:19;;15840:366;;;:::o;16212:419::-;16378:4;16416:2;16405:9;16401:18;16393:26;;16465:9;16459:4;16455:20;16451:1;16440:9;16436:17;16429:47;16493:131;16619:4;16493:131;:::i;:::-;16485:139;;16212:419;;;:::o

Swarm Source

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