ETH Price: $3,487.09 (+3.43%)
Gas: 3 Gwei

Token

LootIslands (ISLOOT)
 

Overview

Max Total Supply

175 ISLOOT

Holders

83

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 ISLOOT
0xf1598b6dccacd5b35c92c5fa16ca8f3fd8ddab51
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:
LootIslands

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-03
*/

// SPDX-License-Identifier: Unlicensed
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);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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

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

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

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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);
    }

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private 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);
            }
        }
    }
}

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

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

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

        _approve(to, tokenId);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}
/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}
/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

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

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

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

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

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

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

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

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


interface LootInterface {
    function ownerOf(uint256 tokenId) external view returns (address owner);
}


contract LootIslands is  ERC721Enumerable, ReentrancyGuard, Ownable {
    using SafeMath for uint256;

    string public PROVENANCE = "";
    uint256 public publicPrice = 0.02 ether;
    string public baseURI;

    //Loot Contract
    address public lootAddress = 0xFF9C1b15B16263C61d017ee9F65C50e4AE0113D7;
    LootInterface lootContract = LootInterface(lootAddress);

    constructor() ERC721("LootIslands", "ISLOOT") {
    }

    function withdraw() public onlyOwner {
        payable(msg.sender).transfer(address(this).balance);
    }

    function deposit() public payable onlyOwner {}

    function setPublicPrice(uint256 newPrice) public onlyOwner {
        publicPrice = newPrice;
    }

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

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

    function setProvenance(string memory prov) public onlyOwner {
        PROVENANCE = prov;
    }

    //Private sale minting (reserved for Loot owners)
    function mintWithLoot(uint lootId) public payable nonReentrant {
        require(lootId > 0 && lootId <= 8000, "Token ID invalid");
        require(lootContract.ownerOf(lootId) == msg.sender, "Not the owner of this loot");

        _safeMint(msg.sender, lootId);
    }

    function multiMintWithLoot(uint256[] memory lootIds) public payable nonReentrant {
        for (uint256 i = 0; i < lootIds.length; i++) {
            require(lootContract.ownerOf(lootIds[i]) == msg.sender, "Not the owner of this loot");
            _safeMint(_msgSender(), lootIds[i]);
        }
    }

    //Public sale minting
    function mint(uint lootId) public payable nonReentrant {
        require(publicPrice <= msg.value, "Ether value sent is not correct");
        require(lootId > 8000 && lootId <= 12000, "Token ID invalid");
        _safeMint(msg.sender, lootId);
    }

    function multiMint(uint256[] memory lootIds) public payable nonReentrant {
        require((publicPrice * lootIds.length) <= msg.value, "Ether value sent is not correct");
        for (uint256 i = 0; i < lootIds.length; i++) {
            require(lootIds[i] > 8000 && lootIds[i] < 12000, "Token ID invalid");
            _safeMint(msg.sender, lootIds[i]);
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lootAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"lootId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lootId","type":"uint256"}],"name":"mintWithLoot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"lootIds","type":"uint256[]"}],"name":"multiMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"lootIds","type":"uint256[]"}],"name":"multiMintWithLoot","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"prov","type":"string"}],"name":"setProvenance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPublicPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c916200013d565b5066470de4df820000600d55600f805473ff9c1b15b16263c61d017ee9f65c50e4ae0113d76001600160a01b031991821681179092556010805490911690911790553480156200006a57600080fd5b50604080518082018252600b81526a4c6f6f7449736c616e647360a81b6020808301918252835180850190945260068452651254d313d3d560d21b908401528151919291620000bc916000916200013d565b508051620000d29060019060208401906200013d565b50506001600a5550620000e533620000eb565b62000220565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014b90620001e3565b90600052602060002090601f0160209004810192826200016f5760008555620001ba565b82601f106200018a57805160ff1916838001178555620001ba565b82800160010185558215620001ba579182015b82811115620001ba5782518255916020019190600101906200019d565b50620001c8929150620001cc565b5090565b5b80821115620001c85760008155600101620001cd565b600181811c90821680620001f857607f821691505b602082108114156200021a57634e487b7160e01b600052602260045260246000fd5b50919050565b61250080620002306000396000f3fe6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610516578063f2fde38b1461055f578063fd12c9681461057f578063ffe630b51461059257600080fd5b8063b88d4fde146104ae578063c6275255146104ce578063c87b56dd146104ee578063d0e30db01461050e57600080fd5b80639a0e4ebb116100d15780639a0e4ebb14610452578063a0712d6814610465578063a22cb46514610478578063a945bf801461049857600080fd5b806370a08231146103ea578063715018a61461040a5780638da5cb5b1461041f57806395d89b411461043d57600080fd5b80633ccfd60b1161017a5780636352211e116101495780636352211e1461038d5780636373a6b1146103ad57806367fd1a0f146103c25780636c0360eb146103d557600080fd5b80633ccfd60b1461031857806342842e0e1461032d5780634f6ccce71461034d57806355f804b31461036d57600080fd5b80630e439326116101b65780630e4393261461029957806318160ddd146102b957806323b872dd146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004612088565b6105b2565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105dd565b60405161021491906121bc565b34801561024b57600080fd5b5061025f61025a36600461210b565b61066f565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611faf565b610709565b005b3480156102a557600080fd5b50600f5461025f906001600160a01b031681565b3480156102c557600080fd5b506008545b604051908152602001610214565b3480156102e457600080fd5b506102976102f3366004611ebb565b61081f565b34801561030457600080fd5b506102ca610313366004611faf565b610850565b34801561032457600080fd5b506102976108e6565b34801561033957600080fd5b50610297610348366004611ebb565b61093f565b34801561035957600080fd5b506102ca61036836600461210b565b61095a565b34801561037957600080fd5b506102976103883660046120c2565b6109ed565b34801561039957600080fd5b5061025f6103a836600461210b565b610a2e565b3480156103b957600080fd5b50610232610aa5565b6102976103d0366004611fdb565b610b33565b3480156103e157600080fd5b50610232610c9a565b3480156103f657600080fd5b506102ca610405366004611e48565b610ca7565b34801561041657600080fd5b50610297610d2e565b34801561042b57600080fd5b50600b546001600160a01b031661025f565b34801561044957600080fd5b50610232610d64565b610297610460366004611fdb565b610d73565b61029761047336600461210b565b610e8d565b34801561048457600080fd5b50610297610493366004611f7c565b610f48565b3480156104a457600080fd5b506102ca600d5481565b3480156104ba57600080fd5b506102976104c9366004611efc565b61100d565b3480156104da57600080fd5b506102976104e936600461210b565b611045565b3480156104fa57600080fd5b5061023261050936600461210b565b611074565b61029761114f565b34801561052257600080fd5b50610208610531366004611e82565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056b57600080fd5b5061029761057a366004611e48565b611179565b61029761058d36600461210b565b611211565b34801561059e57600080fd5b506102976105ad3660046120c2565b611338565b60006001600160e01b0319821663780e9d6360e01b14806105d757506105d782611375565b92915050565b6060600080546105ec906123c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610618906123c7565b80156106655780601f1061063a57610100808354040283529160200191610665565b820191906000526020600020905b81548152906001019060200180831161064857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071482610a2e565b9050806001600160a01b0316836001600160a01b031614156107825760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e4565b336001600160a01b038216148061079e575061079e8133610531565b6108105760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e4565b61081a83836113c5565b505050565b6108293382611433565b6108455760405162461bcd60e51b81526004016106e490612280565b61081a83838361152a565b600061085b83610ca7565b82106108bd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146109105760405162461bcd60e51b81526004016106e490612221565b60405133904780156108fc02916000818181858888f1935050505015801561093c573d6000803e3d6000fd5b50565b61081a8383836040518060200160405280600081525061100d565b600061096560085490565b82106109c85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e4565b600882815481106109db576109db612473565b90600052602060002001549050919050565b600b546001600160a01b03163314610a175760405162461bcd60e51b81526004016106e490612221565b8051610a2a90600e906020840190611d57565b5050565b6000818152600260205260408120546001600160a01b0316806105d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e4565b600c8054610ab2906123c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ade906123c7565b8015610b2b5780601f10610b0057610100808354040283529160200191610b2b565b820191906000526020600020905b815481529060010190602001808311610b0e57829003601f168201915b505050505081565b6002600a541415610b565760405162461bcd60e51b81526004016106e4906122d1565b6002600a5560005b8151811015610c9157601054825133916001600160a01b031690636352211e90859085908110610b9057610b90612473565b60200260200101516040518263ffffffff1660e01b8152600401610bb691815260200190565b60206040518083038186803b158015610bce57600080fd5b505afa158015610be2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c069190611e65565b6001600160a01b031614610c5c5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973206c6f6f7400000000000060448201526064016106e4565b610c7f33838381518110610c7257610c72612473565b60200260200101516116d5565b80610c8981612402565b915050610b5e565b50506001600a55565b600e8054610ab2906123c7565b60006001600160a01b038216610d125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e4565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610d585760405162461bcd60e51b81526004016106e490612221565b610d6260006116ef565b565b6060600180546105ec906123c7565b6002600a541415610d965760405162461bcd60e51b81526004016106e4906122d1565b6002600a558051600d543491610dab91612365565b1115610df95760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106e4565b60005b8151811015610c9157611f40828281518110610e1a57610e1a612473565b6020026020010151118015610e495750612ee0828281518110610e3f57610e3f612473565b6020026020010151105b610e655760405162461bcd60e51b81526004016106e490612256565b610e7b33838381518110610c7257610c72612473565b80610e8581612402565b915050610dfc565b6002600a541415610eb05760405162461bcd60e51b81526004016106e4906122d1565b6002600a55600d54341015610f075760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106e4565b611f4081118015610f1a5750612ee08111155b610f365760405162461bcd60e51b81526004016106e490612256565b610f4033826116d5565b506001600a55565b6001600160a01b038216331415610fa15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110173383611433565b6110335760405162461bcd60e51b81526004016106e490612280565b61103f84848484611741565b50505050565b600b546001600160a01b0316331461106f5760405162461bcd60e51b81526004016106e490612221565b600d55565b6000818152600260205260409020546060906001600160a01b03166110f35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e4565b60006110fd611774565b9050600081511161111d5760405180602001604052806000815250611148565b8061112784611783565b604051602001611138929190612150565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314610d625760405162461bcd60e51b81526004016106e490612221565b600b546001600160a01b031633146111a35760405162461bcd60e51b81526004016106e490612221565b6001600160a01b0381166112085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e4565b61093c816116ef565b6002600a5414156112345760405162461bcd60e51b81526004016106e4906122d1565b6002600a55801580159061124a5750611f408111155b6112665760405162461bcd60e51b81526004016106e490612256565b6010546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156112aa57600080fd5b505afa1580156112be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e29190611e65565b6001600160a01b031614610f365760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973206c6f6f7400000000000060448201526064016106e4565b600b546001600160a01b031633146113625760405162461bcd60e51b81526004016106e490612221565b8051610a2a90600c906020840190611d57565b60006001600160e01b031982166380ac58cd60e01b14806113a657506001600160e01b03198216635b5e139f60e01b145b806105d757506301ffc9a760e01b6001600160e01b03198316146105d7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113fa82610a2e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e4565b60006114b783610a2e565b9050806001600160a01b0316846001600160a01b031614806114f25750836001600160a01b03166114e78461066f565b6001600160a01b0316145b8061152257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153d82610a2e565b6001600160a01b0316146115a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e4565b6001600160a01b0382166116075760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e4565b611612838383611881565b61161d6000826113c5565b6001600160a01b0383166000908152600360205260408120805460019290611646908490612384565b90915550506001600160a01b0382166000908152600360205260408120805460019290611674908490612339565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a2a828260405180602001604052806000815250611939565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61174c84848461152a565b6117588484848461196c565b61103f5760405162461bcd60e51b81526004016106e4906121cf565b6060600e80546105ec906123c7565b6060816117a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d157806117bb81612402565b91506117ca9050600a83612351565b91506117ab565b60008167ffffffffffffffff8111156117ec576117ec612489565b6040519080825280601f01601f191660200182016040528015611816576020820181803683370190505b5090505b84156115225761182b600183612384565b9150611838600a8661241d565b611843906030612339565b60f81b81838151811061185857611858612473565b60200101906001600160f81b031916908160001a90535061187a600a86612351565b945061181a565b6001600160a01b0383166118dc576118d781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118ff565b816001600160a01b0316836001600160a01b0316146118ff576118ff8382611a79565b6001600160a01b0382166119165761081a81611b16565b826001600160a01b0316826001600160a01b03161461081a5761081a8282611bc5565b6119438383611c09565b611950600084848461196c565b61081a5760405162461bcd60e51b81526004016106e4906121cf565b60006001600160a01b0384163b15611a6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119b090339089908890889060040161217f565b602060405180830381600087803b1580156119ca57600080fd5b505af19250505080156119fa575060408051601f3d908101601f191682019092526119f7918101906120a5565b60015b611a54573d808015611a28576040519150601f19603f3d011682016040523d82523d6000602084013e611a2d565b606091505b508051611a4c5760405162461bcd60e51b81526004016106e4906121cf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611522565b506001949350505050565b60006001611a8684610ca7565b611a909190612384565b600083815260076020526040902054909150808214611ae3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b2890600190612384565b60008381526009602052604081205460088054939450909284908110611b5057611b50612473565b906000526020600020015490508060088381548110611b7157611b71612473565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ba957611ba961245d565b6001900381819060005260206000200160009055905550505050565b6000611bd083610ca7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c5f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e4565b6000818152600260205260409020546001600160a01b031615611cc45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e4565b611cd060008383611881565b6001600160a01b0382166000908152600360205260408120805460019290611cf9908490612339565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d63906123c7565b90600052602060002090601f016020900481019282611d855760008555611dcb565b82601f10611d9e57805160ff1916838001178555611dcb565b82800160010185558215611dcb579182015b82811115611dcb578251825591602001919060010190611db0565b50611dd7929150611ddb565b5090565b5b80821115611dd75760008155600101611ddc565b600067ffffffffffffffff831115611e0a57611e0a612489565b611e1d601f8401601f1916602001612308565b9050828152838383011115611e3157600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e5a57600080fd5b81356111488161249f565b600060208284031215611e7757600080fd5b81516111488161249f565b60008060408385031215611e9557600080fd5b8235611ea08161249f565b91506020830135611eb08161249f565b809150509250929050565b600080600060608486031215611ed057600080fd5b8335611edb8161249f565b92506020840135611eeb8161249f565b929592945050506040919091013590565b60008060008060808587031215611f1257600080fd5b8435611f1d8161249f565b93506020850135611f2d8161249f565b925060408501359150606085013567ffffffffffffffff811115611f5057600080fd5b8501601f81018713611f6157600080fd5b611f7087823560208401611df0565b91505092959194509250565b60008060408385031215611f8f57600080fd5b8235611f9a8161249f565b915060208301358015158114611eb057600080fd5b60008060408385031215611fc257600080fd5b8235611fcd8161249f565b946020939093013593505050565b60006020808385031215611fee57600080fd5b823567ffffffffffffffff8082111561200657600080fd5b818501915085601f83011261201a57600080fd5b81358181111561202c5761202c612489565b8060051b915061203d848301612308565b8181528481019084860184860187018a101561205857600080fd5b600095505b8386101561207b57803583526001959095019491860191860161205d565b5098975050505050505050565b60006020828403121561209a57600080fd5b8135611148816124b4565b6000602082840312156120b757600080fd5b8151611148816124b4565b6000602082840312156120d457600080fd5b813567ffffffffffffffff8111156120eb57600080fd5b8201601f810184136120fc57600080fd5b61152284823560208401611df0565b60006020828403121561211d57600080fd5b5035919050565b6000815180845261213c81602086016020860161239b565b601f01601f19169290920160200192915050565b6000835161216281846020880161239b565b83519083019061217681836020880161239b565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121b290830184612124565b9695505050505050565b6020815260006111486020830184612124565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561233157612331612489565b604052919050565b6000821982111561234c5761234c612431565b500190565b60008261236057612360612447565b500490565b600081600019048311821515161561237f5761237f612431565b500290565b60008282101561239657612396612431565b500390565b60005b838110156123b657818101518382015260200161239e565b8381111561103f5750506000910152565b600181811c908216806123db57607f821691505b602082108114156123fc57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561241657612416612431565b5060010190565b60008261242c5761242c612447565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461093c57600080fd5b6001600160e01b03198116811461093c57600080fdfea26469706673582212206d15b2b6636613e7ebd8fbaa78b87c64f127f34eabf0e55bd283e9a5f75cd6dd64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106101e35760003560e01c806370a0823111610102578063b88d4fde11610095578063e985e9c511610064578063e985e9c514610516578063f2fde38b1461055f578063fd12c9681461057f578063ffe630b51461059257600080fd5b8063b88d4fde146104ae578063c6275255146104ce578063c87b56dd146104ee578063d0e30db01461050e57600080fd5b80639a0e4ebb116100d15780639a0e4ebb14610452578063a0712d6814610465578063a22cb46514610478578063a945bf801461049857600080fd5b806370a08231146103ea578063715018a61461040a5780638da5cb5b1461041f57806395d89b411461043d57600080fd5b80633ccfd60b1161017a5780636352211e116101495780636352211e1461038d5780636373a6b1146103ad57806367fd1a0f146103c25780636c0360eb146103d557600080fd5b80633ccfd60b1461031857806342842e0e1461032d5780634f6ccce71461034d57806355f804b31461036d57600080fd5b80630e439326116101b65780630e4393261461029957806318160ddd146102b957806323b872dd146102d85780632f745c59146102f857600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b50610208610203366004612088565b6105b2565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b506102326105dd565b60405161021491906121bc565b34801561024b57600080fd5b5061025f61025a36600461210b565b61066f565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b50610297610292366004611faf565b610709565b005b3480156102a557600080fd5b50600f5461025f906001600160a01b031681565b3480156102c557600080fd5b506008545b604051908152602001610214565b3480156102e457600080fd5b506102976102f3366004611ebb565b61081f565b34801561030457600080fd5b506102ca610313366004611faf565b610850565b34801561032457600080fd5b506102976108e6565b34801561033957600080fd5b50610297610348366004611ebb565b61093f565b34801561035957600080fd5b506102ca61036836600461210b565b61095a565b34801561037957600080fd5b506102976103883660046120c2565b6109ed565b34801561039957600080fd5b5061025f6103a836600461210b565b610a2e565b3480156103b957600080fd5b50610232610aa5565b6102976103d0366004611fdb565b610b33565b3480156103e157600080fd5b50610232610c9a565b3480156103f657600080fd5b506102ca610405366004611e48565b610ca7565b34801561041657600080fd5b50610297610d2e565b34801561042b57600080fd5b50600b546001600160a01b031661025f565b34801561044957600080fd5b50610232610d64565b610297610460366004611fdb565b610d73565b61029761047336600461210b565b610e8d565b34801561048457600080fd5b50610297610493366004611f7c565b610f48565b3480156104a457600080fd5b506102ca600d5481565b3480156104ba57600080fd5b506102976104c9366004611efc565b61100d565b3480156104da57600080fd5b506102976104e936600461210b565b611045565b3480156104fa57600080fd5b5061023261050936600461210b565b611074565b61029761114f565b34801561052257600080fd5b50610208610531366004611e82565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561056b57600080fd5b5061029761057a366004611e48565b611179565b61029761058d36600461210b565b611211565b34801561059e57600080fd5b506102976105ad3660046120c2565b611338565b60006001600160e01b0319821663780e9d6360e01b14806105d757506105d782611375565b92915050565b6060600080546105ec906123c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610618906123c7565b80156106655780601f1061063a57610100808354040283529160200191610665565b820191906000526020600020905b81548152906001019060200180831161064857829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106ed5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061071482610a2e565b9050806001600160a01b0316836001600160a01b031614156107825760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016106e4565b336001600160a01b038216148061079e575061079e8133610531565b6108105760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016106e4565b61081a83836113c5565b505050565b6108293382611433565b6108455760405162461bcd60e51b81526004016106e490612280565b61081a83838361152a565b600061085b83610ca7565b82106108bd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016106e4565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600b546001600160a01b031633146109105760405162461bcd60e51b81526004016106e490612221565b60405133904780156108fc02916000818181858888f1935050505015801561093c573d6000803e3d6000fd5b50565b61081a8383836040518060200160405280600081525061100d565b600061096560085490565b82106109c85760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016106e4565b600882815481106109db576109db612473565b90600052602060002001549050919050565b600b546001600160a01b03163314610a175760405162461bcd60e51b81526004016106e490612221565b8051610a2a90600e906020840190611d57565b5050565b6000818152600260205260408120546001600160a01b0316806105d75760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016106e4565b600c8054610ab2906123c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610ade906123c7565b8015610b2b5780601f10610b0057610100808354040283529160200191610b2b565b820191906000526020600020905b815481529060010190602001808311610b0e57829003601f168201915b505050505081565b6002600a541415610b565760405162461bcd60e51b81526004016106e4906122d1565b6002600a5560005b8151811015610c9157601054825133916001600160a01b031690636352211e90859085908110610b9057610b90612473565b60200260200101516040518263ffffffff1660e01b8152600401610bb691815260200190565b60206040518083038186803b158015610bce57600080fd5b505afa158015610be2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c069190611e65565b6001600160a01b031614610c5c5760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973206c6f6f7400000000000060448201526064016106e4565b610c7f33838381518110610c7257610c72612473565b60200260200101516116d5565b80610c8981612402565b915050610b5e565b50506001600a55565b600e8054610ab2906123c7565b60006001600160a01b038216610d125760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016106e4565b506001600160a01b031660009081526003602052604090205490565b600b546001600160a01b03163314610d585760405162461bcd60e51b81526004016106e490612221565b610d6260006116ef565b565b6060600180546105ec906123c7565b6002600a541415610d965760405162461bcd60e51b81526004016106e4906122d1565b6002600a558051600d543491610dab91612365565b1115610df95760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106e4565b60005b8151811015610c9157611f40828281518110610e1a57610e1a612473565b6020026020010151118015610e495750612ee0828281518110610e3f57610e3f612473565b6020026020010151105b610e655760405162461bcd60e51b81526004016106e490612256565b610e7b33838381518110610c7257610c72612473565b80610e8581612402565b915050610dfc565b6002600a541415610eb05760405162461bcd60e51b81526004016106e4906122d1565b6002600a55600d54341015610f075760405162461bcd60e51b815260206004820152601f60248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563740060448201526064016106e4565b611f4081118015610f1a5750612ee08111155b610f365760405162461bcd60e51b81526004016106e490612256565b610f4033826116d5565b506001600a55565b6001600160a01b038216331415610fa15760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016106e4565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6110173383611433565b6110335760405162461bcd60e51b81526004016106e490612280565b61103f84848484611741565b50505050565b600b546001600160a01b0316331461106f5760405162461bcd60e51b81526004016106e490612221565b600d55565b6000818152600260205260409020546060906001600160a01b03166110f35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016106e4565b60006110fd611774565b9050600081511161111d5760405180602001604052806000815250611148565b8061112784611783565b604051602001611138929190612150565b6040516020818303038152906040525b9392505050565b600b546001600160a01b03163314610d625760405162461bcd60e51b81526004016106e490612221565b600b546001600160a01b031633146111a35760405162461bcd60e51b81526004016106e490612221565b6001600160a01b0381166112085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016106e4565b61093c816116ef565b6002600a5414156112345760405162461bcd60e51b81526004016106e4906122d1565b6002600a55801580159061124a5750611f408111155b6112665760405162461bcd60e51b81526004016106e490612256565b6010546040516331a9108f60e11b81526004810183905233916001600160a01b031690636352211e9060240160206040518083038186803b1580156112aa57600080fd5b505afa1580156112be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112e29190611e65565b6001600160a01b031614610f365760405162461bcd60e51b815260206004820152601a60248201527f4e6f7420746865206f776e6572206f662074686973206c6f6f7400000000000060448201526064016106e4565b600b546001600160a01b031633146113625760405162461bcd60e51b81526004016106e490612221565b8051610a2a90600c906020840190611d57565b60006001600160e01b031982166380ac58cd60e01b14806113a657506001600160e01b03198216635b5e139f60e01b145b806105d757506301ffc9a760e01b6001600160e01b03198316146105d7565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113fa82610a2e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166114ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016106e4565b60006114b783610a2e565b9050806001600160a01b0316846001600160a01b031614806114f25750836001600160a01b03166114e78461066f565b6001600160a01b0316145b8061152257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661153d82610a2e565b6001600160a01b0316146115a55760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016106e4565b6001600160a01b0382166116075760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016106e4565b611612838383611881565b61161d6000826113c5565b6001600160a01b0383166000908152600360205260408120805460019290611646908490612384565b90915550506001600160a01b0382166000908152600360205260408120805460019290611674908490612339565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610a2a828260405180602001604052806000815250611939565b600b80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61174c84848461152a565b6117588484848461196c565b61103f5760405162461bcd60e51b81526004016106e4906121cf565b6060600e80546105ec906123c7565b6060816117a75750506040805180820190915260018152600360fc1b602082015290565b8160005b81156117d157806117bb81612402565b91506117ca9050600a83612351565b91506117ab565b60008167ffffffffffffffff8111156117ec576117ec612489565b6040519080825280601f01601f191660200182016040528015611816576020820181803683370190505b5090505b84156115225761182b600183612384565b9150611838600a8661241d565b611843906030612339565b60f81b81838151811061185857611858612473565b60200101906001600160f81b031916908160001a90535061187a600a86612351565b945061181a565b6001600160a01b0383166118dc576118d781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6118ff565b816001600160a01b0316836001600160a01b0316146118ff576118ff8382611a79565b6001600160a01b0382166119165761081a81611b16565b826001600160a01b0316826001600160a01b03161461081a5761081a8282611bc5565b6119438383611c09565b611950600084848461196c565b61081a5760405162461bcd60e51b81526004016106e4906121cf565b60006001600160a01b0384163b15611a6e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119b090339089908890889060040161217f565b602060405180830381600087803b1580156119ca57600080fd5b505af19250505080156119fa575060408051601f3d908101601f191682019092526119f7918101906120a5565b60015b611a54573d808015611a28576040519150601f19603f3d011682016040523d82523d6000602084013e611a2d565b606091505b508051611a4c5760405162461bcd60e51b81526004016106e4906121cf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611522565b506001949350505050565b60006001611a8684610ca7565b611a909190612384565b600083815260076020526040902054909150808214611ae3576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611b2890600190612384565b60008381526009602052604081205460088054939450909284908110611b5057611b50612473565b906000526020600020015490508060088381548110611b7157611b71612473565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ba957611ba961245d565b6001900381819060005260206000200160009055905550505050565b6000611bd083610ca7565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611c5f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016106e4565b6000818152600260205260409020546001600160a01b031615611cc45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016106e4565b611cd060008383611881565b6001600160a01b0382166000908152600360205260408120805460019290611cf9908490612339565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054611d63906123c7565b90600052602060002090601f016020900481019282611d855760008555611dcb565b82601f10611d9e57805160ff1916838001178555611dcb565b82800160010185558215611dcb579182015b82811115611dcb578251825591602001919060010190611db0565b50611dd7929150611ddb565b5090565b5b80821115611dd75760008155600101611ddc565b600067ffffffffffffffff831115611e0a57611e0a612489565b611e1d601f8401601f1916602001612308565b9050828152838383011115611e3157600080fd5b828260208301376000602084830101529392505050565b600060208284031215611e5a57600080fd5b81356111488161249f565b600060208284031215611e7757600080fd5b81516111488161249f565b60008060408385031215611e9557600080fd5b8235611ea08161249f565b91506020830135611eb08161249f565b809150509250929050565b600080600060608486031215611ed057600080fd5b8335611edb8161249f565b92506020840135611eeb8161249f565b929592945050506040919091013590565b60008060008060808587031215611f1257600080fd5b8435611f1d8161249f565b93506020850135611f2d8161249f565b925060408501359150606085013567ffffffffffffffff811115611f5057600080fd5b8501601f81018713611f6157600080fd5b611f7087823560208401611df0565b91505092959194509250565b60008060408385031215611f8f57600080fd5b8235611f9a8161249f565b915060208301358015158114611eb057600080fd5b60008060408385031215611fc257600080fd5b8235611fcd8161249f565b946020939093013593505050565b60006020808385031215611fee57600080fd5b823567ffffffffffffffff8082111561200657600080fd5b818501915085601f83011261201a57600080fd5b81358181111561202c5761202c612489565b8060051b915061203d848301612308565b8181528481019084860184860187018a101561205857600080fd5b600095505b8386101561207b57803583526001959095019491860191860161205d565b5098975050505050505050565b60006020828403121561209a57600080fd5b8135611148816124b4565b6000602082840312156120b757600080fd5b8151611148816124b4565b6000602082840312156120d457600080fd5b813567ffffffffffffffff8111156120eb57600080fd5b8201601f810184136120fc57600080fd5b61152284823560208401611df0565b60006020828403121561211d57600080fd5b5035919050565b6000815180845261213c81602086016020860161239b565b601f01601f19169290920160200192915050565b6000835161216281846020880161239b565b83519083019061217681836020880161239b565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121b290830184612124565b9695505050505050565b6020815260006111486020830184612124565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f151bdad95b881251081a5b9d985b1a5960821b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b604051601f8201601f1916810167ffffffffffffffff8111828210171561233157612331612489565b604052919050565b6000821982111561234c5761234c612431565b500190565b60008261236057612360612447565b500490565b600081600019048311821515161561237f5761237f612431565b500290565b60008282101561239657612396612431565b500390565b60005b838110156123b657818101518382015260200161239e565b8381111561103f5750506000910152565b600181811c908216806123db57607f821691505b602082108114156123fc57634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561241657612416612431565b5060010190565b60008261242c5761242c612447565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461093c57600080fd5b6001600160e01b03198116811461093c57600080fdfea26469706673582212206d15b2b6636613e7ebd8fbaa78b87c64f127f34eabf0e55bd283e9a5f75cd6dd64736f6c63430008070033

