ETH Price: $3,105.12 (+0.97%)
Gas: 6 Gwei

Token

STARLIGHT POD - Phygital Sweater by Ortho (STARLIGHT POD)
 

Overview

Max Total Supply

300 STARLIGHT POD

Holders

54

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
1 STARLIGHT POD
0xf01e60ac88c906ab8553ef6c6afd78d6f96a4df1
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:
OrthorPod

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-04-02
*/

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.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
                /// @solidity memory-safe-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.7.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 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/IERC721Enumerable.sol


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

        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 overridden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        _requireMinted(tokenId);

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Reverts if the `tokenId` has not been minted yet.
     */
    function _requireMinted(uint256 tokenId) internal view virtual {
        require(_exists(tokenId), "ERC721: invalid token ID");
    }

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

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

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

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


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

pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

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

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (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 Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

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

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

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        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/utils/math/SafeMath.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/idamura.sol

contract OrthorPod is Ownable, ERC721Enumerable, Pausable {
    using Strings for uint256;
    using SafeMath for uint256;

    string private baseURL = 'https://rpc.ortho.fashion/pod/metadata/';
    uint256 private totalNFT;

    constructor() ERC721("STARLIGHT POD - Phygital Sweater by Ortho", "STARLIGHT POD") {}

    function mintBatch(address[] calldata users, uint256[] calldata amounts) external onlyOwner {
        require(users.length == amounts.length, "Error not correct");
        for(uint i=0; i < users.length; i++) {
            _safeMintBatch(users[i], amounts[i]);
        }
    }


    function _safeMintBatch(address user, uint256 amount) internal {
        for(uint i =1; i <= amount; i++) {
            _safeMint(user, totalNFT.add(i));
        }
        totalNFT = totalNFT.add(amount);
    }

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

    function setBaseURI(string memory _uri) external onlyOwner {
        baseURL = _uri;
    }

    function tokenURI(uint256 tokenId)
    public
    view
    override
    returns (string memory)
    {
        return string(abi.encodePacked(_baseURI(), tokenId.toString()));
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from,to,tokenId);
    }

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._afterTokenTransfer(from,to,tokenId);
    }

    function pause() external onlyOwner whenNotPaused {
        _pause();
    }

    function unpause() external onlyOwner whenPaused {
        _unpause();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"users","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"mintBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052602760808181529062001ff460a039600c906200002290826200019f565b503480156200003057600080fd5b5060405180606001604052806029815260200162001fcb6029913960408051808201909152600d81526c14d51054931251d215081413d1609a1b60208201526200007a33620000aa565b60016200008883826200019f565b5060026200009782826200019f565b5050600b805460ff19169055506200026b565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200012557607f821691505b6020821081036200014657634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200019a57600081815260208120601f850160051c81016020861015620001755750805b601f850160051c820191505b81811015620001965782815560010162000181565b5050505b505050565b81516001600160401b03811115620001bb57620001bb620000fa565b620001d381620001cc845462000110565b846200014c565b602080601f8311600181146200020b5760008415620001f25750858301515b600019600386901b1c1916600185901b17855562000196565b600085815260208120601f198616915b828110156200023c578886015182559484019460019091019084016200021b565b50858210156200025b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b611d50806200027b6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c357806395d89b411161007c57806395d89b41146102b8578063a22cb465146102c0578063b88d4fde146102d3578063c87b56dd146102e6578063e985e9c5146102f9578063f2fde38b1461033557600080fd5b80636352211e1461025e57806370a0823114610271578063715018a6146102845780637c88e3d91461028c5780638456cb591461029f5780638da5cb5b146102a757600080fd5b80632f745c59116101155780632f745c59146101ff5780633f4ba83a1461021257806342842e0e1461021a5780634f6ccce71461022d57806355f804b3146102405780635c975abb1461025357600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101ec575b600080fd5b61017061016b36600461163c565b610348565b60405190151581526020015b60405180910390f35b61018d610373565b60405161017c91906116a9565b6101ad6101a83660046116bc565b610405565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046116f1565b61042c565b005b6009545b60405190815260200161017c565b6101d86101fa36600461171b565b610546565b6101de61020d3660046116f1565b610577565b6101d861060d565b6101d861022836600461171b565b610627565b6101de61023b3660046116bc565b610642565b6101d861024e3660046117e3565b6106d5565b600b5460ff16610170565b6101ad61026c3660046116bc565b6106ed565b6101de61027f36600461182c565b61074d565b6101d86107d3565b6101d861029a366004611893565b6107e5565b6101d861089c565b6000546001600160a01b03166101ad565b61018d6108b4565b6101d86102ce3660046118ff565b6108c3565b6101d86102e136600461193b565b6108ce565b61018d6102f43660046116bc565b610906565b6101706103073660046119b7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101d861034336600461182c565b610940565b60006001600160e01b0319821663780e9d6360e01b148061036d575061036d826109b9565b92915050565b606060018054610382906119ea565b80601f01602080910402602001604051908101604052809291908181526020018280546103ae906119ea565b80156103fb5780601f106103d0576101008083540402835291602001916103fb565b820191906000526020600020905b8154815290600101906020018083116103de57829003601f168201915b5050505050905090565b600061041082610a09565b506000908152600560205260409020546001600160a01b031690565b6000610437826106ed565b9050806001600160a01b0316836001600160a01b0316036104a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104c557506104c58133610307565b6105375760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016104a0565b6105418383610a68565b505050565b6105503382610ad6565b61056c5760405162461bcd60e51b81526004016104a090611a24565b610541838383610b55565b60006105828361074d565b82106105e45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104a0565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610615610cfc565b61061d610d56565b610625610d9f565b565b610541838383604051806020016040528060008152506108ce565b600061064d60095490565b82106106b05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104a0565b600982815481106106c3576106c3611a72565b90600052602060002001549050919050565b6106dd610cfc565b600c6106e98282611ad6565b5050565b6000818152600360205260408120546001600160a01b03168061036d5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a0565b60006001600160a01b0382166107b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104a0565b506001600160a01b031660009081526004602052604090205490565b6107db610cfc565b6106256000610df1565b6107ed610cfc565b8281146108305760405162461bcd60e51b8152602060048201526011602482015270115c9c9bdc881b9bdd0818dbdc9c9958dd607a1b60448201526064016104a0565b60005b838110156108955761088385858381811061085057610850611a72565b9050602002016020810190610865919061182c565b84848481811061087757610877611a72565b90506020020135610e41565b8061088d81611bac565b915050610833565b5050505050565b6108a4610cfc565b6108ac610e90565b610625610ed6565b606060028054610382906119ea565b6106e9338383610f13565b6108d83383610ad6565b6108f45760405162461bcd60e51b81526004016104a090611a24565b61090084848484610fe1565b50505050565b6060610910611014565b61091983611023565b60405160200161092a929190611bc5565b6040516020818303038152906040529050919050565b610948610cfc565b6001600160a01b0381166109ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a0565b6109b681610df1565b50565b60006001600160e01b031982166380ac58cd60e01b14806109ea57506001600160e01b03198216635b5e139f60e01b145b8061036d57506301ffc9a760e01b6001600160e01b031983161461036d565b6000818152600360205260409020546001600160a01b03166109b65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a0565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a9d826106ed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ae2836106ed565b9050806001600160a01b0316846001600160a01b03161480610b2957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b80610b4d5750836001600160a01b0316610b4284610405565b6001600160a01b0316145b949350505050565b826001600160a01b0316610b68826106ed565b6001600160a01b031614610bcc5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104a0565b6001600160a01b038216610c2e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104a0565b610c39838383611124565b610c44600082610a68565b6001600160a01b0383166000908152600460205260408120805460019290610c6d908490611bf4565b90915550506001600160a01b0382166000908152600460205260408120805460019290610c9b908490611c07565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b031633146106255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a0565b600b5460ff166106255760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104a0565b610da7610d56565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60015b818111610e7b57610e6983610e6483600d5461112f90919063ffffffff16565b611142565b80610e7381611bac565b915050610e44565b50600d54610e89908261112f565b600d555050565b600b5460ff16156106255760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016104a0565b610ede610e90565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dd43390565b816001600160a01b0316836001600160a01b031603610f745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104a0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610fec848484610b55565b610ff88484848461115c565b6109005760405162461bcd60e51b81526004016104a090611c1a565b6060600c8054610382906119ea565b60608160000361104a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611074578061105e81611bac565b915061106d9050600a83611c82565b915061104e565b60008167ffffffffffffffff81111561108f5761108f611757565b6040519080825280601f01601f1916602001820160405280156110b9576020820181803683370190505b5090505b8415610b4d576110ce600183611bf4565b91506110db600a86611c96565b6110e6906030611c07565b60f81b8183815181106110fb576110fb611a72565b60200101906001600160f81b031916908160001a90535061111d600a86611c82565b94506110bd565b61054183838361125d565b600061113b8284611c07565b9392505050565b6106e9828260405180602001604052806000815250611315565b60006001600160a01b0384163b1561125257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111a0903390899088908890600401611caa565b6020604051808303816000875af19250505080156111db575060408051601f3d908101601f191682019092526111d891810190611ce7565b60015b611238573d808015611209576040519150601f19603f3d011682016040523d82523d6000602084013e61120e565b606091505b5080516000036112305760405162461bcd60e51b81526004016104a090611c1a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b4d565b506001949350505050565b6001600160a01b0383166112b8576112b381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6112db565b816001600160a01b0316836001600160a01b0316146112db576112db8382611348565b6001600160a01b0382166112f257610541816113e5565b826001600160a01b0316826001600160a01b031614610541576105418282611494565b61131f83836114d8565b61132c600084848461115c565b6105415760405162461bcd60e51b81526004016104a090611c1a565b600060016113558461074d565b61135f9190611bf4565b6000838152600860205260409020549091508082146113b2576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906113f790600190611bf4565b6000838152600a60205260408120546009805493945090928490811061141f5761141f611a72565b90600052602060002001549050806009838154811061144057611440611a72565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061147857611478611d04565b6001900381819060005260206000200160009055905550505050565b600061149f8361074d565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b03821661152e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104a0565b6000818152600360205260409020546001600160a01b0316156115935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a0565b61159f60008383611124565b6001600160a01b03821660009081526004602052604081208054600192906115c8908490611c07565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146109b657600080fd5b60006020828403121561164e57600080fd5b813561113b81611626565b60005b8381101561167457818101518382015260200161165c565b50506000910152565b60008151808452611695816020860160208601611659565b601f01601f19169290920160200192915050565b60208152600061113b602083018461167d565b6000602082840312156116ce57600080fd5b5035919050565b80356001600160a01b03811681146116ec57600080fd5b919050565b6000806040838503121561170457600080fd5b61170d836116d5565b946020939093013593505050565b60008060006060848603121561173057600080fd5b611739846116d5565b9250611747602085016116d5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561178857611788611757565b604051601f8501601f19908116603f011681019082821181831017156117b0576117b0611757565b816040528093508581528686860111156117c957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117f557600080fd5b813567ffffffffffffffff81111561180c57600080fd5b8201601f8101841361181d57600080fd5b610b4d8482356020840161176d565b60006020828403121561183e57600080fd5b61113b826116d5565b60008083601f84011261185957600080fd5b50813567ffffffffffffffff81111561187157600080fd5b6020830191508360208260051b850101111561188c57600080fd5b9250929050565b600080600080604085870312156118a957600080fd5b843567ffffffffffffffff808211156118c157600080fd5b6118cd88838901611847565b909650945060208701359150808211156118e657600080fd5b506118f387828801611847565b95989497509550505050565b6000806040838503121561191257600080fd5b61191b836116d5565b91506020830135801515811461193057600080fd5b809150509250929050565b6000806000806080858703121561195157600080fd5b61195a856116d5565b9350611968602086016116d5565b925060408501359150606085013567ffffffffffffffff81111561198b57600080fd5b8501601f8101871361199c57600080fd5b6119ab8782356020840161176d565b91505092959194509250565b600080604083850312156119ca57600080fd5b6119d3836116d5565b91506119e1602084016116d5565b90509250929050565b600181811c908216806119fe57607f821691505b602082108103611a1e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f82111561054157600081815260208120601f850160051c81016020861015611aaf5750805b601f850160051c820191505b81811015611ace57828155600101611abb565b505050505050565b815167ffffffffffffffff811115611af057611af0611757565b611b0481611afe84546119ea565b84611a88565b602080601f831160018114611b395760008415611b215750858301515b600019600386901b1c1916600185901b178555611ace565b600085815260208120601f198616915b82811015611b6857888601518255948401946001909101908401611b49565b5085821015611b865787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600060018201611bbe57611bbe611b96565b5060010190565b60008351611bd7818460208801611659565b835190830190611beb818360208801611659565b01949350505050565b8181038181111561036d5761036d611b96565b8082018082111561036d5761036d611b96565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611c9157611c91611c6c565b500490565b600082611ca557611ca5611c6c565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cdd9083018461167d565b9695505050505050565b600060208284031215611cf957600080fd5b815161113b81611626565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f87543c247f1000265f23e1dc529db9b81e517ef8dbadc9f6aea8d33bbd16c9664736f6c63430008120033535441524c4947485420504f44202d20506879676974616c2053776561746572206279204f7274686f68747470733a2f2f7270632e6f7274686f2e66617368696f6e2f706f642f6d657461646174612f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80636352211e116100c357806395d89b411161007c57806395d89b41146102b8578063a22cb465146102c0578063b88d4fde146102d3578063c87b56dd146102e6578063e985e9c5146102f9578063f2fde38b1461033557600080fd5b80636352211e1461025e57806370a0823114610271578063715018a6146102845780637c88e3d91461028c5780638456cb591461029f5780638da5cb5b146102a757600080fd5b80632f745c59116101155780632f745c59146101ff5780633f4ba83a1461021257806342842e0e1461021a5780634f6ccce71461022d57806355f804b3146102405780635c975abb1461025357600080fd5b806301ffc9a71461015d57806306fdde0314610185578063081812fc1461019a578063095ea7b3146101c557806318160ddd146101da57806323b872dd146101ec575b600080fd5b61017061016b36600461163c565b610348565b60405190151581526020015b60405180910390f35b61018d610373565b60405161017c91906116a9565b6101ad6101a83660046116bc565b610405565b6040516001600160a01b03909116815260200161017c565b6101d86101d33660046116f1565b61042c565b005b6009545b60405190815260200161017c565b6101d86101fa36600461171b565b610546565b6101de61020d3660046116f1565b610577565b6101d861060d565b6101d861022836600461171b565b610627565b6101de61023b3660046116bc565b610642565b6101d861024e3660046117e3565b6106d5565b600b5460ff16610170565b6101ad61026c3660046116bc565b6106ed565b6101de61027f36600461182c565b61074d565b6101d86107d3565b6101d861029a366004611893565b6107e5565b6101d861089c565b6000546001600160a01b03166101ad565b61018d6108b4565b6101d86102ce3660046118ff565b6108c3565b6101d86102e136600461193b565b6108ce565b61018d6102f43660046116bc565b610906565b6101706103073660046119b7565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6101d861034336600461182c565b610940565b60006001600160e01b0319821663780e9d6360e01b148061036d575061036d826109b9565b92915050565b606060018054610382906119ea565b80601f01602080910402602001604051908101604052809291908181526020018280546103ae906119ea565b80156103fb5780601f106103d0576101008083540402835291602001916103fb565b820191906000526020600020905b8154815290600101906020018083116103de57829003601f168201915b5050505050905090565b600061041082610a09565b506000908152600560205260409020546001600160a01b031690565b6000610437826106ed565b9050806001600160a01b0316836001600160a01b0316036104a95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b03821614806104c557506104c58133610307565b6105375760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c000060648201526084016104a0565b6105418383610a68565b505050565b6105503382610ad6565b61056c5760405162461bcd60e51b81526004016104a090611a24565b610541838383610b55565b60006105828361074d565b82106105e45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016104a0565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b610615610cfc565b61061d610d56565b610625610d9f565b565b610541838383604051806020016040528060008152506108ce565b600061064d60095490565b82106106b05760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016104a0565b600982815481106106c3576106c3611a72565b90600052602060002001549050919050565b6106dd610cfc565b600c6106e98282611ad6565b5050565b6000818152600360205260408120546001600160a01b03168061036d5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a0565b60006001600160a01b0382166107b75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016104a0565b506001600160a01b031660009081526004602052604090205490565b6107db610cfc565b6106256000610df1565b6107ed610cfc565b8281146108305760405162461bcd60e51b8152602060048201526011602482015270115c9c9bdc881b9bdd0818dbdc9c9958dd607a1b60448201526064016104a0565b60005b838110156108955761088385858381811061085057610850611a72565b9050602002016020810190610865919061182c565b84848481811061087757610877611a72565b90506020020135610e41565b8061088d81611bac565b915050610833565b5050505050565b6108a4610cfc565b6108ac610e90565b610625610ed6565b606060028054610382906119ea565b6106e9338383610f13565b6108d83383610ad6565b6108f45760405162461bcd60e51b81526004016104a090611a24565b61090084848484610fe1565b50505050565b6060610910611014565b61091983611023565b60405160200161092a929190611bc5565b6040516020818303038152906040529050919050565b610948610cfc565b6001600160a01b0381166109ad5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a0565b6109b681610df1565b50565b60006001600160e01b031982166380ac58cd60e01b14806109ea57506001600160e01b03198216635b5e139f60e01b145b8061036d57506301ffc9a760e01b6001600160e01b031983161461036d565b6000818152600360205260409020546001600160a01b03166109b65760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016104a0565b600081815260056020526040902080546001600160a01b0319166001600160a01b0384169081179091558190610a9d826106ed565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600080610ae2836106ed565b9050806001600160a01b0316846001600160a01b03161480610b2957506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b80610b4d5750836001600160a01b0316610b4284610405565b6001600160a01b0316145b949350505050565b826001600160a01b0316610b68826106ed565b6001600160a01b031614610bcc5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b60648201526084016104a0565b6001600160a01b038216610c2e5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016104a0565b610c39838383611124565b610c44600082610a68565b6001600160a01b0383166000908152600460205260408120805460019290610c6d908490611bf4565b90915550506001600160a01b0382166000908152600460205260408120805460019290610c9b908490611c07565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000546001600160a01b031633146106255760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a0565b600b5460ff166106255760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016104a0565b610da7610d56565b600b805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60015b818111610e7b57610e6983610e6483600d5461112f90919063ffffffff16565b611142565b80610e7381611bac565b915050610e44565b50600d54610e89908261112f565b600d555050565b600b5460ff16156106255760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016104a0565b610ede610e90565b600b805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258610dd43390565b816001600160a01b0316836001600160a01b031603610f745760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016104a0565b6001600160a01b03838116600081815260066020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b610fec848484610b55565b610ff88484848461115c565b6109005760405162461bcd60e51b81526004016104a090611c1a565b6060600c8054610382906119ea565b60608160000361104a5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611074578061105e81611bac565b915061106d9050600a83611c82565b915061104e565b60008167ffffffffffffffff81111561108f5761108f611757565b6040519080825280601f01601f1916602001820160405280156110b9576020820181803683370190505b5090505b8415610b4d576110ce600183611bf4565b91506110db600a86611c96565b6110e6906030611c07565b60f81b8183815181106110fb576110fb611a72565b60200101906001600160f81b031916908160001a90535061111d600a86611c82565b94506110bd565b61054183838361125d565b600061113b8284611c07565b9392505050565b6106e9828260405180602001604052806000815250611315565b60006001600160a01b0384163b1561125257604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906111a0903390899088908890600401611caa565b6020604051808303816000875af19250505080156111db575060408051601f3d908101601f191682019092526111d891810190611ce7565b60015b611238573d808015611209576040519150601f19603f3d011682016040523d82523d6000602084013e61120e565b606091505b5080516000036112305760405162461bcd60e51b81526004016104a090611c1a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050610b4d565b506001949350505050565b6001600160a01b0383166112b8576112b381600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b6112db565b816001600160a01b0316836001600160a01b0316146112db576112db8382611348565b6001600160a01b0382166112f257610541816113e5565b826001600160a01b0316826001600160a01b031614610541576105418282611494565b61131f83836114d8565b61132c600084848461115c565b6105415760405162461bcd60e51b81526004016104a090611c1a565b600060016113558461074d565b61135f9190611bf4565b6000838152600860205260409020549091508082146113b2576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b6009546000906113f790600190611bf4565b6000838152600a60205260408120546009805493945090928490811061141f5761141f611a72565b90600052602060002001549050806009838154811061144057611440611a72565b6000918252602080832090910192909255828152600a9091526040808220849055858252812055600980548061147857611478611d04565b6001900381819060005260206000200160009055905550505050565b600061149f8361074d565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b03821661152e5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016104a0565b6000818152600360205260409020546001600160a01b0316156115935760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016104a0565b61159f60008383611124565b6001600160a01b03821660009081526004602052604081208054600192906115c8908490611c07565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6001600160e01b0319811681146109b657600080fd5b60006020828403121561164e57600080fd5b813561113b81611626565b60005b8381101561167457818101518382015260200161165c565b50506000910152565b60008151808452611695816020860160208601611659565b601f01601f19169290920160200192915050565b60208152600061113b602083018461167d565b6000602082840312156116ce57600080fd5b5035919050565b80356001600160a01b03811681146116ec57600080fd5b919050565b6000806040838503121561170457600080fd5b61170d836116d5565b946020939093013593505050565b60008060006060848603121561173057600080fd5b611739846116d5565b9250611747602085016116d5565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561178857611788611757565b604051601f8501601f19908116603f011681019082821181831017156117b0576117b0611757565b816040528093508581528686860111156117c957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156117f557600080fd5b813567ffffffffffffffff81111561180c57600080fd5b8201601f8101841361181d57600080fd5b610b4d8482356020840161176d565b60006020828403121561183e57600080fd5b61113b826116d5565b60008083601f84011261185957600080fd5b50813567ffffffffffffffff81111561187157600080fd5b6020830191508360208260051b850101111561188c57600080fd5b9250929050565b600080600080604085870312156118a957600080fd5b843567ffffffffffffffff808211156118c157600080fd5b6118cd88838901611847565b909650945060208701359150808211156118e657600080fd5b506118f387828801611847565b95989497509550505050565b6000806040838503121561191257600080fd5b61191b836116d5565b91506020830135801515811461193057600080fd5b809150509250929050565b6000806000806080858703121561195157600080fd5b61195a856116d5565b9350611968602086016116d5565b925060408501359150606085013567ffffffffffffffff81111561198b57600080fd5b8501601f8101871361199c57600080fd5b6119ab8782356020840161176d565b91505092959194509250565b600080604083850312156119ca57600080fd5b6119d3836116d5565b91506119e1602084016116d5565b90509250929050565b600181811c908216806119fe57607f821691505b602082108103611a1e57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b601f82111561054157600081815260208120601f850160051c81016020861015611aaf5750805b601f850160051c820191505b81811015611ace57828155600101611abb565b505050505050565b815167ffffffffffffffff811115611af057611af0611757565b611b0481611afe84546119ea565b84611a88565b602080601f831160018114611b395760008415611b215750858301515b600019600386901b1c1916600185901b178555611ace565b600085815260208120601f198616915b82811015611b6857888601518255948401946001909101908401611b49565b5085821015611b865787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600060018201611bbe57611bbe611b96565b5060010190565b60008351611bd7818460208801611659565b835190830190611beb818360208801611659565b01949350505050565b8181038181111561036d5761036d611b96565b8082018082111561036d5761036d611b96565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082611c9157611c91611c6c565b500490565b600082611ca557611ca5611c6c565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611cdd9083018461167d565b9695505050505050565b600060208284031215611cf957600080fd5b815161113b81611626565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220f87543c247f1000265f23e1dc529db9b81e517ef8dbadc9f6aea8d33bbd16c9664736f6c63430008120033

Deployed Bytecode Sourcemap

58630:1818:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40052:224;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;40052:224:0;;;;;;;;26786:100;;;:::i;:::-;;;;;;;:::i;28299:171::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;28299:171:0;1533:203:1;27816:417:0;;;;;;:::i;:::-;;:::i;:::-;;40692:113;40780:10;:17;40692:113;;;2324:25:1;;;2312:2;2297:18;40692:113:0;2178:177:1;28999:336:0;;;;;;:::i;:::-;;:::i;40360:256::-;;;;;;:::i;:::-;;:::i;60367:78::-;;;:::i;29406:185::-;;;;;;:::i;:::-;;:::i;40882:233::-;;;;;;:::i;:::-;;:::i;59583:92::-;;;;;;:::i;:::-;;:::i;50573:86::-;50644:7;;;;50573:86;;26497:222;;;;;;:::i;:::-;;:::i;26228:207::-;;;;;;:::i;:::-;;:::i;48083:103::-;;;:::i;58961:281::-;;;;;;:::i;:::-;;:::i;60282:77::-;;;:::i;47435:87::-;47481:7;47508:6;-1:-1:-1;;;;;47508:6:0;47435:87;;26955:104;;;:::i;28542:155::-;;;;;;:::i;:::-;;:::i;29662:323::-;;;;;;:::i;:::-;;:::i;59683:187::-;;;;;;:::i;:::-;;:::i;28768:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;28889:25:0;;;28865:4;28889:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28768:164;48341:201;;;;;;:::i;:::-;;:::i;40052:224::-;40154:4;-1:-1:-1;;;;;;40178:50:0;;-1:-1:-1;;;40178:50:0;;:90;;;40232:36;40256:11;40232:23;:36::i;:::-;40171:97;40052:224;-1:-1:-1;;40052:224:0:o;26786:100::-;26840:13;26873:5;26866:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26786:100;:::o;28299:171::-;28375:7;28395:23;28410:7;28395:14;:23::i;:::-;-1:-1:-1;28438:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28438:24:0;;28299:171::o;27816:417::-;27897:13;27913:23;27928:7;27913:14;:23::i;:::-;27897:39;;27961:5;-1:-1:-1;;;;;27955:11:0;:2;-1:-1:-1;;;;;27955:11:0;;27947:57;;;;-1:-1:-1;;;27947:57:0;;7135:2:1;27947:57:0;;;7117:21:1;7174:2;7154:18;;;7147:30;7213:34;7193:18;;;7186:62;-1:-1:-1;;;7264:18:1;;;7257:31;7305:19;;27947:57:0;;;;;;;;;24318:10;-1:-1:-1;;;;;28039:21:0;;;;:62;;-1:-1:-1;28064:37:0;28081:5;24318:10;28768:164;:::i;28064:37::-;28017:174;;;;-1:-1:-1;;;28017:174:0;;7537:2:1;28017:174:0;;;7519:21:1;7576:2;7556:18;;;7549:30;7615:34;7595:18;;;7588:62;7686:32;7666:18;;;7659:60;7736:19;;28017:174:0;7335:426:1;28017:174:0;28204:21;28213:2;28217:7;28204:8;:21::i;:::-;27886:347;27816:417;;:::o;28999:336::-;29194:41;24318:10;29227:7;29194:18;:41::i;:::-;29186:100;;;;-1:-1:-1;;;29186:100:0;;;;;;;:::i;:::-;29299:28;29309:4;29315:2;29319:7;29299:9;:28::i;40360:256::-;40457:7;40493:23;40510:5;40493:16;:23::i;:::-;40485:5;:31;40477:87;;;;-1:-1:-1;;;40477:87:0;;8383:2:1;40477:87:0;;;8365:21:1;8422:2;8402:18;;;8395:30;8461:34;8441:18;;;8434:62;-1:-1:-1;;;8512:18:1;;;8505:41;8563:19;;40477:87:0;8181:407:1;40477:87:0;-1:-1:-1;;;;;;40582:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40360:256::o;60367:78::-;47321:13;:11;:13::i;:::-;50437:16:::1;:14;:16::i;:::-;60427:10:::2;:8;:10::i;:::-;60367:78::o:0;29406:185::-;29544:39;29561:4;29567:2;29571:7;29544:39;;;;;;;;;;;;:16;:39::i;40882:233::-;40957:7;40993:30;40780:10;:17;;40692:113;40993:30;40985:5;:38;40977:95;;;;-1:-1:-1;;;40977:95:0;;8795:2:1;40977:95:0;;;8777:21:1;8834:2;8814:18;;;8807:30;8873:34;8853:18;;;8846:62;-1:-1:-1;;;8924:18:1;;;8917:42;8976:19;;40977:95:0;8593:408:1;40977:95:0;41090:10;41101:5;41090:17;;;;;;;;:::i;:::-;;;;;;;;;41083:24;;40882:233;;;:::o;59583:92::-;47321:13;:11;:13::i;:::-;59653:7:::1;:14;59663:4:::0;59653:7;:14:::1;:::i;:::-;;59583:92:::0;:::o;26497:222::-;26569:7;26605:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26605:16:0;;26632:56;;;;-1:-1:-1;;;26632:56:0;;11544:2:1;26632:56:0;;;11526:21:1;11583:2;11563:18;;;11556:30;-1:-1:-1;;;11602:18:1;;;11595:54;11666:18;;26632:56:0;11342:348:1;26228:207:0;26300:7;-1:-1:-1;;;;;26328:19:0;;26320:73;;;;-1:-1:-1;;;26320:73:0;;11897:2:1;26320:73:0;;;11879:21:1;11936:2;11916:18;;;11909:30;11975:34;11955:18;;;11948:62;-1:-1:-1;;;12026:18:1;;;12019:39;12075:19;;26320:73:0;11695:405:1;26320:73:0;-1:-1:-1;;;;;;26411:16:0;;;;;:9;:16;;;;;;;26228:207::o;48083:103::-;47321:13;:11;:13::i;:::-;48148:30:::1;48175:1;48148:18;:30::i;58961:281::-:0;47321:13;:11;:13::i;:::-;59072:30;;::::1;59064:60;;;::::0;-1:-1:-1;;;59064:60:0;;12307:2:1;59064:60:0::1;::::0;::::1;12289:21:1::0;12346:2;12326:18;;;12319:30;-1:-1:-1;;;12365:18:1;;;12358:47;12422:18;;59064:60:0::1;12105:341:1::0;59064:60:0::1;59139:6;59135:100;59149:16:::0;;::::1;59135:100;;;59187:36;59202:5;;59208:1;59202:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;59212:7;;59220:1;59212:10;;;;;;;:::i;:::-;;;;;;;59187:14;:36::i;:::-;59167:3:::0;::::1;::::0;::::1;:::i;:::-;;;;59135:100;;;;58961:281:::0;;;;:::o;60282:77::-;47321:13;:11;:13::i;:::-;50178:19:::1;:17;:19::i;:::-;60343:8:::2;:6;:8::i;26955:104::-:0;27011:13;27044:7;27037:14;;;;;:::i;28542:155::-;28637:52;24318:10;28670:8;28680;28637:18;:52::i;29662:323::-;29836:41;24318:10;29869:7;29836:18;:41::i;:::-;29828:100;;;;-1:-1:-1;;;29828:100:0;;;;;;;:::i;:::-;29939:38;29953:4;29959:2;29963:7;29972:4;29939:13;:38::i;:::-;29662:323;;;;:::o;59683:187::-;59768:13;59830:10;:8;:10::i;:::-;59842:18;:7;:16;:18::i;:::-;59813:48;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59799:63;;59683:187;;;:::o;48341:201::-;47321:13;:11;:13::i;:::-;-1:-1:-1;;;;;48430:22:0;::::1;48422:73;;;::::0;-1:-1:-1;;;48422:73:0;;13426:2:1;48422:73:0::1;::::0;::::1;13408:21:1::0;13465:2;13445:18;;;13438:30;13504:34;13484:18;;;13477:62;-1:-1:-1;;;13555:18:1;;;13548:36;13601:19;;48422:73:0::1;13224:402:1::0;48422:73:0::1;48506:28;48525:8;48506:18;:28::i;:::-;48341:201:::0;:::o;25859:305::-;25961:4;-1:-1:-1;;;;;;25998:40:0;;-1:-1:-1;;;25998:40:0;;:105;;-1:-1:-1;;;;;;;26055:48:0;;-1:-1:-1;;;26055:48:0;25998:105;:158;;;-1:-1:-1;;;;;;;;;;16737:40:0;;;26120:36;16628:157;36274:135;31557:4;31581:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31581:16:0;36348:53;;;;-1:-1:-1;;;36348:53:0;;11544:2:1;36348:53:0;;;11526:21:1;11583:2;11563:18;;;11556:30;-1:-1:-1;;;11602:18:1;;;11595:54;11666:18;;36348:53:0;11342:348:1;35553:174:0;35628:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35628:29:0;-1:-1:-1;;;;;35628:29:0;;;;;;;;:24;;35682:23;35628:24;35682:14;:23::i;:::-;-1:-1:-1;;;;;35673:46:0;;;;;;;;;;;35553:174;;:::o;31786:264::-;31879:4;31896:13;31912:23;31927:7;31912:14;:23::i;:::-;31896:39;;31965:5;-1:-1:-1;;;;;31954:16:0;:7;-1:-1:-1;;;;;31954:16:0;;:52;;;-1:-1:-1;;;;;;28889:25:0;;;28865:4;28889:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;31974:32;31954:87;;;;32034:7;-1:-1:-1;;;;;32010:31:0;:20;32022:7;32010:11;:20::i;:::-;-1:-1:-1;;;;;32010:31:0;;31954:87;31946:96;31786:264;-1:-1:-1;;;;31786:264:0:o;34809:625::-;34968:4;-1:-1:-1;;;;;34941:31:0;:23;34956:7;34941:14;:23::i;:::-;-1:-1:-1;;;;;34941:31:0;;34933:81;;;;-1:-1:-1;;;34933:81:0;;13833:2:1;34933:81:0;;;13815:21:1;13872:2;13852:18;;;13845:30;13911:34;13891:18;;;13884:62;-1:-1:-1;;;13962:18:1;;;13955:35;14007:19;;34933:81:0;13631:401:1;34933:81:0;-1:-1:-1;;;;;35033:16:0;;35025:65;;;;-1:-1:-1;;;35025:65:0;;14239:2:1;35025:65:0;;;14221:21:1;14278:2;14258:18;;;14251:30;14317:34;14297:18;;;14290:62;-1:-1:-1;;;14368:18:1;;;14361:34;14412:19;;35025:65:0;14037:400:1;35025:65:0;35103:39;35124:4;35130:2;35134:7;35103:20;:39::i;:::-;35207:29;35224:1;35228:7;35207:8;:29::i;:::-;-1:-1:-1;;;;;35249:15:0;;;;;;:9;:15;;;;;:20;;35268:1;;35249:15;:20;;35268:1;;35249:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35280:13:0;;;;;;:9;:13;;;;;:18;;35297:1;;35280:13;:18;;35297:1;;35280:18;:::i;:::-;;;;-1:-1:-1;;35309:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35309:21:0;-1:-1:-1;;;;;35309:21:0;;;;;;;;;35348:27;;35309:16;;35348:27;;;;;;;27886:347;27816:417;;:::o;47600:132::-;47481:7;47508:6;-1:-1:-1;;;;;47508:6:0;24318:10;47664:23;47656:68;;;;-1:-1:-1;;;47656:68:0;;14907:2:1;47656:68:0;;;14889:21:1;;;14926:18;;;14919:30;14985:34;14965:18;;;14958:62;15037:18;;47656:68:0;14705:356:1;50917:108:0;50644:7;;;;50976:41;;;;-1:-1:-1;;;50976:41:0;;15268:2:1;50976:41:0;;;15250:21:1;15307:2;15287:18;;;15280:30;-1:-1:-1;;;15326:18:1;;;15319:50;15386:18;;50976:41:0;15066:344:1;51428:120:0;50437:16;:14;:16::i;:::-;51487:7:::1;:15:::0;;-1:-1:-1;;51487:15:0::1;::::0;;51518:22:::1;24318:10:::0;51527:12:::1;51518:22;::::0;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;51518:22:0::1;;;;;;;51428:120::o:0;48702:191::-;48776:16;48795:6;;-1:-1:-1;;;;;48812:17:0;;;-1:-1:-1;;;;;;48812:17:0;;;;;;48845:40;;48795:6;;;;;;;48845:40;;48776:16;48845:40;48765:128;48702:191;:::o;59252:215::-;59338:1;59326:92;59346:6;59341:1;:11;59326:92;;59374:32;59384:4;59390:15;59403:1;59390:8;;:12;;:15;;;;:::i;:::-;59374:9;:32::i;:::-;59354:3;;;;:::i;:::-;;;;59326:92;;;-1:-1:-1;59439:8:0;;:20;;59452:6;59439:12;:20::i;:::-;59428:8;:31;-1:-1:-1;;59252:215:0:o;50732:108::-;50644:7;;;;50802:9;50794:38;;;;-1:-1:-1;;;50794:38:0;;15617:2:1;50794:38:0;;;15599:21:1;15656:2;15636:18;;;15629:30;-1:-1:-1;;;15675:18:1;;;15668:46;15731:18;;50794:38:0;15415:340:1;51169:118:0;50178:19;:17;:19::i;:::-;51229:7:::1;:14:::0;;-1:-1:-1;;51229:14:0::1;51239:4;51229:14;::::0;;51259:20:::1;51266:12;24318:10:::0;;24238:98;35870:315;36025:8;-1:-1:-1;;;;;36016:17:0;:5;-1:-1:-1;;;;;36016:17:0;;36008:55;;;;-1:-1:-1;;;36008:55:0;;15962:2:1;36008:55:0;;;15944:21:1;16001:2;15981:18;;;15974:30;16040:27;16020:18;;;16013:55;16085:18;;36008:55:0;15760:349:1;36008:55:0;-1:-1:-1;;;;;36074:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36074:46:0;;;;;;;;;;36136:41;;540::1;;;36136::0;;513:18:1;36136:41:0;;;;;;;35870:315;;;:::o;30866:313::-;31022:28;31032:4;31038:2;31042:7;31022:9;:28::i;:::-;31069:47;31092:4;31098:2;31102:7;31111:4;31069:22;:47::i;:::-;31061:110;;;;-1:-1:-1;;;31061:110:0;;;;;;;:::i;59475:100::-;59527:13;59560:7;59553:14;;;;;:::i;3172:723::-;3228:13;3449:5;3458:1;3449:10;3445:53;;-1:-1:-1;;3476:10:0;;;;;;;;;;;;-1:-1:-1;;;3476:10:0;;;;;3172:723::o;3445:53::-;3523:5;3508:12;3564:78;3571:9;;3564:78;;3597:8;;;;:::i;:::-;;-1:-1:-1;3620:10:0;;-1:-1:-1;3628:2:0;3620:10;;:::i;:::-;;;3564:78;;;3652:19;3684:6;3674:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3674:17:0;;3652:39;;3702:154;3709:10;;3702:154;;3736:11;3746:1;3736:11;;:::i;:::-;;-1:-1:-1;3805:10:0;3813:2;3805:5;:10;:::i;:::-;3792:24;;:2;:24;:::i;:::-;3779:39;;3762:6;3769;3762:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3762:56:0;;;;;;;;-1:-1:-1;3833:11:0;3842:2;3833:11;;:::i;:::-;;;3702:154;;59878:195;60022:43;60049:4;60054:2;60057:7;60022:26;:43::i;54431:98::-;54489:7;54516:5;54520:1;54516;:5;:::i;:::-;54509:12;54431:98;-1:-1:-1;;;54431:98:0:o;32392:110::-;32468:26;32478:2;32482:7;32468:26;;;;;;;;;;;;:9;:26::i;36973:853::-;37127:4;-1:-1:-1;;;;;37148:13:0;;6767:19;:23;37144:675;;37184:71;;-1:-1:-1;;;37184:71:0;;-1:-1:-1;;;;;37184:36:0;;;;;:71;;24318:10;;37235:4;;37241:7;;37250:4;;37184:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37184:71:0;;;;;;;;-1:-1:-1;;37184:71:0;;;;;;;;;;;;:::i;:::-;;;37180:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37425:6;:13;37442:1;37425:18;37421:328;;37468:60;;-1:-1:-1;;;37468:60:0;;;;;;;:::i;37421:328::-;37699:6;37693:13;37684:6;37680:2;37676:15;37669:38;37180:584;-1:-1:-1;;;;;;37306:51:0;-1:-1:-1;;;37306:51:0;;-1:-1:-1;37299:58:0;;37144:675;-1:-1:-1;37803:4:0;36973:853;;;;;;:::o;41728:589::-;-1:-1:-1;;;;;41934:18:0;;41930:187;;41969:40;42001:7;43144:10;:17;;43117:24;;;;:15;:24;;;;;:44;;;43172:24;;;;;;;;;;;;43040:164;41969:40;41930:187;;;42039:2;-1:-1:-1;;;;;42031:10:0;:4;-1:-1:-1;;;;;42031:10:0;;42027:90;;42058:47;42091:4;42097:7;42058:32;:47::i;:::-;-1:-1:-1;;;;;42131:16:0;;42127:183;;42164:45;42201:7;42164:36;:45::i;42127:183::-;42237:4;-1:-1:-1;;;;;42231:10:0;:2;-1:-1:-1;;;;;42231:10:0;;42227:83;;42258:40;42286:2;42290:7;42258:27;:40::i;32729:319::-;32858:18;32864:2;32868:7;32858:5;:18::i;:::-;32909:53;32940:1;32944:2;32948:7;32957:4;32909:22;:53::i;:::-;32887:153;;;;-1:-1:-1;;;32887:153:0;;;;;;;:::i;43831:988::-;44097:22;44147:1;44122:22;44139:4;44122:16;:22::i;:::-;:26;;;;:::i;:::-;44159:18;44180:26;;;:17;:26;;;;;;44097:51;;-1:-1:-1;44313:28:0;;;44309:328;;-1:-1:-1;;;;;44380:18:0;;44358:19;44380:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44431:30;;;;;;:44;;;44548:30;;:17;:30;;;;;:43;;;44309:328;-1:-1:-1;44733:26:0;;;;:17;:26;;;;;;;;44726:33;;;-1:-1:-1;;;;;44777:18:0;;;;;:12;:18;;;;;:34;;;;;;;44770:41;43831:988::o;45114:1079::-;45392:10;:17;45367:22;;45392:21;;45412:1;;45392:21;:::i;:::-;45424:18;45445:24;;;:15;:24;;;;;;45818:10;:26;;45367:46;;-1:-1:-1;45445:24:0;;45367:46;;45818:26;;;;;;:::i;:::-;;;;;;;;;45796:48;;45882:11;45857:10;45868;45857:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45962:28;;;:15;:28;;;;;;;:41;;;46134:24;;;;;46127:31;46169:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45185:1008;;;45114:1079;:::o;42618:221::-;42703:14;42720:20;42737:2;42720:16;:20::i;:::-;-1:-1:-1;;;;;42751:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42796:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42618:221:0:o;33384:439::-;-1:-1:-1;;;;;33464:16:0;;33456:61;;;;-1:-1:-1;;;33456:61:0;;17989:2:1;33456:61:0;;;17971:21:1;;;18008:18;;;18001:30;18067:34;18047:18;;;18040:62;18119:18;;33456:61:0;17787:356:1;33456:61:0;31557:4;31581:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31581:16:0;:30;33528:58;;;;-1:-1:-1;;;33528:58:0;;18350:2:1;33528:58:0;;;18332:21:1;18389:2;18369:18;;;18362:30;18428;18408:18;;;18401:58;18476:18;;33528:58:0;18148:352:1;33528:58:0;33599:45;33628:1;33632:2;33636:7;33599:20;:45::i;:::-;-1:-1:-1;;;;;33657:13:0;;;;;;:9;:13;;;;;:18;;33674:1;;33657:13;:18;;33674:1;;33657:18;:::i;:::-;;;;-1:-1:-1;;33686:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33686:21:0;-1:-1:-1;;;;;33686:21:0;;;;;;;;33725:33;;33686:16;;;33725:33;;33686:16;;33725:33;59653:14:::1;59583:92:::0;:::o;14:131:1:-;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:328::-;2437:6;2445;2453;2506:2;2494:9;2485:7;2481:23;2477:32;2474:52;;;2522:1;2519;2512:12;2474:52;2545:29;2564:9;2545:29;:::i;:::-;2535:39;;2593:38;2627:2;2616:9;2612:18;2593:38;:::i;:::-;2583:48;;2678:2;2667:9;2663:18;2650:32;2640:42;;2360:328;;;;;:::o;2693:127::-;2754:10;2749:3;2745:20;2742:1;2735:31;2785:4;2782:1;2775:15;2809:4;2806:1;2799:15;2825:632;2890:5;2920:18;2961:2;2953:6;2950:14;2947:40;;;2967:18;;:::i;:::-;3042:2;3036:9;3010:2;3096:15;;-1:-1:-1;;3092:24:1;;;3118:2;3088:33;3084:42;3072:55;;;3142:18;;;3162:22;;;3139:46;3136:72;;;3188:18;;:::i;:::-;3228:10;3224:2;3217:22;3257:6;3248:15;;3287:6;3279;3272:22;3327:3;3318:6;3313:3;3309:16;3306:25;3303:45;;;3344:1;3341;3334:12;3303:45;3394:6;3389:3;3382:4;3374:6;3370:17;3357:44;3449:1;3442:4;3433:6;3425;3421:19;3417:30;3410:41;;;;2825:632;;;;;:::o;3462:451::-;3531:6;3584:2;3572:9;3563:7;3559:23;3555:32;3552:52;;;3600:1;3597;3590:12;3552:52;3640:9;3627:23;3673:18;3665:6;3662:30;3659:50;;;3705:1;3702;3695:12;3659:50;3728:22;;3781:4;3773:13;;3769:27;-1:-1:-1;3759:55:1;;3810:1;3807;3800:12;3759:55;3833:74;3899:7;3894:2;3881:16;3876:2;3872;3868:11;3833:74;:::i;3918:186::-;3977:6;4030:2;4018:9;4009:7;4005:23;4001:32;3998:52;;;4046:1;4043;4036:12;3998:52;4069:29;4088:9;4069:29;:::i;4109:367::-;4172:8;4182:6;4236:3;4229:4;4221:6;4217:17;4213:27;4203:55;;4254:1;4251;4244:12;4203:55;-1:-1:-1;4277:20:1;;4320:18;4309:30;;4306:50;;;4352:1;4349;4342:12;4306:50;4389:4;4381:6;4377:17;4365:29;;4449:3;4442:4;4432:6;4429:1;4425:14;4417:6;4413:27;4409:38;4406:47;4403:67;;;4466:1;4463;4456:12;4403:67;4109:367;;;;;:::o;4481:773::-;4603:6;4611;4619;4627;4680:2;4668:9;4659:7;4655:23;4651:32;4648:52;;;4696:1;4693;4686:12;4648:52;4736:9;4723:23;4765:18;4806:2;4798:6;4795:14;4792:34;;;4822:1;4819;4812:12;4792:34;4861:70;4923:7;4914:6;4903:9;4899:22;4861:70;:::i;:::-;4950:8;;-1:-1:-1;4835:96:1;-1:-1:-1;5038:2:1;5023:18;;5010:32;;-1:-1:-1;5054:16:1;;;5051:36;;;5083:1;5080;5073:12;5051:36;;5122:72;5186:7;5175:8;5164:9;5160:24;5122:72;:::i;:::-;4481:773;;;;-1:-1:-1;5213:8:1;-1:-1:-1;;;;4481:773:1:o;5259:347::-;5324:6;5332;5385:2;5373:9;5364:7;5360:23;5356:32;5353:52;;;5401:1;5398;5391:12;5353:52;5424:29;5443:9;5424:29;:::i;:::-;5414:39;;5503:2;5492:9;5488:18;5475:32;5550:5;5543:13;5536:21;5529:5;5526:32;5516:60;;5572:1;5569;5562:12;5516:60;5595:5;5585:15;;;5259:347;;;;;:::o;5611:667::-;5706:6;5714;5722;5730;5783:3;5771:9;5762:7;5758:23;5754:33;5751:53;;;5800:1;5797;5790:12;5751:53;5823:29;5842:9;5823:29;:::i;:::-;5813:39;;5871:38;5905:2;5894:9;5890:18;5871:38;:::i;:::-;5861:48;;5956:2;5945:9;5941:18;5928:32;5918:42;;6011:2;6000:9;5996:18;5983:32;6038:18;6030:6;6027:30;6024:50;;;6070:1;6067;6060:12;6024:50;6093:22;;6146:4;6138:13;;6134:27;-1:-1:-1;6124:55:1;;6175:1;6172;6165:12;6124:55;6198:74;6264:7;6259:2;6246:16;6241:2;6237;6233:11;6198:74;:::i;:::-;6188:84;;;5611:667;;;;;;;:::o;6283:260::-;6351:6;6359;6412:2;6400:9;6391:7;6387:23;6383:32;6380:52;;;6428:1;6425;6418:12;6380:52;6451:29;6470:9;6451:29;:::i;:::-;6441:39;;6499:38;6533:2;6522:9;6518:18;6499:38;:::i;:::-;6489:48;;6283:260;;;;;:::o;6548:380::-;6627:1;6623:12;;;;6670;;;6691:61;;6745:4;6737:6;6733:17;6723:27;;6691:61;6798:2;6790:6;6787:14;6767:18;6764:38;6761:161;;6844:10;6839:3;6835:20;6832:1;6825:31;6879:4;6876:1;6869:15;6907:4;6904:1;6897:15;6761:161;;6548:380;;;:::o;7766:410::-;7968:2;7950:21;;;8007:2;7987:18;;;7980:30;8046:34;8041:2;8026:18;;8019:62;-1:-1:-1;;;8112:2:1;8097:18;;8090:44;8166:3;8151:19;;7766:410::o;9006:127::-;9067:10;9062:3;9058:20;9055:1;9048:31;9098:4;9095:1;9088:15;9122:4;9119:1;9112:15;9264:545;9366:2;9361:3;9358:11;9355:448;;;9402:1;9427:5;9423:2;9416:17;9472:4;9468:2;9458:19;9542:2;9530:10;9526:19;9523:1;9519:27;9513:4;9509:38;9578:4;9566:10;9563:20;9560:47;;;-1:-1:-1;9601:4:1;9560:47;9656:2;9651:3;9647:12;9644:1;9640:20;9634:4;9630:31;9620:41;;9711:82;9729:2;9722:5;9719:13;9711:82;;;9774:17;;;9755:1;9744:13;9711:82;;;9715:3;;;9264:545;;;:::o;9985:1352::-;10111:3;10105:10;10138:18;10130:6;10127:30;10124:56;;;10160:18;;:::i;:::-;10189:97;10279:6;10239:38;10271:4;10265:11;10239:38;:::i;:::-;10233:4;10189:97;:::i;:::-;10341:4;;10405:2;10394:14;;10422:1;10417:663;;;;11124:1;11141:6;11138:89;;;-1:-1:-1;11193:19:1;;;11187:26;11138:89;-1:-1:-1;;9942:1:1;9938:11;;;9934:24;9930:29;9920:40;9966:1;9962:11;;;9917:57;11240:81;;10387:944;;10417:663;9211:1;9204:14;;;9248:4;9235:18;;-1:-1:-1;;10453:20:1;;;10571:236;10585:7;10582:1;10579:14;10571:236;;;10674:19;;;10668:26;10653:42;;10766:27;;;;10734:1;10722:14;;;;10601:19;;10571:236;;;10575:3;10835:6;10826:7;10823:19;10820:201;;;10896:19;;;10890:26;-1:-1:-1;;10979:1:1;10975:14;;;10991:3;10971:24;10967:37;10963:42;10948:58;10933:74;;10820:201;-1:-1:-1;;;;;11067:1:1;11051:14;;;11047:22;11034:36;;-1:-1:-1;9985:1352:1:o;12451:127::-;12512:10;12507:3;12503:20;12500:1;12493:31;12543:4;12540:1;12533:15;12567:4;12564:1;12557:15;12583:135;12622:3;12643:17;;;12640:43;;12663:18;;:::i;:::-;-1:-1:-1;12710:1:1;12699:13;;12583:135::o;12723:496::-;12902:3;12940:6;12934:13;12956:66;13015:6;13010:3;13003:4;12995:6;12991:17;12956:66;:::i;:::-;13085:13;;13044:16;;;;13107:70;13085:13;13044:16;13154:4;13142:17;;13107:70;:::i;:::-;13193:20;;12723:496;-1:-1:-1;;;;12723:496:1:o;14442:128::-;14509:9;;;14530:11;;;14527:37;;;14544:18;;:::i;14575:125::-;14640:9;;;14661:10;;;14658:36;;;14674:18;;:::i;16114:414::-;16316:2;16298:21;;;16355:2;16335:18;;;16328:30;16394:34;16389:2;16374:18;;16367:62;-1:-1:-1;;;16460:2:1;16445:18;;16438:48;16518:3;16503:19;;16114:414::o;16533:127::-;16594:10;16589:3;16585:20;16582:1;16575:31;16625:4;16622:1;16615:15;16649:4;16646:1;16639:15;16665:120;16705:1;16731;16721:35;;16736:18;;:::i;:::-;-1:-1:-1;16770:9:1;;16665:120::o;16790:112::-;16822:1;16848;16838:35;;16853:18;;:::i;:::-;-1:-1:-1;16887:9:1;;16790:112::o;16907:489::-;-1:-1:-1;;;;;17176:15:1;;;17158:34;;17228:15;;17223:2;17208:18;;17201:43;17275:2;17260:18;;17253:34;;;17323:3;17318:2;17303:18;;17296:31;;;17101:4;;17344:46;;17370:19;;17362:6;17344:46;:::i;:::-;17336:54;16907:489;-1:-1:-1;;;;;;16907:489:1:o;17401:249::-;17470:6;17523:2;17511:9;17502:7;17498:23;17494:32;17491:52;;;17539:1;17536;17529:12;17491:52;17571:9;17565:16;17590:30;17614:5;17590:30;:::i;17655:127::-;17716:10;17711:3;17707:20;17704:1;17697:31;17747:4;17744:1;17737:15;17771:4;17768:1;17761:15

Swarm Source

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