ETH Price: $3,117.70 (+1.54%)

Token

ORCA NFT (ORCAI)
 

Overview

Max Total Supply

333 ORCAI

Holders

82

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
deltabit.eth
Balance
1 ORCAI
0xb09f09B1c3dFADFBfE1dAc72cbcaB6451d00F433
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:
OrcaNFT

Compiler Version
v0.8.16+commit.07a7930e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-08-24
*/

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


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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

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

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

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

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

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

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

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

        _afterTokenTransfer(address(0), to, tokenId);
    }

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

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

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

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

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

        _afterTokenTransfer(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 from incorrect 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);

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

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

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

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

// File: orca_nftai.sol


pragma solidity ^0.8.16;





contract OrcaNFT is ERC721, Ownable {

    using Strings for uint256;
    using Counters for Counters.Counter;

    Counters.Counter public supply;
    Counters.Counter private supplyOG;
    Counters.Counter private supplyWhitelist;

    string private _tokenURI = "";
    string private hiddenMetadataUri;
    mapping(address => bool) public whitelist;
    string private checksum_salt;
    
    uint256 public ogWhitelistPrice = 0.4 ether; 
    uint256 private maxOGSupply = 99;        
    uint256 private maxMintAmountOG = 1;    
    bool    private ogSaleOpen;       
    mapping(address => uint256) public AddressPurchasesOG;
    uint256 public whitelistPrice = 0.5 ether;
    uint256 private maxWhitelistSupply = 900; 
    bool    private whitelistSaleOpen;       
    uint256 public publicPrice = 0.6 ether;  
    uint256 public maxPublicSupply = 999;    
    bool    private publicSaleOpen; 
    uint256 private maxMintAmount = 3;   
    
    bool private contract_LOCK = false;  
    mapping(address => uint256) public AddressPurchases;
    bool public revealed = false;

    address private _team1 = 0x26402eD875BAa5177eCcbABcE09A112a17Fd7873; 
    address private _team2 = 0xB12940074CB5Ab121E697B97E2bDe930abe1721C; 
    address private _team3 = 0xa575b0CE406cea0a64b4C246EEaB62eE4b18f473;
    string private uriSuffix = ".json";
   
    constructor() ERC721("ORCA NFT", "ORCAI") {
        setHiddenMetadataUri("ipfs://QmQKxNUZDZDnSSKs8HKXdj3d2wW4kDbZdX55p3y2az2Zxt");
        checksum_salt="ORCA";
        }
    function validateChecksum(string memory s1, string memory s2)
    private
    pure
    returns (bool)     {
        return keccak256(abi.encodePacked(s1)) == keccak256(abi.encodePacked(s2));
        }

    function totalSupply() public view returns (uint256) {  
          return supply.current();  }

   
    function mintOG(uint256 _mintAmount) public payable  {
        require(!contract_LOCK);
        require(ogSaleOpen, "OG Mint not open!"); // 
        require (whitelist[msg.sender],"Your Wallet is not Whitelisted!");
        require(msg.value >= ogWhitelistPrice * 1, "Insufficient funds!");
        require(_mintAmount <= maxMintAmountOG ,"1 NFT maximum per Wallet!");
        require(AddressPurchasesOG[msg.sender] == 0, "You already minted your OG NFT!");// no more mints for address // max nfts mintable
        require(supplyOG.current() + _mintAmount <= maxOGSupply, "Maximum OG Supply exceeded!");     // on est Sold out?
        require(supply.current() <= maxPublicSupply, "Maximum Total Supply reached!");  
        AddressPurchasesOG[msg.sender]++;
        supply.increment();
        supplyOG.increment();
        _safeMint(msg.sender, supply.current());
        }

    function mintWhitelist(uint256 _mintAmount ,string memory checksum ) public payable {
        require(!contract_LOCK);
        require(whitelistSaleOpen, "Whitelist Mint not open!"); // 
        require(msg.value >= whitelistPrice * _mintAmount, "Insufficient funds!");
        require(_mintAmount <= maxMintAmount ,"3 NFT maximum per Wallet!");
        require(AddressPurchases[msg.sender]+_mintAmount <= maxMintAmount, "Maximum WL NFTs minted!");// no more mints for address // max nfts mintable
        require(validateChecksum(checksum,checksum_salt),"ERROR_MINTING!");
        require(supplyWhitelist.current() + _mintAmount <= maxWhitelistSupply, "Maximum WL Supply exceeded!");     // on est Sold out?
        require(supply.current() <= maxPublicSupply, "Maximum Total Supply reached!");  
        for (uint256 i = 0; i < _mintAmount; i++) {
            AddressPurchases[msg.sender]++;
            supply.increment();
            supplyWhitelist.increment();
            _safeMint(msg.sender, supply.current());
            }
        }

    function mintPublic(uint256 _mintAmount  ) public payable {
        require(!contract_LOCK);
        require(publicSaleOpen, "Public Mint not open!"); // 
        require(msg.value >= publicPrice * _mintAmount, "Insufficient funds!");
        require(_mintAmount <= maxMintAmount ,"3 NFT maximum per Wallet!");
        require(AddressPurchases[msg.sender]+_mintAmount <= maxMintAmount+3,  "Maximum NFTs minted per wallet!");
        require(supply.current()+ _mintAmount <= maxPublicSupply, "Maximum Total Supply reached!");  
        for (uint256 i = 0; i < _mintAmount; i++) {
            AddressPurchases[msg.sender]++;
            supply.increment();
            _safeMint(msg.sender, supply.current());
            }
        }
    function mintAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
        require(!contract_LOCK);
        require(supply.current() + _mintAmount <= maxPublicSupply, "Max supply exceeded!");     // on est Sold out?
        for (uint256 i = 0; i < _mintAmount; i++) {
            supply.increment();
            _safeMint(_receiver, supply.current());
            }
        }
   
    function openSales(string memory value) public onlyOwner{
        ogSaleOpen = false;  
        checksum_salt=value; 
        publicSaleOpen = false; 
        whitelistSaleOpen = false;
        }
    
    function add(address _address) public onlyOwner {
        whitelist[_address] = true;
        }
    function remove(address _address) public onlyOwner {
        whitelist[_address] = false;
        }
    
    function setRevealed(bool _state) external onlyOwner {
        revealed = _state;
       }

    function setOGSaleOpen(bool _state) external onlyOwner {
        ogSaleOpen = _state;
        }
    
    function setWhitelistSaleOpen(bool _state) external onlyOwner {
        whitelistSaleOpen = _state;
        }
    function setPublicSaleOpen(bool _state) external onlyOwner {
        publicSaleOpen = _state;
       
        }
    
    function setTokenURI(string memory __tokenURI) public onlyOwner {
        require(!contract_LOCK);
        _tokenURI = __tokenURI;
      }

   
  
    function withdraw() external onlyOwner {
            payable(_team1).transfer(address(this).balance *  50 /100);
            payable(_team2).transfer(address(this).balance * 80 / 100);
            payable(_team3).transfer(address(this).balance);
        }
    
    function _baseURI() internal view virtual override returns (string memory) {
        return _tokenURI;
        }
    function contractLock() external onlyOwner {
        contract_LOCK = true; 
        }

    function tokenURI(uint256 _tokenId)  public view virtual override returns (string memory)    {
        require(_exists(_tokenId),"TOKEN_DOES_NOT_EXIST" );
        string memory currentBaseURI = _tokenURI;
        if (revealed == false) {  
            return bytes(hiddenMetadataUri).length > 0 ? string(abi.encodePacked(hiddenMetadataUri)): "";
        }
            return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix)): "";
        }
    function setHiddenMetadataUri(string memory _hiddenMetadataUri) internal onlyOwner {
        require(!contract_LOCK);
        hiddenMetadataUri = _hiddenMetadataUri;
        }
 
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AddressPurchases","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"AddressPurchasesOG","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"add","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":"contractLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintOG","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"string","name":"checksum","type":"string"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogWhitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"value","type":"string"}],"name":"openSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"remove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOGSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"__tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistSaleOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supply","outputs":[{"internalType":"uint256","name":"_value","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a060405260006080908152600a906200001a90826200035d565b5067058d15e176280000600e556063600f5560016010556706f05b59d3b20000601355610384601455670853a0d2313c00006016556103e76017556003601955601a805460ff19169055601c80547426402ed875baa5177eccbabce09a112a17fd7873006001600160a81b0319909116179055601d80546001600160a01b031990811673b12940074cb5ab121e697b97e2bde930abe1721c17909155601e805490911673a575b0ce406cea0a64b4c246eeab62ee4b18f473179055604080518082019091526005815264173539b7b760d91b6020820152601f906200010090826200035d565b503480156200010e57600080fd5b506040518060400160405280600881526020016713d490d04813919560c21b815250604051806040016040528060058152602001644f5243414960d81b81525081600090816200015f91906200035d565b5060016200016e82826200035d565b5050506200018b62000185620001e060201b60201c565b620001e4565b620001af60405180606001604052806035815260200162002e0b6035913962000236565b6040805180820190915260048152634f52434160e01b6020820152600d90620001d990826200035d565b5062000429565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b03163314620002955760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b601a5460ff1615620002a657600080fd5b600b620002b482826200035d565b5050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002e357607f821691505b6020821081036200030457634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200035857600081815260208120601f850160051c81016020861015620003335750805b601f850160051c820191505b8181101562000354578281556001016200033f565b5050505b505050565b81516001600160401b03811115620003795762000379620002b8565b62000391816200038a8454620002ce565b846200030a565b602080601f831160018114620003c95760008415620003b05750858301515b600019600386901b1c1916600185901b17855562000354565b600085815260208120601f198616915b82811015620003fa57888601518255948401946001909101908401620003d9565b5085821015620004195787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6129d280620004396000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c514610689578063efd0cbf9146106a9578063f0ce6d25146106bc578063f2fde38b146106dc578063fc1a1c36146106fc57600080fd5b8063c87b56dd146105f4578063ce8af04214610614578063cf837fad14610634578063e0a8085314610649578063e0df5b6f1461066957600080fd5b80639ada8d59116100f25780639ada8d591461054e5780639b19251a1461056e578063a22cb4651461059e578063a945bf80146105be578063b88d4fde146105d457600080fd5b8063715018a6146104c65780638da5cb5b146104db57806394bb4c04146104f9578063954cc17e1461050c57806395d89b411461053957600080fd5b806329092d0e116101bc578063573e261a11610180578063573e261a146104235780636352211e1461045057806366380b38146104705780636a35d1841461049057806370a08231146104a657600080fd5b806329092d0e146103a15780633ccfd60b146103c157806342842e0e146103d65780634bfc2709146103f6578063518302271461040957600080fd5b80630a3b0a4f116102035780630a3b0a4f1461031657806318160ddd1461033657806323394d991461034b57806323b872dd1461036b57806326a74d8e1461038b57600080fd5b806301ffc9a714610240578063047fc9aa1461027557806306fdde031461029a578063081812fc146102bc578063095ea7b3146102f4575b600080fd5b34801561024c57600080fd5b5061026061025b366004612199565b610712565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5060075461028c9081565b60405190815260200161026c565b3480156102a657600080fd5b506102af610764565b60405161026c9190612206565b3480156102c857600080fd5b506102dc6102d7366004612219565b6107f6565b6040516001600160a01b03909116815260200161026c565b34801561030057600080fd5b5061031461030f36600461224e565b610890565b005b34801561032257600080fd5b50610314610331366004612278565b6109a5565b34801561034257600080fd5b5061028c6109f3565b34801561035757600080fd5b506103146103663660046122a3565b610a03565b34801561037757600080fd5b506103146103863660046122be565b610a40565b34801561039757600080fd5b5061028c60175481565b3480156103ad57600080fd5b506103146103bc366004612278565b610a71565b3480156103cd57600080fd5b50610314610abc565b3480156103e257600080fd5b506103146103f13660046122be565b610bc5565b6103146104043660046123a6565b610be0565b34801561041557600080fd5b50601c546102609060ff1681565b34801561042f57600080fd5b5061028c61043e366004612278565b601b6020526000908152604090205481565b34801561045c57600080fd5b506102dc61046b366004612219565b610eee565b34801561047c57600080fd5b5061031461048b3660046123ed565b610f65565b34801561049c57600080fd5b5061028c600e5481565b3480156104b257600080fd5b5061028c6104c1366004612278565b611033565b3480156104d257600080fd5b506103146110ba565b3480156104e757600080fd5b506006546001600160a01b03166102dc565b610314610507366004612219565b6110f0565b34801561051857600080fd5b5061028c610527366004612278565b60126020526000908152604090205481565b34801561054557600080fd5b506102af611353565b34801561055a57600080fd5b506103146105693660046122a3565b611362565b34801561057a57600080fd5b50610260610589366004612278565b600c6020526000908152604090205460ff1681565b3480156105aa57600080fd5b506103146105b9366004612419565b61139f565b3480156105ca57600080fd5b5061028c60165481565b3480156105e057600080fd5b506103146105ef366004612443565b6113ae565b34801561060057600080fd5b506102af61060f366004612219565b6113e6565b34801561062057600080fd5b5061031461062f3660046122a3565b611573565b34801561064057600080fd5b506103146115b0565b34801561065557600080fd5b506103146106643660046122a3565b6115e9565b34801561067557600080fd5b506103146106843660046124bf565b611626565b34801561069557600080fd5b506102606106a43660046124f4565b61166c565b6103146106b7366004612219565b61169a565b3480156106c857600080fd5b506103146106d73660046124bf565b611873565b3480156106e857600080fd5b506103146106f7366004612278565b6118cd565b34801561070857600080fd5b5061028c60135481565b60006001600160e01b031982166380ac58cd60e01b148061074357506001600160e01b03198216635b5e139f60e01b145b8061075e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107739061251e565b80601f016020809104026020016040519081016040528092919081815260200182805461079f9061251e565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089b82610eee565b9050806001600160a01b0316836001600160a01b0316036109085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161086b565b336001600160a01b03821614806109245750610924813361166c565b6109965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161086b565b6109a08383611965565b505050565b6006546001600160a01b031633146109cf5760405162461bcd60e51b815260040161086b90612558565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b60006109fe60075490565b905090565b6006546001600160a01b03163314610a2d5760405162461bcd60e51b815260040161086b90612558565b6018805460ff1916911515919091179055565b610a4a33826119d3565b610a665760405162461bcd60e51b815260040161086b9061258d565b6109a0838383611aaa565b6006546001600160a01b03163314610a9b5760405162461bcd60e51b815260040161086b90612558565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6006546001600160a01b03163314610ae65760405162461bcd60e51b815260040161086b90612558565b601c5461010090046001600160a01b03166108fc6064610b074760326125f4565b610b119190612629565b6040518115909202916000818181858888f19350505050158015610b39573d6000803e3d6000fd5b50601d546001600160a01b03166108fc6064610b564760506125f4565b610b609190612629565b6040518115909202916000818181858888f19350505050158015610b88573d6000803e3d6000fd5b50601e546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bc2573d6000803e3d6000fd5b50565b6109a0838383604051806020016040528060008152506113ae565b601a5460ff1615610bf057600080fd5b60155460ff16610c425760405162461bcd60e51b815260206004820152601860248201527f57686974656c697374204d696e74206e6f74206f70656e210000000000000000604482015260640161086b565b81601354610c5091906125f4565b341015610c6f5760405162461bcd60e51b815260040161086b9061263d565b601954821115610cbd5760405162461bcd60e51b815260206004820152601960248201527833204e4654206d6178696d756d207065722057616c6c65742160381b604482015260640161086b565b601954336000908152601b6020526040902054610cdb90849061266a565b1115610d295760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20574c204e465473206d696e74656421000000000000000000604482015260640161086b565b610dbd81600d8054610d3a9061251e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d669061251e565b8015610db35780601f10610d8857610100808354040283529160200191610db3565b820191906000526020600020905b815481529060010190602001808311610d9657829003601f168201915b5050505050611c46565b610dfa5760405162461bcd60e51b815260206004820152600e60248201526d4552524f525f4d494e54494e472160901b604482015260640161086b565b60145482610e0760095490565b610e11919061266a565b1115610e5f5760405162461bcd60e51b815260206004820152601b60248201527f4d6178696d756d20574c20537570706c79206578636565646564210000000000604482015260640161086b565b6017546007541115610e835760405162461bcd60e51b815260040161086b9061267d565b60005b828110156109a057336000908152601b60205260408120805491610ea9836126b4565b9190505550610ebc600780546001019055565b610eca600980546001019055565b610edc33610ed760075490565b611c9f565b80610ee6816126b4565b915050610e86565b6000818152600260205260408120546001600160a01b03168061075e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161086b565b6006546001600160a01b03163314610f8f5760405162461bcd60e51b815260040161086b90612558565b601a5460ff1615610f9f57600080fd5b60175482610fac60075490565b610fb6919061266a565b1115610ffb5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161086b565b60005b828110156109a057611014600780546001019055565b61102182610ed760075490565b8061102b816126b4565b915050610ffe565b60006001600160a01b03821661109e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161086b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110e45760405162461bcd60e51b815260040161086b90612558565b6110ee6000611cb9565b565b601a5460ff161561110057600080fd5b60115460ff166111465760405162461bcd60e51b81526020600482015260116024820152704f47204d696e74206e6f74206f70656e2160781b604482015260640161086b565b336000908152600c602052604090205460ff166111a55760405162461bcd60e51b815260206004820152601f60248201527f596f75722057616c6c6574206973206e6f742057686974656c69737465642100604482015260640161086b565b600e546111b39060016125f4565b3410156111d25760405162461bcd60e51b815260040161086b9061263d565b6010548111156112245760405162461bcd60e51b815260206004820152601960248201527f31204e4654206d6178696d756d207065722057616c6c65742100000000000000604482015260640161086b565b33600090815260126020526040902054156112815760405162461bcd60e51b815260206004820152601f60248201527f596f7520616c7265616479206d696e74656420796f7572204f47204e46542100604482015260640161086b565b600f548161128e60085490565b611298919061266a565b11156112e65760405162461bcd60e51b815260206004820152601b60248201527f4d6178696d756d204f4720537570706c79206578636565646564210000000000604482015260640161086b565b601754600754111561130a5760405162461bcd60e51b815260040161086b9061267d565b336000908152601260205260408120805491611325836126b4565b9190505550611338600780546001019055565b611346600880546001019055565b610bc233610ed760075490565b6060600180546107739061251e565b6006546001600160a01b0316331461138c5760405162461bcd60e51b815260040161086b90612558565b6011805460ff1916911515919091179055565b6113aa338383611d0b565b5050565b6113b833836119d3565b6113d45760405162461bcd60e51b815260040161086b9061258d565b6113e084848484611dd9565b50505050565b6000818152600260205260409020546060906001600160a01b03166114445760405162461bcd60e51b81526020600482015260146024820152731513d2d15397d113d154d7d393d517d1561254d560621b604482015260640161086b565b6000600a80546114539061251e565b80601f016020809104026020016040519081016040528092919081815260200182805461147f9061251e565b80156114cc5780601f106114a1576101008083540402835291602001916114cc565b820191906000526020600020905b8154815290600101906020018083116114af57829003601f168201915b5050601c5493945050505060ff161515600003611537576000600b80546114f29061251e565b90501161150e5760405180602001604052806000815250611530565b600b6040516020016115209190612740565b6040516020818303038152906040525b9392505050565b60008151116115555760405180602001604052806000815250611530565b8061155f84611e0c565b601f6040516020016115209392919061274c565b6006546001600160a01b0316331461159d5760405162461bcd60e51b815260040161086b90612558565b6015805460ff1916911515919091179055565b6006546001600160a01b031633146115da5760405162461bcd60e51b815260040161086b90612558565b601a805460ff19166001179055565b6006546001600160a01b031633146116135760405162461bcd60e51b815260040161086b90612558565b601c805460ff1916911515919091179055565b6006546001600160a01b031633146116505760405162461bcd60e51b815260040161086b90612558565b601a5460ff161561166057600080fd5b600a6113aa82826127d7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b601a5460ff16156116aa57600080fd5b60185460ff166116f45760405162461bcd60e51b81526020600482015260156024820152745075626c6963204d696e74206e6f74206f70656e2160581b604482015260640161086b565b8060165461170291906125f4565b3410156117215760405162461bcd60e51b815260040161086b9061263d565b60195481111561176f5760405162461bcd60e51b815260206004820152601960248201527833204e4654206d6178696d756d207065722057616c6c65742160381b604482015260640161086b565b60195461177d90600361266a565b336000908152601b602052604090205461179890839061266a565b11156117e65760405162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d204e465473206d696e746564207065722077616c6c65742100604482015260640161086b565b601754816117f360075490565b6117fd919061266a565b111561181b5760405162461bcd60e51b815260040161086b9061267d565b60005b818110156113aa57336000908152601b60205260408120805491611841836126b4565b9190505550611854600780546001019055565b61186133610ed760075490565b8061186b816126b4565b91505061181e565b6006546001600160a01b0316331461189d5760405162461bcd60e51b815260040161086b90612558565b6011805460ff19169055600d6118b382826127d7565b50506018805460ff19908116909155601580549091169055565b6006546001600160a01b031633146118f75760405162461bcd60e51b815260040161086b90612558565b6001600160a01b03811661195c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086b565b610bc281611cb9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061199a82610eee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086b565b6000611a5783610eee565b9050806001600160a01b0316846001600160a01b03161480611a925750836001600160a01b0316611a87846107f6565b6001600160a01b0316145b80611aa25750611aa2818561166c565b949350505050565b826001600160a01b0316611abd82610eee565b6001600160a01b031614611b215760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161086b565b6001600160a01b038216611b835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161086b565b611b8e600082611965565b6001600160a01b0383166000908152600360205260408120805460019290611bb7908490612897565b90915550506001600160a01b0382166000908152600360205260408120805460019290611be590849061266a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081604051602001611c5991906128aa565b6040516020818303038152906040528051906020012083604051602001611c8091906128aa565b6040516020818303038152906040528051906020012014905092915050565b6113aa828260405180602001604052806000815250611f0d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611d6c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161086b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611de4848484611aaa565b611df084848484611f40565b6113e05760405162461bcd60e51b815260040161086b906128c6565b606081600003611e335750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e5d5780611e47816126b4565b9150611e569050600a83612629565b9150611e37565b60008167ffffffffffffffff811115611e7857611e786122fa565b6040519080825280601f01601f191660200182016040528015611ea2576020820181803683370190505b5090505b8415611aa257611eb7600183612897565b9150611ec4600a86612918565b611ecf90603061266a565b60f81b818381518110611ee457611ee461292c565b60200101906001600160f81b031916908160001a905350611f06600a86612629565b9450611ea6565b611f178383612041565b611f246000848484611f40565b6109a05760405162461bcd60e51b815260040161086b906128c6565b60006001600160a01b0384163b1561203657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f84903390899088908890600401612942565b6020604051808303816000875af1925050508015611fbf575060408051601f3d908101601f19168201909252611fbc9181019061297f565b60015b61201c573d808015611fed576040519150601f19603f3d011682016040523d82523d6000602084013e611ff2565b606091505b5080516000036120145760405162461bcd60e51b815260040161086b906128c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aa2565b506001949350505050565b6001600160a01b0382166120975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161086b565b6000818152600260205260409020546001600160a01b0316156120fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161086b565b6001600160a01b038216600090815260036020526040812080546001929061212590849061266a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610bc257600080fd5b6000602082840312156121ab57600080fd5b813561153081612183565b60005b838110156121d15781810151838201526020016121b9565b50506000910152565b600081518084526121f28160208601602086016121b6565b601f01601f19169290920160200192915050565b60208152600061153060208301846121da565b60006020828403121561222b57600080fd5b5035919050565b80356001600160a01b038116811461224957600080fd5b919050565b6000806040838503121561226157600080fd5b61226a83612232565b946020939093013593505050565b60006020828403121561228a57600080fd5b61153082612232565b8035801515811461224957600080fd5b6000602082840312156122b557600080fd5b61153082612293565b6000806000606084860312156122d357600080fd5b6122dc84612232565b92506122ea60208501612232565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561232b5761232b6122fa565b604051601f8501601f19908116603f01168101908282118183101715612353576123536122fa565b8160405280935085815286868601111561236c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261239757600080fd5b61153083833560208501612310565b600080604083850312156123b957600080fd5b82359150602083013567ffffffffffffffff8111156123d757600080fd5b6123e385828601612386565b9150509250929050565b6000806040838503121561240057600080fd5b8235915061241060208401612232565b90509250929050565b6000806040838503121561242c57600080fd5b61243583612232565b915061241060208401612293565b6000806000806080858703121561245957600080fd5b61246285612232565b935061247060208601612232565b925060408501359150606085013567ffffffffffffffff81111561249357600080fd5b8501601f810187136124a457600080fd5b6124b387823560208401612310565b91505092959194509250565b6000602082840312156124d157600080fd5b813567ffffffffffffffff8111156124e857600080fd5b611aa284828501612386565b6000806040838503121561250757600080fd5b61251083612232565b915061241060208401612232565b600181811c9082168061253257607f821691505b60208210810361255257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561260e5761260e6125de565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261263857612638612613565b500490565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b8082018082111561075e5761075e6125de565b6020808252601d908201527f4d6178696d756d20546f74616c20537570706c79207265616368656421000000604082015260600190565b6000600182016126c6576126c66125de565b5060010190565b600081546126da8161251e565b600182811680156126f2576001811461270757612736565b60ff1984168752821515830287019450612736565b8560005260208060002060005b8581101561272d5781548a820152908401908201612714565b50505082870194505b5050505092915050565b600061153082846126cd565b6000845161275e8184602089016121b6565b8451908301906127728183602089016121b6565b61277e818301866126cd565b979650505050505050565b601f8211156109a057600081815260208120601f850160051c810160208610156127b05750805b601f850160051c820191505b818110156127cf578281556001016127bc565b505050505050565b815167ffffffffffffffff8111156127f1576127f16122fa565b612805816127ff845461251e565b84612789565b602080601f83116001811461283a57600084156128225750858301515b600019600386901b1c1916600185901b1785556127cf565b600085815260208120601f198616915b828110156128695788860151825594840194600190910190840161284a565b50858210156128875787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111561075e5761075e6125de565b600082516128bc8184602087016121b6565b9190910192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261292757612927612613565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612975908301846121da565b9695505050505050565b60006020828403121561299157600080fd5b81516115308161218356fea2646970667358221220032535187dc0fd2809a51c0ece37c9ad7de689e3ff4a45e9e2b9da16223f25b964736f6c63430008100033697066733a2f2f516d514b784e555a445a446e53534b7338484b58646a3364327757346b44625a6458353570337932617a325a7874

Deployed Bytecode

0x60806040526004361061023b5760003560e01c8063715018a61161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c514610689578063efd0cbf9146106a9578063f0ce6d25146106bc578063f2fde38b146106dc578063fc1a1c36146106fc57600080fd5b8063c87b56dd146105f4578063ce8af04214610614578063cf837fad14610634578063e0a8085314610649578063e0df5b6f1461066957600080fd5b80639ada8d59116100f25780639ada8d591461054e5780639b19251a1461056e578063a22cb4651461059e578063a945bf80146105be578063b88d4fde146105d457600080fd5b8063715018a6146104c65780638da5cb5b146104db57806394bb4c04146104f9578063954cc17e1461050c57806395d89b411461053957600080fd5b806329092d0e116101bc578063573e261a11610180578063573e261a146104235780636352211e1461045057806366380b38146104705780636a35d1841461049057806370a08231146104a657600080fd5b806329092d0e146103a15780633ccfd60b146103c157806342842e0e146103d65780634bfc2709146103f6578063518302271461040957600080fd5b80630a3b0a4f116102035780630a3b0a4f1461031657806318160ddd1461033657806323394d991461034b57806323b872dd1461036b57806326a74d8e1461038b57600080fd5b806301ffc9a714610240578063047fc9aa1461027557806306fdde031461029a578063081812fc146102bc578063095ea7b3146102f4575b600080fd5b34801561024c57600080fd5b5061026061025b366004612199565b610712565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5060075461028c9081565b60405190815260200161026c565b3480156102a657600080fd5b506102af610764565b60405161026c9190612206565b3480156102c857600080fd5b506102dc6102d7366004612219565b6107f6565b6040516001600160a01b03909116815260200161026c565b34801561030057600080fd5b5061031461030f36600461224e565b610890565b005b34801561032257600080fd5b50610314610331366004612278565b6109a5565b34801561034257600080fd5b5061028c6109f3565b34801561035757600080fd5b506103146103663660046122a3565b610a03565b34801561037757600080fd5b506103146103863660046122be565b610a40565b34801561039757600080fd5b5061028c60175481565b3480156103ad57600080fd5b506103146103bc366004612278565b610a71565b3480156103cd57600080fd5b50610314610abc565b3480156103e257600080fd5b506103146103f13660046122be565b610bc5565b6103146104043660046123a6565b610be0565b34801561041557600080fd5b50601c546102609060ff1681565b34801561042f57600080fd5b5061028c61043e366004612278565b601b6020526000908152604090205481565b34801561045c57600080fd5b506102dc61046b366004612219565b610eee565b34801561047c57600080fd5b5061031461048b3660046123ed565b610f65565b34801561049c57600080fd5b5061028c600e5481565b3480156104b257600080fd5b5061028c6104c1366004612278565b611033565b3480156104d257600080fd5b506103146110ba565b3480156104e757600080fd5b506006546001600160a01b03166102dc565b610314610507366004612219565b6110f0565b34801561051857600080fd5b5061028c610527366004612278565b60126020526000908152604090205481565b34801561054557600080fd5b506102af611353565b34801561055a57600080fd5b506103146105693660046122a3565b611362565b34801561057a57600080fd5b50610260610589366004612278565b600c6020526000908152604090205460ff1681565b3480156105aa57600080fd5b506103146105b9366004612419565b61139f565b3480156105ca57600080fd5b5061028c60165481565b3480156105e057600080fd5b506103146105ef366004612443565b6113ae565b34801561060057600080fd5b506102af61060f366004612219565b6113e6565b34801561062057600080fd5b5061031461062f3660046122a3565b611573565b34801561064057600080fd5b506103146115b0565b34801561065557600080fd5b506103146106643660046122a3565b6115e9565b34801561067557600080fd5b506103146106843660046124bf565b611626565b34801561069557600080fd5b506102606106a43660046124f4565b61166c565b6103146106b7366004612219565b61169a565b3480156106c857600080fd5b506103146106d73660046124bf565b611873565b3480156106e857600080fd5b506103146106f7366004612278565b6118cd565b34801561070857600080fd5b5061028c60135481565b60006001600160e01b031982166380ac58cd60e01b148061074357506001600160e01b03198216635b5e139f60e01b145b8061075e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600080546107739061251e565b80601f016020809104026020016040519081016040528092919081815260200182805461079f9061251e565b80156107ec5780601f106107c1576101008083540402835291602001916107ec565b820191906000526020600020905b8154815290600101906020018083116107cf57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108745760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061089b82610eee565b9050806001600160a01b0316836001600160a01b0316036109085760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161086b565b336001600160a01b03821614806109245750610924813361166c565b6109965760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161086b565b6109a08383611965565b505050565b6006546001600160a01b031633146109cf5760405162461bcd60e51b815260040161086b90612558565b6001600160a01b03166000908152600c60205260409020805460ff19166001179055565b60006109fe60075490565b905090565b6006546001600160a01b03163314610a2d5760405162461bcd60e51b815260040161086b90612558565b6018805460ff1916911515919091179055565b610a4a33826119d3565b610a665760405162461bcd60e51b815260040161086b9061258d565b6109a0838383611aaa565b6006546001600160a01b03163314610a9b5760405162461bcd60e51b815260040161086b90612558565b6001600160a01b03166000908152600c60205260409020805460ff19169055565b6006546001600160a01b03163314610ae65760405162461bcd60e51b815260040161086b90612558565b601c5461010090046001600160a01b03166108fc6064610b074760326125f4565b610b119190612629565b6040518115909202916000818181858888f19350505050158015610b39573d6000803e3d6000fd5b50601d546001600160a01b03166108fc6064610b564760506125f4565b610b609190612629565b6040518115909202916000818181858888f19350505050158015610b88573d6000803e3d6000fd5b50601e546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610bc2573d6000803e3d6000fd5b50565b6109a0838383604051806020016040528060008152506113ae565b601a5460ff1615610bf057600080fd5b60155460ff16610c425760405162461bcd60e51b815260206004820152601860248201527f57686974656c697374204d696e74206e6f74206f70656e210000000000000000604482015260640161086b565b81601354610c5091906125f4565b341015610c6f5760405162461bcd60e51b815260040161086b9061263d565b601954821115610cbd5760405162461bcd60e51b815260206004820152601960248201527833204e4654206d6178696d756d207065722057616c6c65742160381b604482015260640161086b565b601954336000908152601b6020526040902054610cdb90849061266a565b1115610d295760405162461bcd60e51b815260206004820152601760248201527f4d6178696d756d20574c204e465473206d696e74656421000000000000000000604482015260640161086b565b610dbd81600d8054610d3a9061251e565b80601f0160208091040260200160405190810160405280929190818152602001828054610d669061251e565b8015610db35780601f10610d8857610100808354040283529160200191610db3565b820191906000526020600020905b815481529060010190602001808311610d9657829003601f168201915b5050505050611c46565b610dfa5760405162461bcd60e51b815260206004820152600e60248201526d4552524f525f4d494e54494e472160901b604482015260640161086b565b60145482610e0760095490565b610e11919061266a565b1115610e5f5760405162461bcd60e51b815260206004820152601b60248201527f4d6178696d756d20574c20537570706c79206578636565646564210000000000604482015260640161086b565b6017546007541115610e835760405162461bcd60e51b815260040161086b9061267d565b60005b828110156109a057336000908152601b60205260408120805491610ea9836126b4565b9190505550610ebc600780546001019055565b610eca600980546001019055565b610edc33610ed760075490565b611c9f565b80610ee6816126b4565b915050610e86565b6000818152600260205260408120546001600160a01b03168061075e5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161086b565b6006546001600160a01b03163314610f8f5760405162461bcd60e51b815260040161086b90612558565b601a5460ff1615610f9f57600080fd5b60175482610fac60075490565b610fb6919061266a565b1115610ffb5760405162461bcd60e51b81526020600482015260146024820152734d617820737570706c792065786365656465642160601b604482015260640161086b565b60005b828110156109a057611014600780546001019055565b61102182610ed760075490565b8061102b816126b4565b915050610ffe565b60006001600160a01b03821661109e5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161086b565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146110e45760405162461bcd60e51b815260040161086b90612558565b6110ee6000611cb9565b565b601a5460ff161561110057600080fd5b60115460ff166111465760405162461bcd60e51b81526020600482015260116024820152704f47204d696e74206e6f74206f70656e2160781b604482015260640161086b565b336000908152600c602052604090205460ff166111a55760405162461bcd60e51b815260206004820152601f60248201527f596f75722057616c6c6574206973206e6f742057686974656c69737465642100604482015260640161086b565b600e546111b39060016125f4565b3410156111d25760405162461bcd60e51b815260040161086b9061263d565b6010548111156112245760405162461bcd60e51b815260206004820152601960248201527f31204e4654206d6178696d756d207065722057616c6c65742100000000000000604482015260640161086b565b33600090815260126020526040902054156112815760405162461bcd60e51b815260206004820152601f60248201527f596f7520616c7265616479206d696e74656420796f7572204f47204e46542100604482015260640161086b565b600f548161128e60085490565b611298919061266a565b11156112e65760405162461bcd60e51b815260206004820152601b60248201527f4d6178696d756d204f4720537570706c79206578636565646564210000000000604482015260640161086b565b601754600754111561130a5760405162461bcd60e51b815260040161086b9061267d565b336000908152601260205260408120805491611325836126b4565b9190505550611338600780546001019055565b611346600880546001019055565b610bc233610ed760075490565b6060600180546107739061251e565b6006546001600160a01b0316331461138c5760405162461bcd60e51b815260040161086b90612558565b6011805460ff1916911515919091179055565b6113aa338383611d0b565b5050565b6113b833836119d3565b6113d45760405162461bcd60e51b815260040161086b9061258d565b6113e084848484611dd9565b50505050565b6000818152600260205260409020546060906001600160a01b03166114445760405162461bcd60e51b81526020600482015260146024820152731513d2d15397d113d154d7d393d517d1561254d560621b604482015260640161086b565b6000600a80546114539061251e565b80601f016020809104026020016040519081016040528092919081815260200182805461147f9061251e565b80156114cc5780601f106114a1576101008083540402835291602001916114cc565b820191906000526020600020905b8154815290600101906020018083116114af57829003601f168201915b5050601c5493945050505060ff161515600003611537576000600b80546114f29061251e565b90501161150e5760405180602001604052806000815250611530565b600b6040516020016115209190612740565b6040516020818303038152906040525b9392505050565b60008151116115555760405180602001604052806000815250611530565b8061155f84611e0c565b601f6040516020016115209392919061274c565b6006546001600160a01b0316331461159d5760405162461bcd60e51b815260040161086b90612558565b6015805460ff1916911515919091179055565b6006546001600160a01b031633146115da5760405162461bcd60e51b815260040161086b90612558565b601a805460ff19166001179055565b6006546001600160a01b031633146116135760405162461bcd60e51b815260040161086b90612558565b601c805460ff1916911515919091179055565b6006546001600160a01b031633146116505760405162461bcd60e51b815260040161086b90612558565b601a5460ff161561166057600080fd5b600a6113aa82826127d7565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b601a5460ff16156116aa57600080fd5b60185460ff166116f45760405162461bcd60e51b81526020600482015260156024820152745075626c6963204d696e74206e6f74206f70656e2160581b604482015260640161086b565b8060165461170291906125f4565b3410156117215760405162461bcd60e51b815260040161086b9061263d565b60195481111561176f5760405162461bcd60e51b815260206004820152601960248201527833204e4654206d6178696d756d207065722057616c6c65742160381b604482015260640161086b565b60195461177d90600361266a565b336000908152601b602052604090205461179890839061266a565b11156117e65760405162461bcd60e51b815260206004820152601f60248201527f4d6178696d756d204e465473206d696e746564207065722077616c6c65742100604482015260640161086b565b601754816117f360075490565b6117fd919061266a565b111561181b5760405162461bcd60e51b815260040161086b9061267d565b60005b818110156113aa57336000908152601b60205260408120805491611841836126b4565b9190505550611854600780546001019055565b61186133610ed760075490565b8061186b816126b4565b91505061181e565b6006546001600160a01b0316331461189d5760405162461bcd60e51b815260040161086b90612558565b6011805460ff19169055600d6118b382826127d7565b50506018805460ff19908116909155601580549091169055565b6006546001600160a01b031633146118f75760405162461bcd60e51b815260040161086b90612558565b6001600160a01b03811661195c5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161086b565b610bc281611cb9565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061199a82610eee565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611a4c5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161086b565b6000611a5783610eee565b9050806001600160a01b0316846001600160a01b03161480611a925750836001600160a01b0316611a87846107f6565b6001600160a01b0316145b80611aa25750611aa2818561166c565b949350505050565b826001600160a01b0316611abd82610eee565b6001600160a01b031614611b215760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161086b565b6001600160a01b038216611b835760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161086b565b611b8e600082611965565b6001600160a01b0383166000908152600360205260408120805460019290611bb7908490612897565b90915550506001600160a01b0382166000908152600360205260408120805460019290611be590849061266a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081604051602001611c5991906128aa565b6040516020818303038152906040528051906020012083604051602001611c8091906128aa565b6040516020818303038152906040528051906020012014905092915050565b6113aa828260405180602001604052806000815250611f0d565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031603611d6c5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161086b565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611de4848484611aaa565b611df084848484611f40565b6113e05760405162461bcd60e51b815260040161086b906128c6565b606081600003611e335750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e5d5780611e47816126b4565b9150611e569050600a83612629565b9150611e37565b60008167ffffffffffffffff811115611e7857611e786122fa565b6040519080825280601f01601f191660200182016040528015611ea2576020820181803683370190505b5090505b8415611aa257611eb7600183612897565b9150611ec4600a86612918565b611ecf90603061266a565b60f81b818381518110611ee457611ee461292c565b60200101906001600160f81b031916908160001a905350611f06600a86612629565b9450611ea6565b611f178383612041565b611f246000848484611f40565b6109a05760405162461bcd60e51b815260040161086b906128c6565b60006001600160a01b0384163b1561203657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f84903390899088908890600401612942565b6020604051808303816000875af1925050508015611fbf575060408051601f3d908101601f19168201909252611fbc9181019061297f565b60015b61201c573d808015611fed576040519150601f19603f3d011682016040523d82523d6000602084013e611ff2565b606091505b5080516000036120145760405162461bcd60e51b815260040161086b906128c6565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611aa2565b506001949350505050565b6001600160a01b0382166120975760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161086b565b6000818152600260205260409020546001600160a01b0316156120fc5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161086b565b6001600160a01b038216600090815260036020526040812080546001929061212590849061266a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b031981168114610bc257600080fd5b6000602082840312156121ab57600080fd5b813561153081612183565b60005b838110156121d15781810151838201526020016121b9565b50506000910152565b600081518084526121f28160208601602086016121b6565b601f01601f19169290920160200192915050565b60208152600061153060208301846121da565b60006020828403121561222b57600080fd5b5035919050565b80356001600160a01b038116811461224957600080fd5b919050565b6000806040838503121561226157600080fd5b61226a83612232565b946020939093013593505050565b60006020828403121561228a57600080fd5b61153082612232565b8035801515811461224957600080fd5b6000602082840312156122b557600080fd5b61153082612293565b6000806000606084860312156122d357600080fd5b6122dc84612232565b92506122ea60208501612232565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561232b5761232b6122fa565b604051601f8501601f19908116603f01168101908282118183101715612353576123536122fa565b8160405280935085815286868601111561236c57600080fd5b858560208301376000602087830101525050509392505050565b600082601f83011261239757600080fd5b61153083833560208501612310565b600080604083850312156123b957600080fd5b82359150602083013567ffffffffffffffff8111156123d757600080fd5b6123e385828601612386565b9150509250929050565b6000806040838503121561240057600080fd5b8235915061241060208401612232565b90509250929050565b6000806040838503121561242c57600080fd5b61243583612232565b915061241060208401612293565b6000806000806080858703121561245957600080fd5b61246285612232565b935061247060208601612232565b925060408501359150606085013567ffffffffffffffff81111561249357600080fd5b8501601f810187136124a457600080fd5b6124b387823560208401612310565b91505092959194509250565b6000602082840312156124d157600080fd5b813567ffffffffffffffff8111156124e857600080fd5b611aa284828501612386565b6000806040838503121561250757600080fd5b61251083612232565b915061241060208401612232565b600181811c9082168061253257607f821691505b60208210810361255257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600081600019048311821515161561260e5761260e6125de565b500290565b634e487b7160e01b600052601260045260246000fd5b60008261263857612638612613565b500490565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b8082018082111561075e5761075e6125de565b6020808252601d908201527f4d6178696d756d20546f74616c20537570706c79207265616368656421000000604082015260600190565b6000600182016126c6576126c66125de565b5060010190565b600081546126da8161251e565b600182811680156126f2576001811461270757612736565b60ff1984168752821515830287019450612736565b8560005260208060002060005b8581101561272d5781548a820152908401908201612714565b50505082870194505b5050505092915050565b600061153082846126cd565b6000845161275e8184602089016121b6565b8451908301906127728183602089016121b6565b61277e818301866126cd565b979650505050505050565b601f8211156109a057600081815260208120601f850160051c810160208610156127b05750805b601f850160051c820191505b818110156127cf578281556001016127bc565b505050505050565b815167ffffffffffffffff8111156127f1576127f16122fa565b612805816127ff845461251e565b84612789565b602080601f83116001811461283a57600084156128225750858301515b600019600386901b1c1916600185901b1785556127cf565b600085815260208120601f198616915b828110156128695788860151825594840194600190910190840161284a565b50858210156128875787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8181038181111561075e5761075e6125de565b600082516128bc8184602087016121b6565b9190910192915050565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008261292757612927612613565b500690565b634e487b7160e01b600052603260045260246000fd5b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612975908301846121da565b9695505050505050565b60006020828403121561299157600080fd5b81516115308161218356fea2646970667358221220032535187dc0fd2809a51c0ece37c9ad7de689e3ff4a45e9e2b9da16223f25b964736f6c63430008100033

Deployed Bytecode Sourcemap

38753:7223:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25574:305;;;;;;;;;;-1:-1:-1;25574:305:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;25574:305:0;;;;;;;;38874:30;;;;;;;;;;-1:-1:-1;38874:30:0;;;;;;;;;738:25:1;;;726:2;711:18;38874:30:0;592:177:1;26519:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28078:221::-;;;;;;;;;;-1:-1:-1;28078:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1879:32:1;;;1861:51;;1849:2;1834:18;28078:221:0;1715:203:1;27601:411:0;;;;;;;;;;-1:-1:-1;27601:411:0;;;;;:::i;:::-;;:::i;:::-;;43970:97;;;;;;;;;;-1:-1:-1;43970:97:0;;;;;:::i;:::-;;:::i;40532:95::-;;;;;;;;;;;;;:::i;44512:114::-;;;;;;;;;;-1:-1:-1;44512:114:0;;;;;:::i;:::-;;:::i;28828:339::-;;;;;;;;;;-1:-1:-1;28828:339:0;;;;;:::i;:::-;;:::i;39598:36::-;;;;;;;;;;;;;;;;44073:101;;;;;;;;;;-1:-1:-1;44073:101:0;;;;;:::i;:::-;;:::i;44796:259::-;;;;;;;;;;;;;:::i;29238:185::-;;;;;;;;;;-1:-1:-1;29238:185:0;;;;;:::i;:::-;;:::i;41537:1058::-;;;;;;:::i;:::-;;:::i;39833:28::-;;;;;;;;;;-1:-1:-1;39833:28:0;;;;;;;;39775:51;;;;;;;;;;-1:-1:-1;39775:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;26213:239;;;;;;;;;;-1:-1:-1;26213:239:0;;;;;:::i;:::-;;:::i;43352:395::-;;;;;;;;;;-1:-1:-1;43352:395:0;;;;;:::i;:::-;;:::i;39164:43::-;;;;;;;;;;;;;;;;25943:208;;;;;;;;;;-1:-1:-1;25943:208:0;;;;;:::i;:::-;;:::i;6195:103::-;;;;;;;;;;;;;:::i;5544:87::-;;;;;;;;;;-1:-1:-1;5617:6:0;;-1:-1:-1;;;;;5617:6:0;5544:87;;40640:889;;;;;;:::i;:::-;;:::i;39348:53::-;;;;;;;;;;-1:-1:-1;39348:53:0;;;;;:::i;:::-;;;;;;;;;;;;;;26688:104;;;;;;;;;;;;;:::i;44286:97::-;;;;;;;;;;-1:-1:-1;44286:97:0;;;;;:::i;:::-;;:::i;39075:41::-;;;;;;;;;;-1:-1:-1;39075:41:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;28371:155;;;;;;;;;;-1:-1:-1;28371:155:0;;;;;:::i;:::-;;:::i;39551:38::-;;;;;;;;;;;;;;;;29494:328;;;;;;;;;;-1:-1:-1;29494:328:0;;;;;:::i;:::-;;:::i;45282:504::-;;;;;;;;;;-1:-1:-1;45282:504:0;;;;;:::i;:::-;;:::i;44395:111::-;;;;;;;;;;-1:-1:-1;44395:111:0;;;;;:::i;:::-;;:::i;45187:87::-;;;;;;;;;;;;;:::i;44186:92::-;;;;;;;;;;-1:-1:-1;44186:92:0;;;;;:::i;:::-;;:::i;44638:141::-;;;;;;;;;;-1:-1:-1;44638:141:0;;;;;:::i;:::-;;:::i;28597:164::-;;;;;;;;;;-1:-1:-1;28597:164:0;;;;;:::i;:::-;;:::i;42603:743::-;;;;;;:::i;:::-;;:::i;43758:200::-;;;;;;;;;;-1:-1:-1;43758:200:0;;;;;:::i;:::-;;:::i;6453:201::-;;;;;;;;;;-1:-1:-1;6453:201:0;;;;;:::i;:::-;;:::i;39408:41::-;;;;;;;;;;;;;;;;25574:305;25676:4;-1:-1:-1;;;;;;25713:40:0;;-1:-1:-1;;;25713:40:0;;:105;;-1:-1:-1;;;;;;;25770:48:0;;-1:-1:-1;;;25770:48:0;25713:105;:158;;;-1:-1:-1;;;;;;;;;;18437:40:0;;;25835:36;25693:178;25574:305;-1:-1:-1;;25574:305:0:o;26519:100::-;26573:13;26606:5;26599:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26519:100;:::o;28078:221::-;28154:7;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;28174:73;;;;-1:-1:-1;;;28174:73:0;;6994:2:1;28174:73:0;;;6976:21:1;7033:2;7013:18;;;7006:30;7072:34;7052:18;;;7045:62;-1:-1:-1;;;7123:18:1;;;7116:42;7175:19;;28174:73:0;;;;;;;;;-1:-1:-1;28267:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28267:24:0;;28078:221::o;27601:411::-;27682:13;27698:23;27713:7;27698:14;:23::i;:::-;27682:39;;27746:5;-1:-1:-1;;;;;27740:11:0;:2;-1:-1:-1;;;;;27740:11:0;;27732:57;;;;-1:-1:-1;;;27732:57:0;;7407:2:1;27732:57:0;;;7389:21:1;7446:2;7426:18;;;7419:30;7485:34;7465:18;;;7458:62;-1:-1:-1;;;7536:18:1;;;7529:31;7577:19;;27732:57:0;7205:397:1;27732:57:0;4348:10;-1:-1:-1;;;;;27824:21:0;;;;:62;;-1:-1:-1;27849:37:0;27866:5;4348:10;28597:164;:::i;27849:37::-;27802:168;;;;-1:-1:-1;;;27802:168:0;;7809:2:1;27802:168:0;;;7791:21:1;7848:2;7828:18;;;7821:30;7887:34;7867:18;;;7860:62;7958:26;7938:18;;;7931:54;8002:19;;27802:168:0;7607:420:1;27802:168:0;27983:21;27992:2;27996:7;27983:8;:21::i;:::-;27671:341;27601:411;;:::o;43970:97::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44029:19:0::1;;::::0;;;:9:::1;:19;::::0;;;;:26;;-1:-1:-1;;44029:26:0::1;44051:4;44029:26;::::0;;43970:97::o;40532:95::-;40576:7;40607:16;:6;964:14;;872:114;40607:16;40600:23;;40532:95;:::o;44512:114::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44582:14:::1;:23:::0;;-1:-1:-1;;44582:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44512:114::o;28828:339::-;29023:41;4348:10;29056:7;29023:18;:41::i;:::-;29015:103;;;;-1:-1:-1;;;29015:103:0;;;;;;;:::i;:::-;29131:28;29141:4;29147:2;29151:7;29131:9;:28::i;44073:101::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;44135:19:0::1;44157:5;44135:19:::0;;;:9:::1;:19;::::0;;;;:27;;-1:-1:-1;;44135:27:0::1;::::0;;44073:101::o;44796:259::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44858:6:::1;::::0;::::1;::::0;::::1;-1:-1:-1::0;;;;;44858:6:0::1;44850:58;44904:3;44875:27;:21;44900:2;44875:27;:::i;:::-;:32;;;;:::i;:::-;44850:58;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;44931:6:0::1;::::0;-1:-1:-1;;;;;44931:6:0::1;44923:58;44977:3;44948:26;:21;44972:2;44948:26;:::i;:::-;:32;;;;:::i;:::-;44923:58;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;45004:6:0::1;::::0;44996:47:::1;::::0;-1:-1:-1;;;;;45004:6:0;;::::1;::::0;45021:21:::1;44996:47:::0;::::1;;;::::0;45004:6:::1;44996:47:::0;45004:6;44996:47;45021:21;45004:6;44996:47;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;44796:259::o:0;29238:185::-;29376:39;29393:4;29399:2;29403:7;29376:39;;;;;;;;;;;;:16;:39::i;41537:1058::-;41641:13;;;;41640:14;41632:23;;;;;;41674:17;;;;41666:54;;;;-1:-1:-1;;;41666:54:0;;9575:2:1;41666:54:0;;;9557:21:1;9614:2;9594:18;;;9587:30;9653:26;9633:18;;;9626:54;9697:18;;41666:54:0;9373:348:1;41666:54:0;41773:11;41756:14;;:28;;;;:::i;:::-;41743:9;:41;;41735:73;;;;-1:-1:-1;;;41735:73:0;;;;;;;:::i;:::-;41842:13;;41827:11;:28;;41819:66;;;;-1:-1:-1;;;41819:66:0;;10276:2:1;41819:66:0;;;10258:21:1;10315:2;10295:18;;;10288:30;-1:-1:-1;;;10334:18:1;;;10327:55;10399:18;;41819:66:0;10074:349:1;41819:66:0;41948:13;;41921:10;41904:28;;;;:16;:28;;;;;;:40;;41933:11;;41904:40;:::i;:::-;:57;;41896:93;;;;-1:-1:-1;;;41896:93:0;;10760:2:1;41896:93:0;;;10742:21:1;10799:2;10779:18;;;10772:30;10838:25;10818:18;;;10811:53;10881:18;;41896:93:0;10558:347:1;41896:93:0;42057:40;42074:8;42083:13;42057:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:16;:40::i;:::-;42049:66;;;;-1:-1:-1;;;42049:66:0;;11112:2:1;42049:66:0;;;11094:21:1;11151:2;11131:18;;;11124:30;-1:-1:-1;;;11170:18:1;;;11163:44;11224:18;;42049:66:0;10910:338:1;42049:66:0;42177:18;;42162:11;42134:25;:15;964:14;;872:114;42134:25;:39;;;;:::i;:::-;:61;;42126:101;;;;-1:-1:-1;;;42126:101:0;;11455:2:1;42126:101:0;;;11437:21:1;11494:2;11474:18;;;11467:30;11533:29;11513:18;;;11506:57;11580:18;;42126:101:0;11253:351:1;42126:101:0;42290:15;;42270:6;964:14;42270:35;;42262:77;;;;-1:-1:-1;;;42262:77:0;;;;;;;:::i;:::-;42357:9;42352:232;42376:11;42372:1;:15;42352:232;;;42426:10;42409:28;;;;:16;:28;;;;;:30;;;;;;:::i;:::-;;;;;;42454:18;:6;1083:19;;1101:1;1083:19;;;994:127;42454:18;42487:27;:15;1083:19;;1101:1;1083:19;;;994:127;42487:27;42529:39;42539:10;42551:16;:6;964:14;;872:114;42551:16;42529:9;:39::i;:::-;42389:3;;;;:::i;:::-;;;;42352:232;;26213:239;26285:7;26321:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26321:16:0;;26348:73;;;;-1:-1:-1;;;26348:73:0;;12309:2:1;26348:73:0;;;12291:21:1;12348:2;12328:18;;;12321:30;12387:34;12367:18;;;12360:62;-1:-1:-1;;;12438:18:1;;;12431:39;12487:19;;26348:73:0;12107:405:1;43352:395:0;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;43450:13:::1;::::0;::::1;;43449:14;43441:23;;;::::0;::::1;;43517:15;;43502:11;43483:16;:6;964:14:::0;;872:114;43483:16:::1;:30;;;;:::i;:::-;:49;;43475:82;;;::::0;-1:-1:-1;;;43475:82:0;;12719:2:1;43475:82:0::1;::::0;::::1;12701:21:1::0;12758:2;12738:18;;;12731:30;-1:-1:-1;;;12777:18:1;;;12770:50;12837:18;;43475:82:0::1;12517:344:1::0;43475:82:0::1;43597:9;43592:144;43616:11;43612:1;:15;43592:144;;;43649:18;:6;1083:19:::0;;1101:1;1083:19;;;994:127;43649:18:::1;43682:38;43692:9;43703:16;:6;964:14:::0;;872:114;43682:38:::1;43629:3:::0;::::1;::::0;::::1;:::i;:::-;;;;43592:144;;25943:208:::0;26015:7;-1:-1:-1;;;;;26043:19:0;;26035:74;;;;-1:-1:-1;;;26035:74:0;;13068:2:1;26035:74:0;;;13050:21:1;13107:2;13087:18;;;13080:30;13146:34;13126:18;;;13119:62;-1:-1:-1;;;13197:18:1;;;13190:40;13247:19;;26035:74:0;12866:406:1;26035:74:0;-1:-1:-1;;;;;;26127:16:0;;;;;:9;:16;;;;;;;25943:208::o;6195:103::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;6260:30:::1;6287:1;6260:18;:30::i;:::-;6195:103::o:0;40640:889::-;40713:13;;;;40712:14;40704:23;;;;;;40746:10;;;;40738:40;;;;-1:-1:-1;;;40738:40:0;;13479:2:1;40738:40:0;;;13461:21:1;13518:2;13498:18;;;13491:30;-1:-1:-1;;;13537:18:1;;;13530:47;13594:18;;40738:40:0;13277:341:1;40738:40:0;40812:10;40802:21;;;;:9;:21;;;;;;;;40793:65;;;;-1:-1:-1;;;40793:65:0;;13825:2:1;40793:65:0;;;13807:21:1;13864:2;13844:18;;;13837:30;13903:33;13883:18;;;13876:61;13954:18;;40793:65:0;13623:355:1;40793:65:0;40890:16;;:20;;40909:1;40890:20;:::i;:::-;40877:9;:33;;40869:65;;;;-1:-1:-1;;;40869:65:0;;;;;;;:::i;:::-;40968:15;;40953:11;:30;;40945:68;;;;-1:-1:-1;;;40945:68:0;;14185:2:1;40945:68:0;;;14167:21:1;14224:2;14204:18;;;14197:30;14263:27;14243:18;;;14236:55;14308:18;;40945:68:0;13983:349:1;40945:68:0;41051:10;41032:30;;;;:18;:30;;;;;;:35;41024:79;;;;-1:-1:-1;;;41024:79:0;;14539:2:1;41024:79:0;;;14521:21:1;14578:2;14558:18;;;14551:30;14617:33;14597:18;;;14590:61;14668:18;;41024:79:0;14337:355:1;41024:79:0;41207:11;;41192;41171:18;:8;964:14;;872:114;41171:18;:32;;;;:::i;:::-;:47;;41163:87;;;;-1:-1:-1;;;41163:87:0;;14899:2:1;41163:87:0;;;14881:21:1;14938:2;14918:18;;;14911:30;14977:29;14957:18;;;14950:57;15024:18;;41163:87:0;14697:351:1;41163:87:0;41313:15;;41293:6;964:14;41293:35;;41285:77;;;;-1:-1:-1;;;41285:77:0;;;;;;;:::i;:::-;41394:10;41375:30;;;;:18;:30;;;;;:32;;;;;;:::i;:::-;;;;;;41418:18;:6;1083:19;;1101:1;1083:19;;;994:127;41418:18;41447:20;:8;1083:19;;1101:1;1083:19;;;994:127;41447:20;41478:39;41488:10;41500:16;:6;964:14;;872:114;26688:104;26744:13;26777:7;26770:14;;;;;:::i;44286:97::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44352:10:::1;:19:::0;;-1:-1:-1;;44352:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44286:97::o;28371:155::-;28466:52;4348:10;28499:8;28509;28466:18;:52::i;:::-;28371:155;;:::o;29494:328::-;29669:41;4348:10;29702:7;29669:18;:41::i;:::-;29661:103;;;;-1:-1:-1;;;29661:103:0;;;;;;;:::i;:::-;29775:39;29789:4;29795:2;29799:7;29808:5;29775:13;:39::i;:::-;29494:328;;;;:::o;45282:504::-;31397:4;31421:16;;;:7;:16;;;;;;45357:13;;-1:-1:-1;;;;;31421:16:0;45386:50;;;;-1:-1:-1;;;45386:50:0;;15255:2:1;45386:50:0;;;15237:21:1;15294:2;15274:18;;;15267:30;-1:-1:-1;;;15313:18:1;;;15306:50;15373:18;;45386:50:0;15053:344:1;45386:50:0;45447:28;45478:9;45447:40;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45502:8:0;;45447:40;;-1:-1:-1;;;;45502:8:0;;:17;;:8;:17;45498:144;;45579:1;45551:17;45545:31;;;;;:::i;:::-;;;:35;:85;;;;;;;;;;;;;;;;;45607:17;45590:35;;;;;;;;:::i;:::-;;;;;;;;;;;;;45545:85;45538:92;45282:504;-1:-1:-1;;;45282:504:0:o;45498:144::-;45694:1;45669:14;45663:28;:32;:111;;;;;;;;;;;;;;;;;45722:14;45738:19;:8;:17;:19::i;:::-;45759:9;45705:64;;;;;;;;;;:::i;44395:111::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44468:17:::1;:26:::0;;-1:-1:-1;;44468:26:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44395:111::o;45187:87::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;45241:13:::1;:20:::0;;-1:-1:-1;;45241:20:0::1;45257:4;45241:20;::::0;;45187:87::o;44186:92::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44250:8:::1;:17:::0;;-1:-1:-1;;44250:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;44186:92::o;44638:141::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;44722:13:::1;::::0;::::1;;44721:14;44713:23;;;::::0;::::1;;44747:9;:22;44759:10:::0;44747:9;:22:::1;:::i;28597:164::-:0;-1:-1:-1;;;;;28718:25:0;;;28694:4;28718:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28597:164::o;42603:743::-;42681:13;;;;42680:14;42672:23;;;;;;42714:14;;;;42706:48;;;;-1:-1:-1;;;42706:48:0;;19318:2:1;42706:48:0;;;19300:21:1;19357:2;19337:18;;;19330:30;-1:-1:-1;;;19376:18:1;;;19369:51;19437:18;;42706:48:0;19116:345:1;42706:48:0;42804:11;42790;;:25;;;;:::i;:::-;42777:9;:38;;42769:70;;;;-1:-1:-1;;;42769:70:0;;;;;;;:::i;:::-;42873:13;;42858:11;:28;;42850:66;;;;-1:-1:-1;;;42850:66:0;;10276:2:1;42850:66:0;;;10258:21:1;10315:2;10295:18;;;10288:30;-1:-1:-1;;;10334:18:1;;;10327:55;10399:18;;42850:66:0;10074:349:1;42850:66:0;42979:13;;:15;;42993:1;42979:15;:::i;:::-;42952:10;42935:28;;;;:16;:28;;;;;;:40;;42964:11;;42935:40;:::i;:::-;:59;;42927:104;;;;-1:-1:-1;;;42927:104:0;;19668:2:1;42927:104:0;;;19650:21:1;19707:2;19687:18;;;19680:30;19746:33;19726:18;;;19719:61;19797:18;;42927:104:0;19466:355:1;42927:104:0;43083:15;;43068:11;43050:16;:6;964:14;;872:114;43050:16;:29;;;;:::i;:::-;:48;;43042:90;;;;-1:-1:-1;;;43042:90:0;;;;;;;:::i;:::-;43150:9;43145:190;43169:11;43165:1;:15;43145:190;;;43219:10;43202:28;;;;:16;:28;;;;;:30;;;;;;:::i;:::-;;;;;;43247:18;:6;1083:19;;1101:1;1083:19;;;994:127;43247:18;43280:39;43290:10;43302:16;:6;964:14;;872:114;43280:39;43182:3;;;;:::i;:::-;;;;43145:190;;43758:200;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;43825:10:::1;:18:::0;;-1:-1:-1;;43825:18:0::1;::::0;;43856:13:::1;:19;43870:5:::0;43856:13;:19:::1;:::i;:::-;-1:-1:-1::0;;43887:14:0::1;:22:::0;;-1:-1:-1;;43887:22:0;;::::1;::::0;;;43921:17:::1;:25:::0;;;;::::1;::::0;;43758:200::o;6453:201::-;5617:6;;-1:-1:-1;;;;;5617:6:0;4348:10;5764:23;5756:68;;;;-1:-1:-1;;;5756:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6542:22:0;::::1;6534:73;;;::::0;-1:-1:-1;;;6534:73:0;;20028:2:1;6534:73:0::1;::::0;::::1;20010:21:1::0;20067:2;20047:18;;;20040:30;20106:34;20086:18;;;20079:62;-1:-1:-1;;;20157:18:1;;;20150:36;20203:19;;6534:73:0::1;19826:402:1::0;6534:73:0::1;6618:28;6637:8;6618:18;:28::i;35478:174::-:0;35553:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35553:29:0;-1:-1:-1;;;;;35553:29:0;;;;;;;;:24;;35607:23;35553:24;35607:14;:23::i;:::-;-1:-1:-1;;;;;35598:46:0;;;;;;;;;;;35478:174;;:::o;31626:348::-;31719:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;31736:73;;;;-1:-1:-1;;;31736:73:0;;20435:2:1;31736:73:0;;;20417:21:1;20474:2;20454:18;;;20447:30;20513:34;20493:18;;;20486:62;-1:-1:-1;;;20564:18:1;;;20557:42;20616:19;;31736:73:0;20233:408:1;31736:73:0;31820:13;31836:23;31851:7;31836:14;:23::i;:::-;31820:39;;31889:5;-1:-1:-1;;;;;31878:16:0;:7;-1:-1:-1;;;;;31878:16:0;;:51;;;;31922:7;-1:-1:-1;;;;;31898:31:0;:20;31910:7;31898:11;:20::i;:::-;-1:-1:-1;;;;;31898:31:0;;31878:51;:87;;;;31933:32;31950:5;31957:7;31933:16;:32::i;:::-;31870:96;31626:348;-1:-1:-1;;;;31626:348:0:o;34735:625::-;34894:4;-1:-1:-1;;;;;34867:31:0;:23;34882:7;34867:14;:23::i;:::-;-1:-1:-1;;;;;34867:31:0;;34859:81;;;;-1:-1:-1;;;34859:81:0;;20848:2:1;34859:81:0;;;20830:21:1;20887:2;20867:18;;;20860:30;20926:34;20906:18;;;20899:62;-1:-1:-1;;;20977:18:1;;;20970:35;21022:19;;34859:81:0;20646:401:1;34859:81:0;-1:-1:-1;;;;;34959:16:0;;34951:65;;;;-1:-1:-1;;;34951:65:0;;21254:2:1;34951:65:0;;;21236:21:1;21293:2;21273:18;;;21266:30;21332:34;21312:18;;;21305:62;-1:-1:-1;;;21383:18:1;;;21376:34;21427:19;;34951:65:0;21052:400:1;34951:65:0;35133:29;35150:1;35154:7;35133:8;:29::i;:::-;-1:-1:-1;;;;;35175:15:0;;;;;;:9;:15;;;;;:20;;35194:1;;35175:15;:20;;35194:1;;35175:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35206:13:0;;;;;;:9;:13;;;;;:18;;35223:1;;35206:13;:18;;35223:1;;35206:18;:::i;:::-;;;;-1:-1:-1;;35235:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35235:21:0;-1:-1:-1;;;;;35235:21:0;;;;;;;;;35274:27;;35235:16;;35274:27;;;;;;;27671:341;27601:411;;:::o;40319:205::-;40418:4;40508:2;40491:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;40481:31;;;;;;40473:2;40456:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;40446:31;;;;;;:66;40439:73;;40319:205;;;;:::o;32316:110::-;32392:26;32402:2;32406:7;32392:26;;;;;;;;;;;;:9;:26::i;6814:191::-;6907:6;;;-1:-1:-1;;;;;6924:17:0;;;-1:-1:-1;;;;;;6924:17:0;;;;;;;6957:40;;6907:6;;;6924:17;6907:6;;6957:40;;6888:16;;6957:40;6877:128;6814:191;:::o;35794:315::-;35949:8;-1:-1:-1;;;;;35940:17:0;:5;-1:-1:-1;;;;;35940:17:0;;35932:55;;;;-1:-1:-1;;;35932:55:0;;22086:2:1;35932:55:0;;;22068:21:1;22125:2;22105:18;;;22098:30;22164:27;22144:18;;;22137:55;22209:18;;35932:55:0;21884:349:1;35932:55:0;-1:-1:-1;;;;;35998:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;35998:46:0;;;;;;;;;;36060:41;;540::1;;;36060::0;;513:18:1;36060:41:0;;;;;;;35794:315;;;:::o;30704:::-;30861:28;30871:4;30877:2;30881:7;30861:9;:28::i;:::-;30908:48;30931:4;30937:2;30941:7;30950:5;30908:22;:48::i;:::-;30900:111;;;;-1:-1:-1;;;30900:111:0;;;;;;;:::i;1830:723::-;1886:13;2107:5;2116:1;2107:10;2103:53;;-1:-1:-1;;2134:10:0;;;;;;;;;;;;-1:-1:-1;;;2134:10:0;;;;;1830:723::o;2103:53::-;2181:5;2166:12;2222:78;2229:9;;2222:78;;2255:8;;;;:::i;:::-;;-1:-1:-1;2278:10:0;;-1:-1:-1;2286:2:0;2278:10;;:::i;:::-;;;2222:78;;;2310:19;2342:6;2332:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2332:17:0;;2310:39;;2360:154;2367:10;;2360:154;;2394:11;2404:1;2394:11;;:::i;:::-;;-1:-1:-1;2463:10:0;2471:2;2463:5;:10;:::i;:::-;2450:24;;:2;:24;:::i;:::-;2437:39;;2420:6;2427;2420:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2420:56:0;;;;;;;;-1:-1:-1;2491:11:0;2500:2;2491:11;;:::i;:::-;;;2360:154;;32653:321;32783:18;32789:2;32793:7;32783:5;:18::i;:::-;32834:54;32865:1;32869:2;32873:7;32882:5;32834:22;:54::i;:::-;32812:154;;;;-1:-1:-1;;;32812:154:0;;;;;;;:::i;36674:799::-;36829:4;-1:-1:-1;;;;;36850:13:0;;8540:19;:23;36846:620;;36886:72;;-1:-1:-1;;;36886:72:0;;-1:-1:-1;;;;;36886:36:0;;;;;:72;;4348:10;;36937:4;;36943:7;;36952:5;;36886:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36886:72:0;;;;;;;;-1:-1:-1;;36886:72:0;;;;;;;;;;;;:::i;:::-;;;36882:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37128:6;:13;37145:1;37128:18;37124:272;;37171:60;;-1:-1:-1;;;37171:60:0;;;;;;;:::i;37124:272::-;37346:6;37340:13;37331:6;37327:2;37323:15;37316:38;36882:529;-1:-1:-1;;;;;;37009:51:0;-1:-1:-1;;;37009:51:0;;-1:-1:-1;37002:58:0;;36846:620;-1:-1:-1;37450:4:0;36674:799;;;;;;:::o;33310:439::-;-1:-1:-1;;;;;33390:16:0;;33382:61;;;;-1:-1:-1;;;33382:61:0;;23856:2:1;33382:61:0;;;23838:21:1;;;23875:18;;;23868:30;23934:34;23914:18;;;23907:62;23986:18;;33382:61:0;23654:356:1;33382:61:0;31397:4;31421:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31421:16:0;:30;33454:58;;;;-1:-1:-1;;;33454:58:0;;24217:2:1;33454:58:0;;;24199:21:1;24256:2;24236:18;;;24229:30;24295;24275:18;;;24268:58;24343:18;;33454:58:0;24015:352:1;33454:58:0;-1:-1:-1;;;;;33583:13:0;;;;;;:9;:13;;;;;:18;;33600:1;;33583:13;:18;;33600:1;;33583:18;:::i;:::-;;;;-1:-1:-1;;33612:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33612:21:0;-1:-1:-1;;;;;33612:21:0;;;;;;;;33651:33;;33612:16;;;33651:33;;33612:16;;33651:33;28371:155;;:::o;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;774:250::-;859:1;869:113;883:6;880:1;877:13;869:113;;;959:11;;;953:18;940:11;;;933:39;905:2;898:10;869:113;;;-1:-1:-1;;1016:1:1;998:16;;991:27;774:250::o;1029:271::-;1071:3;1109:5;1103:12;1136:6;1131:3;1124:19;1152:76;1221:6;1214:4;1209:3;1205:14;1198:4;1191:5;1187:16;1152:76;:::i;:::-;1282:2;1261:15;-1:-1:-1;;1257:29:1;1248:39;;;;1289:4;1244:50;;1029:271;-1:-1:-1;;1029:271:1:o;1305:220::-;1454:2;1443:9;1436:21;1417:4;1474:45;1515:2;1504:9;1500:18;1492:6;1474:45;:::i;1530:180::-;1589:6;1642:2;1630:9;1621:7;1617:23;1613:32;1610:52;;;1658:1;1655;1648:12;1610:52;-1:-1:-1;1681:23:1;;1530:180;-1:-1:-1;1530:180:1:o;1923:173::-;1991:20;;-1:-1:-1;;;;;2040:31:1;;2030:42;;2020:70;;2086:1;2083;2076:12;2020:70;1923:173;;;:::o;2101:254::-;2169:6;2177;2230:2;2218:9;2209:7;2205:23;2201:32;2198:52;;;2246:1;2243;2236:12;2198:52;2269:29;2288:9;2269:29;:::i;:::-;2259:39;2345:2;2330:18;;;;2317:32;;-1:-1:-1;;;2101: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:160::-;2616:20;;2672:13;;2665:21;2655:32;;2645:60;;2701:1;2698;2691:12;2716:180;2772:6;2825:2;2813:9;2804:7;2800:23;2796:32;2793:52;;;2841:1;2838;2831:12;2793:52;2864:26;2880:9;2864:26;:::i;2901:328::-;2978:6;2986;2994;3047:2;3035:9;3026:7;3022:23;3018:32;3015:52;;;3063:1;3060;3053:12;3015:52;3086:29;3105:9;3086:29;:::i;:::-;3076:39;;3134:38;3168:2;3157:9;3153:18;3134:38;:::i;:::-;3124:48;;3219:2;3208:9;3204:18;3191:32;3181:42;;2901:328;;;;;:::o;3234:127::-;3295:10;3290:3;3286:20;3283:1;3276:31;3326:4;3323:1;3316:15;3350:4;3347:1;3340:15;3366:632;3431:5;3461:18;3502:2;3494:6;3491:14;3488:40;;;3508:18;;:::i;:::-;3583:2;3577:9;3551:2;3637:15;;-1:-1:-1;;3633:24:1;;;3659:2;3629:33;3625:42;3613:55;;;3683:18;;;3703:22;;;3680:46;3677:72;;;3729:18;;:::i;:::-;3769:10;3765:2;3758:22;3798:6;3789:15;;3828:6;3820;3813:22;3868:3;3859:6;3854:3;3850:16;3847:25;3844:45;;;3885:1;3882;3875:12;3844:45;3935:6;3930:3;3923:4;3915:6;3911:17;3898:44;3990:1;3983:4;3974:6;3966;3962:19;3958:30;3951:41;;;;3366:632;;;;;:::o;4003:222::-;4046:5;4099:3;4092:4;4084:6;4080:17;4076:27;4066:55;;4117:1;4114;4107:12;4066:55;4139:80;4215:3;4206:6;4193:20;4186:4;4178:6;4174:17;4139:80;:::i;4230:390::-;4308:6;4316;4369:2;4357:9;4348:7;4344:23;4340:32;4337:52;;;4385:1;4382;4375:12;4337:52;4421:9;4408:23;4398:33;;4482:2;4471:9;4467:18;4454:32;4509:18;4501:6;4498:30;4495:50;;;4541:1;4538;4531:12;4495:50;4564;4606:7;4597:6;4586:9;4582:22;4564:50;:::i;:::-;4554:60;;;4230:390;;;;;:::o;4625:254::-;4693:6;4701;4754:2;4742:9;4733:7;4729:23;4725:32;4722:52;;;4770:1;4767;4760:12;4722:52;4806:9;4793:23;4783:33;;4835:38;4869:2;4858:9;4854:18;4835:38;:::i;:::-;4825:48;;4625:254;;;;;:::o;4884:::-;4949:6;4957;5010:2;4998:9;4989:7;4985:23;4981:32;4978:52;;;5026:1;5023;5016:12;4978:52;5049:29;5068:9;5049:29;:::i;:::-;5039:39;;5097:35;5128:2;5117:9;5113:18;5097:35;:::i;5143:667::-;5238:6;5246;5254;5262;5315:3;5303:9;5294:7;5290:23;5286:33;5283:53;;;5332:1;5329;5322:12;5283:53;5355:29;5374:9;5355:29;:::i;:::-;5345:39;;5403:38;5437:2;5426:9;5422:18;5403:38;:::i;:::-;5393:48;;5488:2;5477:9;5473:18;5460:32;5450:42;;5543:2;5532:9;5528:18;5515:32;5570:18;5562:6;5559:30;5556:50;;;5602:1;5599;5592:12;5556:50;5625:22;;5678:4;5670:13;;5666:27;-1:-1:-1;5656:55:1;;5707:1;5704;5697:12;5656:55;5730:74;5796:7;5791:2;5778:16;5773:2;5769;5765:11;5730:74;:::i;:::-;5720:84;;;5143:667;;;;;;;:::o;5815:322::-;5884:6;5937:2;5925:9;5916:7;5912:23;5908:32;5905:52;;;5953:1;5950;5943:12;5905:52;5993:9;5980:23;6026:18;6018:6;6015:30;6012:50;;;6058:1;6055;6048:12;6012:50;6081;6123:7;6114:6;6103:9;6099:22;6081:50;:::i;6142:260::-;6210:6;6218;6271:2;6259:9;6250:7;6246:23;6242:32;6239:52;;;6287:1;6284;6277:12;6239:52;6310:29;6329:9;6310:29;:::i;:::-;6300:39;;6358:38;6392:2;6381:9;6377:18;6358:38;:::i;6407:380::-;6486:1;6482:12;;;;6529;;;6550:61;;6604:4;6596:6;6592:17;6582:27;;6550:61;6657:2;6649:6;6646:14;6626:18;6623:38;6620:161;;6703:10;6698:3;6694:20;6691:1;6684:31;6738:4;6735:1;6728:15;6766:4;6763:1;6756:15;6620:161;;6407:380;;;:::o;8032:356::-;8234:2;8216:21;;;8253:18;;;8246:30;8312:34;8307:2;8292:18;;8285:62;8379:2;8364:18;;8032:356::o;8393:413::-;8595:2;8577:21;;;8634:2;8614:18;;;8607:30;8673:34;8668:2;8653:18;;8646:62;-1:-1:-1;;;8739:2:1;8724:18;;8717:47;8796:3;8781:19;;8393:413::o;8811:127::-;8872:10;8867:3;8863:20;8860:1;8853:31;8903:4;8900:1;8893:15;8927:4;8924:1;8917:15;8943:168;8983:7;9049:1;9045;9041:6;9037:14;9034:1;9031:21;9026:1;9019:9;9012:17;9008:45;9005:71;;;9056:18;;:::i;:::-;-1:-1:-1;9096:9:1;;8943:168::o;9116:127::-;9177:10;9172:3;9168:20;9165:1;9158:31;9208:4;9205:1;9198:15;9232:4;9229:1;9222:15;9248:120;9288:1;9314;9304:35;;9319:18;;:::i;:::-;-1:-1:-1;9353:9:1;;9248:120::o;9726:343::-;9928:2;9910:21;;;9967:2;9947:18;;;9940:30;-1:-1:-1;;;10001:2:1;9986:18;;9979:49;10060:2;10045:18;;9726:343::o;10428:125::-;10493:9;;;10514:10;;;10511:36;;;10527:18;;:::i;11609:353::-;11811:2;11793:21;;;11850:2;11830:18;;;11823:30;11889:31;11884:2;11869:18;;11862:59;11953:2;11938:18;;11609:353::o;11967:135::-;12006:3;12027:17;;;12024:43;;12047:18;;:::i;:::-;-1:-1:-1;12094:1:1;12083:13;;11967:135::o;15528:722::-;15578:3;15619:5;15613:12;15648:36;15674:9;15648:36;:::i;:::-;15703:1;15720:18;;;15747:133;;;;15894:1;15889:355;;;;15713:531;;15747:133;-1:-1:-1;;15780:24:1;;15768:37;;15853:14;;15846:22;15834:35;;15825:45;;;-1:-1:-1;15747:133:1;;15889:355;15920:5;15917:1;15910:16;15949:4;15994:2;15991:1;15981:16;16019:1;16033:165;16047:6;16044:1;16041:13;16033:165;;;16125:14;;16112:11;;;16105:35;16168:16;;;;16062:10;;16033:165;;;16037:3;;;16227:6;16222:3;16218:16;16211:23;;15713:531;;;;;15528:722;;;;:::o;16255:197::-;16383:3;16408:38;16442:3;16434:6;16408:38;:::i;16457:576::-;16681:3;16719:6;16713:13;16735:66;16794:6;16789:3;16782:4;16774:6;16770:17;16735:66;:::i;:::-;16864:13;;16823:16;;;;16886:70;16864:13;16823:16;16933:4;16921:17;;16886:70;:::i;:::-;16972:55;17017:8;17010:5;17006:20;16998:6;16972:55;:::i;:::-;16965:62;16457:576;-1:-1:-1;;;;;;;16457:576:1:o;17038:545::-;17140:2;17135:3;17132:11;17129:448;;;17176:1;17201:5;17197:2;17190:17;17246:4;17242:2;17232:19;17316:2;17304:10;17300:19;17297:1;17293:27;17287:4;17283:38;17352:4;17340:10;17337:20;17334:47;;;-1:-1:-1;17375:4:1;17334:47;17430:2;17425:3;17421:12;17418:1;17414:20;17408:4;17404:31;17394:41;;17485:82;17503:2;17496:5;17493:13;17485:82;;;17548:17;;;17529:1;17518:13;17485:82;;;17489:3;;;17038:545;;;:::o;17759:1352::-;17885:3;17879:10;17912:18;17904:6;17901:30;17898:56;;;17934:18;;:::i;:::-;17963:97;18053:6;18013:38;18045:4;18039:11;18013:38;:::i;:::-;18007:4;17963:97;:::i;:::-;18115:4;;18179:2;18168:14;;18196:1;18191:663;;;;18898:1;18915:6;18912:89;;;-1:-1:-1;18967:19:1;;;18961:26;18912:89;-1:-1:-1;;17716:1:1;17712:11;;;17708:24;17704:29;17694:40;17740:1;17736:11;;;17691:57;19014:81;;18161:944;;18191:663;15475:1;15468:14;;;15512:4;15499:18;;-1:-1:-1;;18227:20:1;;;18345:236;18359:7;18356:1;18353:14;18345:236;;;18448:19;;;18442:26;18427:42;;18540:27;;;;18508:1;18496:14;;;;18375:19;;18345:236;;;18349:3;18609:6;18600:7;18597:19;18594:201;;;18670:19;;;18664:26;-1:-1:-1;;18753:1:1;18749:14;;;18765:3;18745:24;18741:37;18737:42;18722:58;18707:74;;18594:201;-1:-1:-1;;;;;18841:1:1;18825:14;;;18821:22;18808:36;;-1:-1:-1;17759:1352:1:o;21457:128::-;21524:9;;;21545:11;;;21542:37;;;21559:18;;:::i;21590:289::-;21721:3;21759:6;21753:13;21775:66;21834:6;21829:3;21822:4;21814:6;21810:17;21775:66;:::i;:::-;21857:16;;;;;21590:289;-1:-1:-1;;21590:289:1:o;22238:414::-;22440:2;22422:21;;;22479:2;22459:18;;;22452:30;22518:34;22513:2;22498:18;;22491:62;-1:-1:-1;;;22584:2:1;22569:18;;22562:48;22642:3;22627:19;;22238:414::o;22657:112::-;22689:1;22715;22705:35;;22720:18;;:::i;:::-;-1:-1:-1;22754:9:1;;22657:112::o;22774:127::-;22835:10;22830:3;22826:20;22823:1;22816:31;22866:4;22863:1;22856:15;22890:4;22887:1;22880:15;22906:489;-1:-1:-1;;;;;23175:15:1;;;23157:34;;23227:15;;23222:2;23207:18;;23200:43;23274:2;23259:18;;23252:34;;;23322:3;23317:2;23302:18;;23295:31;;;23100:4;;23343:46;;23369:19;;23361:6;23343:46;:::i;:::-;23335:54;22906:489;-1:-1:-1;;;;;;22906:489:1:o;23400:249::-;23469:6;23522:2;23510:9;23501:7;23497:23;23493:32;23490:52;;;23538:1;23535;23528:12;23490:52;23570:9;23564:16;23589:30;23613:5;23589:30;:::i

Swarm Source

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