ETH Price: $2,591.76 (-2.16%)

Token

DEVILFISH (DEVILFISH)
 

Overview

Max Total Supply

362 DEVILFISH

Holders

212

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 DEVILFISH
0xef4A042CE124C38F48EBB7c57F25544699330533
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:
Devilfish

Compiler Version
v0.8.26+commit.8a97fa7a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-07-25
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(
        bytes32[] memory proof,
        bytes32 leaf
    ) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(
        bytes32 a,
        bytes32 b
    ) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

// 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: erc721a/contracts/ERC721A.sol

// Creator: Chiru Labs

pragma solidity ^0.8.4;

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(
        uint256 tokenId
    ) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(
        uint256 tokenId
    ) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 {
        _transfer(from, to, tokenId);
        if (
            to.isContract() &&
            !_checkContractOnERC721Received(from, to, tokenId, _data)
        ) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, "");
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try
            IERC721Receiver(to).onERC721Received(
                _msgSender(),
                from,
                tokenId,
                _data
            )
        returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}

// File: contracts/contract.sol

pragma solidity ^0.8.26;

contract Devilfish is ERC721A, Ownable {
    using Strings for uint256;

    uint256 public constant RESERVED_TOKENS = 250;
    uint256 public FOR_SALE_TOKENS = 2500 - RESERVED_TOKENS;
    address public constant RESERVED_TOKENS_ADDRESS =
        0xBbAC2D92f53aE3EaEBEeDE1Ab9Cc6fd05fF4d4f7;

    uint256 public constant STAGE_STOPPED = 0;
    uint256 public constant STAGE_PRESALE = 1;
    uint256 public constant STAGE_PUBLIC = 2;
    uint256 public currentStage = STAGE_STOPPED;

    uint256 public tokenPricePresale = 0.08 ether;
    uint256 public tokenPricePublicSale = 0.08 ether;

    uint256 public maxTokensPerAddressPresale = 3;
    uint256 public maxTokensPerAddress = 6;
    uint256 public maxTokensPerTransaction = 6;

    uint256 public presaleTotalLimit = 2500;

    bytes32 public whitelistRoot =
        0x5cbb7b059a18f24e66ab9e16fce1ba1f309953713cee37b7f29bcf278d658db6;

    string public tokenBaseURI =
        "ipfs://bafybeifgkqdc7tb5epozmd24fiwnygrm6ogpd6v7znay4bq7l4ago3pl44/";

    uint256 public soldAmount = 0;
    mapping(address => uint256) public purchased;

    constructor() ERC721A("DEVILFISH", "DEVILFISH") {
        if (RESERVED_TOKENS > 0)
            _safeMint(RESERVED_TOKENS_ADDRESS, RESERVED_TOKENS);
    }

    function _startTokenId() internal pure override(ERC721A) returns (uint256) {
        return 1;
    }

    function stopSale() external onlyOwner {
        currentStage = STAGE_STOPPED;
    }

    function startPresale() external onlyOwner {
        currentStage = STAGE_PRESALE;
    }

    function startPublicSale() external onlyOwner {
        currentStage = STAGE_PUBLIC;
    }

    function setTokenPricePresale(uint256 val) external onlyOwner {
        tokenPricePresale = val;
    }

    function setTokenPricePublicSale(uint256 val) external onlyOwner {
        tokenPricePublicSale = val;
    }

    function setMaxTokensPerAddress(uint256 val) external onlyOwner {
        maxTokensPerAddress = val;
    }

    function setMaxTokensPerTransaction(uint256 val) external onlyOwner {
        maxTokensPerTransaction = val;
    }

    function setPresaleTotalLimit(uint256 val) external onlyOwner {
        presaleTotalLimit = val;
    }

    function setWhitelistRoot(bytes32 val) external onlyOwner {
        whitelistRoot = val;
    }

    function setCurrentForSaleLimit(
        uint256 _currentForSaleLimit
    ) external onlyOwner {
        FOR_SALE_TOKENS = _currentForSaleLimit - RESERVED_TOKENS;
    }

    function tokenPrice(
        address target,
        bytes32[] memory proof
    ) public view returns (uint256) {
        bytes32 leaf = keccak256(abi.encodePacked(target));

        if (currentStage == STAGE_PRESALE) {
            if (MerkleProof.verify(proof, whitelistRoot, leaf)) {
                return tokenPricePresale;
            }
        }
        return tokenPricePublicSale;
    }

    function getMaxTokensForPhase(
        address target,
        bytes32[] memory proof
    ) public view returns (uint256) {
        bytes32 leaf = keccak256(abi.encodePacked(target));

        if (currentStage == STAGE_PUBLIC) {
            return maxTokensPerAddress;
        } else if (currentStage == STAGE_PRESALE) {
            if (MerkleProof.verify(proof, whitelistRoot, leaf)) {
                return maxTokensPerAddressPresale;
            } else {
                return 0;
            }
        } else {
            return 0;
        }
    }

    function safeSub(uint256 a, uint256 b) internal pure returns (uint256) {
        if (a < b) {
            return 0;
        }
        return a - b;
    }

    function getMaxTokensAllowed(
        address target,
        bytes32[] memory proof
    ) public view returns (uint256) {
        uint256 maxAllowedTokens = getMaxTokensForPhase(target, proof);

        uint256 tokensLeftForAddress = safeSub(
            maxAllowedTokens,
            purchased[target]
        );
        maxAllowedTokens = min(maxAllowedTokens, tokensLeftForAddress);

        if (currentStage == STAGE_PRESALE) {
            uint256 presaleTokensLeft = safeSub(presaleTotalLimit, soldAmount);
            maxAllowedTokens = min(maxAllowedTokens, presaleTokensLeft);
        }

        uint256 publicSaleTokensLeft = safeSub(FOR_SALE_TOKENS, soldAmount);
        maxAllowedTokens = min(maxAllowedTokens, publicSaleTokensLeft);

        return min(maxAllowedTokens, maxTokensPerTransaction);
    }

    function getContractInfo(
        address target,
        bytes32[] memory proof
    )
        external
        view
        returns (
            uint256 _currentStage,
            uint256 _maxTokensAllowed,
            uint256 _tokenPrice,
            uint256 _soldAmount,
            uint256 _purchasedAmount,
            uint256 _presaleTotalLimit,
            bytes32 _whitelistRoot,
            uint256 _totalForSale
        )
    {
        _currentStage = currentStage;
        _maxTokensAllowed = getMaxTokensAllowed(target, proof);
        _tokenPrice = tokenPrice(target, proof);
        _soldAmount = soldAmount;
        _purchasedAmount = purchased[target];
        _presaleTotalLimit = presaleTotalLimit;
        _whitelistRoot = whitelistRoot;
        _totalForSale = FOR_SALE_TOKENS;
    }

    function mint(uint256 amount, bytes32[] calldata proof) external payable {
        require(
            msg.value >= tokenPrice(msg.sender, proof) * amount,
            "Incorrect ETH sent"
        );
        require(
            amount <= getMaxTokensAllowed(msg.sender, proof),
            "Cannot mint more than the max allowed tokens"
        );

        _safeMint(msg.sender, amount);
        purchased[msg.sender] += amount;
        soldAmount += amount;
    }

    function _baseURI()
        internal
        view
        override(ERC721A)
        returns (string memory)
    {
        return tokenBaseURI;
    }

    function setBaseURI(string calldata URI) external onlyOwner {
        tokenBaseURI = URI;
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FOR_SALE_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAGE_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAGE_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STAGE_STOPPED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentStage","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getContractInfo","outputs":[{"internalType":"uint256","name":"_currentStage","type":"uint256"},{"internalType":"uint256","name":"_maxTokensAllowed","type":"uint256"},{"internalType":"uint256","name":"_tokenPrice","type":"uint256"},{"internalType":"uint256","name":"_soldAmount","type":"uint256"},{"internalType":"uint256","name":"_purchasedAmount","type":"uint256"},{"internalType":"uint256","name":"_presaleTotalLimit","type":"uint256"},{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"},{"internalType":"uint256","name":"_totalForSale","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getMaxTokensAllowed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"getMaxTokensForPhase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"maxTokensPerAddress","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerAddressPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTokensPerTransaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleTotalLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"purchased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_currentForSaleLimit","type":"uint256"}],"name":"setCurrentForSaleLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxTokensPerTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setPresaleTotalLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setTokenPricePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"val","type":"bytes32"}],"name":"setWhitelistRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"soldAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startPublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"tokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenPricePublicSale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261001160fa6109c461042b565b6009555f600a5567011c37937e080000600b5567011c37937e080000600c556003600d556006600e556006600f556109c46010557f5cbb7b059a18f24e66ab9e16fce1ba1f309953713cee37b7f29bcf278d658db65f1b60115560405180608001604052806043815260200161294b6043913960129061009190826104e0565b505f6013553480156100a1575f80fd5b506040805180820182526009808252680888aac92988c92a6960bb1b60208084018290528451808601909552918452908301529060026100e183826104e0565b5060036100ee82826104e0565b505060015f55506100fe33610122565b61011d73bbac2d92f53ae3eaebeede1ab9cc6fd05ff4d4f760fa610173565b610622565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610192828260405180602001604052805f81525061019660201b60201c565b5050565b6101a383838360016101a8565b505050565b5f546001600160a01b0385166101d057604051622e076360e81b815260040160405180910390fd5b835f036101f05760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385165f81815260056020908152604080832080546001600160801b031981166001600160401b038083168c018116918217680100000000000000006001600160401b031990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561029657506001600160a01b0387163b15155b15610308575b60405182906001600160a01b038916905f905f8051602061298e833981519152908290a460018201916102d3905f90899088610344565b6102f0576040516368d2bf6b60e11b815260040160405180910390fd5b80820361029c57825f5414610303575f80fd5b610339565b5b6040516001830192906001600160a01b038916905f905f8051602061298e833981519152908290a4808203610309575b505f555b5050505050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a029061037890339089908890889060040161059a565b6020604051808303815f875af19250505080156103b2575060408051601f3d908101601f191682019092526103af918101906105f4565b60015b61040e573d8080156103df576040519150601f19603f3d011682016040523d82523d5f602084013e6103e4565b606091505b5080515f03610406576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b8181038181111561044a57634e487b7160e01b5f52601160045260245ffd5b92915050565b634e487b7160e01b5f52604160045260245ffd5b600181811c9082168061047857607f821691505b60208210810361049657634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156101a357805f5260205f20601f840160051c810160208510156104c15750805b601f840160051c820191505b8181101561033d575f81556001016104cd565b81516001600160401b038111156104f9576104f9610450565b61050d816105078454610464565b8461049c565b6020601f82116001811461053f575f83156105285750848201515b5f19600385901b1c1916600184901b17845561033d565b5f84815260208120601f198516915b8281101561056e578785015182556020948501946001909201910161054e565b508482101561058b57868401515f19600387901b60f8161c191681555b50505050600190811b01905550565b60018060a01b038516815260018060a01b0384166020820152826040820152608060608201525f8251806080840152806020850160a085015e5f60a0828501015260a0601f19601f83011684010191505095945050505050565b5f60208284031215610604575f80fd5b81516001600160e01b03198116811461061b575f80fd5b9392505050565b61231c8061062f5f395ff3fe6080604052600436106102d9575f3560e01c806355f804b311610189578063ae3aa72f116100d8578063e36b0b3711610092578063f2fde38b1161006d578063f2fde38b14610863578063f5aa406d14610882578063f85aff94146108a1578063fa1a5f59146108b6575f80fd5b8063e36b0b37146107f4578063e8812ae314610808578063e985e9c51461081c575f80fd5b8063ae3aa72f1461073e578063b88d4fde1461075d578063ba41b0c61461077c578063c87b56dd1461078f578063dbb84f11146107ae578063dc504f13146107cd575f80fd5b806378c5fe37116101435780638da5cb5b1161011e5780638da5cb5b146106d957806395d89b41146106f6578063a22cb4651461070a578063a4ac791514610729575f80fd5b806378c5fe371461069057806379666ccd146106a55780637e046f30146106c4575f80fd5b806355f804b3146105f65780635bf5d54c146106155780636352211e1461062a57806368fc68c71461064957806370a082311461065d578063715018a61461067c575f80fd5b80632b038411116102455780634324851a116101ff5780634d8fae95116101da5780634d8fae951461058e5780634e99b800146105a3578063522fe98e146105b757806355e6738d146105e2575f80fd5b80634324851a1461053d57806346c4dc271461055c57806348e342581461057b575f80fd5b80632b038411146104675780632d84a94c1461047c578063311df29a146104d6578063386bfc98146104f55780633ccfd60b1461050a57806342842e0e1461051e575f80fd5b80631449d3e6116102965780631449d3e6146103b257806314ff2779146103d157806318160ddd146103f057806323a1baaa1461041457806323b872dd14610429578063285de8ca14610448575f80fd5b806301ffc9a7146102dd57806304c98b2b1461031157806306fdde0314610327578063081812fc14610348578063095ea7b31461037f5780630c1c972a1461039e575b5f80fd5b3480156102e8575f80fd5b506102fc6102f7366004611c24565b6108cb565b60405190151581526020015b60405180910390f35b34801561031c575f80fd5b5061032561091c565b005b348015610332575f80fd5b5061033b610956565b6040516103089190611c6d565b348015610353575f80fd5b50610367610362366004611c7f565b6109e6565b6040516001600160a01b039091168152602001610308565b34801561038a575f80fd5b50610325610399366004611cb1565b610a28565b3480156103a9575f80fd5b50610325610ab4565b3480156103bd575f80fd5b506103256103cc366004611c7f565b610ae5565b3480156103dc575f80fd5b506103256103eb366004611c7f565b610b14565b3480156103fb575f80fd5b506001545f54035f19015b604051908152602001610308565b34801561041f575f80fd5b50610406600e5481565b348015610434575f80fd5b50610325610443366004611cd9565b610b43565b348015610453575f80fd5b50610406610462366004611d57565b610b4e565b348015610472575f80fd5b50610406600b5481565b348015610487575f80fd5b5061049b610496366004611d57565b610bcc565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610308565b3480156104e1575f80fd5b506103256104f0366004611c7f565b610c2a565b348015610500575f80fd5b5061040660115481565b348015610515575f80fd5b50610325610c59565b348015610529575f80fd5b50610325610538366004611cd9565b610ca7565b348015610548575f80fd5b50610406610557366004611d57565b610cc1565b348015610567575f80fd5b50610325610576366004611c7f565b610d5e565b348015610586575f80fd5b506104065f81565b348015610599575f80fd5b5061040660095481565b3480156105ae575f80fd5b5061033b610d8d565b3480156105c2575f80fd5b506104066105d1366004611e14565b60146020525f908152604090205481565b3480156105ed575f80fd5b50610406600281565b348015610601575f80fd5b50610325610610366004611e2d565b610e19565b348015610620575f80fd5b50610406600a5481565b348015610635575f80fd5b50610367610644366004611c7f565b610e50565b348015610654575f80fd5b5061040660fa81565b348015610668575f80fd5b50610406610677366004611e14565b610e61565b348015610687575f80fd5b50610325610ead565b34801561069b575f80fd5b50610406600c5481565b3480156106b0575f80fd5b506103256106bf366004611c7f565b610ee0565b3480156106cf575f80fd5b5061040660105481565b3480156106e4575f80fd5b506008546001600160a01b0316610367565b348015610701575f80fd5b5061033b610f1b565b348015610715575f80fd5b50610325610724366004611e99565b610f2a565b348015610734575f80fd5b50610406600d5481565b348015610749575f80fd5b50610406610758366004611d57565b610fbe565b348015610768575f80fd5b50610325610777366004611ed2565b61102a565b61032561078a366004611f8e565b61107b565b34801561079a575f80fd5b5061033b6107a9366004611c7f565b6111f0565b3480156107b9575f80fd5b506103256107c8366004611c7f565b611271565b3480156107d8575f80fd5b5061036773bbac2d92f53ae3eaebeede1ab9cc6fd05ff4d4f781565b3480156107ff575f80fd5b506103256112a0565b348015610813575f80fd5b50610406600181565b348015610827575f80fd5b506102fc610836366004612006565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b34801561086e575f80fd5b5061032561087d366004611e14565b6112d0565b34801561088d575f80fd5b5061032561089c366004611c7f565b61136b565b3480156108ac575f80fd5b50610406600f5481565b3480156108c1575f80fd5b5061040660135481565b5f6001600160e01b031982166380ac58cd60e01b14806108fb57506001600160e01b03198216635b5e139f60e01b145b8061091657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461094f5760405162461bcd60e51b815260040161094690612037565b60405180910390fd5b6001600a55565b6060600280546109659061206c565b80601f01602080910402602001604051908101604052809291908181526020018280546109919061206c565b80156109dc5780601f106109b3576101008083540402835291602001916109dc565b820191905f5260205f20905b8154815290600101906020018083116109bf57829003601f168201915b5050505050905090565b5f6109f08261139a565b610a0d576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610a3282610e50565b9050806001600160a01b0316836001600160a01b031603610a665760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a865750610a848133610836565b155b15610aa4576040516367d9dca160e11b815260040160405180910390fd5b610aaf8383836113d0565b505050565b6008546001600160a01b03163314610ade5760405162461bcd60e51b815260040161094690612037565b6002600a55565b6008546001600160a01b03163314610b0f5760405162461bcd60e51b815260040161094690612037565b600f55565b6008546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161094690612037565b601055565b610aaf83838361142b565b6040516bffffffffffffffffffffffff19606084901b1660208201525f9081906034016040516020818303038152906040528051906020012090506002600a5403610b9d575050600e54610916565b6001600a5403610bc357610bb48360115483611612565b15610bc3575050600d54610916565b505f9392505050565b600a545f808080808080610be08a8a610cc1565b9650610bec8a8a610fbe565b6013546001600160a01b03909b165f908152601460205260409020546010546011546009549b9e9a9d939c50929a9199909850919650945092505050565b6008546001600160a01b03163314610c545760405162461bcd60e51b815260040161094690612037565b600b55565b6008546001600160a01b03163314610c835760405162461bcd60e51b815260040161094690612037565b60405133904780156108fc02915f818181858888f19350505050610ca5575f80fd5b565b610aaf83838360405180602001604052805f81525061102a565b5f80610ccd8484610b4e565b6001600160a01b0385165f9081526014602052604081205491925090610cf4908390611627565b9050610d008282611641565b91506001600a5403610d2b575f610d1b601054601354611627565b9050610d278382611641565b9250505b5f610d3a600954601354611627565b9050610d468382611641565b9250610d5483600f54611641565b9695505050505050565b6008546001600160a01b03163314610d885760405162461bcd60e51b815260040161094690612037565b600c55565b60128054610d9a9061206c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc69061206c565b8015610e115780601f10610de857610100808354040283529160200191610e11565b820191905f5260205f20905b815481529060010190602001808311610df457829003601f168201915b505050505081565b6008546001600160a01b03163314610e435760405162461bcd60e51b815260040161094690612037565b6012610aaf8284836120e8565b5f610e5a82611656565b5192915050565b5f6001600160a01b038216610e89576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ed75760405162461bcd60e51b815260040161094690612037565b610ca55f611778565b6008546001600160a01b03163314610f0a5760405162461bcd60e51b815260040161094690612037565b610f1560fa826121b5565b60095550565b6060600380546109659061206c565b336001600160a01b03831603610f535760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516bffffffffffffffffffffffff19606084901b1660208201525f9081906034016040516020818303038152906040528051906020012090506001600a540361101f576110108360115483611612565b1561101f575050600b54610916565b5050600c5492915050565b61103584848461142b565b6001600160a01b0383163b151580156110575750611055848484846117c9565b155b15611075576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b826110b8338484808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610fbe92505050565b6110c291906121c8565b3410156111065760405162461bcd60e51b8152602060048201526012602482015271125b98dbdc9c9958dd08115512081cd95b9d60721b6044820152606401610946565b611142338383808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610cc192505050565b8311156111a65760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820616c60448201526b6c6f77656420746f6b656e7360a01b6064820152608401610946565b6111b033846118b1565b335f90815260146020526040812080548592906111ce9084906121df565b925050819055508260135f8282546111e691906121df565b9091555050505050565b60606111fb8261139a565b61121857604051630a14c4b560e41b815260040160405180910390fd5b5f6112216118ce565b905080515f0361123f5760405180602001604052805f81525061126a565b80611249846118dd565b60405160200161125a929190612209565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461129b5760405162461bcd60e51b815260040161094690612037565b600e55565b6008546001600160a01b031633146112ca5760405162461bcd60e51b815260040161094690612037565b5f600a55565b6008546001600160a01b031633146112fa5760405162461bcd60e51b815260040161094690612037565b6001600160a01b03811661135f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610946565b61136881611778565b50565b6008546001600160a01b031633146113955760405162461bcd60e51b815260040161094690612037565b601155565b5f816001111580156113ac57505f5482105b80156109165750505f90815260046020526040902054600160e01b900460ff161590565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f61143582611656565b9050836001600160a01b0316815f01516001600160a01b03161461146b5760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b038616148061148857506114888533610836565b806114a3575033611498846109e6565b6001600160a01b0316145b9050806114c357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114ea57604051633a954ecd60e21b815260040160405180910390fd5b6114f55f84876113d0565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115c6575f5482146115c657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b5f8261161e85846119d9565b14949350505050565b5f8183101561163757505f610916565b61126a82846121b5565b5f81831061164f578161126a565b5090919050565b604080516060810182525f8082526020820181905291810191909152818060011115801561168457505f5481105b1561175f575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061175d5780516001600160a01b0316156116f6579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611758579392505050565b6116f6565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906117fd903390899088908890600401612233565b6020604051808303815f875af1925050508015611837575060408051601f3d908101601f1916820190925261183491810190612265565b60015b611893573d808015611864576040519150601f19603f3d011682016040523d82523d5f602084013e611869565b606091505b5080515f0361188b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6118ca828260405180602001604052805f815250611a3f565b5050565b6060601280546109659061206c565b6060815f036119035750506040805180820190915260018152600360fc1b602082015290565b815f5b811561192c578061191681612280565b91506119259050600a836122ac565b9150611906565b5f816001600160401b0381111561194557611945611d13565b6040519080825280601f01601f19166020018201604052801561196f576020820181803683370190505b5090505b84156118a9576119846001836121b5565b9150611991600a866122bf565b61199c9060306121df565b60f81b8183815181106119b1576119b16122d2565b60200101906001600160f81b03191690815f1a9053506119d2600a866122ac565b9450611973565b5f81815b8451811015611a37575f8582815181106119f9576119f96122d2565b60200260200101519050808311611a1e575f8381526020829052604090209250611a2e565b5f81815260208490526040902092505b506001016119dd565b509392505050565b610aaf83838360015f546001600160a01b038516611a6f57604051622e076360e81b815260040160405180910390fd5b835f03611a8f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b3f57506001600160a01b0387163b15155b15611bc3575b60405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b8e5f8884806001019550886117c9565b611bab576040516368d2bf6b60e11b815260040160405180910390fd5b808203611b4557825f5414611bbe575f80fd5b611c07565b5b6040516001830192906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611bc4575b505f5561160b565b6001600160e01b031981168114611368575f80fd5b5f60208284031215611c34575f80fd5b813561126a81611c0f565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61126a6020830184611c3f565b5f60208284031215611c8f575f80fd5b5035919050565b80356001600160a01b0381168114611cac575f80fd5b919050565b5f8060408385031215611cc2575f80fd5b611ccb83611c96565b946020939093013593505050565b5f805f60608486031215611ceb575f80fd5b611cf484611c96565b9250611d0260208501611c96565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715611d4f57611d4f611d13565b604052919050565b5f8060408385031215611d68575f80fd5b611d7183611c96565b915060208301356001600160401b03811115611d8b575f80fd5b8301601f81018513611d9b575f80fd5b80356001600160401b03811115611db457611db4611d13565b8060051b611dc460208201611d27565b91825260208184018101929081019088841115611ddf575f80fd5b6020850194505b83851015611e0557843580835260209586019590935090910190611de6565b80955050505050509250929050565b5f60208284031215611e24575f80fd5b61126a82611c96565b5f8060208385031215611e3e575f80fd5b82356001600160401b03811115611e53575f80fd5b8301601f81018513611e63575f80fd5b80356001600160401b03811115611e78575f80fd5b856020828401011115611e89575f80fd5b6020919091019590945092505050565b5f8060408385031215611eaa575f80fd5b611eb383611c96565b915060208301358015158114611ec7575f80fd5b809150509250929050565b5f805f8060808587031215611ee5575f80fd5b611eee85611c96565b9350611efc60208601611c96565b92506040850135915060608501356001600160401b03811115611f1d575f80fd5b8501601f81018713611f2d575f80fd5b80356001600160401b03811115611f4657611f46611d13565b611f59601f8201601f1916602001611d27565b818152886020838501011115611f6d575f80fd5b816020840160208301375f6020838301015280935050505092959194509250565b5f805f60408486031215611fa0575f80fd5b8335925060208401356001600160401b03811115611fbc575f80fd5b8401601f81018613611fcc575f80fd5b80356001600160401b03811115611fe1575f80fd5b8660208260051b8401011115611ff5575f80fd5b939660209190910195509293505050565b5f8060408385031215612017575f80fd5b61202083611c96565b915061202e60208401611c96565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061208057607f821691505b60208210810361209e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610aaf57805f5260205f20601f840160051c810160208510156120c95750805b601f840160051c820191505b8181101561160b575f81556001016120d5565b6001600160401b038311156120ff576120ff611d13565b6121138361210d835461206c565b836120a4565b5f601f841160018114612144575f851561212d5750838201355b5f19600387901b1c1916600186901b17835561160b565b5f83815260208120601f198716915b828110156121735786850135825560209485019460019092019101612153565b508682101561218f575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610916576109166121a1565b8082028115828204841417610916576109166121a1565b80820180821115610916576109166121a1565b5f81518060208401855e5f93019283525090919050565b5f61221d61221783866121f2565b846121f2565b64173539b7b760d91b8152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90610d5490830184611c3f565b5f60208284031215612275575f80fd5b815161126a81611c0f565b5f60018201612291576122916121a1565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f826122ba576122ba612298565b500490565b5f826122cd576122cd612298565b500690565b634e487b7160e01b5f52603260045260245ffdfea26469706673582212205eb2f299d73ab9a593d1219744de7bbd8e538a2ba6911a2d819d33b504368b8564736f6c634300081a0033697066733a2f2f6261667962656966676b7164633774623565706f7a6d6432346669776e7967726d366f6770643676377a6e6179346271376c3461676f33706c34342fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef

