ETH Price: $3,086.20 (-0.08%)
Gas: 5 Gwei

Token

SEIKO (SEIKO)
 

Overview

Max Total Supply

134 SEIKO

Holders

54

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 SEIKO
0xbaee3e7368223d1ae47c179bf7da2529b67b84fb
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:
Seiko

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// 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/Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/security/Pausable.sol


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

pragma solidity ^0.8.0;


/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








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

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

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

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/artifacts/Seiko Update.sol


pragma solidity ^0.8.4;





contract Seiko is ERC721A, Ownable, Pausable, ReentrancyGuard {
    using Strings for uint256;

    enum MintPhase {
        CLOSED,
        PUBLIC
    }

    // Configuration: Metadata
    string public baseURI;
    string public unrevealedURI;

    // Configuration: General
    uint256 public immutable maxSupply = 2222;
    uint256 public price = 0.029 ether;
    MintPhase public phase = MintPhase.CLOSED;
    bool reveal = false;

    // Configuration: Public Mint
    uint256 public maxPerPublicTx = 21; // Actually 20, this is to avoid using <=

    // Withdraw accounts
    address private constant WALLET_S = 0xFAFf1e8EDF3B4CB5a3f03894e56c5aCe511Fb07B;
    address private constant WALLET_W = 0x2301E66515f92d309FBE7a434D34ba7BD3F2da6F;
    address private constant WALLET_G = 0xE03Be18268C2f92359d6BEd872f706BA9e75757d;
    address private constant WALLET_C = 0xDCECcC11b31da975Eb4f6E45266019C712174Ed5;

    constructor(
        string memory _setunrevealedURI
    ) ERC721A("SEIKO", "SEIKO") {
        setunrevealedURI(_setunrevealedURI);
        setBaseURI(_setunrevealedURI);
    }

    // ERC721A overrides ===========================================================================
    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
        if(reveal == false) {
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(unrevealedURI,"Unrevealed.json")) : ''; 
        }
        else {
            return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : '';
        }
        
    }

    // When the contract is paused, all token transfers are prevented in case of emergency
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 tokenId,
        uint256 quantity
    ) internal override(ERC721A) whenNotPaused {
        super._beforeTokenTransfers(from, to, tokenId, quantity);
    }

    // Admin functions =============================================================================

    function pause() public onlyOwner {
        _pause();
    }

    function revealArt() public onlyOwner {
        reveal = !reveal;
    }

    function unpause() public onlyOwner {
        _unpause();
    }

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

    function setunrevealedURI(string memory _unrevealedURI) public onlyOwner {
        unrevealedURI = _unrevealedURI;
    }

    function setMaxPerPublicTx(uint256 _maxPerPublicTx) external onlyOwner {
        maxPerPublicTx = _maxPerPublicTx;
    }

    function setPhase(MintPhase _mintPhase) external onlyOwner {
        phase = _mintPhase;
    }

    // Update price in case of major ETH fluctuations
    function setPrice(uint256 _price) external onlyOwner {
        price = _price;
    }

    /* solhint-disable avoid-low-level-calls */
    function withdraw() external nonReentrant onlyOwner {
        uint256 currentBalance = address(this).balance;

        (bool successS, ) = payable(WALLET_S).call{ value: (currentBalance * 30) / 100 }("");
        require(successS, "Failed to send to S");

        (bool successW, ) = payable(WALLET_W).call{ value: (currentBalance * 30) / 100 }("");
        require(successW, "Failed to send to W");

        (bool successG, ) = payable(WALLET_G).call{ value: (currentBalance * 30) / 100 }("");
        require(successG, "Failed to send to G");

        (bool successC, ) = payable(WALLET_C).call{ value: (currentBalance * 10) / 100 }("");
        require(successC, "Failed to send to C");

    } /* solhint-enable avoid-low-level-calls */

    // Public functions ============================================================================
    function isPublic() public view returns (MintPhase) {
        return phase;
    }

    function numberMinted(address owner) public view returns (uint256) {
        return _numberMinted(owner);
    }

    function totalMinted() public view returns (uint256) {
        return _totalMinted();
    }

    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        uint256 holdingAmount = balanceOf(owner);
        uint256 currSupply = _currentIndex;
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        uint256[] memory list = new uint256[](holdingAmount);

        unchecked {
            for (uint256 i = _startTokenId(); i < currSupply; i++) {
                TokenOwnership memory ownership = _ownerships[i];

                if (ownership.burned) {
                    continue;
                }

                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }

                if (currOwnershipAddr == owner) {
                    list[tokenIdsIdx++] = i;
                }

                if (tokenIdsIdx == holdingAmount) {
                    break;
                }
            }
        }

        return list;
    }

    // Minting functions ===========================================================================

    function mintPublic(uint256 quantity) external payable nonReentrant {
        require(phase == MintPhase.PUBLIC, "Public sale is not active");
        require(totalMinted() + quantity <= maxSupply, "Exceeds max supply");
        require(quantity < maxPerPublicTx, "Exceeds max per transaction");
        require(price * quantity == msg.value, "Incorrect amount of funds provided");

        _safeMint(_msgSender(), quantity);
    }

    function mintDev(uint256 quantity) external onlyOwner nonReentrant {
        require(phase == MintPhase.PUBLIC, "Public sale is not active");
        require(totalMinted() + quantity <= maxSupply, "Exceeds max supply");

        _safeMint(_msgSender(), quantity);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_setunrevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublic","outputs":[{"internalType":"enum Seiko.MintPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerPublicTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintDev","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintPublic","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"phase","outputs":[{"internalType":"enum Seiko.MintPhase","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealArt","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":"uint256","name":"_maxPerPublicTx","type":"uint256"}],"name":"setMaxPerPublicTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"enum Seiko.MintPhase","name":"_mintPhase","type":"uint8"}],"name":"setPhase","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedURI","type":"string"}],"name":"setunrevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040526108ae60805266670758aa7c8000600c55600d805461ffff191690556015600e553480156200003257600080fd5b5060405162002b0538038062002b058339810160408190526200005591620002a8565b6040805180820182526005808252645345494b4f60d81b602080840182815285518087019096529285528401528151919291620000959160029162000202565b508051620000ab90600390602084019062000202565b5050600160005550620000be33620000ed565b6008805460ff60a01b191690556001600955620000db816200013f565b620000e681620001a7565b50620003d1565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b031633146200018e5760405162461bcd60e51b8152602060048201819052602482015260008051602062002ae583398151915260448201526064015b60405180910390fd5b8051620001a390600b90602084019062000202565b5050565b6008546001600160a01b03163314620001f25760405162461bcd60e51b8152602060048201819052602482015260008051602062002ae5833981519152604482015260640162000185565b8051620001a390600a9060208401905b82805462000210906200037e565b90600052602060002090601f0160209004810192826200023457600085556200027f565b82601f106200024f57805160ff19168380011785556200027f565b828001600101855582156200027f579182015b828111156200027f57825182559160200191906001019062000262565b506200028d92915062000291565b5090565b5b808211156200028d576000815560010162000292565b60006020808385031215620002bb578182fd5b82516001600160401b0380821115620002d2578384fd5b818501915085601f830112620002e6578384fd5b815181811115620002fb57620002fb620003bb565b604051601f8201601f19908116603f01168101908382118183101715620003265762000326620003bb565b8160405282815288868487010111156200033e578687fd5b8693505b8284101562000361578484018601518185018701529285019262000342565b828411156200037257868684830101525b98975050505050505050565b600181811c908216806200039357607f821691505b60208210811415620003b557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6080516126ea620003fb600039600081816105dd0152818161132e01526115d101526126ea6000f3fe6080604052600436106102305760003560e01c80638462151c1161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c514610657578063ef0d5f3d146106a0578063efd0cbf9146106c0578063f2fde38b146106d3578063fba7d7cb146106f357600080fd5b8063c87b56dd146105ab578063d5abeb01146105cb578063dc33e681146105ff578063dc9a15351461061f578063e775204c1461063757600080fd5b8063a22cb465116100f2578063a22cb4651461050b578063a2309ff81461052b578063b1c9fe6e14610544578063b88d4fde1461056b578063c03afb591461058b57600080fd5b80638462151c146104755780638da5cb5b146104a257806391b7f5ed146104c057806395d89b41146104e0578063a035b1fe146104f557600080fd5b80634849344a116101bc5780636c0360eb116101805780636c0360eb146104015780637035bf181461041657806370a082311461042b578063715018a61461044b5780638456cb591461046057600080fd5b80634849344a1461037757806355f804b31461038d5780635c975abb146103ad5780635e0c19d5146103cc5780636352211e146103e157600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd1461030d5780633ccfd60b1461032d5780633f4ba83a1461034257806342842e0e1461035757600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612264565b610713565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610765565b60405161026191906124e5565b34801561029857600080fd5b506102ac6102a7366004612300565b6107f7565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461223b565b61083b565b005b3480156102f257600080fd5b5060015460005403600019015b604051908152602001610261565b34801561031957600080fd5b506102e461032836600461214e565b6108c9565b34801561033957600080fd5b506102e46108d4565b34801561034e57600080fd5b506102e4610c14565b34801561036357600080fd5b506102e461037236600461214e565b610c48565b34801561038357600080fd5b506102ff600e5481565b34801561039957600080fd5b506102e46103a83660046122bb565b610c63565b3480156103b957600080fd5b50600854600160a01b900460ff16610255565b3480156103d857600080fd5b506102e4610ca4565b3480156103ed57600080fd5b506102ac6103fc366004612300565b610ceb565b34801561040d57600080fd5b5061027f610cfd565b34801561042257600080fd5b5061027f610d8b565b34801561043757600080fd5b506102ff6104463660046120fb565b610d98565b34801561045757600080fd5b506102e4610de6565b34801561046c57600080fd5b506102e4610e1a565b34801561048157600080fd5b506104956104903660046120fb565b610e4c565b6040516102619190612479565b3480156104ae57600080fd5b506008546001600160a01b03166102ac565b3480156104cc57600080fd5b506102e46104db366004612300565b610fa4565b3480156104ec57600080fd5b5061027f610fd3565b34801561050157600080fd5b506102ff600c5481565b34801561051757600080fd5b506102e4610526366004612201565b610fe2565b34801561053757600080fd5b50600054600019016102ff565b34801561055057600080fd5b50600d5461055e9060ff1681565b60405161026191906124bd565b34801561057757600080fd5b506102e4610586366004612189565b611078565b34801561059757600080fd5b506102e46105a636600461229c565b6110c9565b3480156105b757600080fd5b5061027f6105c6366004612300565b611127565b3480156105d757600080fd5b506102ff7f000000000000000000000000000000000000000000000000000000000000000081565b34801561060b57600080fd5b506102ff61061a3660046120fb565b6111fa565b34801561062b57600080fd5b50600d5460ff1661055e565b34801561064357600080fd5b506102e46106523660046122bb565b611228565b34801561066357600080fd5b5061025561067236600461211c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ac57600080fd5b506102e46106bb366004612300565b611265565b6102e46106ce366004612300565b611294565b3480156106df57600080fd5b506102e46106ee3660046120fb565b611472565b3480156106ff57600080fd5b506102e461070e366004612300565b61150d565b60006001600160e01b031982166380ac58cd60e01b148061074457506001600160e01b03198216635b5e139f60e01b145b8061075f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610774906125f2565b80601f01602080910402602001604051908101604052809291908181526020018280546107a0906125f2565b80156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b5050505050905090565b60006108028261164b565b61081f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084682610ceb565b9050806001600160a01b0316836001600160a01b0316141561087b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061089b57506108998133610672565b155b156108b9576040516367d9dca160e11b815260040160405180910390fd5b6108c4838383611684565b505050565b6108c48383836116e0565b600260095414156109005760405162461bcd60e51b81526004016108f79061252d565b60405180910390fd5b60026009556008546001600160a01b0316331461092f5760405162461bcd60e51b81526004016108f7906124f8565b47600073faff1e8edf3b4cb5a3f03894e56c5ace511fb07b606461095484601e612590565b61095e919061257c565b604051600081818185875af1925050503d806000811461099a576040519150601f19603f3d011682016040523d82523d6000602084013e61099f565b606091505b50509050806109e65760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f205360681b60448201526064016108f7565b6000732301e66515f92d309fbe7a434d34ba7bd3f2da6f6064610a0a85601e612590565b610a14919061257c565b604051600081818185875af1925050503d8060008114610a50576040519150601f19603f3d011682016040523d82523d6000602084013e610a55565b606091505b5050905080610a9c5760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f205760681b60448201526064016108f7565b600073e03be18268c2f92359d6bed872f706ba9e75757d6064610ac086601e612590565b610aca919061257c565b604051600081818185875af1925050503d8060008114610b06576040519150601f19603f3d011682016040523d82523d6000602084013e610b0b565b606091505b5050905080610b525760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f204760681b60448201526064016108f7565b600073dceccc11b31da975eb4f6e45266019c712174ed56064610b7687600a612590565b610b80919061257c565b604051600081818185875af1925050503d8060008114610bbc576040519150601f19603f3d011682016040523d82523d6000602084013e610bc1565b606091505b5050905080610c085760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f204360681b60448201526064016108f7565b50506001600955505050565b6008546001600160a01b03163314610c3e5760405162461bcd60e51b81526004016108f7906124f8565b610c466118db565b565b6108c483838360405180602001604052806000815250611078565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b81526004016108f7906124f8565b8051610ca090600a906020840190611fd6565b5050565b6008546001600160a01b03163314610cce5760405162461bcd60e51b81526004016108f7906124f8565b600d805461ff001981166101009182900460ff1615909102179055565b6000610cf682611978565b5192915050565b600a8054610d0a906125f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d36906125f2565b8015610d835780601f10610d5857610100808354040283529160200191610d83565b820191906000526020600020905b815481529060010190602001808311610d6657829003601f168201915b505050505081565b600b8054610d0a906125f2565b60006001600160a01b038216610dc1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e105760405162461bcd60e51b81526004016108f7906124f8565b610c466000611a9f565b6008546001600160a01b03163314610e445760405162461bcd60e51b81526004016108f7906124f8565b610c46611af1565b60606000610e5983610d98565b600080549192508080846001600160401b03811115610e8857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610eb1578160200160208202803683370190505b50905060015b84811015610f9957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610f1e5750610f91565b80516001600160a01b031615610f3357805193505b886001600160a01b0316846001600160a01b03161415610f815781838680600101975081518110610f7457634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b86851415610f8f5750610f99565b505b600101610eb7565b509695505050505050565b6008546001600160a01b03163314610fce5760405162461bcd60e51b81526004016108f7906124f8565b600c55565b606060038054610774906125f2565b6001600160a01b03821633141561100c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110838484846116e0565b6001600160a01b0383163b151580156110a557506110a384848484611b79565b155b156110c3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110f35760405162461bcd60e51b81526004016108f7906124f8565b600d805482919060ff19166001838181111561111f57634e487b7160e01b600052602160045260246000fd5b021790555050565b60606111328261164b565b61114f57604051630a14c4b560e41b815260040160405180910390fd5b600d54610100900460ff166111af57600a805461116b906125f2565b15159050611188576040518060200160405280600081525061075f565b600b60405160200161119a9190612411565b60405160208183030381529060405292915050565b600a80546111bc906125f2565b151590506111d9576040518060200160405280600081525061075f565b600a6111e483611c71565b60405160200161119a9291906123dc565b919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661075f565b6008546001600160a01b031633146112525760405162461bcd60e51b81526004016108f7906124f8565b8051610ca090600b906020840190611fd6565b6008546001600160a01b0316331461128f5760405162461bcd60e51b81526004016108f7906124f8565b600e55565b600260095414156112b75760405162461bcd60e51b81526004016108f79061252d565b60026009556001600d5460ff1660018111156112e357634e487b7160e01b600052602160045260246000fd5b1461132c5760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016108f7565b7f00000000000000000000000000000000000000000000000000000000000000008161135b6000546000190190565b6113659190612564565b11156113a85760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f7565b600e5481106113f95760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e000000000060448201526064016108f7565b3481600c546114089190612590565b146114605760405162461bcd60e51b815260206004820152602260248201527f496e636f727265637420616d6f756e74206f662066756e64732070726f766964604482015261195960f21b60648201526084016108f7565b61146a3382611d8a565b506001600955565b6008546001600160a01b0316331461149c5760405162461bcd60e51b81526004016108f7906124f8565b6001600160a01b0381166115015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f7565b61150a81611a9f565b50565b6008546001600160a01b031633146115375760405162461bcd60e51b81526004016108f7906124f8565b6002600954141561155a5760405162461bcd60e51b81526004016108f79061252d565b60026009556001600d5460ff16600181111561158657634e487b7160e01b600052602160045260246000fd5b146115cf5760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016108f7565b7f0000000000000000000000000000000000000000000000000000000000000000816115fe6000546000190190565b6116089190612564565b11156114605760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f7565b60008160011115801561165f575060005482105b801561075f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116eb82611978565b9050836001600160a01b031681600001516001600160a01b0316146117225760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061174057506117408533610672565b8061175b575033611750846107f7565b6001600160a01b0316145b90508061177b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117a257604051633a954ecd60e21b815260040160405180910390fd5b6117af8585856001611da4565b6117bb60008487611684565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661188f57600054821461188f57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600854600160a01b900460ff1661192b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108f7565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080516060810182526000808252602082018190529181019190915281806001111580156119a8575060005481105b15611a8657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a845780516001600160a01b031615611a1b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a7f579392505050565b611a1b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff1615611b3e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f7565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861195b3390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bae90339089908890889060040161243c565b602060405180830381600087803b158015611bc857600080fd5b505af1925050508015611bf8575060408051601f3d908101601f19168201909252611bf591810190612280565b60015b611c53573d808015611c26576040519150601f19603f3d011682016040523d82523d6000602084013e611c2b565b606091505b508051611c4b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611c955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cbf5780611ca98161262d565b9150611cb89050600a8361257c565b9150611c99565b6000816001600160401b03811115611ce757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d11576020820181803683370190505b5090505b8415611c6957611d266001836125af565b9150611d33600a86612648565b611d3e906030612564565b60f81b818381518110611d6157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d83600a8661257c565b9450611d15565b610ca0828260405180602001604052806000815250611df6565b600854600160a01b900460ff1615611df15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f7565b6110c3565b6108c483838360016000546001600160a01b038516611e2757604051622e076360e81b815260040160405180910390fd5b83611e455760405163b562e8dd60e01b815260040160405180910390fd5b611e526000868387611da4565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611efe57506001600160a01b0387163b15155b15611f87575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f4f6000888480600101955088611b79565b611f6c576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f04578260005414611f8257600080fd5b611fcd565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611f88575b506000556118d4565b828054611fe2906125f2565b90600052602060002090601f016020900481019282612004576000855561204a565b82601f1061201d57805160ff191683800117855561204a565b8280016001018555821561204a579182015b8281111561204a57825182559160200191906001019061202f565b5061205692915061205a565b5090565b5b80821115612056576000815560010161205b565b60006001600160401b038084111561208957612089612688565b604051601f8501601f19908116603f011681019082821181831017156120b1576120b1612688565b816040528093508581528686860111156120ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146111f557600080fd5b60006020828403121561210c578081fd5b612115826120e4565b9392505050565b6000806040838503121561212e578081fd5b612137836120e4565b9150612145602084016120e4565b90509250929050565b600080600060608486031215612162578081fd5b61216b846120e4565b9250612179602085016120e4565b9150604084013590509250925092565b6000806000806080858703121561219e578081fd5b6121a7856120e4565b93506121b5602086016120e4565b92506040850135915060608501356001600160401b038111156121d6578182fd5b8501601f810187136121e6578182fd5b6121f58782356020840161206f565b91505092959194509250565b60008060408385031215612213578182fd5b61221c836120e4565b915060208301358015158114612230578182fd5b809150509250929050565b6000806040838503121561224d578182fd5b612256836120e4565b946020939093013593505050565b600060208284031215612275578081fd5b81356121158161269e565b600060208284031215612291578081fd5b81516121158161269e565b6000602082840312156122ad578081fd5b813560028110612115578182fd5b6000602082840312156122cc578081fd5b81356001600160401b038111156122e1578182fd5b8201601f810184136122f1578182fd5b611c698482356020840161206f565b600060208284031215612311578081fd5b5035919050565b600081518084526123308160208601602086016125c6565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061235e57607f831692505b602080841082141561237e57634e487b7160e01b86526022600452602486fd5b81801561239257600181146123a3576123d0565b60ff198616895284890196506123d0565b60008881526020902060005b868110156123c85781548b8201529085019083016123af565b505084890196505b50505050505092915050565b60006123e88285612344565b83516123f88183602088016125c6565b64173539b7b760d91b9101908152600501949350505050565b600061241d8284612344565b6e2ab73932bb32b0b632b2173539b7b760891b8152600f019392505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061246f90830184612318565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124b157835183529284019291840191600101612495565b50909695505050505050565b60208101600283106124df57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006121156020830184612318565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156125775761257761265c565b500190565b60008261258b5761258b612672565b500490565b60008160001904831182151516156125aa576125aa61265c565b500290565b6000828210156125c1576125c161265c565b500390565b60005b838110156125e15781810151838201526020016125c9565b838111156110c35750506000910152565b600181811c9082168061260657607f821691505b6020821081141561262757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126415761264161265c565b5060010190565b60008261265757612657612672565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461150a57600080fdfea2646970667358221220afb8a2e3bcc701569491efe89d0d1904946a9224526d6d63da93b6f6b587ae4864736f6c634300080400334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d627138786f50313961754759314d73436a5059536a4c37414a454c4a77584c554a6a617459744452643957322f00000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80638462151c1161012e578063c87b56dd116100ab578063e985e9c51161006f578063e985e9c514610657578063ef0d5f3d146106a0578063efd0cbf9146106c0578063f2fde38b146106d3578063fba7d7cb146106f357600080fd5b8063c87b56dd146105ab578063d5abeb01146105cb578063dc33e681146105ff578063dc9a15351461061f578063e775204c1461063757600080fd5b8063a22cb465116100f2578063a22cb4651461050b578063a2309ff81461052b578063b1c9fe6e14610544578063b88d4fde1461056b578063c03afb591461058b57600080fd5b80638462151c146104755780638da5cb5b146104a257806391b7f5ed146104c057806395d89b41146104e0578063a035b1fe146104f557600080fd5b80634849344a116101bc5780636c0360eb116101805780636c0360eb146104015780637035bf181461041657806370a082311461042b578063715018a61461044b5780638456cb591461046057600080fd5b80634849344a1461037757806355f804b31461038d5780635c975abb146103ad5780635e0c19d5146103cc5780636352211e146103e157600080fd5b806318160ddd1161020357806318160ddd146102e657806323b872dd1461030d5780633ccfd60b1461032d5780633f4ba83a1461034257806342842e0e1461035757600080fd5b806301ffc9a71461023557806306fdde031461026a578063081812fc1461028c578063095ea7b3146102c4575b600080fd5b34801561024157600080fd5b50610255610250366004612264565b610713565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b5061027f610765565b60405161026191906124e5565b34801561029857600080fd5b506102ac6102a7366004612300565b6107f7565b6040516001600160a01b039091168152602001610261565b3480156102d057600080fd5b506102e46102df36600461223b565b61083b565b005b3480156102f257600080fd5b5060015460005403600019015b604051908152602001610261565b34801561031957600080fd5b506102e461032836600461214e565b6108c9565b34801561033957600080fd5b506102e46108d4565b34801561034e57600080fd5b506102e4610c14565b34801561036357600080fd5b506102e461037236600461214e565b610c48565b34801561038357600080fd5b506102ff600e5481565b34801561039957600080fd5b506102e46103a83660046122bb565b610c63565b3480156103b957600080fd5b50600854600160a01b900460ff16610255565b3480156103d857600080fd5b506102e4610ca4565b3480156103ed57600080fd5b506102ac6103fc366004612300565b610ceb565b34801561040d57600080fd5b5061027f610cfd565b34801561042257600080fd5b5061027f610d8b565b34801561043757600080fd5b506102ff6104463660046120fb565b610d98565b34801561045757600080fd5b506102e4610de6565b34801561046c57600080fd5b506102e4610e1a565b34801561048157600080fd5b506104956104903660046120fb565b610e4c565b6040516102619190612479565b3480156104ae57600080fd5b506008546001600160a01b03166102ac565b3480156104cc57600080fd5b506102e46104db366004612300565b610fa4565b3480156104ec57600080fd5b5061027f610fd3565b34801561050157600080fd5b506102ff600c5481565b34801561051757600080fd5b506102e4610526366004612201565b610fe2565b34801561053757600080fd5b50600054600019016102ff565b34801561055057600080fd5b50600d5461055e9060ff1681565b60405161026191906124bd565b34801561057757600080fd5b506102e4610586366004612189565b611078565b34801561059757600080fd5b506102e46105a636600461229c565b6110c9565b3480156105b757600080fd5b5061027f6105c6366004612300565b611127565b3480156105d757600080fd5b506102ff7f00000000000000000000000000000000000000000000000000000000000008ae81565b34801561060b57600080fd5b506102ff61061a3660046120fb565b6111fa565b34801561062b57600080fd5b50600d5460ff1661055e565b34801561064357600080fd5b506102e46106523660046122bb565b611228565b34801561066357600080fd5b5061025561067236600461211c565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156106ac57600080fd5b506102e46106bb366004612300565b611265565b6102e46106ce366004612300565b611294565b3480156106df57600080fd5b506102e46106ee3660046120fb565b611472565b3480156106ff57600080fd5b506102e461070e366004612300565b61150d565b60006001600160e01b031982166380ac58cd60e01b148061074457506001600160e01b03198216635b5e139f60e01b145b8061075f57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610774906125f2565b80601f01602080910402602001604051908101604052809291908181526020018280546107a0906125f2565b80156107ed5780601f106107c2576101008083540402835291602001916107ed565b820191906000526020600020905b8154815290600101906020018083116107d057829003601f168201915b5050505050905090565b60006108028261164b565b61081f576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061084682610ceb565b9050806001600160a01b0316836001600160a01b0316141561087b5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b0382161480159061089b57506108998133610672565b155b156108b9576040516367d9dca160e11b815260040160405180910390fd5b6108c4838383611684565b505050565b6108c48383836116e0565b600260095414156109005760405162461bcd60e51b81526004016108f79061252d565b60405180910390fd5b60026009556008546001600160a01b0316331461092f5760405162461bcd60e51b81526004016108f7906124f8565b47600073faff1e8edf3b4cb5a3f03894e56c5ace511fb07b606461095484601e612590565b61095e919061257c565b604051600081818185875af1925050503d806000811461099a576040519150601f19603f3d011682016040523d82523d6000602084013e61099f565b606091505b50509050806109e65760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f205360681b60448201526064016108f7565b6000732301e66515f92d309fbe7a434d34ba7bd3f2da6f6064610a0a85601e612590565b610a14919061257c565b604051600081818185875af1925050503d8060008114610a50576040519150601f19603f3d011682016040523d82523d6000602084013e610a55565b606091505b5050905080610a9c5760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f205760681b60448201526064016108f7565b600073e03be18268c2f92359d6bed872f706ba9e75757d6064610ac086601e612590565b610aca919061257c565b604051600081818185875af1925050503d8060008114610b06576040519150601f19603f3d011682016040523d82523d6000602084013e610b0b565b606091505b5050905080610b525760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f204760681b60448201526064016108f7565b600073dceccc11b31da975eb4f6e45266019c712174ed56064610b7687600a612590565b610b80919061257c565b604051600081818185875af1925050503d8060008114610bbc576040519150601f19603f3d011682016040523d82523d6000602084013e610bc1565b606091505b5050905080610c085760405162461bcd60e51b81526020600482015260136024820152724661696c656420746f2073656e6420746f204360681b60448201526064016108f7565b50506001600955505050565b6008546001600160a01b03163314610c3e5760405162461bcd60e51b81526004016108f7906124f8565b610c466118db565b565b6108c483838360405180602001604052806000815250611078565b6008546001600160a01b03163314610c8d5760405162461bcd60e51b81526004016108f7906124f8565b8051610ca090600a906020840190611fd6565b5050565b6008546001600160a01b03163314610cce5760405162461bcd60e51b81526004016108f7906124f8565b600d805461ff001981166101009182900460ff1615909102179055565b6000610cf682611978565b5192915050565b600a8054610d0a906125f2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d36906125f2565b8015610d835780601f10610d5857610100808354040283529160200191610d83565b820191906000526020600020905b815481529060010190602001808311610d6657829003601f168201915b505050505081565b600b8054610d0a906125f2565b60006001600160a01b038216610dc1576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610e105760405162461bcd60e51b81526004016108f7906124f8565b610c466000611a9f565b6008546001600160a01b03163314610e445760405162461bcd60e51b81526004016108f7906124f8565b610c46611af1565b60606000610e5983610d98565b600080549192508080846001600160401b03811115610e8857634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610eb1578160200160208202803683370190505b50905060015b84811015610f9957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925290610f1e5750610f91565b80516001600160a01b031615610f3357805193505b886001600160a01b0316846001600160a01b03161415610f815781838680600101975081518110610f7457634e487b7160e01b600052603260045260246000fd5b6020026020010181815250505b86851415610f8f5750610f99565b505b600101610eb7565b509695505050505050565b6008546001600160a01b03163314610fce5760405162461bcd60e51b81526004016108f7906124f8565b600c55565b606060038054610774906125f2565b6001600160a01b03821633141561100c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110838484846116e0565b6001600160a01b0383163b151580156110a557506110a384848484611b79565b155b156110c3576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b031633146110f35760405162461bcd60e51b81526004016108f7906124f8565b600d805482919060ff19166001838181111561111f57634e487b7160e01b600052602160045260246000fd5b021790555050565b60606111328261164b565b61114f57604051630a14c4b560e41b815260040160405180910390fd5b600d54610100900460ff166111af57600a805461116b906125f2565b15159050611188576040518060200160405280600081525061075f565b600b60405160200161119a9190612411565b60405160208183030381529060405292915050565b600a80546111bc906125f2565b151590506111d9576040518060200160405280600081525061075f565b600a6111e483611c71565b60405160200161119a9291906123dc565b919050565b6001600160a01b038116600090815260056020526040812054600160401b90046001600160401b031661075f565b6008546001600160a01b031633146112525760405162461bcd60e51b81526004016108f7906124f8565b8051610ca090600b906020840190611fd6565b6008546001600160a01b0316331461128f5760405162461bcd60e51b81526004016108f7906124f8565b600e55565b600260095414156112b75760405162461bcd60e51b81526004016108f79061252d565b60026009556001600d5460ff1660018111156112e357634e487b7160e01b600052602160045260246000fd5b1461132c5760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016108f7565b7f00000000000000000000000000000000000000000000000000000000000008ae8161135b6000546000190190565b6113659190612564565b11156113a85760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f7565b600e5481106113f95760405162461bcd60e51b815260206004820152601b60248201527f45786365656473206d617820706572207472616e73616374696f6e000000000060448201526064016108f7565b3481600c546114089190612590565b146114605760405162461bcd60e51b815260206004820152602260248201527f496e636f727265637420616d6f756e74206f662066756e64732070726f766964604482015261195960f21b60648201526084016108f7565b61146a3382611d8a565b506001600955565b6008546001600160a01b0316331461149c5760405162461bcd60e51b81526004016108f7906124f8565b6001600160a01b0381166115015760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108f7565b61150a81611a9f565b50565b6008546001600160a01b031633146115375760405162461bcd60e51b81526004016108f7906124f8565b6002600954141561155a5760405162461bcd60e51b81526004016108f79061252d565b60026009556001600d5460ff16600181111561158657634e487b7160e01b600052602160045260246000fd5b146115cf5760405162461bcd60e51b81526020600482015260196024820152785075626c69632073616c65206973206e6f742061637469766560381b60448201526064016108f7565b7f00000000000000000000000000000000000000000000000000000000000008ae816115fe6000546000190190565b6116089190612564565b11156114605760405162461bcd60e51b815260206004820152601260248201527145786365656473206d617820737570706c7960701b60448201526064016108f7565b60008160011115801561165f575060005482105b801561075f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006116eb82611978565b9050836001600160a01b031681600001516001600160a01b0316146117225760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061174057506117408533610672565b8061175b575033611750846107f7565b6001600160a01b0316145b90508061177b57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166117a257604051633a954ecd60e21b815260040160405180910390fd5b6117af8585856001611da4565b6117bb60008487611684565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661188f57600054821461188f57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b600854600160a01b900460ff1661192b5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016108f7565b6008805460ff60a01b191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b604080516060810182526000808252602082018190529181019190915281806001111580156119a8575060005481105b15611a8657600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611a845780516001600160a01b031615611a1b579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611a7f579392505050565b611a1b565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600854600160a01b900460ff1615611b3e5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f7565b6008805460ff60a01b1916600160a01b1790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861195b3390565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611bae90339089908890889060040161243c565b602060405180830381600087803b158015611bc857600080fd5b505af1925050508015611bf8575060408051601f3d908101601f19168201909252611bf591810190612280565b60015b611c53573d808015611c26576040519150601f19603f3d011682016040523d82523d6000602084013e611c2b565b606091505b508051611c4b576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b606081611c955750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611cbf5780611ca98161262d565b9150611cb89050600a8361257c565b9150611c99565b6000816001600160401b03811115611ce757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611d11576020820181803683370190505b5090505b8415611c6957611d266001836125af565b9150611d33600a86612648565b611d3e906030612564565b60f81b818381518110611d6157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611d83600a8661257c565b9450611d15565b610ca0828260405180602001604052806000815250611df6565b600854600160a01b900460ff1615611df15760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016108f7565b6110c3565b6108c483838360016000546001600160a01b038516611e2757604051622e076360e81b815260040160405180910390fd5b83611e455760405163b562e8dd60e01b815260040160405180910390fd5b611e526000868387611da4565b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c018116918217600160401b67ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611efe57506001600160a01b0387163b15155b15611f87575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611f4f6000888480600101955088611b79565b611f6c576040516368d2bf6b60e11b815260040160405180910390fd5b80821415611f04578260005414611f8257600080fd5b611fcd565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415611f88575b506000556118d4565b828054611fe2906125f2565b90600052602060002090601f016020900481019282612004576000855561204a565b82601f1061201d57805160ff191683800117855561204a565b8280016001018555821561204a579182015b8281111561204a57825182559160200191906001019061202f565b5061205692915061205a565b5090565b5b80821115612056576000815560010161205b565b60006001600160401b038084111561208957612089612688565b604051601f8501601f19908116603f011681019082821181831017156120b1576120b1612688565b816040528093508581528686860111156120ca57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146111f557600080fd5b60006020828403121561210c578081fd5b612115826120e4565b9392505050565b6000806040838503121561212e578081fd5b612137836120e4565b9150612145602084016120e4565b90509250929050565b600080600060608486031215612162578081fd5b61216b846120e4565b9250612179602085016120e4565b9150604084013590509250925092565b6000806000806080858703121561219e578081fd5b6121a7856120e4565b93506121b5602086016120e4565b92506040850135915060608501356001600160401b038111156121d6578182fd5b8501601f810187136121e6578182fd5b6121f58782356020840161206f565b91505092959194509250565b60008060408385031215612213578182fd5b61221c836120e4565b915060208301358015158114612230578182fd5b809150509250929050565b6000806040838503121561224d578182fd5b612256836120e4565b946020939093013593505050565b600060208284031215612275578081fd5b81356121158161269e565b600060208284031215612291578081fd5b81516121158161269e565b6000602082840312156122ad578081fd5b813560028110612115578182fd5b6000602082840312156122cc578081fd5b81356001600160401b038111156122e1578182fd5b8201601f810184136122f1578182fd5b611c698482356020840161206f565b600060208284031215612311578081fd5b5035919050565b600081518084526123308160208601602086016125c6565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061235e57607f831692505b602080841082141561237e57634e487b7160e01b86526022600452602486fd5b81801561239257600181146123a3576123d0565b60ff198616895284890196506123d0565b60008881526020902060005b868110156123c85781548b8201529085019083016123af565b505084890196505b50505050505092915050565b60006123e88285612344565b83516123f88183602088016125c6565b64173539b7b760d91b9101908152600501949350505050565b600061241d8284612344565b6e2ab73932bb32b0b632b2173539b7b760891b8152600f019392505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061246f90830184612318565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156124b157835183529284019291840191600101612495565b50909695505050505050565b60208101600283106124df57634e487b7160e01b600052602160045260246000fd5b91905290565b6020815260006121156020830184612318565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b600082198211156125775761257761265c565b500190565b60008261258b5761258b612672565b500490565b60008160001904831182151516156125aa576125aa61265c565b500290565b6000828210156125c1576125c161265c565b500390565b60005b838110156125e15781810151838201526020016125c9565b838111156110c35750506000910152565b600181811c9082168061260657607f821691505b6020821081141561262757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156126415761264161265c565b5060010190565b60008261265757612657612672565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461150a57600080fdfea2646970667358221220afb8a2e3bcc701569491efe89d0d1904946a9224526d6d63da93b6f6b587ae4864736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d627138786f50313961754759314d73436a5059536a4c37414a454c4a77584c554a6a617459744452643957322f00000000000000000000

-----Decoded View---------------
Arg [0] : _setunrevealedURI (string): ipfs://Qmbq8xoP19auGY1MsCjPYSjL7AJELJwXLUJjatYtDRd9W2/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d627138786f50313961754759314d73436a5059536a4c37
Arg [3] : 414a454c4a77584c554a6a617459744452643957322f00000000000000000000


Deployed Bytecode Sourcemap

49951:6280:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32120:305;;;;;;;;;;-1:-1:-1;32120:305:0;;;;;:::i;:::-;;:::i;:::-;;;8369:14:1;;8362:22;8344:41;;8332:2;8317:18;32120:305:0;;;;;;;;35233:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36736:204::-;;;;;;;;;;-1:-1:-1;36736:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7027:32:1;;;7009:51;;6997:2;6982:18;36736:204:0;6964:102:1;36299:371:0;;;;;;;;;;-1:-1:-1;36299:371:0;;;;;:::i;:::-;;:::i;:::-;;31369:303;;;;;;;;;;-1:-1:-1;51281:1:0;31623:12;31413:7;31607:13;:28;-1:-1:-1;;31607:46:0;31369:303;;;13787:25:1;;;13775:2;13760:18;31369:303:0;13742:76:1;37601:170:0;;;;;;;;;;-1:-1:-1;37601:170:0;;;;;:::i;:::-;;:::i;53251:711::-;;;;;;;;;;;;;:::i;52504:65::-;;;;;;;;;;;;;:::i;37842:185::-;;;;;;;;;;-1:-1:-1;37842:185:0;;;;;:::i;:::-;;:::i;50445:34::-;;;;;;;;;;;;;;;;52577:104;;;;;;;;;;-1:-1:-1;52577:104:0;;;;;:::i;:::-;;:::i;6941:86::-;;;;;;;;;;-1:-1:-1;7012:7:0;;-1:-1:-1;;;7012:7:0;;;;6941:86;;52423:73;;;;;;;;;;;;;:::i;35041:125::-;;;;;;;;;;-1:-1:-1;35041:125:0;;;;;:::i;:::-;;:::i;50150:21::-;;;;;;;;;;;;;:::i;50178:27::-;;;;;;;;;;;;;:::i;32489:206::-;;;;;;;;;;-1:-1:-1;32489:206:0;;;;;:::i;:::-;;:::i;9840:103::-;;;;;;;;;;;;;:::i;52354:61::-;;;;;;;;;;;;;:::i;54428:966::-;;;;;;;;;;-1:-1:-1;54428:966:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;9189:87::-;;;;;;;;;;-1:-1:-1;9262:6:0;;-1:-1:-1;;;;;9262:6:0;9189:87;;53108:86;;;;;;;;;;-1:-1:-1;53108:86:0;;;;;:::i;:::-;;:::i;35402:104::-;;;;;;;;;;;;;:::i;50293:34::-;;;;;;;;;;;;;;;;37012:287;;;;;;;;;;-1:-1:-1;37012:287:0;;;;;:::i;:::-;;:::i;54327:93::-;;;;;;;;;;-1:-1:-1;54371:7:0;31998:13;-1:-1:-1;;31998:31:0;54327:93;;50334:41;;;;;;;;;;-1:-1:-1;50334:41:0;;;;;;;;;;;;;;;:::i;38098:369::-;;;;;;;;;;-1:-1:-1;38098:369:0;;;;;:::i;:::-;;:::i;52949:96::-;;;;;;;;;;-1:-1:-1;52949:96:0;;;;;:::i;:::-;;:::i;51414:477::-;;;;;;;;;;-1:-1:-1;51414:477:0;;;;;:::i;:::-;;:::i;50245:41::-;;;;;;;;;;;;;;;54206:113;;;;;;;;;;-1:-1:-1;54206:113:0;;;;;:::i;:::-;;:::i;54115:83::-;;;;;;;;;;-1:-1:-1;54185:5:0;;;;54115:83;;52689:122;;;;;;;;;;-1:-1:-1;52689:122:0;;;;;:::i;:::-;;:::i;37370:164::-;;;;;;;;;;-1:-1:-1;37370:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;37491:25:0;;;37467:4;37491:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37370:164;52819:122;;;;;;;;;;-1:-1:-1;52819:122:0;;;;;:::i;:::-;;:::i;55506:438::-;;;;;;:::i;:::-;;:::i;10098:201::-;;;;;;;;;;-1:-1:-1;10098:201:0;;;;;:::i;:::-;;:::i;55952:274::-;;;;;;;;;;-1:-1:-1;55952:274:0;;;;;:::i;:::-;;:::i;32120:305::-;32222:4;-1:-1:-1;;;;;;32259:40:0;;-1:-1:-1;;;32259:40:0;;:105;;-1:-1:-1;;;;;;;32316:48:0;;-1:-1:-1;;;32316:48:0;32259:105;:158;;;-1:-1:-1;;;;;;;;;;22105:40:0;;;32381:36;32239:178;32120:305;-1:-1:-1;;32120:305:0:o;35233:100::-;35287:13;35320:5;35313:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35233:100;:::o;36736:204::-;36804:7;36829:16;36837:7;36829;:16::i;:::-;36824:64;;36854:34;;-1:-1:-1;;;36854:34:0;;;;;;;;;;;36824:64;-1:-1:-1;36908:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36908:24:0;;36736:204::o;36299:371::-;36372:13;36388:24;36404:7;36388:15;:24::i;:::-;36372:40;;36433:5;-1:-1:-1;;;;;36427:11:0;:2;-1:-1:-1;;;;;36427:11:0;;36423:48;;;36447:24;;-1:-1:-1;;;36447:24:0;;;;;;;;;;;36423:48;5675:10;-1:-1:-1;;;;;36488:21:0;;;;;;:63;;-1:-1:-1;36514:37:0;36531:5;5675:10;37370:164;:::i;36514:37::-;36513:38;36488:63;36484:138;;;36575:35;;-1:-1:-1;;;36575:35:0;;;;;;;;;;;36484:138;36634:28;36643:2;36647:7;36656:5;36634:8;:28::i;:::-;36299:371;;;:::o;37601:170::-;37735:28;37745:4;37751:2;37755:7;37735:9;:28::i;53251:711::-;1845:1;2443:7;;:19;;2435:63;;;;-1:-1:-1;;;2435:63:0;;;;;;;:::i;:::-;;;;;;;;;1845:1;2576:7;:18;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23:::1;9401:68;;;;-1:-1:-1::0;;;9401:68:0::1;;;;;;;:::i;:::-;53339:21:::2;53314:22;50592:42;53448:3;53425:19;53339:21:::0;53442:2:::2;53425:19;:::i;:::-;53424:27;;;;:::i;:::-;53393:64;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53373:84;;;53476:8;53468:40;;;::::0;-1:-1:-1;;;53468:40:0;;11680:2:1;53468:40:0::2;::::0;::::2;11662:21:1::0;11719:2;11699:18;;;11692:30;-1:-1:-1;;;11738:18:1;;;11731:49;11797:18;;53468:40:0::2;11652:169:1::0;53468:40:0::2;53522:13;50677:42;53596:3;53573:19;:14:::0;53590:2:::2;53573:19;:::i;:::-;53572:27;;;;:::i;:::-;53541:64;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53521:84;;;53624:8;53616:40;;;::::0;-1:-1:-1;;;53616:40:0;;13495:2:1;53616:40:0::2;::::0;::::2;13477:21:1::0;13534:2;13514:18;;;13507:30;-1:-1:-1;;;13553:18:1;;;13546:49;13612:18;;53616:40:0::2;13467:169:1::0;53616:40:0::2;53670:13;50762:42;53744:3;53721:19;:14:::0;53738:2:::2;53721:19;:::i;:::-;53720:27;;;;:::i;:::-;53689:64;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53669:84;;;53772:8;53764:40;;;::::0;-1:-1:-1;;;53764:40:0;;12384:2:1;53764:40:0::2;::::0;::::2;12366:21:1::0;12423:2;12403:18;;;12396:30;-1:-1:-1;;;12442:18:1;;;12435:49;12501:18;;53764:40:0::2;12356:169:1::0;53764:40:0::2;53818:13;50847:42;53892:3;53869:19;:14:::0;53886:2:::2;53869:19;:::i;:::-;53868:27;;;;:::i;:::-;53837:64;::::0;::::2;::::0;;;;;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53817:84;;;53920:8;53912:40;;;::::0;-1:-1:-1;;;53912:40:0;;9518:2:1;53912:40:0::2;::::0;::::2;9500:21:1::0;9557:2;9537:18;;;9530:30;-1:-1:-1;;;9576:18:1;;;9569:49;9635:18;;53912:40:0::2;9490:169:1::0;53912:40:0::2;-1:-1:-1::0;;1801:1:0;2755:7;:22;-1:-1:-1;;;53251:711:0:o;52504:65::-;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;52551:10:::1;:8;:10::i;:::-;52504:65::o:0;37842:185::-;37980:39;37997:4;38003:2;38007:7;37980:39;;;;;;;;;;;;:16;:39::i;52577:104::-;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;52652:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52577:104:::0;:::o;52423:73::-;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;52482:6:::1;::::0;;-1:-1:-1;;52472:16:0;::::1;52482:6;::::0;;;::::1;;;52481:7;52472:16:::0;;::::1;;::::0;;52423:73::o;35041:125::-;35105:7;35132:21;35145:7;35132:12;:21::i;:::-;:26;;35041:125;-1:-1:-1;;35041:125:0:o;50150:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50178:27::-;;;;;;;:::i;32489:206::-;32553:7;-1:-1:-1;;;;;32577:19:0;;32573:60;;32605:28;;-1:-1:-1;;;32605:28:0;;;;;;;;;;;32573:60;-1:-1:-1;;;;;;32659:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32659:27:0;;32489:206::o;9840:103::-;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;9905:30:::1;9932:1;9905:18;:30::i;52354:61::-:0;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;52399:8:::1;:6;:8::i;54428:966::-:0;54487:16;54516:21;54540:16;54550:5;54540:9;:16::i;:::-;54567:18;54588:13;;54516:40;;-1:-1:-1;54567:18:0;;54516:40;-1:-1:-1;;;;;54704:28:0;;;;;-1:-1:-1;;;54704:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;54704:28:0;-1:-1:-1;54680:52:0;-1:-1:-1;51281:1:0;54770:582;54808:10;54804:1;:14;54770:582;;;54844:31;54878:14;;;:11;:14;;;;;;;;;54844:48;;;;;;;;;-1:-1:-1;;;;;54844:48:0;;;;-1:-1:-1;;;54844:48:0;;-1:-1:-1;;;;;54844:48:0;;;;;;;;-1:-1:-1;;;54844:48:0;;;;;;;;;;;;;;;;54913:73;;54958:8;;;54913:73;55010:14;;-1:-1:-1;;;;;55010:28:0;;55006:111;;55083:14;;;-1:-1:-1;55006:111:0;55162:5;-1:-1:-1;;;;;55141:26:0;:17;-1:-1:-1;;;;;55141:26:0;;55137:98;;;55214:1;55192:4;55197:13;;;;;;55192:19;;;;;;-1:-1:-1;;;55192:19:0;;;;;;;;;;;;;;:23;;;;;55137:98;55274:13;55259:11;:28;55255:82;;;55312:5;;;55255:82;54770:582;;54820:3;;54770:582;;;-1:-1:-1;55382:4:0;54428:966;-1:-1:-1;;;;;;54428:966:0:o;53108:86::-;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;53172:5:::1;:14:::0;53108:86::o;35402:104::-;35458:13;35491:7;35484:14;;;;;:::i;37012:287::-;-1:-1:-1;;;;;37111:24:0;;5675:10;37111:24;37107:54;;;37144:17;;-1:-1:-1;;;37144:17:0;;;;;;;;;;;37107:54;5675:10;37174:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37174:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37174:53:0;;;;;;;;;;37243:48;;8344:41:1;;;37174:42:0;;5675:10;37243:48;;8317:18:1;37243:48:0;;;;;;;37012:287;;:::o;38098:369::-;38265:28;38275:4;38281:2;38285:7;38265:9;:28::i;:::-;-1:-1:-1;;;;;38308:13:0;;12185:19;:23;;38308:76;;;;;38328:56;38359:4;38365:2;38369:7;38378:5;38328:30;:56::i;:::-;38327:57;38308:76;38304:156;;;38408:40;;-1:-1:-1;;;38408:40:0;;;;;;;;;;;38304:156;38098:369;;;;:::o;52949:96::-;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;53019:5:::1;:18:::0;;53027:10;;53019:5;-1:-1:-1;;53019:18:0::1;::::0;53027:10;53019:18;;::::1;;;;-1:-1:-1::0;;;53019:18:0::1;;;;;;;;;;;;;;52949:96:::0;:::o;51414:477::-;51487:13;51518:16;51526:7;51518;:16::i;:::-;51513:59;;51543:29;;-1:-1:-1;;;51543:29:0;;;;;;;;;;;51513:59;51586:6;;;;;;;51583:291;;51631:7;51625:21;;;;;:::i;:::-;:26;;;-1:-1:-1;51625:91:0;;;;;;;;;;;;;;;;;51678:13;51661:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;51618:98;51414:477;-1:-1:-1;;51414:477:0:o;51583:291::-;51772:7;51766:21;;;;;:::i;:::-;:26;;;-1:-1:-1;51766:96:0;;;;;;;;;;;;;;;;;51819:7;51828:18;:7;:16;:18::i;:::-;51802:54;;;;;;;;;:::i;51583:291::-;51414:477;;;:::o;54206:113::-;-1:-1:-1;;;;;32873:19:0;;54264:7;32873:19;;;:12;:19;;;;;:32;-1:-1:-1;;;32873:32:0;;-1:-1:-1;;;;;32873:32:0;54291:20;32777:137;52689:122;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;52773:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;52819:122::-:0;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;52901:14:::1;:32:::0;52819:122::o;55506:438::-;1845:1;2443:7;;:19;;2435:63;;;;-1:-1:-1;;;2435:63:0;;;;;;;:::i;:::-;1845:1;2576:7;:18;55602:16:::1;55593:5;::::0;::::1;;::::0;:25;::::1;;;;-1:-1:-1::0;;;55593:25:0::1;;;;;;;;;;55585:63;;;::::0;-1:-1:-1;;;55585:63:0;;10618:2:1;55585:63:0::1;::::0;::::1;10600:21:1::0;10657:2;10637:18;;;10630:30;-1:-1:-1;;;10676:18:1;;;10669:55;10741:18;;55585:63:0::1;10590:175:1::0;55585:63:0::1;55695:9;55683:8;55667:13;54371:7:::0;31998:13;-1:-1:-1;;31998:31:0;;54327:93;55667:13:::1;:24;;;;:::i;:::-;:37;;55659:68;;;::::0;-1:-1:-1;;;55659:68:0;;10972:2:1;55659:68:0::1;::::0;::::1;10954:21:1::0;11011:2;10991:18;;;10984:30;-1:-1:-1;;;11030:18:1;;;11023:48;11088:18;;55659:68:0::1;10944:168:1::0;55659:68:0::1;55757:14;;55746:8;:25;55738:65;;;::::0;-1:-1:-1;;;55738:65:0;;12028:2:1;55738:65:0::1;::::0;::::1;12010:21:1::0;12067:2;12047:18;;;12040:30;12106:29;12086:18;;;12079:57;12153:18;;55738:65:0::1;12000:177:1::0;55738:65:0::1;55842:9;55830:8;55822:5;;:16;;;;:::i;:::-;:29;55814:76;;;::::0;-1:-1:-1;;;55814:76:0;;12732:2:1;55814:76:0::1;::::0;::::1;12714:21:1::0;12771:2;12751:18;;;12744:30;12810:34;12790:18;;;12783:62;-1:-1:-1;;;12861:18:1;;;12854:32;12903:19;;55814:76:0::1;12704:224:1::0;55814:76:0::1;55903:33;5675:10:::0;55927:8:::1;55903:9;:33::i;:::-;-1:-1:-1::0;1801:1:0;2755:7;:22;55506:438::o;10098:201::-;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10187:22:0;::::1;10179:73;;;::::0;-1:-1:-1;;;10179:73:0;;9866:2:1;10179:73:0::1;::::0;::::1;9848:21:1::0;9905:2;9885:18;;;9878:30;9944:34;9924:18;;;9917:62;-1:-1:-1;;;9995:18:1;;;9988:36;10041:19;;10179:73:0::1;9838:228:1::0;10179:73:0::1;10263:28;10282:8;10263:18;:28::i;:::-;10098:201:::0;:::o;55952:274::-;9262:6;;-1:-1:-1;;;;;9262:6:0;5675:10;9409:23;9401:68;;;;-1:-1:-1;;;9401:68:0;;;;;;;:::i;:::-;1845:1:::1;2443:7;;:19;;2435:63;;;;-1:-1:-1::0;;;2435:63:0::1;;;;;;;:::i;:::-;1845:1;2576:7;:18:::0;56047:16:::2;56038:5;::::0;::::2;;::::0;:25;::::2;;;;-1:-1:-1::0;;;56038:25:0::2;;;;;;;;;;56030:63;;;::::0;-1:-1:-1;;;56030:63:0;;10618:2:1;56030:63:0::2;::::0;::::2;10600:21:1::0;10657:2;10637:18;;;10630:30;-1:-1:-1;;;10676:18:1;;;10669:55;10741:18;;56030:63:0::2;10590:175:1::0;56030:63:0::2;56140:9;56128:8;56112:13;54371:7:::0;31998:13;-1:-1:-1;;31998:31:0;;54327:93;56112:13:::2;:24;;;;:::i;:::-;:37;;56104:68;;;::::0;-1:-1:-1;;;56104:68:0;;10972:2:1;56104:68:0::2;::::0;::::2;10954:21:1::0;11011:2;10991:18;;;10984:30;-1:-1:-1;;;11030:18:1;;;11023:48;11088:18;;56104:68:0::2;10944:168:1::0;38722:174:0;38779:4;38822:7;51281:1;38803:26;;:53;;;;;38843:13;;38833:7;:23;38803:53;:85;;;;-1:-1:-1;;38861:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38861:27:0;;;;38860:28;;38722:174::o;46879:196::-;46994:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46994:29:0;-1:-1:-1;;;;;46994:29:0;;;;;;;;;47039:28;;46994:24;;47039:28;;;;;;;46879:196;;;:::o;41822:2130::-;41937:35;41975:21;41988:7;41975:12;:21::i;:::-;41937:59;;42035:4;-1:-1:-1;;;;;42013:26:0;:13;:18;;;-1:-1:-1;;;;;42013:26:0;;42009:67;;42048:28;;-1:-1:-1;;;42048:28:0;;;;;;;;;;;42009:67;42089:22;5675:10;-1:-1:-1;;;;;42115:20:0;;;;:73;;-1:-1:-1;42152:36:0;42169:4;5675:10;37370:164;:::i;42152:36::-;42115:126;;;-1:-1:-1;5675:10:0;42205:20;42217:7;42205:11;:20::i;:::-;-1:-1:-1;;;;;42205:36:0;;42115:126;42089:153;;42260:17;42255:66;;42286:35;;-1:-1:-1;;;42286:35:0;;;;;;;;;;;42255:66;-1:-1:-1;;;;;42336:16:0;;42332:52;;42361:23;;-1:-1:-1;;;42361:23:0;;;;;;;;;;;42332:52;42397:43;42419:4;42425:2;42429:7;42438:1;42397:21;:43::i;:::-;42505:35;42522:1;42526:7;42535:4;42505:8;:35::i;:::-;-1:-1:-1;;;;;42836:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;42836:31:0;;;-1:-1:-1;;;;;42836:31:0;;;-1:-1:-1;;42836:31:0;;;;;;;42882:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;42882:29:0;;;;;;;;;;;42962:20;;;:11;:20;;;;;;42997:18;;-1:-1:-1;;;;;;43030:49:0;;;;-1:-1:-1;;;43063:15:0;43030:49;;;;;;;;;;43353:11;;43413:24;;;;;43456:13;;42962:20;;43413:24;;43456:13;43452:384;;43666:13;;43651:11;:28;43647:174;;43704:20;;43773:28;;;;-1:-1:-1;;;;;43747:54:0;-1:-1:-1;;;43747:54:0;-1:-1:-1;;;;;;43747:54:0;;;-1:-1:-1;;;;;43704:20:0;;43747:54;;;;43647:174;41822:2130;;;43883:7;43879:2;-1:-1:-1;;;;;43864:27:0;43873:4;-1:-1:-1;;;;;43864:27:0;;;;;;;;;;;43902:42;41822:2130;;;;;:::o;8000:120::-;7012:7;;-1:-1:-1;;;7012:7:0;;;;7536:41;;;;-1:-1:-1;;;7536:41:0;;9169:2:1;7536:41:0;;;9151:21:1;9208:2;9188:18;;;9181:30;-1:-1:-1;;;9227:18:1;;;9220:50;9287:18;;7536:41:0;9141:170:1;7536:41:0;8059:7:::1;:15:::0;;-1:-1:-1;;;;8059:15:0::1;::::0;;8090:22:::1;5675:10:::0;8099:12:::1;8090:22;::::0;-1:-1:-1;;;;;7027:32:1;;;7009:51;;6997:2;6982:18;8090:22:0::1;;;;;;;8000:120::o:0;33870:1109::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33981:7:0;;51281:1;34030:23;;:47;;;;;34064:13;;34057:4;:20;34030:47;34026:886;;;34098:31;34132:17;;;:11;:17;;;;;;;;;34098:51;;;;;;;;;-1:-1:-1;;;;;34098:51:0;;;;-1:-1:-1;;;34098:51:0;;-1:-1:-1;;;;;34098:51:0;;;;;;;;-1:-1:-1;;;34098:51:0;;;;;;;;;;;;;;34168:729;;34218:14;;-1:-1:-1;;;;;34218:28:0;;34214:101;;34282:9;33870:1109;-1:-1:-1;;;33870:1109:0:o;34214:101::-;-1:-1:-1;;;34657:6:0;34702:17;;;;:11;:17;;;;;;;;;34690:29;;;;;;;;;-1:-1:-1;;;;;34690:29:0;;;;;-1:-1:-1;;;34690:29:0;;-1:-1:-1;;;;;34690:29:0;;;;;;;;-1:-1:-1;;;34690:29:0;;;;;;;;;;;;;34750:28;34746:109;;34818:9;33870:1109;-1:-1:-1;;;33870:1109:0:o;34746:109::-;34617:261;;;34026:886;;34940:31;;-1:-1:-1;;;34940:31:0;;;;;;;;;;;10459:191;10552:6;;;-1:-1:-1;;;;;10569:17:0;;;-1:-1:-1;;;;;;10569:17:0;;;;;;;10602:40;;10552:6;;;10569:17;10552:6;;10602:40;;10533:16;;10602:40;10459:191;;:::o;7741:118::-;7012:7;;-1:-1:-1;;;7012:7:0;;;;7266:9;7258:38;;;;-1:-1:-1;;;7258:38:0;;10273:2:1;7258:38:0;;;10255:21:1;10312:2;10292:18;;;10285:30;-1:-1:-1;;;10331:18:1;;;10324:46;10387:18;;7258:38:0;10245:166:1;7258:38:0;7801:7:::1;:14:::0;;-1:-1:-1;;;;7801:14:0::1;-1:-1:-1::0;;;7801:14:0::1;::::0;;7831:20:::1;7838:12;5675:10:::0;;5595:98;47567:667;47751:72;;-1:-1:-1;;;47751:72:0;;47730:4;;-1:-1:-1;;;;;47751:36:0;;;;;:72;;5675:10;;47802:4;;47808:7;;47817:5;;47751:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47751:72:0;;;;;;;;-1:-1:-1;;47751:72:0;;;;;;;;;;;;:::i;:::-;;;47747:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47985:13:0;;47981:235;;48031:40;;-1:-1:-1;;;48031:40:0;;;;;;;;;;;47981:235;48174:6;48168:13;48159:6;48155:2;48151:15;48144:38;47747:480;-1:-1:-1;;;;;;47870:55:0;-1:-1:-1;;;47870:55:0;;-1:-1:-1;47747:480:0;47567:667;;;;;;:::o;3157:723::-;3213:13;3434:10;3430:53;;-1:-1:-1;;3461:10:0;;;;;;;;;;;;-1:-1:-1;;;3461:10:0;;;;;3157:723::o;3430:53::-;3508:5;3493:12;3549:78;3556:9;;3549:78;;3582:8;;;;:::i;:::-;;-1:-1:-1;3605:10:0;;-1:-1:-1;3613:2:0;3605:10;;:::i;:::-;;;3549:78;;;3637:19;3669:6;-1:-1:-1;;;;;3659:17:0;;;;;-1:-1:-1;;;3659:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3659:17:0;;3637:39;;3687:154;3694:10;;3687:154;;3721:11;3731:1;3721:11;;:::i;:::-;;-1:-1:-1;3790:10:0;3798:2;3790:5;:10;:::i;:::-;3777:24;;:2;:24;:::i;:::-;3764:39;;3747:6;3754;3747:14;;;;;;-1:-1:-1;;;3747:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;3747:56:0;;;;;;;;-1:-1:-1;3818:11:0;3827:2;3818:11;;:::i;:::-;;;3687:154;;38904:104;38973:27;38983:2;38987:8;38973:27;;;;;;;;;;;;:9;:27::i;51991:251::-;7012:7;;-1:-1:-1;;;7012:7:0;;;;7266:9;7258:38;;;;-1:-1:-1;;;7258:38:0;;10273:2:1;7258:38:0;;;10255:21:1;10312:2;10292:18;;;10285:30;-1:-1:-1;;;10331:18:1;;;10324:46;10387:18;;7258:38:0;10245:166:1;7258:38:0;52178:56:::1;38098:369:::0;39371:163;39494:32;39500:2;39504:8;39514:5;39521:4;39932:20;39955:13;-1:-1:-1;;;;;39983:16:0;;39979:48;;40008:19;;-1:-1:-1;;;40008:19:0;;;;;;;;;;;39979:48;40042:13;40038:44;;40064:18;;-1:-1:-1;;;40064:18:0;;;;;;;;;;;40038:44;40095:61;40125:1;40129:2;40133:12;40147:8;40095:21;:61::i;:::-;-1:-1:-1;;;;;40433:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;40492:49:0;;-1:-1:-1;;;;;40433:44:0;;;;;;;40492:49;;;-1:-1:-1;;;;;40433:44:0;;;;;;40492:49;;;;;;;;;;;;;;;;40558:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;40608:66:0;;;;-1:-1:-1;;;40658:15:0;40608:66;;;;;;;;;;40558:25;40755:23;;;40799:4;:23;;;;-1:-1:-1;;;;;;40807:13:0;;12185:19;:23;;40807:15;40795:641;;;40843:314;40874:38;;40899:12;;-1:-1:-1;;;;;40874:38:0;;;40891:1;;40874:38;;40891:1;;40874:38;40940:69;40979:1;40983:2;40987:14;;;;;;41003:5;40940:30;:69::i;:::-;40935:174;;41045:40;;-1:-1:-1;;;41045:40:0;;;;;;;;;;;40935:174;41152:3;41136:12;:19;;40843:314;;41238:12;41221:13;;:29;41217:43;;41252:8;;;41217:43;40795:641;;;41301:120;41332:40;;41357:14;;;;;-1:-1:-1;;;;;41332:40:0;;;41349:1;;41332:40;;41349:1;;41332:40;41416:3;41400:12;:19;;41301:120;;40795:641;-1:-1:-1;41450:13:0;:28;41500:60;38098:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;-1:-1:-1;;;;;149:2:1;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;828:196;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;:::-;979:39;898:126;-1:-1:-1;;;898:126:1:o;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;-1:-1:-1;;;;;2076:6:1;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:290::-;3586:6;3639:2;3627:9;3618:7;3614:23;3610:32;3607:2;;;3660:6;3652;3645:22;3607:2;3704:9;3691:23;3743:1;3736:5;3733:12;3723:2;;3764:6;3756;3749:22;3808:480;3877:6;3930:2;3918:9;3909:7;3905:23;3901:32;3898:2;;;3951:6;3943;3936:22;3898:2;3996:9;3983:23;-1:-1:-1;;;;;4021:6:1;4018:30;4015:2;;;4066:6;4058;4051:22;4015:2;4094:22;;4147:4;4139:13;;4135:27;-1:-1:-1;4125:2:1;;4181:6;4173;4166:22;4125:2;4209:73;4274:7;4269:2;4256:16;4251:2;4247;4243:11;4209:73;:::i;4293:190::-;4352:6;4405:2;4393:9;4384:7;4380:23;4376:32;4373:2;;;4426:6;4418;4411:22;4373:2;-1:-1:-1;4454:23:1;;4363:120;-1:-1:-1;4363:120:1:o;4488:257::-;4529:3;4567:5;4561:12;4594:6;4589:3;4582:19;4610:63;4666:6;4659:4;4654:3;4650:14;4643:4;4636:5;4632:16;4610:63;:::i;:::-;4727:2;4706:15;-1:-1:-1;;4702:29:1;4693:39;;;;4734:4;4689:50;;4537:208;-1:-1:-1;;4537:208:1:o;4750:979::-;4835:12;;4800:3;;4892:1;4912:18;;;;4965;;;;4992:2;;5046:4;5038:6;5034:17;5024:27;;4992:2;5072;5120;5112:6;5109:14;5089:18;5086:38;5083:2;;;-1:-1:-1;;;5147:33:1;;5203:4;5200:1;5193:15;5233:4;5154:3;5221:17;5083:2;5264:18;5291:104;;;;5409:1;5404:319;;;;5257:466;;5291:104;-1:-1:-1;;5324:24:1;;5312:37;;5369:16;;;;-1:-1:-1;5291:104:1;;5404:319;13870:4;13889:17;;;13939:4;13923:21;;5498:1;5512:165;5526:6;5523:1;5520:13;5512:165;;;5604:14;;5591:11;;;5584:35;5647:16;;;;5541:10;;5512:165;;;5516:3;;5706:6;5701:3;5697:16;5690:23;;5257:466;;;;;;;4808:921;;;;:::o;5734:543::-;6011:3;6039:38;6073:3;6065:6;6039:38;:::i;:::-;6106:6;6100:13;6122:52;6167:6;6163:2;6156:4;6148:6;6144:17;6122:52;:::i;:::-;-1:-1:-1;;;6196:15:1;;6220:22;;;6269:1;6258:13;;6019:258;-1:-1:-1;;;;6019:258:1:o;6282:366::-;6511:3;6539:38;6573:3;6565:6;6539:38;:::i;:::-;-1:-1:-1;;;6586:29:1;;6639:2;6631:11;;6519:129;-1:-1:-1;;;6519:129:1:o;7071:488::-;-1:-1:-1;;;;;7340:15:1;;;7322:34;;7392:15;;7387:2;7372:18;;7365:43;7439:2;7424:18;;7417:34;;;7487:3;7482:2;7467:18;;7460:31;;;7265:4;;7508:45;;7533:19;;7525:6;7508:45;:::i;:::-;7500:53;7274:285;-1:-1:-1;;;;;;7274:285:1:o;7564:635::-;7735:2;7787:21;;;7857:13;;7760:18;;;7879:22;;;7706:4;;7735:2;7958:15;;;;7932:2;7917:18;;;7706:4;8004:169;8018:6;8015:1;8012:13;8004:169;;;8079:13;;8067:26;;8148:15;;;;8113:12;;;;8040:1;8033:9;8004:169;;;-1:-1:-1;8190:3:1;;7715:484;-1:-1:-1;;;;;;7715:484:1:o;8396:342::-;8542:2;8527:18;;8575:1;8564:13;;8554:2;;8620:10;8615:3;8611:20;8608:1;8601:31;8655:4;8652:1;8645:15;8683:4;8680:1;8673:15;8554:2;8707:25;;;8509:229;:::o;8743:219::-;8892:2;8881:9;8874:21;8855:4;8912:44;8952:2;8941:9;8937:18;8929:6;8912:44;:::i;11117:356::-;11319:2;11301:21;;;11338:18;;;11331:30;11397:34;11392:2;11377:18;;11370:62;11464:2;11449:18;;11291:182::o;12933:355::-;13135:2;13117:21;;;13174:2;13154:18;;;13147:30;13213:33;13208:2;13193:18;;13186:61;13279:2;13264:18;;13107:181::o;13955:128::-;13995:3;14026:1;14022:6;14019:1;14016:13;14013:2;;;14032:18;;:::i;:::-;-1:-1:-1;14068:9:1;;14003:80::o;14088:120::-;14128:1;14154;14144:2;;14159:18;;:::i;:::-;-1:-1:-1;14193:9:1;;14134:74::o;14213:168::-;14253:7;14319:1;14315;14311:6;14307:14;14304:1;14301:21;14296:1;14289:9;14282:17;14278:45;14275:2;;;14326:18;;:::i;:::-;-1:-1:-1;14366:9:1;;14265:116::o;14386:125::-;14426:4;14454:1;14451;14448:8;14445:2;;;14459:18;;:::i;:::-;-1:-1:-1;14496:9:1;;14435:76::o;14516:258::-;14588:1;14598:113;14612:6;14609:1;14606:13;14598:113;;;14688:11;;;14682:18;14669:11;;;14662:39;14634:2;14627:10;14598:113;;;14729:6;14726:1;14723:13;14720:2;;;-1:-1:-1;;14764:1:1;14746:16;;14739:27;14569:205::o;14779:380::-;14858:1;14854:12;;;;14901;;;14922:2;;14976:4;14968:6;14964:17;14954:27;;14922:2;15029;15021:6;15018:14;14998:18;14995:38;14992:2;;;15075:10;15070:3;15066:20;15063:1;15056:31;15110:4;15107:1;15100:15;15138:4;15135:1;15128:15;14992:2;;14834:325;;;:::o;15164:135::-;15203:3;-1:-1:-1;;15224:17:1;;15221:2;;;15244:18;;:::i;:::-;-1:-1:-1;15291:1:1;15280:13;;15211:88::o;15304:112::-;15336:1;15362;15352:2;;15367:18;;:::i;:::-;-1:-1:-1;15401:9:1;;15342:74::o;15421:127::-;15482:10;15477:3;15473:20;15470:1;15463:31;15513:4;15510:1;15503:15;15537:4;15534:1;15527:15;15553:127;15614:10;15609:3;15605:20;15602:1;15595:31;15645:4;15642:1;15635:15;15669:4;15666:1;15659:15;15685:127;15746:10;15741:3;15737:20;15734:1;15727:31;15777:4;15774:1;15767:15;15801:4;15798:1;15791:15;15817:131;-1:-1:-1;;;;;;15891:32:1;;15881:43;;15871:2;;15938:1;15935;15928:12

Swarm Source

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