ETH Price: $3,418.89 (-0.62%)
Gas: 9 Gwei

Token

Shibs of football by $WCI (WCINFT)
 

Overview

Max Total Supply

1,184 WCINFT

Holders

151

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
4 WCINFT
0xb025131385534bbdb8ca84bb2dcb9f45f2a8a437
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:
WCI

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-11-16
*/

/**
 *Submitted for verification at Etherscan.io on 2022-01-20
 */
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

/*
 * @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 GSN 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/introspection/IERC165.sol

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

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

/**
 * @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/IERC721Metadata.sol

/**
 * @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/token/ERC721/IERC721Enumerable.sol

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

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

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

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

/**
 * @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/introspection/ERC165.sol

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts may inherit from this and call {_registerInterface} to declare
 * their support of an interface.
 */
abstract contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    constructor() {
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     *
     * Time complexity O(1), guaranteed to always use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId)
        public
        view
        virtual
        override
        returns (bool)
    {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Registers the contract as an implementer of the interface defined by
     * `interfaceId`. Support of the actual ERC165 interface is automatic and
     * registering its interface id is not required.
     *
     * See {IERC165-supportsInterface}.
     *
     * Requirements:
     *
     * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`).
     */
    function _registerInterface(bytes4 interfaceId) internal virtual {
        require(interfaceId != 0xffffffff, "ERC165: invalid interface id");
        _supportedInterfaces[interfaceId] = true;
    }
}

// File: @openzeppelin/contracts/math/SafeMath.sol

/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b > a) return (false, 0);
        return (true, a - b);
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
        if (a == 0) return (true, 0);
        uint256 c = a * b;
        if (c / a != b) return (false, 0);
        return (true, c);
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b == 0) return (false, 0);
        return (true, a / b);
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b)
        internal
        pure
        returns (bool, uint256)
    {
        if (b == 0) return (false, 0);
        return (true, a % b);
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a, "SafeMath: addition overflow");
        return c;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a, "SafeMath: subtraction overflow");
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a == 0) return 0;
        uint256 c = a * b;
        require(c / a == b, "SafeMath: multiplication overflow");
        return c;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: division by zero");
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b > 0, "SafeMath: modulo by zero");
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b <= a, errorMessage);
        return a - b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryDiv}.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        require(b > 0, errorMessage);
        return a % b;
    }
}

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

/**
 * @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;
        // solhint-disable-next-line no-inline-assembly
        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"
        );

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

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

library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value)
        private
        view
        returns (bool)
    {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index)
        private
        view
        returns (bytes32)
    {
        require(
            set._values.length > index,
            "EnumerableSet: index out of bounds"
        );
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index)
        internal
        view
        returns (bytes32)
    {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value)
        internal
        returns (bool)
    {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value)
        internal
        view
        returns (bool)
    {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index)
        internal
        view
        returns (uint256)
    {
        return uint256(_at(set._inner, index));
    }
}

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

library EnumerableMap {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Map type with
    // bytes32 keys and values.
    // The Map implementation uses private functions, and user-facing
    // implementations (such as Uint256ToAddressMap) are just wrappers around
    // the underlying Map.
    // This means that we can only create new EnumerableMaps for types that fit
    // in bytes32.

    struct MapEntry {
        bytes32 _key;
        bytes32 _value;
    }

    struct Map {
        // Storage of map keys and values
        MapEntry[] _entries;
        // Position of the entry defined by a key in the `entries` array, plus 1
        // because index 0 means a key is not in the map.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function _set(
        Map storage map,
        bytes32 key,
        bytes32 value
    ) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex == 0) {
            // Equivalent to !contains(map, key)
            map._entries.push(MapEntry({_key: key, _value: value}));
            // The entry is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            map._indexes[key] = map._entries.length;
            return true;
        } else {
            map._entries[keyIndex - 1]._value = value;
            return false;
        }
    }

    /**
     * @dev Removes a key-value pair from a map. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function _remove(Map storage map, bytes32 key) private returns (bool) {
        // We read and store the key's index to prevent multiple reads from the same storage slot
        uint256 keyIndex = map._indexes[key];

        if (keyIndex != 0) {
            // Equivalent to contains(map, key)
            // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one
            // in the array, and then remove the last entry (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = keyIndex - 1;
            uint256 lastIndex = map._entries.length - 1;

            // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            MapEntry storage lastEntry = map._entries[lastIndex];

            // Move the last entry to the index where the entry to delete is
            map._entries[toDeleteIndex] = lastEntry;
            // Update the index for the moved entry
            map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved entry was stored
            map._entries.pop();

            // Delete the index for the deleted slot
            delete map._indexes[key];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function _contains(Map storage map, bytes32 key)
        private
        view
        returns (bool)
    {
        return map._indexes[key] != 0;
    }

    /**
     * @dev Returns the number of key-value pairs in the map. O(1).
     */
    function _length(Map storage map) private view returns (uint256) {
        return map._entries.length;
    }

    /**
     * @dev Returns the key-value pair stored at position `index` in the map. O(1).
     *
     * Note that there are no guarantees on the ordering of entries inside the
     * array, and it may change when more entries are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Map storage map, uint256 index)
        private
        view
        returns (bytes32, bytes32)
    {
        require(
            map._entries.length > index,
            "EnumerableMap: index out of bounds"
        );

        MapEntry storage entry = map._entries[index];
        return (entry._key, entry._value);
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     */
    function _tryGet(Map storage map, bytes32 key)
        private
        view
        returns (bool, bytes32)
    {
        uint256 keyIndex = map._indexes[key];
        if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key)
        return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function _get(Map storage map, bytes32 key) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    /**
     * @dev Same as {_get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {_tryGet}.
     */
    function _get(
        Map storage map,
        bytes32 key,
        string memory errorMessage
    ) private view returns (bytes32) {
        uint256 keyIndex = map._indexes[key];
        require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key)
        return map._entries[keyIndex - 1]._value; // All indexes are 1-based
    }

    // UintToAddressMap

    struct UintToAddressMap {
        Map _inner;
    }

    /**
     * @dev Adds a key-value pair to a map, or updates the value for an existing
     * key. O(1).
     *
     * Returns true if the key was added to the map, that is if it was not
     * already present.
     */
    function set(
        UintToAddressMap storage map,
        uint256 key,
        address value
    ) internal returns (bool) {
        return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the key was removed from the map, that is if it was present.
     */
    function remove(UintToAddressMap storage map, uint256 key)
        internal
        returns (bool)
    {
        return _remove(map._inner, bytes32(key));
    }

    /**
     * @dev Returns true if the key is in the map. O(1).
     */
    function contains(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool)
    {
        return _contains(map._inner, bytes32(key));
    }

    /**
     * @dev Returns the number of elements in the map. O(1).
     */
    function length(UintToAddressMap storage map)
        internal
        view
        returns (uint256)
    {
        return _length(map._inner);
    }

    /**
     * @dev Returns the element stored at position `index` in the set. O(1).
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintToAddressMap storage map, uint256 index)
        internal
        view
        returns (uint256, address)
    {
        (bytes32 key, bytes32 value) = _at(map._inner, index);
        return (uint256(key), address(uint160(uint256(value))));
    }

    /**
     * @dev Tries to returns the value associated with `key`.  O(1).
     * Does not revert if `key` is not in the map.
     *
     * _Available since v3.4._
     */
    function tryGet(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (bool, address)
    {
        (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key));
        return (success, address(uint160(uint256(value))));
    }

    /**
     * @dev Returns the value associated with `key`.  O(1).
     *
     * Requirements:
     *
     * - `key` must be in the map.
     */
    function get(UintToAddressMap storage map, uint256 key)
        internal
        view
        returns (address)
    {
        return address(uint160(uint256(_get(map._inner, bytes32(key)))));
    }

    /**
     * @dev Same as {get}, with a custom error message when `key` is not in the map.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryGet}.
     */
    function get(
        UintToAddressMap storage map,
        uint256 key,
        string memory errorMessage
    ) internal view returns (address) {
        return
            address(
                uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))
            );
    }
}

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

/**
 * @dev String operations.
 */
library Strings {
    /**
     * @dev Converts a `uint256` to its ASCII `string` 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);
        uint256 index = digits - 1;
        temp = value;
        while (temp != 0) {
            buffer[index--] = bytes1(uint8(48 + (temp % 10)));
            temp /= 10;
        }
        return string(buffer);
    }
}

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

/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using SafeMath for uint256;
    using Address for address;
    using EnumerableSet for EnumerableSet.UintSet;
    using EnumerableMap for EnumerableMap.UintToAddressMap;
    using Strings for uint256;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from holder address to their (enumerable) set of owned tokens
    mapping(address => EnumerableSet.UintSet) private _holderTokens;

    // Enumerable mapping from token ids to their owners
    EnumerableMap.UintToAddressMap private _tokenOwners;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    // Base URI
    string private _baseURI;

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /*
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

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

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @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 _holderTokens[owner].length();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        return
            _tokenOwners.get(
                tokenId,
                "ERC721: owner query for nonexistent token"
            );
    }

    /**
     * @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 _tokenURI = _tokenURIs[tokenId];
        string memory base = baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, tokenId.toString(), ".json"));
    }

    /**
     * @dev Returns the base URI set via {_setBaseURI}. This will be
     * automatically added as a prefix in {tokenURI} to each token's URI, or
     * to the token ID if no specific URI is set for that token ID.
     */
    function baseURI() public view virtual returns (string memory) {
        return _baseURI;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        return _holderTokens[owner].at(index);
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds
        return _tokenOwners.length();
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index)
        public
        view
        virtual
        override
        returns (uint256)
    {
        (uint256 tokenId, ) = _tokenOwners.at(index);
        return tokenId;
    }

    /**
     * @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 ||
                ERC721.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 _tokenOwners.contains(tokenId);
    }

    /**
     * @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 ||
            ERC721.isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     d*
     * - `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);

        _holderTokens[to].add(tokenId);

        _tokenOwners.set(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); // internal owner

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

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

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }

        _holderTokens[owner].remove(tokenId);

        _tokenOwners.remove(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"
        ); // internal owner
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _holderTokens[from].remove(tokenId);
        _holderTokens[to].add(tokenId);

        _tokenOwners.set(tokenId, to);

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI)
        internal
        virtual
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI set of nonexistent token"
        );
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @dev Internal function to set the base URI for all token IDs. It is
     * automatically added as a prefix to the value returned in {tokenURI},
     * or to the token ID if {tokenURI} is empty.
     */
    function _setBaseURI(string memory baseURI_) internal virtual {
        _baseURI = baseURI_;
    }

    /**
     * @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()) {
            return true;
        }
        bytes memory returndata = to.functionCall(
            abi.encodeWithSelector(
                IERC721Receiver(to).onERC721Received.selector,
                _msgSender(),
                from,
                tokenId,
                _data
            ),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
        bytes4 retval = abi.decode(returndata, (bytes4));
        return (retval == _ERC721_RECEIVED);
    }

    function _approve(address to, uint256 tokenId) private {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 {}
}

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

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() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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"
        );
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

interface IOperatorFilterRegistry {
    function isOperatorAllowed(address registrant, address operator)
        external
        view
        returns (bool);

    function register(address registrant) external;

    function registerAndSubscribe(address registrant, address subscription)
        external;

    function registerAndCopyEntries(
        address registrant,
        address registrantToCopy
    ) external;

    function unregister(address addr) external;

    function updateOperator(
        address registrant,
        address operator,
        bool filtered
    ) external;

    function updateOperators(
        address registrant,
        address[] calldata operators,
        bool filtered
    ) external;

    function updateCodeHash(
        address registrant,
        bytes32 codehash,
        bool filtered
    ) external;

    function updateCodeHashes(
        address registrant,
        bytes32[] calldata codeHashes,
        bool filtered
    ) external;

    function subscribe(address registrant, address registrantToSubscribe)
        external;

    function unsubscribe(address registrant, bool copyExistingEntries) external;

    function subscriptionOf(address addr) external returns (address registrant);

    function subscribers(address registrant)
        external
        returns (address[] memory);

    function subscriberAt(address registrant, uint256 index)
        external
        returns (address);

    function copyEntriesOf(address registrant, address registrantToCopy)
        external;

    function isOperatorFiltered(address registrant, address operator)
        external
        returns (bool);

    function isCodeHashOfFiltered(address registrant, address operatorWithCode)
        external
        returns (bool);

    function isCodeHashFiltered(address registrant, bytes32 codeHash)
        external
        returns (bool);

    function filteredOperators(address addr)
        external
        returns (address[] memory);

    function filteredCodeHashes(address addr)
        external
        returns (bytes32[] memory);

    function filteredOperatorAt(address registrant, uint256 index)
        external
        returns (address);

    function filteredCodeHashAt(address registrant, uint256 index)
        external
        returns (bytes32);

    function isRegistered(address addr) external returns (bool);

    function codeHashOf(address addr) external returns (bytes32);
}

abstract contract OperatorFilterer {
    error OperatorNotAllowed(address operator);

    IOperatorFilterRegistry constant operatorFilterRegistry =
        IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);

    constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
        // If an inheriting token contract is deployed to a network without the registry deployed, the modifier
        // will not revert, but the contract will need to be registered with the registry once it is deployed in
        // order for the modifier to filter addresses.
        if (address(operatorFilterRegistry).code.length > 0) {
            if (subscribe) {
                operatorFilterRegistry.registerAndSubscribe(
                    address(this),
                    subscriptionOrRegistrantToCopy
                );
            } else {
                if (subscriptionOrRegistrantToCopy != address(0)) {
                    operatorFilterRegistry.registerAndCopyEntries(
                        address(this),
                        subscriptionOrRegistrantToCopy
                    );
                } else {
                    operatorFilterRegistry.register(address(this));
                }
            }
        }
    }

    modifier onlyAllowedOperator(address from) virtual {
        // Check registry code length to facilitate testing in environments without a deployed registry.
        if (address(operatorFilterRegistry).code.length > 0) {
            // Allow spending tokens from addresses with balance
            // Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
            // from an EOA.
            if (from == msg.sender) {
                _;
                return;
            }
            if (
                !(operatorFilterRegistry.isOperatorAllowed(
                    address(this),
                    msg.sender
                ) &&
                    operatorFilterRegistry.isOperatorAllowed(
                        address(this),
                        from
                    ))
            ) {
                revert OperatorNotAllowed(msg.sender);
            }
        }
        _;
    }
}

abstract contract DefaultOperatorFilterer is OperatorFilterer {
    address constant DEFAULT_SUBSCRIPTION =
        address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);

    constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}

interface IERC20 {
    function totalSupply() external view returns (uint256);

    function balanceOf(address account) external view returns (uint256);

    function transfer(address recipient, uint256 amount)
        external
        returns (bool);

    function allowance(address owner, address spender)
        external
        view
        returns (uint256);

    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 value
    );
}

// File: contracts/NFT.sol

contract WCI is ERC721, Ownable, DefaultOperatorFilterer {
    // contract WCI is ERC721, Ownable {
    using Strings for uint256;
    IERC20 WCIContract = IERC20(0xC5a9BC46A7dbe1c6dE493E84A18f02E70E2c5A32);

    address public _feeRecipient;
    uint256 public WlPrice = 50000000000000000;
    uint256 public PlPrice = 60000000000000000;
    uint256 private WlLimit = 20;
    uint256 private PlLimit = 10;
    uint256 public constant MAX = 10000;

    uint256 private status = 1;

    mapping(address => bool) public whiteList;
    mapping(address => uint256) private mintedAmount;

    event Minted(address indexed minter, uint256 price, uint256 count);

    constructor(string memory _baseTokenURI) ERC721("Shibs of football by $WCI", "WCINFT") {
        _setBaseURI(_baseTokenURI);
        _feeRecipient = msg.sender;
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public override onlyAllowedOperator(from) {
        super.safeTransferFrom(from, to, tokenId, data);
    }

    function tokenURI(uint256) public pure override returns (string memory) {
        return "";
    }

    function mint(uint256 mintNumber) public payable {
        uint256 price;
        uint256 limit;
        bool isHolding = 5000 * 10**9 <= WCIContract.balanceOf(msg.sender);

        if (status == 1) {
            require(whiteList[msg.sender], "Can't find in whitelist");
        } else if (status == 2) {
            require(isHolding, "You don't have 5k wci tokens");
        }
        if (whiteList[msg.sender]) {
            price = WlPrice;
            limit = WlLimit;
        } else if (isHolding) {
            price = WlPrice;
            limit = PlLimit;
        } else {
            price = PlPrice;
            limit = PlLimit;
        }

        require(msg.value >= price * mintNumber, "Insufficient funds");
        require(totalSupply() + mintNumber < MAX, "Fulfilled limit");
        require(mintedAmount[msg.sender] + mintNumber <= limit, "Limit error");

        payable(_feeRecipient).transfer(msg.value);
        for (uint256 i; i < mintNumber; i++) {
            uint256 _id = totalSupply() + 1;
            _safeMint(msg.sender, _id);
            mintedAmount[msg.sender] = mintedAmount[msg.sender] + 1;
        }

        emit Minted(msg.sender, price, mintNumber);
    }

    function setAllowWhiteListMint() public onlyOwner {
        status = 1;
    }

    function setAllowHolderMint() public onlyOwner {
        status = 2;
    }

    function setAllowPublicMint() public onlyOwner {
        status = 3;
    }

    function mintStatus() public view returns (string memory) {
        if (status == 1) {
            return "for whitelist user";
        } else if (status == 2) {
            return "5k wci holding user";
        } else {
            return "public mint";
        }
    }

    function adjustCost(uint256 Wprice, uint256 Pprice) external onlyOwner {
        require(Wprice > 1000000000000000, "Cost error");
        require(Pprice > 1000000000000000, "Cost error");

        WlPrice = Wprice;
        PlPrice = Pprice;
    }

    function setLimitMintAmount(uint256 _wl, uint256 _pl) public onlyOwner {
        require(_wl > 0, "Limit amount set error");
        require(_pl > 0, "Limit amount set error");

        WlLimit = _wl;
        PlLimit = _pl;
    }

    function setFeeRecipient(address _recipient) public onlyOwner {
        require(_recipient != address(0), "Zero address error");
        _feeRecipient = _recipient;
    }

    function setBaseURI(string memory _baseTokenURI) public onlyOwner {
        _setBaseURI(_baseTokenURI);
    }

    function addBatchWhiteList (address [] memory adds) public onlyOwner {
        for(uint i = 0; i < adds.length; i++){  
            addWhiteList(adds[i]);
        }

    }

    function addWhiteList(address _address) public onlyOwner {
        require(
            _address != address(0),
            "ERC721: Can't be add zero address in whitelist"
        );

        whiteList[_address] = true;
    }

    function removeWhiteList(address _address) public onlyOwner {
        require(
            _address != address(0),
            "ERC721: Can't be remove zero address in whitelist"
        );
        whiteList[_address] = false;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"price","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"count","type":"uint256"}],"name":"Minted","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","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WlPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_feeRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"adds","type":"address[]"}],"name":"addBatchWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"Wprice","type":"uint256"},{"internalType":"uint256","name":"Pprice","type":"uint256"}],"name":"adjustCost","outputs":[],"stateMutability":"nonpayable","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":"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":[{"internalType":"uint256","name":"mintNumber","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintStatus","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeWhiteList","outputs":[],"stateMutability":"nonpayable","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":[],"name":"setAllowHolderMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setAllowPublicMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setAllowWhiteListMint","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":"_baseTokenURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"}],"name":"setFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wl","type":"uint256"},{"internalType":"uint256","name":"_pl","type":"uint256"}],"name":"setLimitMintAmount","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":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","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","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052600b80546001600160a01b03191673c5a9bc46a7dbe1c6de493e84a18f02e70e2c5a3217905566b1a2bc2ec50000600d5566d529ae9e860000600e556014600f55600a60105560016011553480156200005c57600080fd5b50604051620031f0380380620031f08339810160408190526200007f91620003b4565b733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601981526020017f5368696273206f6620666f6f7462616c6c2062792024574349000000000000008152506040518060400160405280600681526020016515d0d253919560d21b815250620001036301ffc9a760e01b6200030860201b60201c565b600662000111838262000518565b50600762000120828262000518565b50620001336380ac58cd60e01b62000308565b62000145635b5e139f60e01b62000308565b6200015763780e9d6360e01b62000308565b5050600a80546001600160a01b0319163390811790915560405181906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506daaeb6d7670e522a718067333cd4e3b15620002e15780156200022f57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200021057600080fd5b505af115801562000225573d6000803e3d6000fd5b50505050620002e1565b6001600160a01b03821615620002805760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af290390604401620001f5565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b158015620002c757600080fd5b505af1158015620002dc573d6000803e3d6000fd5b505050505b50620002ef9050816200038c565b50600c80546001600160a01b03191633179055620005e4565b6001600160e01b03198082169003620003675760405162461bcd60e51b815260206004820152601c60248201527f4552433136353a20696e76616c696420696e7465726661636520696400000000604482015260640160405180910390fd5b6001600160e01b0319166000908152602081905260409020805460ff19166001179055565b60096200039a828262000518565b5050565b634e487b7160e01b600052604160045260246000fd5b60006020808385031215620003c857600080fd5b82516001600160401b0380821115620003e057600080fd5b818501915085601f830112620003f557600080fd5b8151818111156200040a576200040a6200039e565b604051601f8201601f19908116603f011681019083821181831017156200043557620004356200039e565b8160405282815288868487010111156200044e57600080fd5b600093505b8284101562000472578484018601518185018701529285019262000453565b600086848301015280965050505050505092915050565b600181811c908216806200049e57607f821691505b602082108103620004bf57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200051357600081815260208120601f850160051c81016020861015620004ee5750805b601f850160051c820191505b818110156200050f57828155600101620004fa565b5050505b505050565b81516001600160401b038111156200053457620005346200039e565b6200054c8162000545845462000489565b84620004c5565b602080601f8311600181146200058457600084156200056b5750858301515b600019600386901b1c1916600185901b1785556200050f565b600085815260208120601f198616915b82811015620005b55788860151825594840194600190910190840162000594565b5085821015620005d45787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b612bfc80620005f46000396000f3fe60806040526004361061021a5760003560e01c80637db4912811610123578063bc0688da116100ab578063e7cd4a041161006f578063e7cd4a041461061c578063e985e9c51461063c578063f2fde38b14610685578063f81a7fba146106a5578063fcaea0d4146106c557600080fd5b8063bc0688da1461058d578063c87b56dd146105a2578063d49d5181146105d0578063d5331163146105e6578063e74b981b146105fc57600080fd5b80639da3f8fd116100f25780639da3f8fd14610505578063a0712d681461051a578063a22cb4651461052d578063a342f2381461054d578063b88d4fde1461056d57600080fd5b80637db491281461049c5780638da5cb5b146104b257806395d89b41146104d05780639b66f995146104e557600080fd5b8063372c12b1116101a65780636352211e116101755780636352211e146104125780636c0360eb1461043257806370a0823114610447578063715018a61461046757806372c985cb1461047c57600080fd5b8063372c12b11461038257806342842e0e146103b25780634f6ccce7146103d257806355f804b3146103f257600080fd5b8063095ea7b3116101ed578063095ea7b3146102df57806318160ddd146102ff5780632042e5c21461032257806323b872dd146103425780632f745c591461036257600080fd5b806301ffc9a71461021f578063026948501461026e57806306fdde0314610285578063081812fc146102a7575b600080fd5b34801561022b57600080fd5b5061025961023a366004612426565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b506102836106da565b005b34801561029157600080fd5b5061029a610714565b6040516102659190612493565b3480156102b357600080fd5b506102c76102c23660046124a6565b6107a6565b6040516001600160a01b039091168152602001610265565b3480156102eb57600080fd5b506102836102fa3660046124db565b61082e565b34801561030b57600080fd5b50610314610943565b604051908152602001610265565b34801561032e57600080fd5b5061028361033d366004612505565b610954565b34801561034e57600080fd5b5061028361035d366004612520565b610a0f565b34801561036e57600080fd5b5061031461037d3660046124db565b610b6b565b34801561038e57600080fd5b5061025961039d366004612505565b60126020526000908152604090205460ff1681565b3480156103be57600080fd5b506102836103cd366004612520565b610b96565b3480156103de57600080fd5b506103146103ed3660046124a6565b610ce7565b3480156103fe57600080fd5b5061028361040d3660046125fb565b610cfd565b34801561041e57600080fd5b506102c761042d3660046124a6565b610d33565b34801561043e57600080fd5b5061029a610d5b565b34801561045357600080fd5b50610314610462366004612505565b610d6a565b34801561047357600080fd5b50610283610df6565b34801561048857600080fd5b50610283610497366004612644565b610e6a565b3480156104a857600080fd5b50610314600d5481565b3480156104be57600080fd5b50600a546001600160a01b03166102c7565b3480156104dc57600080fd5b5061029a610ed8565b3480156104f157600080fd5b506102836105003660046126f1565b610ee7565b34801561051157600080fd5b5061029a610fa2565b6102836105283660046124a6565b611039565b34801561053957600080fd5b50610283610548366004612721565b6113a3565b34801561055957600080fd5b50600c546102c7906001600160a01b031681565b34801561057957600080fd5b50610283610588366004612758565b611467565b34801561059957600080fd5b506102836115c6565b3480156105ae57600080fd5b5061029a6105bd3660046124a6565b5060408051602081019091526000815290565b3480156105dc57600080fd5b5061031461271081565b3480156105f257600080fd5b50610314600e5481565b34801561060857600080fd5b50610283610617366004612505565b6115f7565b34801561062857600080fd5b50610283610637366004612505565b61168e565b34801561064857600080fd5b506102596106573660046127d4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069157600080fd5b506102836106a0366004612505565b611749565b3480156106b157600080fd5b506102836106c03660046126f1565b611834565b3480156106d157600080fd5b506102836118fb565b600a546001600160a01b0316331461070d5760405162461bcd60e51b815260040161070490612807565b60405180910390fd5b6002601155565b6060600680546107239061283c565b80601f016020809104026020016040519081016040528092919081815260200182805461074f9061283c565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b18261192c565b6108125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610704565b506000908152600460205260409020546001600160a01b031690565b600061083982610d33565b9050806001600160a01b0316836001600160a01b0316036108a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610704565b336001600160a01b03821614806108c257506108c28133610657565b6109345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610704565b61093e8383611939565b505050565b600061094f60026119a7565b905090565b600a546001600160a01b0316331461097e5760405162461bcd60e51b815260040161070490612807565b6001600160a01b0381166109ee5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a2043616e27742062652072656d6f7665207a65726f206164646044820152701c995cdcc81a5b881dda1a5d195b1a5cdd607a1b6064820152608401610704565b6001600160a01b03166000908152601260205260409020805460ff19169055565b826daaeb6d7670e522a718067333cd4e3b15610b5a57336001600160a01b03821603610a4557610a408484846119b1565b610b65565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab89190612876565b8015610b3b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3b9190612876565b610b5a57604051633b79c77360e21b8152336004820152602401610704565b610b658484846119b1565b50505050565b6001600160a01b0382166000908152600160205260408120610b8d90836119e2565b90505b92915050565b826daaeb6d7670e522a718067333cd4e3b15610cdc57336001600160a01b03821603610bc757610a408484846119ee565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3a9190612876565b8015610cbd5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbd9190612876565b610cdc57604051633b79c77360e21b8152336004820152602401610704565b610b658484846119ee565b600080610cf5600284611a09565b509392505050565b600a546001600160a01b03163314610d275760405162461bcd60e51b815260040161070490612807565b610d3081611a25565b50565b6000610b9082604051806060016040528060298152602001612b9e6029913960029190611a31565b6060600980546107239061283c565b60006001600160a01b038216610dd55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610704565b6001600160a01b0382166000908152600160205260409020610b90906119a7565b600a546001600160a01b03163314610e205760405162461bcd60e51b815260040161070490612807565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610e945760405162461bcd60e51b815260040161070490612807565b60005b8151811015610ed457610ec2828281518110610eb557610eb5612893565b602002602001015161168e565b80610ecc816128bf565b915050610e97565b5050565b6060600780546107239061283c565b600a546001600160a01b03163314610f115760405162461bcd60e51b815260040161070490612807565b66038d7ea4c680008211610f545760405162461bcd60e51b815260206004820152600a60248201526921b7b9ba1032b93937b960b11b6044820152606401610704565b66038d7ea4c680008111610f975760405162461bcd60e51b815260206004820152600a60248201526921b7b9ba1032b93937b960b11b6044820152606401610704565b600d91909155600e55565b6060601154600103610fdb57506040805180820190915260128152713337b9103bb434ba32b634b9ba103ab9b2b960711b602082015290565b60115460020361101357506040805180820190915260138152721ab5903bb1b4903437b63234b733903ab9b2b960691b602082015290565b5060408051808201909152600b81526a1c1d589b1a58c81b5a5b9d60aa1b602082015290565b600b546040516370a0823160e01b8152336004820152600091829182916001600160a01b0316906370a0823190602401602060405180830381865afa158015611086573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110aa91906128d8565b65048c2739500011159050601154600103611123573360009081526012602052604090205460ff1661111e5760405162461bcd60e51b815260206004820152601760248201527f43616e27742066696e6420696e2077686974656c6973740000000000000000006044820152606401610704565b61117a565b60115460020361117a578061117a5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f6e2774206861766520356b2077636920746f6b656e73000000006044820152606401610704565b3360009081526012602052604090205460ff16156111a157600d549250600f5491506111c1565b80156111b657600d54925060105491506111c1565b600e54925060105491505b6111cb84846128f1565b34101561120f5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610704565b6127108461121b610943565b6112259190612908565b106112645760405162461bcd60e51b815260206004820152600f60248201526e119d5b199a5b1b1959081b1a5b5a5d608a1b6044820152606401610704565b336000908152601360205260409020548290611281908690612908565b11156112bd5760405162461bcd60e51b815260206004820152600b60248201526a2634b6b4ba1032b93937b960a91b6044820152606401610704565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156112f6573d6000803e3d6000fd5b5060005b8481101561136157600061130c610943565b611317906001612908565b90506113233382611a48565b3360009081526013602052604090205461133e906001612908565b336000908152601360205260409020555080611359816128bf565b9150506112fa565b50604080518481526020810186905233917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a250505050565b336001600160a01b038316036113fb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610704565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b156115b357336001600160a01b0382160361149e5761149985858585611a62565b6115bf565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115119190612876565b80156115945750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611570573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115949190612876565b6115b357604051633b79c77360e21b8152336004820152602401610704565b6115bf85858585611a62565b5050505050565b600a546001600160a01b031633146115f05760405162461bcd60e51b815260040161070490612807565b6001601155565b600a546001600160a01b031633146116215760405162461bcd60e51b815260040161070490612807565b6001600160a01b03811661166c5760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b6044820152606401610704565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146116b85760405162461bcd60e51b815260040161070490612807565b6001600160a01b0381166117255760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2043616e277420626520616464207a65726f2061646472657360448201526d1cc81a5b881dda1a5d195b1a5cdd60921b6064820152608401610704565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b600a546001600160a01b031633146117735760405162461bcd60e51b815260040161070490612807565b6001600160a01b0381166117d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610704565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461185e5760405162461bcd60e51b815260040161070490612807565b600082116118a75760405162461bcd60e51b81526020600482015260166024820152752634b6b4ba1030b6b7bab73a1039b2ba1032b93937b960511b6044820152606401610704565b600081116118f05760405162461bcd60e51b81526020600482015260166024820152752634b6b4ba1030b6b7bab73a1039b2ba1032b93937b960511b6044820152606401610704565b600f91909155601055565b600a546001600160a01b031633146119255760405162461bcd60e51b815260040161070490612807565b6003601155565b6000610b90600283611a94565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196e82610d33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b90825490565b6119bb3382611aac565b6119d75760405162461bcd60e51b81526004016107049061291b565b61093e838383611b96565b6000610b8d8383611d17565b61093e83838360405180602001604052806000815250611467565b6000808080611a188686611d9d565b9097909650945050505050565b6009610ed482826129ba565b6000611a3e848484611e3a565b90505b9392505050565b610ed4828260405180602001604052806000815250611ea3565b611a6c3383611aac565b611a885760405162461bcd60e51b81526004016107049061291b565b610b6584848484611ed6565b60008181526001830160205260408120541515610b8d565b6000611ab78261192c565b611b185760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610704565b6000611b2383610d33565b9050806001600160a01b0316846001600160a01b03161480611b5e5750836001600160a01b0316611b53846107a6565b6001600160a01b0316145b80611b8e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ba982610d33565b6001600160a01b031614611c115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610704565b6001600160a01b038216611c735760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610704565b611c7e600082611939565b6001600160a01b0383166000908152600160205260409020611ca09082611f09565b506001600160a01b0382166000908152600160205260409020611cc39082611f15565b50611cd060028284611f21565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b81546000908210611d755760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610704565b826000018281548110611d8a57611d8a612893565b9060005260206000200154905092915050565b815460009081908310611dfd5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610704565b6000846000018481548110611e1457611e14612893565b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611e6a5760405162461bcd60e51b81526004016107049190612493565b5084611e77600183612a7a565b81548110611e8757611e87612893565b9060005260206000209060020201600101549150509392505050565b611ead8383611f37565b611eba600084848461204f565b61093e5760405162461bcd60e51b815260040161070490612a8d565b611ee1848484611b96565b611eed8484848461204f565b610b655760405162461bcd60e51b815260040161070490612a8d565b6000610b8d8383612120565b6000610b8d8383612213565b6000611a3e84846001600160a01b038516612262565b6001600160a01b038216611f8d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610704565b611f968161192c565b15611fe35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610704565b6001600160a01b03821660009081526001602052604090206120059082611f15565b5061201260028284611f21565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b61206857506001611b8e565b60006120e9630a85bd0160e11b3388878760405160240161208c9493929190612adf565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612b6c603291396001600160a01b0388169190612305565b90506000818060200190518101906121019190612b1c565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612209576000612144600183612a7a565b855490915060009061215890600190612a7a565b9050600086600001828154811061217157612171612893565b906000526020600020015490508087600001848154811061219457612194612893565b6000918252602090912001556121ab836001612908565b600082815260018901602052604090205586548790806121cd576121cd612b39565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b90565b6000915050610b90565b600081815260018301602052604081205461225a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b90565b506000610b90565b60008281526001840160205260408120548082036122c9575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611a41565b82856122d6600184612a7a565b815481106122e6576122e6612893565b9060005260206000209060020201600101819055506000915050611a41565b6060611a3e848460008585843b61235e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610704565b600080866001600160a01b0316858760405161237a9190612b4f565b60006040518083038185875af1925050503d80600081146123b7576040519150601f19603f3d011682016040523d82523d6000602084013e6123bc565b606091505b50915091506123cc8282866123d7565b979650505050505050565b606083156123e6575081611a41565b8251156123f65782518084602001fd5b8160405162461bcd60e51b81526004016107049190612493565b6001600160e01b031981168114610d3057600080fd5b60006020828403121561243857600080fd5b8135611a4181612410565b60005b8381101561245e578181015183820152602001612446565b50506000910152565b6000815180845261247f816020860160208601612443565b601f01601f19169290920160200192915050565b602081526000610b8d6020830184612467565b6000602082840312156124b857600080fd5b5035919050565b80356001600160a01b03811681146124d657600080fd5b919050565b600080604083850312156124ee57600080fd5b6124f7836124bf565b946020939093013593505050565b60006020828403121561251757600080fd5b610b8d826124bf565b60008060006060848603121561253557600080fd5b61253e846124bf565b925061254c602085016124bf565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561259b5761259b61255c565b604052919050565b600067ffffffffffffffff8311156125bd576125bd61255c565b6125d0601f8401601f1916602001612572565b90508281528383830111156125e457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561260d57600080fd5b813567ffffffffffffffff81111561262457600080fd5b8201601f8101841361263557600080fd5b611b8e848235602084016125a3565b6000602080838503121561265757600080fd5b823567ffffffffffffffff8082111561266f57600080fd5b818501915085601f83011261268357600080fd5b8135818111156126955761269561255c565b8060051b91506126a6848301612572565b81815291830184019184810190888411156126c057600080fd5b938501935b838510156126e5576126d6856124bf565b825293850193908501906126c5565b98975050505050505050565b6000806040838503121561270457600080fd5b50508035926020909101359150565b8015158114610d3057600080fd5b6000806040838503121561273457600080fd5b61273d836124bf565b9150602083013561274d81612713565b809150509250929050565b6000806000806080858703121561276e57600080fd5b612777856124bf565b9350612785602086016124bf565b925060408501359150606085013567ffffffffffffffff8111156127a857600080fd5b8501601f810187136127b957600080fd5b6127c8878235602084016125a3565b91505092959194509250565b600080604083850312156127e757600080fd5b6127f0836124bf565b91506127fe602084016124bf565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061285057607f821691505b60208210810361287057634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561288857600080fd5b8151611a4181612713565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016128d1576128d16128a9565b5060010190565b6000602082840312156128ea57600080fd5b5051919050565b8082028115828204841417610b9057610b906128a9565b80820180821115610b9057610b906128a9565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b601f82111561093e57600081815260208120601f850160051c810160208610156129935750805b601f850160051c820191505b818110156129b25782815560010161299f565b505050505050565b815167ffffffffffffffff8111156129d4576129d461255c565b6129e8816129e2845461283c565b8461296c565b602080601f831160018114612a1d5760008415612a055750858301515b600019600386901b1c1916600185901b1785556129b2565b600085815260208120601f198616915b82811015612a4c57888601518255948401946001909101908401612a2d565b5085821015612a6a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610b9057610b906128a9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b1290830184612467565b9695505050505050565b600060208284031215612b2e57600080fd5b8151611a4181612410565b634e487b7160e01b600052603160045260246000fd5b60008251612b61818460208701612443565b919091019291505056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f8e859a42e8e0a028bbaa1dd4e0df1e2195d5a274f59354b6571bb33272458cf64736f6c634300081100330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d636b4c51397837314e614664707a55754c65566771577978693648793178476b52514c44594d4d324543414c2f00000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80637db4912811610123578063bc0688da116100ab578063e7cd4a041161006f578063e7cd4a041461061c578063e985e9c51461063c578063f2fde38b14610685578063f81a7fba146106a5578063fcaea0d4146106c557600080fd5b8063bc0688da1461058d578063c87b56dd146105a2578063d49d5181146105d0578063d5331163146105e6578063e74b981b146105fc57600080fd5b80639da3f8fd116100f25780639da3f8fd14610505578063a0712d681461051a578063a22cb4651461052d578063a342f2381461054d578063b88d4fde1461056d57600080fd5b80637db491281461049c5780638da5cb5b146104b257806395d89b41146104d05780639b66f995146104e557600080fd5b8063372c12b1116101a65780636352211e116101755780636352211e146104125780636c0360eb1461043257806370a0823114610447578063715018a61461046757806372c985cb1461047c57600080fd5b8063372c12b11461038257806342842e0e146103b25780634f6ccce7146103d257806355f804b3146103f257600080fd5b8063095ea7b3116101ed578063095ea7b3146102df57806318160ddd146102ff5780632042e5c21461032257806323b872dd146103425780632f745c591461036257600080fd5b806301ffc9a71461021f578063026948501461026e57806306fdde0314610285578063081812fc146102a7575b600080fd5b34801561022b57600080fd5b5061025961023a366004612426565b6001600160e01b03191660009081526020819052604090205460ff1690565b60405190151581526020015b60405180910390f35b34801561027a57600080fd5b506102836106da565b005b34801561029157600080fd5b5061029a610714565b6040516102659190612493565b3480156102b357600080fd5b506102c76102c23660046124a6565b6107a6565b6040516001600160a01b039091168152602001610265565b3480156102eb57600080fd5b506102836102fa3660046124db565b61082e565b34801561030b57600080fd5b50610314610943565b604051908152602001610265565b34801561032e57600080fd5b5061028361033d366004612505565b610954565b34801561034e57600080fd5b5061028361035d366004612520565b610a0f565b34801561036e57600080fd5b5061031461037d3660046124db565b610b6b565b34801561038e57600080fd5b5061025961039d366004612505565b60126020526000908152604090205460ff1681565b3480156103be57600080fd5b506102836103cd366004612520565b610b96565b3480156103de57600080fd5b506103146103ed3660046124a6565b610ce7565b3480156103fe57600080fd5b5061028361040d3660046125fb565b610cfd565b34801561041e57600080fd5b506102c761042d3660046124a6565b610d33565b34801561043e57600080fd5b5061029a610d5b565b34801561045357600080fd5b50610314610462366004612505565b610d6a565b34801561047357600080fd5b50610283610df6565b34801561048857600080fd5b50610283610497366004612644565b610e6a565b3480156104a857600080fd5b50610314600d5481565b3480156104be57600080fd5b50600a546001600160a01b03166102c7565b3480156104dc57600080fd5b5061029a610ed8565b3480156104f157600080fd5b506102836105003660046126f1565b610ee7565b34801561051157600080fd5b5061029a610fa2565b6102836105283660046124a6565b611039565b34801561053957600080fd5b50610283610548366004612721565b6113a3565b34801561055957600080fd5b50600c546102c7906001600160a01b031681565b34801561057957600080fd5b50610283610588366004612758565b611467565b34801561059957600080fd5b506102836115c6565b3480156105ae57600080fd5b5061029a6105bd3660046124a6565b5060408051602081019091526000815290565b3480156105dc57600080fd5b5061031461271081565b3480156105f257600080fd5b50610314600e5481565b34801561060857600080fd5b50610283610617366004612505565b6115f7565b34801561062857600080fd5b50610283610637366004612505565b61168e565b34801561064857600080fd5b506102596106573660046127d4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561069157600080fd5b506102836106a0366004612505565b611749565b3480156106b157600080fd5b506102836106c03660046126f1565b611834565b3480156106d157600080fd5b506102836118fb565b600a546001600160a01b0316331461070d5760405162461bcd60e51b815260040161070490612807565b60405180910390fd5b6002601155565b6060600680546107239061283c565b80601f016020809104026020016040519081016040528092919081815260200182805461074f9061283c565b801561079c5780601f106107715761010080835404028352916020019161079c565b820191906000526020600020905b81548152906001019060200180831161077f57829003601f168201915b5050505050905090565b60006107b18261192c565b6108125760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610704565b506000908152600460205260409020546001600160a01b031690565b600061083982610d33565b9050806001600160a01b0316836001600160a01b0316036108a65760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610704565b336001600160a01b03821614806108c257506108c28133610657565b6109345760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610704565b61093e8383611939565b505050565b600061094f60026119a7565b905090565b600a546001600160a01b0316331461097e5760405162461bcd60e51b815260040161070490612807565b6001600160a01b0381166109ee5760405162461bcd60e51b815260206004820152603160248201527f4552433732313a2043616e27742062652072656d6f7665207a65726f206164646044820152701c995cdcc81a5b881dda1a5d195b1a5cdd607a1b6064820152608401610704565b6001600160a01b03166000908152601260205260409020805460ff19169055565b826daaeb6d7670e522a718067333cd4e3b15610b5a57336001600160a01b03821603610a4557610a408484846119b1565b610b65565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610a94573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ab89190612876565b8015610b3b5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610b17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b3b9190612876565b610b5a57604051633b79c77360e21b8152336004820152602401610704565b610b658484846119b1565b50505050565b6001600160a01b0382166000908152600160205260408120610b8d90836119e2565b90505b92915050565b826daaeb6d7670e522a718067333cd4e3b15610cdc57336001600160a01b03821603610bc757610a408484846119ee565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c16573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c3a9190612876565b8015610cbd5750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015610c99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cbd9190612876565b610cdc57604051633b79c77360e21b8152336004820152602401610704565b610b658484846119ee565b600080610cf5600284611a09565b509392505050565b600a546001600160a01b03163314610d275760405162461bcd60e51b815260040161070490612807565b610d3081611a25565b50565b6000610b9082604051806060016040528060298152602001612b9e6029913960029190611a31565b6060600980546107239061283c565b60006001600160a01b038216610dd55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610704565b6001600160a01b0382166000908152600160205260409020610b90906119a7565b600a546001600160a01b03163314610e205760405162461bcd60e51b815260040161070490612807565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610e945760405162461bcd60e51b815260040161070490612807565b60005b8151811015610ed457610ec2828281518110610eb557610eb5612893565b602002602001015161168e565b80610ecc816128bf565b915050610e97565b5050565b6060600780546107239061283c565b600a546001600160a01b03163314610f115760405162461bcd60e51b815260040161070490612807565b66038d7ea4c680008211610f545760405162461bcd60e51b815260206004820152600a60248201526921b7b9ba1032b93937b960b11b6044820152606401610704565b66038d7ea4c680008111610f975760405162461bcd60e51b815260206004820152600a60248201526921b7b9ba1032b93937b960b11b6044820152606401610704565b600d91909155600e55565b6060601154600103610fdb57506040805180820190915260128152713337b9103bb434ba32b634b9ba103ab9b2b960711b602082015290565b60115460020361101357506040805180820190915260138152721ab5903bb1b4903437b63234b733903ab9b2b960691b602082015290565b5060408051808201909152600b81526a1c1d589b1a58c81b5a5b9d60aa1b602082015290565b600b546040516370a0823160e01b8152336004820152600091829182916001600160a01b0316906370a0823190602401602060405180830381865afa158015611086573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110aa91906128d8565b65048c2739500011159050601154600103611123573360009081526012602052604090205460ff1661111e5760405162461bcd60e51b815260206004820152601760248201527f43616e27742066696e6420696e2077686974656c6973740000000000000000006044820152606401610704565b61117a565b60115460020361117a578061117a5760405162461bcd60e51b815260206004820152601c60248201527f596f7520646f6e2774206861766520356b2077636920746f6b656e73000000006044820152606401610704565b3360009081526012602052604090205460ff16156111a157600d549250600f5491506111c1565b80156111b657600d54925060105491506111c1565b600e54925060105491505b6111cb84846128f1565b34101561120f5760405162461bcd60e51b8152602060048201526012602482015271496e73756666696369656e742066756e647360701b6044820152606401610704565b6127108461121b610943565b6112259190612908565b106112645760405162461bcd60e51b815260206004820152600f60248201526e119d5b199a5b1b1959081b1a5b5a5d608a1b6044820152606401610704565b336000908152601360205260409020548290611281908690612908565b11156112bd5760405162461bcd60e51b815260206004820152600b60248201526a2634b6b4ba1032b93937b960a91b6044820152606401610704565b600c546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156112f6573d6000803e3d6000fd5b5060005b8481101561136157600061130c610943565b611317906001612908565b90506113233382611a48565b3360009081526013602052604090205461133e906001612908565b336000908152601360205260409020555080611359816128bf565b9150506112fa565b50604080518481526020810186905233917f25b428dfde728ccfaddad7e29e4ac23c24ed7fd1a6e3e3f91894a9a073f5dfff910160405180910390a250505050565b336001600160a01b038316036113fb5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610704565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b836daaeb6d7670e522a718067333cd4e3b156115b357336001600160a01b0382160361149e5761149985858585611a62565b6115bf565b604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa1580156114ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115119190612876565b80156115945750604051633185c44d60e21b81523060048201526001600160a01b03821660248201526daaeb6d7670e522a718067333cd4e9063c617113490604401602060405180830381865afa158015611570573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115949190612876565b6115b357604051633b79c77360e21b8152336004820152602401610704565b6115bf85858585611a62565b5050505050565b600a546001600160a01b031633146115f05760405162461bcd60e51b815260040161070490612807565b6001601155565b600a546001600160a01b031633146116215760405162461bcd60e51b815260040161070490612807565b6001600160a01b03811661166c5760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b6044820152606401610704565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146116b85760405162461bcd60e51b815260040161070490612807565b6001600160a01b0381166117255760405162461bcd60e51b815260206004820152602e60248201527f4552433732313a2043616e277420626520616464207a65726f2061646472657360448201526d1cc81a5b881dda1a5d195b1a5cdd60921b6064820152608401610704565b6001600160a01b03166000908152601260205260409020805460ff19166001179055565b600a546001600160a01b031633146117735760405162461bcd60e51b815260040161070490612807565b6001600160a01b0381166117d85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610704565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461185e5760405162461bcd60e51b815260040161070490612807565b600082116118a75760405162461bcd60e51b81526020600482015260166024820152752634b6b4ba1030b6b7bab73a1039b2ba1032b93937b960511b6044820152606401610704565b600081116118f05760405162461bcd60e51b81526020600482015260166024820152752634b6b4ba1030b6b7bab73a1039b2ba1032b93937b960511b6044820152606401610704565b600f91909155601055565b600a546001600160a01b031633146119255760405162461bcd60e51b815260040161070490612807565b6003601155565b6000610b90600283611a94565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061196e82610d33565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000610b90825490565b6119bb3382611aac565b6119d75760405162461bcd60e51b81526004016107049061291b565b61093e838383611b96565b6000610b8d8383611d17565b61093e83838360405180602001604052806000815250611467565b6000808080611a188686611d9d565b9097909650945050505050565b6009610ed482826129ba565b6000611a3e848484611e3a565b90505b9392505050565b610ed4828260405180602001604052806000815250611ea3565b611a6c3383611aac565b611a885760405162461bcd60e51b81526004016107049061291b565b610b6584848484611ed6565b60008181526001830160205260408120541515610b8d565b6000611ab78261192c565b611b185760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610704565b6000611b2383610d33565b9050806001600160a01b0316846001600160a01b03161480611b5e5750836001600160a01b0316611b53846107a6565b6001600160a01b0316145b80611b8e57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ba982610d33565b6001600160a01b031614611c115760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610704565b6001600160a01b038216611c735760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610704565b611c7e600082611939565b6001600160a01b0383166000908152600160205260409020611ca09082611f09565b506001600160a01b0382166000908152600160205260409020611cc39082611f15565b50611cd060028284611f21565b5080826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b81546000908210611d755760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610704565b826000018281548110611d8a57611d8a612893565b9060005260206000200154905092915050565b815460009081908310611dfd5760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c654d61703a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610704565b6000846000018481548110611e1457611e14612893565b906000526020600020906002020190508060000154816001015492509250509250929050565b60008281526001840160205260408120548281611e6a5760405162461bcd60e51b81526004016107049190612493565b5084611e77600183612a7a565b81548110611e8757611e87612893565b9060005260206000209060020201600101549150509392505050565b611ead8383611f37565b611eba600084848461204f565b61093e5760405162461bcd60e51b815260040161070490612a8d565b611ee1848484611b96565b611eed8484848461204f565b610b655760405162461bcd60e51b815260040161070490612a8d565b6000610b8d8383612120565b6000610b8d8383612213565b6000611a3e84846001600160a01b038516612262565b6001600160a01b038216611f8d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610704565b611f968161192c565b15611fe35760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610704565b6001600160a01b03821660009081526001602052604090206120059082611f15565b5061201260028284611f21565b5060405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b61206857506001611b8e565b60006120e9630a85bd0160e11b3388878760405160240161208c9493929190612adf565b604051602081830303815290604052906001600160e01b0319166020820180516001600160e01b038381831617835250505050604051806060016040528060328152602001612b6c603291396001600160a01b0388169190612305565b90506000818060200190518101906121019190612b1c565b6001600160e01b031916630a85bd0160e11b1492505050949350505050565b60008181526001830160205260408120548015612209576000612144600183612a7a565b855490915060009061215890600190612a7a565b9050600086600001828154811061217157612171612893565b906000526020600020015490508087600001848154811061219457612194612893565b6000918252602090912001556121ab836001612908565b600082815260018901602052604090205586548790806121cd576121cd612b39565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610b90565b6000915050610b90565b600081815260018301602052604081205461225a57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610b90565b506000610b90565b60008281526001840160205260408120548082036122c9575050604080518082018252838152602080820184815286546001818101895560008981528481209551600290930290950191825591519082015586548684528188019092529290912055611a41565b82856122d6600184612a7a565b815481106122e6576122e6612893565b9060005260206000209060020201600101819055506000915050611a41565b6060611a3e848460008585843b61235e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610704565b600080866001600160a01b0316858760405161237a9190612b4f565b60006040518083038185875af1925050503d80600081146123b7576040519150601f19603f3d011682016040523d82523d6000602084013e6123bc565b606091505b50915091506123cc8282866123d7565b979650505050505050565b606083156123e6575081611a41565b8251156123f65782518084602001fd5b8160405162461bcd60e51b81526004016107049190612493565b6001600160e01b031981168114610d3057600080fd5b60006020828403121561243857600080fd5b8135611a4181612410565b60005b8381101561245e578181015183820152602001612446565b50506000910152565b6000815180845261247f816020860160208601612443565b601f01601f19169290920160200192915050565b602081526000610b8d6020830184612467565b6000602082840312156124b857600080fd5b5035919050565b80356001600160a01b03811681146124d657600080fd5b919050565b600080604083850312156124ee57600080fd5b6124f7836124bf565b946020939093013593505050565b60006020828403121561251757600080fd5b610b8d826124bf565b60008060006060848603121561253557600080fd5b61253e846124bf565b925061254c602085016124bf565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff8111828210171561259b5761259b61255c565b604052919050565b600067ffffffffffffffff8311156125bd576125bd61255c565b6125d0601f8401601f1916602001612572565b90508281528383830111156125e457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561260d57600080fd5b813567ffffffffffffffff81111561262457600080fd5b8201601f8101841361263557600080fd5b611b8e848235602084016125a3565b6000602080838503121561265757600080fd5b823567ffffffffffffffff8082111561266f57600080fd5b818501915085601f83011261268357600080fd5b8135818111156126955761269561255c565b8060051b91506126a6848301612572565b81815291830184019184810190888411156126c057600080fd5b938501935b838510156126e5576126d6856124bf565b825293850193908501906126c5565b98975050505050505050565b6000806040838503121561270457600080fd5b50508035926020909101359150565b8015158114610d3057600080fd5b6000806040838503121561273457600080fd5b61273d836124bf565b9150602083013561274d81612713565b809150509250929050565b6000806000806080858703121561276e57600080fd5b612777856124bf565b9350612785602086016124bf565b925060408501359150606085013567ffffffffffffffff8111156127a857600080fd5b8501601f810187136127b957600080fd5b6127c8878235602084016125a3565b91505092959194509250565b600080604083850312156127e757600080fd5b6127f0836124bf565b91506127fe602084016124bf565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061285057607f821691505b60208210810361287057634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561288857600080fd5b8151611a4181612713565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016128d1576128d16128a9565b5060010190565b6000602082840312156128ea57600080fd5b5051919050565b8082028115828204841417610b9057610b906128a9565b80820180821115610b9057610b906128a9565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b601f82111561093e57600081815260208120601f850160051c810160208610156129935750805b601f850160051c820191505b818110156129b25782815560010161299f565b505050505050565b815167ffffffffffffffff8111156129d4576129d461255c565b6129e8816129e2845461283c565b8461296c565b602080601f831160018114612a1d5760008415612a055750858301515b600019600386901b1c1916600185901b1785556129b2565b600085815260208120601f198616915b82811015612a4c57888601518255948401946001909101908401612a2d565b5085821015612a6a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b81810381811115610b9057610b906128a9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612b1290830184612467565b9695505050505050565b600060208284031215612b2e57600080fd5b8151611a4181612410565b634e487b7160e01b600052603160045260246000fd5b60008251612b61818460208701612443565b919091019291505056fe4552433732313a207472616e7366657220746f206e6f6e20455243373231526563656976657220696d706c656d656e7465724552433732313a206f776e657220717565727920666f72206e6f6e6578697374656e7420746f6b656ea2646970667358221220f8e859a42e8e0a028bbaa1dd4e0df1e2195d5a274f59354b6571bb33272458cf64736f6c63430008110033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000004d68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d636b4c51397837314e614664707a55754c65566771577978693648793178476b52514c44594d4d324543414c2f00000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _baseTokenURI (string): https://ipfs.filebase.io/ipfs/QmckLQ9x71NaFdpzUuLeVgqWyxi6Hy1xGkRQLDYMM2ECAL/

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000004d
Arg [2] : 68747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d
Arg [3] : 636b4c51397837314e614664707a55754c65566771577978693648793178476b
Arg [4] : 52514c44594d4d324543414c2f00000000000000000000000000000000000000


Deployed Bytecode Sourcemap

72098:4877:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10040:200;;;;;;;;;;-1:-1:-1;10040:200:0;;;;;:::i;:::-;-1:-1:-1;;;;;;10199:33:0;10170:4;10199:33;;;;;;;;;;;;;;10040:200;;;;565:14:1;;558:22;540:41;;528:2;513:18;10040:200:0;;;;;;;;75051:76;;;;;;;;;;;;;:::i;:::-;;50467:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53484:308::-;;;;;;;;;;-1:-1:-1;53484:308:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;53484:308:0;1533:203:1;52983:435:0;;;;;;;;;;-1:-1:-1;52983:435:0;;;;;:::i;:::-;;:::i;52411:211::-;;;;;;;;;;;;;:::i;:::-;;;2324:25:1;;;2312:2;2297:18;52411:211:0;2178:177:1;76734:238:0;;;;;;;;;;-1:-1:-1;76734:238:0;;;;;:::i;:::-;;:::i;72955:197::-;;;;;;;;;;-1:-1:-1;72955:197:0;;;;;:::i;:::-;;:::i;52123:212::-;;;;;;;;;;-1:-1:-1;52123:212:0;;;;;:::i;:::-;;:::i;72598:41::-;;;;;;;;;;-1:-1:-1;72598:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;73160:205;;;;;;;;;;-1:-1:-1;73160:205:0;;;;;:::i;:::-;;:::i;52699:222::-;;;;;;;;;;-1:-1:-1;52699:222:0;;;;;:::i;:::-;;:::i;76190:111::-;;;;;;;;;;-1:-1:-1;76190:111:0;;;;;:::i;:::-;;:::i;50111:289::-;;;;;;;;;;-1:-1:-1;50111:289:0;;;;;:::i;:::-;;:::i;51942:97::-;;;;;;;;;;;;;:::i;49741:308::-;;;;;;;;;;-1:-1:-1;49741:308:0;;;;;:::i;:::-;;:::i;65621:148::-;;;;;;;;;;;;;:::i;76309:176::-;;;;;;;;;;-1:-1:-1;76309:176:0;;;;;:::i;:::-;;:::i;72351:42::-;;;;;;;;;;;;;;;;64970:87;;;;;;;;;;-1:-1:-1;65043:6:0;;-1:-1:-1;;;;;65043:6:0;64970:87;;50636:104;;;;;;;;;;;;;:::i;75505:253::-;;;;;;;;;;-1:-1:-1;75505:253:0;;;;;:::i;:::-;;:::i;75219:278::-;;;;;;;;;;;;;:::i;73728:1228::-;;;;;;:::i;:::-;;:::i;53864:327::-;;;;;;;;;;-1:-1:-1;53864:327:0;;;;;:::i;:::-;;:::i;72316:28::-;;;;;;;;;;-1:-1:-1;72316:28:0;;;;-1:-1:-1;;;;;72316:28:0;;;73373:239;;;;;;;;;;-1:-1:-1;73373:239:0;;;;;:::i;:::-;;:::i;74964:79::-;;;;;;;;;;;;;:::i;73620:100::-;;;;;;;;;;-1:-1:-1;73620:100:0;;;;;:::i;:::-;-1:-1:-1;73703:9:0;;;;;;;;;-1:-1:-1;73703:9:0;;;73620:100;72519:35;;;;;;;;;;;;72549:5;72519:35;;72400:42;;;;;;;;;;;;;;;;76009:173;;;;;;;;;;-1:-1:-1;76009:173:0;;;;;:::i;:::-;;:::i;76493:233::-;;;;;;;;;;-1:-1:-1;76493:233:0;;;;;:::i;:::-;;:::i;54262:214::-;;;;;;;;;;-1:-1:-1;54262:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;54433:25:0;;;54404:4;54433:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;54262:214;65924:281;;;;;;;;;;-1:-1:-1;65924:281:0;;;;;:::i;:::-;;:::i;75766:235::-;;;;;;;;;;-1:-1:-1;75766:235:0;;;;;:::i;:::-;;:::i;75135:76::-;;;;;;;;;;;;;:::i;75051:::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;;;;;;;;;75118:1:::1;75109:6;:10:::0;75051:76::o;50467:100::-;50521:13;50554:5;50547:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50467:100;:::o;53484:308::-;53605:7;53652:16;53660:7;53652;:16::i;:::-;53630:110;;;;-1:-1:-1;;;53630:110:0;;7702:2:1;53630:110:0;;;7684:21:1;7741:2;7721:18;;;7714:30;7780:34;7760:18;;;7753:62;-1:-1:-1;;;7831:18:1;;;7824:42;7883:19;;53630:110:0;7500:408:1;53630:110:0;-1:-1:-1;53760:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;53760:24:0;;53484:308::o;52983:435::-;53064:13;53080:23;53095:7;53080:14;:23::i;:::-;53064:39;;53128:5;-1:-1:-1;;;;;53122:11:0;:2;-1:-1:-1;;;;;53122:11:0;;53114:57;;;;-1:-1:-1;;;53114:57:0;;8115:2:1;53114:57:0;;;8097:21:1;8154:2;8134:18;;;8127:30;8193:34;8173:18;;;8166:62;-1:-1:-1;;;8244:18:1;;;8237:31;8285:19;;53114:57:0;7913:397:1;53114:57:0;761:10;-1:-1:-1;;;;;53206:21:0;;;;:86;;-1:-1:-1;53248:44:0;53272:5;761:10;54262:214;:::i;53248:44::-;53184:192;;;;-1:-1:-1;;;53184:192:0;;8517:2:1;53184:192:0;;;8499:21:1;8556:2;8536:18;;;8529:30;8595:34;8575:18;;;8568:62;8666:26;8646:18;;;8639:54;8710:19;;53184:192:0;8315:420:1;53184:192:0;53389:21;53398:2;53402:7;53389:8;:21::i;:::-;53053:365;52983:435;;:::o;52411:211::-;52472:7;52593:21;:12;:19;:21::i;:::-;52586:28;;52411:211;:::o;76734:238::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;76827:22:0;::::1;76805:121;;;::::0;-1:-1:-1;;;76805:121:0;;8942:2:1;76805:121:0::1;::::0;::::1;8924:21:1::0;8981:2;8961:18;;;8954:30;9020:34;9000:18;;;8993:62;-1:-1:-1;;;9071:18:1;;;9064:47;9128:19;;76805:121:0::1;8740:413:1::0;76805:121:0::1;-1:-1:-1::0;;;;;76937:19:0::1;76959:5;76937:19:::0;;;:9:::1;:19;::::0;;;;:27;;-1:-1:-1;;76937:27:0::1;::::0;;76734:238::o;72955:197::-;73090:4;68935:42;70209:43;:47;70205:789;;70496:10;-1:-1:-1;;;;;70488:18:0;;;70484:85;;73107:37:::1;73126:4;73132:2;73136:7;73107:18;:37::i;:::-;70547:7:::0;;70484:85;70607:128;;-1:-1:-1;;;70607:128:0;;70678:4;70607:128;;;9370:34:1;70706:10:0;9420:18:1;;;9413:43;68935:42:0;;70607:40;;9305:18:1;;70607:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;-1:-1:-1;70760:134:0;;-1:-1:-1;;;70760:134:0;;70835:4;70760:134;;;9370:34:1;-1:-1:-1;;;;;9440:15:1;;9420:18;;;9413:43;68935:42:0;;70760:40;;9305:18:1;;70760:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70583:400;;70937:30;;-1:-1:-1;;;70937:30:0;;70956:10;70937:30;;;1679:51:1;1652:18;;70937:30:0;1533:203:1;70583:400:0;73107:37:::1;73126:4;73132:2;73136:7;73107:18;:37::i;:::-;72955:197:::0;;;;:::o;52123:212::-;-1:-1:-1;;;;;52297:20:0;;52265:7;52297:20;;;:13;:20;;;;;:30;;52321:5;52297:23;:30::i;:::-;52290:37;;52123:212;;;;;:::o;73160:205::-;73299:4;68935:42;70209:43;:47;70205:789;;70496:10;-1:-1:-1;;;;;70488:18:0;;;70484:85;;73316:41:::1;73339:4;73345:2;73349:7;73316:22;:41::i;70484:85::-:0;70607:128;;-1:-1:-1;;;70607:128:0;;70678:4;70607:128;;;9370:34:1;70706:10:0;9420:18:1;;;9413:43;68935:42:0;;70607:40;;9305:18:1;;70607:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;-1:-1:-1;70760:134:0;;-1:-1:-1;;;70760:134:0;;70835:4;70760:134;;;9370:34:1;-1:-1:-1;;;;;9440:15:1;;9420:18;;;9413:43;68935:42:0;;70760:40;;9305:18:1;;70760:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70583:400;;70937:30;;-1:-1:-1;;;70937:30:0;;70956:10;70937:30;;;1679:51:1;1652:18;;70937:30:0;1533:203:1;70583:400:0;73316:41:::1;73339:4;73345:2;73349:7;73316:22;:41::i;52699:222::-:0;52819:7;;52866:22;:12;52882:5;52866:15;:22::i;:::-;-1:-1:-1;52844:44:0;52699:222;-1:-1:-1;;;52699:222:0:o;76190:111::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;76267:26:::1;76279:13;76267:11;:26::i;:::-;76190:111:::0;:::o;50111:289::-;50228:7;50273:119;50308:7;50273:119;;;;;;;;;;;;;;;;;:12;;:119;:16;:119::i;51942:97::-;51990:13;52023:8;52016:15;;;;;:::i;49741:308::-;49858:7;-1:-1:-1;;;;;49905:19:0;;49883:111;;;;-1:-1:-1;;;49883:111:0;;9919:2:1;49883:111:0;;;9901:21:1;9958:2;9938:18;;;9931:30;9997:34;9977:18;;;9970:62;-1:-1:-1;;;10048:18:1;;;10041:40;10098:19;;49883:111:0;9717:406:1;49883:111:0;-1:-1:-1;;;;;50012:20:0;;;;;;:13;:20;;;;;:29;;:27;:29::i;65621:148::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;65712:6:::1;::::0;65691:40:::1;::::0;65728:1:::1;::::0;-1:-1:-1;;;;;65712:6:0::1;::::0;65691:40:::1;::::0;65728:1;;65691:40:::1;65742:6;:19:::0;;-1:-1:-1;;;;;;65742:19:0::1;::::0;;65621:148::o;76309:176::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;76393:6:::1;76389:87;76409:4;:11;76405:1;:15;76389:87;;;76443:21;76456:4;76461:1;76456:7;;;;;;;;:::i;:::-;;;;;;;76443:12;:21::i;:::-;76422:3:::0;::::1;::::0;::::1;:::i;:::-;;;;76389:87;;;;76309:176:::0;:::o;50636:104::-;50692:13;50725:7;50718:14;;;;;:::i;75505:253::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;75604:16:::1;75595:6;:25;75587:48;;;::::0;-1:-1:-1;;;75587:48:0;;10734:2:1;75587:48:0::1;::::0;::::1;10716:21:1::0;10773:2;10753:18;;;10746:30;-1:-1:-1;;;10792:18:1;;;10785:40;10842:18;;75587:48:0::1;10532:334:1::0;75587:48:0::1;75663:16;75654:6;:25;75646:48;;;::::0;-1:-1:-1;;;75646:48:0;;10734:2:1;75646:48:0::1;::::0;::::1;10716:21:1::0;10773:2;10753:18;;;10746:30;-1:-1:-1;;;10792:18:1;;;10785:40;10842:18;;75646:48:0::1;10532:334:1::0;75646:48:0::1;75707:7;:16:::0;;;;75734:7:::1;:16:::0;75505:253::o;75219:278::-;75262:13;75292:6;;75302:1;75292:11;75288:202;;-1:-1:-1;75320:27:0;;;;;;;;;;;;-1:-1:-1;;;75320:27:0;;;;;75219:278::o;75288:202::-;75369:6;;75379:1;75369:11;75365:125;;-1:-1:-1;75397:28:0;;;;;;;;;;;;-1:-1:-1;;;75397:28:0;;;;;75219:278::o;75365:125::-;-1:-1:-1;75458:20:0;;;;;;;;;;;;-1:-1:-1;;;75458:20:0;;;;;75219:278::o;73728:1228::-;73869:11;;:33;;-1:-1:-1;;;73869:33:0;;73891:10;73869:33;;;1679:51:1;73788:13:0;;;;;;-1:-1:-1;;;;;73869:11:0;;:21;;1652:18:1;;73869:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;73853:12;:49;;73836:66;;73919:6;;73929:1;73919:11;73915:201;;73965:10;73955:21;;;;:9;:21;;;;;;;;73947:57;;;;-1:-1:-1;;;73947:57:0;;11262:2:1;73947:57:0;;;11244:21:1;11301:2;11281:18;;;11274:30;11340:25;11320:18;;;11313:53;11383:18;;73947:57:0;11060:347:1;73947:57:0;73915:201;;;74026:6;;74036:1;74026:11;74022:94;;74062:9;74054:50;;;;-1:-1:-1;;;74054:50:0;;11614:2:1;74054:50:0;;;11596:21:1;11653:2;11633:18;;;11626:30;11692;11672:18;;;11665:58;11740:18;;74054:50:0;11412:352:1;74054:50:0;74140:10;74130:21;;;;:9;:21;;;;;;;;74126:270;;;74176:7;;74168:15;;74206:7;;74198:15;;74126:270;;;74235:9;74231:165;;;74269:7;;74261:15;;74299:7;;74291:15;;74231:165;;;74347:7;;74339:15;;74377:7;;74369:15;;74231:165;74429:18;74437:10;74429:5;:18;:::i;:::-;74416:9;:31;;74408:62;;;;-1:-1:-1;;;74408:62:0;;12144:2:1;74408:62:0;;;12126:21:1;12183:2;12163:18;;;12156:30;-1:-1:-1;;;12202:18:1;;;12195:48;12260:18;;74408:62:0;11942:342:1;74408:62:0;72549:5;74505:10;74489:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:32;74481:60;;;;-1:-1:-1;;;74481:60:0;;12621:2:1;74481:60:0;;;12603:21:1;12660:2;12640:18;;;12633:30;-1:-1:-1;;;12679:18:1;;;12672:45;12734:18;;74481:60:0;12419:339:1;74481:60:0;74573:10;74560:24;;;;:12;:24;;;;;;74601:5;;74560:37;;74587:10;;74560:37;:::i;:::-;:46;;74552:70;;;;-1:-1:-1;;;74552:70:0;;12965:2:1;74552:70:0;;;12947:21:1;13004:2;12984:18;;;12977:30;-1:-1:-1;;;13023:18:1;;;13016:41;13074:18;;74552:70:0;12763:335:1;74552:70:0;74643:13;;74635:42;;-1:-1:-1;;;;;74643:13:0;;;;74667:9;74635:42;;;;;74643:13;74635:42;74643:13;74635:42;74667:9;74643:13;74635:42;;;;;;;;;;;;;;;;;;;;;74693:9;74688:206;74708:10;74704:1;:14;74688:206;;;74740:11;74754:13;:11;:13::i;:::-;:17;;74770:1;74754:17;:::i;:::-;74740:31;;74786:26;74796:10;74808:3;74786:9;:26::i;:::-;74867:10;74854:24;;;;:12;:24;;;;;;:28;;74881:1;74854:28;:::i;:::-;74840:10;74827:24;;;;:12;:24;;;;;:55;-1:-1:-1;74720:3:0;;;;:::i;:::-;;;;74688:206;;;-1:-1:-1;74911:37:0;;;13277:25:1;;;13333:2;13318:18;;13311:34;;;74918:10:0;;74911:37;;13250:18:1;74911:37:0;;;;;;;73777:1179;;;73728:1228;:::o;53864:327::-;761:10;-1:-1:-1;;;;;53999:24:0;;;53991:62;;;;-1:-1:-1;;;53991:62:0;;13558:2:1;53991:62:0;;;13540:21:1;13597:2;13577:18;;;13570:30;13636:27;13616:18;;;13609:55;13681:18;;53991:62:0;13356:349:1;53991:62:0;761:10;54066:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;54066:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;54066:53:0;;;;;;;;;;54135:48;;540:41:1;;;54066:42:0;;761:10;54135:48;;513:18:1;54135:48:0;;;;;;;53864:327;;:::o;73373:239::-;73540:4;68935:42;70209:43;:47;70205:789;;70496:10;-1:-1:-1;;;;;70488:18:0;;;70484:85;;73557:47:::1;73580:4;73586:2;73590:7;73599:4;73557:22;:47::i;:::-;70547:7:::0;;70484:85;70607:128;;-1:-1:-1;;;70607:128:0;;70678:4;70607:128;;;9370:34:1;70706:10:0;9420:18:1;;;9413:43;68935:42:0;;70607:40;;9305:18:1;;70607:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:287;;;;-1:-1:-1;70760:134:0;;-1:-1:-1;;;70760:134:0;;70835:4;70760:134;;;9370:34:1;-1:-1:-1;;;;;9440:15:1;;9420:18;;;9413:43;68935:42:0;;70760:40;;9305:18:1;;70760:134:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;70583:400;;70937:30;;-1:-1:-1;;;70937:30:0;;70956:10;70937:30;;;1679:51:1;1652:18;;70937:30:0;1533:203:1;70583:400:0;73557:47:::1;73580:4;73586:2;73590:7;73599:4;73557:22;:47::i;:::-;73373:239:::0;;;;;:::o;74964:79::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;75034:1:::1;75025:6;:10:::0;74964:79::o;76009:173::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;76090:24:0;::::1;76082:55;;;::::0;-1:-1:-1;;;76082:55:0;;13912:2:1;76082:55:0::1;::::0;::::1;13894:21:1::0;13951:2;13931:18;;;13924:30;-1:-1:-1;;;13970:18:1;;;13963:48;14028:18;;76082:55:0::1;13710:342:1::0;76082:55:0::1;76148:13;:26:::0;;-1:-1:-1;;;;;;76148:26:0::1;-1:-1:-1::0;;;;;76148:26:0;;;::::1;::::0;;;::::1;::::0;;76009:173::o;76493:233::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;76583:22:0;::::1;76561:118;;;::::0;-1:-1:-1;;;76561:118:0;;14259:2:1;76561:118:0::1;::::0;::::1;14241:21:1::0;14298:2;14278:18;;;14271:30;14337:34;14317:18;;;14310:62;-1:-1:-1;;;14388:18:1;;;14381:44;14442:19;;76561:118:0::1;14057:410:1::0;76561:118:0::1;-1:-1:-1::0;;;;;76692:19:0::1;;::::0;;;:9:::1;:19;::::0;;;;:26;;-1:-1:-1;;76692:26:0::1;76714:4;76692:26;::::0;;76493:233::o;65924:281::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;66027:22:0;::::1;66005:110;;;::::0;-1:-1:-1;;;66005:110:0;;14674:2:1;66005:110:0::1;::::0;::::1;14656:21:1::0;14713:2;14693:18;;;14686:30;14752:34;14732:18;;;14725:62;-1:-1:-1;;;14803:18:1;;;14796:36;14849:19;;66005:110:0::1;14472:402:1::0;66005:110:0::1;66152:6;::::0;66131:38:::1;::::0;-1:-1:-1;;;;;66131:38:0;;::::1;::::0;66152:6:::1;::::0;66131:38:::1;::::0;66152:6:::1;::::0;66131:38:::1;66180:6;:17:::0;;-1:-1:-1;;;;;;66180:17:0::1;-1:-1:-1::0;;;;;66180:17:0;;;::::1;::::0;;;::::1;::::0;;65924:281::o;75766:235::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;75862:1:::1;75856:3;:7;75848:42;;;::::0;-1:-1:-1;;;75848:42:0;;15081:2:1;75848:42:0::1;::::0;::::1;15063:21:1::0;15120:2;15100:18;;;15093:30;-1:-1:-1;;;15139:18:1;;;15132:52;15201:18;;75848:42:0::1;14879:346:1::0;75848:42:0::1;75915:1;75909:3;:7;75901:42;;;::::0;-1:-1:-1;;;75901:42:0;;15081:2:1;75901:42:0::1;::::0;::::1;15063:21:1::0;15120:2;15100:18;;;15093:30;-1:-1:-1;;;15139:18:1;;;15132:52;15201:18;;75901:42:0::1;14879:346:1::0;75901:42:0::1;75956:7;:13:::0;;;;75980:7:::1;:13:::0;75766:235::o;75135:76::-;65043:6;;-1:-1:-1;;;;;65043:6:0;761:10;65190:23;65182:68;;;;-1:-1:-1;;;65182:68:0;;;;;;;:::i;:::-;75202:1:::1;75193:6;:10:::0;75135:76::o;57158:127::-;57223:4;57247:30;:12;57269:7;57247:21;:30::i;63461:183::-;63527:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;63527:29:0;-1:-1:-1;;;;;63527:29:0;;;;;;;;:24;;63581:23;63527:24;63581:14;:23::i;:::-;-1:-1:-1;;;;;63572:46:0;;;;;;;;;;;63461:183;;:::o;42876:155::-;42972:7;43004:19;43012:3;39304:19;;39221:110;54543:376;54752:41;761:10;54785:7;54752:18;:41::i;:::-;54730:140;;;;-1:-1:-1;;;54730:140:0;;;;;;;:::i;:::-;54883:28;54893:4;54899:2;54903:7;54883:9;:28::i;35083:169::-;35181:7;35221:22;35225:3;35237:5;35221:3;:22::i;54990:185::-;55128:39;55145:4;55151:2;55155:7;55128:39;;;;;;;;;;;;:16;:39::i;43379:268::-;43486:7;;;;43551:22;43555:3;43567:5;43551:3;:22::i;:::-;43520:53;;;;-1:-1:-1;43379:268:0;-1:-1:-1;;;;;43379:268:0:o;62094:100::-;62167:8;:19;62178:8;62167;:19;:::i;44761:292::-;44902:7;44984:44;44989:3;45009;45015:12;44984:4;:44::i;:::-;44976:53;-1:-1:-1;44761:292:0;;;;;;:::o;58254:110::-;58330:26;58340:2;58344:7;58330:26;;;;;;;;;;;;:9;:26::i;55246:365::-;55435:41;761:10;55468:7;55435:18;:41::i;:::-;55413:140;;;;-1:-1:-1;;;55413:140:0;;;;;;;:::i;:::-;55564:39;55578:4;55584:2;55588:7;55597:5;55564:13;:39::i;42605:183::-;42716:4;39096:17;;;:12;;;:17;;;;;;:22;;42745:35;38969:157;57452:459;57581:4;57625:16;57633:7;57625;:16::i;:::-;57603:110;;;;-1:-1:-1;;;57603:110:0;;18054:2:1;57603:110:0;;;18036:21:1;18093:2;18073:18;;;18066:30;18132:34;18112:18;;;18105:62;-1:-1:-1;;;18183:18:1;;;18176:42;18235:19;;57603:110:0;17852:408:1;57603:110:0;57724:13;57740:23;57755:7;57740:14;:23::i;:::-;57724:39;;57793:5;-1:-1:-1;;;;;57782:16:0;:7;-1:-1:-1;;;;;57782:16:0;;:64;;;;57839:7;-1:-1:-1;;;;;57815:31:0;:20;57827:7;57815:11;:20::i;:::-;-1:-1:-1;;;;;57815:31:0;;57782:64;:120;;;-1:-1:-1;;;;;;54433:25:0;;;54404:4;54433:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;57863:39;57774:129;57452:459;-1:-1:-1;;;;57452:459:0:o;60763:670::-;60936:4;-1:-1:-1;;;;;60909:31:0;:23;60924:7;60909:14;:23::i;:::-;-1:-1:-1;;;;;60909:31:0;;60887:122;;;;-1:-1:-1;;;60887:122:0;;18467:2:1;60887:122:0;;;18449:21:1;18506:2;18486:18;;;18479:30;18545:34;18525:18;;;18518:62;-1:-1:-1;;;18596:18:1;;;18589:39;18645:19;;60887:122:0;18265:405:1;60887:122:0;-1:-1:-1;;;;;61046:16:0;;61038:65;;;;-1:-1:-1;;;61038:65:0;;18877:2:1;61038:65:0;;;18859:21:1;18916:2;18896:18;;;18889:30;18955:34;18935:18;;;18928:62;-1:-1:-1;;;19006:18:1;;;18999:34;19050:19;;61038:65:0;18675:400:1;61038:65:0;61220:29;61237:1;61241:7;61220:8;:29::i;:::-;-1:-1:-1;;;;;61262:19:0;;;;;;:13;:19;;;;;:35;;61289:7;61262:26;:35::i;:::-;-1:-1:-1;;;;;;61308:17:0;;;;;;:13;:17;;;;;:30;;61330:7;61308:21;:30::i;:::-;-1:-1:-1;61351:29:0;:12;61368:7;61377:2;61351:16;:29::i;:::-;;61417:7;61413:2;-1:-1:-1;;;;;61398:27:0;61407:4;-1:-1:-1;;;;;61398:27:0;;;;;;;;;;;60763:670;;;:::o;29749:273::-;29890:18;;29843:7;;29890:26;-1:-1:-1;29868:110:0;;;;-1:-1:-1;;;29868:110:0;;19282:2:1;29868:110:0;;;19264:21:1;19321:2;19301:18;;;19294:30;19360:34;19340:18;;;19333:62;-1:-1:-1;;;19411:18:1;;;19404:32;19453:19;;29868:110:0;19080:398:1;29868:110:0;29996:3;:11;;30008:5;29996:18;;;;;;;;:::i;:::-;;;;;;;;;29989:25;;29749:273;;;;:::o;39696:348::-;39846:19;;39790:7;;;;39846:27;-1:-1:-1;39824:111:0;;;;-1:-1:-1;;;39824:111:0;;19685:2:1;39824:111:0;;;19667:21:1;19724:2;19704:18;;;19697:30;19763:34;19743:18;;;19736:62;-1:-1:-1;;;19814:18:1;;;19807:32;19856:19;;39824:111:0;19483:398:1;39824:111:0;39948:22;39973:3;:12;;39986:5;39973:19;;;;;;;;:::i;:::-;;;;;;;;;;;39948:44;;40011:5;:10;;;40023:5;:12;;;40003:33;;;;;39696:348;;;;;:::o;41294:353::-;41422:7;41461:17;;;:12;;;:17;;;;;;41512:12;41497:13;41489:36;;;;-1:-1:-1;;;41489:36:0;;;;;;;;:::i;:::-;-1:-1:-1;41579:3:0;41592:12;41603:1;41592:8;:12;:::i;:::-;41579:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;;41572:40;;;41294:353;;;;;:::o;58591:321::-;58721:18;58727:2;58731:7;58721:5;:18::i;:::-;58772:54;58803:1;58807:2;58811:7;58820:5;58772:22;:54::i;:::-;58750:154;;;;-1:-1:-1;;;58750:154:0;;;;;;;:::i;56493:352::-;56650:28;56660:4;56666:2;56670:7;56650:9;:28::i;:::-;56711:48;56734:4;56740:2;56744:7;56753:5;56711:22;:48::i;:::-;56689:148;;;;-1:-1:-1;;;56689:148:0;;;;;;;:::i;34105:160::-;34193:4;34222:35;34230:3;34250:5;34222:7;:35::i;33798:131::-;33865:4;33889:32;33894:3;33914:5;33889:4;:32::i;41971:219::-;42094:4;42118:64;42123:3;42143;-1:-1:-1;;;;;42157:23:0;;42118:4;:64::i;59248:404::-;-1:-1:-1;;;;;59328:16:0;;59320:61;;;;-1:-1:-1;;;59320:61:0;;20640:2:1;59320:61:0;;;20622:21:1;;;20659:18;;;20652:30;20718:34;20698:18;;;20691:62;20770:18;;59320:61:0;20438:356:1;59320:61:0;59401:16;59409:7;59401;:16::i;:::-;59400:17;59392:58;;;;-1:-1:-1;;;59392:58:0;;21001:2:1;59392:58:0;;;20983:21:1;21040:2;21020:18;;;21013:30;21079;21059:18;;;21052:58;21127:18;;59392:58:0;20799:352:1;59392:58:0;-1:-1:-1;;;;;59521:17:0;;;;;;:13;:17;;;;;:30;;59543:7;59521:21;:30::i;:::-;-1:-1:-1;59564:29:0;:12;59581:7;59590:2;59564:16;:29::i;:::-;-1:-1:-1;59611:33:0;;59636:7;;-1:-1:-1;;;;;59611:33:0;;;59628:1;;59611:33;;59628:1;;59611:33;59248:404;;:::o;62759:694::-;62914:4;-1:-1:-1;;;;;62936:13:0;;18257:20;62931:60;;-1:-1:-1;62975:4:0;62968:11;;62931:60;63001:23;63027:313;-1:-1:-1;;;761:10:0;63193:4;63216:7;63242:5;63057:205;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;-1:-1:-1;;;;;63057:205:0;;;;;;;-1:-1:-1;;;;;63057:205:0;;;;;;;;;;;63027:313;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;63027:15:0;;;:313;:15;:313::i;:::-;63001:339;;63351:13;63378:10;63367:32;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;;63418:26:0;-1:-1:-1;;;63418:26:0;;-1:-1:-1;;;62759:694:0;;;;;;:::o;27396:1557::-;27462:4;27601:19;;;:12;;;:19;;;;;;27637:15;;27633:1313;;28012:21;28036:14;28049:1;28036:10;:14;:::i;:::-;28085:18;;28012:38;;-1:-1:-1;28065:17:0;;28085:22;;28106:1;;28085:22;:::i;:::-;28065:42;;28352:17;28372:3;:11;;28384:9;28372:22;;;;;;;;:::i;:::-;;;;;;;;;28352:42;;28518:9;28489:3;:11;;28501:13;28489:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;28621:17;:13;28637:1;28621:17;:::i;:::-;28595:23;;;;:12;;;:23;;;;;:43;28747:17;;28595:3;;28747:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;28842:3;:12;;:19;28855:5;28842:19;;;;;;;;;;;28835:26;;;28885:4;28878:11;;;;;;;;27633:1313;28929:5;28922:12;;;;;26806:414;26869:4;39096:17;;;:12;;;:17;;;;;;26886:327;;-1:-1:-1;26929:23:0;;;;;;;;:11;:23;;;;;;;;;;;;;27112:18;;27090:19;;;:12;;;:19;;;;;;:40;;;;27145:11;;26886:327;-1:-1:-1;27196:5:0;27189:12;;36411:737;36521:4;36656:17;;;:12;;;:17;;;;;;36690:13;;;36686:455;;-1:-1:-1;;36788:36:0;;;;;;;;;;;;;;;;;;36770:55;;;;;;;;:12;:55;;;;;;;;;;;;;;;;;;;;;;;;36983:19;;36963:17;;;:12;;;:17;;;;;;;:39;37017:11;;36686:455;37097:5;37061:3;37074:12;37085:1;37074:8;:12;:::i;:::-;37061:26;;;;;;;;:::i;:::-;;;;;;;;;;;:33;;:41;;;;37124:5;37117:12;;;;;20914:229;21051:12;21083:52;21105:6;21113:4;21119:1;21122:12;21051;18257:20;;22454:60;;;;-1:-1:-1;;;22454:60:0;;22645:2:1;22454:60:0;;;22627:21:1;22684:2;22664:18;;;22657:30;22723:31;22703:18;;;22696:59;22772:18;;22454:60:0;22443:353:1;22454:60:0;22588:12;22602:23;22629:6;-1:-1:-1;;;;;22629:11:0;22648:5;22669:4;22629:55;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22587:97;;;;22702:52;22720:7;22729:10;22741:12;22702:17;:52::i;:::-;22695:59;22130:632;-1:-1:-1;;;;;;;22130:632:0:o;25053:777::-;25203:12;25232:7;25228:595;;;-1:-1:-1;25263:10:0;25256:17;;25228:595;25377:17;;:21;25373:439;;25640:10;25634:17;25701:15;25688:10;25684:2;25680:19;25673:44;25373:439;25783:12;25776:20;;-1:-1:-1;;;25776:20:0;;;;;;;;:::i;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:186::-;2419:6;2472:2;2460:9;2451:7;2447:23;2443:32;2440:52;;;2488:1;2485;2478:12;2440:52;2511:29;2530:9;2511:29;:::i;2551:328::-;2628:6;2636;2644;2697:2;2685:9;2676:7;2672:23;2668:32;2665:52;;;2713:1;2710;2703:12;2665:52;2736:29;2755:9;2736:29;:::i;:::-;2726:39;;2784:38;2818:2;2807:9;2803:18;2784:38;:::i;:::-;2774:48;;2869:2;2858:9;2854:18;2841:32;2831:42;;2551:328;;;;;:::o;2884:127::-;2945:10;2940:3;2936:20;2933:1;2926:31;2976:4;2973:1;2966:15;3000:4;2997:1;2990:15;3016:275;3087:2;3081:9;3152:2;3133:13;;-1:-1:-1;;3129:27:1;3117:40;;3187:18;3172:34;;3208:22;;;3169:62;3166:88;;;3234:18;;:::i;:::-;3270:2;3263:22;3016:275;;-1:-1:-1;3016:275:1:o;3296:407::-;3361:5;3395:18;3387:6;3384:30;3381:56;;;3417:18;;:::i;:::-;3455:57;3500:2;3479:15;;-1:-1:-1;;3475:29:1;3506:4;3471:40;3455:57;:::i;:::-;3446:66;;3535:6;3528:5;3521:21;3575:3;3566:6;3561:3;3557:16;3554:25;3551:45;;;3592:1;3589;3582:12;3551:45;3641:6;3636:3;3629:4;3622:5;3618:16;3605:43;3695:1;3688:4;3679:6;3672:5;3668:18;3664:29;3657:40;3296:407;;;;;:::o;3708:451::-;3777:6;3830:2;3818:9;3809:7;3805:23;3801:32;3798:52;;;3846:1;3843;3836:12;3798:52;3886:9;3873:23;3919:18;3911:6;3908:30;3905:50;;;3951:1;3948;3941:12;3905:50;3974:22;;4027:4;4019:13;;4015:27;-1:-1:-1;4005:55:1;;4056:1;4053;4046:12;4005:55;4079:74;4145:7;4140:2;4127:16;4122:2;4118;4114:11;4079:74;:::i;4164:952::-;4248:6;4279:2;4322;4310:9;4301:7;4297:23;4293:32;4290:52;;;4338:1;4335;4328:12;4290:52;4378:9;4365:23;4407:18;4448:2;4440:6;4437:14;4434:34;;;4464:1;4461;4454:12;4434:34;4502:6;4491:9;4487:22;4477:32;;4547:7;4540:4;4536:2;4532:13;4528:27;4518:55;;4569:1;4566;4559:12;4518:55;4605:2;4592:16;4627:2;4623;4620:10;4617:36;;;4633:18;;:::i;:::-;4679:2;4676:1;4672:10;4662:20;;4702:28;4726:2;4722;4718:11;4702:28;:::i;:::-;4764:15;;;4834:11;;;4830:20;;;4795:12;;;;4862:19;;;4859:39;;;4894:1;4891;4884:12;4859:39;4918:11;;;;4938:148;4954:6;4949:3;4946:15;4938:148;;;5020:23;5039:3;5020:23;:::i;:::-;5008:36;;4971:12;;;;5064;;;;4938:148;;;5105:5;4164:952;-1:-1:-1;;;;;;;;4164:952:1:o;5121:248::-;5189:6;5197;5250:2;5238:9;5229:7;5225:23;5221:32;5218:52;;;5266:1;5263;5256:12;5218:52;-1:-1:-1;;5289:23:1;;;5359:2;5344:18;;;5331:32;;-1:-1:-1;5121:248:1:o;5374:118::-;5460:5;5453:13;5446:21;5439:5;5436:32;5426:60;;5482:1;5479;5472:12;5497:315;5562:6;5570;5623:2;5611:9;5602:7;5598:23;5594:32;5591:52;;;5639:1;5636;5629:12;5591:52;5662:29;5681:9;5662:29;:::i;:::-;5652:39;;5741:2;5730:9;5726:18;5713:32;5754:28;5776:5;5754:28;:::i;:::-;5801:5;5791:15;;;5497:315;;;;;:::o;5817:667::-;5912:6;5920;5928;5936;5989:3;5977:9;5968:7;5964:23;5960:33;5957:53;;;6006:1;6003;5996:12;5957:53;6029:29;6048:9;6029:29;:::i;:::-;6019:39;;6077:38;6111:2;6100:9;6096:18;6077:38;:::i;:::-;6067:48;;6162:2;6151:9;6147:18;6134:32;6124:42;;6217:2;6206:9;6202:18;6189:32;6244:18;6236:6;6233:30;6230:50;;;6276:1;6273;6266:12;6230:50;6299:22;;6352:4;6344:13;;6340:27;-1:-1:-1;6330:55:1;;6381:1;6378;6371:12;6330:55;6404:74;6470:7;6465:2;6452:16;6447:2;6443;6439:11;6404:74;:::i;:::-;6394:84;;;5817:667;;;;;;;:::o;6489:260::-;6557:6;6565;6618:2;6606:9;6597:7;6593:23;6589:32;6586:52;;;6634:1;6631;6624:12;6586:52;6657:29;6676:9;6657:29;:::i;:::-;6647:39;;6705:38;6739:2;6728:9;6724:18;6705:38;:::i;:::-;6695:48;;6489:260;;;;;:::o;6754:356::-;6956:2;6938:21;;;6975:18;;;6968:30;7034:34;7029:2;7014:18;;7007:62;7101:2;7086:18;;6754:356::o;7115:380::-;7194:1;7190:12;;;;7237;;;7258:61;;7312:4;7304:6;7300:17;7290:27;;7258:61;7365:2;7357:6;7354:14;7334:18;7331:38;7328:161;;7411:10;7406:3;7402:20;7399:1;7392:31;7446:4;7443:1;7436:15;7474:4;7471:1;7464:15;7328:161;;7115:380;;;:::o;9467:245::-;9534:6;9587:2;9575:9;9566:7;9562:23;9558:32;9555:52;;;9603:1;9600;9593:12;9555:52;9635:9;9629:16;9654:28;9676:5;9654:28;:::i;10128:127::-;10189:10;10184:3;10180:20;10177:1;10170:31;10220:4;10217:1;10210:15;10244:4;10241:1;10234:15;10260:127;10321:10;10316:3;10312:20;10309:1;10302:31;10352:4;10349:1;10342:15;10376:4;10373:1;10366:15;10392:135;10431:3;10452:17;;;10449:43;;10472:18;;:::i;:::-;-1:-1:-1;10519:1:1;10508:13;;10392:135::o;10871:184::-;10941:6;10994:2;10982:9;10973:7;10969:23;10965:32;10962:52;;;11010:1;11007;11000:12;10962:52;-1:-1:-1;11033:16:1;;10871:184;-1:-1:-1;10871:184:1:o;11769:168::-;11842:9;;;11873;;11890:15;;;11884:22;;11870:37;11860:71;;11911:18;;:::i;12289:125::-;12354:9;;;12375:10;;;12372:36;;;12388:18;;:::i;15230:413::-;15432:2;15414:21;;;15471:2;15451:18;;;15444:30;15510:34;15505:2;15490:18;;15483:62;-1:-1:-1;;;15576:2:1;15561:18;;15554:47;15633:3;15618:19;;15230:413::o;15774:545::-;15876:2;15871:3;15868:11;15865:448;;;15912:1;15937:5;15933:2;15926:17;15982:4;15978:2;15968:19;16052:2;16040:10;16036:19;16033:1;16029:27;16023:4;16019:38;16088:4;16076:10;16073:20;16070:47;;;-1:-1:-1;16111:4:1;16070:47;16166:2;16161:3;16157:12;16154:1;16150:20;16144:4;16140:31;16130:41;;16221:82;16239:2;16232:5;16229:13;16221:82;;;16284:17;;;16265:1;16254:13;16221:82;;;16225:3;;;15774:545;;;:::o;16495:1352::-;16621:3;16615:10;16648:18;16640:6;16637:30;16634:56;;;16670:18;;:::i;:::-;16699:97;16789:6;16749:38;16781:4;16775:11;16749:38;:::i;:::-;16743:4;16699:97;:::i;:::-;16851:4;;16915:2;16904:14;;16932:1;16927:663;;;;17634:1;17651:6;17648:89;;;-1:-1:-1;17703:19:1;;;17697:26;17648:89;-1:-1:-1;;16452:1:1;16448:11;;;16444:24;16440:29;16430:40;16476:1;16472:11;;;16427:57;17750:81;;16897:944;;16927:663;15721:1;15714:14;;;15758:4;15745:18;;-1:-1:-1;;16963:20:1;;;17081:236;17095:7;17092:1;17089:14;17081:236;;;17184:19;;;17178:26;17163:42;;17276:27;;;;17244:1;17232:14;;;;17111:19;;17081:236;;;17085:3;17345:6;17336:7;17333:19;17330:201;;;17406:19;;;17400:26;-1:-1:-1;;17489:1:1;17485:14;;;17501:3;17481:24;17477:37;17473:42;17458:58;17443:74;;17330:201;-1:-1:-1;;;;;17577:1:1;17561:14;;;17557:22;17544:36;;-1:-1:-1;16495:1352:1:o;19886:128::-;19953:9;;;19974:11;;;19971:37;;;19988:18;;:::i;20019:414::-;20221:2;20203:21;;;20260:2;20240:18;;;20233:30;20299:34;20294:2;20279:18;;20272:62;-1:-1:-1;;;20365:2:1;20350:18;;20343:48;20423:3;20408:19;;20019:414::o;21156:489::-;-1:-1:-1;;;;;21425:15:1;;;21407:34;;21477:15;;21472:2;21457:18;;21450:43;21524:2;21509:18;;21502:34;;;21572:3;21567:2;21552:18;;21545:31;;;21350:4;;21593:46;;21619:19;;21611:6;21593:46;:::i;:::-;21585:54;21156:489;-1:-1:-1;;;;;;21156:489:1:o;21650:249::-;21719:6;21772:2;21760:9;21751:7;21747:23;21743:32;21740:52;;;21788:1;21785;21778:12;21740:52;21820:9;21814:16;21839:30;21863:5;21839:30;:::i;21904:127::-;21965:10;21960:3;21956:20;21953:1;21946:31;21996:4;21993:1;21986:15;22020:4;22017:1;22010:15;22801:287;22930:3;22968:6;22962:13;22984:66;23043:6;23038:3;23031:4;23023:6;23019:17;22984:66;:::i;:::-;23066:16;;;;;22801:287;-1:-1:-1;;22801:287:1:o

Swarm Source

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