Deployed Bytecode

0x6080604052600436106102d9575f3560e01c806355f804b311610189578063ae3aa72f116100d8578063e36b0b3711610092578063f2fde38b1161006d578063f2fde38b14610863578063f5aa406d14610882578063f85aff94146108a1578063fa1a5f59146108b6575f80fd5b8063e36b0b37146107f4578063e8812ae314610808578063e985e9c51461081c575f80fd5b8063ae3aa72f1461073e578063b88d4fde1461075d578063ba41b0c61461077c578063c87b56dd1461078f578063dbb84f11146107ae578063dc504f13146107cd575f80fd5b806378c5fe37116101435780638da5cb5b1161011e5780638da5cb5b146106d957806395d89b41146106f6578063a22cb4651461070a578063a4ac791514610729575f80fd5b806378c5fe371461069057806379666ccd146106a55780637e046f30146106c4575f80fd5b806355f804b3146105f65780635bf5d54c146106155780636352211e1461062a57806368fc68c71461064957806370a082311461065d578063715018a61461067c575f80fd5b80632b038411116102455780634324851a116101ff5780634d8fae95116101da5780634d8fae951461058e5780634e99b800146105a3578063522fe98e146105b757806355e6738d146105e2575f80fd5b80634324851a1461053d57806346c4dc271461055c57806348e342581461057b575f80fd5b80632b038411146104675780632d84a94c1461047c578063311df29a146104d6578063386bfc98146104f55780633ccfd60b1461050a57806342842e0e1461051e575f80fd5b80631449d3e6116102965780631449d3e6146103b257806314ff2779146103d157806318160ddd146103f057806323a1baaa1461041457806323b872dd14610429578063285de8ca14610448575f80fd5b806301ffc9a7146102dd57806304c98b2b1461031157806306fdde0314610327578063081812fc14610348578063095ea7b31461037f5780630c1c972a1461039e575b5f80fd5b3480156102e8575f80fd5b506102fc6102f7366004611c24565b6108cb565b60405190151581526020015b60405180910390f35b34801561031c575f80fd5b5061032561091c565b005b348015610332575f80fd5b5061033b610956565b6040516103089190611c6d565b348015610353575f80fd5b50610367610362366004611c7f565b6109e6565b6040516001600160a01b039091168152602001610308565b34801561038a575f80fd5b50610325610399366004611cb1565b610a28565b3480156103a9575f80fd5b50610325610ab4565b3480156103bd575f80fd5b506103256103cc366004611c7f565b610ae5565b3480156103dc575f80fd5b506103256103eb366004611c7f565b610b14565b3480156103fb575f80fd5b506001545f54035f19015b604051908152602001610308565b34801561041f575f80fd5b50610406600e5481565b348015610434575f80fd5b50610325610443366004611cd9565b610b43565b348015610453575f80fd5b50610406610462366004611d57565b610b4e565b348015610472575f80fd5b50610406600b5481565b348015610487575f80fd5b5061049b610496366004611d57565b610bcc565b604080519889526020890197909752958701949094526060860192909252608085015260a084015260c083015260e082015261010001610308565b3480156104e1575f80fd5b506103256104f0366004611c7f565b610c2a565b348015610500575f80fd5b5061040660115481565b348015610515575f80fd5b50610325610c59565b348015610529575f80fd5b50610325610538366004611cd9565b610ca7565b348015610548575f80fd5b50610406610557366004611d57565b610cc1565b348015610567575f80fd5b50610325610576366004611c7f565b610d5e565b348015610586575f80fd5b506104065f81565b348015610599575f80fd5b5061040660095481565b3480156105ae575f80fd5b5061033b610d8d565b3480156105c2575f80fd5b506104066105d1366004611e14565b60146020525f908152604090205481565b3480156105ed575f80fd5b50610406600281565b348015610601575f80fd5b50610325610610366004611e2d565b610e19565b348015610620575f80fd5b50610406600a5481565b348015610635575f80fd5b50610367610644366004611c7f565b610e50565b348015610654575f80fd5b5061040660fa81565b348015610668575f80fd5b50610406610677366004611e14565b610e61565b348015610687575f80fd5b50610325610ead565b34801561069b575f80fd5b50610406600c5481565b3480156106b0575f80fd5b506103256106bf366004611c7f565b610ee0565b3480156106cf575f80fd5b5061040660105481565b3480156106e4575f80fd5b506008546001600160a01b0316610367565b348015610701575f80fd5b5061033b610f1b565b348015610715575f80fd5b50610325610724366004611e99565b610f2a565b348015610734575f80fd5b50610406600d5481565b348015610749575f80fd5b50610406610758366004611d57565b610fbe565b348015610768575f80fd5b50610325610777366004611ed2565b61102a565b61032561078a366004611f8e565b61107b565b34801561079a575f80fd5b5061033b6107a9366004611c7f565b6111f0565b3480156107b9575f80fd5b506103256107c8366004611c7f565b611271565b3480156107d8575f80fd5b5061036773bbac2d92f53ae3eaebeede1ab9cc6fd05ff4d4f781565b3480156107ff575f80fd5b506103256112a0565b348015610813575f80fd5b50610406600181565b348015610827575f80fd5b506102fc610836366004612006565b6001600160a01b039182165f90815260076020908152604080832093909416825291909152205460ff1690565b34801561086e575f80fd5b5061032561087d366004611e14565b6112d0565b34801561088d575f80fd5b5061032561089c366004611c7f565b61136b565b3480156108ac575f80fd5b50610406600f5481565b3480156108c1575f80fd5b5061040660135481565b5f6001600160e01b031982166380ac58cd60e01b14806108fb57506001600160e01b03198216635b5e139f60e01b145b8061091657506301ffc9a760e01b6001600160e01b03198316145b92915050565b6008546001600160a01b0316331461094f5760405162461bcd60e51b815260040161094690612037565b60405180910390fd5b6001600a55565b6060600280546109659061206c565b80601f01602080910402602001604051908101604052809291908181526020018280546109919061206c565b80156109dc5780601f106109b3576101008083540402835291602001916109dc565b820191905f5260205f20905b8154815290600101906020018083116109bf57829003601f168201915b5050505050905090565b5f6109f08261139a565b610a0d576040516333d1c03960e21b815260040160405180910390fd5b505f908152600660205260409020546001600160a01b031690565b5f610a3282610e50565b9050806001600160a01b0316836001600160a01b031603610a665760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610a865750610a848133610836565b155b15610aa4576040516367d9dca160e11b815260040160405180910390fd5b610aaf8383836113d0565b505050565b6008546001600160a01b03163314610ade5760405162461bcd60e51b815260040161094690612037565b6002600a55565b6008546001600160a01b03163314610b0f5760405162461bcd60e51b815260040161094690612037565b600f55565b6008546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161094690612037565b601055565b610aaf83838361142b565b6040516bffffffffffffffffffffffff19606084901b1660208201525f9081906034016040516020818303038152906040528051906020012090506002600a5403610b9d575050600e54610916565b6001600a5403610bc357610bb48360115483611612565b15610bc3575050600d54610916565b505f9392505050565b600a545f808080808080610be08a8a610cc1565b9650610bec8a8a610fbe565b6013546001600160a01b03909b165f908152601460205260409020546010546011546009549b9e9a9d939c50929a9199909850919650945092505050565b6008546001600160a01b03163314610c545760405162461bcd60e51b815260040161094690612037565b600b55565b6008546001600160a01b03163314610c835760405162461bcd60e51b815260040161094690612037565b60405133904780156108fc02915f818181858888f19350505050610ca5575f80fd5b565b610aaf83838360405180602001604052805f81525061102a565b5f80610ccd8484610b4e565b6001600160a01b0385165f9081526014602052604081205491925090610cf4908390611627565b9050610d008282611641565b91506001600a5403610d2b575f610d1b601054601354611627565b9050610d278382611641565b9250505b5f610d3a600954601354611627565b9050610d468382611641565b9250610d5483600f54611641565b9695505050505050565b6008546001600160a01b03163314610d885760405162461bcd60e51b815260040161094690612037565b600c55565b60128054610d9a9061206c565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc69061206c565b8015610e115780601f10610de857610100808354040283529160200191610e11565b820191905f5260205f20905b815481529060010190602001808311610df457829003601f168201915b505050505081565b6008546001600160a01b03163314610e435760405162461bcd60e51b815260040161094690612037565b6012610aaf8284836120e8565b5f610e5a82611656565b5192915050565b5f6001600160a01b038216610e89576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03165f908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ed75760405162461bcd60e51b815260040161094690612037565b610ca55f611778565b6008546001600160a01b03163314610f0a5760405162461bcd60e51b815260040161094690612037565b610f1560fa826121b5565b60095550565b6060600380546109659061206c565b336001600160a01b03831603610f535760405163b06307db60e01b815260040160405180910390fd5b335f8181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6040516bffffffffffffffffffffffff19606084901b1660208201525f9081906034016040516020818303038152906040528051906020012090506001600a540361101f576110108360115483611612565b1561101f575050600b54610916565b5050600c5492915050565b61103584848461142b565b6001600160a01b0383163b151580156110575750611055848484846117c9565b155b15611075576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b826110b8338484808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610fbe92505050565b6110c291906121c8565b3410156111065760405162461bcd60e51b8152602060048201526012602482015271125b98dbdc9c9958dd08115512081cd95b9d60721b6044820152606401610946565b611142338383808060200260200160405190810160405280939291908181526020018383602002808284375f92019190915250610cc192505050565b8311156111a65760405162461bcd60e51b815260206004820152602c60248201527f43616e6e6f74206d696e74206d6f7265207468616e20746865206d617820616c60448201526b6c6f77656420746f6b656e7360a01b6064820152608401610946565b6111b033846118b1565b335f90815260146020526040812080548592906111ce9084906121df565b925050819055508260135f8282546111e691906121df565b9091555050505050565b60606111fb8261139a565b61121857604051630a14c4b560e41b815260040160405180910390fd5b5f6112216118ce565b905080515f0361123f5760405180602001604052805f81525061126a565b80611249846118dd565b60405160200161125a929190612209565b6040516020818303038152906040525b9392505050565b6008546001600160a01b0316331461129b5760405162461bcd60e51b815260040161094690612037565b600e55565b6008546001600160a01b031633146112ca5760405162461bcd60e51b815260040161094690612037565b5f600a55565b6008546001600160a01b031633146112fa5760405162461bcd60e51b815260040161094690612037565b6001600160a01b03811661135f5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610946565b61136881611778565b50565b6008546001600160a01b031633146113955760405162461bcd60e51b815260040161094690612037565b601155565b5f816001111580156113ac57505f5482105b80156109165750505f90815260046020526040902054600160e01b900460ff161590565b5f8281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b5f61143582611656565b9050836001600160a01b0316815f01516001600160a01b03161461146b5760405162a1148160e81b815260040160405180910390fd5b5f336001600160a01b038616148061148857506114888533610836565b806114a3575033611498846109e6565b6001600160a01b0316145b9050806114c357604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166114ea57604051633a954ecd60e21b815260040160405180910390fd5b6114f55f84876113d0565b6001600160a01b038581165f908152600560209081526040808320805467ffffffffffffffff198082166001600160401b039283165f1901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166115c6575f5482146115c657805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b5f8261161e85846119d9565b14949350505050565b5f8183101561163757505f610916565b61126a82846121b5565b5f81831061164f578161126a565b5090919050565b604080516060810182525f8082526020820181905291810191909152818060011115801561168457505f5481105b1561175f575f81815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061175d5780516001600160a01b0316156116f6579392505050565b505f19015f81815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611758579392505050565b6116f6565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b604051630a85bd0160e11b81525f906001600160a01b0385169063150b7a02906117fd903390899088908890600401612233565b6020604051808303815f875af1925050508015611837575060408051601f3d908101601f1916820190925261183491810190612265565b60015b611893573d808015611864576040519150601f19603f3d011682016040523d82523d5f602084013e611869565b606091505b5080515f0361188b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6118ca828260405180602001604052805f815250611a3f565b5050565b6060601280546109659061206c565b6060815f036119035750506040805180820190915260018152600360fc1b602082015290565b815f5b811561192c578061191681612280565b91506119259050600a836122ac565b9150611906565b5f816001600160401b0381111561194557611945611d13565b6040519080825280601f01601f19166020018201604052801561196f576020820181803683370190505b5090505b84156118a9576119846001836121b5565b9150611991600a866122bf565b61199c9060306121df565b60f81b8183815181106119b1576119b16122d2565b60200101906001600160f81b03191690815f1a9053506119d2600a866122ac565b9450611973565b5f81815b8451811015611a37575f8582815181106119f9576119f96122d2565b60200260200101519050808311611a1e575f8381526020829052604090209250611a2e565b5f81815260208490526040902092505b506001016119dd565b509392505050565b610aaf83838360015f546001600160a01b038516611a6f57604051622e076360e81b815260040160405180910390fd5b835f03611a8f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b0385165f81815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611b3f57506001600160a01b0387163b15155b15611bc3575b60405182906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611b8e5f8884806001019550886117c9565b611bab576040516368d2bf6b60e11b815260040160405180910390fd5b808203611b4557825f5414611bbe575f80fd5b611c07565b5b6040516001830192906001600160a01b038916905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611bc4575b505f5561160b565b6001600160e01b031981168114611368575f80fd5b5f60208284031215611c34575f80fd5b813561126a81611c0f565b5f81518084528060208401602086015e5f602082860101526020601f19601f83011685010191505092915050565b602081525f61126a6020830184611c3f565b5f60208284031215611c8f575f80fd5b5035919050565b80356001600160a01b0381168114611cac575f80fd5b919050565b5f8060408385031215611cc2575f80fd5b611ccb83611c96565b946020939093013593505050565b5f805f60608486031215611ceb575f80fd5b611cf484611c96565b9250611d0260208501611c96565b929592945050506040919091013590565b634e487b7160e01b5f52604160045260245ffd5b604051601f8201601f191681016001600160401b0381118282101715611d4f57611d4f611d13565b604052919050565b5f8060408385031215611d68575f80fd5b611d7183611c96565b915060208301356001600160401b03811115611d8b575f80fd5b8301601f81018513611d9b575f80fd5b80356001600160401b03811115611db457611db4611d13565b8060051b611dc460208201611d27565b91825260208184018101929081019088841115611ddf575f80fd5b6020850194505b83851015611e0557843580835260209586019590935090910190611de6565b80955050505050509250929050565b5f60208284031215611e24575f80fd5b61126a82611c96565b5f8060208385031215611e3e575f80fd5b82356001600160401b03811115611e53575f80fd5b8301601f81018513611e63575f80fd5b80356001600160401b03811115611e78575f80fd5b856020828401011115611e89575f80fd5b6020919091019590945092505050565b5f8060408385031215611eaa575f80fd5b611eb383611c96565b915060208301358015158114611ec7575f80fd5b809150509250929050565b5f805f8060808587031215611ee5575f80fd5b611eee85611c96565b9350611efc60208601611c96565b92506040850135915060608501356001600160401b03811115611f1d575f80fd5b8501601f81018713611f2d575f80fd5b80356001600160401b03811115611f4657611f46611d13565b611f59601f8201601f1916602001611d27565b818152886020838501011115611f6d575f80fd5b816020840160208301375f6020838301015280935050505092959194509250565b5f805f60408486031215611fa0575f80fd5b8335925060208401356001600160401b03811115611fbc575f80fd5b8401601f81018613611fcc575f80fd5b80356001600160401b03811115611fe1575f80fd5b8660208260051b8401011115611ff5575f80fd5b939660209190910195509293505050565b5f8060408385031215612017575f80fd5b61202083611c96565b915061202e60208401611c96565b90509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c9082168061208057607f821691505b60208210810361209e57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115610aaf57805f5260205f20601f840160051c810160208510156120c95750805b601f840160051c820191505b8181101561160b575f81556001016120d5565b6001600160401b038311156120ff576120ff611d13565b6121138361210d835461206c565b836120a4565b5f601f841160018114612144575f851561212d5750838201355b5f19600387901b1c1916600186901b17835561160b565b5f83815260208120601f198716915b828110156121735786850135825560209485019460019092019101612153565b508682101561218f575f1960f88860031b161c19848701351681555b505060018560011b0183555050505050565b634e487b7160e01b5f52601160045260245ffd5b81810381811115610916576109166121a1565b8082028115828204841417610916576109166121a1565b80820180821115610916576109166121a1565b5f81518060208401855e5f93019283525090919050565b5f61221d61221783866121f2565b846121f2565b64173539b7b760d91b8152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190525f90610d5490830184611c3f565b5f60208284031215612275575f80fd5b815161126a81611c0f565b5f60018201612291576122916121a1565b5060010190565b634e487b7160e01b5f52601260045260245ffd5b5f826122ba576122ba612298565b500490565b5f826122cd576122cd612298565b500690565b634e487b7160e01b5f52603260045260245ffdfea26469706673582212205eb2f299d73ab9a593d1219744de7bbd8e538a2ba6911a2d819d33b504368b8564736f6c634300081a0033

