ETH Price: $2,942.03 (-5.72%)
Gas: 8 Gwei

Token

BearMarketJesus (BMJ)
 

Overview

Max Total Supply

1,000,000,000,000 BMJ

Holders

53

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,893,423,071.147022241942170563 BMJ

Value
$0.00
0xee188cfda906c3a91b157828c6546a4d2caa4e7f
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:
BearMarketJesus

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
No with 200 runs

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

// Sources flattened with hardhat v2.12.4 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/token/ERC20/[email protected]


// 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/[email protected]


// 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/[email protected]


// 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 private _totalSupply;

    string private _name;
    string private _symbol;

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

        _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 @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


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

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


// File contracts/BearMarketJesus.sol


pragma solidity 0.8.17;


contract BearMarketJesus is ERC20, ERC20Burnable {
    address public owner;
    uint256 private constant AMOUNT = 1000000000000000000000000000000; 
    
    modifier onlyOwner() {
        require(msg.sender == owner, "caller is not the owner");
        _;
    }


    // CONSTRUCTOR ------------------------------------------------------------------------------------------
    constructor(address) ERC20("BearMarketJesus", "BMJ") {
        _mint(msg.sender, AMOUNT);
        owner = msg.sender;
    }

    function Bless() public pure returns (string memory) {
        return unicode"🙏";
    }

    // OVERRIDED FUNCTIONS -----------------------------------------------------------------------------------
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"","type":"address"}],"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":"Bless","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"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"}]

