ETH Price: $3,088.74 (-0.46%)
Gas: 2 Gwei

Token

Fox Game (FGAME)
 

Overview

Max Total Supply

471 FGAME

Holders

149

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FGAME
0xaf03aaf662b1e0c07e90894453b3d24a34393ee8
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:
FoxGames

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 2021-11-22
*/

///////////////////////////
///////////////////////////    FoxGames
///////////////////////////    MIT licence
///////////////////////////    Discord: https://discord.gg/4unEKYpNxR
///////////////////////////    Many thanks to Wolf Games for the generosity of their licencing!

// SPDX-License-Identifier: MIT LICENSE


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


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

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

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




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

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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"
        );
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



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


//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 {}
}


//Fox.sol


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



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

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

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

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

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(
            address(this).balance >= amount,
            "Address: insufficient balance"
        );

        (bool success, ) = recipient.call{value: amount}("");
        require(
            success,
            "Address: unable to send value, recipient may have reverted"
        );
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return
            functionCallWithValue(
                target,
                data,
                value,
                "Address: low-level call with value failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(
            address(this).balance >= value,
            "Address: insufficient balance for call"
        );
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(
            data
        );
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data)
        internal
        view
        returns (bytes memory)
    {
        return
            functionStaticCall(
                target,
                data,
                "Address: low-level static call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data)
        internal
        returns (bytes memory)
    {
        return
            functionDelegateCall(
                target,
                data,
                "Address: low-level delegate call failed"
            );
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length)
        internal
        pure
        returns (string memory)
    {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

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

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override(ERC165, IERC165)
        returns (bool)
    {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            owner != address(0),
            "ERC721: balance query for the zero address"
        );
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        address owner = _owners[tokenId];
        require(
            owner != address(0),
            "ERC721: owner query for nonexistent token"
        );
        return owner;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        string memory baseURI = _baseURI();
        return
            bytes(baseURI).length > 0
                ? string(abi.encodePacked(baseURI, tokenId.toString()))
                : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        require(
            _exists(tokenId),
            "ERC721: approved query for nonexistent token"
        );

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: transfer caller is not owner nor approved"
        );
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId)
        internal
        view
        virtual
        returns (bool)
    {
        require(
            _exists(tokenId),
            "ERC721: operator query for nonexistent token"
        );
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner ||
            getApproved(tokenId) == spender ||
            isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer of token that is not own"
        );
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try
                IERC721Receiver(to).onERC721Received(
                    _msgSender(),
                    from,
                    tokenId,
                    _data
                )
            returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert(
                        "ERC721: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` 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 tokenId
    ) internal virtual {}
}


//Farm.sol


pragma solidity ^0.8.0;



abstract contract Farm is Ownable, IERC721Receiver, Pausable {
  
  // maximum cunning score for a fox
  uint8 public constant MAX_CUNNING = 8;

  // struct to store a stake's token, owner, and earning values
  struct Stake {
    uint16 tokenId;
    uint80 value;
    address owner;
  }

  event TokenStaked(address owner, uint256 tokenId, uint256 value);
  event SheepClaimed(uint256 tokenId, uint256 earned, bool unstaked);
  event FoxClaimed(uint256 tokenId, uint256 earned, bool unstaked);

 

  // maps tokenId to stake
  mapping(uint256 => Stake) public Farm; 
  // maps cunning to all Fox stakes with that cunning
  mapping(uint256 => Stake[]) public pack; 
  // tracks location of each Fox in Pack
  mapping(uint256 => uint256) public packIndices; 
  // total cunning scores staked
  uint256 public totalCunningStaked = 0; 
  // any rewards distributed when no foxes are staked
  uint256 public unaccountedRewards = 0; 
  // amount of $CARROTZ due for each cunning point staked
  uint256 public carrotzPerCunning = 0; 

  // rabbit earn 10000 $CARROTZ per day
  uint256 public constant DAILY_CARROTZ_RATE = 50 ether;
  // rabbit must have 3 days worth of $CARROTZ to unstake or else it's too cold
  uint256 public constant MINIMUM_TO_EXIT = 3 days;
  // foxes take a 20% tax on all $CARROTZ claimed
  uint256 public constant carrotz_CLAIM_TAX_PERCENTAGE = 25;
  // there will only ever be (roughly) 12 million $CARROTZ earned through staking
  uint256 public constant MAXIMUM_GLOBAL_CARROTZ = 12000000  ether;

  // amount of $CARROTZ earned so far
  uint256 public totalCarrotzEarned;
  // number of rabbit staked in the farm
  uint256 public totalSheepStaked;
  // the last time $CARROTZ was claimed
  uint256 public lastClaimTimestamp;

  // emergency rescue to allow unstaking without any checks but without $CARROTZ
  bool public rescueEnabled = false;

  /**
   * @param _fox reference to the Fox NFT contract
   * @param _carrotz reference to the $CARROTZ token
   */
  
  }



//CARROTZ.sol


pragma solidity ^0.8.0;


contract CARROTZ is ERC20, Ownable {

  // a mapping from an address to whether or not it can mint / burn
  mapping(address => bool) controllers;
  
  constructor() ERC20("CARROTZ", "CARROTZ") { }

  /**
   * mints $CARROTZ to a recipient
   * @param to the recipient of the $CARROTZ
   * @param amount the amount of $CARROTZ to mint
   */
  function mint(address to, uint256 amount) external {
    require(controllers[msg.sender], "Only controllers can mint");
    _mint(to, amount);
  }

  /**
   * burns $CARROTZ from a holder
   * @param from the holder of the $CARROTZ
   * @param amount the amount of $CARROTZ to burn
   */
  function burn(address from, uint256 amount) external {
    require(controllers[msg.sender], "Only controllers can burn");
    _burn(from, amount);
  }

  /**
   * enables an address to mint / burn
   * @param controller the address to enable
   */
  function addController(address controller) external onlyOwner {
    controllers[controller] = true;
  }

  /**
   * disables an address from minting / burning
   * @param controller the address to disbale
   */
  function removeController(address controller) external onlyOwner {
    controllers[controller] = false;
  }
}

 

// File contracts/Fox.sol