Deployed Bytecode Sourcemap

48358:6381:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30076:321;;;;;;;;;;-1:-1:-1;30076:321:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;30076:321:0;;;;;;;;49850:90;;;;;;;;;;;;;:::i;:::-;;33221:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34796:220::-;;;;;;;;;;-1:-1:-1;34796:220:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1528:32:1;;;1510:51;;1498:2;1483:18;34796:220:0;1364:203:1;34359:371:0;;;;;;;;;;-1:-1:-1;34359:371:0;;;;;:::i;:::-;;:::i;49948:92::-;;;;;;;;;;;;;:::i;50394:116::-;;;;;;;;;;-1:-1:-1;50394:116:0;;;;;:::i;:::-;;:::i;50518:104::-;;;;;;;;;;-1:-1:-1;50518:104:0;;;;;:::i;:::-;;:::i;29325:303::-;;;;;;;;;;-1:-1:-1;49739:1:0;29579:12;29369:7;29563:13;:28;-1:-1:-1;;29563:46:0;29325:303;;;2201:25:1;;;2189:2;2174:18;29325:303:0;2055:177:1;49018:38:0;;;;;;;;;;;;;;;;35727:170;;;;;;;;;;-1:-1:-1;35727:170:0;;;;;:::i;:::-;;:::i;51328:570::-;;;;;;;;;;-1:-1:-1;51328:570:0;;;;;:::i;:::-;;:::i;48857:45::-;;;;;;;;;;;;;;;;52916:829;;;;;;;;;;-1:-1:-1;52916:829:0;;;;;:::i;:::-;;:::i;:::-;;;;4440:25:1;;;4496:2;4481:18;;4474:34;;;;4524:18;;;4517:34;;;;4582:2;4567:18;;4560:34;;;;4625:3;4610:19;;4603:35;4669:3;4654:19;;4647:35;4713:3;4698:19;;4691:35;4757:3;4742:19;;4735:35;4427:3;4412:19;52916:829:0;4097:679:1;50048:104:0;;;;;;;;;;-1:-1:-1;50048:104:0;;;;;:::i;:::-;;:::i;49162:106::-;;;;;;;;;;;;;;;;54508:114;;;;;;;;;;;;;:::i;35968:185::-;;;;;;;;;;-1:-1:-1;35968:185:0;;;;;:::i;:::-;;:::i;52072:836::-;;;;;;;;;;-1:-1:-1;52072:836:0;;;;;:::i;:::-;;:::i;50160:110::-;;;;;;;;;;-1:-1:-1;50160:110:0;;;;;:::i;:::-;;:::i;48662:41::-;;;;;;;;;;;;48702:1;48662:41;;48490:55;;;;;;;;;;;;;;;;49277:107;;;;;;;;;;;;;:::i;49429:44::-;;;;;;;;;;-1:-1:-1;49429:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;48758:40;;;;;;;;;;;;48797:1;48758:40;;54403:97;;;;;;;;;;-1:-1:-1;54403:97:0;;;;;:::i;:::-;;:::i;48805:43::-;;;;;;;;;;;;;;;;33029:125;;;;;;;;;;-1:-1:-1;33029:125:0;;;;;:::i;:::-;;:::i;48438:45::-;;;;;;;;;;;;48480:3;48438:45;;30461:206;;;;;;;;;;-1:-1:-1;30461:206:0;;;;;:::i;:::-;;:::i;7242:103::-;;;;;;;;;;;;;:::i;48909:48::-;;;;;;;;;;;;;;;;50734:172;;;;;;;;;;-1:-1:-1;50734:172:0;;;;;:::i;:::-;;:::i;49114:39::-;;;;;;;;;;;;;;;;6591:87;;;;;;;;;;-1:-1:-1;6664:6:0;;-1:-1:-1;;;;;6664:6:0;6591:87;;33390:104;;;;;;;;;;;;;:::i;35088:312::-;;;;;;;;;;-1:-1:-1;35088:312:0;;;;;:::i;:::-;;:::i;48966:45::-;;;;;;;;;;;;;;;;50914:406;;;;;;;;;;-1:-1:-1;50914:406:0;;;;;:::i;:::-;;:::i;36224:::-;;;;;;;;;;-1:-1:-1;36224:406:0;;;;;:::i;:::-;;:::i;53753:479::-;;;;;;:::i;:::-;;:::i;33565:390::-;;;;;;;;;;-1:-1:-1;33565:390:0;;;;;:::i;:::-;;:::i;50278:108::-;;;;;;;;;;-1:-1:-1;50278:108:0;;;;;:::i;:::-;;:::i;48552:101::-;;;;;;;;;;;;48611:42;48552:101;;49756:86;;;;;;;;;;;;;:::i;48710:41::-;;;;;;;;;;;;48750:1;48710:41;;35471:189;;;;;;;;;;-1:-1:-1;35471:189:0;;;;;:::i;:::-;-1:-1:-1;;;;;35617:25:0;;;35593:4;35617:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35471:189;7500:238;;;;;;;;;;-1:-1:-1;7500:238:0;;;;;:::i;:::-;;:::i;50630:96::-;;;;;;;;;;-1:-1:-1;50630:96:0;;;;;:::i;:::-;;:::i;49063:42::-;;;;;;;;;;;;;;;;49393:29;;;;;;;;;;;;;;;;30076:321;30194:4;-1:-1:-1;;;;;;30231:40:0;;-1:-1:-1;;;30231:40:0;;:105;;-1:-1:-1;;;;;;;30288:48:0;;-1:-1:-1;;;30288:48:0;30231:105;:158;;;-1:-1:-1;;;;;;;;;;19991:40:0;;;30353:36;30211:178;30076:321;-1:-1:-1;;30076:321:0:o;49850:90::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;;;;;;;;;48750:1:::1;49904:12;:28:::0;49850:90::o;33221:100::-;33275:13;33308:5;33301:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33221:100;:::o;34796:220::-;34880:7;34905:16;34913:7;34905;:16::i;:::-;34900:64;;34930:34;;-1:-1:-1;;;34930:34:0;;;;;;;;;;;34900:64;-1:-1:-1;34984:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34984:24:0;;34796:220::o;34359:371::-;34432:13;34448:24;34464:7;34448:15;:24::i;:::-;34432:40;;34493:5;-1:-1:-1;;;;;34487:11:0;:2;-1:-1:-1;;;;;34487:11:0;;34483:48;;34507:24;;-1:-1:-1;;;34507:24:0;;;;;;;;;;;34483:48;5374:10;-1:-1:-1;;;;;34548:21:0;;;;;;:63;;-1:-1:-1;34574:37:0;34591:5;5374:10;35471:189;:::i;34574:37::-;34573:38;34548:63;34544:138;;;34635:35;;-1:-1:-1;;;34635:35:0;;;;;;;;;;;34544:138;34694:28;34703:2;34707:7;34716:5;34694:8;:28::i;:::-;34421:309;34359:371;;:::o;49948:92::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;48797:1:::1;50005:12;:27:::0;49948:92::o;50394:116::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;50473:23:::1;:29:::0;50394:116::o;50518:104::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;50591:17:::1;:23:::0;50518:104::o;35727:170::-;35861:28;35871:4;35877:2;35881:7;35861:9;:28::i;51328:570::-;51489:24;;-1:-1:-1;;9251:2:1;9247:15;;;9243:53;51489:24:0;;;9231:66:1;51444:7:0;;;;9313:12:1;;51489:24:0;;;;;;;;;;;;51479:35;;;;;;51464:50;;48797:1;51531:12;;:28;51527:364;;-1:-1:-1;;51583:19:0;;51576:26;;51527:364;48750:1;51624:12;;:29;51620:271;;51674:46;51693:5;51700:13;;51715:4;51674:18;:46::i;:::-;51670:169;;;-1:-1:-1;;51748:26:0;;51741:33;;51670:169;-1:-1:-1;51822:1:0;;51328:570;-1:-1:-1;;;51328:570:0:o;52916:829::-;53396:12;;53070:21;;;;;;;53439:34;53459:6;53467:5;53439:19;:34::i;:::-;53419:54;;53498:25;53509:6;53517:5;53498:10;:25::i;:::-;53548:10;;-1:-1:-1;;;;;53588:17:0;;;;;;;:9;:17;;;;;;53637;;53682:13;;53722:15;;52916:829;;;;53484:39;;-1:-1:-1;53548:10:0;;53588:17;;53637;;-1:-1:-1;53682:13:0;;-1:-1:-1;53722:15:0;-1:-1:-1;52916:829:0;-1:-1:-1;;;52916:829:0:o;50048:104::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;50121:17:::1;:23:::0;50048:104::o;54508:114::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;54566:47:::1;::::0;54574:10:::1;::::0;54591:21:::1;54566:47:::0;::::1;;;::::0;::::1;::::0;;;54591:21;54574:10;54566:47;::::1;;;;;;54558:56;;;::::0;::::1;;54508:114::o:0;35968:185::-;36106:39;36123:4;36129:2;36133:7;36106:39;;;;;;;;;;;;:16;:39::i;52072:836::-;52187:7;52207:24;52234:35;52255:6;52263:5;52234:20;:35::i;:::-;-1:-1:-1;;;;;52366:17:0;;52282:28;52366:17;;;:9;:17;;;;;;52207:62;;-1:-1:-1;52282:28:0;52313:81;;52207:62;;52313:7;:81::i;:::-;52282:112;;52424:43;52428:16;52446:20;52424:3;:43::i;:::-;52405:62;;48750:1;52484:12;;:29;52480:202;;52530:25;52558:38;52566:17;;52585:10;;52558:7;:38::i;:::-;52530:66;;52630:40;52634:16;52652:17;52630:3;:40::i;:::-;52611:59;;52515:167;52480:202;52694:28;52725:36;52733:15;;52750:10;;52725:7;:36::i;:::-;52694:67;;52791:43;52795:16;52813:20;52791:3;:43::i;:::-;52772:62;;52854:46;52858:16;52876:23;;52854:3;:46::i;:::-;52847:53;52072:836;-1:-1:-1;;;;;;52072:836:0:o;50160:110::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;50236:20:::1;:26:::0;50160:110::o;49277:107::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;54403:97::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;54474:12:::1;:18;54489:3:::0;;54474:12;:18:::1;:::i;33029:125::-:0;33093:7;33120:21;33133:7;33120:12;:21::i;:::-;:26;;33029:125;-1:-1:-1;;33029:125:0:o;30461:206::-;30525:7;-1:-1:-1;;;;;30549:19:0;;30545:60;;30577:28;;-1:-1:-1;;;30577:28:0;;;;;;;;;;;30545:60;-1:-1:-1;;;;;;30631:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;30631:27:0;;30461:206::o;7242:103::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;7307:30:::1;7334:1;7307:18;:30::i;50734:172::-:0;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;50860:38:::1;48480:3;50860:20:::0;:38:::1;:::i;:::-;50842:15;:56:::0;-1:-1:-1;50734:172:0:o;33390:104::-;33446:13;33479:7;33472:14;;;;;:::i;35088:312::-;5374:10;-1:-1:-1;;;;;35212:24:0;;;35208:54;;35245:17;;-1:-1:-1;;;35245:17:0;;;;;;;;;;;35208:54;5374:10;35275:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;35275:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;35275:53:0;;;;;;;;;;35344:48;;540:41:1;;;35275:42:0;;5374:10;35344:48;;513:18:1;35344:48:0;;;;;;;35088:312;;:::o;50914:406::-;51065:24;;-1:-1:-1;;9251:2:1;9247:15;;;9243:53;51065:24:0;;;9231:66:1;51020:7:0;;;;9313:12:1;;51065:24:0;;;;;;;;;;;;51055:35;;;;;;51040:50;;48750:1;51107:12;;:29;51103:172;;51157:46;51176:5;51183:13;;51198:4;51157:18;:46::i;:::-;51153:111;;;-1:-1:-1;;51231:17:0;;51224:24;;51153:111;-1:-1:-1;;51292:20:0;;50914:406;;;;:::o;36224:::-;36391:28;36401:4;36407:2;36411:7;36391:9;:28::i;:::-;-1:-1:-1;;;;;36448:13:0;;9622:19;:23;;36448:89;;;;;36481:56;36512:4;36518:2;36522:7;36531:5;36481:30;:56::i;:::-;36480:57;36448:89;36430:193;;;36571:40;;-1:-1:-1;;;36571:40:0;;;;;;;;;;;36430:193;36224:406;;;;:::o;53753:479::-;53904:6;53872:29;53883:10;53895:5;;53872:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53872:10:0;;-1:-1:-1;;;53872:29:0:i;:::-;:38;;;;:::i;:::-;53859:9;:51;;53837:119;;;;-1:-1:-1;;;53837:119:0;;11999:2:1;53837:119:0;;;11981:21:1;12038:2;12018:18;;;12011:30;-1:-1:-1;;;12057:18:1;;;12050:48;12115:18;;53837:119:0;11797:342:1;53837:119:0;53999:38;54019:10;54031:5;;53999:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53999:19:0;;-1:-1:-1;;;53999:38:0:i;:::-;53989:6;:48;;53967:142;;;;-1:-1:-1;;;53967:142:0;;12346:2:1;53967:142:0;;;12328:21:1;12385:2;12365:18;;;12358:30;12424:34;12404:18;;;12397:62;-1:-1:-1;;;12475:18:1;;;12468:42;12527:19;;53967:142:0;12144:408:1;53967:142:0;54122:29;54132:10;54144:6;54122:9;:29::i;:::-;54172:10;54162:21;;;;:9;:21;;;;;:31;;54187:6;;54162:21;:31;;54187:6;;54162:31;:::i;:::-;;;;;;;;54218:6;54204:10;;:20;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;53753:479:0:o;33565:390::-;33654:13;33685:16;33693:7;33685;:16::i;:::-;33680:59;;33710:29;;-1:-1:-1;;;33710:29:0;;;;;;;;;;;33680:59;33752:21;33776:10;:8;:10::i;:::-;33752:34;;33823:7;33817:21;33842:1;33817:26;:130;;;;;;;;;;;;;;;;;33887:7;33896:18;:7;:16;:18::i;:::-;33870:54;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33817:130;33797:150;33565:390;-1:-1:-1;;;33565:390:0:o;50278:108::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;50353:19:::1;:25:::0;50278:108::o;49756:86::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;48702:1:::1;49806:12;:28:::0;49756:86::o;7500:238::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7603:22:0;::::1;7581:110;;;::::0;-1:-1:-1;;;7581:110:0;;13536:2:1;7581:110:0::1;::::0;::::1;13518:21:1::0;13575:2;13555:18;;;13548:30;13614:34;13594:18;;;13587:62;-1:-1:-1;;;13665:18:1;;;13658:36;13711:19;;7581:110:0::1;13334:402:1::0;7581:110:0::1;7702:28;7721:8;7702:18;:28::i;:::-;7500:238:::0;:::o;50630:96::-;6664:6;;-1:-1:-1;;;;;6664:6:0;5374:10;6811:23;6803:68;;;;-1:-1:-1;;;6803:68:0;;;;;;;:::i;:::-;50699:13:::1;:19:::0;50630:96::o;36885:213::-;36942:4;36998:7;49739:1;36979:26;;:66;;;;;37032:13;;37022:7;:23;36979:66;:111;;;;-1:-1:-1;;37063:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;37063:27:0;;;;37062:28;;36885:213::o;45238:162::-;45319:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45319:29:0;-1:-1:-1;;;;;45319:29:0;;;;;;;;;45364:28;;45319:24;;45364:28;;;;;;;45238:162;;;:::o;40215:2096::-;40296:35;40334:21;40347:7;40334:12;:21::i;:::-;40296:59;;40394:4;-1:-1:-1;;;;;40372:26:0;:13;:18;;;-1:-1:-1;;;;;40372:26:0;;40368:67;;40407:28;;-1:-1:-1;;;40407:28:0;;;;;;;;;;;40368:67;40448:22;5374:10;-1:-1:-1;;;;;40474:20:0;;;;:73;;-1:-1:-1;40511:36:0;40528:4;5374:10;35471:189;:::i;40511:36::-;40474:126;;;-1:-1:-1;5374:10:0;40564:20;40576:7;40564:11;:20::i;:::-;-1:-1:-1;;;;;40564:36:0;;40474:126;40448:153;;40619:17;40614:66;;40645:35;;-1:-1:-1;;;40645:35:0;;;;;;;;;;;40614:66;-1:-1:-1;;;;;40695:16:0;;40691:52;;40720:23;;-1:-1:-1;;;40720:23:0;;;;;;;;;;;40691:52;40864:35;40881:1;40885:7;40894:4;40864:8;:35::i;:::-;-1:-1:-1;;;;;41195:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;41195:31:0;;;-1:-1:-1;;;;;41195:31:0;;;-1:-1:-1;;41195:31:0;;;;;;;41241:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;41241:29:0;;;;;;;;;;;41321:20;;;:11;:20;;;;;;41356:18;;-1:-1:-1;;;;;;41389:49:0;;;;-1:-1:-1;;;41422:15:0;41389:49;;;;;;;;;;41712:11;;41772:24;;;;;41815:13;;41321:20;;41772:24;;41815:13;41811:384;;42025:13;;42010:11;:28;42006:174;;42063:20;;42132:28;;;;-1:-1:-1;;;;;42106:54:0;-1:-1:-1;;;42106:54:0;-1:-1:-1;;;;;;42106:54:0;;;-1:-1:-1;;;;;42063:20:0;;42106:54;;;;42006:174;41170:1036;;;42242:7;42238:2;-1:-1:-1;;;;;42223:27:0;42232:4;-1:-1:-1;;;;;42223:27:0;;;;;;;;;;;42261:42;40285:2026;;40215:2096;;;:::o;954:190::-;1079:4;1132;1103:25;1116:5;1123:4;1103:12;:25::i;:::-;:33;;954:190;-1:-1:-1;;;;954:190:0:o;51906:158::-;51968:7;51996:1;51992;:5;51988:46;;;-1:-1:-1;52021:1:0;52014:8;;51988:46;52051:5;52055:1;52051;:5;:::i;54630:106::-;54688:7;54719:1;54715;:5;:13;;54727:1;54715:13;;;-1:-1:-1;54723:1:0;;54630:106;-1:-1:-1;54630:106:0:o;31842:1125::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;31969:7:0;;49739:1;32018:23;;:47;;;;;32052:13;;32045:4;:20;32018:47;32014:886;;;32086:31;32120:17;;;:11;:17;;;;;;;;;32086:51;;;;;;;;;-1:-1:-1;;;;;32086:51:0;;;;-1:-1:-1;;;32086:51:0;;-1:-1:-1;;;;;32086:51:0;;;;;;;;-1:-1:-1;;;32086:51:0;;;;;;;;;;;;;;32156:729;;32206:14;;-1:-1:-1;;;;;32206:28:0;;32202:101;;32270:9;31842:1125;-1:-1:-1;;;31842:1125:0:o;32202:101::-;-1:-1:-1;;;32645:6:0;32690:17;;;;:11;:17;;;;;;;;;32678:29;;;;;;;;;-1:-1:-1;;;;;32678:29:0;;;;;-1:-1:-1;;;32678:29:0;;-1:-1:-1;;;;;32678:29:0;;;;;;;;-1:-1:-1;;;32678:29:0;;;;;;;;;;;;;32738:28;32734:109;;32806:9;31842:1125;-1:-1:-1;;;31842:1125:0:o;32734:109::-;32605:261;;;32067:833;32014:886;32928:31;;-1:-1:-1;;;32928:31:0;;;;;;;;;;;7898:191;7991:6;;;-1:-1:-1;;;;;8008:17:0;;;-1:-1:-1;;;;;;8008:17:0;;;;;;;8041:40;;7991:6;;;8008:17;7991:6;;8041:40;;7972:16;;8041:40;7961:128;7898:191;:::o;45892:772::-;46089:155;;-1:-1:-1;;;46089:155:0;;46055:4;;-1:-1:-1;;;;;46089:36:0;;;;;:155;;5374:10;;46175:4;;46198:7;;46224:5;;46089:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;46089:155:0;;;;;;;;-1:-1:-1;;46089:155:0;;;;;;;;;;;;:::i;:::-;;;46072:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46415:6;:13;46432:1;46415:18;46411:235;;46461:40;;-1:-1:-1;;;46461:40:0;;;;;;;;;;;46411:235;46604:6;46598:13;46589:6;46585:2;46581:15;46574:38;46072:585;-1:-1:-1;;;;;;46300:55:0;-1:-1:-1;;;46300:55:0;;-1:-1:-1;46072:585:0;45892:772;;;;;;:::o;37106:104::-;37175:27;37185:2;37189:8;37175:27;;;;;;;;;;;;:9;:27::i;:::-;37106:104;;:::o;54240:155::-;54337:13;54375:12;54368:19;;;;;:::i;2833:723::-;2889:13;3110:5;3119:1;3110:10;3106:53;;-1:-1:-1;;3137:10:0;;;;;;;;;;;;-1:-1:-1;;;3137:10:0;;;;;2833:723::o;3106:53::-;3184:5;3169:12;3225:78;3232:9;;3225:78;;3258:8;;;;:::i;:::-;;-1:-1:-1;3281:10:0;;-1:-1:-1;3289:2:0;3281:10;;:::i;:::-;;;3225:78;;;3313:19;3345:6;-1:-1:-1;;;;;3335:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3335:17:0;;3313:39;;3363:154;3370:10;;3363:154;;3397:11;3407:1;3397:11;;:::i;:::-;;-1:-1:-1;3466:10:0;3474:2;3466:5;:10;:::i;:::-;3453:24;;:2;:24;:::i;:::-;3440:39;;3423:6;3430;3423:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3423:56:0;;;;;;;;-1:-1:-1;3494:11:0;3503:2;3494:11;;:::i;:::-;;;3363:154;;1506:700;1614:7;1657:4;1614:7;1672:497;1696:5;:12;1692:1;:16;1672:497;;;1730:20;1753:5;1759:1;1753:8;;;;;;;;:::i;:::-;;;;;;;1730:31;;1796:12;1780;:28;1776:382;;2307:13;2357:15;;;2393:4;2386:15;;;2440:4;2424:21;;1908:57;;1776:382;;;2307:13;2357:15;;;2393:4;2386:15;;;2440:4;2424:21;;2085:57;;1776:382;-1:-1:-1;1710:3:0;;1672:497;;;-1:-1:-1;2186:12:0;1506:700;-1:-1:-1;;;1506:700:0:o;37573:163::-;37696:32;37702:2;37706:8;37716:5;37723:4;38134:20;38157:13;-1:-1:-1;;;;;38185:16:0;;38181:48;;38210:19;;-1:-1:-1;;;38210:19:0;;;;;;;;;;;38181:48;38244:8;38256:1;38244:13;38240:44;;38266:18;;-1:-1:-1;;;38266:18:0;;;;;;;;;;;38240:44;-1:-1:-1;;;;;38635:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;38694:49:0;;-1:-1:-1;;;;;38635:44:0;;;;;;;38694:49;;;;-1:-1:-1;;38635:44:0;;;;;;38694:49;;;;;;;;;;;;;;;;38760:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;38810:66:0;;;;-1:-1:-1;;;38860:15:0;38810:66;;;;;;;;;;38760:25;38957:23;;;39001:4;:23;;;;-1:-1:-1;;;;;;39009:13:0;;9622:19;:23;;39009:15;38997:832;;;39045:505;39076:38;;39101:12;;-1:-1:-1;;;;;39076:38:0;;;39093:1;;39076:38;;39093:1;;39076:38;39168:212;39237:1;39270:2;39303:14;;;;;;39348:5;39168:30;:212::i;:::-;39137:365;;39438:40;;-1:-1:-1;;;39438:40:0;;;;;;;;;;;39137:365;39545:3;39529:12;:19;39045:505;;39631:12;39614:13;;:29;39610:43;;39645:8;;;39610:43;38997:832;;;39694:120;39725:40;;39750:14;;;;;-1:-1:-1;;;;;39725:40:0;;;39742:1;;39725:40;;39742:1;;39725:40;39809:3;39793:12;:19;39694:120;;38997:832;-1:-1:-1;39843:13:0;:28;39893:60;36224:406;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:300::-;645:3;683:5;677:12;710:6;705:3;698:19;766:6;759:4;752:5;748:16;741:4;736:3;732:14;726:47;818:1;811:4;802:6;797:3;793:16;789:27;782:38;881:4;874:2;870:7;865:2;857:6;853:15;849:29;844:3;840:39;836:50;829:57;;;592:300;;;;:::o;897:231::-;1046:2;1035:9;1028:21;1009:4;1066:56;1118:2;1107:9;1103:18;1095:6;1066:56;:::i;1133:226::-;1192:6;1245:2;1233:9;1224:7;1220:23;1216:32;1213:52;;;1261:1;1258;1251:12;1213:52;-1:-1:-1;1306:23:1;;1133:226;-1:-1:-1;1133:226:1:o;1572:173::-;1640:20;;-1:-1:-1;;;;;1689:31:1;;1679:42;;1669:70;;1735:1;1732;1725:12;1669:70;1572:173;;;:::o;1750:300::-;1818:6;1826;1879:2;1867:9;1858:7;1854:23;1850:32;1847:52;;;1895:1;1892;1885:12;1847:52;1918:29;1937:9;1918:29;:::i;:::-;1908:39;2016:2;2001:18;;;;1988:32;;-1:-1:-1;;;1750:300:1:o;2237:374::-;2314:6;2322;2330;2383:2;2371:9;2362:7;2358:23;2354:32;2351:52;;;2399:1;2396;2389:12;2351:52;2422:29;2441:9;2422:29;:::i;:::-;2412:39;;2470:38;2504:2;2493:9;2489:18;2470:38;:::i;:::-;2237:374;;2460:48;;-1:-1:-1;;;2577:2:1;2562:18;;;;2549:32;;2237:374::o;2616:127::-;2677:10;2672:3;2668:20;2665:1;2658:31;2708:4;2705:1;2698:15;2732:4;2729:1;2722:15;2748:275;2819:2;2813:9;2884:2;2865:13;;-1:-1:-1;;2861:27:1;2849:40;;-1:-1:-1;;;;;2904:34:1;;2940:22;;;2901:62;2898:88;;;2966:18;;:::i;:::-;3002:2;2995:22;2748:275;;-1:-1:-1;2748:275:1:o;3028:1064::-;3121:6;3129;3182:2;3170:9;3161:7;3157:23;3153:32;3150:52;;;3198:1;3195;3188:12;3150:52;3221:29;3240:9;3221:29;:::i;:::-;3211:39;;3301:2;3290:9;3286:18;3273:32;-1:-1:-1;;;;;3320:6:1;3317:30;3314:50;;;3360:1;3357;3350:12;3314:50;3383:22;;3436:4;3428:13;;3424:27;-1:-1:-1;3414:55:1;;3465:1;3462;3455:12;3414:55;3505:2;3492:16;-1:-1:-1;;;;;3523:6:1;3520:30;3517:56;;;3553:18;;:::i;:::-;3599:6;3596:1;3592:14;3626:28;3650:2;3646;3642:11;3626:28;:::i;:::-;3688:19;;;3732:2;3762:11;;;3758:20;;;3723:12;;;;3790:19;;;3787:39;;;3822:1;3819;3812:12;3787:39;3854:2;3850;3846:11;3835:22;;3866:196;3882:6;3877:3;3874:15;3866:196;;;3972:17;;4002:18;;;4049:2;3899:12;;;;3972:17;;-1:-1:-1;4040:12:1;;;;3866:196;;;4081:5;4071:15;;;;;;;3028:1064;;;;;:::o;4963:186::-;5022:6;5075:2;5063:9;5054:7;5050:23;5046:32;5043:52;;;5091:1;5088;5081:12;5043:52;5114:29;5133:9;5114:29;:::i;5154:587::-;5225:6;5233;5286:2;5274:9;5265:7;5261:23;5257:32;5254:52;;;5302:1;5299;5292:12;5254:52;5342:9;5329:23;-1:-1:-1;;;;;5367:6:1;5364:30;5361:50;;;5407:1;5404;5397:12;5361:50;5430:22;;5483:4;5475:13;;5471:27;-1:-1:-1;5461:55:1;;5512:1;5509;5502:12;5461:55;5552:2;5539:16;-1:-1:-1;;;;;5570:6:1;5567:30;5564:50;;;5610:1;5607;5600:12;5564:50;5655:7;5650:2;5641:6;5637:2;5633:15;5629:24;5626:37;5623:57;;;5676:1;5673;5666:12;5623:57;5707:2;5699:11;;;;;5729:6;;-1:-1:-1;5154:587:1;-1:-1:-1;;;5154:587:1:o;5746:347::-;5811:6;5819;5872:2;5860:9;5851:7;5847:23;5843:32;5840:52;;;5888:1;5885;5878:12;5840:52;5911:29;5930:9;5911:29;:::i;:::-;5901:39;;5990:2;5979:9;5975:18;5962:32;6037:5;6030:13;6023:21;6016:5;6013:32;6003:60;;6059:1;6056;6049:12;6003:60;6082:5;6072:15;;;5746:347;;;;;:::o;6098:1028::-;6193:6;6201;6209;6217;6270:3;6258:9;6249:7;6245:23;6241:33;6238:53;;;6287:1;6284;6277:12;6238:53;6310:29;6329:9;6310:29;:::i;:::-;6300:39;;6358:38;6392:2;6381:9;6377:18;6358:38;:::i;:::-;6348:48;-1:-1:-1;6465:2:1;6450:18;;6437:32;;-1:-1:-1;6544:2:1;6529:18;;6516:32;-1:-1:-1;;;;;6560:30:1;;6557:50;;;6603:1;6600;6593:12;6557:50;6626:22;;6679:4;6671:13;;6667:27;-1:-1:-1;6657:55:1;;6708:1;6705;6698:12;6657:55;6748:2;6735:16;-1:-1:-1;;;;;6766:6:1;6763:30;6760:56;;;6796:18;;:::i;:::-;6838:57;6885:2;6862:17;;-1:-1:-1;;6858:31:1;6891:2;6854:40;6838:57;:::i;:::-;6918:6;6911:5;6904:21;6966:7;6961:2;6952:6;6948:2;6944:15;6940:24;6937:37;6934:57;;;6987:1;6984;6977:12;6934:57;7042:6;7037:2;7033;7029:11;7024:2;7017:5;7013:14;7000:49;7094:1;7089:2;7080:6;7073:5;7069:18;7065:27;7058:38;7115:5;7105:15;;;;;6098:1028;;;;;;;:::o;7131:724::-;7226:6;7234;7242;7295:2;7283:9;7274:7;7270:23;7266:32;7263:52;;;7311:1;7308;7301:12;7263:52;7356:23;;;-1:-1:-1;7454:2:1;7439:18;;7426:32;-1:-1:-1;;;;;7470:30:1;;7467:50;;;7513:1;7510;7503:12;7467:50;7536:22;;7589:4;7581:13;;7577:27;-1:-1:-1;7567:55:1;;7618:1;7615;7608:12;7567:55;7658:2;7645:16;-1:-1:-1;;;;;7676:6:1;7673:30;7670:50;;;7716:1;7713;7706:12;7670:50;7769:7;7764:2;7754:6;7751:1;7747:14;7743:2;7739:23;7735:32;7732:45;7729:65;;;7790:1;7787;7780:12;7729:65;7131:724;;7821:2;7813:11;;;;;-1:-1:-1;7843:6:1;;-1:-1:-1;;;7131:724:1:o;7860:260::-;7928:6;7936;7989:2;7977:9;7968:7;7964:23;7960:32;7957:52;;;8005:1;8002;7995:12;7957:52;8028:29;8047:9;8028:29;:::i;:::-;8018:39;;8076:38;8110:2;8099:9;8095:18;8076:38;:::i;:::-;8066:48;;7860:260;;;;;:::o;8356:356::-;8558:2;8540:21;;;8577:18;;;8570:30;8636:34;8631:2;8616:18;;8609:62;8703:2;8688:18;;8356:356::o;8717:380::-;8796:1;8792:12;;;;8839;;;8860:61;;8914:4;8906:6;8902:17;8892:27;;8860:61;8967:2;8959:6;8956:14;8936:18;8933:38;8930:161;;9013:10;9008:3;9004:20;9001:1;8994:31;9048:4;9045:1;9038:15;9076:4;9073:1;9066:15;8930:161;;8717:380;;;:::o;9462:518::-;9564:2;9559:3;9556:11;9553:421;;;9600:5;9597:1;9590:16;9644:4;9641:1;9631:18;9714:2;9702:10;9698:19;9695:1;9691:27;9685:4;9681:38;9750:4;9738:10;9735:20;9732:47;;;-1:-1:-1;9773:4:1;9732:47;9828:2;9823:3;9819:12;9816:1;9812:20;9806:4;9802:31;9792:41;;9883:81;9901:2;9894:5;9891:13;9883:81;;;9960:1;9946:16;;9927:1;9916:13;9883:81;;10156:1198;-1:-1:-1;;;;;10275:3:1;10272:27;10269:53;;;10302:18;;:::i;:::-;10331:94;10421:3;10381:38;10413:4;10407:11;10381:38;:::i;:::-;10375:4;10331:94;:::i;:::-;10451:1;10476:2;10471:3;10468:11;10493:1;10488:608;;;;11140:1;11157:3;11154:93;;;-1:-1:-1;11213:19:1;;;11200:33;11154:93;-1:-1:-1;;10113:1:1;10109:11;;;10105:24;10101:29;10091:40;10137:1;10133:11;;;10088:57;11260:78;;10461:887;;10488:608;9409:1;9402:14;;;9446:4;9433:18;;-1:-1:-1;;10524:17:1;;;10639:229;10653:7;10650:1;10647:14;10639:229;;;10742:19;;;10729:33;10714:49;;10849:4;10834:20;;;;10802:1;10790:14;;;;10669:12;10639:229;;;10643:3;10896;10887:7;10884:16;10881:159;;;11020:1;11016:6;11010:3;11004;11001:1;10997:11;10993:21;10989:34;10985:39;10972:9;10967:3;10963:19;10950:33;10946:79;10938:6;10931:95;10881:159;;;11083:1;11077:3;11074:1;11070:11;11066:19;11060:4;11053:33;10461:887;;10156:1198;;;:::o;11359:127::-;11420:10;11415:3;11411:20;11408:1;11401:31;11451:4;11448:1;11441:15;11475:4;11472:1;11465:15;11491:128;11558:9;;;11579:11;;;11576:37;;;11593:18;;:::i;11624:168::-;11697:9;;;11728;;11745:15;;;11739:22;;11725:37;11715:71;;11766:18;;:::i;12557:125::-;12622:9;;;12643:10;;;12640:36;;;12656:18;;:::i;12687:212::-;12729:3;12767:5;12761:12;12811:6;12804:4;12797:5;12793:16;12788:3;12782:36;12873:1;12837:16;;12862:13;;;-1:-1:-1;12837:16:1;;12687:212;-1:-1:-1;12687:212:1:o;12904:425::-;13184:3;13212:57;13238:30;13264:3;13256:6;13238:30;:::i;:::-;13230:6;13212:57;:::i;:::-;-1:-1:-1;;;13278:19:1;;13321:1;13313:10;;12904:425;-1:-1:-1;;;;12904:425:1:o;13741:496::-;-1:-1:-1;;;;;13972:32:1;;;13954:51;;14041:32;;14036:2;14021:18;;14014:60;14105:2;14090:18;;14083:34;;;14153:3;14148:2;14133:18;;14126:31;;;-1:-1:-1;;14174:57:1;;14211:19;;14203:6;14174:57;:::i;14242:249::-;14311:6;14364:2;14352:9;14343:7;14339:23;14335:32;14332:52;;;14380:1;14377;14370:12;14332:52;14412:9;14406:16;14431:30;14455:5;14431:30;:::i;14496:135::-;14535:3;14556:17;;;14553:43;;14576:18;;:::i;:::-;-1:-1:-1;14623:1:1;14612:13;;14496:135::o;14636:127::-;14697:10;14692:3;14688:20;14685:1;14678:31;14728:4;14725:1;14718:15;14752:4;14749:1;14742:15;14768:120;14808:1;14834;14824:35;;14839:18;;:::i;:::-;-1:-1:-1;14873:9:1;;14768:120::o;14893:112::-;14925:1;14951;14941:35;;14956:18;;:::i;:::-;-1:-1:-1;14990:9:1;;14893:112::o;15010:127::-;15071:10;15066:3;15062:20;15059:1;15052:31;15102:4;15099:1;15092:15;15126:4;15123:1;15116:15

Swarm Source

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