60806040523480156200001157600080fd5b5060405162001e9d38038062001e9d833981810160405281019062000037919062000311565b6040518060400160405280600f81526020017f426561724d61726b65744a6573757300000000000000000000000000000000008152506040518060400160405280600381526020017f424d4a00000000000000000000000000000000000000000000000000000000008152508160039081620000b49190620005bd565b508060049081620000c69190620005bd565b505050620000e8336c0c9f2c9cd04674edea400000006200013060201b60201c565b33600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050620007bf565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620001a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001999062000705565b60405180910390fd5b620001b6600083836200029d60201b60201c565b8060026000828254620001ca919062000756565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200027d9190620007a2565b60405180910390a36200029960008383620002a260201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620002d982620002ac565b9050919050565b620002eb81620002cc565b8114620002f757600080fd5b50565b6000815190506200030b81620002e0565b92915050565b6000602082840312156200032a5762000329620002a7565b5b60006200033a84828501620002fa565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620003c557607f821691505b602082108103620003db57620003da6200037d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004457fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000406565b62000451868362000406565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200049e62000498620004928462000469565b62000473565b62000469565b9050919050565b6000819050919050565b620004ba836200047d565b620004d2620004c982620004a5565b84845462000413565b825550505050565b600090565b620004e9620004da565b620004f6818484620004af565b505050565b5b818110156200051e5762000512600082620004df565b600181019050620004fc565b5050565b601f8211156200056d576200053781620003e1565b6200054284620003f6565b8101602085101562000552578190505b6200056a6200056185620003f6565b830182620004fb565b50505b505050565b600082821c905092915050565b6000620005926000198460080262000572565b1980831691505092915050565b6000620005ad83836200057f565b9150826002028217905092915050565b620005c88262000343565b67ffffffffffffffff811115620005e457620005e36200034e565b5b620005f08254620003ac565b620005fd82828562000522565b600060209050601f83116001811462000635576000841562000620578287015190505b6200062c85826200059f565b8655506200069c565b601f1984166200064586620003e1565b60005b828110156200066f5784890151825560018201915060208501945060208101905062000648565b868310156200068f57848901516200068b601f8916826200057f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620006ed601f83620006a4565b9150620006fa82620006b5565b602082019050919050565b600060208201905081810360008301526200072081620006de565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620007638262000469565b9150620007708362000469565b92508282019050808211156200078b576200078a62000727565b5b92915050565b6200079c8162000469565b82525050565b6000602082019050620007b9600083018462000791565b92915050565b6116ce80620007cf6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a082311161009757806395d89b411161006657806395d89b4114610288578063a457c2d7146102a6578063a9059cbb146102d6578063dd62ed3e14610306576100f5565b806370a082311461020057806379cc6790146102305780638da5cb5b1461024c57806393c14ecc1461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f9190610e30565b60405180910390f35b610132600480360381019061012d9190610eeb565b6103c8565b60405161013f9190610f46565b60405180910390f35b6101506103eb565b60405161015d9190610f70565b60405180910390f35b610180600480360381019061017b9190610f8b565b6103f5565b60405161018d9190610f46565b60405180910390f35b61019e610424565b6040516101ab9190610ffa565b60405180910390f35b6101ce60048036038101906101c99190610eeb565b61042d565b6040516101db9190610f46565b60405180910390f35b6101fe60048036038101906101f99190611015565b610464565b005b61021a60048036038101906102159190611042565b610478565b6040516102279190610f70565b60405180910390f35b61024a60048036038101906102459190610eeb565b6104c0565b005b6102546104e0565b604051610261919061107e565b60405180910390f35b610272610506565b60405161027f9190610e30565b60405180910390f35b610290610543565b60405161029d9190610e30565b60405180910390f35b6102c060048036038101906102bb9190610eeb565b6105d5565b6040516102cd9190610f46565b60405180910390f35b6102f060048036038101906102eb9190610eeb565b61064c565b6040516102fd9190610f46565b60405180910390f35b610320600480360381019061031b9190611099565b61066f565b60405161032d9190610f70565b60405180910390f35b60606003805461034590611108565b80601f016020809104026020016040519081016040528092919081815260200182805461037190611108565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d36106f6565b90506103e08185856106fe565b600191505092915050565b6000600254905090565b6000806104006106f6565b905061040d8582856108c7565b610418858585610953565b60019150509392505050565b60006012905090565b6000806104386106f6565b905061045981858561044a858961066f565b6104549190611168565b6106fe565b600191505092915050565b61047561046f6106f6565b82610bc9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104d2826104cc6106f6565b836108c7565b6104dc8282610bc9565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280600481526020017ff09f998f00000000000000000000000000000000000000000000000000000000815250905090565b60606004805461055290611108565b80601f016020809104026020016040519081016040528092919081815260200182805461057e90611108565b80156105cb5780601f106105a0576101008083540402835291602001916105cb565b820191906000526020600020905b8154815290600101906020018083116105ae57829003601f168201915b5050505050905090565b6000806105e06106f6565b905060006105ee828661066f565b905083811015610633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062a9061120e565b60405180910390fd5b61064082868684036106fe565b60019250505092915050565b6000806106576106f6565b9050610664818585610953565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610764906112a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390611332565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108ba9190610f70565b60405180910390a3505050565b60006108d3848461066f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461094d578181101561093f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109369061139e565b60405180910390fd5b61094c84848484036106fe565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990611430565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906114c2565b60405180910390fd5b610a3c838383610d96565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990611554565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bb09190610f70565b60405180910390a3610bc3848484610d9b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f906115e6565b60405180910390fd5b610c4482600083610d96565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190611678565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d7d9190610f70565b60405180910390a3610d9183600084610d9b565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610dda578082015181840152602081019050610dbf565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e0282610da0565b610e0c8185610dab565b9350610e1c818560208601610dbc565b610e2581610de6565b840191505092915050565b60006020820190508181036000830152610e4a8184610df7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e8282610e57565b9050919050565b610e9281610e77565b8114610e9d57600080fd5b50565b600081359050610eaf81610e89565b92915050565b6000819050919050565b610ec881610eb5565b8114610ed357600080fd5b50565b600081359050610ee581610ebf565b92915050565b60008060408385031215610f0257610f01610e52565b5b6000610f1085828601610ea0565b9250506020610f2185828601610ed6565b9150509250929050565b60008115159050919050565b610f4081610f2b565b82525050565b6000602082019050610f5b6000830184610f37565b92915050565b610f6a81610eb5565b82525050565b6000602082019050610f856000830184610f61565b92915050565b600080600060608486031215610fa457610fa3610e52565b5b6000610fb286828701610ea0565b9350506020610fc386828701610ea0565b9250506040610fd486828701610ed6565b9150509250925092565b600060ff82169050919050565b610ff481610fde565b82525050565b600060208201905061100f6000830184610feb565b92915050565b60006020828403121561102b5761102a610e52565b5b600061103984828501610ed6565b91505092915050565b60006020828403121561105857611057610e52565b5b600061106684828501610ea0565b91505092915050565b61107881610e77565b82525050565b6000602082019050611093600083018461106f565b92915050565b600080604083850312156110b0576110af610e52565b5b60006110be85828601610ea0565b92505060206110cf85828601610ea0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061112057607f821691505b602082108103611133576111326110d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061117382610eb5565b915061117e83610eb5565b925082820190508082111561119657611195611139565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111f8602583610dab565b91506112038261119c565b604082019050919050565b60006020820190508181036000830152611227816111eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061128a602483610dab565b91506112958261122e565b604082019050919050565b600060208201905081810360008301526112b98161127d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061131c602283610dab565b9150611327826112c0565b604082019050919050565b6000602082019050818103600083015261134b8161130f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611388601d83610dab565b915061139382611352565b602082019050919050565b600060208201905081810360008301526113b78161137b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061141a602583610dab565b9150611425826113be565b604082019050919050565b600060208201905081810360008301526114498161140d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006114ac602383610dab565b91506114b782611450565b604082019050919050565b600060208201905081810360008301526114db8161149f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061153e602683610dab565b9150611549826114e2565b604082019050919050565b6000602082019050818103600083015261156d81611531565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006115d0602183610dab565b91506115db82611574565b604082019050919050565b600060208201905081810360008301526115ff816115c3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611662602283610dab565b915061166d82611606565b604082019050919050565b6000602082019050818103600083015261169181611655565b905091905056fea2646970667358221220475a93eba9ef1dfa3dbe110eba8c92e47c422e180cc8abd18c470f2a27413cd964736f6c63430008110033000000000000000000000000cb27fe2a45010fc9e901fd92a4f475fcfe2ea953

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a082311161009757806395d89b411161006657806395d89b4114610288578063a457c2d7146102a6578063a9059cbb146102d6578063dd62ed3e14610306576100f5565b806370a082311461020057806379cc6790146102305780638da5cb5b1461024c57806393c14ecc1461026a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806342966c68146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610336565b60405161010f9190610e30565b60405180910390f35b610132600480360381019061012d9190610eeb565b6103c8565b60405161013f9190610f46565b60405180910390f35b6101506103eb565b60405161015d9190610f70565b60405180910390f35b610180600480360381019061017b9190610f8b565b6103f5565b60405161018d9190610f46565b60405180910390f35b61019e610424565b6040516101ab9190610ffa565b60405180910390f35b6101ce60048036038101906101c99190610eeb565b61042d565b6040516101db9190610f46565b60405180910390f35b6101fe60048036038101906101f99190611015565b610464565b005b61021a60048036038101906102159190611042565b610478565b6040516102279190610f70565b60405180910390f35b61024a60048036038101906102459190610eeb565b6104c0565b005b6102546104e0565b604051610261919061107e565b60405180910390f35b610272610506565b60405161027f9190610e30565b60405180910390f35b610290610543565b60405161029d9190610e30565b60405180910390f35b6102c060048036038101906102bb9190610eeb565b6105d5565b6040516102cd9190610f46565b60405180910390f35b6102f060048036038101906102eb9190610eeb565b61064c565b6040516102fd9190610f46565b60405180910390f35b610320600480360381019061031b9190611099565b61066f565b60405161032d9190610f70565b60405180910390f35b60606003805461034590611108565b80601f016020809104026020016040519081016040528092919081815260200182805461037190611108565b80156103be5780601f10610393576101008083540402835291602001916103be565b820191906000526020600020905b8154815290600101906020018083116103a157829003601f168201915b5050505050905090565b6000806103d36106f6565b90506103e08185856106fe565b600191505092915050565b6000600254905090565b6000806104006106f6565b905061040d8582856108c7565b610418858585610953565b60019150509392505050565b60006012905090565b6000806104386106f6565b905061045981858561044a858961066f565b6104549190611168565b6106fe565b600191505092915050565b61047561046f6106f6565b82610bc9565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104d2826104cc6106f6565b836108c7565b6104dc8282610bc9565b5050565b600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606040518060400160405280600481526020017ff09f998f00000000000000000000000000000000000000000000000000000000815250905090565b60606004805461055290611108565b80601f016020809104026020016040519081016040528092919081815260200182805461057e90611108565b80156105cb5780601f106105a0576101008083540402835291602001916105cb565b820191906000526020600020905b8154815290600101906020018083116105ae57829003601f168201915b5050505050905090565b6000806105e06106f6565b905060006105ee828661066f565b905083811015610633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062a9061120e565b60405180910390fd5b61064082868684036106fe565b60019250505092915050565b6000806106576106f6565b9050610664818585610953565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361076d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610764906112a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036107dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d390611332565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516108ba9190610f70565b60405180910390a3505050565b60006108d3848461066f565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461094d578181101561093f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109369061139e565b60405180910390fd5b61094c84848484036106fe565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b990611430565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a28906114c2565b60405180910390fd5b610a3c838383610d96565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610ac2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab990611554565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610bb09190610f70565b60405180910390a3610bc3848484610d9b565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2f906115e6565b60405180910390fd5b610c4482600083610d96565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc190611678565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d7d9190610f70565b60405180910390a3610d9183600084610d9b565b505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610dda578082015181840152602081019050610dbf565b60008484015250505050565b6000601f19601f8301169050919050565b6000610e0282610da0565b610e0c8185610dab565b9350610e1c818560208601610dbc565b610e2581610de6565b840191505092915050565b60006020820190508181036000830152610e4a8184610df7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610e8282610e57565b9050919050565b610e9281610e77565b8114610e9d57600080fd5b50565b600081359050610eaf81610e89565b92915050565b6000819050919050565b610ec881610eb5565b8114610ed357600080fd5b50565b600081359050610ee581610ebf565b92915050565b60008060408385031215610f0257610f01610e52565b5b6000610f1085828601610ea0565b9250506020610f2185828601610ed6565b9150509250929050565b60008115159050919050565b610f4081610f2b565b82525050565b6000602082019050610f5b6000830184610f37565b92915050565b610f6a81610eb5565b82525050565b6000602082019050610f856000830184610f61565b92915050565b600080600060608486031215610fa457610fa3610e52565b5b6000610fb286828701610ea0565b9350506020610fc386828701610ea0565b9250506040610fd486828701610ed6565b9150509250925092565b600060ff82169050919050565b610ff481610fde565b82525050565b600060208201905061100f6000830184610feb565b92915050565b60006020828403121561102b5761102a610e52565b5b600061103984828501610ed6565b91505092915050565b60006020828403121561105857611057610e52565b5b600061106684828501610ea0565b91505092915050565b61107881610e77565b82525050565b6000602082019050611093600083018461106f565b92915050565b600080604083850312156110b0576110af610e52565b5b60006110be85828601610ea0565b92505060206110cf85828601610ea0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061112057607f821691505b602082108103611133576111326110d9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061117382610eb5565b915061117e83610eb5565b925082820190508082111561119657611195611139565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006111f8602583610dab565b91506112038261119c565b604082019050919050565b60006020820190508181036000830152611227816111eb565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061128a602483610dab565b91506112958261122e565b604082019050919050565b600060208201905081810360008301526112b98161127d565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061131c602283610dab565b9150611327826112c0565b604082019050919050565b6000602082019050818103600083015261134b8161130f565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611388601d83610dab565b915061139382611352565b602082019050919050565b600060208201905081810360008301526113b78161137b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061141a602583610dab565b9150611425826113be565b604082019050919050565b600060208201905081810360008301526114498161140d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006114ac602383610dab565b91506114b782611450565b604082019050919050565b600060208201905081810360008301526114db8161149f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061153e602683610dab565b9150611549826114e2565b604082019050919050565b6000602082019050818103600083015261156d81611531565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006115d0602183610dab565b91506115db82611574565b604082019050919050565b600060208201905081810360008301526115ff816115c3565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611662602283610dab565b915061166d82611606565b604082019050919050565b6000602082019050818103600083015261169181611655565b905091905056fea2646970667358221220475a93eba9ef1dfa3dbe110eba8c92e47c422e180cc8abd18c470f2a27413cd964736f6c63430008110033

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

