ETH Price: $2,218.64 (-0.69%)
 

Overview

Max Total Supply

888,807,383.859972 SKOOP

Holders

20

Transfers

-
40 ( -21.57%)

Market

Price

$0.00 @ 0.000000 ETH

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 6 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information

Contract Source Code Verified (Exact Match)

Contract Name:
SKOOPToken

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2026-03-16
*/

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


// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/IERC20.sol)

pragma solidity >=0.4.16;

/**
 * @dev Interface of the ERC-20 standard as defined in the ERC.
 */
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 value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

    /**
     * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool);

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to` using the
     * allowance mechanism. `value` 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 value) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v5.4.0) (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity >=0.6.2;


/**
 * @dev Interface for the optional metadata functions from the ERC-20 standard.
 */
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/utils/Context.sol


// OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol)

pragma solidity ^0.8.20;

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

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: @openzeppelin/contracts/interfaces/draft-IERC6093.sol


// OpenZeppelin Contracts (last updated v5.5.0) (interfaces/draft-IERC6093.sol)

pragma solidity >=0.8.4;

/**
 * @dev Standard ERC-20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-20 tokens.
 */
interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}

/**
 * @dev Standard ERC-721 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-721 tokens.
 */
interface IERC721Errors {
    /**
     * @dev Indicates that an address can't be an owner. For example, `address(0)` is a forbidden owner in ERC-721.
     * Used in balance queries.
     * @param owner Address of the current owner of a token.
     */
    error ERC721InvalidOwner(address owner);

    /**
     * @dev Indicates a `tokenId` whose `owner` is the zero address.
     * @param tokenId Identifier number of a token.
     */
    error ERC721NonexistentToken(uint256 tokenId);

    /**
     * @dev Indicates an error related to the ownership over a particular token. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param tokenId Identifier number of a token.
     * @param owner Address of the current owner of a token.
     */
    error ERC721IncorrectOwner(address sender, uint256 tokenId, address owner);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC721InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC721InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param tokenId Identifier number of a token.
     */
    error ERC721InsufficientApproval(address operator, uint256 tokenId);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC721InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC721InvalidOperator(address operator);
}

/**
 * @dev Standard ERC-1155 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC-1155 tokens.
 */
interface IERC1155Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     * @param tokenId Identifier number of a token.
     */
    error ERC1155InsufficientBalance(address sender, uint256 balance, uint256 needed, uint256 tokenId);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC1155InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC1155InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `operator`’s approval. Used in transfers.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     * @param owner Address of the current owner of a token.
     */
    error ERC1155MissingApprovalForAll(address operator, address owner);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC1155InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `operator` to be approved. Used in approvals.
     * @param operator Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC1155InvalidOperator(address operator);

    /**
     * @dev Indicates an array length mismatch between ids and values in a safeBatchTransferFrom operation.
     * Used in batch transfers.
     * @param idsLength Length of the array of token identifiers
     * @param valuesLength Length of the array of token amounts
     */
    error ERC1155InvalidArrayLength(uint256 idsLength, uint256 valuesLength);
}

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


// OpenZeppelin Contracts (last updated v5.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.20;





/**
 * @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}.
 *
 * 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 ERC-20
 * applications.
 */
abstract contract ERC20 is Context, IERC20, IERC20Metadata, IERC20Errors {
    mapping(address account => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * Both 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 returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 returns (uint8) {
        return 18;
    }

    /// @inheritdoc IERC20
    function totalSupply() public view virtual returns (uint256) {
        return _totalSupply;
    }

    /// @inheritdoc IERC20
    function balanceOf(address account) public view virtual 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 `value`.
     */
    function transfer(address to, uint256 value) public virtual returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }

    /// @inheritdoc IERC20
    function allowance(address owner, address spender) public view virtual returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `value` 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 value) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Skips emitting an {Approval} event indicating an allowance update. This is not
     * required by the ERC. See {xref-ERC20-_approve-address-address-uint256-bool-}[_approve].
     *
     * 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 `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address from, address to, uint256 value) public virtual returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, value);
        _transfer(from, to, value);
        return true;
    }

    /**
     * @dev Moves a `value` 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.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address from, address to, uint256 value) internal {
        if (from == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (to == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(from, to, value);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal virtual {
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` 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.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation sets the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the `transferFrom` operation can force the flag to
     * true using the following override:
     *
     * ```solidity
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal virtual {
        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner`'s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance < type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.20;



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

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

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


// OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol)

pragma solidity ^0.8.20;


