ETH Price: $2,890.42 (-8.75%)
Gas: 9 Gwei

Token

(0xedde09c51343252fc83b9e5b6de195a055aacb56)
 

Overview

Max Total Supply

748

Holders

738

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
kennyj.eth
0x86894b45fa5543eed3c57b031cac574698f358dc
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:
Orthoverse

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: Strings.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

// File: 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: Ownable.sol


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

// File: Address.sol


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

pragma solidity ^0.8.0;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: 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: 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: IERC1155Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
     * @dev Handles the receipt of a single ERC1155 token type. This function is
     * called at the end of a `safeTransferFrom` after the balance has been updated.
     *
     * NOTE: To accept the transfer, this must return
     * `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
     * (i.e. 0xf23a6e61, or its own function selector).
     *
     * @param operator The address which initiated the transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param id The ID of the token being transferred
     * @param value The amount of tokens being transferred
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
     */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
     * @dev Handles the receipt of a multiple ERC1155 token types. This function
     * is called at the end of a `safeBatchTransferFrom` after the balances have
     * been updated.
     *
     * NOTE: To accept the transfer(s), this must return
     * `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
     * (i.e. 0xbc197c81, or its own function selector).
     *
     * @param operator The address which initiated the batch transfer (i.e. msg.sender)
     * @param from The address which previously owned the token
     * @param ids An array containing ids of each token being transferred (order and length must match values array)
     * @param values An array containing amounts of each token being transferred (order and length must match ids array)
     * @param data Additional data with no specified format
     * @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
     */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256 id,
        uint256 value
    );

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(
        address indexed account,
        address indexed operator,
        bool approved
    );

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id)
        external
        view
        returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator)
        external
        view
        returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;