000000000000000000000000cb27fe2a45010fc9e901fd92a4f475fcfe2ea953

-----Decoded View---------------
Arg [0] : (address): 0xCb27fE2A45010fc9E901fD92A4f475fCFE2ea953

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000cb27fe2a45010fc9e901fd92a4f475fcfe2ea953


Deployed Bytecode Sourcemap

19205:834:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6773:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9124:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7893:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9905:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19941:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10609:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18550:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8064:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18960:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19261:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19729:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6992:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11350:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8397:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8653:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6773:100;6827:13;6860:5;6853:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6773:100;:::o;9124:201::-;9207:4;9224:13;9240:12;:10;:12::i;:::-;9224:28;;9263:32;9272:5;9279:7;9288:6;9263:8;:32::i;:::-;9313:4;9306:11;;;9124:201;;;;:::o;7893:108::-;7954:7;7981:12;;7974:19;;7893:108;:::o;9905:295::-;10036:4;10053:15;10071:12;:10;:12::i;:::-;10053:30;;10094:38;10110:4;10116:7;10125:6;10094:15;:38::i;:::-;10143:27;10153:4;10159:2;10163:6;10143:9;:27::i;:::-;10188:4;10181:11;;;9905:295;;;;;:::o;19941:93::-;19999:5;20024:2;20017:9;;19941:93;:::o;10609:238::-;10697:4;10714:13;10730:12;:10;:12::i;:::-;10714:28;;10753:64;10762:5;10769:7;10806:10;10778:25;10788:5;10795:7;10778:9;:25::i;:::-;:38;;;;:::i;:::-;10753:8;:64::i;:::-;10835:4;10828:11;;;10609:238;;;;:::o;18550:91::-;18606:27;18612:12;:10;:12::i;:::-;18626:6;18606:5;:27::i;:::-;18550:91;:::o;8064:127::-;8138:7;8165:9;:18;8175:7;8165:18;;;;;;;;;;;;;;;;8158:25;;8064:127;;;:::o;18960:164::-;19037:46;19053:7;19062:12;:10;:12::i;:::-;19076:6;19037:15;:46::i;:::-;19094:22;19100:7;19109:6;19094:5;:22::i;:::-;18960:164;;:::o;19261:20::-;;;;;;;;;;;;;:::o;19729:92::-;19767:13;19793:20;;;;;;;;;;;;;;;;;;;19729:92;:::o;6992:104::-;7048:13;7081:7;7074:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6992:104;:::o;11350:436::-;11443:4;11460:13;11476:12;:10;:12::i;:::-;11460:28;;11499:24;11526:25;11536:5;11543:7;11526:9;:25::i;:::-;11499:52;;11590:15;11570:16;:35;;11562:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;11683:60;11692:5;11699:7;11727:15;11708:16;:34;11683:8;:60::i;:::-;11774:4;11767:11;;;;11350:436;;;;:::o;8397:193::-;8476:4;8493:13;8509:12;:10;:12::i;:::-;8493:28;;8532;8542:5;8549:2;8553:6;8532:9;:28::i;:::-;8578:4;8571:11;;;8397:193;;;;:::o;8653:151::-;8742:7;8769:11;:18;8781:5;8769:18;;;;;;;;;;;;;;;:27;8788:7;8769:27;;;;;;;;;;;;;;;;8762:34;;8653:151;;;;:::o;781:98::-;834:7;861:10;854:17;;781:98;:::o;15377:380::-;15530:1;15513:19;;:5;:19;;;15505:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15611:1;15592:21;;:7;:21;;;15584:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15695:6;15665:11;:18;15677:5;15665:18;;;;;;;;;;;;;;;:27;15684:7;15665:27;;;;;;;;;;;;;;;:36;;;;15733:7;15717:32;;15726:5;15717:32;;;15742:6;15717:32;;;;;;:::i;:::-;;;;;;;;15377:380;;;:::o;16048:453::-;16183:24;16210:25;16220:5;16227:7;16210:9;:25::i;:::-;16183:52;;16270:17;16250:16;:37;16246:248;;16332:6;16312:16;:26;;16304:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16416:51;16425:5;16432:7;16460:6;16441:16;:25;16416:8;:51::i;:::-;16246:248;16172:329;16048:453;;;:::o;12256:840::-;12403:1;12387:18;;:4;:18;;;12379:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12480:1;12466:16;;:2;:16;;;12458:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;12535:38;12556:4;12562:2;12566:6;12535:20;:38::i;:::-;12586:19;12608:9;:15;12618:4;12608:15;;;;;;;;;;;;;;;;12586:37;;12657:6;12642:11;:21;;12634:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;12774:6;12760:11;:20;12742:9;:15;12752:4;12742:15;;;;;;;;;;;;;;;:38;;;;12977:6;12960:9;:13;12970:2;12960:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;13027:2;13012:26;;13021:4;13012:26;;;13031:6;13012:26;;;;;;:::i;:::-;;;;;;;;13051:37;13071:4;13077:2;13081:6;13051:19;:37::i;:::-;12368:728;12256:840;;;:::o;14264:675::-;14367:1;14348:21;;:7;:21;;;14340:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;14420:49;14441:7;14458:1;14462:6;14420:20;:49::i;:::-;14482:22;14507:9;:18;14517:7;14507:18;;;;;;;;;;;;;;;;14482:43;;14562:6;14544:14;:24;;14536:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14681:6;14664:14;:23;14643:9;:18;14653:7;14643:18;;;;;;;;;;;;;;;:44;;;;14798:6;14782:12;;:22;;;;;;;;;;;14859:1;14833:37;;14842:7;14833:37;;;14863:6;14833:37;;;;;;:::i;:::-;;;;;;;;14883:48;14903:7;14920:1;14924:6;14883:19;:48::i;:::-;14329:610;14264:675;;:::o;17101:125::-;;;;:::o;17830: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: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:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:191;7093:3;7112:20;7130:1;7112:20;:::i;:::-;7107:25;;7146:20;7164:1;7146:20;:::i;:::-;7141:25;;7189:1;7186;7182:9;7175:16;;7210:3;7207:1;7204:10;7201:36;;;7217:18;;:::i;:::-;7201:36;7053:191;;;;:::o;7250:224::-;7390:34;7386:1;7378:6;7374:14;7367:58;7459:7;7454:2;7446:6;7442:15;7435:32;7250:224;:::o;7480:366::-;7622:3;7643:67;7707:2;7702:3;7643:67;:::i;:::-;7636:74;;7719:93;7808:3;7719:93;:::i;:::-;7837:2;7832:3;7828:12;7821:19;;7480:366;;;:::o;7852:419::-;8018:4;8056:2;8045:9;8041:18;8033:26;;8105:9;8099:4;8095:20;8091:1;8080:9;8076:17;8069:47;8133:131;8259:4;8133:131;:::i;:::-;8125:139;;7852:419;;;:::o;8277:223::-;8417:34;8413:1;8405:6;8401:14;8394:58;8486:6;8481:2;8473:6;8469:15;8462:31;8277:223;:::o;8506:366::-;8648:3;8669:67;8733:2;8728:3;8669:67;:::i;:::-;8662:74;;8745:93;8834:3;8745:93;:::i;:::-;8863:2;8858:3;8854:12;8847:19;;8506:366;;;:::o;8878:419::-;9044:4;9082:2;9071:9;9067:18;9059:26;;9131:9;9125:4;9121:20;9117:1;9106:9;9102:17;9095:47;9159:131;9285:4;9159:131;:::i;:::-;9151:139;;8878:419;;;:::o;9303:221::-;9443:34;9439:1;9431:6;9427:14;9420:58;9512:4;9507:2;9499:6;9495:15;9488:29;9303:221;:::o;9530:366::-;9672:3;9693:67;9757:2;9752:3;9693:67;:::i;:::-;9686:74;;9769:93;9858:3;9769:93;:::i;:::-;9887:2;9882:3;9878:12;9871:19;;9530:366;;;:::o;9902:419::-;10068:4;10106:2;10095:9;10091:18;10083:26;;10155:9;10149:4;10145:20;10141:1;10130:9;10126:17;10119:47;10183:131;10309:4;10183:131;:::i;:::-;10175:139;;9902:419;;;:::o;10327:179::-;10467:31;10463:1;10455:6;10451:14;10444:55;10327:179;:::o;10512:366::-;10654:3;10675:67;10739:2;10734:3;10675:67;:::i;:::-;10668:74;;10751:93;10840:3;10751:93;:::i;:::-;10869:2;10864:3;10860:12;10853:19;;10512:366;;;:::o;10884:419::-;11050:4;11088:2;11077:9;11073:18;11065:26;;11137:9;11131:4;11127:20;11123:1;11112:9;11108:17;11101:47;11165:131;11291:4;11165:131;:::i;:::-;11157:139;;10884:419;;;:::o;11309:224::-;11449:34;11445:1;11437:6;11433:14;11426:58;11518:7;11513:2;11505:6;11501:15;11494:32;11309:224;:::o;11539:366::-;11681:3;11702:67;11766:2;11761:3;11702:67;:::i;:::-;11695:74;;11778:93;11867:3;11778:93;:::i;:::-;11896:2;11891:3;11887:12;11880:19;;11539:366;;;:::o;11911:419::-;12077:4;12115:2;12104:9;12100:18;12092:26;;12164:9;12158:4;12154:20;12150:1;12139:9;12135:17;12128:47;12192:131;12318:4;12192:131;:::i;:::-;12184:139;;11911:419;;;:::o;12336:222::-;12476:34;12472:1;12464:6;12460:14;12453:58;12545:5;12540:2;12532:6;12528:15;12521:30;12336:222;:::o;12564:366::-;12706:3;12727:67;12791:2;12786:3;12727:67;:::i;:::-;12720:74;;12803:93;12892:3;12803:93;:::i;:::-;12921:2;12916:3;12912:12;12905:19;;12564:366;;;:::o;12936:419::-;13102:4;13140:2;13129:9;13125:18;13117:26;;13189:9;13183:4;13179:20;13175:1;13164:9;13160:17;13153:47;13217:131;13343:4;13217:131;:::i;:::-;13209:139;;12936:419;;;:::o;13361:225::-;13501:34;13497:1;13489:6;13485:14;13478:58;13570:8;13565:2;13557:6;13553:15;13546:33;13361:225;:::o;13592:366::-;13734:3;13755:67;13819:2;13814:3;13755:67;:::i;:::-;13748:74;;13831:93;13920:3;13831:93;:::i;:::-;13949:2;13944:3;13940:12;13933:19;;13592:366;;;:::o;13964:419::-;14130:4;14168:2;14157:9;14153:18;14145:26;;14217:9;14211:4;14207:20;14203:1;14192:9;14188:17;14181:47;14245:131;14371:4;14245:131;:::i;:::-;14237:139;;13964:419;;;:::o;14389:220::-;14529:34;14525:1;14517:6;14513:14;14506:58;14598:3;14593:2;14585:6;14581:15;14574:28;14389:220;:::o;14615:366::-;14757:3;14778:67;14842:2;14837:3;14778:67;:::i;:::-;14771:74;;14854:93;14943:3;14854:93;:::i;:::-;14972:2;14967:3;14963:12;14956:19;;14615:366;;;:::o;14987:419::-;15153:4;15191:2;15180:9;15176:18;15168:26;;15240:9;15234:4;15230:20;15226:1;15215:9;15211:17;15204:47;15268:131;15394:4;15268:131;:::i;:::-;15260:139;;14987:419;;;:::o;15412:221::-;15552:34;15548:1;15540:6;15536:14;15529:58;15621:4;15616:2;15608:6;15604:15;15597:29;15412:221;:::o;15639:366::-;15781:3;15802:67;15866:2;15861:3;15802:67;:::i;:::-;15795:74;;15878:93;15967:3;15878:93;:::i;:::-;15996:2;15991:3;15987:12;15980:19;;15639:366;;;:::o;16011:419::-;16177:4;16215:2;16204:9;16200:18;16192:26;;16264:9;16258:4;16254:20;16250:1;16239:9;16235:17;16228:47;16292:131;16418:4;16292:131;:::i;:::-;16284:139;;16011:419;;;:::o

Swarm Source

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