/**
 * @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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @dev The caller account is not authorized to perform an operation.
     */
    error OwnableUnauthorizedAccount(address account);

    /**
     * @dev The owner is not a valid owner account. (eg. `address(0)`)
     */
    error OwnableInvalidOwner(address owner);

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

    /**
     * @dev Initializes the contract setting the address provided by the deployer as the initial owner.
     */
    constructor(address initialOwner) {
        if (initialOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _transferOwnership(initialOwner);
    }

    /**
     * @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 {
        if (owner() != _msgSender()) {
            revert OwnableUnauthorizedAccount(_msgSender());
        }
    }

    /**
     * @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 {
        if (newOwner == address(0)) {
            revert OwnableInvalidOwner(address(0));
        }
        _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: SKOOPToken.sol


pragma solidity ^0.8.24;

/*
 * KOKOS Ice Cream
 * https://kokosicecream.com
 *
 * SKOOP token
 * - Standard ERC-20
 * - Fixed supply
 * - No transfer tax
 * - No post-deploy minting
 * - 6 decimals
 */




contract SKOOPToken is ERC20, ERC20Burnable, Ownable {
    uint8 private constant TOKEN_DECIMALS = 6;
    uint256 public constant MAX_SUPPLY = 888_888_888 * 10 ** TOKEN_DECIMALS;

    error ZeroAddress();

    constructor(
        address initialRecipient,
        address initialOwner
    ) ERC20("KOKOS SKOOPS", "SKOOP") Ownable(initialOwner) {
        if (initialRecipient == address(0) || initialOwner == address(0)) {
            revert ZeroAddress();
        }

        _mint(initialRecipient, MAX_SUPPLY);
    }

    function decimals() public pure override returns (uint8) {
        return TOKEN_DECIMALS;
    }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"initialRecipient","type":"address"},{"internalType":"address","name":"initialOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[],"name":"ZeroAddress","type":"error"},{"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":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","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":"value","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":"value","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"}]

