ETH Price: $2,673.40 (+1.37%)

Token

Laughable (JOK)
 

Overview

Max Total Supply

11,000 JOK

Holders

11

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1,000 JOK

Value
$0.00
0x6ebf9581401ac6082d786e97e0f4d637eb487542
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:
BigJoke

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2022-11-19
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.17;






    //  ───▄▀▀▀▄▄▄▄▄▄▄▀▀▀▄───
    //  ───█▒▒░░░░░░░░░▒▒█───
    //  ────█░░█░░░░░█░░█────
    //  ─▄▄──█░░░▀█▀░░░█──▄▄─
    //  █░░█─▀▄░░░░░░░▄▀─█░░█
    //  █▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀█
    //  █░░╦─╦╔╗╦─╔╗╔╗╔╦╗╔╗░░█
    //  █░░║║║╠─║─║─║║║║║╠─░░█
    //  █░░╚╩╝╚╝╚╝╚╝╚╝╩─╩╚╝░░█
    //  █▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄▄█

    /* Mint 1,000 of these tokens per address every 55 days.




/*
  / /  WHY WOULD YOU SELL HEX FOR THIS?? / / /
                            
  / /  NO WORK NO PROFIT / /

  / / "BURN" YOUR HEXBEAR (0x009a8670E74E1dda3E449E93A9308e5977949967) TO MINT THIS JOKE OF A TOKEN  / /

  / / THE CREATOR WILL DO ABSOLUTELY NOTHING FOR THIS TOKEN / /


 
                    By @Hex_exe                                                               
*/


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

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





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






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

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

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