/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;
    // Mapping from account to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    mapping(uint256 => uint256) public tokenCastleLevel;
    // ORTH NFT price, just over 1$ (ETH @ 3100$)
    uint256 public constant REVEAL_PRICE = 0.0004 ether;
    uint256 public constant CASTLE_BASE_PRICE = 0.008 ether;
    uint256 public constant FLIP_REALM_PRICE = 0.001 ether;
    address public constant W0 = 0x2830B5a3b5242BC2c64C390594ED971E7deD47D2;
    address public constant W1 = 0x2cdE3C309EF95411f78b338A7de85c4454316208;

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

    /// @notice Public function to retrieve the contract description for OpenSea
    function contractURI() public view returns (string memory) {
        return string(abi.encodePacked(_uri, "contract.json"));
    }

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

    /**
     * @dev Create the NFT by emitting the event and setting the token ID to the
     * sender's address.
     */
    function reveal() public payable {
        require(msg.value >= REVEAL_PRICE, "Please send 0.0004 ETH");

        address tokenOwner = msg.sender;

        uint256 tokenId = uint256(uint160(tokenOwner));
        require(_balances[tokenId][tokenOwner] == 0, "NFT already revealed");

        _balances[tokenId][tokenOwner] = 1;
        address operator = _msgSender();
        emit TransferSingle(operator, address(0), tokenOwner, tokenId, 1);
    }

    /**
     * @dev Make the gift of Orthoverse and spread the joy around you.
     */
    function gift(address account) public payable {
        require(account != address(0), "ERC1155: No gift for the zero address");
        require(msg.value >= REVEAL_PRICE, "Please send 0.0004 ETH");

        address tokenOwner = account;

        uint256 tokenId = uint256(uint160(tokenOwner));
        require(_balances[tokenId][tokenOwner] == 0, "NFT already revealed");

        _balances[tokenId][tokenOwner] = 1;
        address operator = _msgSender();
        emit TransferSingle(operator, address(0), tokenOwner, tokenId, 1);
    }

    /**
     * @dev Returns 0 if the token has not been revealed
     */
    function isRevealed() public view returns (uint256) {
        address account = msg.sender;
        uint256 id = uint256(uint160(account));
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */

    /// @notice  Returns the metadata URI for tokenId
    function uri(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        return
            string(
                abi.encodePacked(
                    _uri,
                    Strings.toHexString(tokenId),
                    "-",
                    Strings.toString(tokenCastleLevel[tokenId]),
                    ".json"
                )
            );
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id)
        public
        view
        virtual
        override
        returns (uint256)
    {
        require(
            account != address(0),
            "ERC1155: balance query for the zero address"
        );
        if (id == uint256(uint160(account)) && (_balances[id][account] == 0)) {
            return 1;
        } else {
            return _balances[id][account] % 2;
        }
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(
            accounts.length == ids.length,
            "ERC1155: accounts and ids length mismatch"
        );

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

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

    function flipRealm(uint256 tokenId_) public payable {
        require(
            _balances[tokenId_][msg.sender] == 1,
            "Only owner can flip realm, token must be revealed"
        );

        if (msg.sender != W0 || msg.sender != W1) {
            require(msg.value >= FLIP_REALM_PRICE, "Not enough ETH");
        }

        if (tokenCastleLevel[tokenId_] > 7) {
            tokenCastleLevel[tokenId_] = tokenCastleLevel[tokenId_] - 8;
        } else {
            tokenCastleLevel[tokenId_] = tokenCastleLevel[tokenId_] + 8;
        }
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        // we just ignore amount, because it's always one
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        if (_balances[id][from] == 0) {
            // this actually makes the NFT
            _balances[id][from] = 1;
            emit TransferSingle(operator, address(0), from, id, 1);
        }

        _beforeTokenTransfer(
            operator,
            from,
            to,
            _asSingletonArray(id),
            _asSingletonArray(amount),
            data
        );

        uint256 fromBalance = _balances[id][from];

        require(
            fromBalance % 2 == 1,
            "ERC1155: insufficient balance for transfer"
        );

        unchecked {
            _balances[id][from] += 1;
        }

        _balances[id][to] += 1;

        emit TransferSingle(operator, from, to, id, 1);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, 1, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(
            ids.length == amounts.length,
            "ERC1155: ids and amounts length mismatch"
        );
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        uint256 fromToken = uint256(uint160(from));
        if (_balances[fromToken][from] == 0) {
            // this actually makes the NFT
            _balances[fromToken][from] += 1;
            emit TransferSingle(operator, address(0), from, fromToken, 1);
        }

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];

            uint256 fromBalance = _balances[id][from];
            require(
                (fromBalance % 2 == 1),
                "ERC1155: insufficient balance for transfer batch"
            );

            unchecked {
                _balances[id][from] = fromBalance + 1;
            }
            _balances[id][to] += 1;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(
            operator,
            from,
            to,
            ids,
            amounts,
            data
        );
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(
            operator,
            address(0),
            to,
            _asSingletonArray(id),
            _asSingletonArray(amount),
            data
        );

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(
            operator,
            address(0),
            to,
            id,
            amount,
            data
        );
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(
            ids.length == amounts.length,
            "ERC1155: ids and amounts length mismatch"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(
            operator,
            address(0),
            to,
            ids,
            amounts,
            data
        );
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(
            operator,
            from,
            address(0),
            _asSingletonArray(id),
            _asSingletonArray(amount),
            ""
        );

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(
            ids.length == amounts.length,
            "ERC1155: ids and amounts length mismatch"
        );

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(
                fromBalance >= amount,
                "ERC1155: burn amount exceeds balance"
            );
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try
                IERC1155Receiver(to).onERC1155Received(
                    operator,
                    from,
                    id,
                    amount,
                    data
                )
            returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try
                IERC1155Receiver(to).onERC1155BatchReceived(
                    operator,
                    from,
                    ids,
                    amounts,
                    data
                )
            returns (bytes4 response) {
                if (
                    response != IERC1155Receiver.onERC1155BatchReceived.selector
                ) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element)
        private
        pure
        returns (uint256[] memory)
    {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: ERC1155Supply.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Supply.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of ERC1155 that adds tracking of total supply per id.
 *
 * Useful for scenarios where Fungible and Non-fungible tokens have to be
 * clearly identified. Note: While a totalSupply of 1 might mean the
 * corresponding is an NFT, there is no guarantees that no other token with the
 * same id are not going to be minted.
 */
abstract contract ERC1155Supply is ERC1155 {
    mapping(uint256 => uint256) private _totalSupply;

    /**
     * @dev Total amount of tokens in with a given id.
     */
    function totalSupply(uint256 id) public view virtual returns (uint256) {
        delete id;
        return 1;
    }

    /**
     * @dev In Orthoverse every token exists already, you just have to reveal it.
     */
    function exists(uint256 id) public view virtual returns (bool) {
        delete id;
        return true;
    }

    /**
     * @dev See {ERC1155-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual override {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);

        if (from == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] += amounts[i];
            }
        }

        if (to == address(0)) {
            for (uint256 i = 0; i < ids.length; ++i) {
                _totalSupply[ids[i]] -= amounts[i];
            }
        }
    }
}

// File: Orthoverse.sol


/*
 *   Orthoverse - How to mint an insane number of NFTs in one go!
 *
 *  Brought to you by:
 *
 *       Keir Finlow-Bates - https://www.linkedin.com/in/keirf/
 *                      &
 *       Richard Piacentini - https://www.linkedin.com/in/richardpiacentini/
 *
 */

pragma solidity ^0.8.2;




contract Orthoverse is ERC1155, Ownable, ERC1155Supply {
    constructor(string memory uri_) ERC1155(uri_) {}

    function name() public pure returns (string memory) {
        return "Orthoverse";
    }

    function symbol() public pure returns (string memory) {
        return "ORTH";
    }

    function setURI(string memory newURI_) public onlyOwner {
        _setURI(newURI_);
    }

    function castleLevel(uint256 tokenId_) public view returns (uint256) {
        return tokenCastleLevel[tokenId_];
    }

    function castlePrice(uint256 tokenId_) public view returns (uint256) {
        return (CASTLE_BASE_PRICE * (2**(tokenCastleLevel[tokenId_] % 8)));
    }

    function upgradeCastleLevel(address account_) public payable {
        require(account_ != address(0), "No castle for the zero address");
        uint256 tokenId = uint256(uint160(account_));

        require(
            tokenCastleLevel[tokenId] != 7 && tokenCastleLevel[tokenId] != 15,
            "Castle is already at max level"
        );

        if (msg.sender != W0 || msg.sender != W1) {
            require(msg.value >= castlePrice(tokenId), "Not enough ETH");
        }
        tokenCastleLevel[tokenId]++;
    }

    function withdraw() external {
        uint256 balance = address(this).balance;
        require(balance > 0, "No funds");

        uint256 half = (balance * 5) / 10;
        Address.sendValue(payable(W0), half);
        Address.sendValue(payable(W1), half);
    }

    // The following functions are overrides required by Solidity.

    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal override(ERC1155, ERC1155Supply) {
        super._beforeTokenTransfer(operator, from, to, ids, amounts, data);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"uri_","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[],"name":"CASTLE_BASE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FLIP_REALM_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REVEAL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"W0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"W1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"castleLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"castlePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"exists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId_","type":"uint256"}],"name":"flipRealm","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"gift","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRevealed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"newURI_","type":"string"}],"name":"setURI","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":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenCastleLevel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account_","type":"address"}],"name":"upgradeCastleLevel","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162002d4a38038062002d4a833981016040819052620000349162000164565b80620000408162000053565b506200004c336200006c565b5062000293565b805162000068906003906020840190620000be565b5050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620000cc9062000240565b90600052602060002090601f016020900481019282620000f057600085556200013b565b82601f106200010b57805160ff19168380011785556200013b565b828001600101855582156200013b579182015b828111156200013b5782518255916020019190600101906200011e565b50620001499291506200014d565b5090565b5b808211156200014957600081556001016200014e565b600060208083850312156200017857600080fd5b82516001600160401b03808211156200019057600080fd5b818501915085601f830112620001a557600080fd5b815181811115620001ba57620001ba6200027d565b604051601f8201601f19908116603f01168101908382118183101715620001e557620001e56200027d565b816040528281528886848701011115620001fe57600080fd5b600093505b8284101562000222578484018601518185018701529285019262000203565b82841115620002345760008684830101525b98975050505050505050565b600181811c908216806200025557607f821691505b602082108114156200027757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612aa780620002a36000396000f3fe6080604052600436106101d75760003560e01c8063756495ca11610102578063c53b23f211610095578063e985e9c511610064578063e985e9c514610560578063f242432a146105a9578063f2fde38b146105c9578063f7320375146105e957600080fd5b8063c53b23f2146104fd578063cbfc4bce14610510578063d269fe6a14610523578063e8a3d4851461054b57600080fd5b8063a22cb465116100d1578063a22cb4651461048d578063a475b5dd146104ad578063bd85b039146104b5578063c08db79d146104d057600080fd5b8063756495ca146103e65780637744adc2146104135780638da5cb5b1461042e57806395d89b411461046057600080fd5b80633a1457771161017a57806354214f691161014957806354214f6914610376578063548edcee1461039e5780635fcf37e9146103b1578063715018a6146103d157600080fd5b80633a145777146102f85780633ccfd60b146103135780634e1273f4146103285780634f558e791461035557600080fd5b806306fdde03116101b657806306fdde03146102615780630e89341c1461029d57806329ba8f9c146102bd5780632eb2c2d6146102d857600080fd5b8062fdd58e146101dc57806301ffc9a71461020f57806302fe53051461023f575b600080fd5b3480156101e857600080fd5b506101fc6101f736600461221c565b610611565b6040519081526020015b60405180910390f35b34801561021b57600080fd5b5061022f61022a366004612317565b6106fb565b6040519015158152602001610206565b34801561024b57600080fd5b5061025f61025a366004612351565b61074b565b005b34801561026d57600080fd5b5060408051808201909152600a8152694f7274686f766572736560b01b60208201525b6040516102069190612619565b3480156102a957600080fd5b506102906102b836600461239a565b610781565b3480156102c957600080fd5b506101fc66016bcc41e9000081565b3480156102e457600080fd5b5061025f6102f33660046120d1565b6107ce565b34801561030457600080fd5b506101fc661c6bf52634000081565b34801561031f57600080fd5b5061025f610865565b34801561033457600080fd5b50610348610343366004612246565b6108f9565b60405161020691906125d8565b34801561036157600080fd5b5061022f61037036600461239a565b50600190565b34801561038257600080fd5b50336000908152602081815260408083209091529020546101fc565b61025f6103ac36600461239a565b610a23565b3480156103bd57600080fd5b506101fc6103cc36600461239a565b610b86565b3480156103dd57600080fd5b5061025f610bbd565b3480156103f257600080fd5b506101fc61040136600461239a565b60026020526000908152604090205481565b34801561041f57600080fd5b506101fc66038d7ea4c6800081565b34801561043a57600080fd5b506004546001600160a01b03165b6040516001600160a01b039091168152602001610206565b34801561046c57600080fd5b5060408051808201909152600481526309ea4a8960e31b6020820152610290565b34801561049957600080fd5b5061025f6104a83660046121e0565b610bf3565b61025f610bfe565b3480156104c157600080fd5b506101fc61037036600461239a565b3480156104dc57600080fd5b506101fc6104eb36600461239a565b60009081526002602052604090205490565b61025f61050b366004612083565b610d03565b61025f61051e366004612083565b610e85565b34801561052f57600080fd5b50610448732cde3c309ef95411f78b338a7de85c445431620881565b34801561055757600080fd5b50610290610ff9565b34801561056c57600080fd5b5061022f61057b36600461209e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156105b557600080fd5b5061025f6105c436600461217b565b611021565b3480156105d557600080fd5b5061025f6105e4366004612083565b6110a8565b3480156105f557600080fd5b50610448732830b5a3b5242bc2c64c390594ed971e7ded47d281565b60006001600160a01b0383166106825760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b826001600160a01b0316821480156106b857506000828152602081815260408083206001600160a01b0387168452909152902054155b156106c5575060016106f5565b6000828152602081815260408083206001600160a01b03871684529091529020546106f290600290612929565b90505b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061072c57506001600160e01b031982166303a24d0760e21b145b806106f557506301ffc9a760e01b6001600160e01b03198316146106f5565b6004546001600160a01b031633146107755760405162461bcd60e51b8152600401610679906126b9565b61077e81611140565b50565b6060600361078e83611153565b6000848152600260205260409020546107a6906111af565b6040516020016107b8939291906124b4565b6040516020818303038152906040529050919050565b6001600160a01b0385163314806107ea57506107ea853361057b565b6108515760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610679565b61085e85858585856112ad565b5050505050565b478061089e5760405162461bcd60e51b81526020600482015260086024820152674e6f2066756e647360c01b6044820152606401610679565b6000600a6108ad836005612829565b6108b7919061272a565b90506108d7732830b5a3b5242bc2c64c390594ed971e7ded47d282611565565b6108f5732cde3c309ef95411f78b338a7de85c445431620882611565565b5050565b6060815183511461095e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610679565b6000835167ffffffffffffffff81111561097a5761097a61297f565b6040519080825280602002602001820160405280156109a3578160200160208202803683370190505b50905060005b8451811015610a1b576109ee8582815181106109c7576109c7612969565b60200260200101518583815181106109e1576109e1612969565b6020026020010151610611565b828281518110610a0057610a00612969565b6020908102919091010152610a148161290e565b90506109a9565b509392505050565b600081815260208181526040808320338452909152902054600114610aa45760405162461bcd60e51b815260206004820152603160248201527f4f6e6c79206f776e65722063616e20666c6970207265616c6d2c20746f6b656e604482015270081b5d5cdd081899481c995d99585b1959607a1b6064820152608401610679565b33732830b5a3b5242bc2c64c390594ed971e7ded47d2141580610adb575033732cde3c309ef95411f78b338a7de85c445431620814155b15610b285766038d7ea4c68000341015610b285760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b6044820152606401610679565b60008181526002602052604090205460071015610b6c57600081815260026020526040902054610b5a90600890612848565b60008281526002602052604090205550565b600081815260026020526040902054610b5a906008612712565b600081815260026020526040812054610ba190600890612929565b610bac906002612781565b6106f590661c6bf526340000612829565b6004546001600160a01b03163314610be75760405162461bcd60e51b8152600401610679906126b9565b610bf16000611683565b565b6108f53383836116d5565b66016bcc41e90000341015610c4e5760405162461bcd60e51b81526020600482015260166024820152750a0d8cac2e6ca40e6cadcc840605c60606068408aa8960531b6044820152606401610679565b33600081815260208181526040808320909152902054819015610caa5760405162461bcd60e51b815260206004820152601460248201527313919508185b1c9958591e481c995d99585b195960621b6044820152606401610679565b6000818152602081815260408083206001600160a01b03861680855290835281842060019081905582518681529384015281513394919391928592600080516020612a52833981519152929081900390910190a4505050565b6001600160a01b038116610d595760405162461bcd60e51b815260206004820152601e60248201527f4e6f20636173746c6520666f7220746865207a65726f206164647265737300006044820152606401610679565b6001600160a01b038116600081815260026020526040902054600714801590610d915750600081815260026020526040902054600f14155b610ddd5760405162461bcd60e51b815260206004820152601e60248201527f436173746c6520697320616c7265616479206174206d6178206c6576656c00006044820152606401610679565b33732830b5a3b5242bc2c64c390594ed971e7ded47d2141580610e14575033732cde3c309ef95411f78b338a7de85c445431620814155b15610e6257610e2281610b86565b341015610e625760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b6044820152606401610679565b6000818152600260205260408120805491610e7c8361290e565b91905055505050565b6001600160a01b038116610ee95760405162461bcd60e51b815260206004820152602560248201527f455243313135353a204e6f206769667420666f7220746865207a65726f206164604482015264647265737360d81b6064820152608401610679565b66016bcc41e90000341015610f395760405162461bcd60e51b81526020600482015260166024820152750a0d8cac2e6ca40e6cadcc840605c60606068408aa8960531b6044820152606401610679565b6001600160a01b03811660008181526020818152604080832090915290205482919015610f9f5760405162461bcd60e51b815260206004820152601460248201527313919508185b1c9958591e481c995d99585b195960621b6044820152606401610679565b6000818152602081815260408083206001600160a01b03861680855290835281842060019081905582518681529384015281513394919391928592600080516020612a52833981519152929081900390910190a450505050565b6060600360405160200161100d919061250c565b604051602081830303815290604052905090565b6001600160a01b03851633148061103d575061103d853361057b565b61109b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610679565b61085e85858585856117b6565b6004546001600160a01b031633146110d25760405162461bcd60e51b8152600401610679906126b9565b6001600160a01b0381166111375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610679565b61077e81611683565b80516108f5906003906020840190611ed2565b60608161117a5750506040805180820190915260048152630307830360e41b602082015290565b8160005b811561119d578061118e8161290e565b915050600882901c915061117e565b6111a78482611994565b949350505050565b6060816111d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111fd57806111e78161290e565b91506111f69050600a8361272a565b91506111d7565b60008167ffffffffffffffff8111156112185761121861297f565b6040519080825280601f01601f191660200182016040528015611242576020820181803683370190505b5090505b84156111a757611257600183612848565b9150611264600a86612929565b61126f906030612712565b60f81b81838151811061128457611284612969565b60200101906001600160f81b031916908160001a9053506112a6600a8661272a565b9450611246565b815183511461130f5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610679565b6001600160a01b0384166113355760405162461bcd60e51b815260040161067990612674565b33611344818787878787611b30565b6001600160a01b0386166000818152602081815260408083209091529020546113d8576000818152602081815260408083206001600160a01b038b1684529091528120805460019290611398908490612712565b909155505060408051828152600160208201526001600160a01b03808a169260009291861691600080516020612a52833981519152910160405180910390a45b60005b85518110156114f65760008682815181106113f8576113f8612969565b602090810291909101810151600081815280835260408082206001600160a01b038e1683529093529190912054909150611433600282612929565b60011461149b5760405162461bcd60e51b815260206004820152603060248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526f0e440e8e4c2dce6cccae440c4c2e8c6d60831b6064820152608401610679565b6000828152602081815260408083206001600160a01b038e8116855292528083206001858101909155918c16835282208054919290916114dc908490612712565b925050819055505050806114ef9061290e565b90506113db565b50856001600160a01b0316876001600160a01b0316836001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb88886040516115469291906125eb565b60405180910390a461155c828888888888611b46565b50505050505050565b804710156115b55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610679565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611602576040519150601f19603f3d011682016040523d82523d6000602084013e611607565b606091505b505090508061167e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610679565b505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117495760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610679565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166117dc5760405162461bcd60e51b815260040161067990612674565b6000838152602081815260408083206001600160a01b03891684529091529020543390611856576000848152602081815260408083206001600160a01b038a811680865291845282852060019081905583518a81529485015290939290851691600080516020612a52833981519152910160405180910390a45b61187481878761186588611cb1565b61186e88611cb1565b87611b30565b6000848152602081815260408083206001600160a01b038a1684529091529020546118a0600282612929565b6001146119025760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610679565b6000858152602081815260408083206001600160a01b038b8116855292528083208054600190810190915591891683528220805491929091611945908490612712565b909155505060408051868152600160208201526001600160a01b03808916928a82169291861691600080516020612a52833981519152910160405180910390a461155c82888888600188611cfc565b606060006119a3836002612829565b6119ae906002612712565b67ffffffffffffffff8111156119c6576119c661297f565b6040519080825280601f01601f1916602001820160405280156119f0576020820181803683370190505b509050600360fc1b81600081518110611a0b57611a0b612969565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611a3a57611a3a612969565b60200101906001600160f81b031916908160001a9053506000611a5e846002612829565b611a69906001612712565b90505b6001811115611ae1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611a9d57611a9d612969565b1a60f81b828281518110611ab357611ab3612969565b60200101906001600160f81b031916908160001a90535060049490941c93611ada8161288f565b9050611a6c565b5083156106f25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610679565b611b3e868686868686611dc6565b505050505050565b6001600160a01b0384163b15611b3e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611b8a9089908990889088908890600401612535565b602060405180830381600087803b158015611ba457600080fd5b505af1925050508015611bd4575060408051601f3d908101601f19168201909252611bd191810190612334565b60015b611c8157611be0612995565b806308c379a01415611c1a5750611bf56129b1565b80611c005750611c1c565b8060405162461bcd60e51b81526004016106799190612619565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610679565b6001600160e01b0319811663bc197c8160e01b1461155c5760405162461bcd60e51b81526004016106799061262c565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611ceb57611ceb612969565b602090810291909101015292915050565b6001600160a01b0384163b15611b3e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d409089908990889088908890600401612593565b602060405180830381600087803b158015611d5a57600080fd5b505af1925050508015611d8a575060408051601f3d908101601f19168201909252611d8791810190612334565b60015b611d9657611be0612995565b6001600160e01b0319811663f23a6e6160e01b1461155c5760405162461bcd60e51b81526004016106799061262c565b6001600160a01b038516611e4d5760005b8351811015611e4b57828181518110611df257611df2612969565b602002602001015160056000868481518110611e1057611e10612969565b602002602001015181526020019081526020016000206000828254611e359190612712565b90915550611e4490508161290e565b9050611dd7565b505b6001600160a01b038416611b3e5760005b835181101561155c57828181518110611e7957611e79612969565b602002602001015160056000868481518110611e9757611e97612969565b602002602001015181526020019081526020016000206000828254611ebc9190612848565b90915550611ecb90508161290e565b9050611e5e565b828054611ede906128a6565b90600052602060002090601f016020900481019282611f005760008555611f46565b82601f10611f1957805160ff1916838001178555611f46565b82800160010185558215611f46579182015b82811115611f46578251825591602001919060010190611f2b565b50611f52929150611f56565b5090565b5b80821115611f525760008155600101611f57565b600067ffffffffffffffff831115611f8557611f8561297f565b604051611f9c601f8501601f1916602001826128e1565b809150838152848484011115611fb157600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611fe057600080fd5b919050565b600082601f830112611ff657600080fd5b81356020612003826126ee565b60405161201082826128e1565b8381528281019150858301600585901b8701840188101561203057600080fd5b60005b8581101561204f57813584529284019290840190600101612033565b5090979650505050505050565b600082601f83011261206d57600080fd5b61207c83833560208501611f6b565b9392505050565b60006020828403121561209557600080fd5b61207c82611fc9565b600080604083850312156120b157600080fd5b6120ba83611fc9565b91506120c860208401611fc9565b90509250929050565b600080600080600060a086880312156120e957600080fd5b6120f286611fc9565b945061210060208701611fc9565b9350604086013567ffffffffffffffff8082111561211d57600080fd5b61212989838a01611fe5565b9450606088013591508082111561213f57600080fd5b61214b89838a01611fe5565b9350608088013591508082111561216157600080fd5b5061216e8882890161205c565b9150509295509295909350565b600080600080600060a0868803121561219357600080fd5b61219c86611fc9565b94506121aa60208701611fc9565b93506040860135925060608601359150608086013567ffffffffffffffff8111156121d457600080fd5b61216e8882890161205c565b600080604083850312156121f357600080fd5b6121fc83611fc9565b91506020830135801515811461221157600080fd5b809150509250929050565b6000806040838503121561222f57600080fd5b61223883611fc9565b946020939093013593505050565b6000806040838503121561225957600080fd5b823567ffffffffffffffff8082111561227157600080fd5b818501915085601f83011261228557600080fd5b81356020612292826126ee565b60405161229f82826128e1565b8381528281019150858301600585901b870184018b10156122bf57600080fd5b600096505b848710156122e9576122d581611fc9565b8352600196909601959183019183016122c4565b509650508601359250508082111561230057600080fd5b5061230d85828601611fe5565b9150509250929050565b60006020828403121561232957600080fd5b81356106f281612a3b565b60006020828403121561234657600080fd5b81516106f281612a3b565b60006020828403121561236357600080fd5b813567ffffffffffffffff81111561237a57600080fd5b8201601f8101841361238b57600080fd5b6111a784823560208401611f6b565b6000602082840312156123ac57600080fd5b5035919050565b600081518084526020808501945080840160005b838110156123e3578151875295820195908201906001016123c7565b509495945050505050565b6000815180845261240681602086016020860161285f565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061243457607f831692505b602080841082141561245657634e487b7160e01b600052602260045260246000fd5b81801561246a576001811461247b576124a8565b60ff198616895284890196506124a8565b60008881526020902060005b868110156124a05781548b820152908501908301612487565b505084890196505b50505050505092915050565b60006124c0828661241a565b84516124d081836020890161285f565b602d60f81b910190815283516124ed81600184016020880161285f565b64173539b7b760d91b6001929091019182015260060195945050505050565b6000612518828461241a565b6c31b7b73a3930b1ba173539b7b760991b8152600d019392505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612561908301866123b3565b828103606084015261257381866123b3565b9050828103608084015261258781856123ee565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906125cd908301846123ee565b979650505050505050565b60208152600061207c60208301846123b3565b6040815260006125fe60408301856123b3565b828103602084015261261081856123b3565b95945050505050565b60208152600061207c60208301846123ee565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156127085761270861297f565b5060051b60200190565b600082198211156127255761272561293d565b500190565b60008261273957612739612953565b500490565b600181815b8085111561277957816000190482111561275f5761275f61293d565b8085161561276c57918102915b93841c9390800290612743565b509250929050565b600061207c8383600082612797575060016106f5565b816127a4575060006106f5565b81600181146127ba57600281146127c4576127e0565b60019150506106f5565b60ff8411156127d5576127d561293d565b50506001821b6106f5565b5060208310610133831016604e8410600b8410161715612803575081810a6106f5565b61280d838361273e565b80600019048211156128215761282161293d565b029392505050565b60008160001904831182151516156128435761284361293d565b500290565b60008282101561285a5761285a61293d565b500390565b60005b8381101561287a578181015183820152602001612862565b83811115612889576000848401525b50505050565b60008161289e5761289e61293d565b506000190190565b600181811c908216806128ba57607f821691505b602082108114156128db57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156129075761290761297f565b6040525050565b60006000198214156129225761292261293d565b5060010190565b60008261293857612938612953565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156129ae5760046000803e5060005160e01c5b90565b600060443d10156129bf5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156129ef57505050505090565b8285019150815181811115612a075750505050505090565b843d8701016020828501011115612a215750505050505090565b612a30602082860101876128e1565b509095945050505050565b6001600160e01b03198116811461077e57600080fdfec3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62a2646970667358221220ecfe28999a2a940b03b760ca10a6a78755263039f4d510e0411113bb3f80d10164736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6f7274686f76657273652e696f2f6170692f6d657461646174612f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101d75760003560e01c8063756495ca11610102578063c53b23f211610095578063e985e9c511610064578063e985e9c514610560578063f242432a146105a9578063f2fde38b146105c9578063f7320375146105e957600080fd5b8063c53b23f2146104fd578063cbfc4bce14610510578063d269fe6a14610523578063e8a3d4851461054b57600080fd5b8063a22cb465116100d1578063a22cb4651461048d578063a475b5dd146104ad578063bd85b039146104b5578063c08db79d146104d057600080fd5b8063756495ca146103e65780637744adc2146104135780638da5cb5b1461042e57806395d89b411461046057600080fd5b80633a1457771161017a57806354214f691161014957806354214f6914610376578063548edcee1461039e5780635fcf37e9146103b1578063715018a6146103d157600080fd5b80633a145777146102f85780633ccfd60b146103135780634e1273f4146103285780634f558e791461035557600080fd5b806306fdde03116101b657806306fdde03146102615780630e89341c1461029d57806329ba8f9c146102bd5780632eb2c2d6146102d857600080fd5b8062fdd58e146101dc57806301ffc9a71461020f57806302fe53051461023f575b600080fd5b3480156101e857600080fd5b506101fc6101f736600461221c565b610611565b6040519081526020015b60405180910390f35b34801561021b57600080fd5b5061022f61022a366004612317565b6106fb565b6040519015158152602001610206565b34801561024b57600080fd5b5061025f61025a366004612351565b61074b565b005b34801561026d57600080fd5b5060408051808201909152600a8152694f7274686f766572736560b01b60208201525b6040516102069190612619565b3480156102a957600080fd5b506102906102b836600461239a565b610781565b3480156102c957600080fd5b506101fc66016bcc41e9000081565b3480156102e457600080fd5b5061025f6102f33660046120d1565b6107ce565b34801561030457600080fd5b506101fc661c6bf52634000081565b34801561031f57600080fd5b5061025f610865565b34801561033457600080fd5b50610348610343366004612246565b6108f9565b60405161020691906125d8565b34801561036157600080fd5b5061022f61037036600461239a565b50600190565b34801561038257600080fd5b50336000908152602081815260408083209091529020546101fc565b61025f6103ac36600461239a565b610a23565b3480156103bd57600080fd5b506101fc6103cc36600461239a565b610b86565b3480156103dd57600080fd5b5061025f610bbd565b3480156103f257600080fd5b506101fc61040136600461239a565b60026020526000908152604090205481565b34801561041f57600080fd5b506101fc66038d7ea4c6800081565b34801561043a57600080fd5b506004546001600160a01b03165b6040516001600160a01b039091168152602001610206565b34801561046c57600080fd5b5060408051808201909152600481526309ea4a8960e31b6020820152610290565b34801561049957600080fd5b5061025f6104a83660046121e0565b610bf3565b61025f610bfe565b3480156104c157600080fd5b506101fc61037036600461239a565b3480156104dc57600080fd5b506101fc6104eb36600461239a565b60009081526002602052604090205490565b61025f61050b366004612083565b610d03565b61025f61051e366004612083565b610e85565b34801561052f57600080fd5b50610448732cde3c309ef95411f78b338a7de85c445431620881565b34801561055757600080fd5b50610290610ff9565b34801561056c57600080fd5b5061022f61057b36600461209e565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205460ff1690565b3480156105b557600080fd5b5061025f6105c436600461217b565b611021565b3480156105d557600080fd5b5061025f6105e4366004612083565b6110a8565b3480156105f557600080fd5b50610448732830b5a3b5242bc2c64c390594ed971e7ded47d281565b60006001600160a01b0383166106825760405162461bcd60e51b815260206004820152602b60248201527f455243313135353a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084015b60405180910390fd5b826001600160a01b0316821480156106b857506000828152602081815260408083206001600160a01b0387168452909152902054155b156106c5575060016106f5565b6000828152602081815260408083206001600160a01b03871684529091529020546106f290600290612929565b90505b92915050565b60006001600160e01b03198216636cdb3d1360e11b148061072c57506001600160e01b031982166303a24d0760e21b145b806106f557506301ffc9a760e01b6001600160e01b03198316146106f5565b6004546001600160a01b031633146107755760405162461bcd60e51b8152600401610679906126b9565b61077e81611140565b50565b6060600361078e83611153565b6000848152600260205260409020546107a6906111af565b6040516020016107b8939291906124b4565b6040516020818303038152906040529050919050565b6001600160a01b0385163314806107ea57506107ea853361057b565b6108515760405162461bcd60e51b815260206004820152603260248201527f455243313135353a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610679565b61085e85858585856112ad565b5050505050565b478061089e5760405162461bcd60e51b81526020600482015260086024820152674e6f2066756e647360c01b6044820152606401610679565b6000600a6108ad836005612829565b6108b7919061272a565b90506108d7732830b5a3b5242bc2c64c390594ed971e7ded47d282611565565b6108f5732cde3c309ef95411f78b338a7de85c445431620882611565565b5050565b6060815183511461095e5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a206163636f756e747320616e6420696473206c656e677468604482015268040dad2e6dac2e8c6d60bb1b6064820152608401610679565b6000835167ffffffffffffffff81111561097a5761097a61297f565b6040519080825280602002602001820160405280156109a3578160200160208202803683370190505b50905060005b8451811015610a1b576109ee8582815181106109c7576109c7612969565b60200260200101518583815181106109e1576109e1612969565b6020026020010151610611565b828281518110610a0057610a00612969565b6020908102919091010152610a148161290e565b90506109a9565b509392505050565b600081815260208181526040808320338452909152902054600114610aa45760405162461bcd60e51b815260206004820152603160248201527f4f6e6c79206f776e65722063616e20666c6970207265616c6d2c20746f6b656e604482015270081b5d5cdd081899481c995d99585b1959607a1b6064820152608401610679565b33732830b5a3b5242bc2c64c390594ed971e7ded47d2141580610adb575033732cde3c309ef95411f78b338a7de85c445431620814155b15610b285766038d7ea4c68000341015610b285760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b6044820152606401610679565b60008181526002602052604090205460071015610b6c57600081815260026020526040902054610b5a90600890612848565b60008281526002602052604090205550565b600081815260026020526040902054610b5a906008612712565b600081815260026020526040812054610ba190600890612929565b610bac906002612781565b6106f590661c6bf526340000612829565b6004546001600160a01b03163314610be75760405162461bcd60e51b8152600401610679906126b9565b610bf16000611683565b565b6108f53383836116d5565b66016bcc41e90000341015610c4e5760405162461bcd60e51b81526020600482015260166024820152750a0d8cac2e6ca40e6cadcc840605c60606068408aa8960531b6044820152606401610679565b33600081815260208181526040808320909152902054819015610caa5760405162461bcd60e51b815260206004820152601460248201527313919508185b1c9958591e481c995d99585b195960621b6044820152606401610679565b6000818152602081815260408083206001600160a01b03861680855290835281842060019081905582518681529384015281513394919391928592600080516020612a52833981519152929081900390910190a4505050565b6001600160a01b038116610d595760405162461bcd60e51b815260206004820152601e60248201527f4e6f20636173746c6520666f7220746865207a65726f206164647265737300006044820152606401610679565b6001600160a01b038116600081815260026020526040902054600714801590610d915750600081815260026020526040902054600f14155b610ddd5760405162461bcd60e51b815260206004820152601e60248201527f436173746c6520697320616c7265616479206174206d6178206c6576656c00006044820152606401610679565b33732830b5a3b5242bc2c64c390594ed971e7ded47d2141580610e14575033732cde3c309ef95411f78b338a7de85c445431620814155b15610e6257610e2281610b86565b341015610e625760405162461bcd60e51b815260206004820152600e60248201526d09cdee840cadcdeeaced0408aa8960931b6044820152606401610679565b6000818152600260205260408120805491610e7c8361290e565b91905055505050565b6001600160a01b038116610ee95760405162461bcd60e51b815260206004820152602560248201527f455243313135353a204e6f206769667420666f7220746865207a65726f206164604482015264647265737360d81b6064820152608401610679565b66016bcc41e90000341015610f395760405162461bcd60e51b81526020600482015260166024820152750a0d8cac2e6ca40e6cadcc840605c60606068408aa8960531b6044820152606401610679565b6001600160a01b03811660008181526020818152604080832090915290205482919015610f9f5760405162461bcd60e51b815260206004820152601460248201527313919508185b1c9958591e481c995d99585b195960621b6044820152606401610679565b6000818152602081815260408083206001600160a01b03861680855290835281842060019081905582518681529384015281513394919391928592600080516020612a52833981519152929081900390910190a450505050565b6060600360405160200161100d919061250c565b604051602081830303815290604052905090565b6001600160a01b03851633148061103d575061103d853361057b565b61109b5760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260448201526808185c1c1c9bdd995960ba1b6064820152608401610679565b61085e85858585856117b6565b6004546001600160a01b031633146110d25760405162461bcd60e51b8152600401610679906126b9565b6001600160a01b0381166111375760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610679565b61077e81611683565b80516108f5906003906020840190611ed2565b60608161117a5750506040805180820190915260048152630307830360e41b602082015290565b8160005b811561119d578061118e8161290e565b915050600882901c915061117e565b6111a78482611994565b949350505050565b6060816111d35750506040805180820190915260018152600360fc1b602082015290565b8160005b81156111fd57806111e78161290e565b91506111f69050600a8361272a565b91506111d7565b60008167ffffffffffffffff8111156112185761121861297f565b6040519080825280601f01601f191660200182016040528015611242576020820181803683370190505b5090505b84156111a757611257600183612848565b9150611264600a86612929565b61126f906030612712565b60f81b81838151811061128457611284612969565b60200101906001600160f81b031916908160001a9053506112a6600a8661272a565b9450611246565b815183511461130f5760405162461bcd60e51b815260206004820152602860248201527f455243313135353a2069647320616e6420616d6f756e7473206c656e677468206044820152670dad2e6dac2e8c6d60c31b6064820152608401610679565b6001600160a01b0384166113355760405162461bcd60e51b815260040161067990612674565b33611344818787878787611b30565b6001600160a01b0386166000818152602081815260408083209091529020546113d8576000818152602081815260408083206001600160a01b038b1684529091528120805460019290611398908490612712565b909155505060408051828152600160208201526001600160a01b03808a169260009291861691600080516020612a52833981519152910160405180910390a45b60005b85518110156114f65760008682815181106113f8576113f8612969565b602090810291909101810151600081815280835260408082206001600160a01b038e1683529093529190912054909150611433600282612929565b60011461149b5760405162461bcd60e51b815260206004820152603060248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526f0e440e8e4c2dce6cccae440c4c2e8c6d60831b6064820152608401610679565b6000828152602081815260408083206001600160a01b038e8116855292528083206001858101909155918c16835282208054919290916114dc908490612712565b925050819055505050806114ef9061290e565b90506113db565b50856001600160a01b0316876001600160a01b0316836001600160a01b03167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb88886040516115469291906125eb565b60405180910390a461155c828888888888611b46565b50505050505050565b804710156115b55760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610679565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611602576040519150601f19603f3d011682016040523d82523d6000602084013e611607565b606091505b505090508061167e5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610679565b505050565b600480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b031614156117495760405162461bcd60e51b815260206004820152602960248201527f455243313135353a2073657474696e6720617070726f76616c20737461747573604482015268103337b91039b2b63360b91b6064820152608401610679565b6001600160a01b03838116600081815260016020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6001600160a01b0384166117dc5760405162461bcd60e51b815260040161067990612674565b6000838152602081815260408083206001600160a01b03891684529091529020543390611856576000848152602081815260408083206001600160a01b038a811680865291845282852060019081905583518a81529485015290939290851691600080516020612a52833981519152910160405180910390a45b61187481878761186588611cb1565b61186e88611cb1565b87611b30565b6000848152602081815260408083206001600160a01b038a1684529091529020546118a0600282612929565b6001146119025760405162461bcd60e51b815260206004820152602a60248201527f455243313135353a20696e73756666696369656e742062616c616e636520666f60448201526939103a3930b739b332b960b11b6064820152608401610679565b6000858152602081815260408083206001600160a01b038b8116855292528083208054600190810190915591891683528220805491929091611945908490612712565b909155505060408051868152600160208201526001600160a01b03808916928a82169291861691600080516020612a52833981519152910160405180910390a461155c82888888600188611cfc565b606060006119a3836002612829565b6119ae906002612712565b67ffffffffffffffff8111156119c6576119c661297f565b6040519080825280601f01601f1916602001820160405280156119f0576020820181803683370190505b509050600360fc1b81600081518110611a0b57611a0b612969565b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110611a3a57611a3a612969565b60200101906001600160f81b031916908160001a9053506000611a5e846002612829565b611a69906001612712565b90505b6001811115611ae1576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110611a9d57611a9d612969565b1a60f81b828281518110611ab357611ab3612969565b60200101906001600160f81b031916908160001a90535060049490941c93611ada8161288f565b9050611a6c565b5083156106f25760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610679565b611b3e868686868686611dc6565b505050505050565b6001600160a01b0384163b15611b3e5760405163bc197c8160e01b81526001600160a01b0385169063bc197c8190611b8a9089908990889088908890600401612535565b602060405180830381600087803b158015611ba457600080fd5b505af1925050508015611bd4575060408051601f3d908101601f19168201909252611bd191810190612334565b60015b611c8157611be0612995565b806308c379a01415611c1a5750611bf56129b1565b80611c005750611c1c565b8060405162461bcd60e51b81526004016106799190612619565b505b60405162461bcd60e51b815260206004820152603460248201527f455243313135353a207472616e7366657220746f206e6f6e20455243313135356044820152732932b1b2b4bb32b91034b6b83632b6b2b73a32b960611b6064820152608401610679565b6001600160e01b0319811663bc197c8160e01b1461155c5760405162461bcd60e51b81526004016106799061262c565b60408051600180825281830190925260609160009190602080830190803683370190505090508281600081518110611ceb57611ceb612969565b602090810291909101015292915050565b6001600160a01b0384163b15611b3e5760405163f23a6e6160e01b81526001600160a01b0385169063f23a6e6190611d409089908990889088908890600401612593565b602060405180830381600087803b158015611d5a57600080fd5b505af1925050508015611d8a575060408051601f3d908101601f19168201909252611d8791810190612334565b60015b611d9657611be0612995565b6001600160e01b0319811663f23a6e6160e01b1461155c5760405162461bcd60e51b81526004016106799061262c565b6001600160a01b038516611e4d5760005b8351811015611e4b57828181518110611df257611df2612969565b602002602001015160056000868481518110611e1057611e10612969565b602002602001015181526020019081526020016000206000828254611e359190612712565b90915550611e4490508161290e565b9050611dd7565b505b6001600160a01b038416611b3e5760005b835181101561155c57828181518110611e7957611e79612969565b602002602001015160056000868481518110611e9757611e97612969565b602002602001015181526020019081526020016000206000828254611ebc9190612848565b90915550611ecb90508161290e565b9050611e5e565b828054611ede906128a6565b90600052602060002090601f016020900481019282611f005760008555611f46565b82601f10611f1957805160ff1916838001178555611f46565b82800160010185558215611f46579182015b82811115611f46578251825591602001919060010190611f2b565b50611f52929150611f56565b5090565b5b80821115611f525760008155600101611f57565b600067ffffffffffffffff831115611f8557611f8561297f565b604051611f9c601f8501601f1916602001826128e1565b809150838152848484011115611fb157600080fd5b83836020830137600060208583010152509392505050565b80356001600160a01b0381168114611fe057600080fd5b919050565b600082601f830112611ff657600080fd5b81356020612003826126ee565b60405161201082826128e1565b8381528281019150858301600585901b8701840188101561203057600080fd5b60005b8581101561204f57813584529284019290840190600101612033565b5090979650505050505050565b600082601f83011261206d57600080fd5b61207c83833560208501611f6b565b9392505050565b60006020828403121561209557600080fd5b61207c82611fc9565b600080604083850312156120b157600080fd5b6120ba83611fc9565b91506120c860208401611fc9565b90509250929050565b600080600080600060a086880312156120e957600080fd5b6120f286611fc9565b945061210060208701611fc9565b9350604086013567ffffffffffffffff8082111561211d57600080fd5b61212989838a01611fe5565b9450606088013591508082111561213f57600080fd5b61214b89838a01611fe5565b9350608088013591508082111561216157600080fd5b5061216e8882890161205c565b9150509295509295909350565b600080600080600060a0868803121561219357600080fd5b61219c86611fc9565b94506121aa60208701611fc9565b93506040860135925060608601359150608086013567ffffffffffffffff8111156121d457600080fd5b61216e8882890161205c565b600080604083850312156121f357600080fd5b6121fc83611fc9565b91506020830135801515811461221157600080fd5b809150509250929050565b6000806040838503121561222f57600080fd5b61223883611fc9565b946020939093013593505050565b6000806040838503121561225957600080fd5b823567ffffffffffffffff8082111561227157600080fd5b818501915085601f83011261228557600080fd5b81356020612292826126ee565b60405161229f82826128e1565b8381528281019150858301600585901b870184018b10156122bf57600080fd5b600096505b848710156122e9576122d581611fc9565b8352600196909601959183019183016122c4565b509650508601359250508082111561230057600080fd5b5061230d85828601611fe5565b9150509250929050565b60006020828403121561232957600080fd5b81356106f281612a3b565b60006020828403121561234657600080fd5b81516106f281612a3b565b60006020828403121561236357600080fd5b813567ffffffffffffffff81111561237a57600080fd5b8201601f8101841361238b57600080fd5b6111a784823560208401611f6b565b6000602082840312156123ac57600080fd5b5035919050565b600081518084526020808501945080840160005b838110156123e3578151875295820195908201906001016123c7565b509495945050505050565b6000815180845261240681602086016020860161285f565b601f01601f19169290920160200192915050565b8054600090600181811c908083168061243457607f831692505b602080841082141561245657634e487b7160e01b600052602260045260246000fd5b81801561246a576001811461247b576124a8565b60ff198616895284890196506124a8565b60008881526020902060005b868110156124a05781548b820152908501908301612487565b505084890196505b50505050505092915050565b60006124c0828661241a565b84516124d081836020890161285f565b602d60f81b910190815283516124ed81600184016020880161285f565b64173539b7b760d91b6001929091019182015260060195945050505050565b6000612518828461241a565b6c31b7b73a3930b1ba173539b7b760991b8152600d019392505050565b6001600160a01b0386811682528516602082015260a060408201819052600090612561908301866123b3565b828103606084015261257381866123b3565b9050828103608084015261258781856123ee565b98975050505050505050565b6001600160a01b03868116825285166020820152604081018490526060810183905260a0608082018190526000906125cd908301846123ee565b979650505050505050565b60208152600061207c60208301846123b3565b6040815260006125fe60408301856123b3565b828103602084015261261081856123b3565b95945050505050565b60208152600061207c60208301846123ee565b60208082526028908201527f455243313135353a204552433131353552656365697665722072656a656374656040820152676420746f6b656e7360c01b606082015260800190565b60208082526025908201527f455243313135353a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600067ffffffffffffffff8211156127085761270861297f565b5060051b60200190565b600082198211156127255761272561293d565b500190565b60008261273957612739612953565b500490565b600181815b8085111561277957816000190482111561275f5761275f61293d565b8085161561276c57918102915b93841c9390800290612743565b509250929050565b600061207c8383600082612797575060016106f5565b816127a4575060006106f5565b81600181146127ba57600281146127c4576127e0565b60019150506106f5565b60ff8411156127d5576127d561293d565b50506001821b6106f5565b5060208310610133831016604e8410600b8410161715612803575081810a6106f5565b61280d838361273e565b80600019048211156128215761282161293d565b029392505050565b60008160001904831182151516156128435761284361293d565b500290565b60008282101561285a5761285a61293d565b500390565b60005b8381101561287a578181015183820152602001612862565b83811115612889576000848401525b50505050565b60008161289e5761289e61293d565b506000190190565b600181811c908216806128ba57607f821691505b602082108114156128db57634e487b7160e01b600052602260045260246000fd5b50919050565b601f8201601f1916810167ffffffffffffffff811182821017156129075761290761297f565b6040525050565b60006000198214156129225761292261293d565b5060010190565b60008261293857612938612953565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600060033d11156129ae5760046000803e5060005160e01c5b90565b600060443d10156129bf5790565b6040516003193d81016004833e81513d67ffffffffffffffff81602484011181841117156129ef57505050505090565b8285019150815181811115612a075750505050505090565b843d8701016020828501011115612a215750505050505090565b612a30602082860101876128e1565b509095945050505050565b6001600160e01b03198116811461077e57600080fdfec3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62a2646970667358221220ecfe28999a2a940b03b760ca10a6a78755263039f4d510e0411113bb3f80d10164736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002368747470733a2f2f6f7274686f76657273652e696f2f6170692f6d657461646174612f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : uri_ (string): https://orthoverse.io/api/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000023
Arg [2] : 68747470733a2f2f6f7274686f76657273652e696f2f6170692f6d6574616461
Arg [3] : 74612f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46059:1925:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27932:459;;;;;;;;;;-1:-1:-1;27932:459:0;;;;;:::i;:::-;;:::i;:::-;;;22031:25:1;;;22019:2;22004:18;27932:459:0;;;;;;;;24992:360;;;;;;;;;;-1:-1:-1;24992:360:0;;;;;:::i;:::-;;:::i;:::-;;;12265:14:1;;12258:22;12240:41;;12228:2;12213:18;24992:360:0;12100:187:1;46369:91:0;;;;;;;;;;-1:-1:-1;46369:91:0;;;;;:::i;:::-;;:::i;:::-;;46177:90;;;;;;;;;;-1:-1:-1;46240:19:0;;;;;;;;;;;;-1:-1:-1;;;46240:19:0;;;;46177:90;;;;;;;:::i;27334:447::-;;;;;;;;;;-1:-1:-1;27334:447:0;;;;;:::i;:::-;;:::i;24106:51::-;;;;;;;;;;;;24145:12;24106:51;;30795:442;;;;;;;;;;-1:-1:-1;30795:442:0;;;;;:::i;:::-;;:::i;24164:55::-;;;;;;;;;;;;24208:11;24164:55;;47304:270;;;;;;;;;;;;;:::i;28557:561::-;;;;;;;;;;-1:-1:-1;28557:561:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;44863:113::-;;;;;;;;;;-1:-1:-1;44863:113:0;;;;;:::i;:::-;-1:-1:-1;44964:4:0;;44863:113;26678:188;;;;;;;;;;-1:-1:-1;26759:10:0;26721:7;26836:13;;;;;;;;;;;:22;;;;;;26678:188;;29386:569;;;;;;:::i;:::-;;:::i;46597:154::-;;;;;;;;;;-1:-1:-1;46597:154:0;;;;;:::i;:::-;;:::i;4664:103::-;;;;;;;;;;;;;:::i;23997:51::-;;;;;;;;;;-1:-1:-1;23997:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;24226:54;;;;;;;;;;;;24269:11;24226:54;;4013:87;;;;;;;;;;-1:-1:-1;4086:6:0;;-1:-1:-1;;;;;4086:6:0;4013:87;;;-1:-1:-1;;;;;9924:32:1;;;9906:51;;9894:2;9879:18;4013:87:0;9760:203:1;46275:86:0;;;;;;;;;;-1:-1:-1;46340:13:0;;;;;;;;;;;;-1:-1:-1;;;46340:13:0;;;;46275:86;;29191:187;;;;;;;;;;-1:-1:-1;29191:187:0;;;;;:::i;:::-;;:::i;25486:459::-;;;:::i;44636:118::-;;;;;;;;;;-1:-1:-1;44636:118:0;;;;;:::i;46468:121::-;;;;;;;;;;-1:-1:-1;46468:121:0;;;;;:::i;:::-;46528:7;46555:26;;;:16;:26;;;;;;;46468:121;46759:537;;;;;;:::i;:::-;;:::i;26043:551::-;;;;;;:::i;:::-;;:::i;24365:71::-;;;;;;;;;;;;24394:42;24365:71;;24788:132;;;;;;;;;;;;;:::i;30027:218::-;;;;;;;;;;-1:-1:-1;30027:218:0;;;;;:::i;:::-;-1:-1:-1;;;;;30200:27:0;;;30171:4;30200:27;;;:18;:27;;;;;;;;:37;;;;;;;;;;;;;;;30027:218;30317:401;;;;;;;;;;-1:-1:-1;30317:401:0;;;;;:::i;:::-;;:::i;4922:238::-;;;;;;;;;;-1:-1:-1;4922:238:0;;;;;:::i;:::-;;:::i;24287:71::-;;;;;;;;;;;;24316:42;24287:71;;27932:459;28063:7;-1:-1:-1;;;;;28110:21:0;;28088:114;;;;-1:-1:-1;;;28088:114:0;;14619:2:1;28088:114:0;;;14601:21:1;14658:2;14638:18;;;14631:30;14697:34;14677:18;;;14670:62;-1:-1:-1;;;14748:18:1;;;14741:41;14799:19;;28088:114:0;;;;;;;;;28239:7;-1:-1:-1;;;;;28223:25:0;28217:2;:31;:64;;;;-1:-1:-1;28253:9:0;:13;;;;;;;;;;;-1:-1:-1;;;;;28253:22:0;;;;;;;;;;:27;28217:64;28213:171;;;-1:-1:-1;28305:1:0;28298:8;;28213:171;28346:9;:13;;;;;;;;;;;-1:-1:-1;;;;;28346:22:0;;;;;;;;;;:26;;28371:1;;28346:26;:::i;:::-;28339:33;;28213:171;27932:459;;;;:::o;24992:360::-;25139:4;-1:-1:-1;;;;;;25181:41:0;;-1:-1:-1;;;25181:41:0;;:110;;-1:-1:-1;;;;;;;25239:52:0;;-1:-1:-1;;;25239:52:0;25181:110;:163;;;-1:-1:-1;;;;;;;;;;15779:40:0;;;25308:36;15670:157;46369:91;4086:6;;-1:-1:-1;;;;;4086:6:0;2823:10;4233:23;4225:68;;;;-1:-1:-1;;;4225:68:0;;;;;;;:::i;:::-;46436:16:::1;46444:7;46436;:16::i;:::-;46369:91:::0;:::o;27334:447::-;27447:13;27562:4;27589:28;27609:7;27589:19;:28::i;:::-;27683:25;;;;:16;:25;;;;;;27666:43;;:16;:43::i;:::-;27523:235;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27478:295;;27334:447;;;:::o;30795:442::-;-1:-1:-1;;;;;31028:20:0;;2823:10;31028:20;;:60;;-1:-1:-1;31052:36:0;31069:4;2823:10;30027:218;:::i;31052:36::-;31006:160;;;;-1:-1:-1;;;31006:160:0;;17457:2:1;31006:160:0;;;17439:21:1;17496:2;17476:18;;;17469:30;17535:34;17515:18;;;17508:62;-1:-1:-1;;;17586:18:1;;;17579:48;17644:19;;31006:160:0;17255:414:1;31006:160:0;31177:52;31200:4;31206:2;31210:3;31215:7;31224:4;31177:22;:52::i;:::-;30795:442;;;;;:::o;47304:270::-;47362:21;47402:11;47394:32;;;;-1:-1:-1;;;47394:32:0;;20173:2:1;47394:32:0;;;20155:21:1;20212:1;20192:18;;;20185:29;-1:-1:-1;;;20230:18:1;;;20223:38;20278:18;;47394:32:0;19971:331:1;47394:32:0;47439:12;47470:2;47455:11;:7;47465:1;47455:11;:::i;:::-;47454:18;;;;:::i;:::-;47439:33;;47483:36;24316:42;47514:4;47483:17;:36::i;:::-;47530;24394:42;47561:4;47530:17;:36::i;:::-;47333:241;;47304:270::o;28557:561::-;28713:16;28788:3;:10;28769:8;:15;:29;28747:120;;;;-1:-1:-1;;;28747:120:0;;20919:2:1;28747:120:0;;;20901:21:1;20958:2;20938:18;;;20931:30;20997:34;20977:18;;;20970:62;-1:-1:-1;;;21048:18:1;;;21041:39;21097:19;;28747:120:0;20717:405:1;28747:120:0;28880:30;28927:8;:15;28913:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;28913:30:0;;28880:63;;28961:9;28956:122;28980:8;:15;28976:1;:19;28956:122;;;29036:30;29046:8;29055:1;29046:11;;;;;;;;:::i;:::-;;;;;;;29059:3;29063:1;29059:6;;;;;;;;:::i;:::-;;;;;;;29036:9;:30::i;:::-;29017:13;29031:1;29017:16;;;;;;;;:::i;:::-;;;;;;;;;;:49;28997:3;;;:::i;:::-;;;28956:122;;;-1:-1:-1;29097:13:0;28557:561;-1:-1:-1;;;28557:561:0:o;29386:569::-;29471:9;:19;;;;;;;;;;;29491:10;29471:31;;;;;;;;29506:1;29471:36;29449:135;;;;-1:-1:-1;;;29449:135:0;;15438:2:1;29449:135:0;;;15420:21:1;15477:2;15457:18;;;15450:30;15516:34;15496:18;;;15489:62;-1:-1:-1;;;15567:18:1;;;15560:47;15624:19;;29449:135:0;15236:413:1;29449:135:0;29601:10;24316:42;29601:16;;;:36;;-1:-1:-1;29621:10:0;24394:42;29621:16;;29601:36;29597:125;;;24269:11;29662:9;:29;;29654:56;;;;-1:-1:-1;;;29654:56:0;;18693:2:1;29654:56:0;;;18675:21:1;18732:2;18712:18;;;18705:30;-1:-1:-1;;;18751:18:1;;;18744:44;18805:18;;29654:56:0;18491:338:1;29654:56:0;29738:26;;;;:16;:26;;;;;;29767:1;-1:-1:-1;29734:214:0;;;29814:26;;;;:16;:26;;;;;;:30;;29843:1;;29814:30;:::i;:::-;29785:26;;;;:16;:26;;;;;:59;46369:91;:::o;29734:214::-;29906:26;;;;:16;:26;;;;;;:30;;29935:1;29906:30;:::i;46597:154::-;46657:7;46710:26;;;:16;:26;;;;;;:30;;46739:1;;46710:30;:::i;:::-;46706:35;;:1;:35;:::i;:::-;46685:57;;24208:11;46685:57;:::i;4664:103::-;4086:6;;-1:-1:-1;;;;;4086:6:0;2823:10;4233:23;4225:68;;;;-1:-1:-1;;;4225:68:0;;;;;;;:::i;:::-;4729:30:::1;4756:1;4729:18;:30::i;:::-;4664:103::o:0;29191:187::-;29318:52;2823:10;29351:8;29361;29318:18;:52::i;25486:459::-;24145:12;25538:9;:25;;25530:60;;;;-1:-1:-1;;;25530:60:0;;14268:2:1;25530:60:0;;;14250:21:1;14307:2;14287:18;;;14280:30;-1:-1:-1;;;14326:18:1;;;14319:52;14388:18;;25530:60:0;14066:346:1;25530:60:0;25624:10;25603:18;25712;;;;;;;;;;;:30;;;;;;25624:10;;25712:35;25704:68;;;;-1:-1:-1;;;25704:68:0;;21738:2:1;25704:68:0;;;21720:21:1;21777:2;21757:18;;;21750:30;-1:-1:-1;;;21796:18:1;;;21789:50;21856:18;;25704:68:0;21536:344:1;25704:68:0;25785:9;:18;;;;;;;;;;;-1:-1:-1;;;;;25785:30:0;;;;;;;;;;;25818:1;25785:34;;;;25877:60;;22249:25:1;;;22290:18;;;22283:34;25877:60:0;;2823:10;;25785:30;;:9;;2823:10;;-1:-1:-1;;;;;;;;;;;25877:60:0;;;;;;;;;;25519:426;;;25486:459::o;46759:537::-;-1:-1:-1;;;;;46839:22:0;;46831:65;;;;-1:-1:-1;;;46831:65:0;;13909:2:1;46831:65:0;;;13891:21:1;13948:2;13928:18;;;13921:30;13987:32;13967:18;;;13960:60;14037:18;;46831:65:0;13707:354:1;46831:65:0;-1:-1:-1;;;;;46925:26:0;;46907:15;46986:25;;;:16;:25;;;;;;47015:1;46986:30;;;;:65;;-1:-1:-1;47020:25:0;;;;:16;:25;;;;;;47049:2;47020:31;;46986:65;46964:145;;;;-1:-1:-1;;;46964:145:0;;19814:2:1;46964:145:0;;;19796:21:1;19853:2;19833:18;;;19826:30;19892:32;19872:18;;;19865:60;19942:18;;46964:145:0;19612:354:1;46964:145:0;47126:10;24316:42;47126:16;;;:36;;-1:-1:-1;47146:10:0;24394:42;47146:16;;47126:36;47122:129;;;47200:20;47212:7;47200:11;:20::i;:::-;47187:9;:33;;47179:60;;;;-1:-1:-1;;;47179:60:0;;18693:2:1;47179:60:0;;;18675:21:1;18732:2;18712:18;;;18705:30;-1:-1:-1;;;18751:18:1;;;18744:44;18805:18;;47179:60:0;18491:338:1;47179:60:0;47261:25;;;;:16;:25;;;;;:27;;;;;;:::i;:::-;;;;;;46820:476;46759:537;:::o;26043:551::-;-1:-1:-1;;;;;26108:21:0;;26100:71;;;;-1:-1:-1;;;26100:71:0;;18287:2:1;26100:71:0;;;18269:21:1;18326:2;18306:18;;;18299:30;18365:34;18345:18;;;18338:62;-1:-1:-1;;;18416:18:1;;;18409:35;18461:19;;26100:71:0;18085:401:1;26100:71:0;24145:12;26190:9;:25;;26182:60;;;;-1:-1:-1;;;26182:60:0;;14268:2:1;26182:60:0;;;14250:21:1;14307:2;14287:18;;;14280:30;-1:-1:-1;;;14326:18:1;;;14319:52;14388:18;;26182:60:0;14066:346:1;26182:60:0;-1:-1:-1;;;;;26314:28:0;;26255:18;26361;;;;;;;;;;;:30;;;;;;26276:7;;26314:28;26361:35;26353:68;;;;-1:-1:-1;;;26353:68:0;;21738:2:1;26353:68:0;;;21720:21:1;21777:2;21757:18;;;21750:30;-1:-1:-1;;;21796:18:1;;;21789:50;21856:18;;26353:68:0;21536:344:1;26353:68:0;26434:9;:18;;;;;;;;;;;-1:-1:-1;;;;;26434:30:0;;;;;;;;;;;26467:1;26434:34;;;;26526:60;;22249:25:1;;;22290:18;;;22283:34;26526:60:0;;2823:10;;26434:30;;:9;;2823:10;;-1:-1:-1;;;;;;;;;;;26526:60:0;;;;;;;;;;26089:505;;;26043:551;:::o;24788:132::-;24832:13;24889:4;24872:39;;;;;;;;:::i;:::-;;;;;;;;;;;;;24858:54;;24788:132;:::o;30317:401::-;-1:-1:-1;;;;;30525:20:0;;2823:10;30525:20;;:60;;-1:-1:-1;30549:36:0;30566:4;2823:10;30027:218;:::i;30549:36::-;30503:151;;;;-1:-1:-1;;;30503:151:0;;15856:2:1;30503:151:0;;;15838:21:1;15895:2;15875:18;;;15868:30;15934:34;15914:18;;;15907:62;-1:-1:-1;;;15985:18:1;;;15978:39;16034:19;;30503:151:0;15654:405:1;30503:151:0;30665:45;30683:4;30689:2;30693;30697:6;30705:4;30665:17;:45::i;4922:238::-;4086:6;;-1:-1:-1;;;;;4086:6:0;2823:10;4233:23;4225:68;;;;-1:-1:-1;;;4225:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5025:22:0;::::1;5003:110;;;::::0;-1:-1:-1;;;5003:110:0;;15031:2:1;5003:110:0::1;::::0;::::1;15013:21:1::0;15070:2;15050:18;;;15043:30;15109:34;15089:18;;;15082:62;-1:-1:-1;;;15160:18:1;;;15153:36;15206:19;;5003:110:0::1;14829:402:1::0;5003:110:0::1;5124:28;5143:8;5124:18;:28::i;35571:88::-:0;35638:13;;;;:4;;:13;;;;;:::i;1168:340::-;1227:13;1257:10;1253:56;;-1:-1:-1;;1284:13:0;;;;;;;;;;;;-1:-1:-1;;;1284:13:0;;;;;1168:340::o;1253:56::-;1334:5;1319:12;1379:78;1386:9;;1379:78;;1412:8;;;;:::i;:::-;;;;1444:1;1435:10;;;;;1379:78;;;1474:26;1486:5;1493:6;1474:11;:26::i;:::-;1467:33;1168:340;-1:-1:-1;;;;1168:340:0:o;335:723::-;391:13;612:10;608:53;;-1:-1:-1;;639:10:0;;;;;;;;;;;;-1:-1:-1;;;639:10:0;;;;;335:723::o;608:53::-;686:5;671:12;727:78;734:9;;727:78;;760:8;;;;:::i;:::-;;-1:-1:-1;783:10:0;;-1:-1:-1;791:2:0;783:10;;:::i;:::-;;;727:78;;;815:19;847:6;837:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;837:17:0;;815:39;;865:154;872:10;;865:154;;899:11;909:1;899:11;;:::i;:::-;;-1:-1:-1;968:10:0;976:2;968:5;:10;:::i;:::-;955:24;;:2;:24;:::i;:::-;942:39;;925:6;932;925:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;925:56:0;;;;;;;;-1:-1:-1;996:11:0;1005:2;996:11;;:::i;:::-;;;865:154;;33241:1486;33482:7;:14;33468:3;:10;:28;33446:118;;;;-1:-1:-1;;;33446:118:0;;21329:2:1;33446:118:0;;;21311:21:1;21368:2;21348:18;;;21341:30;21407:34;21387:18;;;21380:62;-1:-1:-1;;;21458:18:1;;;21451:38;21506:19;;33446:118:0;21127:404:1;33446:118:0;-1:-1:-1;;;;;33583:16:0;;33575:66;;;;-1:-1:-1;;;33575:66:0;;;;;;;:::i;:::-;2823:10;33698:60;2823:10;33729:4;33735:2;33739:3;33744:7;33753:4;33698:20;:60::i;:::-;-1:-1:-1;;;;;33791:22:0;;33771:17;33828:20;;;;;;;;;;;:26;;;;;;33824:215;;33920:9;:20;;;;;;;;;;;-1:-1:-1;;;;;33920:26:0;;;;;;;;;:31;;33950:1;;33920:9;:31;;33950:1;;33920:31;:::i;:::-;;;;-1:-1:-1;;33971:56:0;;;22249:25:1;;;34025:1:0;22305:2:1;22290:18;;22283:34;-1:-1:-1;;;;;33971:56:0;;;;34004:1;;33971:56;;;;-1:-1:-1;;;;;;;;;;;33971:56:0;22222:18:1;33971:56:0;;;;;;;33824:215;34056:9;34051:427;34075:3;:10;34071:1;:14;34051:427;;;34107:10;34120:3;34124:1;34120:6;;;;;;;;:::i;:::-;;;;;;;;;;;;34143:19;34165:13;;;;;;;;;;-1:-1:-1;;;;;34165:19:0;;;;;;;;;;;;34120:6;;-1:-1:-1;34226:15:0;34240:1;34165:19;34226:15;:::i;:::-;34245:1;34226:20;34199:132;;;;-1:-1:-1;;;34199:132:0;;19397:2:1;34199:132:0;;;19379:21:1;19436:2;19416:18;;;19409:30;19475:34;19455:18;;;19448:62;-1:-1:-1;;;19526:18:1;;;19519:46;19582:19;;34199:132:0;19195:412:1;34199:132:0;34377:9;:13;;;;;;;;;;;-1:-1:-1;;;;;34377:19:0;;;;;;;;;;34413:1;34399:15;;;34377:37;;;34444:17;;;;;;;:22;;34413:1;;34444:17;;:22;;34413:1;;34444:22;:::i;:::-;;;;;;;;34092:386;;34087:3;;;;:::i;:::-;;;34051:427;;;;34525:2;-1:-1:-1;;;;;34495:47:0;34519:4;-1:-1:-1;;;;;34495:47:0;34509:8;-1:-1:-1;;;;;34495:47:0;;34529:3;34534:7;34495:47;;;;;;;:::i;:::-;;;;;;;;34555:164;34605:8;34628:4;34647:2;34664:3;34682:7;34704:4;34555:35;:164::i;:::-;33435:1292;;33241:1486;;;;;:::o;7967:317::-;8082:6;8057:21;:31;;8049:73;;;;-1:-1:-1;;;8049:73:0;;16693:2:1;8049:73:0;;;16675:21:1;16732:2;16712:18;;;16705:30;16771:31;16751:18;;;16744:59;16820:18;;8049:73:0;16491:353:1;8049:73:0;8136:12;8154:9;-1:-1:-1;;;;;8154:14:0;8176:6;8154:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8135:52;;;8206:7;8198:78;;;;-1:-1:-1;;;8198:78:0;;16266:2:1;8198:78:0;;;16248:21:1;16305:2;16285:18;;;16278:30;16344:34;16324:18;;;16317:62;16415:28;16395:18;;;16388:56;16461:19;;8198:78:0;16064:422:1;8198:78:0;8038:246;7967:317;;:::o;5320:191::-;5413:6;;;-1:-1:-1;;;;;5430:17:0;;;-1:-1:-1;;;;;;5430:17:0;;;;;;;5463:40;;5413:6;;;5430:17;5413:6;;5463:40;;5394:16;;5463:40;5383:128;5320:191;:::o;40318:331::-;40473:8;-1:-1:-1;;;;;40464:17:0;:5;-1:-1:-1;;;;;40464:17:0;;;40456:71;;;;-1:-1:-1;;;40456:71:0;;20509:2:1;40456:71:0;;;20491:21:1;20548:2;20528:18;;;20521:30;20587:34;20567:18;;;20560:62;-1:-1:-1;;;20638:18:1;;;20631:39;20687:19;;40456:71:0;20307:405:1;40456:71:0;-1:-1:-1;;;;;40538:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;40538:46:0;;;;;;;;;;40600:41;;12240::1;;;40600::0;;12213:18:1;40600:41:0;;;;;;;40318:331;;;:::o;31701:1182::-;-1:-1:-1;;;;;31948:16:0;;31940:66;;;;-1:-1:-1;;;31940:66:0;;;;;;;:::i;:::-;32019:16;32067:13;;;;;;;;;;;-1:-1:-1;;;;;32067:19:0;;;;;;;;;;2823:10;;32063:193;;32152:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32152:19:0;;;;;;;;;;;;32174:1;32152:23;;;;32195:49;;22249:25:1;;;22290:18;;;22283:34;32152:19:0;;:9;32195:49;;;;-1:-1:-1;;;;;;;;;;;32195:49:0;22222:18:1;32195:49:0;;;;;;;32063:193;32268:185;32303:8;32326:4;32345:2;32362:21;32380:2;32362:17;:21::i;:::-;32398:25;32416:6;32398:17;:25::i;:::-;32438:4;32268:20;:185::i;:::-;32466:19;32488:13;;;;;;;;;;;-1:-1:-1;;;;;32488:19:0;;;;;;;;;;32542:15;32556:1;32488:19;32542:15;:::i;:::-;32561:1;32542:20;32520:112;;;;-1:-1:-1;;;32520:112:0;;17876:2:1;32520:112:0;;;17858:21:1;17915:2;17895:18;;;17888:30;17954:34;17934:18;;;17927:62;-1:-1:-1;;;18005:18:1;;;17998:40;18055:19;;32520:112:0;17674:406:1;32520:112:0;32670:9;:13;;;;;;;;;;;-1:-1:-1;;;;;32670:19:0;;;;;;;;;;:24;;32693:1;32670:24;;;;;;32718:17;;;;;;;:22;;32693:1;;32718:17;;:22;;32693:1;;32718:22;:::i;:::-;;;;-1:-1:-1;;32758:41:0;;;22249:25:1;;;32797:1:0;22305:2:1;22290:18;;22283:34;-1:-1:-1;;;;;32758:41:0;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;32758:41:0;22222:18:1;32758:41:0;;;;;;;32812:63;32843:8;32853:4;32859:2;32863;32867:1;32870:4;32812:30;:63::i;1636:451::-;1711:13;1737:19;1769:10;1773:6;1769:1;:10;:::i;:::-;:14;;1782:1;1769:14;:::i;:::-;1759:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1759:25:0;;1737:47;;-1:-1:-1;;;1795:6:0;1802:1;1795:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1795:15:0;;;;;;;;;-1:-1:-1;;;1821:6:0;1828:1;1821:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1821:15:0;;;;;;;;-1:-1:-1;1852:9:0;1864:10;1868:6;1864:1;:10;:::i;:::-;:14;;1877:1;1864:14;:::i;:::-;1852:26;;1847:135;1884:1;1880;:5;1847:135;;;-1:-1:-1;;;1932:5:0;1940:3;1932:11;1919:25;;;;;;;:::i;:::-;;;;1907:6;1914:1;1907:9;;;;;;;;:::i;:::-;;;;:37;-1:-1:-1;;;;;1907:37:0;;;;;;;;-1:-1:-1;1969:1:0;1959:11;;;;;1887:3;;;:::i;:::-;;;1847:135;;;-1:-1:-1;2000:10:0;;1992:55;;;;-1:-1:-1;;;1992:55:0;;13139:2:1;1992:55:0;;;13121:21:1;;;13158:18;;;13151:30;13217:34;13197:18;;;13190:62;13269:18;;1992:55:0;12937:356:1;47652:329:0;47907:66;47934:8;47944:4;47950:2;47954:3;47959:7;47968:4;47907:26;:66::i;:::-;47652:329;;;;;;:::o;42740:975::-;-1:-1:-1;;;;;42980:13:0;;7001:19;:23;42976:732;;43033:203;;-1:-1:-1;;;43033:203:0;;-1:-1:-1;;;;;43033:43:0;;;;;:203;;43099:8;;43130:4;;43157:3;;43183:7;;43213:4;;43033:203;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43033:203:0;;;;;;;;-1:-1:-1;;43033:203:0;;;;;;;;;;;;:::i;:::-;;;43012:685;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;43570:6;43563:14;;-1:-1:-1;;;43563:14:0;;;;;;;;:::i;43012:685::-;;;43619:62;;-1:-1:-1;;;43619:62:0;;12718:2:1;43619:62:0;;;12700:21:1;12757:2;12737:18;;;12730:30;12796:34;12776:18;;;12769:62;-1:-1:-1;;;12847:18:1;;;12840:50;12907:19;;43619:62:0;12516:416:1;43012:685:0;-1:-1:-1;;;;;;43321:60:0;;-1:-1:-1;;;43321:60:0;43295:199;;43424:50;;-1:-1:-1;;;43424:50:0;;;;;;;:::i;43723:230::-;43875:16;;;43889:1;43875:16;;;;;;;;;43816;;43850:22;;43875:16;;;;;;;;;;;;-1:-1:-1;43875:16:0;43850:41;;43913:7;43902:5;43908:1;43902:8;;;;;;;;:::i;:::-;;;;;;;;;;:18;43940:5;43723:230;-1:-1:-1;;43723:230:0:o;41834:898::-;-1:-1:-1;;;;;42049:13:0;;7001:19;:23;42045:680;;42102:196;;-1:-1:-1;;;42102:196:0;;-1:-1:-1;;;;;42102:38:0;;;;;:196;;42163:8;;42194:4;;42221:2;;42246:6;;42275:4;;42102:196;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;42102:196:0;;;;;;;;-1:-1:-1;;42102:196:0;;;;;;;;;;;;:::i;:::-;;;42081:633;;;;:::i;:::-;-1:-1:-1;;;;;;42361:55:0;;-1:-1:-1;;;42361:55:0;42357:154;;42441:50;;-1:-1:-1;;;42441:50:0;;;;;;;:::i;45051:655::-;-1:-1:-1;;;;;45373:18:0;;45369:160;;45413:9;45408:110;45432:3;:10;45428:1;:14;45408:110;;;45492:7;45500:1;45492:10;;;;;;;;:::i;:::-;;;;;;;45468:12;:20;45481:3;45485:1;45481:6;;;;;;;;:::i;:::-;;;;;;;45468:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;45444:3:0;;-1:-1:-1;45444:3:0;;:::i;:::-;;;45408:110;;;;45369:160;-1:-1:-1;;;;;45545:16:0;;45541:158;;45583:9;45578:110;45602:3;:10;45598:1;:14;45578:110;;;45662:7;45670:1;45662:10;;;;;;;;:::i;:::-;;;;;;;45638:12;:20;45651:3;45655:1;45651:6;;;;;;;;:::i;:::-;;;;;;;45638:20;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;-1:-1:-1;45614:3:0;;-1:-1:-1;45614:3:0;;:::i;:::-;;;45578:110;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:468:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;183:2;177:9;195:69;252:2;231:15;;-1:-1:-1;;227:29:1;258:4;223:40;177:9;195:69;:::i;:::-;282:6;273:15;;312:6;304;297:22;352:3;343:6;338:3;334:16;331:25;328:45;;;369:1;366;359:12;328:45;419:6;414:3;407:4;399:6;395:17;382:44;474:1;467:4;458:6;450;446:19;442:30;435:41;;14:468;;;;;:::o;487:173::-;555:20;;-1:-1:-1;;;;;604:31:1;;594:42;;584:70;;650:1;647;640:12;584:70;487:173;;;:::o;665:735::-;719:5;772:3;765:4;757:6;753:17;749:27;739:55;;790:1;787;780:12;739:55;826:6;813:20;852:4;875:43;915:2;875:43;:::i;:::-;947:2;941:9;959:31;987:2;979:6;959:31;:::i;:::-;1025:18;;;1059:15;;;;-1:-1:-1;1094:15:1;;;1144:1;1140:10;;;1128:23;;1124:32;;1121:41;-1:-1:-1;1118:61:1;;;1175:1;1172;1165:12;1118:61;1197:1;1207:163;1221:2;1218:1;1215:9;1207:163;;;1278:17;;1266:30;;1316:12;;;;1348;;;;1239:1;1232:9;1207:163;;;-1:-1:-1;1388:6:1;;665:735;-1:-1:-1;;;;;;;665:735:1:o;1405:220::-;1447:5;1500:3;1493:4;1485:6;1481:17;1477:27;1467:55;;1518:1;1515;1508:12;1467:55;1540:79;1615:3;1606:6;1593:20;1586:4;1578:6;1574:17;1540:79;:::i;:::-;1531:88;1405:220;-1:-1:-1;;;1405:220:1:o;1630:186::-;1689:6;1742:2;1730:9;1721:7;1717:23;1713:32;1710:52;;;1758:1;1755;1748:12;1710:52;1781:29;1800:9;1781:29;:::i;1821:260::-;1889:6;1897;1950:2;1938:9;1929:7;1925:23;1921:32;1918:52;;;1966:1;1963;1956:12;1918:52;1989:29;2008:9;1989:29;:::i;:::-;1979:39;;2037:38;2071:2;2060:9;2056:18;2037:38;:::i;:::-;2027:48;;1821:260;;;;;:::o;2086:943::-;2240:6;2248;2256;2264;2272;2325:3;2313:9;2304:7;2300:23;2296:33;2293:53;;;2342:1;2339;2332:12;2293:53;2365:29;2384:9;2365:29;:::i;:::-;2355:39;;2413:38;2447:2;2436:9;2432:18;2413:38;:::i;:::-;2403:48;;2502:2;2491:9;2487:18;2474:32;2525:18;2566:2;2558:6;2555:14;2552:34;;;2582:1;2579;2572:12;2552:34;2605:61;2658:7;2649:6;2638:9;2634:22;2605:61;:::i;:::-;2595:71;;2719:2;2708:9;2704:18;2691:32;2675:48;;2748:2;2738:8;2735:16;2732:36;;;2764:1;2761;2754:12;2732:36;2787:63;2842:7;2831:8;2820:9;2816:24;2787:63;:::i;:::-;2777:73;;2903:3;2892:9;2888:19;2875:33;2859:49;;2933:2;2923:8;2920:16;2917:36;;;2949:1;2946;2939:12;2917:36;;2972:51;3015:7;3004:8;2993:9;2989:24;2972:51;:::i;:::-;2962:61;;;2086:943;;;;;;;;:::o;3034:606::-;3138:6;3146;3154;3162;3170;3223:3;3211:9;3202:7;3198:23;3194:33;3191:53;;;3240:1;3237;3230:12;3191:53;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3447:2;3436:9;3432:18;3419:32;3409:42;;3502:3;3491:9;3487:19;3474:33;3530:18;3522:6;3519:30;3516:50;;;3562:1;3559;3552:12;3516:50;3585:49;3626:7;3617:6;3606:9;3602:22;3585:49;:::i;3645:347::-;3710:6;3718;3771:2;3759:9;3750:7;3746:23;3742:32;3739:52;;;3787:1;3784;3777:12;3739:52;3810:29;3829:9;3810:29;:::i;:::-;3800:39;;3889:2;3878:9;3874:18;3861:32;3936:5;3929:13;3922:21;3915:5;3912:32;3902:60;;3958:1;3955;3948:12;3902:60;3981:5;3971:15;;;3645:347;;;;;:::o;3997:254::-;4065:6;4073;4126:2;4114:9;4105:7;4101:23;4097:32;4094:52;;;4142:1;4139;4132:12;4094:52;4165:29;4184:9;4165:29;:::i;:::-;4155:39;4241:2;4226:18;;;;4213:32;;-1:-1:-1;;;3997:254:1:o;4256:1219::-;4374:6;4382;4435:2;4423:9;4414:7;4410:23;4406:32;4403:52;;;4451:1;4448;4441:12;4403:52;4491:9;4478:23;4520:18;4561:2;4553:6;4550:14;4547:34;;;4577:1;4574;4567:12;4547:34;4615:6;4604:9;4600:22;4590:32;;4660:7;4653:4;4649:2;4645:13;4641:27;4631:55;;4682:1;4679;4672:12;4631:55;4718:2;4705:16;4740:4;4763:43;4803:2;4763:43;:::i;:::-;4835:2;4829:9;4847:31;4875:2;4867:6;4847:31;:::i;:::-;4913:18;;;4947:15;;;;-1:-1:-1;4982:11:1;;;5024:1;5020:10;;;5012:19;;5008:28;;5005:41;-1:-1:-1;5002:61:1;;;5059:1;5056;5049:12;5002:61;5081:1;5072:10;;5091:169;5105:2;5102:1;5099:9;5091:169;;;5162:23;5181:3;5162:23;:::i;:::-;5150:36;;5123:1;5116:9;;;;;5206:12;;;;5238;;5091:169;;;-1:-1:-1;5279:6:1;-1:-1:-1;;5323:18:1;;5310:32;;-1:-1:-1;;5354:16:1;;;5351:36;;;5383:1;5380;5373:12;5351:36;;5406:63;5461:7;5450:8;5439:9;5435:24;5406:63;:::i;:::-;5396:73;;;4256:1219;;;;;:::o;5480:245::-;5538:6;5591:2;5579:9;5570:7;5566:23;5562:32;5559:52;;;5607:1;5604;5597:12;5559:52;5646:9;5633:23;5665:30;5689:5;5665:30;:::i;5730:249::-;5799:6;5852:2;5840:9;5831:7;5827:23;5823:32;5820:52;;;5868:1;5865;5858:12;5820:52;5900:9;5894:16;5919:30;5943:5;5919:30;:::i;5984:450::-;6053:6;6106:2;6094:9;6085:7;6081:23;6077:32;6074:52;;;6122:1;6119;6112:12;6074:52;6162:9;6149:23;6195:18;6187:6;6184:30;6181:50;;;6227:1;6224;6217:12;6181:50;6250:22;;6303:4;6295:13;;6291:27;-1:-1:-1;6281:55:1;;6332:1;6329;6322:12;6281:55;6355:73;6420:7;6415:2;6402:16;6397:2;6393;6389:11;6355:73;:::i;6439:180::-;6498:6;6551:2;6539:9;6530:7;6526:23;6522:32;6519:52;;;6567:1;6564;6557:12;6519:52;-1:-1:-1;6590:23:1;;6439:180;-1:-1:-1;6439:180:1:o;6624:435::-;6677:3;6715:5;6709:12;6742:6;6737:3;6730:19;6768:4;6797:2;6792:3;6788:12;6781:19;;6834:2;6827:5;6823:14;6855:1;6865:169;6879:6;6876:1;6873:13;6865:169;;;6940:13;;6928:26;;6974:12;;;;7009:15;;;;6901:1;6894:9;6865:169;;;-1:-1:-1;7050:3:1;;6624:435;-1:-1:-1;;;;;6624:435:1:o;7064:257::-;7105:3;7143:5;7137:12;7170:6;7165:3;7158:19;7186:63;7242:6;7235:4;7230:3;7226:14;7219:4;7212:5;7208:16;7186:63;:::i;:::-;7303:2;7282:15;-1:-1:-1;;7278:29:1;7269:39;;;;7310:4;7265:50;;7064:257;-1:-1:-1;;7064:257:1:o;7326:973::-;7411:12;;7376:3;;7466:1;7486:18;;;;7539;;;;7566:61;;7620:4;7612:6;7608:17;7598:27;;7566:61;7646:2;7694;7686:6;7683:14;7663:18;7660:38;7657:161;;;7740:10;7735:3;7731:20;7728:1;7721:31;7775:4;7772:1;7765:15;7803:4;7800:1;7793:15;7657:161;7834:18;7861:104;;;;7979:1;7974:319;;;;7827:466;;7861:104;-1:-1:-1;;7894:24:1;;7882:37;;7939:16;;;;-1:-1:-1;7861:104:1;;7974:319;22589:1;22582:14;;;22626:4;22613:18;;8068:1;8082:165;8096:6;8093:1;8090:13;8082:165;;;8174:14;;8161:11;;;8154:35;8217:16;;;;8111:10;;8082:165;;;8086:3;;8276:6;8271:3;8267:16;8260:23;;7827:466;;;;;;;7326:973;;;;:::o;8304:872::-;8730:3;8758:38;8792:3;8784:6;8758:38;:::i;:::-;8825:6;8819:13;8841:52;8886:6;8882:2;8875:4;8867:6;8863:17;8841:52;:::i;:::-;-1:-1:-1;;;8915:15:1;;8939:18;;;8982:13;;9004:65;8982:13;9056:1;9045:13;;9038:4;9026:17;;9004:65;:::i;:::-;-1:-1:-1;;;9132:1:1;9088:20;;;;9124:10;;;9117:27;9168:1;9160:10;;8304:872;-1:-1:-1;;;;;8304:872:1:o;9181:364::-;9410:3;9438:38;9472:3;9464:6;9438:38;:::i;:::-;-1:-1:-1;;;9485:27:1;;9536:2;9528:11;;9181:364;-1:-1:-1;;;9181:364:1:o;9968:826::-;-1:-1:-1;;;;;10365:15:1;;;10347:34;;10417:15;;10412:2;10397:18;;10390:43;10327:3;10464:2;10449:18;;10442:31;;;10290:4;;10496:57;;10533:19;;10525:6;10496:57;:::i;:::-;10601:9;10593:6;10589:22;10584:2;10573:9;10569:18;10562:50;10635:44;10672:6;10664;10635:44;:::i;:::-;10621:58;;10728:9;10720:6;10716:22;10710:3;10699:9;10695:19;10688:51;10756:32;10781:6;10773;10756:32;:::i;:::-;10748:40;9968:826;-1:-1:-1;;;;;;;;9968:826:1:o;10799:560::-;-1:-1:-1;;;;;11096:15:1;;;11078:34;;11148:15;;11143:2;11128:18;;11121:43;11195:2;11180:18;;11173:34;;;11238:2;11223:18;;11216:34;;;11058:3;11281;11266:19;;11259:32;;;11021:4;;11308:45;;11333:19;;11325:6;11308:45;:::i;:::-;11300:53;10799:560;-1:-1:-1;;;;;;;10799:560:1:o;11364:261::-;11543:2;11532:9;11525:21;11506:4;11563:56;11615:2;11604:9;11600:18;11592:6;11563:56;:::i;11630:465::-;11887:2;11876:9;11869:21;11850:4;11913:56;11965:2;11954:9;11950:18;11942:6;11913:56;:::i;:::-;12017:9;12009:6;12005:22;12000:2;11989:9;11985:18;11978:50;12045:44;12082:6;12074;12045:44;:::i;:::-;12037:52;11630:465;-1:-1:-1;;;;;11630:465:1:o;12292:219::-;12441:2;12430:9;12423:21;12404:4;12461:44;12501:2;12490:9;12486:18;12478:6;12461:44;:::i;13298:404::-;13500:2;13482:21;;;13539:2;13519:18;;;13512:30;13578:34;13573:2;13558:18;;13551:62;-1:-1:-1;;;13644:2:1;13629:18;;13622:38;13692:3;13677:19;;13298:404::o;16849:401::-;17051:2;17033:21;;;17090:2;17070:18;;;17063:30;17129:34;17124:2;17109:18;;17102:62;-1:-1:-1;;;17195:2:1;17180:18;;17173:35;17240:3;17225:19;;16849:401::o;18834:356::-;19036:2;19018:21;;;19055:18;;;19048:30;19114:34;19109:2;19094:18;;19087:62;19181:2;19166:18;;18834:356::o;22328:183::-;22388:4;22421:18;22413:6;22410:30;22407:56;;;22443:18;;:::i;:::-;-1:-1:-1;22488:1:1;22484:14;22500:4;22480:25;;22328:183::o;22642:128::-;22682:3;22713:1;22709:6;22706:1;22703:13;22700:39;;;22719:18;;:::i;:::-;-1:-1:-1;22755:9:1;;22642:128::o;22775:120::-;22815:1;22841;22831:35;;22846:18;;:::i;:::-;-1:-1:-1;22880:9:1;;22775:120::o;22900:422::-;22989:1;23032:5;22989:1;23046:270;23067:7;23057:8;23054:21;23046:270;;;23126:4;23122:1;23118:6;23114:17;23108:4;23105:27;23102:53;;;23135:18;;:::i;:::-;23185:7;23175:8;23171:22;23168:55;;;23205:16;;;;23168:55;23284:22;;;;23244:15;;;;23046:270;;;23050:3;22900:422;;;;;:::o;23327:131::-;23387:5;23416:36;23443:8;23437:4;23512:5;23542:8;23532:80;;-1:-1:-1;23583:1:1;23597:5;;23532:80;23631:4;23621:76;;-1:-1:-1;23668:1:1;23682:5;;23621:76;23713:4;23731:1;23726:59;;;;23799:1;23794:130;;;;23706:218;;23726:59;23756:1;23747:10;;23770:5;;;23794:130;23831:3;23821:8;23818:17;23815:43;;;23838:18;;:::i;:::-;-1:-1:-1;;23894:1:1;23880:16;;23909:5;;23706:218;;24008:2;23998:8;23995:16;23989:3;23983:4;23980:13;23976:36;23970:2;23960:8;23957:16;23952:2;23946:4;23943:12;23939:35;23936:77;23933:159;;;-1:-1:-1;24045:19:1;;;24077:5;;23933:159;24124:34;24149:8;24143:4;24124:34;:::i;:::-;24194:6;24190:1;24186:6;24182:19;24173:7;24170:32;24167:58;;;24205:18;;:::i;:::-;24243:20;;23463:806;-1:-1:-1;;;23463:806:1:o;24274:168::-;24314:7;24380:1;24376;24372:6;24368:14;24365:1;24362:21;24357:1;24350:9;24343:17;24339:45;24336:71;;;24387:18;;:::i;:::-;-1:-1:-1;24427:9:1;;24274:168::o;24447:125::-;24487:4;24515:1;24512;24509:8;24506:34;;;24520:18;;:::i;:::-;-1:-1:-1;24557:9:1;;24447:125::o;24577:258::-;24649:1;24659:113;24673:6;24670:1;24667:13;24659:113;;;24749:11;;;24743:18;24730:11;;;24723:39;24695:2;24688:10;24659:113;;;24790:6;24787:1;24784:13;24781:48;;;24825:1;24816:6;24811:3;24807:16;24800:27;24781:48;;24577:258;;;:::o;24840:136::-;24879:3;24907:5;24897:39;;24916:18;;:::i;:::-;-1:-1:-1;;;24952:18:1;;24840:136::o;24981:380::-;25060:1;25056:12;;;;25103;;;25124:61;;25178:4;25170:6;25166:17;25156:27;;25124:61;25231:2;25223:6;25220:14;25200:18;25197:38;25194:161;;;25277:10;25272:3;25268:20;25265:1;25258:31;25312:4;25309:1;25302:15;25340:4;25337:1;25330:15;25194:161;;24981:380;;;:::o;25366:249::-;25476:2;25457:13;;-1:-1:-1;;25453:27:1;25441:40;;25511:18;25496:34;;25532:22;;;25493:62;25490:88;;;25558:18;;:::i;:::-;25594:2;25587:22;-1:-1:-1;;25366:249:1:o;25620:135::-;25659:3;-1:-1:-1;;25680:17:1;;25677:43;;;25700:18;;:::i;:::-;-1:-1:-1;25747:1:1;25736:13;;25620:135::o;25760:112::-;25792:1;25818;25808:35;;25823:18;;:::i;:::-;-1:-1:-1;25857:9:1;;25760:112::o;25877:127::-;25938:10;25933:3;25929:20;25926:1;25919:31;25969:4;25966:1;25959:15;25993:4;25990:1;25983:15;26009:127;26070:10;26065:3;26061:20;26058:1;26051:31;26101:4;26098:1;26091:15;26125:4;26122:1;26115:15;26141:127;26202:10;26197:3;26193:20;26190:1;26183:31;26233:4;26230:1;26223:15;26257:4;26254:1;26247:15;26273:127;26334:10;26329:3;26325:20;26322:1;26315:31;26365:4;26362:1;26355:15;26389:4;26386:1;26379:15;26405:179;26440:3;26482:1;26464:16;26461:23;26458:120;;;26528:1;26525;26522;26507:23;-1:-1:-1;26565:1:1;26559:8;26554:3;26550:18;26458:120;26405:179;:::o;26589:671::-;26628:3;26670:4;26652:16;26649:26;26646:39;;;26589:671;:::o;26646:39::-;26712:2;26706:9;-1:-1:-1;;26777:16:1;26773:25;;26770:1;26706:9;26749:50;26828:4;26822:11;26852:16;26887:18;26958:2;26951:4;26943:6;26939:17;26936:25;26931:2;26923:6;26920:14;26917:45;26914:58;;;26965:5;;;;;26589:671;:::o;26914:58::-;27002:6;26996:4;26992:17;26981:28;;27038:3;27032:10;27065:2;27057:6;27054:14;27051:27;;;27071:5;;;;;;26589:671;:::o;27051:27::-;27155:2;27136:16;27130:4;27126:27;27122:36;27115:4;27106:6;27101:3;27097:16;27093:27;27090:69;27087:82;;;27162:5;;;;;;26589:671;:::o;27087:82::-;27178:57;27229:4;27220:6;27212;27208:19;27204:30;27198:4;27178:57;:::i;:::-;-1:-1:-1;27251:3:1;;26589:671;-1:-1:-1;;;;;26589:671:1:o;27265:131::-;-1:-1:-1;;;;;;27339:32:1;;27329:43;;27319:71;;27386:1;27383;27376:12

Swarm Source

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