608060405234801562000010575f80fd5b5060405162002040380380620020408339818101604052810190620000369190620005fc565b806040518060400160405280600c81526020017f4b4f4b4f5320534b4f4f505300000000000000000000000000000000000000008152506040518060400160405280600581526020017f534b4f4f500000000000000000000000000000000000000000000000000000008152508160039081620000b49190620008a5565b508060049081620000c69190620008a5565b5050505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036200013c575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016200013391906200099a565b60405180910390fd5b6200014d816200022660201b60201c565b505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161480620001b457505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16145b15620001ec576040517fd92e233d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6200021e826006600a62000201919062000b3e565b6334fb5e3862000212919062000b8e565b620002e960201b60201c565b505062000c79565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200035c575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016200035391906200099a565b60405180910390fd5b6200036f5f83836200037360201b60201c565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603620003c7578060025f828254620003ba919062000bd8565b9250508190555062000498565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101562000453578381836040517fe450d38c0000000000000000000000000000000000000000000000000000000081526004016200044a9392919062000c23565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620004e1578060025f82825403925050819055506200052b565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200058a919062000c5e565b60405180910390a3505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620005c6826200059b565b9050919050565b620005d881620005ba565b8114620005e3575f80fd5b50565b5f81519050620005f681620005cd565b92915050565b5f806040838503121562000615576200061462000597565b5b5f6200062485828601620005e6565b92505060206200063785828601620005e6565b9150509250929050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006bd57607f821691505b602082108103620006d357620006d262000678565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620007377fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006fa565b620007438683620006fa565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200078d6200078762000781846200075b565b62000764565b6200075b565b9050919050565b5f819050919050565b620007a8836200076d565b620007c0620007b78262000794565b84845462000706565b825550505050565b5f90565b620007d6620007c8565b620007e38184846200079d565b505050565b5b818110156200080a57620007fe5f82620007cc565b600181019050620007e9565b5050565b601f82111562000859576200082381620006d9565b6200082e84620006eb565b810160208510156200083e578190505b620008566200084d85620006eb565b830182620007e8565b50505b505050565b5f82821c905092915050565b5f6200087b5f19846008026200085e565b1980831691505092915050565b5f6200089583836200086a565b9150826002028217905092915050565b620008b08262000641565b67ffffffffffffffff811115620008cc57620008cb6200064b565b5b620008d88254620006a5565b620008e58282856200080e565b5f60209050601f8311600181146200091b575f841562000906578287015190505b62000912858262000888565b86555062000981565b601f1984166200092b86620006d9565b5f5b8281101562000954578489015182556001820191506020850194506020810190506200092d565b8683101562000974578489015162000970601f8916826200086a565b8355505b6001600288020188555050505b505050505050565b6200099481620005ba565b82525050565b5f602082019050620009af5f83018462000989565b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b600185111562000a3f5780860481111562000a175762000a16620009b5565b5b600185161562000a275780820291505b808102905062000a3785620009e2565b9450620009f7565b94509492505050565b5f8262000a59576001905062000b2b565b8162000a68575f905062000b2b565b816001811462000a81576002811462000a8c5762000ac2565b600191505062000b2b565b60ff84111562000aa15762000aa0620009b5565b5b8360020a91508482111562000abb5762000aba620009b5565b5b5062000b2b565b5060208310610133831016604e8410600b841016171562000afc5782820a90508381111562000af65762000af5620009b5565b5b62000b2b565b62000b0b8484846001620009ee565b9250905081840481111562000b255762000b24620009b5565b5b81810290505b9392505050565b5f60ff82169050919050565b5f62000b4a826200075b565b915062000b578362000b32565b925062000b867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a48565b905092915050565b5f62000b9a826200075b565b915062000ba7836200075b565b925082820262000bb7816200075b565b9150828204841483151762000bd15762000bd0620009b5565b5b5092915050565b5f62000be4826200075b565b915062000bf1836200075b565b925082820190508082111562000c0c5762000c0b620009b5565b5b92915050565b62000c1d816200075b565b82525050565b5f60608201905062000c385f83018662000989565b62000c47602083018562000c12565b62000c56604083018462000c12565b949350505050565b5f60208201905062000c735f83018462000c12565b92915050565b6113b98062000c875f395ff3fe608060405234801561000f575f80fd5b50600436106100f3575f3560e01c806370a082311161009557806395d89b411161006457806395d89b411461025f578063a9059cbb1461027d578063dd62ed3e146102ad578063f2fde38b146102dd576100f3565b806370a08231146101eb578063715018a61461021b57806379cc6790146102255780638da5cb5b14610241576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806332cb6b0c146101b157806342966c68146101cf576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff6102f9565b60405161010c9190610e4d565b60405180910390f35b61012f600480360381019061012a9190610efe565b610389565b60405161013c9190610f56565b60405180910390f35b61014d6103ab565b60405161015a9190610f7e565b60405180910390f35b61017d60048036038101906101789190610f97565b6103b4565b60405161018a9190610f56565b60405180910390f35b61019b6103e2565b6040516101a89190611002565b60405180910390f35b6101b96103ea565b6040516101c69190610f7e565b60405180910390f35b6101e960048036038101906101e4919061101b565b61040a565b005b61020560048036038101906102009190611046565b61041e565b6040516102129190610f7e565b60405180910390f35b610223610463565b005b61023f600480360381019061023a9190610efe565b610476565b005b610249610496565b6040516102569190611080565b60405180910390f35b6102676104be565b6040516102749190610e4d565b60405180910390f35b61029760048036038101906102929190610efe565b61054e565b6040516102a49190610f56565b60405180910390f35b6102c760048036038101906102c29190611099565b610570565b6040516102d49190610f7e565b60405180910390f35b6102f760048036038101906102f29190611046565b6105f2565b005b60606003805461030890611104565b80601f016020809104026020016040519081016040528092919081815260200182805461033490611104565b801561037f5780601f106103565761010080835404028352916020019161037f565b820191905f5260205f20905b81548152906001019060200180831161036257829003601f168201915b5050505050905090565b5f80610393610676565b90506103a081858561067d565b600191505092915050565b5f600254905090565b5f806103be610676565b90506103cb85828561068f565b6103d6858585610722565b60019150509392505050565b5f6006905090565b6006600a6103f89190611290565b6334fb5e3861040791906112da565b81565b61041b610415610676565b82610812565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61046b610891565b6104745f610918565b565b61048882610482610676565b8361068f565b6104928282610812565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104cd90611104565b80601f01602080910402602001604051908101604052809291908181526020018280546104f990611104565b80156105445780601f1061051b57610100808354040283529160200191610544565b820191905f5260205f20905b81548152906001019060200180831161052757829003601f168201915b5050505050905090565b5f80610558610676565b9050610565818585610722565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105fa610891565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361066a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106619190611080565b60405180910390fd5b61067381610918565b50565b5f33905090565b61068a83838360016109db565b505050565b5f61069a8484610570565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561071c578181101561070d578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107049392919061131b565b60405180910390fd5b61071b84848484035f6109db565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610792575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107899190611080565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610802575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107f99190611080565b60405180910390fd5b61080d838383610baa565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610882575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108799190611080565b60405180910390fd5b61088d825f83610baa565b5050565b610899610676565b73ffffffffffffffffffffffffffffffffffffffff166108b7610496565b73ffffffffffffffffffffffffffffffffffffffff1614610916576108da610676565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161090d9190611080565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a4b575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a429190611080565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ab29190611080565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ba4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b9b9190610f7e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfa578060025f828254610bee9190611350565b92505081905550610cc8565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c83578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c7a9392919061131b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0f578060025f8282540392505081905550610d59565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db69190610f7e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610dfa578082015181840152602081019050610ddf565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e1f82610dc3565b610e298185610dcd565b9350610e39818560208601610ddd565b610e4281610e05565b840191505092915050565b5f6020820190508181035f830152610e658184610e15565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e9a82610e71565b9050919050565b610eaa81610e90565b8114610eb4575f80fd5b50565b5f81359050610ec581610ea1565b92915050565b5f819050919050565b610edd81610ecb565b8114610ee7575f80fd5b50565b5f81359050610ef881610ed4565b92915050565b5f8060408385031215610f1457610f13610e6d565b5b5f610f2185828601610eb7565b9250506020610f3285828601610eea565b9150509250929050565b5f8115159050919050565b610f5081610f3c565b82525050565b5f602082019050610f695f830184610f47565b92915050565b610f7881610ecb565b82525050565b5f602082019050610f915f830184610f6f565b92915050565b5f805f60608486031215610fae57610fad610e6d565b5b5f610fbb86828701610eb7565b9350506020610fcc86828701610eb7565b9250506040610fdd86828701610eea565b9150509250925092565b5f60ff82169050919050565b610ffc81610fe7565b82525050565b5f6020820190506110155f830184610ff3565b92915050565b5f602082840312156110305761102f610e6d565b5b5f61103d84828501610eea565b91505092915050565b5f6020828403121561105b5761105a610e6d565b5b5f61106884828501610eb7565b91505092915050565b61107a81610e90565b82525050565b5f6020820190506110935f830184611071565b92915050565b5f80604083850312156110af576110ae610e6d565b5b5f6110bc85828601610eb7565b92505060206110cd85828601610eb7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061111b57607f821691505b60208210810361112e5761112d6110d7565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156111b65780860481111561119257611191611134565b5b60018516156111a15780820291505b80810290506111af85611161565b9450611176565b94509492505050565b5f826111ce5760019050611289565b816111db575f9050611289565b81600181146111f157600281146111fb5761122a565b6001915050611289565b60ff84111561120d5761120c611134565b5b8360020a91508482111561122457611223611134565b5b50611289565b5060208310610133831016604e8410600b841016171561125f5782820a90508381111561125a57611259611134565b5b611289565b61126c848484600161116d565b9250905081840481111561128357611282611134565b5b81810290505b9392505050565b5f61129a82610ecb565b91506112a583610fe7565b92506112d27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846111bf565b905092915050565b5f6112e482610ecb565b91506112ef83610ecb565b92508282026112fd81610ecb565b9150828204841483151761131457611313611134565b5b5092915050565b5f60608201905061132e5f830186611071565b61133b6020830185610f6f565b6113486040830184610f6f565b949350505050565b5f61135a82610ecb565b915061136583610ecb565b925082820190508082111561137d5761137c611134565b5b9291505056fea26469706673582212205b3ecfefce920a122ec88573773e9b9fb63b61cc0bf8823319977ccc36d4d2fa64736f6c63430008180033000000000000000000000000001b3fb36fe7e3a741a15ed8be68610442e3a50b000000000000000000000000001b3fb36fe7e3a741a15ed8be68610442e3a50b

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106100f3575f3560e01c806370a082311161009557806395d89b411161006457806395d89b411461025f578063a9059cbb1461027d578063dd62ed3e146102ad578063f2fde38b146102dd576100f3565b806370a08231146101eb578063715018a61461021b57806379cc6790146102255780638da5cb5b14610241576100f3565b806323b872dd116100d157806323b872dd14610163578063313ce5671461019357806332cb6b0c146101b157806342966c68146101cf576100f3565b806306fdde03146100f7578063095ea7b31461011557806318160ddd14610145575b5f80fd5b6100ff6102f9565b60405161010c9190610e4d565b60405180910390f35b61012f600480360381019061012a9190610efe565b610389565b60405161013c9190610f56565b60405180910390f35b61014d6103ab565b60405161015a9190610f7e565b60405180910390f35b61017d60048036038101906101789190610f97565b6103b4565b60405161018a9190610f56565b60405180910390f35b61019b6103e2565b6040516101a89190611002565b60405180910390f35b6101b96103ea565b6040516101c69190610f7e565b60405180910390f35b6101e960048036038101906101e4919061101b565b61040a565b005b61020560048036038101906102009190611046565b61041e565b6040516102129190610f7e565b60405180910390f35b610223610463565b005b61023f600480360381019061023a9190610efe565b610476565b005b610249610496565b6040516102569190611080565b60405180910390f35b6102676104be565b6040516102749190610e4d565b60405180910390f35b61029760048036038101906102929190610efe565b61054e565b6040516102a49190610f56565b60405180910390f35b6102c760048036038101906102c29190611099565b610570565b6040516102d49190610f7e565b60405180910390f35b6102f760048036038101906102f29190611046565b6105f2565b005b60606003805461030890611104565b80601f016020809104026020016040519081016040528092919081815260200182805461033490611104565b801561037f5780601f106103565761010080835404028352916020019161037f565b820191905f5260205f20905b81548152906001019060200180831161036257829003601f168201915b5050505050905090565b5f80610393610676565b90506103a081858561067d565b600191505092915050565b5f600254905090565b5f806103be610676565b90506103cb85828561068f565b6103d6858585610722565b60019150509392505050565b5f6006905090565b6006600a6103f89190611290565b6334fb5e3861040791906112da565b81565b61041b610415610676565b82610812565b50565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b61046b610891565b6104745f610918565b565b61048882610482610676565b8361068f565b6104928282610812565b5050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546104cd90611104565b80601f01602080910402602001604051908101604052809291908181526020018280546104f990611104565b80156105445780601f1061051b57610100808354040283529160200191610544565b820191905f5260205f20905b81548152906001019060200180831161052757829003601f168201915b5050505050905090565b5f80610558610676565b9050610565818585610722565b600191505092915050565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b6105fa610891565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361066a575f6040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081526004016106619190611080565b60405180910390fd5b61067381610918565b50565b5f33905090565b61068a83838360016109db565b505050565b5f61069a8484610570565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81101561071c578181101561070d578281836040517ffb8f41b20000000000000000000000000000000000000000000000000000000081526004016107049392919061131b565b60405180910390fd5b61071b84848484035f6109db565b5b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610792575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016107899190611080565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610802575f6040517fec442f050000000000000000000000000000000000000000000000000000000081526004016107f99190611080565b60405180910390fd5b61080d838383610baa565b505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610882575f6040517f96c6fd1e0000000000000000000000000000000000000000000000000000000081526004016108799190611080565b60405180910390fd5b61088d825f83610baa565b5050565b610899610676565b73ffffffffffffffffffffffffffffffffffffffff166108b7610496565b73ffffffffffffffffffffffffffffffffffffffff1614610916576108da610676565b6040517f118cdaa700000000000000000000000000000000000000000000000000000000815260040161090d9190611080565b60405180910390fd5b565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603610a4b575f6040517fe602df05000000000000000000000000000000000000000000000000000000008152600401610a429190611080565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610abb575f6040517f94280d62000000000000000000000000000000000000000000000000000000008152600401610ab29190611080565b60405180910390fd5b8160015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508015610ba4578273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92584604051610b9b9190610f7e565b60405180910390a35b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610bfa578060025f828254610bee9190611350565b92505081905550610cc8565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015610c83578381836040517fe450d38c000000000000000000000000000000000000000000000000000000008152600401610c7a9392919061131b565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610d0f578060025f8282540392505081905550610d59565b805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055505b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610db69190610f7e565b60405180910390a3505050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015610dfa578082015181840152602081019050610ddf565b5f8484015250505050565b5f601f19601f8301169050919050565b5f610e1f82610dc3565b610e298185610dcd565b9350610e39818560208601610ddd565b610e4281610e05565b840191505092915050565b5f6020820190508181035f830152610e658184610e15565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610e9a82610e71565b9050919050565b610eaa81610e90565b8114610eb4575f80fd5b50565b5f81359050610ec581610ea1565b92915050565b5f819050919050565b610edd81610ecb565b8114610ee7575f80fd5b50565b5f81359050610ef881610ed4565b92915050565b5f8060408385031215610f1457610f13610e6d565b5b5f610f2185828601610eb7565b9250506020610f3285828601610eea565b9150509250929050565b5f8115159050919050565b610f5081610f3c565b82525050565b5f602082019050610f695f830184610f47565b92915050565b610f7881610ecb565b82525050565b5f602082019050610f915f830184610f6f565b92915050565b5f805f60608486031215610fae57610fad610e6d565b5b5f610fbb86828701610eb7565b9350506020610fcc86828701610eb7565b9250506040610fdd86828701610eea565b9150509250925092565b5f60ff82169050919050565b610ffc81610fe7565b82525050565b5f6020820190506110155f830184610ff3565b92915050565b5f602082840312156110305761102f610e6d565b5b5f61103d84828501610eea565b91505092915050565b5f6020828403121561105b5761105a610e6d565b5b5f61106884828501610eb7565b91505092915050565b61107a81610e90565b82525050565b5f6020820190506110935f830184611071565b92915050565b5f80604083850312156110af576110ae610e6d565b5b5f6110bc85828601610eb7565b92505060206110cd85828601610eb7565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061111b57607f821691505b60208210810361112e5761112d6110d7565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b60018511156111b65780860481111561119257611191611134565b5b60018516156111a15780820291505b80810290506111af85611161565b9450611176565b94509492505050565b5f826111ce5760019050611289565b816111db575f9050611289565b81600181146111f157600281146111fb5761122a565b6001915050611289565b60ff84111561120d5761120c611134565b5b8360020a91508482111561122457611223611134565b5b50611289565b5060208310610133831016604e8410600b841016171561125f5782820a90508381111561125a57611259611134565b5b611289565b61126c848484600161116d565b9250905081840481111561128357611282611134565b5b81810290505b9392505050565b5f61129a82610ecb565b91506112a583610fe7565b92506112d27fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846111bf565b905092915050565b5f6112e482610ecb565b91506112ef83610ecb565b92508282026112fd81610ecb565b9150828204841483151761131457611313611134565b5b5092915050565b5f60608201905061132e5f830186611071565b61133b6020830185610f6f565b6113486040830184610f6f565b949350505050565b5f61135a82610ecb565b915061136583610ecb565b925082820190508082111561137d5761137c611134565b5b9291505056fea26469706673582212205b3ecfefce920a122ec88573773e9b9fb63b61cc0bf8823319977ccc36d4d2fa64736f6c63430008180033

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

