ETH Price: $3,317.77 (+2.02%)
 

Overview

Max Total Supply

449 siimpets

Holders

61

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
16 siimpets
0x6ce34728cb1534ae7ef3973ed9acbb55e0607d55
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:
siimpets

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-10
*/

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/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/token/ERC721/extensions/IERC721Metadata.sol


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

pragma solidity ^0.8.0;

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 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**128 - 1 (max value of uint128).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    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;
    }

    // Compiler will pack the following 
    // _currentIndex and _burnCounter into a single 256bit word.
    
    // The tokenId of the next token to be minted.
    uint128 internal _currentIndex;

    // The number of tokens burned.
    uint128 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_;
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view override returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex times
        unchecked {
            return _currentIndex - _burnCounter;    
        }
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (!ownership.burned) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }
        revert TokenIndexOutOfBounds();
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        if (index >= balanceOf(owner)) revert OwnerIndexOutOfBounds();
        uint256 numMintedSoFar = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when
        // uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        // Execution should never reach this point.
        revert();
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).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);
    }

    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        return uint256(_addressData[owner].numberMinted);
    }

    function _numberBurned(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        return uint256(_addressData[owner].numberBurned);
    }

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

    /**
     * @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 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 (!_checkOnERC721Received(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 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 > 3.4e38 (2**128) - 1
        // updatedIndex overflows if _currentIndex + quantity > 3.4e38 (2**128) - 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;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe && !_checkOnERC721Received(address(0), to, updatedIndex, _data)) {
                    revert TransferToNonERC721ReceiverImplementer();
                }
                updatedIndex++;
            }

            _currentIndex = uint128(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);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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**128.
        unchecked {
            _addressData[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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 address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert TransferToNonERC721ReceiverImplementer();
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @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: @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/security/ReentrancyGuard.sol


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

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

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


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

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

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

// File: contracts/siimpets.sol



pragma solidity ^0.8.4;




contract siimpets is ERC721A, Ownable, ReentrancyGuard {

    string private BASE_URI;

    bool public PET_CLAIM_ACTIVE;

    address public SIIMPLEX_ADDRESS;
    
    uint16 public MAX_SUPPLY;
    
    mapping(uint16 => bool) public mappingToPets;
    
    constructor(
        string memory baseURI,
        bool petClaimActive,
        uint16 maxSupply,
        address siimplexAddress
        ) ERC721A("siimpets", "siimpets") {
        
        BASE_URI = baseURI;
        
        PET_CLAIM_ACTIVE = petClaimActive;

        MAX_SUPPLY = maxSupply;
        
        SIIMPLEX_ADDRESS = siimplexAddress;
    }

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

    function setBaseURI(string memory newBaseURI) external onlyOwner {
        BASE_URI = newBaseURI;
    }

    function setPetClaimActive(bool petClaimActive) external onlyOwner {
        PET_CLAIM_ACTIVE = petClaimActive;
    }
    function isPetClaimed(uint16 token) public view returns (bool) {
        return mappingToPets[token];
    }
    modifier validMintAmount(uint256 _mintAmount) {
        require(_mintAmount > 0, "Must mint at least one token");
        require(_currentIndex + _mintAmount <= MAX_SUPPLY, "Exceeded max tokens minted");
        _;
    }

    modifier checkTokenOwnershipAndClaimStatus(uint16[] calldata _tokensToClaimFor) {
        for (uint16 i = 0; i < _tokensToClaimFor.length; i++) {
            require(ERC721A(SIIMPLEX_ADDRESS).ownerOf(_tokensToClaimFor[i]) == msg.sender, "Token does not belong to sender");
            require(mappingToPets[_tokensToClaimFor[i]] == false, "Pet has already been claimed for token");
        }
        _; 
    }
    
    function claimPet(uint16[] calldata _tokensToClaimFor) public payable validMintAmount(_tokensToClaimFor.length) checkTokenOwnershipAndClaimStatus(_tokensToClaimFor) {
        require(PET_CLAIM_ACTIVE, "Pet claiming is not active");

        _safeMint(msg.sender, _tokensToClaimFor.length);
        
        for (uint16 i = 0; i < _tokensToClaimFor.length; i++) {
            mappingToPets[_tokensToClaimFor[i]] = true;    
        }
    }

    address private constant payoutAddress = 0xDaA7E2c646E2A9A6ab9bCB503881eD790A849C49;

    function withdraw() public onlyOwner nonReentrant {
        uint256 balance = address(this).balance;
        Address.sendValue(payable(payoutAddress), balance);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"bool","name":"petClaimActive","type":"bool"},{"internalType":"uint16","name":"maxSupply","type":"uint16"},{"internalType":"address","name":"siimplexAddress","type":"address"}],"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":"OwnerIndexOutOfBounds","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TokenIndexOutOfBounds","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":"MAX_SUPPLY","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PET_CLAIM_ACTIVE","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SIIMPLEX_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"internalType":"uint16[]","name":"_tokensToClaimFor","type":"uint16[]"}],"name":"claimPet","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"token","type":"uint16"}],"name":"isPetClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"","type":"uint16"}],"name":"mappingToPets","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"petClaimActive","type":"bool"}],"name":"setPetClaimActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162004637380380620046378339818101604052810190620000379190620003db565b6040518060400160405280600881526020017f7369696d706574730000000000000000000000000000000000000000000000008152506040518060400160405280600881526020017f7369696d706574730000000000000000000000000000000000000000000000008152508160019080519060200190620000bb92919062000268565b508060029080519060200190620000d492919062000268565b505050620000f7620000eb6200019a60201b60201c565b620001a260201b60201c565b600160088190555083600990805190602001906200011792919062000268565b5082600a60006101000a81548160ff02191690831515021790555081600a60156101000a81548161ffff021916908361ffff16021790555080600a60016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050506200068c565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000276906200054f565b90600052602060002090601f0160209004810192826200029a5760008555620002e6565b82601f10620002b557805160ff1916838001178555620002e6565b82800160010185558215620002e6579182015b82811115620002e5578251825591602001919060010190620002c8565b5b509050620002f59190620002f9565b5090565b5b8082111562000314576000816000905550600101620002fa565b5090565b60006200032f620003298462000495565b6200046c565b9050828152602081018484840111156200034e576200034d6200061e565b5b6200035b84828562000519565b509392505050565b60008151905062000374816200063e565b92915050565b6000815190506200038b8162000658565b92915050565b600082601f830112620003a957620003a862000619565b5b8151620003bb84826020860162000318565b91505092915050565b600081519050620003d58162000672565b92915050565b60008060008060808587031215620003f857620003f762000628565b5b600085015167ffffffffffffffff81111562000419576200041862000623565b5b620004278782880162000391565b94505060206200043a878288016200037a565b93505060406200044d87828801620003c4565b9250506060620004608782880162000363565b91505092959194509250565b6000620004786200048b565b905062000486828262000585565b919050565b6000604051905090565b600067ffffffffffffffff821115620004b357620004b2620005ea565b5b620004be826200062d565b9050602081019050919050565b6000620004d882620004f9565b9050919050565b60008115159050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620005395780820151818401526020810190506200051c565b8381111562000549576000848401525b50505050565b600060028204905060018216806200056857607f821691505b602082108114156200057f576200057e620005bb565b5b50919050565b62000590826200062d565b810181811067ffffffffffffffff82111715620005b257620005b1620005ea565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200064981620004cb565b81146200065557600080fd5b50565b6200066381620004df565b81146200066f57600080fd5b50565b6200067d81620004eb565b81146200068957600080fd5b50565b613f9b806200069c6000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063b5860e181161008a578063c976320311610064578063c97632031461061e578063e985e9c51461065b578063efa21f7f14610698578063f2fde38b146106b4576101b7565b8063b5860e181461057b578063b88d4fde146105b8578063c87b56dd146105e1576101b7565b8063885350cb116100c6578063885350cb146104d35780638da5cb5b146104fc57806395d89b4114610527578063a22cb46514610552576101b7565b80636352211e1461044257806370a082311461047f578063715018a6146104bc576101b7565b80632f745c591161015957806340304a911161013357806340304a911461038857806342842e0e146103b35780634f6ccce7146103dc57806355f804b314610419576101b7565b80632f745c591461030957806332cb6b0c146103465780633ccfd60b14610371576101b7565b806308d268c41161019557806308d268c414610261578063095ea7b31461028c57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190613281565b6106dd565b6040516101f0919061368d565b60405180910390f35b34801561020557600080fd5b5061020e610827565b60405161021b91906136a8565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613351565b6108b9565b6040516102589190613626565b60405180910390f35b34801561026d57600080fd5b50610276610935565b604051610283919061368d565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae91906131c7565b610948565b005b3480156102c157600080fd5b506102ca610a53565b6040516102d79190613840565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906130b1565b610aa8565b005b34801561031557600080fd5b50610330600480360381019061032b91906131c7565b610ab8565b60405161033d9190613840565b60405180910390f35b34801561035257600080fd5b5061035b610cbf565b604051610368919061380a565b60405180910390f35b34801561037d57600080fd5b50610386610cd3565b005b34801561039457600080fd5b5061039d610dcb565b6040516103aa9190613626565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d591906130b1565b610df1565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613351565b610e11565b6040516104109190613840565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b91906132db565b610f82565b005b34801561044e57600080fd5b5061046960048036038101906104649190613351565b611018565b6040516104769190613626565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613017565b61102e565b6040516104b39190613840565b60405180910390f35b3480156104c857600080fd5b506104d16110fe565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613254565b611186565b005b34801561050857600080fd5b5061051161121f565b60405161051e9190613626565b60405180910390f35b34801561053357600080fd5b5061053c611249565b60405161054991906136a8565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613187565b6112db565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613324565b611453565b6040516105af919061368d565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190613104565b611473565b005b3480156105ed57600080fd5b5061060860048036038101906106039190613351565b6114c6565b60405161061591906136a8565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613324565b611565565b604051610652919061368d565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613071565b611597565b60405161068f919061368d565b60405180910390f35b6106b260048036038101906106ad9190613207565b61162b565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613017565b6119ef565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610820575061081f82611ae7565b5b9050919050565b60606001805461083690613ac1565b80601f016020809104026020016040519081016040528092919081815260200182805461086290613ac1565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c482611b51565b6108fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a60009054906101000a900460ff1681565b600061095382611018565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109da611bb9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a0c5750610a0a81610a05611bb9565b611597565b155b15610a43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a4e838383611bc1565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610ab3838383611c73565b505050565b6000610ac38361102e565b8210610afb576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610cb3576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610c125750610ca6565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c5257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca45786841415610c9b578195505050505050610cb9565b83806001019450505b505b8080600101915050610b35565b50600080fd5b92915050565b600a60159054906101000a900461ffff1681565b610cdb611bb9565b73ffffffffffffffffffffffffffffffffffffffff16610cf961121f565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d469061374a565b60405180910390fd5b60026008541415610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c906137ca565b60405180910390fd5b60026008819055506000479050610dc073daa7e2c646e2a9a6ab9bcb503881ed790a849c4982612190565b506001600881905550565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e0c83838360405180602001604052806000815250611473565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610f4a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f3c5785831415610f335781945050505050610f7d565b82806001019350505b508080600101915050610e49565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b610f8a611bb9565b73ffffffffffffffffffffffffffffffffffffffff16610fa861121f565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff59061374a565b60405180910390fd5b8060099080519060200190611014929190612d68565b5050565b600061102382612284565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611096576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611106611bb9565b73ffffffffffffffffffffffffffffffffffffffff1661112461121f565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111719061374a565b60405180910390fd5b611184600061252c565b565b61118e611bb9565b73ffffffffffffffffffffffffffffffffffffffff166111ac61121f565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061374a565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461125890613ac1565b80601f016020809104026020016040519081016040528092919081815260200182805461128490613ac1565b80156112d15780601f106112a6576101008083540402835291602001916112d1565b820191906000526020600020905b8154815290600101906020018083116112b457829003601f168201915b5050505050905090565b6112e3611bb9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611348576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611355611bb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611402611bb9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611447919061368d565b60405180910390a35050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61147e848484611c73565b61148a848484846125f2565b6114c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114d182611b51565b611507576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611511612780565b9050600081511415611532576040518060200160405280600081525061155d565b8061153c84612812565b60405160200161154d9291906135ed565b6040516020818303038152906040525b915050919050565b6000600b60008361ffff1661ffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8181905060008111611672576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116699061376a565b60405180910390fd5b600a60159054906101000a900461ffff1661ffff168160008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166116c19190613930565b1115611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f9906137aa565b60405180910390fd5b828260005b828290508161ffff161015611906573373ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858561ffff1681811061178257611781613c56565b5b90506020020160208101906117979190613324565b6040518263ffffffff1660e01b81526004016117b39190613825565b60206040518083038186803b1580156117cb57600080fd5b505afa1580156117df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118039190613044565b73ffffffffffffffffffffffffffffffffffffffff1614611859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611850906137ea565b60405180910390fd5b60001515600b600085858561ffff1681811061187857611877613c56565b5b905060200201602081019061188d9190613324565b61ffff1661ffff16815260200190815260200160002060009054906101000a900460ff161515146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea9061378a565b60405180910390fd5b80806118fe90613b24565b915050611707565b50600a60009054906101000a900460ff16611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d9061372a565b60405180910390fd5b6119633386869050612973565b60005b858590508161ffff1610156119e7576001600b600088888561ffff1681811061199257611991613c56565b5b90506020020160208101906119a79190613324565b61ffff1661ffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119df90613b24565b915050611966565b505050505050565b6119f7611bb9565b73ffffffffffffffffffffffffffffffffffffffff16611a1561121f565b73ffffffffffffffffffffffffffffffffffffffff1614611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a629061374a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad2906136ca565b60405180910390fd5b611ae48161252c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611bb2575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c7e82612284565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ca5611bb9565b73ffffffffffffffffffffffffffffffffffffffff161480611cd85750611cd78260000151611cd2611bb9565b611597565b5b80611d1d5750611ce6611bb9565b73ffffffffffffffffffffffffffffffffffffffff16611d05846108b9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d56576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e26576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e338585856001612991565b611e436000848460000151611bc1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121205760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561211f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121898585856001612997565b5050505050565b804710156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca9061370a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121f990613611565b60006040518083038185875af1925050503d8060008114612236576040519150601f19603f3d011682016040523d82523d6000602084013e61223b565b606091505b505090508061227f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612276906136ea565b60405180910390fd5b505050565b61228c612dee565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156124f5576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124f357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123d7578092505050612527565b5b6001156124f257818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124ed578092505050612527565b6123d8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126138473ffffffffffffffffffffffffffffffffffffffff1661299d565b15612773578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261263c611bb9565b8786866040518563ffffffff1660e01b815260040161265e9493929190613641565b602060405180830381600087803b15801561267857600080fd5b505af19250505080156126a957506040513d601f19601f820116820180604052508101906126a691906132ae565b60015b612723573d80600081146126d9576040519150601f19603f3d011682016040523d82523d6000602084013e6126de565b606091505b5060008151141561271b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612778565b600190505b949350505050565b60606009805461278f90613ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546127bb90613ac1565b80156128085780601f106127dd57610100808354040283529160200191612808565b820191906000526020600020905b8154815290600101906020018083116127eb57829003601f168201915b5050505050905090565b6060600082141561285a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061296e565b600082905060005b6000821461288c57808061287590613b4f565b915050600a826128859190613986565b9150612862565b60008167ffffffffffffffff8111156128a8576128a7613c85565b5b6040519080825280601f01601f1916602001820160405280156128da5781602001600182028036833780820191505090505b5090505b60008514612967576001826128f391906139b7565b9150600a856129029190613b98565b603061290e9190613930565b60f81b81838151811061292457612923613c56565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129609190613986565b94506128de565b8093505050505b919050565b61298d8282604051806020016040528060008152506129c0565b5050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6129cd83838360016129d2565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612aa8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ab56000868387612991565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d1a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612cce5750612ccc60008884886125f2565b155b15612d05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c53565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612d616000868387612997565b5050505050565b828054612d7490613ac1565b90600052602060002090601f016020900481019282612d965760008555612ddd565b82601f10612daf57805160ff1916838001178555612ddd565b82800160010185558215612ddd579182015b82811115612ddc578251825591602001919060010190612dc1565b5b509050612dea9190612e31565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e4a576000816000905550600101612e32565b5090565b6000612e61612e5c84613880565b61385b565b905082815260208101848484011115612e7d57612e7c613cc3565b5b612e88848285613a7f565b509392505050565b6000612ea3612e9e846138b1565b61385b565b905082815260208101848484011115612ebf57612ebe613cc3565b5b612eca848285613a7f565b509392505050565b600081359050612ee181613ef2565b92915050565b600081519050612ef681613ef2565b92915050565b60008083601f840112612f1257612f11613cb9565b5b8235905067ffffffffffffffff811115612f2f57612f2e613cb4565b5b602083019150836020820283011115612f4b57612f4a613cbe565b5b9250929050565b600081359050612f6181613f09565b92915050565b600081359050612f7681613f20565b92915050565b600081519050612f8b81613f20565b92915050565b600082601f830112612fa657612fa5613cb9565b5b8135612fb6848260208601612e4e565b91505092915050565b600082601f830112612fd457612fd3613cb9565b5b8135612fe4848260208601612e90565b91505092915050565b600081359050612ffc81613f37565b92915050565b60008135905061301181613f4e565b92915050565b60006020828403121561302d5761302c613ccd565b5b600061303b84828501612ed2565b91505092915050565b60006020828403121561305a57613059613ccd565b5b600061306884828501612ee7565b91505092915050565b6000806040838503121561308857613087613ccd565b5b600061309685828601612ed2565b92505060206130a785828601612ed2565b9150509250929050565b6000806000606084860312156130ca576130c9613ccd565b5b60006130d886828701612ed2565b93505060206130e986828701612ed2565b92505060406130fa86828701613002565b9150509250925092565b6000806000806080858703121561311e5761311d613ccd565b5b600061312c87828801612ed2565b945050602061313d87828801612ed2565b935050604061314e87828801613002565b925050606085013567ffffffffffffffff81111561316f5761316e613cc8565b5b61317b87828801612f91565b91505092959194509250565b6000806040838503121561319e5761319d613ccd565b5b60006131ac85828601612ed2565b92505060206131bd85828601612f52565b9150509250929050565b600080604083850312156131de576131dd613ccd565b5b60006131ec85828601612ed2565b92505060206131fd85828601613002565b9150509250929050565b6000806020838503121561321e5761321d613ccd565b5b600083013567ffffffffffffffff81111561323c5761323b613cc8565b5b61324885828601612efc565b92509250509250929050565b60006020828403121561326a57613269613ccd565b5b600061327884828501612f52565b91505092915050565b60006020828403121561329757613296613ccd565b5b60006132a584828501612f67565b91505092915050565b6000602082840312156132c4576132c3613ccd565b5b60006132d284828501612f7c565b91505092915050565b6000602082840312156132f1576132f0613ccd565b5b600082013567ffffffffffffffff81111561330f5761330e613cc8565b5b61331b84828501612fbf565b91505092915050565b60006020828403121561333a57613339613ccd565b5b600061334884828501612fed565b91505092915050565b60006020828403121561336757613366613ccd565b5b600061337584828501613002565b91505092915050565b613387816139eb565b82525050565b613396816139fd565b82525050565b60006133a7826138e2565b6133b181856138f8565b93506133c1818560208601613a8e565b6133ca81613cd2565b840191505092915050565b60006133e0826138ed565b6133ea8185613914565b93506133fa818560208601613a8e565b61340381613cd2565b840191505092915050565b6000613419826138ed565b6134238185613925565b9350613433818560208601613a8e565b80840191505092915050565b600061344c602683613914565b915061345782613ce3565b604082019050919050565b600061346f603a83613914565b915061347a82613d32565b604082019050919050565b6000613492601d83613914565b915061349d82613d81565b602082019050919050565b60006134b5601a83613914565b91506134c082613daa565b602082019050919050565b60006134d8602083613914565b91506134e382613dd3565b602082019050919050565b60006134fb601c83613914565b915061350682613dfc565b602082019050919050565b600061351e600083613909565b915061352982613e25565b600082019050919050565b6000613541602683613914565b915061354c82613e28565b604082019050919050565b6000613564601a83613914565b915061356f82613e77565b602082019050919050565b6000613587601f83613914565b915061359282613ea0565b602082019050919050565b60006135aa601f83613914565b91506135b582613ec9565b602082019050919050565b6135c981613a35565b82525050565b6135d881613a6d565b82525050565b6135e781613a63565b82525050565b60006135f9828561340e565b9150613605828461340e565b91508190509392505050565b600061361c82613511565b9150819050919050565b600060208201905061363b600083018461337e565b92915050565b6000608082019050613656600083018761337e565b613663602083018661337e565b61367060408301856135de565b8181036060830152613682818461339c565b905095945050505050565b60006020820190506136a2600083018461338d565b92915050565b600060208201905081810360008301526136c281846133d5565b905092915050565b600060208201905081810360008301526136e38161343f565b9050919050565b6000602082019050818103600083015261370381613462565b9050919050565b6000602082019050818103600083015261372381613485565b9050919050565b60006020820190508181036000830152613743816134a8565b9050919050565b60006020820190508181036000830152613763816134cb565b9050919050565b60006020820190508181036000830152613783816134ee565b9050919050565b600060208201905081810360008301526137a381613534565b9050919050565b600060208201905081810360008301526137c381613557565b9050919050565b600060208201905081810360008301526137e38161357a565b9050919050565b600060208201905081810360008301526138038161359d565b9050919050565b600060208201905061381f60008301846135c0565b92915050565b600060208201905061383a60008301846135cf565b92915050565b600060208201905061385560008301846135de565b92915050565b6000613865613876565b90506138718282613af3565b919050565b6000604051905090565b600067ffffffffffffffff82111561389b5761389a613c85565b5b6138a482613cd2565b9050602081019050919050565b600067ffffffffffffffff8211156138cc576138cb613c85565b5b6138d582613cd2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061393b82613a63565b915061394683613a63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397b5761397a613bc9565b5b828201905092915050565b600061399182613a63565b915061399c83613a63565b9250826139ac576139ab613bf8565b5b828204905092915050565b60006139c282613a63565b91506139cd83613a63565b9250828210156139e0576139df613bc9565b5b828203905092915050565b60006139f682613a43565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613a7882613a35565b9050919050565b82818337600083830152505050565b60005b83811015613aac578082015181840152602081019050613a91565b83811115613abb576000848401525b50505050565b60006002820490506001821680613ad957607f821691505b60208210811415613aed57613aec613c27565b5b50919050565b613afc82613cd2565b810181811067ffffffffffffffff82111715613b1b57613b1a613c85565b5b80604052505050565b6000613b2f82613a35565b915061ffff821415613b4457613b43613bc9565b5b600182019050919050565b6000613b5a82613a63565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8d57613b8c613bc9565b5b600182019050919050565b6000613ba382613a63565b9150613bae83613a63565b925082613bbe57613bbd613bf8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f50657420636c61696d696e67206973206e6f7420616374697665000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b50565b7f5065742068617320616c7265616479206265656e20636c61696d656420666f7260008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e73206d696e746564000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e20646f6573206e6f742062656c6f6e6720746f2073656e64657200600082015250565b613efb816139eb565b8114613f0657600080fd5b50565b613f12816139fd565b8114613f1d57600080fd5b50565b613f2981613a09565b8114613f3457600080fd5b50565b613f4081613a35565b8114613f4b57600080fd5b50565b613f5781613a63565b8114613f6257600080fd5b5056fea2646970667358221220727fe1707d0e0610647f5dbb1958f95e1b28ca8f70d9354e01295f560dd08d1a64736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000270f0000000000000000000000001e845fba4bb4437558707c5bf005246874736f7b0000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636352211e116100ec578063b5860e181161008a578063c976320311610064578063c97632031461061e578063e985e9c51461065b578063efa21f7f14610698578063f2fde38b146106b4576101b7565b8063b5860e181461057b578063b88d4fde146105b8578063c87b56dd146105e1576101b7565b8063885350cb116100c6578063885350cb146104d35780638da5cb5b146104fc57806395d89b4114610527578063a22cb46514610552576101b7565b80636352211e1461044257806370a082311461047f578063715018a6146104bc576101b7565b80632f745c591161015957806340304a911161013357806340304a911461038857806342842e0e146103b35780634f6ccce7146103dc57806355f804b314610419576101b7565b80632f745c591461030957806332cb6b0c146103465780633ccfd60b14610371576101b7565b806308d268c41161019557806308d268c414610261578063095ea7b31461028c57806318160ddd146102b557806323b872dd146102e0576101b7565b806301ffc9a7146101bc57806306fdde03146101f9578063081812fc14610224575b600080fd5b3480156101c857600080fd5b506101e360048036038101906101de9190613281565b6106dd565b6040516101f0919061368d565b60405180910390f35b34801561020557600080fd5b5061020e610827565b60405161021b91906136a8565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613351565b6108b9565b6040516102589190613626565b60405180910390f35b34801561026d57600080fd5b50610276610935565b604051610283919061368d565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae91906131c7565b610948565b005b3480156102c157600080fd5b506102ca610a53565b6040516102d79190613840565b60405180910390f35b3480156102ec57600080fd5b50610307600480360381019061030291906130b1565b610aa8565b005b34801561031557600080fd5b50610330600480360381019061032b91906131c7565b610ab8565b60405161033d9190613840565b60405180910390f35b34801561035257600080fd5b5061035b610cbf565b604051610368919061380a565b60405180910390f35b34801561037d57600080fd5b50610386610cd3565b005b34801561039457600080fd5b5061039d610dcb565b6040516103aa9190613626565b60405180910390f35b3480156103bf57600080fd5b506103da60048036038101906103d591906130b1565b610df1565b005b3480156103e857600080fd5b5061040360048036038101906103fe9190613351565b610e11565b6040516104109190613840565b60405180910390f35b34801561042557600080fd5b50610440600480360381019061043b91906132db565b610f82565b005b34801561044e57600080fd5b5061046960048036038101906104649190613351565b611018565b6040516104769190613626565b60405180910390f35b34801561048b57600080fd5b506104a660048036038101906104a19190613017565b61102e565b6040516104b39190613840565b60405180910390f35b3480156104c857600080fd5b506104d16110fe565b005b3480156104df57600080fd5b506104fa60048036038101906104f59190613254565b611186565b005b34801561050857600080fd5b5061051161121f565b60405161051e9190613626565b60405180910390f35b34801561053357600080fd5b5061053c611249565b60405161054991906136a8565b60405180910390f35b34801561055e57600080fd5b5061057960048036038101906105749190613187565b6112db565b005b34801561058757600080fd5b506105a2600480360381019061059d9190613324565b611453565b6040516105af919061368d565b60405180910390f35b3480156105c457600080fd5b506105df60048036038101906105da9190613104565b611473565b005b3480156105ed57600080fd5b5061060860048036038101906106039190613351565b6114c6565b60405161061591906136a8565b60405180910390f35b34801561062a57600080fd5b5061064560048036038101906106409190613324565b611565565b604051610652919061368d565b60405180910390f35b34801561066757600080fd5b50610682600480360381019061067d9190613071565b611597565b60405161068f919061368d565b60405180910390f35b6106b260048036038101906106ad9190613207565b61162b565b005b3480156106c057600080fd5b506106db60048036038101906106d69190613017565b6119ef565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806107a857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061081057507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610820575061081f82611ae7565b5b9050919050565b60606001805461083690613ac1565b80601f016020809104026020016040519081016040528092919081815260200182805461086290613ac1565b80156108af5780601f10610884576101008083540402835291602001916108af565b820191906000526020600020905b81548152906001019060200180831161089257829003601f168201915b5050505050905090565b60006108c482611b51565b6108fa576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600a60009054906101000a900460ff1681565b600061095382611018565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109bb576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166109da611bb9565b73ffffffffffffffffffffffffffffffffffffffff1614158015610a0c5750610a0a81610a05611bb9565b611597565b155b15610a43576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610a4e838383611bc1565b505050565b60008060109054906101000a90046fffffffffffffffffffffffffffffffff1660008054906101000a90046fffffffffffffffffffffffffffffffff16036fffffffffffffffffffffffffffffffff16905090565b610ab3838383611c73565b505050565b6000610ac38361102e565b8210610afb576040517f0ddac30e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff16905060008060005b83811015610cb3576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015115610c125750610ca6565b600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610c5257806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ca45786841415610c9b578195505050505050610cb9565b83806001019450505b505b8080600101915050610b35565b50600080fd5b92915050565b600a60159054906101000a900461ffff1681565b610cdb611bb9565b73ffffffffffffffffffffffffffffffffffffffff16610cf961121f565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d469061374a565b60405180910390fd5b60026008541415610d95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8c906137ca565b60405180910390fd5b60026008819055506000479050610dc073daa7e2c646e2a9a6ab9bcb503881ed790a849c4982612190565b506001600881905550565b600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610e0c83838360405180602001604052806000815250611473565b505050565b60008060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1690506000805b82811015610f4a576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f3c5785831415610f335781945050505050610f7d565b82806001019350505b508080600101915050610e49565b506040517fa723001c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b610f8a611bb9565b73ffffffffffffffffffffffffffffffffffffffff16610fa861121f565b73ffffffffffffffffffffffffffffffffffffffff1614610ffe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff59061374a565b60405180910390fd5b8060099080519060200190611014929190612d68565b5050565b600061102382612284565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611096576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611106611bb9565b73ffffffffffffffffffffffffffffffffffffffff1661112461121f565b73ffffffffffffffffffffffffffffffffffffffff161461117a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111719061374a565b60405180910390fd5b611184600061252c565b565b61118e611bb9565b73ffffffffffffffffffffffffffffffffffffffff166111ac61121f565b73ffffffffffffffffffffffffffffffffffffffff1614611202576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f99061374a565b60405180910390fd5b80600a60006101000a81548160ff02191690831515021790555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606002805461125890613ac1565b80601f016020809104026020016040519081016040528092919081815260200182805461128490613ac1565b80156112d15780601f106112a6576101008083540402835291602001916112d1565b820191906000526020600020905b8154815290600101906020018083116112b457829003601f168201915b5050505050905090565b6112e3611bb9565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611348576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060066000611355611bb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611402611bb9565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611447919061368d565b60405180910390a35050565b600b6020528060005260406000206000915054906101000a900460ff1681565b61147e848484611c73565b61148a848484846125f2565b6114c0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b60606114d182611b51565b611507576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000611511612780565b9050600081511415611532576040518060200160405280600081525061155d565b8061153c84612812565b60405160200161154d9291906135ed565b6040516020818303038152906040525b915050919050565b6000600b60008361ffff1661ffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b8181905060008111611672576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116699061376a565b60405180910390fd5b600a60159054906101000a900461ffff1661ffff168160008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166116c19190613930565b1115611702576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f9906137aa565b60405180910390fd5b828260005b828290508161ffff161015611906573373ffffffffffffffffffffffffffffffffffffffff16600a60019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e85858561ffff1681811061178257611781613c56565b5b90506020020160208101906117979190613324565b6040518263ffffffff1660e01b81526004016117b39190613825565b60206040518083038186803b1580156117cb57600080fd5b505afa1580156117df573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118039190613044565b73ffffffffffffffffffffffffffffffffffffffff1614611859576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611850906137ea565b60405180910390fd5b60001515600b600085858561ffff1681811061187857611877613c56565b5b905060200201602081019061188d9190613324565b61ffff1661ffff16815260200190815260200160002060009054906101000a900460ff161515146118f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ea9061378a565b60405180910390fd5b80806118fe90613b24565b915050611707565b50600a60009054906101000a900460ff16611956576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194d9061372a565b60405180910390fd5b6119633386869050612973565b60005b858590508161ffff1610156119e7576001600b600088888561ffff1681811061199257611991613c56565b5b90506020020160208101906119a79190613324565b61ffff1661ffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806119df90613b24565b915050611966565b505050505050565b6119f7611bb9565b73ffffffffffffffffffffffffffffffffffffffff16611a1561121f565b73ffffffffffffffffffffffffffffffffffffffff1614611a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a629061374a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ad2906136ca565b60405180910390fd5b611ae48161252c565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1682108015611bb2575060036000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000611c7e82612284565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16611ca5611bb9565b73ffffffffffffffffffffffffffffffffffffffff161480611cd85750611cd78260000151611cd2611bb9565b611597565b5b80611d1d5750611ce6611bb9565b73ffffffffffffffffffffffffffffffffffffffff16611d05846108b9565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611d56576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611dbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415611e26576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e338585856001612991565b611e436000848460000151611bc1565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156121205760008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681101561211f5782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121898585856001612997565b5050505050565b804710156121d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ca9061370a565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff16826040516121f990613611565b60006040518083038185875af1925050503d8060008114612236576040519150601f19603f3d011682016040523d82523d6000602084013e61223b565b606091505b505090508061227f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612276906136ea565b60405180910390fd5b505050565b61228c612dee565b600082905060008054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168110156124f5576000600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516124f357600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146123d7578092505050612527565b5b6001156124f257818060019003925050600360008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146124ed578092505050612527565b6123d8565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006126138473ffffffffffffffffffffffffffffffffffffffff1661299d565b15612773578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261263c611bb9565b8786866040518563ffffffff1660e01b815260040161265e9493929190613641565b602060405180830381600087803b15801561267857600080fd5b505af19250505080156126a957506040513d601f19601f820116820180604052508101906126a691906132ae565b60015b612723573d80600081146126d9576040519150601f19603f3d011682016040523d82523d6000602084013e6126de565b606091505b5060008151141561271b576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612778565b600190505b949350505050565b60606009805461278f90613ac1565b80601f01602080910402602001604051908101604052809291908181526020018280546127bb90613ac1565b80156128085780601f106127dd57610100808354040283529160200191612808565b820191906000526020600020905b8154815290600101906020018083116127eb57829003601f168201915b5050505050905090565b6060600082141561285a576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061296e565b600082905060005b6000821461288c57808061287590613b4f565b915050600a826128859190613986565b9150612862565b60008167ffffffffffffffff8111156128a8576128a7613c85565b5b6040519080825280601f01601f1916602001820160405280156128da5781602001600182028036833780820191505090505b5090505b60008514612967576001826128f391906139b7565b9150600a856129029190613b98565b603061290e9190613930565b60f81b81838151811061292457612923613c56565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129609190613986565b94506128de565b8093505050505b919050565b61298d8282604051806020016040528060008152506129c0565b5050565b50505050565b50505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6129cd83838360016129d2565b505050565b60008060009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415612a6d576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000841415612aa8576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612ab56000868387612991565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612d1a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4838015612cce5750612ccc60008884886125f2565b155b15612d05576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81806001019250508080600101915050612c53565b50806000806101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555050612d616000868387612997565b5050505050565b828054612d7490613ac1565b90600052602060002090601f016020900481019282612d965760008555612ddd565b82601f10612daf57805160ff1916838001178555612ddd565b82800160010185558215612ddd579182015b82811115612ddc578251825591602001919060010190612dc1565b5b509050612dea9190612e31565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612e4a576000816000905550600101612e32565b5090565b6000612e61612e5c84613880565b61385b565b905082815260208101848484011115612e7d57612e7c613cc3565b5b612e88848285613a7f565b509392505050565b6000612ea3612e9e846138b1565b61385b565b905082815260208101848484011115612ebf57612ebe613cc3565b5b612eca848285613a7f565b509392505050565b600081359050612ee181613ef2565b92915050565b600081519050612ef681613ef2565b92915050565b60008083601f840112612f1257612f11613cb9565b5b8235905067ffffffffffffffff811115612f2f57612f2e613cb4565b5b602083019150836020820283011115612f4b57612f4a613cbe565b5b9250929050565b600081359050612f6181613f09565b92915050565b600081359050612f7681613f20565b92915050565b600081519050612f8b81613f20565b92915050565b600082601f830112612fa657612fa5613cb9565b5b8135612fb6848260208601612e4e565b91505092915050565b600082601f830112612fd457612fd3613cb9565b5b8135612fe4848260208601612e90565b91505092915050565b600081359050612ffc81613f37565b92915050565b60008135905061301181613f4e565b92915050565b60006020828403121561302d5761302c613ccd565b5b600061303b84828501612ed2565b91505092915050565b60006020828403121561305a57613059613ccd565b5b600061306884828501612ee7565b91505092915050565b6000806040838503121561308857613087613ccd565b5b600061309685828601612ed2565b92505060206130a785828601612ed2565b9150509250929050565b6000806000606084860312156130ca576130c9613ccd565b5b60006130d886828701612ed2565b93505060206130e986828701612ed2565b92505060406130fa86828701613002565b9150509250925092565b6000806000806080858703121561311e5761311d613ccd565b5b600061312c87828801612ed2565b945050602061313d87828801612ed2565b935050604061314e87828801613002565b925050606085013567ffffffffffffffff81111561316f5761316e613cc8565b5b61317b87828801612f91565b91505092959194509250565b6000806040838503121561319e5761319d613ccd565b5b60006131ac85828601612ed2565b92505060206131bd85828601612f52565b9150509250929050565b600080604083850312156131de576131dd613ccd565b5b60006131ec85828601612ed2565b92505060206131fd85828601613002565b9150509250929050565b6000806020838503121561321e5761321d613ccd565b5b600083013567ffffffffffffffff81111561323c5761323b613cc8565b5b61324885828601612efc565b92509250509250929050565b60006020828403121561326a57613269613ccd565b5b600061327884828501612f52565b91505092915050565b60006020828403121561329757613296613ccd565b5b60006132a584828501612f67565b91505092915050565b6000602082840312156132c4576132c3613ccd565b5b60006132d284828501612f7c565b91505092915050565b6000602082840312156132f1576132f0613ccd565b5b600082013567ffffffffffffffff81111561330f5761330e613cc8565b5b61331b84828501612fbf565b91505092915050565b60006020828403121561333a57613339613ccd565b5b600061334884828501612fed565b91505092915050565b60006020828403121561336757613366613ccd565b5b600061337584828501613002565b91505092915050565b613387816139eb565b82525050565b613396816139fd565b82525050565b60006133a7826138e2565b6133b181856138f8565b93506133c1818560208601613a8e565b6133ca81613cd2565b840191505092915050565b60006133e0826138ed565b6133ea8185613914565b93506133fa818560208601613a8e565b61340381613cd2565b840191505092915050565b6000613419826138ed565b6134238185613925565b9350613433818560208601613a8e565b80840191505092915050565b600061344c602683613914565b915061345782613ce3565b604082019050919050565b600061346f603a83613914565b915061347a82613d32565b604082019050919050565b6000613492601d83613914565b915061349d82613d81565b602082019050919050565b60006134b5601a83613914565b91506134c082613daa565b602082019050919050565b60006134d8602083613914565b91506134e382613dd3565b602082019050919050565b60006134fb601c83613914565b915061350682613dfc565b602082019050919050565b600061351e600083613909565b915061352982613e25565b600082019050919050565b6000613541602683613914565b915061354c82613e28565b604082019050919050565b6000613564601a83613914565b915061356f82613e77565b602082019050919050565b6000613587601f83613914565b915061359282613ea0565b602082019050919050565b60006135aa601f83613914565b91506135b582613ec9565b602082019050919050565b6135c981613a35565b82525050565b6135d881613a6d565b82525050565b6135e781613a63565b82525050565b60006135f9828561340e565b9150613605828461340e565b91508190509392505050565b600061361c82613511565b9150819050919050565b600060208201905061363b600083018461337e565b92915050565b6000608082019050613656600083018761337e565b613663602083018661337e565b61367060408301856135de565b8181036060830152613682818461339c565b905095945050505050565b60006020820190506136a2600083018461338d565b92915050565b600060208201905081810360008301526136c281846133d5565b905092915050565b600060208201905081810360008301526136e38161343f565b9050919050565b6000602082019050818103600083015261370381613462565b9050919050565b6000602082019050818103600083015261372381613485565b9050919050565b60006020820190508181036000830152613743816134a8565b9050919050565b60006020820190508181036000830152613763816134cb565b9050919050565b60006020820190508181036000830152613783816134ee565b9050919050565b600060208201905081810360008301526137a381613534565b9050919050565b600060208201905081810360008301526137c381613557565b9050919050565b600060208201905081810360008301526137e38161357a565b9050919050565b600060208201905081810360008301526138038161359d565b9050919050565b600060208201905061381f60008301846135c0565b92915050565b600060208201905061383a60008301846135cf565b92915050565b600060208201905061385560008301846135de565b92915050565b6000613865613876565b90506138718282613af3565b919050565b6000604051905090565b600067ffffffffffffffff82111561389b5761389a613c85565b5b6138a482613cd2565b9050602081019050919050565b600067ffffffffffffffff8211156138cc576138cb613c85565b5b6138d582613cd2565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061393b82613a63565b915061394683613a63565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561397b5761397a613bc9565b5b828201905092915050565b600061399182613a63565b915061399c83613a63565b9250826139ac576139ab613bf8565b5b828204905092915050565b60006139c282613a63565b91506139cd83613a63565b9250828210156139e0576139df613bc9565b5b828203905092915050565b60006139f682613a43565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000613a7882613a35565b9050919050565b82818337600083830152505050565b60005b83811015613aac578082015181840152602081019050613a91565b83811115613abb576000848401525b50505050565b60006002820490506001821680613ad957607f821691505b60208210811415613aed57613aec613c27565b5b50919050565b613afc82613cd2565b810181811067ffffffffffffffff82111715613b1b57613b1a613c85565b5b80604052505050565b6000613b2f82613a35565b915061ffff821415613b4457613b43613bc9565b5b600182019050919050565b6000613b5a82613a63565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613b8d57613b8c613bc9565b5b600182019050919050565b6000613ba382613a63565b9150613bae83613a63565b925082613bbe57613bbd613bf8565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f50657420636c61696d696e67206973206e6f7420616374697665000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b50565b7f5065742068617320616c7265616479206265656e20636c61696d656420666f7260008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b7f4578636565646564206d617820746f6b656e73206d696e746564000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f546f6b656e20646f6573206e6f742062656c6f6e6720746f2073656e64657200600082015250565b613efb816139eb565b8114613f0657600080fd5b50565b613f12816139fd565b8114613f1d57600080fd5b50565b613f2981613a09565b8114613f3457600080fd5b50565b613f4081613a35565b8114613f4b57600080fd5b50565b613f5781613a63565b8114613f6257600080fd5b5056fea2646970667358221220727fe1707d0e0610647f5dbb1958f95e1b28ca8f70d9354e01295f560dd08d1a64736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000270f0000000000000000000000001e845fba4bb4437558707c5bf005246874736f7b0000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string):
Arg [1] : petClaimActive (bool): True
Arg [2] : maxSupply (uint16): 9999
Arg [3] : siimplexAddress (address): 0x1E845fbA4BB4437558707C5bf005246874736f7B

-----Encoded View---------------
5 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [2] : 000000000000000000000000000000000000000000000000000000000000270f
Arg [3] : 0000000000000000000000001e845fba4bb4437558707c5bf005246874736f7b
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

56117:2497:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27269:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29879:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31382:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56213:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30945:371;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24506:280;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32239:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26092:1105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56294:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58440:169;;;;;;;;;;;;;:::i;:::-;;56250:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32480:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25079:713;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56882:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29688:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27705:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45442:103;;;;;;;;;;;;;:::i;:::-;;56995:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44791:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30048:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31658:279;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56331:44;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32736:342;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30223:318;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57120:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32008:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57894:446;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45700:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27269:372;27371:4;27423:25;27408:40;;;:11;:40;;;;:105;;;;27480:33;27465:48;;;:11;:48;;;;27408:105;:172;;;;27545:35;27530:50;;;:11;:50;;;;27408:172;:225;;;;27597:36;27621:11;27597:23;:36::i;:::-;27408:225;27388:245;;27269:372;;;:::o;29879:100::-;29933:13;29966:5;29959:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29879:100;:::o;31382:204::-;31450:7;31475:16;31483:7;31475;:16::i;:::-;31470:64;;31500:34;;;;;;;;;;;;;;31470:64;31554:15;:24;31570:7;31554:24;;;;;;;;;;;;;;;;;;;;;31547:31;;31382:204;;;:::o;56213:28::-;;;;;;;;;;;;;:::o;30945:371::-;31018:13;31034:24;31050:7;31034:15;:24::i;:::-;31018:40;;31079:5;31073:11;;:2;:11;;;31069:48;;;31093:24;;;;;;;;;;;;;;31069:48;31150:5;31134:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;31160:37;31177:5;31184:12;:10;:12::i;:::-;31160:16;:37::i;:::-;31159:38;31134:63;31130:138;;;31221:35;;;;;;;;;;;;;;31130:138;31280:28;31289:2;31293:7;31302:5;31280:8;:28::i;:::-;31007:309;30945:371;;:::o;24506:280::-;24559:7;24751:12;;;;;;;;;;;24735:13;;;;;;;;;;:28;24728:35;;;;24506:280;:::o;32239:170::-;32373:28;32383:4;32389:2;32393:7;32373:9;:28::i;:::-;32239:170;;;:::o;26092:1105::-;26181:7;26214:16;26224:5;26214:9;:16::i;:::-;26205:5;:25;26201:61;;26239:23;;;;;;;;;;;;;;26201:61;26273:22;26298:13;;;;;;;;;;;26273:38;;;;26322:19;26352:25;26553:9;26548:557;26568:14;26564:1;:18;26548:557;;;26608:31;26642:11;:14;26654:1;26642:14;;;;;;;;;;;26608:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26679:9;:16;;;26675:73;;;26720:8;;;26675:73;26796:1;26770:28;;:9;:14;;;:28;;;26766:111;;26843:9;:14;;;26823:34;;26766:111;26920:5;26899:26;;:17;:26;;;26895:195;;;26969:5;26954:11;:20;26950:85;;;27010:1;27003:8;;;;;;;;;26950:85;27057:13;;;;;;;26895:195;26589:516;26548:557;26584:3;;;;;;;26548:557;;;;27181:8;;;26092:1105;;;;;:::o;56294:24::-;;;;;;;;;;;;;:::o;58440:169::-;45022:12;:10;:12::i;:::-;45011:23;;:7;:5;:7::i;:::-;:23;;;45003:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;48071:1:::1;48669:7;;:19;;48661:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;48071:1;48802:7;:18;;;;58501:15:::2;58519:21;58501:39;;58551:50;58389:42;58593:7;58551:17;:50::i;:::-;58490:119;48027:1:::1;48981:7;:22;;;;58440:169::o:0;56250:31::-;;;;;;;;;;;;;:::o;32480:185::-;32618:39;32635:4;32641:2;32645:7;32618:39;;;;;;;;;;;;:16;:39::i;:::-;32480:185;;;:::o;25079:713::-;25146:7;25166:22;25191:13;;;;;;;;;;25166:38;;;;25215:19;25410:9;25405:328;25425:14;25421:1;:18;25405:328;;;25465:31;25499:11;:14;25511:1;25499:14;;;;;;;;;;;25465:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25537:9;:16;;;25532:186;;25597:5;25582:11;:20;25578:85;;;25638:1;25631:8;;;;;;;;25578:85;25685:13;;;;;;;25532:186;25446:287;25441:3;;;;;;;25405:328;;;;25761:23;;;;;;;;;;;;;;25079:713;;;;:::o;56882:105::-;45022:12;:10;:12::i;:::-;45011:23;;:7;:5;:7::i;:::-;:23;;;45003:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;56969:10:::1;56958:8;:21;;;;;;;;;;;;:::i;:::-;;56882:105:::0;:::o;29688:124::-;29752:7;29779:20;29791:7;29779:11;:20::i;:::-;:25;;;29772:32;;29688:124;;;:::o;27705:206::-;27769:7;27810:1;27793:19;;:5;:19;;;27789:60;;;27821:28;;;;;;;;;;;;;;27789:60;27875:12;:19;27888:5;27875:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;27867:36;;27860:43;;27705:206;;;:::o;45442:103::-;45022:12;:10;:12::i;:::-;45011:23;;:7;:5;:7::i;:::-;:23;;;45003:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45507:30:::1;45534:1;45507:18;:30::i;:::-;45442:103::o:0;56995:119::-;45022:12;:10;:12::i;:::-;45011:23;;:7;:5;:7::i;:::-;:23;;;45003:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57092:14:::1;57073:16;;:33;;;;;;;;;;;;;;;;;;56995:119:::0;:::o;44791:87::-;44837:7;44864:6;;;;;;;;;;;44857:13;;44791:87;:::o;30048:104::-;30104:13;30137:7;30130:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30048:104;:::o;31658:279::-;31761:12;:10;:12::i;:::-;31749:24;;:8;:24;;;31745:54;;;31782:17;;;;;;;;;;;;;;31745:54;31857:8;31812:18;:32;31831:12;:10;:12::i;:::-;31812:32;;;;;;;;;;;;;;;:42;31845:8;31812:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;31910:8;31881:48;;31896:12;:10;:12::i;:::-;31881:48;;;31920:8;31881:48;;;;;;:::i;:::-;;;;;;;;31658:279;;:::o;56331:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;32736:342::-;32903:28;32913:4;32919:2;32923:7;32903:9;:28::i;:::-;32947:48;32970:4;32976:2;32980:7;32989:5;32947:22;:48::i;:::-;32942:129;;33019:40;;;;;;;;;;;;;;32942:129;32736:342;;;;:::o;30223:318::-;30296:13;30327:16;30335:7;30327;:16::i;:::-;30322:59;;30352:29;;;;;;;;;;;;;;30322:59;30394:21;30418:10;:8;:10::i;:::-;30394:34;;30471:1;30452:7;30446:21;:26;;:87;;;;;;;;;;;;;;;;;30499:7;30508:18;:7;:16;:18::i;:::-;30482:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30446:87;30439:94;;;30223:318;;;:::o;57120:109::-;57177:4;57201:13;:20;57215:5;57201:20;;;;;;;;;;;;;;;;;;;;;;;;;57194:27;;57120:109;;;:::o;32008:164::-;32105:4;32129:18;:25;32148:5;32129:25;;;;;;;;;;;;;;;:35;32155:8;32129:35;;;;;;;;;;;;;;;;;;;;;;;;;32122:42;;32008:164;;;;:::o;57894:446::-;57980:17;;:24;;57314:1;57300:11;:15;57292:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;57398:10;;;;;;;;;;;57367:41;;57383:11;57367:13;;;;;;;;;;:27;;;;;;:::i;:::-;:41;;57359:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;58040:17:::1;;57563:8;57558:304;57581:17;;:24;;57577:1;:28;;;57558:304;;;57694:10;57635:69;;57643:16;;;;;;;;;;;57635:33;;;57669:17;;57687:1;57669:20;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;57635:55;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:69;;;57627:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;57802:5;57763:44;;:13;:35;57777:17;;57795:1;57777:20;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;57763:35;;;;;;;;;;;;;;;;;;;;;;;;;:44;;;57755:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;57607:3;;;;;:::i;:::-;;;;57558:304;;;;58078:16:::2;;;;;;;;;;;58070:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;58138:47;58148:10;58160:17;;:24;;58138:9;:47::i;:::-;58211:8;58206:127;58229:17;;:24;;58225:1;:28;;;58206:127;;;58313:4;58275:13;:35;58289:17;;58307:1;58289:20;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;58275:35;;;;;;;;;;;;;;;;:42;;;;;;;;;;;;;;;;;;58255:3;;;;;:::i;:::-;;;;58206:127;;;;57450:1:::1;;57894:446:::0;;;:::o;45700:201::-;45022:12;:10;:12::i;:::-;45011:23;;:7;:5;:7::i;:::-;:23;;;45003:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45809:1:::1;45789:22;;:8;:22;;;;45781:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;45865:28;45884:8;45865:18;:28::i;:::-;45700:201:::0;:::o;21080:157::-;21165:4;21204:25;21189:40;;;:11;:40;;;;21182:47;;21080:157;;;:::o;33333:144::-;33390:4;33424:13;;;;;;;;;;;33414:23;;:7;:23;:55;;;;;33442:11;:20;33454:7;33442:20;;;;;;;;;;;:27;;;;;;;;;;;;33441:28;33414:55;33407:62;;33333:144;;;:::o;17879:98::-;17932:7;17959:10;17952:17;;17879:98;:::o;40549:196::-;40691:2;40664:15;:24;40680:7;40664:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40729:7;40725:2;40709:28;;40718:5;40709:28;;;;;;;;;;;;40549:196;;;:::o;36050:2112::-;36165:35;36203:20;36215:7;36203:11;:20::i;:::-;36165:58;;36236:22;36278:13;:18;;;36262:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;36313:50;36330:13;:18;;;36350:12;:10;:12::i;:::-;36313:16;:50::i;:::-;36262:101;:154;;;;36404:12;:10;:12::i;:::-;36380:36;;:20;36392:7;36380:11;:20::i;:::-;:36;;;36262:154;36236:181;;36435:17;36430:66;;36461:35;;;;;;;;;;;;;;36430:66;36533:4;36511:26;;:13;:18;;;:26;;;36507:67;;36546:28;;;;;;;;;;;;;;36507:67;36603:1;36589:16;;:2;:16;;;36585:52;;;36614:23;;;;;;;;;;;;;;36585:52;36650:43;36672:4;36678:2;36682:7;36691:1;36650:21;:43::i;:::-;36758:49;36775:1;36779:7;36788:13;:18;;;36758:8;:49::i;:::-;37133:1;37103:12;:18;37116:4;37103:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37177:1;37149:12;:16;37162:2;37149:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37223:2;37195:11;:20;37207:7;37195:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;37285:15;37240:11;:20;37252:7;37240:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;37553:19;37585:1;37575:7;:11;37553:33;;37646:1;37605:43;;:11;:24;37617:11;37605:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;37601:445;;;37830:13;;;;;;;;;;37816:27;;:11;:27;37812:219;;;37900:13;:18;;;37868:11;:24;37880:11;37868:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;37983:13;:28;;;37941:11;:24;37953:11;37941:24;;;;;;;;;;;:39;;;:70;;;;;;;;;;;;;;;;;;37812:219;37601:445;37078:979;38093:7;38089:2;38074:27;;38083:4;38074:27;;;;;;;;;;;;38112:42;38133:4;38139:2;38143:7;38152:1;38112:20;:42::i;:::-;36154:2008;;36050:2112;;;:::o;11191:317::-;11306:6;11281:21;:31;;11273:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11360:12;11378:9;:14;;11400:6;11378:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11359:52;;;11430:7;11422:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;11262:246;11191:317;;:::o;28543:1083::-;28604:21;;:::i;:::-;28638:12;28653:7;28638:22;;28709:13;;;;;;;;;;28702:20;;:4;:20;28698:861;;;28743:31;28777:11;:17;28789:4;28777:17;;;;;;;;;;;28743:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28818:9;:16;;;28813:731;;28889:1;28863:28;;:9;:14;;;:28;;;28859:101;;28927:9;28920:16;;;;;;28859:101;29264:261;29271:4;29264:261;;;29304:6;;;;;;;;29349:11;:17;29361:4;29349:17;;;;;;;;;;;29337:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29423:1;29397:28;;:9;:14;;;:28;;;29393:109;;29465:9;29458:16;;;;;;29393:109;29264:261;;;28813:731;28724:835;28698:861;29587:31;;;;;;;;;;;;;;28543:1083;;;;:::o;46061:191::-;46135:16;46154:6;;;;;;;;;;;46135:25;;46180:8;46171:6;;:17;;;;;;;;;;;;;;;;;;46235:8;46204:40;;46225:8;46204:40;;;;;;;;;;;;46124:128;46061:191;:::o;41310:790::-;41465:4;41486:15;:2;:13;;;:15::i;:::-;41482:611;;;41538:2;41522:36;;;41559:12;:10;:12::i;:::-;41573:4;41579:7;41588:5;41522:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;41518:520;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41785:1;41768:6;:13;:18;41764:259;;;41818:40;;;;;;;;;;;;;;41764:259;41973:6;41967:13;41958:6;41954:2;41950:15;41943:38;41518:520;41655:45;;;41645:55;;;:6;:55;;;;41638:62;;;;;41482:611;42077:4;42070:11;;41310:790;;;;;;;:::o;56765:109::-;56825:13;56858:8;56851:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56765:109;:::o;18458:723::-;18514:13;18744:1;18735:5;:10;18731:53;;;18762:10;;;;;;;;;;;;;;;;;;;;;18731:53;18794:12;18809:5;18794:20;;18825:14;18850:78;18865:1;18857:4;:9;18850:78;;18883:8;;;;;:::i;:::-;;;;18914:2;18906:10;;;;;:::i;:::-;;;18850:78;;;18938:19;18970:6;18960:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18938:39;;18988:154;19004:1;18995:5;:10;18988:154;;19032:1;19022:11;;;;;:::i;:::-;;;19099:2;19091:5;:10;;;;:::i;:::-;19078:2;:24;;;;:::i;:::-;19065:39;;19048:6;19055;19048:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19128:2;19119:11;;;;;:::i;:::-;;;18988:154;;;19166:6;19152:21;;;;;18458:723;;;;:::o;33485:104::-;33554:27;33564:2;33568:8;33554:27;;;;;;;;;;;;:9;:27::i;:::-;33485:104;;:::o;42748:159::-;;;;;:::o;43566:158::-;;;;;:::o;9930:326::-;9990:4;10247:1;10225:7;:19;;;:23;10218:30;;9930:326;;;:::o;33952:163::-;34075:32;34081:2;34085:8;34095:5;34102:4;34075:5;:32::i;:::-;33952:163;;;:::o;34374:1422::-;34513:20;34536:13;;;;;;;;;;;34513:36;;;;34578:1;34564:16;;:2;:16;;;34560:48;;;34589:19;;;;;;;;;;;;;;34560:48;34635:1;34623:8;:13;34619:44;;;34645:18;;;;;;;;;;;;;;34619:44;34676:61;34706:1;34710:2;34714:12;34728:8;34676:21;:61::i;:::-;35050:8;35015:12;:16;35028:2;35015:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35114:8;35074:12;:16;35087:2;35074:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35173:2;35140:11;:25;35152:12;35140:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;35240:15;35190:11;:25;35202:12;35190:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;35273:20;35296:12;35273:35;;35330:9;35325:328;35345:8;35341:1;:12;35325:328;;;35409:12;35405:2;35384:38;;35401:1;35384:38;;;;;;;;;;;;35445:4;:68;;;;;35454:59;35485:1;35489:2;35493:12;35507:5;35454:22;:59::i;:::-;35453:60;35445:68;35441:164;;;35545:40;;;;;;;;;;;;;;35441:164;35623:14;;;;;;;35355:3;;;;;;;35325:328;;;;35693:12;35669:13;;:37;;;;;;;;;;;;;;;;;;34990:728;35728:60;35757:1;35761:2;35765:12;35779:8;35728:20;:60::i;:::-;34502:1294;34374:1422;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1151:567::-;1223:8;1233:6;1283:3;1276:4;1268:6;1264:17;1260:27;1250:122;;1291:79;;:::i;:::-;1250:122;1404:6;1391:20;1381:30;;1434:18;1426:6;1423:30;1420:117;;;1456:79;;:::i;:::-;1420:117;1570:4;1562:6;1558:17;1546:29;;1624:3;1616:4;1608:6;1604:17;1594:8;1590:32;1587:41;1584:128;;;1631:79;;:::i;:::-;1584:128;1151:567;;;;;:::o;1724:133::-;1767:5;1805:6;1792:20;1783:29;;1821:30;1845:5;1821:30;:::i;:::-;1724:133;;;;:::o;1863:137::-;1908:5;1946:6;1933:20;1924:29;;1962:32;1988:5;1962:32;:::i;:::-;1863:137;;;;:::o;2006:141::-;2062:5;2093:6;2087:13;2078:22;;2109:32;2135:5;2109:32;:::i;:::-;2006:141;;;;:::o;2166:338::-;2221:5;2270:3;2263:4;2255:6;2251:17;2247:27;2237:122;;2278:79;;:::i;:::-;2237:122;2395:6;2382:20;2420:78;2494:3;2486:6;2479:4;2471:6;2467:17;2420:78;:::i;:::-;2411:87;;2227:277;2166:338;;;;:::o;2524:340::-;2580:5;2629:3;2622:4;2614:6;2610:17;2606:27;2596:122;;2637:79;;:::i;:::-;2596:122;2754:6;2741:20;2779:79;2854:3;2846:6;2839:4;2831:6;2827:17;2779:79;:::i;:::-;2770:88;;2586:278;2524:340;;;;:::o;2870:137::-;2915:5;2953:6;2940:20;2931:29;;2969:32;2995:5;2969:32;:::i;:::-;2870:137;;;;:::o;3013:139::-;3059:5;3097:6;3084:20;3075:29;;3113:33;3140:5;3113:33;:::i;:::-;3013:139;;;;:::o;3158:329::-;3217:6;3266:2;3254:9;3245:7;3241:23;3237:32;3234:119;;;3272:79;;:::i;:::-;3234:119;3392:1;3417:53;3462:7;3453:6;3442:9;3438:22;3417:53;:::i;:::-;3407:63;;3363:117;3158:329;;;;:::o;3493:351::-;3563:6;3612:2;3600:9;3591:7;3587:23;3583:32;3580:119;;;3618:79;;:::i;:::-;3580:119;3738:1;3763:64;3819:7;3810:6;3799:9;3795:22;3763:64;:::i;:::-;3753:74;;3709:128;3493:351;;;;:::o;3850:474::-;3918:6;3926;3975:2;3963:9;3954:7;3950:23;3946:32;3943:119;;;3981:79;;:::i;:::-;3943:119;4101:1;4126:53;4171:7;4162:6;4151:9;4147:22;4126:53;:::i;:::-;4116:63;;4072:117;4228:2;4254:53;4299:7;4290:6;4279:9;4275:22;4254:53;:::i;:::-;4244:63;;4199:118;3850:474;;;;;:::o;4330:619::-;4407:6;4415;4423;4472:2;4460:9;4451:7;4447:23;4443:32;4440:119;;;4478:79;;:::i;:::-;4440:119;4598:1;4623:53;4668:7;4659:6;4648:9;4644:22;4623:53;:::i;:::-;4613:63;;4569:117;4725:2;4751:53;4796:7;4787:6;4776:9;4772:22;4751:53;:::i;:::-;4741:63;;4696:118;4853:2;4879:53;4924:7;4915:6;4904:9;4900:22;4879:53;:::i;:::-;4869:63;;4824:118;4330:619;;;;;:::o;4955:943::-;5050:6;5058;5066;5074;5123:3;5111:9;5102:7;5098:23;5094:33;5091:120;;;5130:79;;:::i;:::-;5091:120;5250:1;5275:53;5320:7;5311:6;5300:9;5296:22;5275:53;:::i;:::-;5265:63;;5221:117;5377:2;5403:53;5448:7;5439:6;5428:9;5424:22;5403:53;:::i;:::-;5393:63;;5348:118;5505:2;5531:53;5576:7;5567:6;5556:9;5552:22;5531:53;:::i;:::-;5521:63;;5476:118;5661:2;5650:9;5646:18;5633:32;5692:18;5684:6;5681:30;5678:117;;;5714:79;;:::i;:::-;5678:117;5819:62;5873:7;5864:6;5853:9;5849:22;5819:62;:::i;:::-;5809:72;;5604:287;4955:943;;;;;;;:::o;5904:468::-;5969:6;5977;6026:2;6014:9;6005:7;6001:23;5997:32;5994:119;;;6032:79;;:::i;:::-;5994:119;6152:1;6177:53;6222:7;6213:6;6202:9;6198:22;6177:53;:::i;:::-;6167:63;;6123:117;6279:2;6305:50;6347:7;6338:6;6327:9;6323:22;6305:50;:::i;:::-;6295:60;;6250:115;5904:468;;;;;:::o;6378:474::-;6446:6;6454;6503:2;6491:9;6482:7;6478:23;6474:32;6471:119;;;6509:79;;:::i;:::-;6471:119;6629:1;6654:53;6699:7;6690:6;6679:9;6675:22;6654:53;:::i;:::-;6644:63;;6600:117;6756:2;6782:53;6827:7;6818:6;6807:9;6803:22;6782:53;:::i;:::-;6772:63;;6727:118;6378:474;;;;;:::o;6858:557::-;6943:6;6951;7000:2;6988:9;6979:7;6975:23;6971:32;6968:119;;;7006:79;;:::i;:::-;6968:119;7154:1;7143:9;7139:17;7126:31;7184:18;7176:6;7173:30;7170:117;;;7206:79;;:::i;:::-;7170:117;7319:79;7390:7;7381:6;7370:9;7366:22;7319:79;:::i;:::-;7301:97;;;;7097:311;6858:557;;;;;:::o;7421:323::-;7477:6;7526:2;7514:9;7505:7;7501:23;7497:32;7494:119;;;7532:79;;:::i;:::-;7494:119;7652:1;7677:50;7719:7;7710:6;7699:9;7695:22;7677:50;:::i;:::-;7667:60;;7623:114;7421:323;;;;:::o;7750:327::-;7808:6;7857:2;7845:9;7836:7;7832:23;7828:32;7825:119;;;7863:79;;:::i;:::-;7825:119;7983:1;8008:52;8052:7;8043:6;8032:9;8028:22;8008:52;:::i;:::-;7998:62;;7954:116;7750:327;;;;:::o;8083:349::-;8152:6;8201:2;8189:9;8180:7;8176:23;8172:32;8169:119;;;8207:79;;:::i;:::-;8169:119;8327:1;8352:63;8407:7;8398:6;8387:9;8383:22;8352:63;:::i;:::-;8342:73;;8298:127;8083:349;;;;:::o;8438:509::-;8507:6;8556:2;8544:9;8535:7;8531:23;8527:32;8524:119;;;8562:79;;:::i;:::-;8524:119;8710:1;8699:9;8695:17;8682:31;8740:18;8732:6;8729:30;8726:117;;;8762:79;;:::i;:::-;8726:117;8867:63;8922:7;8913:6;8902:9;8898:22;8867:63;:::i;:::-;8857:73;;8653:287;8438:509;;;;:::o;8953:327::-;9011:6;9060:2;9048:9;9039:7;9035:23;9031:32;9028:119;;;9066:79;;:::i;:::-;9028:119;9186:1;9211:52;9255:7;9246:6;9235:9;9231:22;9211:52;:::i;:::-;9201:62;;9157:116;8953:327;;;;:::o;9286:329::-;9345:6;9394:2;9382:9;9373:7;9369:23;9365:32;9362:119;;;9400:79;;:::i;:::-;9362:119;9520:1;9545:53;9590:7;9581:6;9570:9;9566:22;9545:53;:::i;:::-;9535:63;;9491:117;9286:329;;;;:::o;9621:118::-;9708:24;9726:5;9708:24;:::i;:::-;9703:3;9696:37;9621:118;;:::o;9745:109::-;9826:21;9841:5;9826:21;:::i;:::-;9821:3;9814:34;9745:109;;:::o;9860:360::-;9946:3;9974:38;10006:5;9974:38;:::i;:::-;10028:70;10091:6;10086:3;10028:70;:::i;:::-;10021:77;;10107:52;10152:6;10147:3;10140:4;10133:5;10129:16;10107:52;:::i;:::-;10184:29;10206:6;10184:29;:::i;:::-;10179:3;10175:39;10168:46;;9950:270;9860:360;;;;:::o;10226:364::-;10314:3;10342:39;10375:5;10342:39;:::i;:::-;10397:71;10461:6;10456:3;10397:71;:::i;:::-;10390:78;;10477:52;10522:6;10517:3;10510:4;10503:5;10499:16;10477:52;:::i;:::-;10554:29;10576:6;10554:29;:::i;:::-;10549:3;10545:39;10538:46;;10318:272;10226:364;;;;:::o;10596:377::-;10702:3;10730:39;10763:5;10730:39;:::i;:::-;10785:89;10867:6;10862:3;10785:89;:::i;:::-;10778:96;;10883:52;10928:6;10923:3;10916:4;10909:5;10905:16;10883:52;:::i;:::-;10960:6;10955:3;10951:16;10944:23;;10706:267;10596:377;;;;:::o;10979:366::-;11121:3;11142:67;11206:2;11201:3;11142:67;:::i;:::-;11135:74;;11218:93;11307:3;11218:93;:::i;:::-;11336:2;11331:3;11327:12;11320:19;;10979:366;;;:::o;11351:::-;11493:3;11514:67;11578:2;11573:3;11514:67;:::i;:::-;11507:74;;11590:93;11679:3;11590:93;:::i;:::-;11708:2;11703:3;11699:12;11692:19;;11351:366;;;:::o;11723:::-;11865:3;11886:67;11950:2;11945:3;11886:67;:::i;:::-;11879:74;;11962:93;12051:3;11962:93;:::i;:::-;12080:2;12075:3;12071:12;12064:19;;11723:366;;;:::o;12095:::-;12237:3;12258:67;12322:2;12317:3;12258:67;:::i;:::-;12251:74;;12334:93;12423:3;12334:93;:::i;:::-;12452:2;12447:3;12443:12;12436:19;;12095:366;;;:::o;12467:::-;12609:3;12630:67;12694:2;12689:3;12630:67;:::i;:::-;12623:74;;12706:93;12795:3;12706:93;:::i;:::-;12824:2;12819:3;12815:12;12808:19;;12467:366;;;:::o;12839:::-;12981:3;13002:67;13066:2;13061:3;13002:67;:::i;:::-;12995:74;;13078:93;13167:3;13078:93;:::i;:::-;13196:2;13191:3;13187:12;13180:19;;12839:366;;;:::o;13211:398::-;13370:3;13391:83;13472:1;13467:3;13391:83;:::i;:::-;13384:90;;13483:93;13572:3;13483:93;:::i;:::-;13601:1;13596:3;13592:11;13585:18;;13211:398;;;:::o;13615:366::-;13757:3;13778:67;13842:2;13837:3;13778:67;:::i;:::-;13771:74;;13854:93;13943:3;13854:93;:::i;:::-;13972:2;13967:3;13963:12;13956:19;;13615:366;;;:::o;13987:::-;14129:3;14150:67;14214:2;14209:3;14150:67;:::i;:::-;14143:74;;14226:93;14315:3;14226:93;:::i;:::-;14344:2;14339:3;14335:12;14328:19;;13987:366;;;:::o;14359:::-;14501:3;14522:67;14586:2;14581:3;14522:67;:::i;:::-;14515:74;;14598:93;14687:3;14598:93;:::i;:::-;14716:2;14711:3;14707:12;14700:19;;14359:366;;;:::o;14731:::-;14873:3;14894:67;14958:2;14953:3;14894:67;:::i;:::-;14887:74;;14970:93;15059:3;14970:93;:::i;:::-;15088:2;15083:3;15079:12;15072:19;;14731:366;;;:::o;15103:115::-;15188:23;15205:5;15188:23;:::i;:::-;15183:3;15176:36;15103:115;;:::o;15224:129::-;15310:36;15340:5;15310:36;:::i;:::-;15305:3;15298:49;15224:129;;:::o;15359:118::-;15446:24;15464:5;15446:24;:::i;:::-;15441:3;15434:37;15359:118;;:::o;15483:435::-;15663:3;15685:95;15776:3;15767:6;15685:95;:::i;:::-;15678:102;;15797:95;15888:3;15879:6;15797:95;:::i;:::-;15790:102;;15909:3;15902:10;;15483:435;;;;;:::o;15924:379::-;16108:3;16130:147;16273:3;16130:147;:::i;:::-;16123:154;;16294:3;16287:10;;15924:379;;;:::o;16309:222::-;16402:4;16440:2;16429:9;16425:18;16417:26;;16453:71;16521:1;16510:9;16506:17;16497:6;16453:71;:::i;:::-;16309:222;;;;:::o;16537:640::-;16732:4;16770:3;16759:9;16755:19;16747:27;;16784:71;16852:1;16841:9;16837:17;16828:6;16784:71;:::i;:::-;16865:72;16933:2;16922:9;16918:18;16909:6;16865:72;:::i;:::-;16947;17015:2;17004:9;17000:18;16991:6;16947:72;:::i;:::-;17066:9;17060:4;17056:20;17051:2;17040:9;17036:18;17029:48;17094:76;17165:4;17156:6;17094:76;:::i;:::-;17086:84;;16537:640;;;;;;;:::o;17183:210::-;17270:4;17308:2;17297:9;17293:18;17285:26;;17321:65;17383:1;17372:9;17368:17;17359:6;17321:65;:::i;:::-;17183:210;;;;:::o;17399:313::-;17512:4;17550:2;17539:9;17535:18;17527:26;;17599:9;17593:4;17589:20;17585:1;17574:9;17570:17;17563:47;17627:78;17700:4;17691:6;17627:78;:::i;:::-;17619:86;;17399:313;;;;:::o;17718:419::-;17884:4;17922:2;17911:9;17907:18;17899:26;;17971:9;17965:4;17961:20;17957:1;17946:9;17942:17;17935:47;17999:131;18125:4;17999:131;:::i;:::-;17991:139;;17718:419;;;:::o;18143:::-;18309:4;18347:2;18336:9;18332:18;18324:26;;18396:9;18390:4;18386:20;18382:1;18371:9;18367:17;18360:47;18424:131;18550:4;18424:131;:::i;:::-;18416:139;;18143:419;;;:::o;18568:::-;18734:4;18772:2;18761:9;18757:18;18749:26;;18821:9;18815:4;18811:20;18807:1;18796:9;18792:17;18785:47;18849:131;18975:4;18849:131;:::i;:::-;18841:139;;18568:419;;;:::o;18993:::-;19159:4;19197:2;19186:9;19182:18;19174:26;;19246:9;19240:4;19236:20;19232:1;19221:9;19217:17;19210:47;19274:131;19400:4;19274:131;:::i;:::-;19266:139;;18993:419;;;:::o;19418:::-;19584:4;19622:2;19611:9;19607:18;19599:26;;19671:9;19665:4;19661:20;19657:1;19646:9;19642:17;19635:47;19699:131;19825:4;19699:131;:::i;:::-;19691:139;;19418:419;;;:::o;19843:::-;20009:4;20047:2;20036:9;20032:18;20024:26;;20096:9;20090:4;20086:20;20082:1;20071:9;20067:17;20060:47;20124:131;20250:4;20124:131;:::i;:::-;20116:139;;19843:419;;;:::o;20268:::-;20434:4;20472:2;20461:9;20457:18;20449:26;;20521:9;20515:4;20511:20;20507:1;20496:9;20492:17;20485:47;20549:131;20675:4;20549:131;:::i;:::-;20541:139;;20268:419;;;:::o;20693:::-;20859:4;20897:2;20886:9;20882:18;20874:26;;20946:9;20940:4;20936:20;20932:1;20921:9;20917:17;20910:47;20974:131;21100:4;20974:131;:::i;:::-;20966:139;;20693:419;;;:::o;21118:::-;21284:4;21322:2;21311:9;21307:18;21299:26;;21371:9;21365:4;21361:20;21357:1;21346:9;21342:17;21335:47;21399:131;21525:4;21399:131;:::i;:::-;21391:139;;21118:419;;;:::o;21543:::-;21709:4;21747:2;21736:9;21732:18;21724:26;;21796:9;21790:4;21786:20;21782:1;21771:9;21767:17;21760:47;21824:131;21950:4;21824:131;:::i;:::-;21816:139;;21543:419;;;:::o;21968:218::-;22059:4;22097:2;22086:9;22082:18;22074:26;;22110:69;22176:1;22165:9;22161:17;22152:6;22110:69;:::i;:::-;21968:218;;;;:::o;22192:220::-;22284:4;22322:2;22311:9;22307:18;22299:26;;22335:70;22402:1;22391:9;22387:17;22378:6;22335:70;:::i;:::-;22192:220;;;;:::o;22418:222::-;22511:4;22549:2;22538:9;22534:18;22526:26;;22562:71;22630:1;22619:9;22615:17;22606:6;22562:71;:::i;:::-;22418:222;;;;:::o;22646:129::-;22680:6;22707:20;;:::i;:::-;22697:30;;22736:33;22764:4;22756:6;22736:33;:::i;:::-;22646:129;;;:::o;22781:75::-;22814:6;22847:2;22841:9;22831:19;;22781:75;:::o;22862:307::-;22923:4;23013:18;23005:6;23002:30;22999:56;;;23035:18;;:::i;:::-;22999:56;23073:29;23095:6;23073:29;:::i;:::-;23065:37;;23157:4;23151;23147:15;23139:23;;22862:307;;;:::o;23175:308::-;23237:4;23327:18;23319:6;23316:30;23313:56;;;23349:18;;:::i;:::-;23313:56;23387:29;23409:6;23387:29;:::i;:::-;23379:37;;23471:4;23465;23461:15;23453:23;;23175:308;;;:::o;23489:98::-;23540:6;23574:5;23568:12;23558:22;;23489:98;;;:::o;23593:99::-;23645:6;23679:5;23673:12;23663:22;;23593:99;;;:::o;23698:168::-;23781:11;23815:6;23810:3;23803:19;23855:4;23850:3;23846:14;23831:29;;23698:168;;;;:::o;23872:147::-;23973:11;24010:3;23995:18;;23872:147;;;;:::o;24025:169::-;24109:11;24143:6;24138:3;24131:19;24183:4;24178:3;24174:14;24159:29;;24025:169;;;;:::o;24200:148::-;24302:11;24339:3;24324:18;;24200:148;;;;:::o;24354:305::-;24394:3;24413:20;24431:1;24413:20;:::i;:::-;24408:25;;24447:20;24465:1;24447:20;:::i;:::-;24442:25;;24601:1;24533:66;24529:74;24526:1;24523:81;24520:107;;;24607:18;;:::i;:::-;24520:107;24651:1;24648;24644:9;24637:16;;24354:305;;;;:::o;24665:185::-;24705:1;24722:20;24740:1;24722:20;:::i;:::-;24717:25;;24756:20;24774:1;24756:20;:::i;:::-;24751:25;;24795:1;24785:35;;24800:18;;:::i;:::-;24785:35;24842:1;24839;24835:9;24830:14;;24665:185;;;;:::o;24856:191::-;24896:4;24916:20;24934:1;24916:20;:::i;:::-;24911:25;;24950:20;24968:1;24950:20;:::i;:::-;24945:25;;24989:1;24986;24983:8;24980:34;;;24994:18;;:::i;:::-;24980:34;25039:1;25036;25032:9;25024:17;;24856:191;;;;:::o;25053:96::-;25090:7;25119:24;25137:5;25119:24;:::i;:::-;25108:35;;25053:96;;;:::o;25155:90::-;25189:7;25232:5;25225:13;25218:21;25207:32;;25155:90;;;:::o;25251:149::-;25287:7;25327:66;25320:5;25316:78;25305:89;;25251:149;;;:::o;25406:89::-;25442:7;25482:6;25475:5;25471:18;25460:29;;25406:89;;;:::o;25501:126::-;25538:7;25578:42;25571:5;25567:54;25556:65;;25501:126;;;:::o;25633:77::-;25670:7;25699:5;25688:16;;25633:77;;;:::o;25716:111::-;25765:9;25798:23;25815:5;25798:23;:::i;:::-;25785:36;;25716:111;;;:::o;25833:154::-;25917:6;25912:3;25907;25894:30;25979:1;25970:6;25965:3;25961:16;25954:27;25833:154;;;:::o;25993:307::-;26061:1;26071:113;26085:6;26082:1;26079:13;26071:113;;;26170:1;26165:3;26161:11;26155:18;26151:1;26146:3;26142:11;26135:39;26107:2;26104:1;26100:10;26095:15;;26071:113;;;26202:6;26199:1;26196:13;26193:101;;;26282:1;26273:6;26268:3;26264:16;26257:27;26193:101;26042:258;25993:307;;;:::o;26306:320::-;26350:6;26387:1;26381:4;26377:12;26367:22;;26434:1;26428:4;26424:12;26455:18;26445:81;;26511:4;26503:6;26499:17;26489:27;;26445:81;26573:2;26565:6;26562:14;26542:18;26539:38;26536:84;;;26592:18;;:::i;:::-;26536:84;26357:269;26306:320;;;:::o;26632:281::-;26715:27;26737:4;26715:27;:::i;:::-;26707:6;26703:40;26845:6;26833:10;26830:22;26809:18;26797:10;26794:34;26791:62;26788:88;;;26856:18;;:::i;:::-;26788:88;26896:10;26892:2;26885:22;26675:238;26632:281;;:::o;26919:171::-;26957:3;26980:23;26997:5;26980:23;:::i;:::-;26971:32;;27025:6;27018:5;27015:17;27012:43;;;27035:18;;:::i;:::-;27012:43;27082:1;27075:5;27071:13;27064:20;;26919:171;;;:::o;27096:233::-;27135:3;27158:24;27176:5;27158:24;:::i;:::-;27149:33;;27204:66;27197:5;27194:77;27191:103;;;27274:18;;:::i;:::-;27191:103;27321:1;27314:5;27310:13;27303:20;;27096:233;;;:::o;27335:176::-;27367:1;27384:20;27402:1;27384:20;:::i;:::-;27379:25;;27418:20;27436:1;27418:20;:::i;:::-;27413:25;;27457:1;27447:35;;27462:18;;:::i;:::-;27447:35;27503:1;27500;27496:9;27491:14;;27335:176;;;;:::o;27517:180::-;27565:77;27562:1;27555:88;27662:4;27659:1;27652:15;27686:4;27683:1;27676:15;27703:180;27751:77;27748:1;27741:88;27848:4;27845:1;27838:15;27872:4;27869:1;27862:15;27889:180;27937:77;27934:1;27927:88;28034:4;28031:1;28024:15;28058:4;28055:1;28048:15;28075:180;28123:77;28120:1;28113:88;28220:4;28217:1;28210:15;28244:4;28241:1;28234:15;28261:180;28309:77;28306:1;28299:88;28406:4;28403:1;28396:15;28430:4;28427:1;28420:15;28447:117;28556:1;28553;28546:12;28570:117;28679:1;28676;28669:12;28693:117;28802:1;28799;28792:12;28816:117;28925:1;28922;28915:12;28939:117;29048:1;29045;29038:12;29062:117;29171:1;29168;29161:12;29185:102;29226:6;29277:2;29273:7;29268:2;29261:5;29257:14;29253:28;29243:38;;29185:102;;;:::o;29293:225::-;29433:34;29429:1;29421:6;29417:14;29410:58;29502:8;29497:2;29489:6;29485:15;29478:33;29293:225;:::o;29524:245::-;29664:34;29660:1;29652:6;29648:14;29641:58;29733:28;29728:2;29720:6;29716:15;29709:53;29524:245;:::o;29775:179::-;29915:31;29911:1;29903:6;29899:14;29892:55;29775:179;:::o;29960:176::-;30100:28;30096:1;30088:6;30084:14;30077:52;29960:176;:::o;30142:182::-;30282:34;30278:1;30270:6;30266:14;30259:58;30142:182;:::o;30330:178::-;30470:30;30466:1;30458:6;30454:14;30447:54;30330:178;:::o;30514:114::-;;:::o;30634:225::-;30774:34;30770:1;30762:6;30758:14;30751:58;30843:8;30838:2;30830:6;30826:15;30819:33;30634:225;:::o;30865:176::-;31005:28;31001:1;30993:6;30989:14;30982:52;30865:176;:::o;31047:181::-;31187:33;31183:1;31175:6;31171:14;31164:57;31047:181;:::o;31234:::-;31374:33;31370:1;31362:6;31358:14;31351:57;31234:181;:::o;31421:122::-;31494:24;31512:5;31494:24;:::i;:::-;31487:5;31484:35;31474:63;;31533:1;31530;31523:12;31474:63;31421:122;:::o;31549:116::-;31619:21;31634:5;31619:21;:::i;:::-;31612:5;31609:32;31599:60;;31655:1;31652;31645:12;31599:60;31549:116;:::o;31671:120::-;31743:23;31760:5;31743:23;:::i;:::-;31736:5;31733:34;31723:62;;31781:1;31778;31771:12;31723:62;31671:120;:::o;31797:::-;31869:23;31886:5;31869:23;:::i;:::-;31862:5;31859:34;31849:62;;31907:1;31904;31897:12;31849:62;31797:120;:::o;31923:122::-;31996:24;32014:5;31996:24;:::i;:::-;31989:5;31986:35;31976:63;;32035:1;32032;32025:12;31976:63;31923:122;:::o

Swarm Source

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