/**
 * @dev 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.zeppelin.solutions/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;
        }
        _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;
        _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;
        }
        _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 {}
}




contract BigJoke is ERC20 {

    ERC20 public HexBear;
    uint256 constant public mintAmount = 1000e18;
    uint256 constant public waitTime = 55 days;   

    mapping(address => uint256) lastMintTime;
    event Mint(address user ,uint mintAmount);
    

    constructor(address HexBearAddress) ERC20("Laughable", "JOK") {
        
        HexBear = ERC20(HexBearAddress);    
    }

    function mint() public {

        uint userHexBearBalance = HexBear.balanceOf(msg.sender);

        require(allowedToMint(msg.sender));
        require(userHexBearBalance > 0, "You need more HexBear");

        uint256 allowance = HexBear.allowance(msg.sender, address(this));
        require(allowance >= 0, "Check your HexBear allowance");

        lastMintTime[msg.sender] = block.timestamp + waitTime;

        HexBear.transferFrom(msg.sender, address(this), 1000e18);
         _mint(msg.sender, mintAmount);
         emit Mint(msg.sender, mintAmount);

    }

        function allowedToMint(address _address) public view returns (bool) {
        if(lastMintTime[_address] == 0) {
            return true;
        } else if(block.timestamp >= lastMintTime[_address]) {
            return true;
        }
        return false;
        
    }

    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"HexBearAddress","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":false,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"Mint","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":"HexBear","outputs":[{"internalType":"contract ERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"allowedToMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"waitTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b5060405162000f5138038062000f518339810160408190526200003491620000bc565b604051806040016040528060098152602001684c6175676861626c6560b81b815250604051806040016040528060038152602001624a4f4b60e81b815250816003908162000083919062000193565b50600462000092828262000193565b5050600580546001600160a01b0319166001600160a01b039390931692909217909155506200025f565b600060208284031215620000cf57600080fd5b81516001600160a01b0381168114620000e757600080fd5b9392505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200011957607f821691505b6020821081036200013a57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200018e57600081815260208120601f850160051c81016020861015620001695750805b601f850160051c820191505b818110156200018a5782815560010162000175565b5050505b505050565b81516001600160401b03811115620001af57620001af620000ee565b620001c781620001c0845462000104565b8462000140565b602080601f831160018114620001ff5760008415620001e65750858301515b600019600386901b1c1916600185901b1785556200018a565b600085815260208120601f198616915b8281101562000230578886015182559484019460019091019084016200020f565b50858210156200024f5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b610ce2806200026f6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c80635a2bcc1811610097578063a89da37311610066578063a89da37314610216578063a9059cbb14610229578063ccca123b1461023c578063dd62ed3e1461024657600080fd5b80635a2bcc18146101c257806370a08231146101d257806395d89b41146101fb578063a457c2d71461020357600080fd5b806323b872dd116100d357806323b872dd14610162578063313ce56714610175578063395093511461018457806354bc9c951461019757600080fd5b806306fdde0314610105578063095ea7b3146101235780631249c58b1461014657806318160ddd14610150575b600080fd5b61010d610259565b60405161011a9190610af1565b60405180910390f35b610136610131366004610b5b565b6102eb565b604051901515815260200161011a565b61014e610305565b005b6002545b60405190815260200161011a565b610136610170366004610b85565b610547565b6040516012815260200161011a565b610136610192366004610b5b565b61056b565b6005546101aa906001600160a01b031681565b6040516001600160a01b03909116815260200161011a565b610154683635c9adc5dea0000081565b6101546101e0366004610bc1565b6001600160a01b031660009081526020819052604090205490565b61010d61058d565b610136610211366004610b5b565b61059c565b610136610224366004610bc1565b610617565b610136610237366004610b5b565b61066d565b6101546248828081565b610154610254366004610be3565b61067b565b60606003805461026890610c16565b80601f016020809104026020016040519081016040528092919081815260200182805461029490610c16565b80156102e15780601f106102b6576101008083540402835291602001916102e1565b820191906000526020600020905b8154815290600101906020018083116102c457829003601f168201915b5050505050905090565b6000336102f98185856106a6565b60019150505b92915050565b6005546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561034e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103729190610c50565b905061037d33610617565b61038657600080fd5b600081116103d35760405162461bcd60e51b81526020600482015260156024820152742cb7ba903732b2b21036b7b932902432bc2132b0b960591b60448201526064015b60405180910390fd5b600554604051636eb1769f60e11b81523360048201523060248201526000916001600160a01b03169063dd62ed3e90604401602060405180830381865afa158015610422573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104469190610c50565b90506104556248828042610c69565b33600081815260066020526040908190209290925560055491516323b872dd60e01b81526004810191909152306024820152683635c9adc5dea0000060448201526001600160a01b03909116906323b872dd906064016020604051808303816000875af11580156104ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ee9190610c8a565b5061050233683635c9adc5dea000006107ca565b60408051338152683635c9adc5dea0000060208201527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a15050565b6000336105558582856108a9565b610560858585610923565b506001949350505050565b6000336102f981858561057e838361067b565b6105889190610c69565b6106a6565b60606004805461026890610c16565b600033816105aa828661067b565b90508381101561060a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ca565b61056082868684036106a6565b6001600160a01b038116600090815260066020526040812054810361063e57506001919050565b6001600160a01b038216600090815260066020526040902054421061066557506001919050565b506000919050565b6000336102f9818585610923565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b6001600160a01b0382166107695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ca565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166108205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ca565b80600260008282546108329190610c69565b90915550506001600160a01b0382166000908152602081905260408120805483929061085f908490610c69565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006108b5848461067b565b9050600019811461091d57818110156109105760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ca565b61091d84848484036106a6565b50505050565b6001600160a01b0383166109875760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166109e95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b6001600160a01b03831660009081526020819052604090205481811015610a615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ca565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a98908490610c69565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ae491815260200190565b60405180910390a361091d565b600060208083528351808285015260005b81811015610b1e57858101830151858201604001528201610b02565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b5657600080fd5b919050565b60008060408385031215610b6e57600080fd5b610b7783610b3f565b946020939093013593505050565b600080600060608486031215610b9a57600080fd5b610ba384610b3f565b9250610bb160208501610b3f565b9150604084013590509250925092565b600060208284031215610bd357600080fd5b610bdc82610b3f565b9392505050565b60008060408385031215610bf657600080fd5b610bff83610b3f565b9150610c0d60208401610b3f565b90509250929050565b600181811c90821680610c2a57607f821691505b602082108103610c4a57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610c6257600080fd5b5051919050565b808201808211156102ff57634e487b7160e01b600052601160045260246000fd5b600060208284031215610c9c57600080fd5b81518015158114610bdc57600080fdfea26469706673582212203855f52bfc3087f10fd1a99da7f7c6e671587720ce449cbfba26a7d5ad9ddf7d64736f6c63430008110033000000000000000000000000009a8670e74e1dda3e449e93a9308e5977949967

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c80635a2bcc1811610097578063a89da37311610066578063a89da37314610216578063a9059cbb14610229578063ccca123b1461023c578063dd62ed3e1461024657600080fd5b80635a2bcc18146101c257806370a08231146101d257806395d89b41146101fb578063a457c2d71461020357600080fd5b806323b872dd116100d357806323b872dd14610162578063313ce56714610175578063395093511461018457806354bc9c951461019757600080fd5b806306fdde0314610105578063095ea7b3146101235780631249c58b1461014657806318160ddd14610150575b600080fd5b61010d610259565b60405161011a9190610af1565b60405180910390f35b610136610131366004610b5b565b6102eb565b604051901515815260200161011a565b61014e610305565b005b6002545b60405190815260200161011a565b610136610170366004610b85565b610547565b6040516012815260200161011a565b610136610192366004610b5b565b61056b565b6005546101aa906001600160a01b031681565b6040516001600160a01b03909116815260200161011a565b610154683635c9adc5dea0000081565b6101546101e0366004610bc1565b6001600160a01b031660009081526020819052604090205490565b61010d61058d565b610136610211366004610b5b565b61059c565b610136610224366004610bc1565b610617565b610136610237366004610b5b565b61066d565b6101546248828081565b610154610254366004610be3565b61067b565b60606003805461026890610c16565b80601f016020809104026020016040519081016040528092919081815260200182805461029490610c16565b80156102e15780601f106102b6576101008083540402835291602001916102e1565b820191906000526020600020905b8154815290600101906020018083116102c457829003601f168201915b5050505050905090565b6000336102f98185856106a6565b60019150505b92915050565b6005546040516370a0823160e01b81523360048201526000916001600160a01b0316906370a0823190602401602060405180830381865afa15801561034e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906103729190610c50565b905061037d33610617565b61038657600080fd5b600081116103d35760405162461bcd60e51b81526020600482015260156024820152742cb7ba903732b2b21036b7b932902432bc2132b0b960591b60448201526064015b60405180910390fd5b600554604051636eb1769f60e11b81523360048201523060248201526000916001600160a01b03169063dd62ed3e90604401602060405180830381865afa158015610422573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104469190610c50565b90506104556248828042610c69565b33600081815260066020526040908190209290925560055491516323b872dd60e01b81526004810191909152306024820152683635c9adc5dea0000060448201526001600160a01b03909116906323b872dd906064016020604051808303816000875af11580156104ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104ee9190610c8a565b5061050233683635c9adc5dea000006107ca565b60408051338152683635c9adc5dea0000060208201527f0f6798a560793a54c3bcfe86a93cde1e73087d944c0ea20544137d4121396885910160405180910390a15050565b6000336105558582856108a9565b610560858585610923565b506001949350505050565b6000336102f981858561057e838361067b565b6105889190610c69565b6106a6565b60606004805461026890610c16565b600033816105aa828661067b565b90508381101561060a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103ca565b61056082868684036106a6565b6001600160a01b038116600090815260066020526040812054810361063e57506001919050565b6001600160a01b038216600090815260066020526040902054421061066557506001919050565b506000919050565b6000336102f9818585610923565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166107085760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ca565b6001600160a01b0382166107695760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ca565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0382166108205760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ca565b80600260008282546108329190610c69565b90915550506001600160a01b0382166000908152602081905260408120805483929061085f908490610c69565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60006108b5848461067b565b9050600019811461091d57818110156109105760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ca565b61091d84848484036106a6565b50505050565b6001600160a01b0383166109875760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ca565b6001600160a01b0382166109e95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ca565b6001600160a01b03831660009081526020819052604090205481811015610a615760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ca565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610a98908490610c69565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ae491815260200190565b60405180910390a361091d565b600060208083528351808285015260005b81811015610b1e57858101830151858201604001528201610b02565b506000604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b5657600080fd5b919050565b60008060408385031215610b6e57600080fd5b610b7783610b3f565b946020939093013593505050565b600080600060608486031215610b9a57600080fd5b610ba384610b3f565b9250610bb160208501610b3f565b9150604084013590509250925092565b600060208284031215610bd357600080fd5b610bdc82610b3f565b9392505050565b60008060408385031215610bf657600080fd5b610bff83610b3f565b9150610c0d60208401610b3f565b90509250929050565b600181811c90821680610c2a57607f821691505b602082108103610c4a57634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215610c6257600080fd5b5051919050565b808201808211156102ff57634e487b7160e01b600052601160045260246000fd5b600060208284031215610c9c57600080fd5b81518015158114610bdc57600080fdfea26469706673582212203855f52bfc3087f10fd1a99da7f7c6e671587720ce449cbfba26a7d5ad9ddf7d64736f6c63430008110033

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

000000000000000000000000009a8670e74e1dda3e449e93a9308e5977949967

-----Decoded View---------------
Arg [0] : HexBearAddress (address): 0x009a8670E74E1dda3E449E93A9308e5977949967

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000009a8670e74e1dda3e449e93a9308e5977949967


Deployed Bytecode Sourcemap

18101:1285:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7309:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9660:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:1;;1162:22;1144:41;;1132:2;1117:18;9660:201:0;1004:187:1;18505:579:0;;;:::i;:::-;;8429:108;8517:12;;8429:108;;;1342:25:1;;;1330:2;1315:18;8429:108:0;1196:177:1;10441:295:0;;;;;;:::i;:::-;;:::i;8271:93::-;;;8354:2;1853:36:1;;1841:2;1826:18;8271:93:0;1711:184:1;11145:238:0;;;;;;:::i;:::-;;:::i;18136:20::-;;;;;-1:-1:-1;;;;;18136:20:0;;;;;;-1:-1:-1;;;;;2077:32:1;;;2059:51;;2047:2;2032:18;18136:20:0;1900:216:1;18163:44:0;;18200:7;18163:44;;8600:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8701:18:0;8674:7;8701:18;;;;;;;;;;;;8600:127;7528:104;;;:::i;11886:436::-;;;;;;:::i;:::-;;:::i;19096:279::-;;;;;;:::i;:::-;;:::i;8933:193::-;;;;;;:::i;:::-;;:::i;18214:42::-;;18249:7;18214:42;;9189:151;;;;;;:::i;:::-;;:::i;7309:100::-;7363:13;7396:5;7389:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7309:100;:::o;9660:201::-;9743:4;1908:10;9799:32;1908:10;9815:7;9824:6;9799:8;:32::i;:::-;9849:4;9842:11;;;9660:201;;;;;:::o;18505:579::-;18567:7;;:29;;-1:-1:-1;;;18567:29:0;;18585:10;18567:29;;;2059:51:1;18541:23:0;;-1:-1:-1;;;;;18567:7:0;;:17;;2032:18:1;;18567:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18541:55;;18617:25;18631:10;18617:13;:25::i;:::-;18609:34;;;;;;18683:1;18662:18;:22;18654:56;;;;-1:-1:-1;;;18654:56:0;;3561:2:1;18654:56:0;;;3543:21:1;3600:2;3580:18;;;3573:30;-1:-1:-1;;;3619:18:1;;;3612:51;3680:18;;18654:56:0;;;;;;;;;18743:7;;:44;;-1:-1:-1;;;18743:44:0;;18761:10;18743:44;;;3921:34:1;18781:4:0;3971:18:1;;;3964:43;18723:17:0;;-1:-1:-1;;;;;18743:7:0;;:17;;3856:18:1;;18743:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18723:64;-1:-1:-1;18893:26:0;18249:7;18893:15;:26;:::i;:::-;18879:10;18866:24;;;;:12;:24;;;;;;;:53;;;;18932:7;;:56;;-1:-1:-1;;;18932:56:0;;;;;4871:34:1;;;;18973:4:0;4921:18:1;;;4914:43;18980:7:0;4973:18:1;;;4966:34;-1:-1:-1;;;;;18932:7:0;;;;:20;;4806:18:1;;18932:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;19000:29;19006:10;18200:7;19000:5;:29::i;:::-;19046:28;;;19051:10;5467:51:1;;18200:7:0;5549:2:1;5534:18;;5527:34;19046:28:0;;5440:18:1;19046:28:0;;;;;;;18528:556;;18505:579::o;10441:295::-;10572:4;1908:10;10630:38;10646:4;1908:10;10661:6;10630:15;:38::i;:::-;10679:27;10689:4;10695:2;10699:6;10679:9;:27::i;:::-;-1:-1:-1;10724:4:0;;10441:295;-1:-1:-1;;;;10441:295:0:o;11145:238::-;11233:4;1908:10;11289:64;1908:10;11305:7;11342:10;11314:25;1908:10;11305:7;11314:9;:25::i;:::-;:38;;;;:::i;:::-;11289:8;:64::i;7528:104::-;7584:13;7617:7;7610:14;;;;;:::i;11886:436::-;11979:4;1908:10;11979:4;12062:25;1908:10;12079:7;12062:9;:25::i;:::-;12035:52;;12126:15;12106:16;:35;;12098:85;;;;-1:-1:-1;;;12098:85:0;;5774:2:1;12098:85:0;;;5756:21:1;5813:2;5793:18;;;5786:30;5852:34;5832:18;;;5825:62;-1:-1:-1;;;5903:18:1;;;5896:35;5948:19;;12098:85:0;5572:401:1;12098:85:0;12219:60;12228:5;12235:7;12263:15;12244:16;:34;12219:8;:60::i;19096:279::-;-1:-1:-1;;;;;19178:22:0;;19158:4;19178:22;;;:12;:22;;;;;;:27;;19175:160;;-1:-1:-1;19229:4:0;;19096:279;-1:-1:-1;19096:279:0:o;19175:160::-;-1:-1:-1;;;;;19273:22:0;;;;;;:12;:22;;;;;;19254:15;:41;19251:84;;-1:-1:-1;19319:4:0;;19096:279;-1:-1:-1;19096:279:0:o;19251:84::-;-1:-1:-1;19352:5:0;;19096:279;-1:-1:-1;19096:279:0:o;8933:193::-;9012:4;1908:10;9068:28;1908:10;9085:2;9089:6;9068:9;:28::i;9189:151::-;-1:-1:-1;;;;;9305:18:0;;;9278:7;9305:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9189:151::o;15511:380::-;-1:-1:-1;;;;;15647:19:0;;15639:68;;;;-1:-1:-1;;;15639:68:0;;6180:2:1;15639:68:0;;;6162:21:1;6219:2;6199:18;;;6192:30;6258:34;6238:18;;;6231:62;-1:-1:-1;;;6309:18:1;;;6302:34;6353:19;;15639:68:0;5978:400:1;15639:68:0;-1:-1:-1;;;;;15726:21:0;;15718:68;;;;-1:-1:-1;;;15718:68:0;;6585:2:1;15718:68:0;;;6567:21:1;6624:2;6604:18;;;6597:30;6663:34;6643:18;;;6636:62;-1:-1:-1;;;6714:18:1;;;6707:32;6756:19;;15718:68:0;6383:398:1;15718:68:0;-1:-1:-1;;;;;15799:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15851:32;;1342:25:1;;;15851:32:0;;1315:18:1;15851:32:0;;;;;;;15511:380;;;:::o;13750:399::-;-1:-1:-1;;;;;13834:21:0;;13826:65;;;;-1:-1:-1;;;13826:65:0;;6988:2:1;13826:65:0;;;6970:21:1;7027:2;7007:18;;;7000:30;7066:33;7046:18;;;7039:61;7117:18;;13826:65:0;6786:355:1;13826:65:0;13982:6;13966:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13999:18:0;;:9;:18;;;;;;;;;;:28;;14021:6;;13999:9;:28;;14021:6;;13999:28;:::i;:::-;;;;-1:-1:-1;;14043:37:0;;1342:25:1;;;-1:-1:-1;;;;;14043:37:0;;;14060:1;;14043:37;;1330:2:1;1315:18;14043:37:0;;;;;;;13750:399;;:::o;16182:453::-;16317:24;16344:25;16354:5;16361:7;16344:9;:25::i;:::-;16317:52;;-1:-1:-1;;16384:16:0;:37;16380:248;;16466:6;16446:16;:26;;16438:68;;;;-1:-1:-1;;;16438:68:0;;7348:2:1;16438:68:0;;;7330:21:1;7387:2;7367:18;;;7360:30;7426:31;7406:18;;;7399:59;7475:18;;16438:68:0;7146:353:1;16438:68:0;16550:51;16559:5;16566:7;16594:6;16575:16;:25;16550:8;:51::i;:::-;16306:329;16182:453;;;:::o;12792:671::-;-1:-1:-1;;;;;12923:18:0;;12915:68;;;;-1:-1:-1;;;12915:68:0;;7706:2:1;12915:68:0;;;7688:21:1;7745:2;7725:18;;;7718:30;7784:34;7764:18;;;7757:62;-1:-1:-1;;;7835:18:1;;;7828:35;7880:19;;12915:68:0;7504:401:1;12915:68:0;-1:-1:-1;;;;;13002:16:0;;12994:64;;;;-1:-1:-1;;;12994:64:0;;8112:2:1;12994:64:0;;;8094:21:1;8151:2;8131:18;;;8124:30;8190:34;8170:18;;;8163:62;-1:-1:-1;;;8241:18:1;;;8234:33;8284:19;;12994:64:0;7910:399:1;12994:64:0;-1:-1:-1;;;;;13144:15:0;;13122:19;13144:15;;;;;;;;;;;13178:21;;;;13170:72;;;;-1:-1:-1;;;13170:72:0;;8516:2:1;13170:72:0;;;8498:21:1;8555:2;8535:18;;;8528:30;8594:34;8574:18;;;8567:62;-1:-1:-1;;;8645:18:1;;;8638:36;8691:19;;13170:72:0;8314:402:1;13170:72:0;-1:-1:-1;;;;;13278:15:0;;;:9;:15;;;;;;;;;;;13296:20;;;13278:38;;13338:13;;;;;;;;:23;;13310:6;;13278:9;13338:23;;13310:6;;13338:23;:::i;:::-;;;;;;;;13394:2;-1:-1:-1;;;;;13379:26:0;13388:4;-1:-1:-1;;;;;13379:26:0;;13398:6;13379:26;;;;1342:25:1;;1330:2;1315:18;;1196:177;13379:26:0;;;;;;;;13418:37;17235:125;14:548:1;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:1;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:1:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;2121:186::-;2180:6;2233:2;2221:9;2212:7;2208:23;2204:32;2201:52;;;2249:1;2246;2239:12;2201:52;2272:29;2291:9;2272:29;:::i;:::-;2262:39;2121:186;-1:-1:-1;;;2121:186:1:o;2312:260::-;2380:6;2388;2441:2;2429:9;2420:7;2416:23;2412:32;2409:52;;;2457:1;2454;2447:12;2409:52;2480:29;2499:9;2480:29;:::i;:::-;2470:39;;2528:38;2562:2;2551:9;2547:18;2528:38;:::i;:::-;2518:48;;2312:260;;;;;:::o;2577:380::-;2656:1;2652:12;;;;2699;;;2720:61;;2774:4;2766:6;2762:17;2752:27;;2720:61;2827:2;2819:6;2816:14;2796:18;2793:38;2790:161;;2873:10;2868:3;2864:20;2861:1;2854:31;2908:4;2905:1;2898:15;2936:4;2933:1;2926:15;2790:161;;2577:380;;;:::o;3170:184::-;3240:6;3293:2;3281:9;3272:7;3268:23;3264:32;3261:52;;;3309:1;3306;3299:12;3261:52;-1:-1:-1;3332:16:1;;3170:184;-1:-1:-1;3170:184:1:o;4375:222::-;4440:9;;;4461:10;;;4458:133;;;4513:10;4508:3;4504:20;4501:1;4494:31;4548:4;4545:1;4538:15;4576:4;4573:1;4566:15;5011:277;5078:6;5131:2;5119:9;5110:7;5106:23;5102:32;5099:52;;;5147:1;5144;5137:12;5099:52;5179:9;5173:16;5232:5;5225:13;5218:21;5211:5;5208:32;5198:60;;5254:1;5251;5244:12

Swarm Source

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