ETH Price: $2,940.39 (-4.15%)
Gas: 1 Gwei

Token

Sad Bears Club Ink (INK)
 

Overview

Max Total Supply

11,839.554282407407407388 INK

Holders

20

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
280.516493055555555554 INK

Value
$0.00
0xF380ED92ECA580C4D78B5678348389C82772BD61
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:
InkToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-02
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

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


// OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

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

// 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/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/token/ERC20/ERC20.sol


// OpenZeppelin Contracts v4.4.1 (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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(_msgSender(), spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(
        address sender,
        address recipient,
        uint256 amount
    ) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


// OpenZeppelin Contracts v4.4.1 (security/Pausable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing 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: contracts/Ink.sol


pragma solidity ^0.8.0;





contract InkToken is ERC20, Ownable, Pausable {

    uint256 constant public MAX_SUPPLY = 132407400 ether; 
	uint256 constant public INTERVAL = 86400; 
    uint256 constant public NFTReward = 5;

	mapping(address => uint256) private lastUpdate; // record when user interacts with contract

	IERC721Enumerable public NFTContract;  

	event RewardPaid(address indexed user, uint256 reward); 
 
    constructor(address NFTContractAddress) ERC20("Sad Bears Club Ink", "INK") {

        NFTContract = IERC721Enumerable(NFTContractAddress);
        pause();
    }

    /* * * * * * * * * * * * * * * OWNER ONLY FUNCTIONS * * * * * * * * * * * * * * */

    // stop users from interacting with the contract
    function pause() public onlyOwner { 

        _pause(); 
    }

    // allow users to interact with contract
    function unpause() public onlyOwner { 

        _unpause(); 
    } 

    /* * * * * * * * * * * * * * * GASLESS GET FUNCTIONS * * * * * * * * * * * * * * */

    // returns the last timestamp user interacted with the contract
    // needs to be non zero in order to claimReward (call startEarningRent)
    function getLastUpdate(address user) external view returns(uint256) {
        
        return lastUpdate[user];
    }

    // return the number of SBC NFTs user owns
    function getNFTBalance(address user) public view returns (uint256) {

        return NFTContract.balanceOf(user);
    }

    // returns the entire reward a user will recieve when they claim
    function getPendingReward(address user) public view returns(uint256) { 
        // (block.timestamp - lastUpdate[user]) / INTERVAL = number of days
        // getNFTBalance(user) * NFTReward = cumulative daily reward for user
        // 1 ether = 1000000000000000000
        return (getNFTBalance(user) * NFTReward) * (1 ether * (block.timestamp - lastUpdate[user])) / INTERVAL;
    }

    /* * * * * * * * * * * * * * * USER GAS FUNCTIONS * * * * * * * * * * * * * * */

    // called on transfers, mint, burn by nft contract
	function updateReward(address from, address to) external {
		require(msg.sender == address(NFTContract), "Only SBC contract can call this function");
        uint256 time = block.timestamp;

        // pay out final rewards to previous holder
        if (from != address(0)) { 

            pay(from, getPendingReward(from));
            
            if (getNFTBalance(from) > 1) { // determine wether NFT sender will have any left after transfer
                lastUpdate[from] = time;
            } else {
                lastUpdate[from] = 0;
            }
            
        }
        // pay out pending rewards to NFT reciever
        if (to != address(0)) { 

            if (lastUpdate[to] > 0) {

                pay(to, getPendingReward(to));
            }
            lastUpdate[to] = time;
        }
	}

    // pay out the holder
    function claimReward() external whenNotPaused { 
        require(totalSupply() < MAX_SUPPLY, "INK collection is over"); // INK earned will not be claimable after max INK has been minted
        require(getNFTBalance(msg.sender) > 0, "You must own a SBC NFT to claim rewards");
        require(lastUpdate[msg.sender] != 0, "ERROR, rewards not updating properly"); 
 
        uint256 currentReward = getPendingReward(msg.sender);

        pay(msg.sender, currentReward);

        lastUpdate[msg.sender] = block.timestamp; 
    }

    /* * * * * * * * * * * * * * * INTERNAL HELPER FUNCTIONS * * * * * * * * * * * * * * */
    
    // mints the user appropriate amount of tokens
    function pay(address user, uint256 reward) internal {

        if (totalSupply() + reward <= MAX_SUPPLY) { // make sure claim does not exceed total supply

            _mint(user, reward); // erc20 mint updates totalSupply

        } else { // supply + rewards > max supply, so give claimer less rewards 
            reward = MAX_SUPPLY - totalSupply();
            _mint(user, reward);
        }

        emit RewardPaid(user, reward);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"NFTContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"INTERVAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTContract","outputs":[{"internalType":"contract IERC721Enumerable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"NFTReward","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":"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":"claimReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getLastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNFTBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getPendingReward","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"updateReward","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620016dd380380620016dd833981016040819052620000349162000316565b6040518060400160405280601281526020017153616420426561727320436c756220496e6b60701b81525060405180604001604052806003815260200162494e4b60e81b81525081600390805190602001906200009392919062000270565b508051620000a990600490602084019062000270565b505050620000c6620000c0620000ff60201b60201c565b62000103565b6005805460ff60a01b19169055600780546001600160a01b0319166001600160a01b038316179055620000f862000155565b5062000385565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001b55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b620001bf620001c1565b565b620001d5600554600160a01b900460ff1690565b15620002175760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401620001ac565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620002533390565b6040516001600160a01b03909116815260200160405180910390a1565b8280546200027e9062000348565b90600052602060002090601f016020900481019282620002a25760008555620002ed565b82601f10620002bd57805160ff1916838001178555620002ed565b82800160010185558215620002ed579182015b82811115620002ed578251825591602001919060010190620002d0565b50620002fb929150620002ff565b5090565b5b80821115620002fb576000815560010162000300565b6000602082840312156200032957600080fd5b81516001600160a01b03811681146200034157600080fd5b9392505050565b600181811c908216806200035d57607f821691505b602082108114156200037f57634e487b7160e01b600052602260045260246000fd5b50919050565b61134880620003956000396000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063c203db5711610071578063c203db571461034d578063d230af3a14610355578063dd62ed3e14610368578063f2fde38b146103a157600080fd5b8063a9059cbb1461031f578063b88a802f14610332578063bf8ebd851461033a57600080fd5b8063715018a6146102d95780638456cb59146102e157806389facb20146102e95780638da5cb5b146102f357806395d89b4114610304578063a457c2d71461030c57600080fd5b806332cb6b0c1161014b5780634df9d6ba116101255780634df9d6ba146102625780635a7e1989146102755780635c975abb1461029e57806370a08231146102b057600080fd5b806332cb6b0c1461023357806339509351146102455780633f4ba83a1461025857600080fd5b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d457806323b872dd146101e6578063313ce567146101f957806331c2273b14610208575b600080fd5b61019b6103b4565b6040516101a891906111c7565b60405180910390f35b6101c46101bf366004611184565b610446565b60405190151581526020016101a8565b6002545b6040519081526020016101a8565b6101c46101f4366004611148565b61045c565b604051601281526020016101a8565b60075461021b906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b6101d86a6d865b896268d180a0000081565b6101c4610253366004611184565b61050b565b610260610547565b005b6101d86102703660046110f3565b61057b565b6101d86102833660046110f3565b6001600160a01b031660009081526006602052604090205490565b600554600160a01b900460ff166101c4565b6101d86102be3660046110f3565b6001600160a01b031660009081526020819052604090205490565b6102606105e4565b610260610618565b6101d86201518081565b6005546001600160a01b031661021b565b61019b61064a565b6101c461031a366004611184565b610659565b6101c461032d366004611184565b6106f2565b6102606106ff565b6101d86103483660046110f3565b6108a3565b6101d8600581565b610260610363366004611115565b610921565b6101d8610376366004611115565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102606103af3660046110f3565b610a54565b6060600380546103c3906112c1565b80601f01602080910402602001604051908101604052809291908181526020018280546103ef906112c1565b801561043c5780601f106104115761010080835404028352916020019161043c565b820191906000526020600020905b81548152906001019060200180831161041f57829003601f168201915b5050505050905090565b6000610453338484610aef565b50600192915050565b6000610469848484610c13565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104f35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105008533858403610aef565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610453918590610542908690611251565b610aef565b6005546001600160a01b031633146105715760405162461bcd60e51b81526004016104ea9061121c565b610579610de2565b565b6001600160a01b03811660009081526006602052604081205462015180906105a390426112aa565b6105b590670de0b6b3a764000061128b565b60056105c0856108a3565b6105ca919061128b565b6105d4919061128b565b6105de9190611269565b92915050565b6005546001600160a01b0316331461060e5760405162461bcd60e51b81526004016104ea9061121c565b6105796000610e7f565b6005546001600160a01b031633146106425760405162461bcd60e51b81526004016104ea9061121c565b610579610ed1565b6060600480546103c3906112c1565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ea565b6106e83385858403610aef565b5060019392505050565b6000610453338484610c13565b600554600160a01b900460ff161561074c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016104ea565b6a6d865b896268d180a0000061076160025490565b106107a75760405162461bcd60e51b815260206004820152601660248201527524a7259031b7b63632b1ba34b7b71034b99037bb32b960511b60448201526064016104ea565b60006107b2336108a3565b1161080f5760405162461bcd60e51b815260206004820152602760248201527f596f75206d757374206f776e206120534243204e465420746f20636c61696d206044820152667265776172647360c81b60648201526084016104ea565b336000908152600660205260409020546108775760405162461bcd60e51b8152602060048201526024808201527f4552524f522c2072657761726473206e6f74207570646174696e672070726f7060448201526365726c7960e01b60648201526084016104ea565b60006108823361057b565b905061088e3382610f59565b50336000908152600660205260409020429055565b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b1580156108e957600080fd5b505afa1580156108fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105de91906111ae565b6007546001600160a01b0316331461098c5760405162461bcd60e51b815260206004820152602860248201527f4f6e6c792053424320636f6e74726163742063616e2063616c6c207468697320604482015267333ab731ba34b7b760c11b60648201526084016104ea565b426001600160a01b038316156109f9576109ae836109a98561057b565b610f59565b60016109b9846108a3565b11156109df576001600160a01b03831660009081526006602052604090208190556109f9565b6001600160a01b0383166000908152600660205260408120555b6001600160a01b03821615610a4f576001600160a01b03821660009081526006602052604090205415610a3357610a33826109a98461057b565b6001600160a01b03821660009081526006602052604090208190555b505050565b6005546001600160a01b03163314610a7e5760405162461bcd60e51b81526004016104ea9061121c565b6001600160a01b038116610ae35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ea565b610aec81610e7f565b50565b6001600160a01b038316610b515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ea565b6001600160a01b038216610bb25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ea565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ea565b6001600160a01b038216610cd95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ea565b6001600160a01b03831660009081526020819052604090205481811015610d515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ea565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d88908490611251565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dd491815260200190565b60405180910390a350505050565b600554600160a01b900460ff16610e325760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104ea565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff1615610f1e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016104ea565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e623390565b6a6d865b896268d180a0000081610f6f60025490565b610f799190611251565b11610f8d57610f888282610ff8565b610fb1565b600254610fa5906a6d865b896268d180a000006112aa565b9050610fb18282610ff8565b816001600160a01b03167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051610fec91815260200190565b60405180910390a25050565b6001600160a01b03821661104e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ea565b80600260008282546110609190611251565b90915550506001600160a01b0382166000908152602081905260408120805483929061108d908490611251565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b03811681146110ee57600080fd5b919050565b60006020828403121561110557600080fd5b61110e826110d7565b9392505050565b6000806040838503121561112857600080fd5b611131836110d7565b915061113f602084016110d7565b90509250929050565b60008060006060848603121561115d57600080fd5b611166846110d7565b9250611174602085016110d7565b9150604084013590509250925092565b6000806040838503121561119757600080fd5b6111a0836110d7565b946020939093013593505050565b6000602082840312156111c057600080fd5b5051919050565b600060208083528351808285015260005b818110156111f4578581018301518582016040015282016111d8565b81811115611206576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611264576112646112fc565b500190565b60008261128657634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156112a5576112a56112fc565b500290565b6000828210156112bc576112bc6112fc565b500390565b600181811c908216806112d557607f821691505b602082108114156112f657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d24da1ce72b30c93a926f2dd99833b9896ece56379b921cb3f7f85ad630766c164736f6c63430008070033000000000000000000000000c9cd2873f00fbd4520077b2113336be7603b9a90

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061018e5760003560e01c8063715018a6116100de578063a9059cbb11610097578063c203db5711610071578063c203db571461034d578063d230af3a14610355578063dd62ed3e14610368578063f2fde38b146103a157600080fd5b8063a9059cbb1461031f578063b88a802f14610332578063bf8ebd851461033a57600080fd5b8063715018a6146102d95780638456cb59146102e157806389facb20146102e95780638da5cb5b146102f357806395d89b4114610304578063a457c2d71461030c57600080fd5b806332cb6b0c1161014b5780634df9d6ba116101255780634df9d6ba146102625780635a7e1989146102755780635c975abb1461029e57806370a08231146102b057600080fd5b806332cb6b0c1461023357806339509351146102455780633f4ba83a1461025857600080fd5b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d457806323b872dd146101e6578063313ce567146101f957806331c2273b14610208575b600080fd5b61019b6103b4565b6040516101a891906111c7565b60405180910390f35b6101c46101bf366004611184565b610446565b60405190151581526020016101a8565b6002545b6040519081526020016101a8565b6101c46101f4366004611148565b61045c565b604051601281526020016101a8565b60075461021b906001600160a01b031681565b6040516001600160a01b0390911681526020016101a8565b6101d86a6d865b896268d180a0000081565b6101c4610253366004611184565b61050b565b610260610547565b005b6101d86102703660046110f3565b61057b565b6101d86102833660046110f3565b6001600160a01b031660009081526006602052604090205490565b600554600160a01b900460ff166101c4565b6101d86102be3660046110f3565b6001600160a01b031660009081526020819052604090205490565b6102606105e4565b610260610618565b6101d86201518081565b6005546001600160a01b031661021b565b61019b61064a565b6101c461031a366004611184565b610659565b6101c461032d366004611184565b6106f2565b6102606106ff565b6101d86103483660046110f3565b6108a3565b6101d8600581565b610260610363366004611115565b610921565b6101d8610376366004611115565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6102606103af3660046110f3565b610a54565b6060600380546103c3906112c1565b80601f01602080910402602001604051908101604052809291908181526020018280546103ef906112c1565b801561043c5780601f106104115761010080835404028352916020019161043c565b820191906000526020600020905b81548152906001019060200180831161041f57829003601f168201915b5050505050905090565b6000610453338484610aef565b50600192915050565b6000610469848484610c13565b6001600160a01b0384166000908152600160209081526040808320338452909152902054828110156104f35760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6105008533858403610aef565b506001949350505050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610453918590610542908690611251565b610aef565b6005546001600160a01b031633146105715760405162461bcd60e51b81526004016104ea9061121c565b610579610de2565b565b6001600160a01b03811660009081526006602052604081205462015180906105a390426112aa565b6105b590670de0b6b3a764000061128b565b60056105c0856108a3565b6105ca919061128b565b6105d4919061128b565b6105de9190611269565b92915050565b6005546001600160a01b0316331461060e5760405162461bcd60e51b81526004016104ea9061121c565b6105796000610e7f565b6005546001600160a01b031633146106425760405162461bcd60e51b81526004016104ea9061121c565b610579610ed1565b6060600480546103c3906112c1565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156106db5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104ea565b6106e83385858403610aef565b5060019392505050565b6000610453338484610c13565b600554600160a01b900460ff161561074c5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016104ea565b6a6d865b896268d180a0000061076160025490565b106107a75760405162461bcd60e51b815260206004820152601660248201527524a7259031b7b63632b1ba34b7b71034b99037bb32b960511b60448201526064016104ea565b60006107b2336108a3565b1161080f5760405162461bcd60e51b815260206004820152602760248201527f596f75206d757374206f776e206120534243204e465420746f20636c61696d206044820152667265776172647360c81b60648201526084016104ea565b336000908152600660205260409020546108775760405162461bcd60e51b8152602060048201526024808201527f4552524f522c2072657761726473206e6f74207570646174696e672070726f7060448201526365726c7960e01b60648201526084016104ea565b60006108823361057b565b905061088e3382610f59565b50336000908152600660205260409020429055565b6007546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a082319060240160206040518083038186803b1580156108e957600080fd5b505afa1580156108fd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105de91906111ae565b6007546001600160a01b0316331461098c5760405162461bcd60e51b815260206004820152602860248201527f4f6e6c792053424320636f6e74726163742063616e2063616c6c207468697320604482015267333ab731ba34b7b760c11b60648201526084016104ea565b426001600160a01b038316156109f9576109ae836109a98561057b565b610f59565b60016109b9846108a3565b11156109df576001600160a01b03831660009081526006602052604090208190556109f9565b6001600160a01b0383166000908152600660205260408120555b6001600160a01b03821615610a4f576001600160a01b03821660009081526006602052604090205415610a3357610a33826109a98461057b565b6001600160a01b03821660009081526006602052604090208190555b505050565b6005546001600160a01b03163314610a7e5760405162461bcd60e51b81526004016104ea9061121c565b6001600160a01b038116610ae35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104ea565b610aec81610e7f565b50565b6001600160a01b038316610b515760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104ea565b6001600160a01b038216610bb25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104ea565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038316610c775760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104ea565b6001600160a01b038216610cd95760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104ea565b6001600160a01b03831660009081526020819052604090205481811015610d515760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104ea565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290610d88908490611251565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dd491815260200190565b60405180910390a350505050565b600554600160a01b900460ff16610e325760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104ea565b6005805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600554600160a01b900460ff1615610f1e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016104ea565b6005805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610e623390565b6a6d865b896268d180a0000081610f6f60025490565b610f799190611251565b11610f8d57610f888282610ff8565b610fb1565b600254610fa5906a6d865b896268d180a000006112aa565b9050610fb18282610ff8565b816001600160a01b03167fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e048682604051610fec91815260200190565b60405180910390a25050565b6001600160a01b03821661104e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016104ea565b80600260008282546110609190611251565b90915550506001600160a01b0382166000908152602081905260408120805483929061108d908490611251565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b03811681146110ee57600080fd5b919050565b60006020828403121561110557600080fd5b61110e826110d7565b9392505050565b6000806040838503121561112857600080fd5b611131836110d7565b915061113f602084016110d7565b90509250929050565b60008060006060848603121561115d57600080fd5b611166846110d7565b9250611174602085016110d7565b9150604084013590509250925092565b6000806040838503121561119757600080fd5b6111a0836110d7565b946020939093013593505050565b6000602082840312156111c057600080fd5b5051919050565b600060208083528351808285015260005b818110156111f4578581018301518582016040015282016111d8565b81811115611206576000604083870101525b50601f01601f1916929092016040019392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611264576112646112fc565b500190565b60008261128657634e487b7160e01b600052601260045260246000fd5b500490565b60008160001904831182151516156112a5576112a56112fc565b500290565b6000828210156112bc576112bc6112fc565b500390565b600181811c908216806112d557607f821691505b602082108114156112f657634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220d24da1ce72b30c93a926f2dd99833b9896ece56379b921cb3f7f85ad630766c164736f6c63430008070033

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

000000000000000000000000c9cd2873f00fbd4520077b2113336be7603b9a90

-----Decoded View---------------
Arg [0] : NFTContractAddress (address): 0xc9Cd2873f00fbD4520077B2113336be7603b9A90

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


Deployed Bytecode Sourcemap

28412:4101:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13536:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15703:169;;;;;;:::i;:::-;;:::i;:::-;;;1802:14:1;;1795:22;1777:41;;1765:2;1750:18;15703:169:0;1637:187:1;14656:108:0;14744:12;;14656:108;;;9045:25:1;;;9033:2;9018:18;14656:108:0;8899:177:1;16354:492:0;;;;;;:::i;:::-;;:::i;14498:93::-;;;14581:2;9223:36:1;;9211:2;9196:18;14498:93:0;9081:184:1;28711:36:0;;;;;-1:-1:-1;;;;;28711:36:0;;;;;;-1:-1:-1;;;;;1593:32:1;;;1575:51;;1563:2;1548:18;28711:36:0;1429:203:1;28467:52:0;;28504:15;28467:52;;17255:215;;;;;;:::i;:::-;;:::i;29256:69::-;;;:::i;:::-;;29947:389;;;;;;:::i;:::-;;:::i;29571:120::-;;;;;;:::i;:::-;-1:-1:-1;;;;;29667:16:0;29630:7;29667:16;;;:10;:16;;;;;;;29571:120;24629:86;24700:7;;-1:-1:-1;;;24700:7:0;;;;24629:86;;14827:127;;;;;;:::i;:::-;-1:-1:-1;;;;;14928:18:0;14901:7;14928:18;;;;;;;;;;;;14827:127;27528:103;;;:::i;29137:65::-;;;:::i;28524:40::-;;28559:5;28524:40;;26877:87;26950:6;;-1:-1:-1;;;;;26950:6:0;26877:87;;13755:104;;;:::i;17973:413::-;;;;;;:::i;:::-;;:::i;15167:175::-;;;;;;:::i;:::-;;:::i;31361:536::-;;;:::i;29747:122::-;;;;;;:::i;:::-;;:::i;28572:37::-;;28608:1;28572:37;;30485:841;;;;;;:::i;:::-;;:::i;15405:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;15521:18:0;;;15494:7;15521:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;15405:151;27786:201;;;;;;:::i;:::-;;:::i;13536:100::-;13590:13;13623:5;13616:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13536:100;:::o;15703:169::-;15786:4;15803:39;11271:10;15826:7;15835:6;15803:8;:39::i;:::-;-1:-1:-1;15860:4:0;15703:169;;;;:::o;16354:492::-;16494:4;16511:36;16521:6;16529:9;16540:6;16511:9;:36::i;:::-;-1:-1:-1;;;;;16587:19:0;;16560:24;16587:19;;;:11;:19;;;;;;;;11271:10;16587:33;;;;;;;;16639:26;;;;16631:79;;;;-1:-1:-1;;;16631:79:0;;6345:2:1;16631:79:0;;;6327:21:1;6384:2;6364:18;;;6357:30;6423:34;6403:18;;;6396:62;-1:-1:-1;;;6474:18:1;;;6467:38;6522:19;;16631:79:0;;;;;;;;;16746:57;16755:6;11271:10;16796:6;16777:16;:25;16746:8;:57::i;:::-;-1:-1:-1;16834:4:0;;16354:492;-1:-1:-1;;;;16354:492:0:o;17255:215::-;11271:10;17343:4;17392:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;17392:34:0;;;;;;;;;;17343:4;;17360:80;;17383:7;;17392:47;;17429:10;;17392:47;:::i;:::-;17360:8;:80::i;29256:69::-;26950:6;;-1:-1:-1;;;;;26950:6:0;11271:10;27097:23;27089:68;;;;-1:-1:-1;;;27089:68:0;;;;;;;:::i;:::-;29306:10:::1;:8;:10::i;:::-;29256:69::o:0;29947:389::-;-1:-1:-1;;;;;30299:16:0;;30007:7;30299:16;;;:10;:16;;;;;;28559:5;;30281:34;;:15;:34;:::i;:::-;30270:46;;:7;:46;:::i;:::-;28608:1;30234:19;30248:4;30234:13;:19::i;:::-;:31;;;;:::i;:::-;30233:84;;;;:::i;:::-;:95;;;;:::i;:::-;30226:102;29947:389;-1:-1:-1;;29947:389:0:o;27528:103::-;26950:6;;-1:-1:-1;;;;;26950:6:0;11271:10;27097:23;27089:68;;;;-1:-1:-1;;;27089:68:0;;;;;;;:::i;:::-;27593:30:::1;27620:1;27593:18;:30::i;29137:65::-:0;26950:6;;-1:-1:-1;;;;;26950:6:0;11271:10;27097:23;27089:68;;;;-1:-1:-1;;;27089:68:0;;;;;;;:::i;:::-;29185:8:::1;:6;:8::i;13755:104::-:0;13811:13;13844:7;13837:14;;;;;:::i;17973:413::-;11271:10;18066:4;18110:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;18110:34:0;;;;;;;;;;18163:35;;;;18155:85;;;;-1:-1:-1;;;18155:85:0;;7926:2:1;18155:85:0;;;7908:21:1;7965:2;7945:18;;;7938:30;8004:34;7984:18;;;7977:62;-1:-1:-1;;;8055:18:1;;;8048:35;8100:19;;18155:85:0;7724:401:1;18155:85:0;18276:67;11271:10;18299:7;18327:15;18308:16;:34;18276:8;:67::i;:::-;-1:-1:-1;18374:4:0;;17973:413;-1:-1:-1;;;17973:413:0:o;15167:175::-;15253:4;15270:42;11271:10;15294:9;15305:6;15270:9;:42::i;31361:536::-;24700:7;;-1:-1:-1;;;24700:7:0;;;;24954:9;24946:38;;;;-1:-1:-1;;;24946:38:0;;5595:2:1;24946:38:0;;;5577:21:1;5634:2;5614:18;;;5607:30;-1:-1:-1;;;5653:18:1;;;5646:46;5709:18;;24946:38:0;5393:340:1;24946:38:0;28504:15:::1;31427:13;14744:12:::0;;;14656:108;31427:13:::1;:26;31419:61;;;::::0;-1:-1:-1;;;31419:61:0;;5244:2:1;31419:61:0::1;::::0;::::1;5226:21:1::0;5283:2;5263:18;;;5256:30;-1:-1:-1;;;5302:18:1;;;5295:52;5364:18;;31419:61:0::1;5042:346:1::0;31419:61:0::1;31593:1;31565:25;31579:10;31565:13;:25::i;:::-;:29;31557:81;;;::::0;-1:-1:-1;;;31557:81:0;;4429:2:1;31557:81:0::1;::::0;::::1;4411:21:1::0;4468:2;4448:18;;;4441:30;4507:34;4487:18;;;4480:62;-1:-1:-1;;;4558:18:1;;;4551:37;4605:19;;31557:81:0::1;4227:403:1::0;31557:81:0::1;31668:10;31657:22;::::0;;;:10:::1;:22;::::0;;;;;31649:76:::1;;;::::0;-1:-1:-1;;;31649:76:0;;5940:2:1;31649:76:0::1;::::0;::::1;5922:21:1::0;5979:2;5959:18;;;5952:30;6018:34;5998:18;;;5991:62;-1:-1:-1;;;6069:18:1;;;6062:34;6113:19;;31649:76:0::1;5738:400:1::0;31649:76:0::1;31740:21;31764:28;31781:10;31764:16;:28::i;:::-;31740:52;;31805:30;31809:10;31821:13;31805:3;:30::i;:::-;-1:-1:-1::0;31859:10:0::1;31848:22;::::0;;;:10:::1;:22;::::0;;;;31873:15:::1;31848:40:::0;;31361:536::o;29747:122::-;29834:11;;:27;;-1:-1:-1;;;29834:27:0;;-1:-1:-1;;;;;1593:32:1;;;29834:27:0;;;1575:51:1;29805:7:0;;29834:11;;:21;;1548:18:1;;29834:27:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;30485:841::-;30577:11;;-1:-1:-1;;;;;30577:11:0;30555:10;:34;30547:87;;;;-1:-1:-1;;;30547:87:0;;8332:2:1;30547:87:0;;;8314:21:1;8371:2;8351:18;;;8344:30;8410:34;8390:18;;;8383:62;-1:-1:-1;;;8461:18:1;;;8454:38;8509:19;;30547:87:0;8130:404:1;30547:87:0;30660:15;-1:-1:-1;;;;;30745:18:0;;;30741:342;;30783:33;30787:4;30793:22;30810:4;30793:16;:22::i;:::-;30783:3;:33::i;:::-;30871:1;30849:19;30863:4;30849:13;:19::i;:::-;:23;30845:213;;;-1:-1:-1;;;;;30958:16:0;;;;;;:10;:16;;;;;:23;;;30845:213;;;-1:-1:-1;;;;;31022:16:0;;31041:1;31022:16;;;:10;:16;;;;;:20;30845:213;-1:-1:-1;;;;;31149:16:0;;;31145:177;;-1:-1:-1;;;;;31189:14:0;;31206:1;31189:14;;;:10;:14;;;;;;:18;31185:90;;31230:29;31234:2;31238:20;31255:2;31238:16;:20::i;31230:29::-;-1:-1:-1;;;;;31289:14:0;;;;;;:10;:14;;;;;:21;;;31145:177;30542:784;30485:841;;:::o;27786:201::-;26950:6;;-1:-1:-1;;;;;26950:6:0;11271:10;27097:23;27089:68;;;;-1:-1:-1;;;27089:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27875:22:0;::::1;27867:73;;;::::0;-1:-1:-1;;;27867:73:0;;3619:2:1;27867:73:0::1;::::0;::::1;3601:21:1::0;3658:2;3638:18;;;3631:30;3697:34;3677:18;;;3670:62;-1:-1:-1;;;3748:18:1;;;3741:36;3794:19;;27867:73:0::1;3417:402:1::0;27867:73:0::1;27951:28;27970:8;27951:18;:28::i;:::-;27786:201:::0;:::o;21657:380::-;-1:-1:-1;;;;;21793:19:0;;21785:68;;;;-1:-1:-1;;;21785:68:0;;7521:2:1;21785:68:0;;;7503:21:1;7560:2;7540:18;;;7533:30;7599:34;7579:18;;;7572:62;-1:-1:-1;;;7650:18:1;;;7643:34;7694:19;;21785:68:0;7319:400:1;21785:68:0;-1:-1:-1;;;;;21872:21:0;;21864:68;;;;-1:-1:-1;;;21864:68:0;;4026:2:1;21864:68:0;;;4008:21:1;4065:2;4045:18;;;4038:30;4104:34;4084:18;;;4077:62;-1:-1:-1;;;4155:18:1;;;4148:32;4197:19;;21864:68:0;3824:398:1;21864:68:0;-1:-1:-1;;;;;21945:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;21997:32;;9045:25:1;;;21997:32:0;;9018:18:1;21997:32:0;;;;;;;21657:380;;;:::o;18876:733::-;-1:-1:-1;;;;;19016:20:0;;19008:70;;;;-1:-1:-1;;;19008:70:0;;7115:2:1;19008:70:0;;;7097:21:1;7154:2;7134:18;;;7127:30;7193:34;7173:18;;;7166:62;-1:-1:-1;;;7244:18:1;;;7237:35;7289:19;;19008:70:0;6913:401:1;19008:70:0;-1:-1:-1;;;;;19097:23:0;;19089:71;;;;-1:-1:-1;;;19089:71:0;;2866:2:1;19089:71:0;;;2848:21:1;2905:2;2885:18;;;2878:30;2944:34;2924:18;;;2917:62;-1:-1:-1;;;2995:18:1;;;2988:33;3038:19;;19089:71:0;2664:399:1;19089:71:0;-1:-1:-1;;;;;19257:17:0;;19233:21;19257:17;;;;;;;;;;;19293:23;;;;19285:74;;;;-1:-1:-1;;;19285:74:0;;4837:2:1;19285:74:0;;;4819:21:1;4876:2;4856:18;;;4849:30;4915:34;4895:18;;;4888:62;-1:-1:-1;;;4966:18:1;;;4959:36;5012:19;;19285:74:0;4635:402:1;19285:74:0;-1:-1:-1;;;;;19395:17:0;;;:9;:17;;;;;;;;;;;19415:22;;;19395:42;;19459:20;;;;;;;;:30;;19431:6;;19395:9;19459:30;;19431:6;;19459:30;:::i;:::-;;;;;;;;19524:9;-1:-1:-1;;;;;19507:35:0;19516:6;-1:-1:-1;;;;;19507:35:0;;19535:6;19507:35;;;;9045:25:1;;9033:2;9018:18;;8899:177;19507:35:0;;;;;;;;18997:612;18876:733;;;:::o;25688:120::-;24700:7;;-1:-1:-1;;;24700:7:0;;;;25224:41;;;;-1:-1:-1;;;25224:41:0;;3270:2:1;25224:41:0;;;3252:21:1;3309:2;3289:18;;;3282:30;-1:-1:-1;;;3328:18:1;;;3321:50;3388:18;;25224:41:0;3068:344:1;25224:41:0;25747:7:::1;:15:::0;;-1:-1:-1;;;;25747:15:0::1;::::0;;25778:22:::1;11271:10:::0;25787:12:::1;25778:22;::::0;-1:-1:-1;;;;;1593:32:1;;;1575:51;;1563:2;1548:18;25778:22:0::1;;;;;;;25688:120::o:0;28147:191::-;28240:6;;;-1:-1:-1;;;;;28257:17:0;;;-1:-1:-1;;;;;;28257:17:0;;;;;;;28290:40;;28240:6;;;28257:17;28240:6;;28290:40;;28221:16;;28290:40;28210:128;28147:191;:::o;25429:118::-;24700:7;;-1:-1:-1;;;24700:7:0;;;;24954:9;24946:38;;;;-1:-1:-1;;;24946:38:0;;5595:2:1;24946:38:0;;;5577:21:1;5634:2;5614:18;;;5607:30;-1:-1:-1;;;5653:18:1;;;5646:46;5709:18;;24946:38:0;5393:340:1;24946:38:0;25489:7:::1;:14:::0;;-1:-1:-1;;;;25489:14:0::1;-1:-1:-1::0;;;25489:14:0::1;::::0;;25519:20:::1;25526:12;11271:10:::0;;11191:98;32056:454;28504:15;32141:6;32125:13;14744:12;;;14656:108;32125:13;:22;;;;:::i;:::-;:36;32121:340;;32228:19;32234:4;32240:6;32228:5;:19::i;:::-;32121:340;;;14744:12;;32389:26;;28504:15;32389:26;:::i;:::-;32380:35;;32430:19;32436:4;32442:6;32430:5;:19::i;:::-;32489:4;-1:-1:-1;;;;;32478:24:0;;32495:6;32478:24;;;;9045:25:1;;9033:2;9018:18;;8899:177;32478:24:0;;;;;;;;32056:454;;:::o;19896:399::-;-1:-1:-1;;;;;19980:21:0;;19972:65;;;;-1:-1:-1;;;19972:65:0;;8741:2:1;19972:65:0;;;8723:21:1;8780:2;8760:18;;;8753:30;8819:33;8799:18;;;8792:61;8870:18;;19972:65:0;8539:355:1;19972:65:0;20128:6;20112:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;20145:18:0;;:9;:18;;;;;;;;;;:28;;20167:6;;20145:9;:28;;20167:6;;20145:28;:::i;:::-;;;;-1:-1:-1;;20189:37:0;;9045:25:1;;;-1:-1:-1;;;;;20189:37:0;;;20206:1;;20189:37;;9033:2:1;9018:18;20189:37:0;;;;;;;19896:399;;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:184::-;1310:6;1363:2;1351:9;1342:7;1338:23;1334:32;1331:52;;;1379:1;1376;1369:12;1331:52;-1:-1:-1;1402:16:1;;1240:184;-1:-1:-1;1240:184:1:o;2062:597::-;2174:4;2203:2;2232;2221:9;2214:21;2264:6;2258:13;2307:6;2302:2;2291:9;2287:18;2280:34;2332:1;2342:140;2356:6;2353:1;2350:13;2342:140;;;2451:14;;;2447:23;;2441:30;2417:17;;;2436:2;2413:26;2406:66;2371:10;;2342:140;;;2500:6;2497:1;2494:13;2491:91;;;2570:1;2565:2;2556:6;2545:9;2541:22;2537:31;2530:42;2491:91;-1:-1:-1;2643:2:1;2622:15;-1:-1:-1;;2618:29:1;2603:45;;;;2650:2;2599:54;;2062:597;-1:-1:-1;;;2062:597:1:o;6552:356::-;6754:2;6736:21;;;6773:18;;;6766:30;6832:34;6827:2;6812:18;;6805:62;6899:2;6884:18;;6552:356::o;9270:128::-;9310:3;9341:1;9337:6;9334:1;9331:13;9328:39;;;9347:18;;:::i;:::-;-1:-1:-1;9383:9:1;;9270:128::o;9403:217::-;9443:1;9469;9459:132;;9513:10;9508:3;9504:20;9501:1;9494:31;9548:4;9545:1;9538:15;9576:4;9573:1;9566:15;9459:132;-1:-1:-1;9605:9:1;;9403:217::o;9625:168::-;9665:7;9731:1;9727;9723:6;9719:14;9716:1;9713:21;9708:1;9701:9;9694:17;9690:45;9687:71;;;9738:18;;:::i;:::-;-1:-1:-1;9778:9:1;;9625:168::o;9798:125::-;9838:4;9866:1;9863;9860:8;9857:34;;;9871:18;;:::i;:::-;-1:-1:-1;9908:9:1;;9798:125::o;9928:380::-;10007:1;10003:12;;;;10050;;;10071:61;;10125:4;10117:6;10113:17;10103:27;;10071:61;10178:2;10170:6;10167:14;10147:18;10144:38;10141:161;;;10224:10;10219:3;10215:20;10212:1;10205:31;10259:4;10256:1;10249:15;10287:4;10284:1;10277:15;10141:161;;9928:380;;;:::o;10313:127::-;10374:10;10369:3;10365:20;10362:1;10355:31;10405:4;10402:1;10395:15;10429:4;10426:1;10419:15

Swarm Source

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