Deployed Bytecode Sourcemap

51202:2373:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38233:224;;;;;;;;;;-1:-1:-1;38233:224:0;;;;;:::i;:::-;;:::i;:::-;;;7036:14:1;;7029:22;7011:41;;6999:2;6984:18;38233:224:0;;;;;;;;25363:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26922:221::-;;;;;;;;;;-1:-1:-1;26922:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6334:32:1;;;6316:51;;6304:2;6289:18;26922:221:0;6170:203:1;26445:411:0;;;;;;;;;;-1:-1:-1;26445:411:0;;;;;:::i;:::-;;:::i;:::-;;51445:71;;;;;;;;;;-1:-1:-1;51445:71:0;;;;-1:-1:-1;;;;;51445:71:0;;;38873:113;;;;;;;;;;-1:-1:-1;38961:10:0;:17;38873:113;;;16060:25:1;;;16048:2;16033:18;38873:113:0;15914:177:1;27812:339:0;;;;;;;;;;-1:-1:-1;27812:339:0;;;;;:::i;:::-;;:::i;38541:256::-;;;;;;;;;;-1:-1:-1;38541:256:0;;;;;:::i;:::-;;:::i;51649:107::-;;;;;;;;;;;;;:::i;28222:185::-;;;;;;;;;;-1:-1:-1;28222:185:0;;;;;:::i;:::-;;:::i;39063:233::-;;;;;;;;;;-1:-1:-1;39063:233:0;;;;;:::i;:::-;;:::i;52042:102::-;;;;;;;;;;-1:-1:-1;52042:102:0;;;;;:::i;:::-;;:::i;25057:239::-;;;;;;;;;;-1:-1:-1;25057:239:0;;;;;:::i;:::-;;:::i;51312:29::-;;;;;;;;;;;;;:::i;52592:306::-;;;;;;:::i;:::-;;:::i;51394:21::-;;;;;;;;;;;;;:::i;24787:208::-;;;;;;;;;;-1:-1:-1;24787:208:0;;;;;:::i;:::-;;:::i;9823:94::-;;;;;;;;;;;;;:::i;9172:87::-;;;;;;;;;;-1:-1:-1;9245:6:0;;-1:-1:-1;;;;;9245:6:0;9172:87;;25532:104;;;;;;;;;;;;;:::i;53195:377::-;;;;;;:::i;:::-;;:::i;52933:254::-;;;;;;:::i;:::-;;:::i;27215:295::-;;;;;;;;;;-1:-1:-1;27215:295:0;;;;;:::i;:::-;;:::i;51348:39::-;;;;;;;;;;;;;;;;28478:328;;;;;;;;;;-1:-1:-1;28478:328:0;;;;;:::i;:::-;;:::i;51818:100::-;;;;;;;;;;-1:-1:-1;51818:100:0;;;;;:::i;:::-;;:::i;25707:334::-;;;;;;;;;;-1:-1:-1;25707:334:0;;;;;:::i;:::-;;:::i;51764:46::-;;;:::i;27581:164::-;;;;;;;;;;-1:-1:-1;27581:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27702:25:0;;;27678:4;27702:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27581:164;10072:192;;;;;;;;;;-1:-1:-1;10072:192:0;;;;;:::i;:::-;;:::i;52311:273::-;;;;;;:::i;:::-;;:::i;52152:96::-;;;;;;;;;;-1:-1:-1;52152:96:0;;;;;:::i;:::-;;:::i;38233:224::-;38335:4;-1:-1:-1;;;;;;38359:50:0;;-1:-1:-1;;;38359:50:0;;:90;;;38413:36;38437:11;38413:23;:36::i;:::-;38352:97;38233:224;-1:-1:-1;;38233:224:0:o;25363:100::-;25417:13;25450:5;25443:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25363:100;:::o;26922:221::-;26998:7;30405:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30405:16:0;27018:73;;;;-1:-1:-1;;;27018:73:0;;12578:2:1;27018:73:0;;;12560:21:1;12617:2;12597:18;;;12590:30;12656:34;12636:18;;;12629:62;-1:-1:-1;;;12707:18:1;;;12700:42;12759:19;;27018:73:0;;;;;;;;;-1:-1:-1;27111:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27111:24:0;;26922:221::o;26445:411::-;26526:13;26542:23;26557:7;26542:14;:23::i;:::-;26526:39;;26590:5;-1:-1:-1;;;;;26584:11:0;:2;-1:-1:-1;;;;;26584:11:0;;;26576:57;;;;-1:-1:-1;;;26576:57:0;;14523:2:1;26576:57:0;;;14505:21:1;14562:2;14542:18;;;14535:30;14601:34;14581:18;;;14574:62;-1:-1:-1;;;14652:18:1;;;14645:31;14693:19;;26576:57:0;14321:397:1;26576:57:0;8128:10;-1:-1:-1;;;;;26668:21:0;;;;:62;;-1:-1:-1;26693:37:0;26710:5;8128:10;27581:164;:::i;26693:37::-;26646:168;;;;-1:-1:-1;;;26646:168:0;;10971:2:1;26646:168:0;;;10953:21:1;11010:2;10990:18;;;10983:30;11049:34;11029:18;;;11022:62;11120:26;11100:18;;;11093:54;11164:19;;26646:168:0;10769:420:1;26646:168:0;26827:21;26836:2;26840:7;26827:8;:21::i;:::-;26515:341;26445:411;;:::o;27812:339::-;28007:41;8128:10;28040:7;28007:18;:41::i;:::-;27999:103;;;;-1:-1:-1;;;27999:103:0;;;;;;;:::i;:::-;28115:28;28125:4;28131:2;28135:7;28115:9;:28::i;38541:256::-;38638:7;38674:23;38691:5;38674:16;:23::i;:::-;38666:5;:31;38658:87;;;;-1:-1:-1;;;38658:87:0;;7489:2:1;38658:87:0;;;7471:21:1;7528:2;7508:18;;;7501:30;7567:34;7547:18;;;7540:62;-1:-1:-1;;;7618:18:1;;;7611:41;7669:19;;38658:87:0;7287:407:1;38658:87:0;-1:-1:-1;;;;;;38763:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38541:256::o;51649:107::-;9245:6;;-1:-1:-1;;;;;9245:6:0;8128:10;9392:23;9384:68;;;;-1:-1:-1;;;9384:68:0;;;;;;;:::i;:::-;51697:51:::1;::::0;51705:10:::1;::::0;51726:21:::1;51697:51:::0;::::1;;;::::0;::::1;::::0;;;51726:21;51705:10;51697:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;51649:107::o:0;28222:185::-;28360:39;28377:4;28383:2;28387:7;28360:39;;;;;;;;;;;;:16;:39::i;39063:233::-;39138:7;39174:30;38961:10;:17;;38873:113;39174:30;39166:5;:38;39158:95;;;;-1:-1:-1;;;39158:95:0;;15343:2:1;39158:95:0;;;15325:21:1;15382:2;15362:18;;;15355:30;15421:34;15401:18;;;15394:62;-1:-1:-1;;;15472:18:1;;;15465:42;15524:19;;39158:95:0;15141:408:1;39158:95:0;39271:10;39282:5;39271:17;;;;;;;;:::i;:::-;;;;;;;;;39264:24;;39063:233;;;:::o;52042:102::-;9245:6;;-1:-1:-1;;;;;9245:6:0;8128:10;9392:23;9384:68;;;;-1:-1:-1;;;9384:68:0;;;;;;;:::i;:::-;52116:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52042:102:::0;:::o;25057:239::-;25129:7;25165:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25165:16:0;25200:19;25192:73;;;;-1:-1:-1;;;25192:73:0;;11807:2:1;25192:73:0;;;11789:21:1;11846:2;11826:18;;;11819:30;11885:34;11865:18;;;11858:62;-1:-1:-1;;;11936:18:1;;;11929:39;11985:19;;25192:73:0;11605:405:1;51312:29:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52592:306::-;12103:1;12699:7;;:19;;12691:63;;;;-1:-1:-1;;;12691:63:0;;;;;;;:::i;:::-;12103:1;12832:7;:18;52689:9:::1;52684:207;52708:7;:14;52704:1;:18;52684:207;;;52752:12;::::0;52773:10;;52788::::1;::::0;-1:-1:-1;;;;;52752:12:0::1;::::0;:20:::1;::::0;52773:7;;52781:1;;52773:10;::::1;;;;;:::i;:::-;;;;;;;52752:32;;;;;;;;;;;;;16060:25:1::0;;16048:2;16033:18;;15914:177;52752:32:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52752:46:0::1;;52744:85;;;::::0;-1:-1:-1;;;52744:85:0;;10203:2:1;52744:85:0::1;::::0;::::1;10185:21:1::0;10242:2;10222:18;;;10215:30;10281:28;10261:18;;;10254:56;10327:18;;52744:85:0::1;10001:350:1::0;52744:85:0::1;52844:35;8128:10:::0;52868:7:::1;52876:1;52868:10;;;;;;;;:::i;:::-;;;;;;;52844:9;:35::i;:::-;52724:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52684:207;;;-1:-1:-1::0;;12059:1:0;13011:7;:22;52592:306::o;51394:21::-;;;;;;;:::i;24787:208::-;24859:7;-1:-1:-1;;;;;24887:19:0;;24879:74;;;;-1:-1:-1;;;24879:74:0;;11396:2:1;24879:74:0;;;11378:21:1;11435:2;11415:18;;;11408:30;11474:34;11454:18;;;11447:62;-1:-1:-1;;;11525:18:1;;;11518:40;11575:19;;24879:74:0;11194:406:1;24879:74:0;-1:-1:-1;;;;;;24971:16:0;;;;;:9;:16;;;;;;;24787:208::o;9823:94::-;9245:6;;-1:-1:-1;;;;;9245:6:0;8128:10;9392:23;9384:68;;;;-1:-1:-1;;;9384:68:0;;;;;;;:::i;:::-;9888:21:::1;9906:1;9888:9;:21::i;:::-;9823:94::o:0;25532:104::-;25588:13;25621:7;25614:14;;;;;:::i;53195:377::-;12103:1;12699:7;;:19;;12691:63;;;;-1:-1:-1;;;12691:63:0;;;;;;;:::i;:::-;12103:1;12832:7;:18;53302:14;;53288:11:::1;::::0;53321:9:::1;::::0;53288:28:::1;::::0;::::1;:::i;:::-;53287:43;;53279:87;;;::::0;-1:-1:-1;;;53279:87:0;;9843:2:1;53279:87:0::1;::::0;::::1;9825:21:1::0;9882:2;9862:18;;;9855:30;9921:33;9901:18;;;9894:61;9972:18;;53279:87:0::1;9641:355:1::0;53279:87:0::1;53382:9;53377:188;53401:7;:14;53397:1;:18;53377:188;;;53458:4;53445:7;53453:1;53445:10;;;;;;;;:::i;:::-;;;;;;;:17;:39;;;;;53479:5;53466:7;53474:1;53466:10;;;;;;;;:::i;:::-;;;;;;;:18;53445:39;53437:68;;;;-1:-1:-1::0;;;53437:68:0::1;;;;;;;:::i;:::-;53520:33;53530:10;53542:7;53550:1;53542:10;;;;;;;;:::i;53520:33::-;53417:3:::0;::::1;::::0;::::1;:::i;:::-;;;;53377:188;;52933:254:::0;12103:1;12699:7;;:19;;12691:63;;;;-1:-1:-1;;;12691:63:0;;;;;;;:::i;:::-;12103:1;12832:7;:18;53007:11:::1;::::0;53022:9:::1;-1:-1:-1::0;53007:24:0::1;52999:68;;;::::0;-1:-1:-1;;;52999:68:0;;9843:2:1;52999:68:0::1;::::0;::::1;9825:21:1::0;9882:2;9862:18;;;9855:30;9921:33;9901:18;;;9894:61;9972:18;;52999:68:0::1;9641:355:1::0;52999:68:0::1;53095:4;53086:6;:13;:32;;;;;53113:5;53103:6;:15;;53086:32;53078:61;;;;-1:-1:-1::0;;;53078:61:0::1;;;;;;;:::i;:::-;53150:29;53160:10;53172:6;53150:9;:29::i;:::-;-1:-1:-1::0;12059:1:0;13011:7;:22;52933:254::o;27215:295::-;-1:-1:-1;;;;;27318:24:0;;8128:10;27318:24;;27310:62;;;;-1:-1:-1;;;27310:62:0;;9489:2:1;27310:62:0;;;9471:21:1;9528:2;9508:18;;;9501:30;9567:27;9547:18;;;9540:55;9612:18;;27310:62:0;9287:349:1;27310:62:0;8128:10;27385:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27385:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27385:53:0;;;;;;;;;;27454:48;;7011:41:1;;;27385:42:0;;8128:10;27454:48;;6984:18:1;27454:48:0;;;;;;;27215:295;;:::o;28478:328::-;28653:41;8128:10;28686:7;28653:18;:41::i;:::-;28645:103;;;;-1:-1:-1;;;28645:103:0;;;;;;;:::i;:::-;28759:39;28773:4;28779:2;28783:7;28792:5;28759:13;:39::i;:::-;28478:328;;;;:::o;51818:100::-;9245:6;;-1:-1:-1;;;;;9245:6:0;8128:10;9392:23;9384:68;;;;-1:-1:-1;;;9384:68:0;;;;;;;:::i;:::-;51888:11:::1;:22:::0;51818:100::o;25707:334::-;30381:4;30405:16;;;:7;:16;;;;;;25780:13;;-1:-1:-1;;;;;30405:16:0;25806:76;;;;-1:-1:-1;;;25806:76:0;;14107:2:1;25806:76:0;;;14089:21:1;14146:2;14126:18;;;14119:30;14185:34;14165:18;;;14158:62;-1:-1:-1;;;14236:18:1;;;14229:45;14291:19;;25806:76:0;13905:411:1;25806:76:0;25895:21;25919:10;:8;:10::i;:::-;25895:34;;25971:1;25953:7;25947:21;:25;:86;;;;;;;;;;;;;;;;;25999:7;26008:18;:7;:16;:18::i;:::-;25982:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25947:86;25940:93;25707:334;-1:-1:-1;;;25707:334:0:o;51764:46::-;9245:6;;-1:-1:-1;;;;;9245:6:0;8128:10;9392:23;9384:68;;;;-1:-1:-1;;;9384:68:0;;;;;;;:::i;10072:192::-;9245:6;;-1:-1:-1;;;;;9245:6:0;8128:10;9392:23;9384:68;;;;-1:-1:-1;;;9384:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10161:22:0;::::1;10153:73;;;::::0;-1:-1:-1;;;10153:73:0;;8320:2:1;10153:73:0::1;::::0;::::1;8302:21:1::0;8359:2;8339:18;;;8332:30;8398:34;8378:18;;;8371:62;-1:-1:-1;;;8449:18:1;;;8442:36;8495:19;;10153:73:0::1;8118:402:1::0;10153:73:0::1;10237:19;10247:8;10237:9;:19::i;52311:273::-:0;12103:1;12699:7;;:19;;12691:63;;;;-1:-1:-1;;;12691:63:0;;;;;;;:::i;:::-;12103:1;12832:7;:18;52393:10;;;;;:28:::1;;;52417:4;52407:6;:14;;52393:28;52385:57;;;;-1:-1:-1::0;;;52385:57:0::1;;;;;;;:::i;:::-;52461:12;::::0;:28:::1;::::0;-1:-1:-1;;;52461:28:0;;::::1;::::0;::::1;16060:25:1::0;;;52493:10:0::1;::::0;-1:-1:-1;;;;;52461:12:0::1;::::0;:20:::1;::::0;16033:18:1;;52461:28:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;52461:42:0::1;;52453:81;;;::::0;-1:-1:-1;;;52453:81:0;;10203:2:1;52453:81:0::1;::::0;::::1;10185:21:1::0;10242:2;10222:18;;;10215:30;10281:28;10261:18;;;10254:56;10327:18;;52453:81:0::1;10001:350:1::0;52152:96:0;9245:6;;-1:-1:-1;;;;;9245:6:0;8128:10;9392:23;9384:68;;;;-1:-1:-1;;;9384:68:0;;;;;;;:::i;:::-;52223:17;;::::1;::::0;:10:::1;::::0;:17:::1;::::0;::::1;::::0;::::1;:::i;24418:305::-:0;24520:4;-1:-1:-1;;;;;;24557:40:0;;-1:-1:-1;;;24557:40:0;;:105;;-1:-1:-1;;;;;;;24614:48:0;;-1:-1:-1;;;24614:48:0;24557:105;:158;;;-1:-1:-1;;;;;;;;;;23136:40:0;;;24679:36;23027:157;34298:174;34373:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;34373:29:0;-1:-1:-1;;;;;34373:29:0;;;;;;;;:24;;34427:23;34373:24;34427:14;:23::i;:::-;-1:-1:-1;;;;;34418:46:0;;;;;;;;;;;34298:174;;:::o;30610:348::-;30703:4;30405:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30405:16:0;30720:73;;;;-1:-1:-1;;;30720:73:0;;10558:2:1;30720:73:0;;;10540:21:1;10597:2;10577:18;;;10570:30;10636:34;10616:18;;;10609:62;-1:-1:-1;;;10687:18:1;;;10680:42;10739:19;;30720:73:0;10356:408:1;30720:73:0;30804:13;30820:23;30835:7;30820:14;:23::i;:::-;30804:39;;30873:5;-1:-1:-1;;;;;30862:16:0;:7;-1:-1:-1;;;;;30862:16:0;;:51;;;;30906:7;-1:-1:-1;;;;;30882:31:0;:20;30894:7;30882:11;:20::i;:::-;-1:-1:-1;;;;;30882:31:0;;30862:51;:87;;;-1:-1:-1;;;;;;27702:25:0;;;27678:4;27702:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30917:32;30854:96;30610:348;-1:-1:-1;;;;30610:348:0:o;33602:578::-;33761:4;-1:-1:-1;;;;;33734:31:0;:23;33749:7;33734:14;:23::i;:::-;-1:-1:-1;;;;;33734:31:0;;33726:85;;;;-1:-1:-1;;;33726:85:0;;13697:2:1;33726:85:0;;;13679:21:1;13736:2;13716:18;;;13709:30;13775:34;13755:18;;;13748:62;-1:-1:-1;;;13826:18:1;;;13819:39;13875:19;;33726:85:0;13495:405:1;33726:85:0;-1:-1:-1;;;;;33830:16:0;;33822:65;;;;-1:-1:-1;;;33822:65:0;;9084:2:1;33822:65:0;;;9066:21:1;9123:2;9103:18;;;9096:30;9162:34;9142:18;;;9135:62;-1:-1:-1;;;9213:18:1;;;9206:34;9257:19;;33822:65:0;8882:400:1;33822:65:0;33900:39;33921:4;33927:2;33931:7;33900:20;:39::i;:::-;34004:29;34021:1;34025:7;34004:8;:29::i;:::-;-1:-1:-1;;;;;34046:15:0;;;;;;:9;:15;;;;;:20;;34065:1;;34046:15;:20;;34065:1;;34046:20;:::i;:::-;;;;-1:-1:-1;;;;;;;34077:13:0;;;;;;:9;:13;;;;;:18;;34094:1;;34077:13;:18;;34094:1;;34077:18;:::i;:::-;;;;-1:-1:-1;;34106:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34106:21:0;-1:-1:-1;;;;;34106:21:0;;;;;;;;;34145:27;;34106:16;;34145:27;;;;;;;33602:578;;;:::o;31300:110::-;31376:26;31386:2;31390:7;31376:26;;;;;;;;;;;;:9;:26::i;10272:173::-;10347:6;;;-1:-1:-1;;;;;10364:17:0;;;-1:-1:-1;;;;;;10364:17:0;;;;;;;10397:40;;10347:6;;;10364:17;10347:6;;10397:40;;10328:16;;10397:40;10317:128;10272:173;:::o;29688:315::-;29845:28;29855:4;29861:2;29865:7;29845:9;:28::i;:::-;29892:48;29915:4;29921:2;29925:7;29934:5;29892:22;:48::i;:::-;29884:111;;;;-1:-1:-1;;;29884:111:0;;;;;;;:::i;51926:108::-;51986:13;52019:7;52012:14;;;;;:::i;5750:723::-;5806:13;6027:10;6023:53;;-1:-1:-1;;6054:10:0;;;;;;;;;;;;-1:-1:-1;;;6054:10:0;;;;;5750:723::o;6023:53::-;6101:5;6086:12;6142:78;6149:9;;6142:78;;6175:8;;;;:::i;:::-;;-1:-1:-1;6198:10:0;;-1:-1:-1;6206:2:0;6198:10;;:::i;:::-;;;6142:78;;;6230:19;6262:6;6252:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;6252:17:0;;6230:39;;6280:154;6287:10;;6280:154;;6314:11;6324:1;6314:11;;:::i;:::-;;-1:-1:-1;6383:10:0;6391:2;6383:5;:10;:::i;:::-;6370:24;;:2;:24;:::i;:::-;6357:39;;6340:6;6347;6340:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;6340:56:0;;;;;;;;-1:-1:-1;6411:11:0;6420:2;6411:11;;:::i;:::-;;;6280:154;;39909:589;-1:-1:-1;;;;;40115:18:0;;40111:187;;40150:40;40182:7;41325:10;:17;;41298:24;;;;:15;:24;;;;;:44;;;41353:24;;;;;;;;;;;;41221:164;40150:40;40111:187;;;40220:2;-1:-1:-1;;;;;40212:10:0;:4;-1:-1:-1;;;;;40212:10:0;;40208:90;;40239:47;40272:4;40278:7;40239:32;:47::i;:::-;-1:-1:-1;;;;;40312:16:0;;40308:183;;40345:45;40382:7;40345:36;:45::i;40308:183::-;40418:4;-1:-1:-1;;;;;40412:10:0;:2;-1:-1:-1;;;;;40412:10:0;;40408:83;;40439:40;40467:2;40471:7;40439:27;:40::i;31637:321::-;31767:18;31773:2;31777:7;31767:5;:18::i;:::-;31818:54;31849:1;31853:2;31857:7;31866:5;31818:22;:54::i;:::-;31796:154;;;;-1:-1:-1;;;31796:154:0;;;;;;;:::i;35037:803::-;35192:4;-1:-1:-1;;;;;35213:13:0;;15534:20;15582:8;35209:624;;35249:72;;-1:-1:-1;;;35249:72:0;;-1:-1:-1;;;;;35249:36:0;;;;;:72;;8128:10;;35300:4;;35306:7;;35315:5;;35249:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35249:72:0;;;;;;;;-1:-1:-1;;35249:72:0;;;;;;;;;;;;:::i;:::-;;;35245:533;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35495:13:0;;35491:272;;35538:60;;-1:-1:-1;;;35538:60:0;;;;;;;:::i;35491:272::-;35713:6;35707:13;35698:6;35694:2;35690:15;35683:38;35245:533;-1:-1:-1;;;;;;35372:55:0;-1:-1:-1;;;35372:55:0;;-1:-1:-1;35365:62:0;;35209:624;-1:-1:-1;35817:4:0;35037:803;;;;;;:::o;42012:988::-;42278:22;42328:1;42303:22;42320:4;42303:16;:22::i;:::-;:26;;;;:::i;:::-;42340:18;42361:26;;;:17;:26;;;;;;42278:51;;-1:-1:-1;42494:28:0;;;42490:328;;-1:-1:-1;;;;;42561:18:0;;42539:19;42561:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42612:30;;;;;;:44;;;42729:30;;:17;:30;;;;;:43;;;42490:328;-1:-1:-1;42914:26:0;;;;:17;:26;;;;;;;;42907:33;;;-1:-1:-1;;;;;42958:18:0;;;;;:12;:18;;;;;:34;;;;;;;42951:41;42012:988::o;43295:1079::-;43573:10;:17;43548:22;;43573:21;;43593:1;;43573:21;:::i;:::-;43605:18;43626:24;;;:15;:24;;;;;;43999:10;:26;;43548:46;;-1:-1:-1;43626:24:0;;43548:46;;43999:26;;;;;;:::i;:::-;;;;;;;;;43977:48;;44063:11;44038:10;44049;44038:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;44143:28;;;:15;:28;;;;;;;:41;;;44315:24;;;;;44308:31;44350:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;43366:1008;;;43295:1079;:::o;40799:221::-;40884:14;40901:20;40918:2;40901:16;:20::i;:::-;-1:-1:-1;;;;;40932:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40977:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40799:221:0:o;32294:382::-;-1:-1:-1;;;;;32374:16:0;;32366:61;;;;-1:-1:-1;;;32366:61:0;;12217:2:1;32366:61:0;;;12199:21:1;;;12236:18;;;12229:30;12295:34;12275:18;;;12268:62;12347:18;;32366:61:0;12015:356:1;32366:61:0;30381:4;30405:16;;;:7;:16;;;;;;-1:-1:-1;;;;;30405:16:0;:30;32438:58;;;;-1:-1:-1;;;32438:58:0;;8727:2:1;32438:58:0;;;8709:21:1;8766:2;8746:18;;;8739:30;8805;8785:18;;;8778:58;8853:18;;32438:58:0;8525:352:1;32438:58:0;32509:45;32538:1;32542:2;32546:7;32509:20;:45::i;:::-;-1:-1:-1;;;;;32567:13:0;;;;;;:9;:13;;;;;:18;;32584:1;;32567:13;:18;;32584:1;;32567:18;:::i;:::-;;;;-1:-1:-1;;32596:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32596:21:0;-1:-1:-1;;;;;32596:21:0;;;;;;;;32635:33;;32596:16;;;32635:33;;32596:16;;32635:33;32294:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:247::-;484:6;537:2;525:9;516:7;512:23;508:32;505:52;;;553:1;550;543:12;505:52;592:9;579:23;611:31;636:5;611:31;:::i;677:251::-;747:6;800:2;788:9;779:7;775:23;771:32;768:52;;;816:1;813;806:12;768:52;848:9;842:16;867:31;892:5;867:31;:::i;933:388::-;1001:6;1009;1062:2;1050:9;1041:7;1037:23;1033:32;1030:52;;;1078:1;1075;1068:12;1030:52;1117:9;1104:23;1136:31;1161:5;1136:31;:::i;:::-;1186:5;-1:-1:-1;1243:2:1;1228:18;;1215:32;1256:33;1215:32;1256:33;:::i;:::-;1308:7;1298:17;;;933:388;;;;;:::o;1326:456::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1527:9;1514:23;1546:31;1571:5;1546:31;:::i;:::-;1596:5;-1:-1:-1;1653:2:1;1638:18;;1625:32;1666:33;1625:32;1666:33;:::i;:::-;1326:456;;1718:7;;-1:-1:-1;;;1772:2:1;1757:18;;;;1744:32;;1326:456::o;1787:794::-;1882:6;1890;1898;1906;1959:3;1947:9;1938:7;1934:23;1930:33;1927:53;;;1976:1;1973;1966:12;1927:53;2015:9;2002:23;2034:31;2059:5;2034:31;:::i;:::-;2084:5;-1:-1:-1;2141:2:1;2126:18;;2113:32;2154:33;2113:32;2154:33;:::i;:::-;2206:7;-1:-1:-1;2260:2:1;2245:18;;2232:32;;-1:-1:-1;2315:2:1;2300:18;;2287:32;2342:18;2331:30;;2328:50;;;2374:1;2371;2364:12;2328:50;2397:22;;2450:4;2442:13;;2438:27;-1:-1:-1;2428:55:1;;2479:1;2476;2469:12;2428:55;2502:73;2567:7;2562:2;2549:16;2544:2;2540;2536:11;2502:73;:::i;:::-;2492:83;;;1787:794;;;;;;;:::o;2586:416::-;2651:6;2659;2712:2;2700:9;2691:7;2687:23;2683:32;2680:52;;;2728:1;2725;2718:12;2680:52;2767:9;2754:23;2786:31;2811:5;2786:31;:::i;:::-;2836:5;-1:-1:-1;2893:2:1;2878:18;;2865:32;2935:15;;2928:23;2916:36;;2906:64;;2966:1;2963;2956:12;3007:315;3075:6;3083;3136:2;3124:9;3115:7;3111:23;3107:32;3104:52;;;3152:1;3149;3142:12;3104:52;3191:9;3178:23;3210:31;3235:5;3210:31;:::i;:::-;3260:5;3312:2;3297:18;;;;3284:32;;-1:-1:-1;;;3007:315:1:o;3327:957::-;3411:6;3442:2;3485;3473:9;3464:7;3460:23;3456:32;3453:52;;;3501:1;3498;3491:12;3453:52;3541:9;3528:23;3570:18;3611:2;3603:6;3600:14;3597:34;;;3627:1;3624;3617:12;3597:34;3665:6;3654:9;3650:22;3640:32;;3710:7;3703:4;3699:2;3695:13;3691:27;3681:55;;3732:1;3729;3722:12;3681:55;3768:2;3755:16;3790:2;3786;3783:10;3780:36;;;3796:18;;:::i;:::-;3842:2;3839:1;3835:10;3825:20;;3865:28;3889:2;3885;3881:11;3865:28;:::i;:::-;3927:15;;;3958:12;;;;3990:11;;;4020;;;4016:20;;4013:33;-1:-1:-1;4010:53:1;;;4059:1;4056;4049:12;4010:53;4081:1;4072:10;;4091:163;4105:2;4102:1;4099:9;4091:163;;;4162:17;;4150:30;;4123:1;4116:9;;;;;4200:12;;;;4232;;4091:163;;;-1:-1:-1;4273:5:1;3327:957;-1:-1:-1;;;;;;;;3327:957:1:o;4289:245::-;4347:6;4400:2;4388:9;4379:7;4375:23;4371:32;4368:52;;;4416:1;4413;4406:12;4368:52;4455:9;4442:23;4474:30;4498:5;4474:30;:::i;4539:249::-;4608:6;4661:2;4649:9;4640:7;4636:23;4632:32;4629:52;;;4677:1;4674;4667:12;4629:52;4709:9;4703:16;4728:30;4752:5;4728:30;:::i;4793:450::-;4862:6;4915:2;4903:9;4894:7;4890:23;4886:32;4883:52;;;4931:1;4928;4921:12;4883:52;4971:9;4958:23;5004:18;4996:6;4993:30;4990:50;;;5036:1;5033;5026:12;4990:50;5059:22;;5112:4;5104:13;;5100:27;-1:-1:-1;5090:55:1;;5141:1;5138;5131:12;5090:55;5164:73;5229:7;5224:2;5211:16;5206:2;5202;5198:11;5164:73;:::i;5248:180::-;5307:6;5360:2;5348:9;5339:7;5335:23;5331:32;5328:52;;;5376:1;5373;5366:12;5328:52;-1:-1:-1;5399:23:1;;5248:180;-1:-1:-1;5248:180:1:o;5433:257::-;5474:3;5512:5;5506:12;5539:6;5534:3;5527:19;5555:63;5611:6;5604:4;5599:3;5595:14;5588:4;5581:5;5577:16;5555:63;:::i;:::-;5672:2;5651:15;-1:-1:-1;;5647:29:1;5638:39;;;;5679:4;5634:50;;5433:257;-1:-1:-1;;5433:257:1:o;5695:470::-;5874:3;5912:6;5906:13;5928:53;5974:6;5969:3;5962:4;5954:6;5950:17;5928:53;:::i;:::-;6044:13;;6003:16;;;;6066:57;6044:13;6003:16;6100:4;6088:17;;6066:57;:::i;:::-;6139:20;;5695:470;-1:-1:-1;;;;5695:470:1:o;6378:488::-;-1:-1:-1;;;;;6647:15:1;;;6629:34;;6699:15;;6694:2;6679:18;;6672:43;6746:2;6731:18;;6724:34;;;6794:3;6789:2;6774:18;;6767:31;;;6572:4;;6815:45;;6840:19;;6832:6;6815:45;:::i;:::-;6807:53;6378:488;-1:-1:-1;;;;;;6378:488:1:o;7063:219::-;7212:2;7201:9;7194:21;7175:4;7232:44;7272:2;7261:9;7257:18;7249:6;7232:44;:::i;7699:414::-;7901:2;7883:21;;;7940:2;7920:18;;;7913:30;7979:34;7974:2;7959:18;;7952:62;-1:-1:-1;;;8045:2:1;8030:18;;8023:48;8103:3;8088:19;;7699:414::o;12789:356::-;12991:2;12973:21;;;13010:18;;;13003:30;13069:34;13064:2;13049:18;;13042:62;13136:2;13121:18;;12789:356::o;13150:340::-;13352:2;13334:21;;;13391:2;13371:18;;;13364:30;-1:-1:-1;;;13425:2:1;13410:18;;13403:46;13481:2;13466:18;;13150:340::o;14723:413::-;14925:2;14907:21;;;14964:2;14944:18;;;14937:30;15003:34;14998:2;14983:18;;14976:62;-1:-1:-1;;;15069:2:1;15054:18;;15047:47;15126:3;15111:19;;14723:413::o;15554:355::-;15756:2;15738:21;;;15795:2;15775:18;;;15768:30;15834:33;15829:2;15814:18;;15807:61;15900:2;15885:18;;15554:355::o;16096:275::-;16167:2;16161:9;16232:2;16213:13;;-1:-1:-1;;16209:27:1;16197:40;;16267:18;16252:34;;16288:22;;;16249:62;16246:88;;;16314:18;;:::i;:::-;16350:2;16343:22;16096:275;;-1:-1:-1;16096:275:1:o;16376:128::-;16416:3;16447:1;16443:6;16440:1;16437:13;16434:39;;;16453:18;;:::i;:::-;-1:-1:-1;16489:9:1;;16376:128::o;16509:120::-;16549:1;16575;16565:35;;16580:18;;:::i;:::-;-1:-1:-1;16614:9:1;;16509:120::o;16634:168::-;16674:7;16740:1;16736;16732:6;16728:14;16725:1;16722:21;16717:1;16710:9;16703:17;16699:45;16696:71;;;16747:18;;:::i;:::-;-1:-1:-1;16787:9:1;;16634:168::o;16807:125::-;16847:4;16875:1;16872;16869:8;16866:34;;;16880:18;;:::i;:::-;-1:-1:-1;16917:9:1;;16807:125::o;16937:258::-;17009:1;17019:113;17033:6;17030:1;17027:13;17019:113;;;17109:11;;;17103:18;17090:11;;;17083:39;17055:2;17048:10;17019:113;;;17150:6;17147:1;17144:13;17141:48;;;-1:-1:-1;;17185:1:1;17167:16;;17160:27;16937:258::o;17200:380::-;17279:1;17275:12;;;;17322;;;17343:61;;17397:4;17389:6;17385:17;17375:27;;17343:61;17450:2;17442:6;17439:14;17419:18;17416:38;17413:161;;;17496:10;17491:3;17487:20;17484:1;17477:31;17531:4;17528:1;17521:15;17559:4;17556:1;17549:15;17413:161;;17200:380;;;:::o;17585:135::-;17624:3;-1:-1:-1;;17645:17:1;;17642:43;;;17665:18;;:::i;:::-;-1:-1:-1;17712:1:1;17701:13;;17585:135::o;17725:112::-;17757:1;17783;17773:35;;17788:18;;:::i;:::-;-1:-1:-1;17822:9:1;;17725:112::o;17842:127::-;17903:10;17898:3;17894:20;17891:1;17884:31;17934:4;17931:1;17924:15;17958:4;17955:1;17948:15;17974:127;18035:10;18030:3;18026:20;18023:1;18016:31;18066:4;18063:1;18056:15;18090:4;18087:1;18080:15;18106:127;18167:10;18162:3;18158:20;18155:1;18148:31;18198:4;18195:1;18188:15;18222:4;18219:1;18212:15;18238:127;18299:10;18294:3;18290:20;18287:1;18280:31;18330:4;18327:1;18320:15;18354:4;18351:1;18344:15;18370:127;18431:10;18426:3;18422:20;18419:1;18412:31;18462:4;18459:1;18452:15;18486:4;18483:1;18476:15;18502:131;-1:-1:-1;;;;;18577:31:1;;18567:42;;18557:70;;18623:1;18620;18613:12;18638:131;-1:-1:-1;;;;;;18712:32:1;;18702:43;;18692:71;;18759:1;18756;18749:12

Swarm Source

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