contract FoxGames is ERC721, Ownable {
    uint256 public constant PRICE = 0.065 * 1e18;
    uint256 public constant MAX_SUPPLY = 6666;


    bool public live;
    uint256 public minted;
    mapping(address => uint8) public earlyAccess;
    string public baseURI;

    constructor(
        string memory name_,
        string memory symbol_,
        string memory baseURI_
    ) ERC721(name_, symbol_) {
        baseURI = baseURI_;
    }

    function totalSupply() public view virtual returns (uint256) {
        return minted;
    }

    function mint(uint8 amount) public payable {
        require(amount > 0, "Amount must be more than 0");
        require(amount <= 10, "Amount must be 10 or less");
        require(msg.value == PRICE * amount, "Ether value sent is not correct");
        require(
            minted + amount <= MAX_SUPPLY,
            "Sold out!"
        );

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, ++minted);
        }
    }

    function freemint(uint8 amount) public payable {
        require(amount > 0, "Amount must be more than 0");
        require(amount <= 5, "Amount must be 5 or less");
        require(
            minted + amount <= 200,
            "Sold out!"
        );

        for (uint256 i = 0; i < amount; i++) {
            _safeMint(msg.sender, ++minted);
        }
    }

    function withdraw(address payable recipient) public onlyOwner {
        require(address(this).balance > 0, "No contract balance");
        recipient.transfer(address(this).balance);
    }

    function setBaseURI(string memory baseURI_) public onlyOwner {
        baseURI = baseURI_;
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"string","name":"baseURI_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"earlyAccess","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"freemint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"live","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"amount","type":"uint8"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI_","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","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":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"recipient","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620020dd380380620020dd833981016040819052620000349162000252565b8251839083906200004d906000906020850190620000f5565b50805162000063906001906020840190620000f5565b505050620000806200007a6200009f60201b60201c565b620000a3565b805162000095906009906020840190620000f5565b5050505062000336565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200010390620002e3565b90600052602060002090601f01602090048101928262000127576000855562000172565b82601f106200014257805160ff191683800117855562000172565b8280016001018555821562000172579182015b828111156200017257825182559160200191906001019062000155565b506200018092915062000184565b5090565b5b8082111562000180576000815560010162000185565b600082601f830112620001ad57600080fd5b81516001600160401b0380821115620001ca57620001ca62000320565b604051601f8301601f19908116603f01168101908282118183101715620001f557620001f562000320565b816040528381526020925086838588010111156200021257600080fd5b600091505b8382101562000236578582018301518183018401529082019062000217565b83821115620002485760008385830101525b9695505050505050565b6000806000606084860312156200026857600080fd5b83516001600160401b03808211156200028057600080fd5b6200028e878388016200019b565b94506020860151915080821115620002a557600080fd5b620002b3878388016200019b565b93506040860151915080821115620002ca57600080fd5b50620002d9868287016200019b565b9150509250925092565b600181811c90821680620002f857607f821691505b602082108114156200031a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611d9780620003466000396000f3fe60806040526004361061019c5760003560e01c80636ecd2306116100ec578063a22cb4651161008a578063e757d2b511610064578063e757d2b514610469578063e985e9c51461047c578063f04a67ae146104c5578063f2fde38b1461050757600080fd5b8063a22cb46514610409578063b88d4fde14610429578063c87b56dd1461044957600080fd5b80638d859f3e116100c65780638d859f3e1461039a5780638da5cb5b146103b5578063957aa58c146103d357806395d89b41146103f457600080fd5b80636ecd23061461035257806370a0823114610365578063715018a61461038557600080fd5b806332cb6b0c1161015957806351cff8d91161013357806351cff8d9146102dd57806355f804b3146102fd5780636352211e1461031d5780636c0360eb1461033d57600080fd5b806332cb6b0c1461029157806342842e0e146102a75780634f02c420146102c757600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610271575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046119a4565b610527565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610579565b6040516101cd9190611afb565b34801561020457600080fd5b50610218610213366004611a27565b61060b565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611978565b6106a5565b005b34801561025e57600080fd5b506007545b6040519081526020016101cd565b34801561027d57600080fd5b5061025061028c366004611884565b6107bb565b34801561029d57600080fd5b50610263611a0a81565b3480156102b357600080fd5b506102506102c2366004611884565b6107ec565b3480156102d357600080fd5b5061026360075481565b3480156102e957600080fd5b506102506102f836600461182e565b610807565b34801561030957600080fd5b506102506103183660046119de565b6108b0565b34801561032957600080fd5b50610218610338366004611a27565b6108ed565b34801561034957600080fd5b506101eb610964565b610250610360366004611a40565b6109f2565b34801561037157600080fd5b5061026361038036600461182e565b610b86565b34801561039157600080fd5b50610250610c0d565b3480156103a657600080fd5b5061026366e6ed27d666800081565b3480156103c157600080fd5b506006546001600160a01b0316610218565b3480156103df57600080fd5b506006546101c190600160a01b900460ff1681565b34801561040057600080fd5b506101eb610c43565b34801561041557600080fd5b50610250610424366004611945565b610c52565b34801561043557600080fd5b506102506104443660046118c5565b610d17565b34801561045557600080fd5b506101eb610464366004611a27565b610d4f565b610250610477366004611a40565b610e2a565b34801561048857600080fd5b506101c161049736600461184b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104d157600080fd5b506104f56104e036600461182e565b60086020526000908152604090205460ff1681565b60405160ff90911681526020016101cd565b34801561051357600080fd5b5061025061052236600461182e565b610f51565b60006001600160e01b031982166380ac58cd60e01b148061055857506001600160e01b03198216635b5e139f60e01b145b8061057357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461058890611c74565b80601f01602080910402602001604051908101604052809291908181526020018280546105b490611c74565b80156106015780601f106105d657610100808354040283529160200191610601565b820191906000526020600020905b8154815290600101906020018083116105e457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b0826108ed565b9050806001600160a01b0316836001600160a01b0316141561071e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610680565b336001600160a01b038216148061073a575061073a8133610497565b6107ac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610680565b6107b68383610fec565b505050565b6107c5338261105a565b6107e15760405162461bcd60e51b815260040161068090611b95565b6107b6838383611151565b6107b683838360405180602001604052806000815250610d17565b6006546001600160a01b031633146108315760405162461bcd60e51b815260040161068090611b60565b600047116108775760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e74726163742062616c616e636560681b6044820152606401610680565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156108ac573d6000803e3d6000fd5b5050565b6006546001600160a01b031633146108da5760405162461bcd60e51b815260040161068090611b60565b80516108ac90600990602084019061171f565b6000818152600260205260408120546001600160a01b0316806105735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610680565b6009805461097190611c74565b80601f016020809104026020016040519081016040528092919081815260200182805461099d90611c74565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b505050505081565b60008160ff1611610a455760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e20300000000000006044820152606401610680565b600a8160ff161115610a995760405162461bcd60e51b815260206004820152601960248201527f416d6f756e74206d757374206265203130206f72206c657373000000000000006044820152606401610680565b610aad60ff821666e6ed27d6668000611c12565b3414610afb5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610680565b611a0a8160ff16600754610b0f9190611be6565b1115610b495760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610680565b60005b8160ff168110156108ac57610b7433600760008154610b6a90611caf565b91829055506112f1565b80610b7e81611caf565b915050610b4c565b60006001600160a01b038216610bf15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610680565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c375760405162461bcd60e51b815260040161068090611b60565b610c41600061130b565b565b60606001805461058890611c74565b6001600160a01b038216331415610cab5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610680565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d21338361105a565b610d3d5760405162461bcd60e51b815260040161068090611b95565b610d498484848461135d565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610680565b6000610dd8611390565b90506000815111610df85760405180602001604052806000815250610e23565b80610e028461139f565b604051602001610e13929190611a8f565b6040516020818303038152906040525b9392505050565b60008160ff1611610e7d5760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e20300000000000006044820152606401610680565b60058160ff161115610ed15760405162461bcd60e51b815260206004820152601860248201527f416d6f756e74206d7573742062652035206f72206c65737300000000000000006044820152606401610680565b60c88160ff16600754610ee49190611be6565b1115610f1e5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610680565b60005b8160ff168110156108ac57610f3f33600760008154610b6a90611caf565b80610f4981611caf565b915050610f21565b6006546001600160a01b03163314610f7b5760405162461bcd60e51b815260040161068090611b60565b6001600160a01b038116610fe05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610680565b610fe98161130b565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611021826108ed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110d35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610680565b60006110de836108ed565b9050806001600160a01b0316846001600160a01b031614806111195750836001600160a01b031661110e8461060b565b6001600160a01b0316145b8061114957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611164826108ed565b6001600160a01b0316146111cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610680565b6001600160a01b03821661122e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610680565b611239600082610fec565b6001600160a01b0383166000908152600360205260408120805460019290611262908490611c31565b90915550506001600160a01b0382166000908152600360205260408120805460019290611290908490611be6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108ac82826040518060200160405280600081525061149d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611368848484611151565b611374848484846114d0565b610d495760405162461bcd60e51b815260040161068090611b0e565b60606009805461058890611c74565b6060816113c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113ed57806113d781611caf565b91506113e69050600a83611bfe565b91506113c7565b60008167ffffffffffffffff81111561140857611408611d20565b6040519080825280601f01601f191660200182016040528015611432576020820181803683370190505b5090505b841561114957611447600183611c31565b9150611454600a86611cca565b61145f906030611be6565b60f81b81838151811061147457611474611d0a565b60200101906001600160f81b031916908160001a905350611496600a86611bfe565b9450611436565b6114a783836115dd565b6114b460008484846114d0565b6107b65760405162461bcd60e51b815260040161068090611b0e565b60006001600160a01b0384163b156115d257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611514903390899088908890600401611abe565b602060405180830381600087803b15801561152e57600080fd5b505af192505050801561155e575060408051601f3d908101601f1916820190925261155b918101906119c1565b60015b6115b8573d80801561158c576040519150601f19603f3d011682016040523d82523d6000602084013e611591565b606091505b5080516115b05760405162461bcd60e51b815260040161068090611b0e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611149565b506001949350505050565b6001600160a01b0382166116335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610680565b6000818152600260205260409020546001600160a01b0316156116985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610680565b6001600160a01b03821660009081526003602052604081208054600192906116c1908490611be6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461172b90611c74565b90600052602060002090601f01602090048101928261174d5760008555611793565b82601f1061176657805160ff1916838001178555611793565b82800160010185558215611793579182015b82811115611793578251825591602001919060010190611778565b5061179f9291506117a3565b5090565b5b8082111561179f57600081556001016117a4565b600067ffffffffffffffff808411156117d3576117d3611d20565b604051601f8501601f19908116603f011681019082821181831017156117fb576117fb611d20565b8160405280935085815286868601111561181457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561184057600080fd5b8135610e2381611d36565b6000806040838503121561185e57600080fd5b823561186981611d36565b9150602083013561187981611d36565b809150509250929050565b60008060006060848603121561189957600080fd5b83356118a481611d36565b925060208401356118b481611d36565b929592945050506040919091013590565b600080600080608085870312156118db57600080fd5b84356118e681611d36565b935060208501356118f681611d36565b925060408501359150606085013567ffffffffffffffff81111561191957600080fd5b8501601f8101871361192a57600080fd5b611939878235602084016117b8565b91505092959194509250565b6000806040838503121561195857600080fd5b823561196381611d36565b91506020830135801515811461187957600080fd5b6000806040838503121561198b57600080fd5b823561199681611d36565b946020939093013593505050565b6000602082840312156119b657600080fd5b8135610e2381611d4b565b6000602082840312156119d357600080fd5b8151610e2381611d4b565b6000602082840312156119f057600080fd5b813567ffffffffffffffff811115611a0757600080fd5b8201601f81018413611a1857600080fd5b611149848235602084016117b8565b600060208284031215611a3957600080fd5b5035919050565b600060208284031215611a5257600080fd5b813560ff81168114610e2357600080fd5b60008151808452611a7b816020860160208601611c48565b601f01601f19169290920160200192915050565b60008351611aa1818460208801611c48565b835190830190611ab5818360208801611c48565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611af190830184611a63565b9695505050505050565b602081526000610e236020830184611a63565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611bf957611bf9611cde565b500190565b600082611c0d57611c0d611cf4565b500490565b6000816000190483118215151615611c2c57611c2c611cde565b500290565b600082821015611c4357611c43611cde565b500390565b60005b83811015611c63578181015183820152602001611c4b565b83811115610d495750506000910152565b600181811c90821680611c8857607f821691505b60208210811415611ca957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cc357611cc3611cde565b5060010190565b600082611cd957611cd9611cf4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610fe957600080fd5b6001600160e01b031981168114610fe957600080fdfea26469706673582212204848c6e1f6349128d89f4d51661c0225a9df3088f06405db15e422808dc8ce0364736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008466f782047616d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054647414d45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5153647068754570616b7a616a58545a5356503778764262525936795979644643443262314b7838655576732f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061019c5760003560e01c80636ecd2306116100ec578063a22cb4651161008a578063e757d2b511610064578063e757d2b514610469578063e985e9c51461047c578063f04a67ae146104c5578063f2fde38b1461050757600080fd5b8063a22cb46514610409578063b88d4fde14610429578063c87b56dd1461044957600080fd5b80638d859f3e116100c65780638d859f3e1461039a5780638da5cb5b146103b5578063957aa58c146103d357806395d89b41146103f457600080fd5b80636ecd23061461035257806370a0823114610365578063715018a61461038557600080fd5b806332cb6b0c1161015957806351cff8d91161013357806351cff8d9146102dd57806355f804b3146102fd5780636352211e1461031d5780636c0360eb1461033d57600080fd5b806332cb6b0c1461029157806342842e0e146102a75780634f02c420146102c757600080fd5b806301ffc9a7146101a157806306fdde03146101d6578063081812fc146101f8578063095ea7b31461023057806318160ddd1461025257806323b872dd14610271575b600080fd5b3480156101ad57600080fd5b506101c16101bc3660046119a4565b610527565b60405190151581526020015b60405180910390f35b3480156101e257600080fd5b506101eb610579565b6040516101cd9190611afb565b34801561020457600080fd5b50610218610213366004611a27565b61060b565b6040516001600160a01b0390911681526020016101cd565b34801561023c57600080fd5b5061025061024b366004611978565b6106a5565b005b34801561025e57600080fd5b506007545b6040519081526020016101cd565b34801561027d57600080fd5b5061025061028c366004611884565b6107bb565b34801561029d57600080fd5b50610263611a0a81565b3480156102b357600080fd5b506102506102c2366004611884565b6107ec565b3480156102d357600080fd5b5061026360075481565b3480156102e957600080fd5b506102506102f836600461182e565b610807565b34801561030957600080fd5b506102506103183660046119de565b6108b0565b34801561032957600080fd5b50610218610338366004611a27565b6108ed565b34801561034957600080fd5b506101eb610964565b610250610360366004611a40565b6109f2565b34801561037157600080fd5b5061026361038036600461182e565b610b86565b34801561039157600080fd5b50610250610c0d565b3480156103a657600080fd5b5061026366e6ed27d666800081565b3480156103c157600080fd5b506006546001600160a01b0316610218565b3480156103df57600080fd5b506006546101c190600160a01b900460ff1681565b34801561040057600080fd5b506101eb610c43565b34801561041557600080fd5b50610250610424366004611945565b610c52565b34801561043557600080fd5b506102506104443660046118c5565b610d17565b34801561045557600080fd5b506101eb610464366004611a27565b610d4f565b610250610477366004611a40565b610e2a565b34801561048857600080fd5b506101c161049736600461184b565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156104d157600080fd5b506104f56104e036600461182e565b60086020526000908152604090205460ff1681565b60405160ff90911681526020016101cd565b34801561051357600080fd5b5061025061052236600461182e565b610f51565b60006001600160e01b031982166380ac58cd60e01b148061055857506001600160e01b03198216635b5e139f60e01b145b8061057357506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606000805461058890611c74565b80601f01602080910402602001604051908101604052809291908181526020018280546105b490611c74565b80156106015780601f106105d657610100808354040283529160200191610601565b820191906000526020600020905b8154815290600101906020018083116105e457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106895760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006106b0826108ed565b9050806001600160a01b0316836001600160a01b0316141561071e5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610680565b336001600160a01b038216148061073a575061073a8133610497565b6107ac5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610680565b6107b68383610fec565b505050565b6107c5338261105a565b6107e15760405162461bcd60e51b815260040161068090611b95565b6107b6838383611151565b6107b683838360405180602001604052806000815250610d17565b6006546001600160a01b031633146108315760405162461bcd60e51b815260040161068090611b60565b600047116108775760405162461bcd60e51b81526020600482015260136024820152724e6f20636f6e74726163742062616c616e636560681b6044820152606401610680565b6040516001600160a01b038216904780156108fc02916000818181858888f193505050501580156108ac573d6000803e3d6000fd5b5050565b6006546001600160a01b031633146108da5760405162461bcd60e51b815260040161068090611b60565b80516108ac90600990602084019061171f565b6000818152600260205260408120546001600160a01b0316806105735760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610680565b6009805461097190611c74565b80601f016020809104026020016040519081016040528092919081815260200182805461099d90611c74565b80156109ea5780601f106109bf576101008083540402835291602001916109ea565b820191906000526020600020905b8154815290600101906020018083116109cd57829003601f168201915b505050505081565b60008160ff1611610a455760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e20300000000000006044820152606401610680565b600a8160ff161115610a995760405162461bcd60e51b815260206004820152601960248201527f416d6f756e74206d757374206265203130206f72206c657373000000000000006044820152606401610680565b610aad60ff821666e6ed27d6668000611c12565b3414610afb5760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f7272656374006044820152606401610680565b611a0a8160ff16600754610b0f9190611be6565b1115610b495760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610680565b60005b8160ff168110156108ac57610b7433600760008154610b6a90611caf565b91829055506112f1565b80610b7e81611caf565b915050610b4c565b60006001600160a01b038216610bf15760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610680565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b03163314610c375760405162461bcd60e51b815260040161068090611b60565b610c41600061130b565b565b60606001805461058890611c74565b6001600160a01b038216331415610cab5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610680565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610d21338361105a565b610d3d5760405162461bcd60e51b815260040161068090611b95565b610d498484848461135d565b50505050565b6000818152600260205260409020546060906001600160a01b0316610dce5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610680565b6000610dd8611390565b90506000815111610df85760405180602001604052806000815250610e23565b80610e028461139f565b604051602001610e13929190611a8f565b6040516020818303038152906040525b9392505050565b60008160ff1611610e7d5760405162461bcd60e51b815260206004820152601a60248201527f416d6f756e74206d757374206265206d6f7265207468616e20300000000000006044820152606401610680565b60058160ff161115610ed15760405162461bcd60e51b815260206004820152601860248201527f416d6f756e74206d7573742062652035206f72206c65737300000000000000006044820152606401610680565b60c88160ff16600754610ee49190611be6565b1115610f1e5760405162461bcd60e51b8152602060048201526009602482015268536f6c64206f75742160b81b6044820152606401610680565b60005b8160ff168110156108ac57610f3f33600760008154610b6a90611caf565b80610f4981611caf565b915050610f21565b6006546001600160a01b03163314610f7b5760405162461bcd60e51b815260040161068090611b60565b6001600160a01b038116610fe05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610680565b610fe98161130b565b50565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611021826108ed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166110d35760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610680565b60006110de836108ed565b9050806001600160a01b0316846001600160a01b031614806111195750836001600160a01b031661110e8461060b565b6001600160a01b0316145b8061114957506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611164826108ed565b6001600160a01b0316146111cc5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610680565b6001600160a01b03821661122e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610680565b611239600082610fec565b6001600160a01b0383166000908152600360205260408120805460019290611262908490611c31565b90915550506001600160a01b0382166000908152600360205260408120805460019290611290908490611be6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6108ac82826040518060200160405280600081525061149d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611368848484611151565b611374848484846114d0565b610d495760405162461bcd60e51b815260040161068090611b0e565b60606009805461058890611c74565b6060816113c35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156113ed57806113d781611caf565b91506113e69050600a83611bfe565b91506113c7565b60008167ffffffffffffffff81111561140857611408611d20565b6040519080825280601f01601f191660200182016040528015611432576020820181803683370190505b5090505b841561114957611447600183611c31565b9150611454600a86611cca565b61145f906030611be6565b60f81b81838151811061147457611474611d0a565b60200101906001600160f81b031916908160001a905350611496600a86611bfe565b9450611436565b6114a783836115dd565b6114b460008484846114d0565b6107b65760405162461bcd60e51b815260040161068090611b0e565b60006001600160a01b0384163b156115d257604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611514903390899088908890600401611abe565b602060405180830381600087803b15801561152e57600080fd5b505af192505050801561155e575060408051601f3d908101601f1916820190925261155b918101906119c1565b60015b6115b8573d80801561158c576040519150601f19603f3d011682016040523d82523d6000602084013e611591565b606091505b5080516115b05760405162461bcd60e51b815260040161068090611b0e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611149565b506001949350505050565b6001600160a01b0382166116335760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610680565b6000818152600260205260409020546001600160a01b0316156116985760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610680565b6001600160a01b03821660009081526003602052604081208054600192906116c1908490611be6565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461172b90611c74565b90600052602060002090601f01602090048101928261174d5760008555611793565b82601f1061176657805160ff1916838001178555611793565b82800160010185558215611793579182015b82811115611793578251825591602001919060010190611778565b5061179f9291506117a3565b5090565b5b8082111561179f57600081556001016117a4565b600067ffffffffffffffff808411156117d3576117d3611d20565b604051601f8501601f19908116603f011681019082821181831017156117fb576117fb611d20565b8160405280935085815286868601111561181457600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561184057600080fd5b8135610e2381611d36565b6000806040838503121561185e57600080fd5b823561186981611d36565b9150602083013561187981611d36565b809150509250929050565b60008060006060848603121561189957600080fd5b83356118a481611d36565b925060208401356118b481611d36565b929592945050506040919091013590565b600080600080608085870312156118db57600080fd5b84356118e681611d36565b935060208501356118f681611d36565b925060408501359150606085013567ffffffffffffffff81111561191957600080fd5b8501601f8101871361192a57600080fd5b611939878235602084016117b8565b91505092959194509250565b6000806040838503121561195857600080fd5b823561196381611d36565b91506020830135801515811461187957600080fd5b6000806040838503121561198b57600080fd5b823561199681611d36565b946020939093013593505050565b6000602082840312156119b657600080fd5b8135610e2381611d4b565b6000602082840312156119d357600080fd5b8151610e2381611d4b565b6000602082840312156119f057600080fd5b813567ffffffffffffffff811115611a0757600080fd5b8201601f81018413611a1857600080fd5b611149848235602084016117b8565b600060208284031215611a3957600080fd5b5035919050565b600060208284031215611a5257600080fd5b813560ff81168114610e2357600080fd5b60008151808452611a7b816020860160208601611c48565b601f01601f19169290920160200192915050565b60008351611aa1818460208801611c48565b835190830190611ab5818360208801611c48565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611af190830184611a63565b9695505050505050565b602081526000610e236020830184611a63565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115611bf957611bf9611cde565b500190565b600082611c0d57611c0d611cf4565b500490565b6000816000190483118215151615611c2c57611c2c611cde565b500290565b600082821015611c4357611c43611cde565b500390565b60005b83811015611c63578181015183820152602001611c4b565b83811115610d495750506000910152565b600181811c90821680611c8857607f821691505b60208210811415611ca957634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611cc357611cc3611cde565b5060010190565b600082611cd957611cd9611cf4565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610fe957600080fd5b6001600160e01b031981168114610fe957600080fdfea26469706673582212204848c6e1f6349128d89f4d51661c0225a9df3088f06405db15e422808dc8ce0364736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000008466f782047616d6500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054647414d45000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5153647068754570616b7a616a58545a5356503778764262525936795979644643443262314b7838655576732f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Fox Game
Arg [1] : symbol_ (string): FGAME
Arg [2] : baseURI_ (string): https://gateway.pinata.cloud/ipfs/QmQSdphuEpakzajXTZSVP7xvBbRY6yYydFCD2b1Kx8eUvs/

-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 466f782047616d65000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4647414d45000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [8] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [9] : 732f516d5153647068754570616b7a616a58545a535650377876426252593679
Arg [10] : 5979644643443262314b7838655576732f000000000000000000000000000000


Deployed Bytecode Sourcemap

57937:1826:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41421:355;;;;;;;;;;-1:-1:-1;41421:355:0;;;;;:::i;:::-;;:::i;:::-;;;6577:14:1;;6570:22;6552:41;;6540:2;6525:18;41421:355:0;;;;;;;;42590:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;44283:308::-;;;;;;;;;;-1:-1:-1;44283:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5875:32:1;;;5857:51;;5845:2;5830:18;44283:308:0;5711:203:1;43806:411:0;;;;;;;;;;-1:-1:-1;43806:411:0;;;;;:::i;:::-;;:::i;:::-;;58398:93;;;;;;;;;;-1:-1:-1;58477:6:0;;58398:93;;;15463:25:1;;;15451:2;15436:18;58398:93:0;15317:177:1;45342:376:0;;;;;;;;;;-1:-1:-1;45342:376:0;;;;;:::i;:::-;;:::i;58032:41::-;;;;;;;;;;;;58069:4;58032:41;;45789:185;;;;;;;;;;-1:-1:-1;45789:185:0;;;;;:::i;:::-;;:::i;58107:21::-;;;;;;;;;;;;;;;;59348:190;;;;;;;;;;-1:-1:-1;59348:190:0;;;;;:::i;:::-;;:::i;59546:98::-;;;;;;;;;;-1:-1:-1;59546:98:0;;;;;:::i;:::-;;:::i;42197:326::-;;;;;;;;;;-1:-1:-1;42197:326:0;;;;;:::i;:::-;;:::i;58186:21::-;;;;;;;;;;;;;:::i;58499:460::-;;;;;;:::i;:::-;;:::i;41840:295::-;;;;;;;;;;-1:-1:-1;41840:295:0;;;;;:::i;:::-;;:::i;6195:94::-;;;;;;;;;;;;;:::i;57981:44::-;;;;;;;;;;;;58013:12;57981:44;;5544:87;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;58084:16;;;;;;;;;;-1:-1:-1;58084:16:0;;;;-1:-1:-1;;;58084:16:0;;;;;;42759:104;;;;;;;;;;;;;:::i;44663:327::-;;;;;;;;;;-1:-1:-1;44663:327:0;;;;;:::i;:::-;;:::i;46045:365::-;;;;;;;;;;-1:-1:-1;46045:365:0;;;;;:::i;:::-;;:::i;42934:468::-;;;;;;;;;;-1:-1:-1;42934:468:0;;;;;:::i;:::-;;:::i;58967:373::-;;;;;;:::i;:::-;;:::i;45061:214::-;;;;;;;;;;-1:-1:-1;45061:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;45232:25:0;;;45203:4;45232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;45061:214;58135:44;;;;;;;;;;-1:-1:-1;58135:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15671:4:1;15659:17;;;15641:36;;15629:2;15614:18;58135:44:0;15499:184:1;6444:229:0;;;;;;;;;;-1:-1:-1;6444:229:0;;;;;:::i;:::-;;:::i;41421:355::-;41568:4;-1:-1:-1;;;;;;41610:40:0;;-1:-1:-1;;;41610:40:0;;:105;;-1:-1:-1;;;;;;;41667:48:0;;-1:-1:-1;;;41667:48:0;41610:105;:158;;;-1:-1:-1;;;;;;;;;;40073:40:0;;;41732:36;41590:178;41421:355;-1:-1:-1;;41421:355:0:o;42590:100::-;42644:13;42677:5;42670:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42590:100;:::o;44283:308::-;44404:7;48046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48046:16:0;44429:110;;;;-1:-1:-1;;;44429:110:0;;11707:2:1;44429:110:0;;;11689:21:1;11746:2;11726:18;;;11719:30;11785:34;11765:18;;;11758:62;-1:-1:-1;;;11836:18:1;;;11829:42;11888:19;;44429:110:0;;;;;;;;;-1:-1:-1;44559:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;44559:24:0;;44283:308::o;43806:411::-;43887:13;43903:23;43918:7;43903:14;:23::i;:::-;43887:39;;43951:5;-1:-1:-1;;;;;43945:11:0;:2;-1:-1:-1;;;;;43945:11:0;;;43937:57;;;;-1:-1:-1;;;43937:57:0;;13655:2:1;43937:57:0;;;13637:21:1;13694:2;13674:18;;;13667:30;13733:34;13713:18;;;13706:62;-1:-1:-1;;;13784:18:1;;;13777:31;13825:19;;43937:57:0;13453:397:1;43937:57:0;4408:10;-1:-1:-1;;;;;44029:21:0;;;;:62;;-1:-1:-1;44054:37:0;44071:5;4408:10;45061:214;:::i;44054:37::-;44007:168;;;;-1:-1:-1;;;44007:168:0;;10100:2:1;44007:168:0;;;10082:21:1;10139:2;10119:18;;;10112:30;10178:34;10158:18;;;10151:62;10249:26;10229:18;;;10222:54;10293:19;;44007:168:0;9898:420:1;44007:168:0;44188:21;44197:2;44201:7;44188:8;:21::i;:::-;43876:341;43806:411;;:::o;45342:376::-;45551:41;4408:10;45584:7;45551:18;:41::i;:::-;45529:140;;;;-1:-1:-1;;;45529:140:0;;;;;;;:::i;:::-;45682:28;45692:4;45698:2;45702:7;45682:9;:28::i;45789:185::-;45927:39;45944:4;45950:2;45954:7;45927:39;;;;;;;;;;;;:16;:39::i;59348:190::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4408:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;59453:1:::1;59429:21;:25;59421:57;;;::::0;-1:-1:-1;;;59421:57:0;;12481:2:1;59421:57:0::1;::::0;::::1;12463:21:1::0;12520:2;12500:18;;;12493:30;-1:-1:-1;;;12539:18:1;;;12532:49;12598:18;;59421:57:0::1;12279:343:1::0;59421:57:0::1;59489:41;::::0;-1:-1:-1;;;;;59489:18:0;::::1;::::0;59508:21:::1;59489:41:::0;::::1;;;::::0;::::1;::::0;;;59508:21;59489:18;:41;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;59348:190:::0;:::o;59546:98::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4408:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;59618:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;42197:326::-:0;42314:7;42355:16;;;:7;:16;;;;;;-1:-1:-1;;;;;42355:16:0;42404:19;42382:110;;;;-1:-1:-1;;;42382:110:0;;10936:2:1;42382:110:0;;;10918:21:1;10975:2;10955:18;;;10948:30;11014:34;10994:18;;;10987:62;-1:-1:-1;;;11065:18:1;;;11058:39;11114:19;;42382:110:0;10734:405:1;58186:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;58499:460::-;58570:1;58561:6;:10;;;58553:49;;;;-1:-1:-1;;;58553:49:0;;9745:2:1;58553:49:0;;;9727:21:1;9784:2;9764:18;;;9757:30;9823:28;9803:18;;;9796:56;9869:18;;58553:49:0;9543:350:1;58553:49:0;58631:2;58621:6;:12;;;;58613:50;;;;-1:-1:-1;;;58613:50:0;;14475:2:1;58613:50:0;;;14457:21:1;14514:2;14494:18;;;14487:30;14553:27;14533:18;;;14526:55;14598:18;;58613:50:0;14273:349:1;58613:50:0;58695:14;;;;58013:12;58695:14;:::i;:::-;58682:9;:27;58674:71;;;;-1:-1:-1;;;58674:71:0;;8972:2:1;58674:71:0;;;8954:21:1;9011:2;8991:18;;;8984:30;9050:33;9030:18;;;9023:61;9101:18;;58674:71:0;8770:355:1;58674:71:0;58069:4;58787:6;58778:15;;:6;;:15;;;;:::i;:::-;:29;;58756:88;;;;-1:-1:-1;;;58756:88:0;;15182:2:1;58756:88:0;;;15164:21:1;15221:1;15201:18;;;15194:29;-1:-1:-1;;;15239:18:1;;;15232:39;15288:18;;58756:88:0;14980:332:1;58756:88:0;58862:9;58857:95;58881:6;58877:10;;:1;:10;58857:95;;;58909:31;58919:10;58933:6;;58931:8;;;;;:::i;:::-;;;;;-1:-1:-1;58909:9:0;:31::i;:::-;58889:3;;;;:::i;:::-;;;;58857:95;;41840:295;41957:7;-1:-1:-1;;;;;42004:19:0;;41982:111;;;;-1:-1:-1;;;41982:111:0;;10525:2:1;41982:111:0;;;10507:21:1;10564:2;10544:18;;;10537:30;10603:34;10583:18;;;10576:62;-1:-1:-1;;;10654:18:1;;;10647:40;10704:19;;41982:111:0;10323:406:1;41982:111:0;-1:-1:-1;;;;;;42111:16:0;;;;;:9;:16;;;;;;;41840:295::o;6195:94::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4408:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:21:::1;6278:1;6260:9;:21::i;:::-;6195:94::o:0;42759:104::-;42815:13;42848:7;42841:14;;;;;:::i;44663:327::-;-1:-1:-1;;;;;44798:24:0;;4408:10;44798:24;;44790:62;;;;-1:-1:-1;;;44790:62:0;;8618:2:1;44790:62:0;;;8600:21:1;8657:2;8637:18;;;8630:30;8696:27;8676:18;;;8669:55;8741:18;;44790:62:0;8416:349:1;44790:62:0;4408:10;44865:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;44865:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;44865:53:0;;;;;;;;;;44934:48;;6552:41:1;;;44865:42:0;;4408:10;44934:48;;6525:18:1;44934:48:0;;;;;;;44663:327;;:::o;46045:365::-;46234:41;4408:10;46267:7;46234:18;:41::i;:::-;46212:140;;;;-1:-1:-1;;;46212:140:0;;;;;;;:::i;:::-;46363:39;46377:4;46383:2;46387:7;46396:5;46363:13;:39::i;:::-;46045:365;;;;:::o;42934:468::-;48022:4;48046:16;;;:7;:16;;;;;;43052:13;;-1:-1:-1;;;;;48046:16:0;43083:113;;;;-1:-1:-1;;;43083:113:0;;13239:2:1;43083:113:0;;;13221:21:1;13278:2;13258:18;;;13251:30;13317:34;13297:18;;;13290:62;-1:-1:-1;;;13368:18:1;;;13361:45;13423:19;;43083:113:0;13037:411:1;43083:113:0;43209:21;43233:10;:8;:10::i;:::-;43209:34;;43298:1;43280:7;43274:21;:25;:120;;;;;;;;;;;;;;;;;43343:7;43352:18;:7;:16;:18::i;:::-;43326:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;43274:120;43254:140;42934:468;-1:-1:-1;;;42934:468:0:o;58967:373::-;59042:1;59033:6;:10;;;59025:49;;;;-1:-1:-1;;;59025:49:0;;9745:2:1;59025:49:0;;;9727:21:1;9784:2;9764:18;;;9757:30;9823:28;9803:18;;;9796:56;9869:18;;59025:49:0;9543:350:1;59025:49:0;59103:1;59093:6;:11;;;;59085:48;;;;-1:-1:-1;;;59085:48:0;;14829:2:1;59085:48:0;;;14811:21:1;14868:2;14848:18;;;14841:30;14907:26;14887:18;;;14880:54;14951:18;;59085:48:0;14627:348:1;59085:48:0;59185:3;59175:6;59166:15;;:6;;:15;;;;:::i;:::-;:22;;59144:81;;;;-1:-1:-1;;;59144:81:0;;15182:2:1;59144:81:0;;;15164:21:1;15221:1;15201:18;;;15194:29;-1:-1:-1;;;15239:18:1;;;15232:39;15288:18;;59144:81:0;14980:332:1;59144:81:0;59243:9;59238:95;59262:6;59258:10;;:1;:10;59238:95;;;59290:31;59300:10;59314:6;;59312:8;;;;;:::i;59290:31::-;59270:3;;;;:::i;:::-;;;;59238:95;;6444:229;5617:6;;-1:-1:-1;;;;;5617:6:0;4408:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6547:22:0;::::1;6525:110;;;::::0;-1:-1:-1;;;6525:110:0;;7449:2:1;6525:110:0::1;::::0;::::1;7431:21:1::0;7488:2;7468:18;;;7461:30;7527:34;7507:18;;;7500:62;-1:-1:-1;;;7578:18:1;;;7571:36;7624:19;;6525:110:0::1;7247:402:1::0;6525:110:0::1;6646:19;6656:8;6646:9;:19::i;:::-;6444:229:::0;:::o;52080:174::-;52155:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;52155:29:0;-1:-1:-1;;;;;52155:29:0;;;;;;;;:24;;52209:23;52155:24;52209:14;:23::i;:::-;-1:-1:-1;;;;;52200:46:0;;;;;;;;;;;52080:174;;:::o;48251:452::-;48380:4;48046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48046:16:0;48402:110;;;;-1:-1:-1;;;48402:110:0;;9332:2:1;48402:110:0;;;9314:21:1;9371:2;9351:18;;;9344:30;9410:34;9390:18;;;9383:62;-1:-1:-1;;;9461:18:1;;;9454:42;9513:19;;48402:110:0;9130:408:1;48402:110:0;48523:13;48539:23;48554:7;48539:14;:23::i;:::-;48523:39;;48592:5;-1:-1:-1;;;;;48581:16:0;:7;-1:-1:-1;;;;;48581:16:0;;:64;;;;48638:7;-1:-1:-1;;;;;48614:31:0;:20;48626:7;48614:11;:20::i;:::-;-1:-1:-1;;;;;48614:31:0;;48581:64;:113;;;-1:-1:-1;;;;;;45232:25:0;;;45203:4;45232:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;48662:32;48573:122;48251:452;-1:-1:-1;;;;48251:452:0:o;51347:615::-;51520:4;-1:-1:-1;;;;;51493:31:0;:23;51508:7;51493:14;:23::i;:::-;-1:-1:-1;;;;;51493:31:0;;51471:122;;;;-1:-1:-1;;;51471:122:0;;12829:2:1;51471:122:0;;;12811:21:1;12868:2;12848:18;;;12841:30;12907:34;12887:18;;;12880:62;-1:-1:-1;;;12958:18:1;;;12951:39;13007:19;;51471:122:0;12627:405:1;51471:122:0;-1:-1:-1;;;;;51612:16:0;;51604:65;;;;-1:-1:-1;;;51604:65:0;;8213:2:1;51604:65:0;;;8195:21:1;8252:2;8232:18;;;8225:30;8291:34;8271:18;;;8264:62;-1:-1:-1;;;8342:18:1;;;8335:34;8386:19;;51604:65:0;8011:400:1;51604:65:0;51786:29;51803:1;51807:7;51786:8;:29::i;:::-;-1:-1:-1;;;;;51828:15:0;;;;;;:9;:15;;;;;:20;;51847:1;;51828:15;:20;;51847:1;;51828:20;:::i;:::-;;;;-1:-1:-1;;;;;;;51859:13:0;;;;;;:9;:13;;;;;:18;;51876:1;;51859:13;:18;;51876:1;;51859:18;:::i;:::-;;;;-1:-1:-1;;51888:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;51888:21:0;-1:-1:-1;;;;;51888:21:0;;;;;;;;;51927:27;;51888:16;;51927:27;;;;;;;51347:615;;;:::o;49045:110::-;49121:26;49131:2;49135:7;49121:26;;;;;;;;;;;;:9;:26::i;6681:173::-;6756:6;;;-1:-1:-1;;;;;6773:17:0;;;-1:-1:-1;;;;;;6773:17:0;;;;;;;6806:40;;6756:6;;;6773:17;6756:6;;6806:40;;6737:16;;6806:40;6726:128;6681:173;:::o;47292:352::-;47449:28;47459:4;47465:2;47469:7;47449:9;:28::i;:::-;47510:48;47533:4;47539:2;47543:7;47552:5;47510:22;:48::i;:::-;47488:148;;;;-1:-1:-1;;;47488:148:0;;;;;;;:::i;59652:108::-;59712:13;59745:7;59738:14;;;;;:::i;37352:723::-;37408:13;37629:10;37625:53;;-1:-1:-1;;37656:10:0;;;;;;;;;;;;-1:-1:-1;;;37656:10:0;;;;;37352:723::o;37625:53::-;37703:5;37688:12;37744:78;37751:9;;37744:78;;37777:8;;;;:::i;:::-;;-1:-1:-1;37800:10:0;;-1:-1:-1;37808:2:0;37800:10;;:::i;:::-;;;37744:78;;;37832:19;37864:6;37854:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37854:17:0;;37832:39;;37882:154;37889:10;;37882:154;;37916:11;37926:1;37916:11;;:::i;:::-;;-1:-1:-1;37985:10:0;37993:2;37985:5;:10;:::i;:::-;37972:24;;:2;:24;:::i;:::-;37959:39;;37942:6;37949;37942:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;37942:56:0;;;;;;;;-1:-1:-1;38013:11:0;38022:2;38013:11;;:::i;:::-;;;37882:154;;49382:321;49512:18;49518:2;49522:7;49512:5;:18::i;:::-;49563:54;49594:1;49598:2;49602:7;49611:5;49563:22;:54::i;:::-;49541:154;;;;-1:-1:-1;;;49541:154:0;;;;;;;:::i;52819:980::-;52974:4;-1:-1:-1;;;;;52995:13:0;;29589:20;29637:8;52991:801;;53048:175;;-1:-1:-1;;;53048:175:0;;-1:-1:-1;;;;;53048:36:0;;;;;:175;;4408:10;;53142:4;;53169:7;;53199:5;;53048:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53048:175:0;;;;;;;;-1:-1:-1;;53048:175:0;;;;;;;;;;;;:::i;:::-;;;53027:710;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53406:13:0;;53402:320;;53449:108;;-1:-1:-1;;;53449:108:0;;;;;;;:::i;53402:320::-;53672:6;53666:13;53657:6;53653:2;53649:15;53642:38;53027:710;-1:-1:-1;;;;;;53287:51:0;-1:-1:-1;;;53287:51:0;;-1:-1:-1;53280:58:0;;52991:801;-1:-1:-1;53776:4:0;52819:980;;;;;;:::o;50039:382::-;-1:-1:-1;;;;;50119:16:0;;50111:61;;;;-1:-1:-1;;;50111:61:0;;11346:2:1;50111:61:0;;;11328:21:1;;;11365:18;;;11358:30;11424:34;11404:18;;;11397:62;11476:18;;50111:61:0;11144:356:1;50111:61:0;48022:4;48046:16;;;:7;:16;;;;;;-1:-1:-1;;;;;48046:16:0;:30;50183:58;;;;-1:-1:-1;;;50183:58:0;;7856:2:1;50183:58:0;;;7838:21:1;7895:2;7875:18;;;7868:30;7934;7914:18;;;7907:58;7982:18;;50183:58:0;7654:352:1;50183:58:0;-1:-1:-1;;;;;50312:13:0;;;;;;:9;:13;;;;;:18;;50329:1;;50312:13;:18;;50329:1;;50312:18;:::i;:::-;;;;-1:-1:-1;;50341:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;50341:21:0;-1:-1:-1;;;;;50341:21:0;;;;;;;;50380:33;;50341:16;;;50380:33;;50341:16;;50380:33;50039:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:416::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3164:15;;3157:23;3145:36;;3135:64;;3195:1;3192;3185:12;3236:315;3304:6;3312;3365:2;3353:9;3344:7;3340:23;3336:32;3333:52;;;3381:1;3378;3371:12;3333:52;3420:9;3407:23;3439:31;3464:5;3439:31;:::i;:::-;3489:5;3541:2;3526:18;;;;3513:32;;-1:-1:-1;;;3236:315:1:o;3556:245::-;3614:6;3667:2;3655:9;3646:7;3642:23;3638:32;3635:52;;;3683:1;3680;3673:12;3635:52;3722:9;3709:23;3741:30;3765:5;3741:30;:::i;3806:249::-;3875:6;3928:2;3916:9;3907:7;3903:23;3899:32;3896:52;;;3944:1;3941;3934:12;3896:52;3976:9;3970:16;3995:30;4019:5;3995:30;:::i;4060:450::-;4129:6;4182:2;4170:9;4161:7;4157:23;4153:32;4150:52;;;4198:1;4195;4188:12;4150:52;4238:9;4225:23;4271:18;4263:6;4260:30;4257:50;;;4303:1;4300;4293:12;4257:50;4326:22;;4379:4;4371:13;;4367:27;-1:-1:-1;4357:55:1;;4408:1;4405;4398:12;4357:55;4431:73;4496:7;4491:2;4478:16;4473:2;4469;4465:11;4431:73;:::i;4515:180::-;4574:6;4627:2;4615:9;4606:7;4602:23;4598:32;4595:52;;;4643:1;4640;4633:12;4595:52;-1:-1:-1;4666:23:1;;4515:180;-1:-1:-1;4515:180:1:o;4700:269::-;4757:6;4810:2;4798:9;4789:7;4785:23;4781:32;4778:52;;;4826:1;4823;4816:12;4778:52;4865:9;4852:23;4915:4;4908:5;4904:16;4897:5;4894:27;4884:55;;4935:1;4932;4925:12;4974:257;5015:3;5053:5;5047:12;5080:6;5075:3;5068:19;5096:63;5152:6;5145:4;5140:3;5136:14;5129:4;5122:5;5118:16;5096:63;:::i;:::-;5213:2;5192:15;-1:-1:-1;;5188:29:1;5179:39;;;;5220:4;5175:50;;4974:257;-1:-1:-1;;4974:257:1:o;5236:470::-;5415:3;5453:6;5447:13;5469:53;5515:6;5510:3;5503:4;5495:6;5491:17;5469:53;:::i;:::-;5585:13;;5544:16;;;;5607:57;5585:13;5544:16;5641:4;5629:17;;5607:57;:::i;:::-;5680:20;;5236:470;-1:-1:-1;;;;5236:470:1:o;5919:488::-;-1:-1:-1;;;;;6188:15:1;;;6170:34;;6240:15;;6235:2;6220:18;;6213:43;6287:2;6272:18;;6265:34;;;6335:3;6330:2;6315:18;;6308:31;;;6113:4;;6356:45;;6381:19;;6373:6;6356:45;:::i;:::-;6348:53;5919:488;-1:-1:-1;;;;;;5919:488:1:o;6604:219::-;6753:2;6742:9;6735:21;6716:4;6773:44;6813:2;6802:9;6798:18;6790:6;6773:44;:::i;6828:414::-;7030:2;7012:21;;;7069:2;7049:18;;;7042:30;7108:34;7103:2;7088:18;;7081:62;-1:-1:-1;;;7174:2:1;7159:18;;7152:48;7232:3;7217:19;;6828:414::o;11918:356::-;12120:2;12102:21;;;12139:18;;;12132:30;12198:34;12193:2;12178:18;;12171:62;12265:2;12250:18;;11918:356::o;13855:413::-;14057:2;14039:21;;;14096:2;14076:18;;;14069:30;14135:34;14130:2;14115:18;;14108:62;-1:-1:-1;;;14201:2:1;14186:18;;14179:47;14258:3;14243:19;;13855:413::o;15688:128::-;15728:3;15759:1;15755:6;15752:1;15749:13;15746:39;;;15765:18;;:::i;:::-;-1:-1:-1;15801:9:1;;15688:128::o;15821:120::-;15861:1;15887;15877:35;;15892:18;;:::i;:::-;-1:-1:-1;15926:9:1;;15821:120::o;15946:168::-;15986:7;16052:1;16048;16044:6;16040:14;16037:1;16034:21;16029:1;16022:9;16015:17;16011:45;16008:71;;;16059:18;;:::i;:::-;-1:-1:-1;16099:9:1;;15946:168::o;16119:125::-;16159:4;16187:1;16184;16181:8;16178:34;;;16192:18;;:::i;:::-;-1:-1:-1;16229:9:1;;16119:125::o;16249:258::-;16321:1;16331:113;16345:6;16342:1;16339:13;16331:113;;;16421:11;;;16415:18;16402:11;;;16395:39;16367:2;16360:10;16331:113;;;16462:6;16459:1;16456:13;16453:48;;;-1:-1:-1;;16497:1:1;16479:16;;16472:27;16249:258::o;16512:380::-;16591:1;16587:12;;;;16634;;;16655:61;;16709:4;16701:6;16697:17;16687:27;;16655:61;16762:2;16754:6;16751:14;16731:18;16728:38;16725:161;;;16808:10;16803:3;16799:20;16796:1;16789:31;16843:4;16840:1;16833:15;16871:4;16868:1;16861:15;16725:161;;16512:380;;;:::o;16897:135::-;16936:3;-1:-1:-1;;16957:17:1;;16954:43;;;16977:18;;:::i;:::-;-1:-1:-1;17024:1:1;17013:13;;16897:135::o;17037:112::-;17069:1;17095;17085:35;;17100:18;;:::i;:::-;-1:-1:-1;17134:9:1;;17037:112::o;17154:127::-;17215:10;17210:3;17206:20;17203:1;17196:31;17246:4;17243:1;17236:15;17270:4;17267:1;17260:15;17286:127;17347:10;17342:3;17338:20;17335:1;17328:31;17378:4;17375:1;17368:15;17402:4;17399:1;17392:15;17418:127;17479:10;17474:3;17470:20;17467:1;17460:31;17510:4;17507:1;17500:15;17534:4;17531:1;17524:15;17550:127;17611:10;17606:3;17602:20;17599:1;17592:31;17642:4;17639:1;17632:15;17666:4;17663:1;17656:15;17682:131;-1:-1:-1;;;;;17757:31:1;;17747:42;;17737:70;;17803:1;17800;17793:12;17818:131;-1:-1:-1;;;;;;17892:32:1;;17882:43;;17872:71;;17939:1;17936;17929:12

Swarm Source

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