000000000000000000000000001b3fb36fe7e3a741a15ed8be68610442e3a50b000000000000000000000000001b3fb36fe7e3a741a15ed8be68610442e3a50b

-----Decoded View---------------
Arg [0] : initialRecipient (address): 0x001b3fB36FE7E3a741A15Ed8bE68610442E3a50b
Arg [1] : initialOwner (address): 0x001b3fB36FE7E3a741A15Ed8bE68610442E3a50b

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000001b3fb36fe7e3a741a15ed8be68610442e3a50b
Arg [1] : 000000000000000000000000001b3fb36fe7e3a741a15ed8be68610442e3a50b


Deployed Bytecode Sourcemap

26900:641:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12989:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15199:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14062:99;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15999:249;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27441:97;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27008:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22880:89;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14197:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25811:103;;;:::i;:::-;;23298:161;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25136:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13199:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14520:182;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14738:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26069:220;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12989:91;13034:13;13067:5;13060:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12989:91;:::o;15199:190::-;15272:4;15289:13;15305:12;:10;:12::i;:::-;15289:28;;15328:31;15337:5;15344:7;15353:5;15328:8;:31::i;:::-;15377:4;15370:11;;;15199:190;;;;:::o;14062:99::-;14114:7;14141:12;;14134:19;;14062:99;:::o;15999:249::-;16086:4;16103:15;16121:12;:10;:12::i;:::-;16103:30;;16144:37;16160:4;16166:7;16175:5;16144:15;:37::i;:::-;16192:26;16202:4;16208:2;16212:5;16192:9;:26::i;:::-;16236:4;16229:11;;;15999:249;;;;;:::o;27441:97::-;27491:5;27000:1;27509:21;;27441:97;:::o;27008:71::-;27000:1;27059:2;:20;;;;:::i;:::-;27045:11;:34;;;;:::i;:::-;27008:71;:::o;22880:89::-;22935:26;22941:12;:10;:12::i;:::-;22955:5;22935;:26::i;:::-;22880:89;:::o;14197:118::-;14262:7;14289:9;:18;14299:7;14289:18;;;;;;;;;;;;;;;;14282:25;;14197:118;;;:::o;25811:103::-;25022:13;:11;:13::i;:::-;25876:30:::1;25903:1;25876:18;:30::i;:::-;25811:103::o:0;23298:161::-;23374:45;23390:7;23399:12;:10;:12::i;:::-;23413:5;23374:15;:45::i;:::-;23430:21;23436:7;23445:5;23430;:21::i;:::-;23298:161;;:::o;25136:87::-;25182:7;25209:6;;;;;;;;;;;25202:13;;25136:87;:::o;13199:95::-;13246:13;13279:7;13272:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13199:95;:::o;14520:182::-;14589:4;14606:13;14622:12;:10;:12::i;:::-;14606:28;;14645:27;14655:5;14662:2;14666:5;14645:9;:27::i;:::-;14690:4;14683:11;;;14520:182;;;;:::o;14738:142::-;14818:7;14845:11;:18;14857:5;14845:18;;;;;;;;;;;;;;;:27;14864:7;14845:27;;;;;;;;;;;;;;;;14838:34;;14738:142;;;;:::o;26069:220::-;25022:13;:11;:13::i;:::-;26174:1:::1;26154:22;;:8;:22;;::::0;26150:93:::1;;26228:1;26200:31;;;;;;;;;;;:::i;:::-;;;;;;;;26150:93;26253:28;26272:8;26253:18;:28::i;:::-;26069:220:::0;:::o;4305:98::-;4358:7;4385:10;4378:17;;4305:98;:::o;20058:130::-;20143:37;20152:5;20159:7;20168:5;20175:4;20143:8;:37::i;:::-;20058:130;;;:::o;21792:486::-;21892:24;21919:25;21929:5;21936:7;21919:9;:25::i;:::-;21892:52;;21978:17;21959:16;:36;21955:316;;;22035:5;22016:16;:24;22012:132;;;22095:7;22104:16;22122:5;22068:60;;;;;;;;;;;;;:::i;:::-;;;;;;;;22012:132;22187:57;22196:5;22203:7;22231:5;22212:16;:24;22238:5;22187:8;:57::i;:::-;21955:316;21881:397;21792:486;;;:::o;16633:308::-;16733:1;16717:18;;:4;:18;;;16713:88;;16786:1;16759:30;;;;;;;;;;;:::i;:::-;;;;;;;;16713:88;16829:1;16815:16;;:2;:16;;;16811:88;;16884:1;16855:32;;;;;;;;;;;:::i;:::-;;;;;;;;16811:88;16909:24;16917:4;16923:2;16927:5;16909:7;:24::i;:::-;16633:308;;;:::o;19294:211::-;19384:1;19365:21;;:7;:21;;;19361:91;;19437:1;19410:30;;;;;;;;;;;:::i;:::-;;;;;;;;19361:91;19462:35;19470:7;19487:1;19491:5;19462:7;:35::i;:::-;19294:211;;:::o;25301:166::-;25372:12;:10;:12::i;:::-;25361:23;;:7;:5;:7::i;:::-;:23;;;25357:103;;25435:12;:10;:12::i;:::-;25408:40;;;;;;;;;;;:::i;:::-;;;;;;;;25357:103;25301:166::o;26449:191::-;26523:16;26542:6;;;;;;;;;;;26523:25;;26568:8;26559:6;;:17;;;;;;;;;;;;;;;;;;26623:8;26592:40;;26613:8;26592:40;;;;;;;;;;;;26512:128;26449:191;:::o;21057:443::-;21187:1;21170:19;;:5;:19;;;21166:91;;21242:1;21213:32;;;;;;;;;;;:::i;:::-;;;;;;;;21166:91;21290:1;21271:21;;:7;:21;;;21267:92;;21344:1;21316:31;;;;;;;;;;;:::i;:::-;;;;;;;;21267:92;21399:5;21369:11;:18;21381:5;21369:18;;;;;;;;;;;;;;;:27;21388:7;21369:27;;;;;;;;;;;;;;;:35;;;;21419:9;21415:78;;;21466:7;21450:31;;21459:5;21450:31;;;21475:5;21450:31;;;;;;:::i;:::-;;;;;;;;21415:78;21057:443;;;;:::o;17265:1135::-;17371:1;17355:18;;:4;:18;;;17351:552;;17509:5;17493:12;;:21;;;;;;;:::i;:::-;;;;;;;;17351:552;;;17547:19;17569:9;:15;17579:4;17569:15;;;;;;;;;;;;;;;;17547:37;;17617:5;17603:11;:19;17599:117;;;17675:4;17681:11;17694:5;17650:50;;;;;;;;;;;;;:::i;:::-;;;;;;;;17599:117;17871:5;17857:11;:19;17839:9;:15;17849:4;17839:15;;;;;;;;;;;;;;;:37;;;;17532:371;17351:552;17933:1;17919:16;;:2;:16;;;17915:435;;18101:5;18085:12;;:21;;;;;;;;;;;17915:435;;;18318:5;18301:9;:13;18311:2;18301:13;;;;;;;;;;;;;;;;:22;;;;;;;;;;;17915:435;18382:2;18367:25;;18376:4;18367:25;;;18386:5;18367:25;;;;;;:::i;:::-;;;;;;;;17265:1135;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:86::-;4458:7;4498:4;4491:5;4487:16;4476:27;;4423:86;;;:::o;4515:112::-;4598:22;4614:5;4598:22;:::i;:::-;4593:3;4586:35;4515:112;;:::o;4633:214::-;4722:4;4760:2;4749:9;4745:18;4737:26;;4773:67;4837:1;4826:9;4822:17;4813:6;4773:67;:::i;:::-;4633:214;;;;:::o;4853:329::-;4912:6;4961:2;4949:9;4940:7;4936:23;4932:32;4929:119;;;4967:79;;:::i;:::-;4929:119;5087:1;5112:53;5157:7;5148:6;5137:9;5133:22;5112:53;:::i;:::-;5102:63;;5058:117;4853:329;;;;:::o;5188:::-;5247:6;5296:2;5284:9;5275:7;5271:23;5267:32;5264:119;;;5302:79;;:::i;:::-;5264:119;5422:1;5447:53;5492:7;5483:6;5472:9;5468:22;5447:53;:::i;:::-;5437:63;;5393:117;5188:329;;;;:::o;5523:118::-;5610:24;5628:5;5610:24;:::i;:::-;5605:3;5598:37;5523:118;;:::o;5647:222::-;5740:4;5778:2;5767:9;5763:18;5755:26;;5791:71;5859:1;5848:9;5844:17;5835:6;5791:71;:::i;:::-;5647:222;;;;:::o;5875:474::-;5943:6;5951;6000:2;5988:9;5979:7;5975:23;5971:32;5968:119;;;6006:79;;:::i;:::-;5968:119;6126:1;6151:53;6196:7;6187:6;6176:9;6172:22;6151:53;:::i;:::-;6141:63;;6097:117;6253:2;6279:53;6324:7;6315:6;6304:9;6300:22;6279:53;:::i;:::-;6269:63;;6224:118;5875:474;;;;;:::o;6355:180::-;6403:77;6400:1;6393:88;6500:4;6497:1;6490:15;6524:4;6521:1;6514:15;6541:320;6585:6;6622:1;6616:4;6612:12;6602:22;;6669:1;6663:4;6659:12;6690:18;6680:81;;6746:4;6738:6;6734:17;6724:27;;6680:81;6808:2;6800:6;6797:14;6777:18;6774:38;6771:84;;6827:18;;:::i;:::-;6771:84;6592:269;6541:320;;;:::o;6867:180::-;6915:77;6912:1;6905:88;7012:4;7009:1;7002:15;7036:4;7033:1;7026:15;7053:102;7095:8;7142:5;7139:1;7135:13;7114:34;;7053:102;;;:::o;7161:848::-;7222:5;7229:4;7253:6;7244:15;;7277:5;7268:14;;7291:712;7312:1;7302:8;7299:15;7291:712;;;7407:4;7402:3;7398:14;7392:4;7389:24;7386:50;;;7416:18;;:::i;:::-;7386:50;7466:1;7456:8;7452:16;7449:451;;;7881:4;7874:5;7870:16;7861:25;;7449:451;7931:4;7925;7921:15;7913:23;;7961:32;7984:8;7961:32;:::i;:::-;7949:44;;7291:712;;;7161:848;;;;;;;:::o;8015:1073::-;8069:5;8260:8;8250:40;;8281:1;8272:10;;8283:5;;8250:40;8309:4;8299:36;;8326:1;8317:10;;8328:5;;8299:36;8395:4;8443:1;8438:27;;;;8479:1;8474:191;;;;8388:277;;8438:27;8456:1;8447:10;;8458:5;;;8474:191;8519:3;8509:8;8506:17;8503:43;;;8526:18;;:::i;:::-;8503:43;8575:8;8572:1;8568:16;8559:25;;8610:3;8603:5;8600:14;8597:40;;;8617:18;;:::i;:::-;8597:40;8650:5;;;8388:277;;8774:2;8764:8;8761:16;8755:3;8749:4;8746:13;8742:36;8724:2;8714:8;8711:16;8706:2;8700:4;8697:12;8693:35;8677:111;8674:246;;;8830:8;8824:4;8820:19;8811:28;;8865:3;8858:5;8855:14;8852:40;;;8872:18;;:::i;:::-;8852:40;8905:5;;8674:246;8945:42;8983:3;8973:8;8967:4;8964:1;8945:42;:::i;:::-;8930:57;;;;9019:4;9014:3;9010:14;9003:5;9000:25;8997:51;;;9028:18;;:::i;:::-;8997:51;9077:4;9070:5;9066:16;9057:25;;8015:1073;;;;;;:::o;9094:281::-;9152:5;9176:23;9194:4;9176:23;:::i;:::-;9168:31;;9220:25;9236:8;9220:25;:::i;:::-;9208:37;;9264:104;9301:66;9291:8;9285:4;9264:104;:::i;:::-;9255:113;;9094:281;;;;:::o;9381:410::-;9421:7;9444:20;9462:1;9444:20;:::i;:::-;9439:25;;9478:20;9496:1;9478:20;:::i;:::-;9473:25;;9533:1;9530;9526:9;9555:30;9573:11;9555:30;:::i;:::-;9544:41;;9734:1;9725:7;9721:15;9718:1;9715:22;9695:1;9688:9;9668:83;9645:139;;9764:18;;:::i;:::-;9645:139;9429:362;9381:410;;;;:::o;9797:442::-;9946:4;9984:2;9973:9;9969:18;9961:26;;9997:71;10065:1;10054:9;10050:17;10041:6;9997:71;:::i;:::-;10078:72;10146:2;10135:9;10131:18;10122:6;10078:72;:::i;:::-;10160;10228:2;10217:9;10213:18;10204:6;10160:72;:::i;:::-;9797:442;;;;;;:::o;10245:191::-;10285:3;10304:20;10322:1;10304:20;:::i;:::-;10299:25;;10338:20;10356:1;10338:20;:::i;:::-;10333:25;;10381:1;10378;10374:9;10367:16;;10402:3;10399:1;10396:10;10393:36;;;10409:18;;:::i;:::-;10393:36;10245:191;;;;:::o

Swarm Source

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