ETH Price: $3,361.77 (-1.61%)
Gas: 8 Gwei

Token

Humans of the Metaverse (HOTM)
 

Overview

Max Total Supply

6,500 HOTM

Holders

2,529

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
root1.eth
Balance
1 HOTM
0x978C54e840D37e0fBdbcf2E2CB241D68a92a950c
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Humans of the Metaverse is a collection of 6,500 unique Meta Humans NFTs, stored as ERC-721 tokens on the Ethereum blockchain and hosted on IPFS.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
HumansOfTheMetaverse

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: GPL-3.0

/*
                                                        ,----,
                            ,--,     ,----..          ,/   .`|           ____
                          ,--.'|    /   /   \       ,`   .'  :         ,'  , `.
                       ,--,  | :   /   .     :    ;    ;     /      ,-+-,.' _ |
                    ,---.'|  : '  .   /   ;.  \ .'___,/    ,'    ,-+-. ;   , ||
                    |   | : _' | .   ;   /  ` ; |    :     |    ,--.'|'   |  ;|
                    :   : |.'  | ;   |  ; \ ; | ;    |.';  ;   |   |  ,', |  ':t
                    |   ' '  ; : |   :  | ; | ' `----'  |  |   |   | /  | |  ||
                    '   |  .'. | .   |  ' ' ' :     '   :  ;   '   | :  | :  |,
                    |   | :  | ' '   ;  \; /  |     |   |  '   ;   . |  ; |--'
                    '   : |  : ;  \   \  ',  /      '   :  |   |   : |  | ,
                    |   | '  ,/    ;   :    /       ;   |.'    |   : '  |/
                    ;   : ;--'      \   \ .'        '---'      ;   | |`-'
                    |   ,/           `---`                     |   ;/
                    '---'                                      '---'
*/

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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);
    }
}

pragma solidity ^0.8.0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and 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;
    }
}

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);
}

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

pragma solidity ^0.8.0;

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

pragma solidity ^0.8.0;

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

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

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


pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    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);
    }

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

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


pragma solidity ^0.8.0;

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

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
            if( owner == _owners[i] ){
                ++count;
            }
        }
        delete length;
        return count;
    }
    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;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.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);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    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);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    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);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    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);
    }
    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");
    }
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    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"
        );
    }
    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);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.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);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

pragma solidity ^0.8.10;

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

pragma solidity ^0.8.10;

interface IWatcher {
    function watchTransfer(address _from, address _to, uint256 _tokenId) external;
}

contract HumansOfTheMetaverse is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;

    //sale settings
    uint256 constant private MAX_SUPPLY = 6500;
    uint256 constant private MAX_PRESALE_MINT = 2;
    uint256 private TEAM_RESERVE_AVAILABLE_MINTS = 50;
    uint256 private COST = 0.065 ether;
    uint256 private MAX_SALE_MINT = 6;
    address public _trustedContract = 0x0000000000000000000000000000000000000000;

    bool public isPresaleActive = false;
    bool public isSaleActive = false;

    //presale settings
    mapping(address => bool) public presaleWhitelist;
    mapping(address => uint256) public presaleWhitelistMints;

    string private baseURI;

    constructor(
        string memory _name,
        string memory _symbol
    ) ERC721P(_name, _symbol) {}

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

    function _publicSupply() internal view virtual returns (uint256) {
        return MAX_SUPPLY - TEAM_RESERVE_AVAILABLE_MINTS;
    }

    function _transferNotice(address _from, address _to, uint256 _tokenId) internal {
        if (_trustedContract != address(0)) {
            IWatcher(_trustedContract).watchTransfer(_from, _to, _tokenId);
        }
    }

    // external
    function isWhitelisted (address _address) external view returns (bool) {
        return presaleWhitelist[_address];
    }

    function setTrustedContract(address _contractAddress) public onlyOwner {
        _trustedContract = _contractAddress;
    }

    function flipPresaleState() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function flipSaleState() external onlyOwner {
        isSaleActive = !isSaleActive;
    }

    function mint(uint256 _mintAmount) external payable {
        require(isSaleActive, "Sale is not active");
        require(_mintAmount > 0, "Minted amount should be positive" );
        require(_mintAmount <= MAX_SALE_MINT, "Minted amount exceeds sale limit" );

        uint256 totalSupply = totalSupply();

        require(totalSupply + _mintAmount <= _publicSupply(), "The requested amount exceeds the remaining supply" );
        require(msg.value >= COST * _mintAmount);

        for (uint256 i = 0; i < _mintAmount; i++) {
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function mintPresale(uint256 _mintAmount) external payable {
        require(isPresaleActive, "Presale is not active");
        require(presaleWhitelist[msg.sender], "Caller is not whitelisted");

        uint256 totalSupply = totalSupply();
        uint256 availableMints = MAX_PRESALE_MINT - presaleWhitelistMints[msg.sender];

        require(_mintAmount <= availableMints, "Too many mints requested");
        require(totalSupply + _mintAmount <= _publicSupply(), "The requested amount exceeds the remaining supply");
        require(msg.value >= COST * _mintAmount , "Wrong amount provided");

        presaleWhitelistMints[msg.sender] += _mintAmount;

        for(uint256 i = 0; i < _mintAmount; i++){
            _safeMint(msg.sender, totalSupply + i);
        }
    }

    function withdraw() external onlyOwner {
        require(payable(msg.sender).send(address(this).balance));
    }

    function addToWhitelist(address[] calldata _addresses) external onlyOwner {
        for (uint256 i = 0; i < _addresses.length; i++) {
            require(_addresses[i] != address(0), "Null address is not allowed");
            presaleWhitelist[_addresses[i]] = true;
            presaleWhitelistMints[_addresses[i]] > 0 ? presaleWhitelistMints[_addresses[i]] : 0;
        }
    }

    function setCost(uint256 _newCost) external onlyOwner {
        COST = _newCost;
    }

    function setMaxMintAmount(uint256 _newMaxMintAmount) external onlyOwner {
        MAX_SALE_MINT = _newMaxMintAmount;
    }

    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }

    // admin minting
     function reserve(address _to, uint256 _reserveAmount) public onlyOwner {
        uint256 supply = totalSupply();
        require(
            _reserveAmount > 0 && _reserveAmount <= TEAM_RESERVE_AVAILABLE_MINTS,
            "Not enough reserve left for team"
        );
        for (uint256 i = 0; i < _reserveAmount; i++) {
            _safeMint(_to, supply + i);
        }
        TEAM_RESERVE_AVAILABLE_MINTS -= _reserveAmount;
    }

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

    function transferFrom(address _from, address _to, uint256 _tokenId) public override {
        ERC721P.transferFrom(_from, _to, _tokenId);
        _transferNotice(_from, _to, _tokenId);
    }

    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
        ERC721P.safeTransferFrom(_from, _to, _tokenId, _data);
        _transferNotice(_from, _to, _tokenId);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"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":"_trustedContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","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":"flipPresaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPresale","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":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelistMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_reserveAmount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMintAmount","type":"uint256"}],"name":"setMaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contractAddress","type":"address"}],"name":"setTrustedContract","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":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052603260075566e6ed27d66680006008556006600955600a80546001600160b01b03191690553480156200003657600080fd5b5060405162002a4938038062002a4983398101604081905262000059916200027b565b8151829082906200007290600090602085019062000108565b5080516200008890600190602084019062000108565b505050620000a56200009f620000b260201b60201c565b620000b6565b5050600160065562000322565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011690620002e5565b90600052602060002090601f0160209004810192826200013a576000855562000185565b82601f106200015557805160ff191683800117855562000185565b8280016001018555821562000185579182015b828111156200018557825182559160200191906001019062000168565b506200019392915062000197565b5090565b5b8082111562000193576000815560010162000198565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001d657600080fd5b81516001600160401b0380821115620001f357620001f3620001ae565b604051601f8301601f19908116603f011681019082821181831017156200021e576200021e620001ae565b816040528381526020925086838588010111156200023b57600080fd5b600091505b838210156200025f578582018301518183018401529082019062000240565b83821115620002715760008385830101525b9695505050505050565b600080604083850312156200028f57600080fd5b82516001600160401b0380821115620002a757600080fd5b620002b586838701620001c4565b93506020850151915080821115620002cc57600080fd5b50620002db85828601620001c4565b9150509250929050565b600181811c90821680620002fa57607f821691505b602082108114156200031c57634e487b7160e01b600052602260045260246000fd5b50919050565b61271780620003326000396000f3fe60806040526004361061021a5760003560e01c806360d938dc11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610649578063eb8835ab14610692578063f2fde38b146106c2578063f759867a146106e2578063f81227d4146106f557600080fd5b8063a22cb465146105a9578063aaf50292146105c9578063b88d4fde146105e9578063c87b56dd14610609578063cc47a40b1461062957600080fd5b80637f649783116100f25780637f649783146105165780638462151c146105365780638da5cb5b1461056357806395d89b4114610581578063a0712d681461059657600080fd5b806360d938dc146104a05780636352211e146104c157806370a08231146104e1578063715018a61461050157600080fd5b806334918dfd116101a657806344a0d68a1161017557806344a0d68a146103f25780634f6ccce71461041257806355105e9e1461043257806355f804b31461045f578063564566a81461047f57600080fd5b806334918dfd1461036f5780633af32abf146103845780633ccfd60b146103bd57806342842e0e146103d257600080fd5b8063088a4ed0116101ed578063088a4ed0146102ce578063095ea7b3146102f057806318160ddd1461031057806323b872dd1461032f5780632f745c591461034f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc146102765780630856f5ce146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461202a565b61070a565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610735565b60405161024b919061209f565b34801561028257600080fd5b506102966102913660046120b2565b6107c7565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50600a54610296906001600160a01b031681565b3480156102da57600080fd5b506102ee6102e93660046120b2565b610854565b005b3480156102fc57600080fd5b506102ee61030b3660046120e7565b610883565b34801561031c57600080fd5b506002545b60405190815260200161024b565b34801561033b57600080fd5b506102ee61034a366004612111565b610999565b34801561035b57600080fd5b5061032161036a3660046120e7565b6109af565b34801561037b57600080fd5b506102ee610a5e565b34801561039057600080fd5b5061023f61039f36600461214d565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103c957600080fd5b506102ee610aa9565b3480156103de57600080fd5b506102ee6103ed366004612111565b610af9565b3480156103fe57600080fd5b506102ee61040d3660046120b2565b610b14565b34801561041e57600080fd5b5061032161042d3660046120b2565b610b43565b34801561043e57600080fd5b5061032161044d36600461214d565b600c6020526000908152604090205481565b34801561046b57600080fd5b506102ee61047a3660046121f4565b610ba0565b34801561048b57600080fd5b50600a5461023f90600160a81b900460ff1681565b3480156104ac57600080fd5b50600a5461023f90600160a01b900460ff1681565b3480156104cd57600080fd5b506102966104dc3660046120b2565b610be1565b3480156104ed57600080fd5b506103216104fc36600461214d565b610c6d565b34801561050d57600080fd5b506102ee610d3f565b34801561052257600080fd5b506102ee61053136600461223d565b610d73565b34801561054257600080fd5b5061055661055136600461214d565b610f37565b60405161024b91906122b2565b34801561056f57600080fd5b506005546001600160a01b0316610296565b34801561058d57600080fd5b50610269611001565b6102ee6105a43660046120b2565b611010565b3480156105b557600080fd5b506102ee6105c43660046122f6565b611187565b3480156105d557600080fd5b506102ee6105e436600461214d565b61124c565b3480156105f557600080fd5b506102ee610604366004612332565b611298565b34801561061557600080fd5b506102696106243660046120b2565b6112b5565b34801561063557600080fd5b506102ee6106443660046120e7565b611372565b34801561065557600080fd5b5061023f6106643660046123ae565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561069e57600080fd5b5061023f6106ad36600461214d565b600b6020526000908152604090205460ff1681565b3480156106ce57600080fd5b506102ee6106dd36600461214d565b61144f565b6102ee6106f03660046120b2565b6114ea565b34801561070157600080fd5b506102ee6116eb565b60006001600160e01b0319821663780e9d6360e01b148061072f575061072f82611736565b92915050565b606060008054610744906123e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906123e1565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611786565b6108385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b0316331461087e5760405162461bcd60e51b815260040161082f9061241c565b600955565b600061088e82610be1565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082f565b336001600160a01b038216148061091857506109188133610664565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082f565b61099483836117d0565b505050565b6109a483838361183e565b61099483838361186f565b60006109ba83610c6d565b82106109d85760405162461bcd60e51b815260040161082f90612451565b6000805b600254811015610a4557600281815481106109f9576109f9612481565b6000918252602090912001546001600160a01b0386811691161415610a355783821415610a2957915061072f9050565b610a32826124ad565b91505b610a3e816124ad565b90506109dc565b5060405162461bcd60e51b815260040161082f90612451565b6005546001600160a01b03163314610a885760405162461bcd60e51b815260040161082f9061241c565b600a805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b03163314610ad35760405162461bcd60e51b815260040161082f9061241c565b60405133904780156108fc02916000818181858888f19350505050610af757600080fd5b565b61099483838360405180602001604052806000815250611298565b6005546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161082f9061241c565b600855565b6000610b4e60025490565b8210610b9c5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161082f565b5090565b6005546001600160a01b03163314610bca5760405162461bcd60e51b815260040161082f9061241c565b8051610bdd90600d906020840190611f84565b5050565b60008060028381548110610bf757610bf7612481565b6000918252602090912001546001600160a01b031690508061072f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082f565b60006001600160a01b038216610cd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082f565b600254600090815b81811015610d365760028181548110610cfb57610cfb612481565b6000918252602090912001546001600160a01b0386811691161415610d2657610d23836124ad565b92505b610d2f816124ad565b9050610ce0565b50909392505050565b6005546001600160a01b03163314610d695760405162461bcd60e51b815260040161082f9061241c565b610af760006118f2565b6005546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161082f9061241c565b60005b81811015610994576000838383818110610dbc57610dbc612481565b9050602002016020810190610dd1919061214d565b6001600160a01b03161415610e285760405162461bcd60e51b815260206004820152601b60248201527f4e756c6c2061646472657373206973206e6f7420616c6c6f7765640000000000604482015260640161082f565b6001600b6000858585818110610e4057610e40612481565b9050602002016020810190610e55919061214d565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600c81858585818110610e9557610e95612481565b9050602002016020810190610eaa919061214d565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610ed7576000610f24565b600c6000848484818110610eed57610eed612481565b9050602002016020810190610f02919061214d565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610f2f816124ad565b915050610da0565b6060610f4282610c6d565b600010610f615760405162461bcd60e51b815260040161082f90612451565b6000610f6c83610c6d565b905060008167ffffffffffffffff811115610f8957610f89612168565b604051908082528060200260200182016040528015610fb2578160200160208202803683370190505b50905060005b82811015610ff957610fca85826109af565b828281518110610fdc57610fdc612481565b602090810291909101015280610ff1816124ad565b915050610fb8565b509392505050565b606060018054610744906123e1565b600a54600160a81b900460ff1661105e5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161082f565b600081116110ae5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f736974697665604482015260640161082f565b6009548111156111005760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d6974604482015260640161082f565b600061110b60025490565b9050611115611944565b61111f83836124c8565b111561113d5760405162461bcd60e51b815260040161082f906124e0565b8160085461114b9190612531565b34101561115757600080fd5b60005b82811015610994576111753361117083856124c8565b61195b565b8061117f816124ad565b91505061115a565b6001600160a01b0382163314156111e05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082f565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146112765760405162461bcd60e51b815260040161082f9061241c565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112a484848484611975565b6112af84848461186f565b50505050565b60606112c082611786565b6113165760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161082f565b60006113206119a7565b90506000815111611340576040518060200160405280600081525061136b565b8061134a846119b6565b60405160200161135b929190612550565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461139c5760405162461bcd60e51b815260040161082f9061241c565b60006113a760025490565b90506000821180156113bb57506007548211155b6114075760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082f565b60005b82811015611432576114208461117083856124c8565b8061142a816124ad565b91505061140a565b508160076000828254611445919061258f565b9091555050505050565b6005546001600160a01b031633146114795760405162461bcd60e51b815260040161082f9061241c565b6001600160a01b0381166114de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b6114e7816118f2565b50565b600a54600160a01b900460ff1661153b5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161082f565b336000908152600b602052604090205460ff1661159a5760405162461bcd60e51b815260206004820152601960248201527f43616c6c6572206973206e6f742077686974656c697374656400000000000000604482015260640161082f565b60006115a560025490565b336000908152600c6020526040812054919250906115c490600261258f565b9050808311156116165760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79206d696e7473207265717565737465640000000000000000604482015260640161082f565b61161e611944565b61162884846124c8565b11156116465760405162461bcd60e51b815260040161082f906124e0565b826008546116549190612531565b34101561169b5760405162461bcd60e51b815260206004820152601560248201527415dc9bdb99c8185b5bdd5b9d081c1c9bdd9a591959605a1b604482015260640161082f565b336000908152600c6020526040812080548592906116ba9084906124c8565b90915550600090505b838110156112af576116d93361117083866124c8565b806116e3816124ad565b9150506116c3565b6005546001600160a01b031633146117155760405162461bcd60e51b815260040161082f9061241c565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061176757506001600160e01b03198216635b5e139f60e01b145b8061072f57506301ffc9a760e01b6001600160e01b031983161461072f565b6002546000908210801561072f575060006001600160a01b0316600283815481106117b3576117b3612481565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180582610be1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118483382611abc565b6118645760405162461bcd60e51b815260040161082f906125a6565b610994838383611ba2565b600a546001600160a01b03161561099457600a5460405162a1651960e21b81526001600160a01b03858116600483015284811660248301526044820184905290911690630285946490606401600060405180830381600087803b1580156118d557600080fd5b505af11580156118e9573d6000803e3d6000fd5b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000600754611964611956919061258f565b905090565b610bdd828260405180602001604052806000815250611cf8565b61197f3383611abc565b61199b5760405162461bcd60e51b815260040161082f906125a6565b6112af84848484611d2b565b6060600d8054610744906123e1565b6060816119da5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0457806119ee816124ad565b91506119fd9050600a8361260d565b91506119de565b60008167ffffffffffffffff811115611a1f57611a1f612168565b6040519080825280601f01601f191660200182016040528015611a49576020820181803683370190505b5090505b8415611ab457611a5e60018361258f565b9150611a6b600a86612621565b611a769060306124c8565b60f81b818381518110611a8b57611a8b612481565b60200101906001600160f81b031916908160001a905350611aad600a8661260d565b9450611a4d565b949350505050565b6000611ac782611786565b611b285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082f565b6000611b3383610be1565b9050806001600160a01b0316846001600160a01b03161480611b6e5750836001600160a01b0316611b63846107c7565b6001600160a01b0316145b80611ab457506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611ab4565b826001600160a01b0316611bb582610be1565b6001600160a01b031614611c1d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082f565b6001600160a01b038216611c7f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b611c8a6000826117d0565b8160028281548110611c9e57611c9e612481565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611d028383611d5e565b611d0f6000848484611e86565b6109945760405162461bcd60e51b815260040161082f90612635565b611d36848484611ba2565b611d4284848484611e86565b6112af5760405162461bcd60e51b815260040161082f90612635565b6001600160a01b038216611db45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082f565b611dbd81611786565b15611e0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f7957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eca903390899088908890600401612687565b6020604051808303816000875af1925050508015611f05575060408051601f3d908101601f19168201909252611f02918101906126c4565b60015b611f5f573d808015611f33576040519150601f19603f3d011682016040523d82523d6000602084013e611f38565b606091505b508051611f575760405162461bcd60e51b815260040161082f90612635565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab4565b506001949350505050565b828054611f90906123e1565b90600052602060002090601f016020900481019282611fb25760008555611ff8565b82601f10611fcb57805160ff1916838001178555611ff8565b82800160010185558215611ff8579182015b82811115611ff8578251825591602001919060010190611fdd565b50610b9c9291505b80821115610b9c5760008155600101612000565b6001600160e01b0319811681146114e757600080fd5b60006020828403121561203c57600080fd5b813561136b81612014565b60005b8381101561206257818101518382015260200161204a565b838111156112af5750506000910152565b6000815180845261208b816020860160208601612047565b601f01601f19169290920160200192915050565b60208152600061136b6020830184612073565b6000602082840312156120c457600080fd5b5035919050565b80356001600160a01b03811681146120e257600080fd5b919050565b600080604083850312156120fa57600080fd5b612103836120cb565b946020939093013593505050565b60008060006060848603121561212657600080fd5b61212f846120cb565b925061213d602085016120cb565b9150604084013590509250925092565b60006020828403121561215f57600080fd5b61136b826120cb565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561219957612199612168565b604051601f8501601f19908116603f011681019082821181831017156121c1576121c1612168565b816040528093508581528686860111156121da57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561220657600080fd5b813567ffffffffffffffff81111561221d57600080fd5b8201601f8101841361222e57600080fd5b611ab48482356020840161217e565b6000806020838503121561225057600080fd5b823567ffffffffffffffff8082111561226857600080fd5b818501915085601f83011261227c57600080fd5b81358181111561228b57600080fd5b8660208260051b85010111156122a057600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156122ea578351835292840192918401916001016122ce565b50909695505050505050565b6000806040838503121561230957600080fd5b612312836120cb565b91506020830135801515811461232757600080fd5b809150509250929050565b6000806000806080858703121561234857600080fd5b612351856120cb565b935061235f602086016120cb565b925060408501359150606085013567ffffffffffffffff81111561238257600080fd5b8501601f8101871361239357600080fd5b6123a28782356020840161217e565b91505092959194509250565b600080604083850312156123c157600080fd5b6123ca836120cb565b91506123d8602084016120cb565b90509250929050565b600181811c908216806123f557607f821691505b6020821081141561241657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124c1576124c1612497565b5060010190565b600082198211156124db576124db612497565b500190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b600081600019048311821515161561254b5761254b612497565b500290565b60008351612562818460208801612047565b835190830190612576818360208801612047565b64173539b7b760d91b9101908152600501949350505050565b6000828210156125a1576125a1612497565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261261c5761261c6125f7565b500490565b600082612630576126306125f7565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126ba90830184612073565b9695505050505050565b6000602082840312156126d657600080fd5b815161136b8161201456fea2646970667358221220c7ab0318025d1497043932b99654c854ac5192c7f305e15cff16f4276e4e273064736f6c634300080a003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001748756d616e73206f6620746865204d65746176657273650000000000000000000000000000000000000000000000000000000000000000000000000000000004484f544d00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061021a5760003560e01c806360d938dc11610123578063a22cb465116100ab578063e985e9c51161006f578063e985e9c514610649578063eb8835ab14610692578063f2fde38b146106c2578063f759867a146106e2578063f81227d4146106f557600080fd5b8063a22cb465146105a9578063aaf50292146105c9578063b88d4fde146105e9578063c87b56dd14610609578063cc47a40b1461062957600080fd5b80637f649783116100f25780637f649783146105165780638462151c146105365780638da5cb5b1461056357806395d89b4114610581578063a0712d681461059657600080fd5b806360d938dc146104a05780636352211e146104c157806370a08231146104e1578063715018a61461050157600080fd5b806334918dfd116101a657806344a0d68a1161017557806344a0d68a146103f25780634f6ccce71461041257806355105e9e1461043257806355f804b31461045f578063564566a81461047f57600080fd5b806334918dfd1461036f5780633af32abf146103845780633ccfd60b146103bd57806342842e0e146103d257600080fd5b8063088a4ed0116101ed578063088a4ed0146102ce578063095ea7b3146102f057806318160ddd1461031057806323b872dd1461032f5780632f745c591461034f57600080fd5b806301ffc9a71461021f57806306fdde0314610254578063081812fc146102765780630856f5ce146102ae575b600080fd5b34801561022b57600080fd5b5061023f61023a36600461202a565b61070a565b60405190151581526020015b60405180910390f35b34801561026057600080fd5b50610269610735565b60405161024b919061209f565b34801561028257600080fd5b506102966102913660046120b2565b6107c7565b6040516001600160a01b03909116815260200161024b565b3480156102ba57600080fd5b50600a54610296906001600160a01b031681565b3480156102da57600080fd5b506102ee6102e93660046120b2565b610854565b005b3480156102fc57600080fd5b506102ee61030b3660046120e7565b610883565b34801561031c57600080fd5b506002545b60405190815260200161024b565b34801561033b57600080fd5b506102ee61034a366004612111565b610999565b34801561035b57600080fd5b5061032161036a3660046120e7565b6109af565b34801561037b57600080fd5b506102ee610a5e565b34801561039057600080fd5b5061023f61039f36600461214d565b6001600160a01b03166000908152600b602052604090205460ff1690565b3480156103c957600080fd5b506102ee610aa9565b3480156103de57600080fd5b506102ee6103ed366004612111565b610af9565b3480156103fe57600080fd5b506102ee61040d3660046120b2565b610b14565b34801561041e57600080fd5b5061032161042d3660046120b2565b610b43565b34801561043e57600080fd5b5061032161044d36600461214d565b600c6020526000908152604090205481565b34801561046b57600080fd5b506102ee61047a3660046121f4565b610ba0565b34801561048b57600080fd5b50600a5461023f90600160a81b900460ff1681565b3480156104ac57600080fd5b50600a5461023f90600160a01b900460ff1681565b3480156104cd57600080fd5b506102966104dc3660046120b2565b610be1565b3480156104ed57600080fd5b506103216104fc36600461214d565b610c6d565b34801561050d57600080fd5b506102ee610d3f565b34801561052257600080fd5b506102ee61053136600461223d565b610d73565b34801561054257600080fd5b5061055661055136600461214d565b610f37565b60405161024b91906122b2565b34801561056f57600080fd5b506005546001600160a01b0316610296565b34801561058d57600080fd5b50610269611001565b6102ee6105a43660046120b2565b611010565b3480156105b557600080fd5b506102ee6105c43660046122f6565b611187565b3480156105d557600080fd5b506102ee6105e436600461214d565b61124c565b3480156105f557600080fd5b506102ee610604366004612332565b611298565b34801561061557600080fd5b506102696106243660046120b2565b6112b5565b34801561063557600080fd5b506102ee6106443660046120e7565b611372565b34801561065557600080fd5b5061023f6106643660046123ae565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b34801561069e57600080fd5b5061023f6106ad36600461214d565b600b6020526000908152604090205460ff1681565b3480156106ce57600080fd5b506102ee6106dd36600461214d565b61144f565b6102ee6106f03660046120b2565b6114ea565b34801561070157600080fd5b506102ee6116eb565b60006001600160e01b0319821663780e9d6360e01b148061072f575061072f82611736565b92915050565b606060008054610744906123e1565b80601f0160208091040260200160405190810160405280929190818152602001828054610770906123e1565b80156107bd5780601f10610792576101008083540402835291602001916107bd565b820191906000526020600020905b8154815290600101906020018083116107a057829003601f168201915b5050505050905090565b60006107d282611786565b6108385760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6005546001600160a01b0316331461087e5760405162461bcd60e51b815260040161082f9061241c565b600955565b600061088e82610be1565b9050806001600160a01b0316836001600160a01b031614156108fc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161082f565b336001600160a01b038216148061091857506109188133610664565b61098a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161082f565b61099483836117d0565b505050565b6109a483838361183e565b61099483838361186f565b60006109ba83610c6d565b82106109d85760405162461bcd60e51b815260040161082f90612451565b6000805b600254811015610a4557600281815481106109f9576109f9612481565b6000918252602090912001546001600160a01b0386811691161415610a355783821415610a2957915061072f9050565b610a32826124ad565b91505b610a3e816124ad565b90506109dc565b5060405162461bcd60e51b815260040161082f90612451565b6005546001600160a01b03163314610a885760405162461bcd60e51b815260040161082f9061241c565b600a805460ff60a81b198116600160a81b9182900460ff1615909102179055565b6005546001600160a01b03163314610ad35760405162461bcd60e51b815260040161082f9061241c565b60405133904780156108fc02916000818181858888f19350505050610af757600080fd5b565b61099483838360405180602001604052806000815250611298565b6005546001600160a01b03163314610b3e5760405162461bcd60e51b815260040161082f9061241c565b600855565b6000610b4e60025490565b8210610b9c5760405162461bcd60e51b815260206004820152601760248201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604482015260640161082f565b5090565b6005546001600160a01b03163314610bca5760405162461bcd60e51b815260040161082f9061241c565b8051610bdd90600d906020840190611f84565b5050565b60008060028381548110610bf757610bf7612481565b6000918252602090912001546001600160a01b031690508061072f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161082f565b60006001600160a01b038216610cd85760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161082f565b600254600090815b81811015610d365760028181548110610cfb57610cfb612481565b6000918252602090912001546001600160a01b0386811691161415610d2657610d23836124ad565b92505b610d2f816124ad565b9050610ce0565b50909392505050565b6005546001600160a01b03163314610d695760405162461bcd60e51b815260040161082f9061241c565b610af760006118f2565b6005546001600160a01b03163314610d9d5760405162461bcd60e51b815260040161082f9061241c565b60005b81811015610994576000838383818110610dbc57610dbc612481565b9050602002016020810190610dd1919061214d565b6001600160a01b03161415610e285760405162461bcd60e51b815260206004820152601b60248201527f4e756c6c2061646472657373206973206e6f7420616c6c6f7765640000000000604482015260640161082f565b6001600b6000858585818110610e4057610e40612481565b9050602002016020810190610e55919061214d565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600c81858585818110610e9557610e95612481565b9050602002016020810190610eaa919061214d565b6001600160a01b03166001600160a01b031681526020019081526020016000205411610ed7576000610f24565b600c6000848484818110610eed57610eed612481565b9050602002016020810190610f02919061214d565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b5080610f2f816124ad565b915050610da0565b6060610f4282610c6d565b600010610f615760405162461bcd60e51b815260040161082f90612451565b6000610f6c83610c6d565b905060008167ffffffffffffffff811115610f8957610f89612168565b604051908082528060200260200182016040528015610fb2578160200160208202803683370190505b50905060005b82811015610ff957610fca85826109af565b828281518110610fdc57610fdc612481565b602090810291909101015280610ff1816124ad565b915050610fb8565b509392505050565b606060018054610744906123e1565b600a54600160a81b900460ff1661105e5760405162461bcd60e51b815260206004820152601260248201527153616c65206973206e6f742061637469766560701b604482015260640161082f565b600081116110ae5760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e742073686f756c6420626520706f736974697665604482015260640161082f565b6009548111156111005760405162461bcd60e51b815260206004820181905260248201527f4d696e74656420616d6f756e7420657863656564732073616c65206c696d6974604482015260640161082f565b600061110b60025490565b9050611115611944565b61111f83836124c8565b111561113d5760405162461bcd60e51b815260040161082f906124e0565b8160085461114b9190612531565b34101561115757600080fd5b60005b82811015610994576111753361117083856124c8565b61195b565b8061117f816124ad565b91505061115a565b6001600160a01b0382163314156111e05760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161082f565b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6005546001600160a01b031633146112765760405162461bcd60e51b815260040161082f9061241c565b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6112a484848484611975565b6112af84848461186f565b50505050565b60606112c082611786565b6113165760405162461bcd60e51b815260206004820152602160248201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656044820152603760f91b606482015260840161082f565b60006113206119a7565b90506000815111611340576040518060200160405280600081525061136b565b8061134a846119b6565b60405160200161135b929190612550565b6040516020818303038152906040525b9392505050565b6005546001600160a01b0316331461139c5760405162461bcd60e51b815260040161082f9061241c565b60006113a760025490565b90506000821180156113bb57506007548211155b6114075760405162461bcd60e51b815260206004820181905260248201527f4e6f7420656e6f7567682072657365727665206c65667420666f72207465616d604482015260640161082f565b60005b82811015611432576114208461117083856124c8565b8061142a816124ad565b91505061140a565b508160076000828254611445919061258f565b9091555050505050565b6005546001600160a01b031633146114795760405162461bcd60e51b815260040161082f9061241c565b6001600160a01b0381166114de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161082f565b6114e7816118f2565b50565b600a54600160a01b900460ff1661153b5760405162461bcd60e51b815260206004820152601560248201527450726573616c65206973206e6f742061637469766560581b604482015260640161082f565b336000908152600b602052604090205460ff1661159a5760405162461bcd60e51b815260206004820152601960248201527f43616c6c6572206973206e6f742077686974656c697374656400000000000000604482015260640161082f565b60006115a560025490565b336000908152600c6020526040812054919250906115c490600261258f565b9050808311156116165760405162461bcd60e51b815260206004820152601860248201527f546f6f206d616e79206d696e7473207265717565737465640000000000000000604482015260640161082f565b61161e611944565b61162884846124c8565b11156116465760405162461bcd60e51b815260040161082f906124e0565b826008546116549190612531565b34101561169b5760405162461bcd60e51b815260206004820152601560248201527415dc9bdb99c8185b5bdd5b9d081c1c9bdd9a591959605a1b604482015260640161082f565b336000908152600c6020526040812080548592906116ba9084906124c8565b90915550600090505b838110156112af576116d93361117083866124c8565b806116e3816124ad565b9150506116c3565b6005546001600160a01b031633146117155760405162461bcd60e51b815260040161082f9061241c565b600a805460ff60a01b198116600160a01b9182900460ff1615909102179055565b60006001600160e01b031982166380ac58cd60e01b148061176757506001600160e01b03198216635b5e139f60e01b145b8061072f57506301ffc9a760e01b6001600160e01b031983161461072f565b6002546000908210801561072f575060006001600160a01b0316600283815481106117b3576117b3612481565b6000918252602090912001546001600160a01b0316141592915050565b600081815260036020526040902080546001600160a01b0319166001600160a01b038416908117909155819061180582610be1565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6118483382611abc565b6118645760405162461bcd60e51b815260040161082f906125a6565b610994838383611ba2565b600a546001600160a01b03161561099457600a5460405162a1651960e21b81526001600160a01b03858116600483015284811660248301526044820184905290911690630285946490606401600060405180830381600087803b1580156118d557600080fd5b505af11580156118e9573d6000803e3d6000fd5b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000600754611964611956919061258f565b905090565b610bdd828260405180602001604052806000815250611cf8565b61197f3383611abc565b61199b5760405162461bcd60e51b815260040161082f906125a6565b6112af84848484611d2b565b6060600d8054610744906123e1565b6060816119da5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a0457806119ee816124ad565b91506119fd9050600a8361260d565b91506119de565b60008167ffffffffffffffff811115611a1f57611a1f612168565b6040519080825280601f01601f191660200182016040528015611a49576020820181803683370190505b5090505b8415611ab457611a5e60018361258f565b9150611a6b600a86612621565b611a769060306124c8565b60f81b818381518110611a8b57611a8b612481565b60200101906001600160f81b031916908160001a905350611aad600a8661260d565b9450611a4d565b949350505050565b6000611ac782611786565b611b285760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161082f565b6000611b3383610be1565b9050806001600160a01b0316846001600160a01b03161480611b6e5750836001600160a01b0316611b63846107c7565b6001600160a01b0316145b80611ab457506001600160a01b0380821660009081526004602090815260408083209388168352929052205460ff16611ab4565b826001600160a01b0316611bb582610be1565b6001600160a01b031614611c1d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161082f565b6001600160a01b038216611c7f5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161082f565b611c8a6000826117d0565b8160028281548110611c9e57611c9e612481565b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611d028383611d5e565b611d0f6000848484611e86565b6109945760405162461bcd60e51b815260040161082f90612635565b611d36848484611ba2565b611d4284848484611e86565b6112af5760405162461bcd60e51b815260040161082f90612635565b6001600160a01b038216611db45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161082f565b611dbd81611786565b15611e0a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161082f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611f7957604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611eca903390899088908890600401612687565b6020604051808303816000875af1925050508015611f05575060408051601f3d908101601f19168201909252611f02918101906126c4565b60015b611f5f573d808015611f33576040519150601f19603f3d011682016040523d82523d6000602084013e611f38565b606091505b508051611f575760405162461bcd60e51b815260040161082f90612635565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611ab4565b506001949350505050565b828054611f90906123e1565b90600052602060002090601f016020900481019282611fb25760008555611ff8565b82601f10611fcb57805160ff1916838001178555611ff8565b82800160010185558215611ff8579182015b82811115611ff8578251825591602001919060010190611fdd565b50610b9c9291505b80821115610b9c5760008155600101612000565b6001600160e01b0319811681146114e757600080fd5b60006020828403121561203c57600080fd5b813561136b81612014565b60005b8381101561206257818101518382015260200161204a565b838111156112af5750506000910152565b6000815180845261208b816020860160208601612047565b601f01601f19169290920160200192915050565b60208152600061136b6020830184612073565b6000602082840312156120c457600080fd5b5035919050565b80356001600160a01b03811681146120e257600080fd5b919050565b600080604083850312156120fa57600080fd5b612103836120cb565b946020939093013593505050565b60008060006060848603121561212657600080fd5b61212f846120cb565b925061213d602085016120cb565b9150604084013590509250925092565b60006020828403121561215f57600080fd5b61136b826120cb565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561219957612199612168565b604051601f8501601f19908116603f011681019082821181831017156121c1576121c1612168565b816040528093508581528686860111156121da57600080fd5b858560208301376000602087830101525050509392505050565b60006020828403121561220657600080fd5b813567ffffffffffffffff81111561221d57600080fd5b8201601f8101841361222e57600080fd5b611ab48482356020840161217e565b6000806020838503121561225057600080fd5b823567ffffffffffffffff8082111561226857600080fd5b818501915085601f83011261227c57600080fd5b81358181111561228b57600080fd5b8660208260051b85010111156122a057600080fd5b60209290920196919550909350505050565b6020808252825182820181905260009190848201906040850190845b818110156122ea578351835292840192918401916001016122ce565b50909695505050505050565b6000806040838503121561230957600080fd5b612312836120cb565b91506020830135801515811461232757600080fd5b809150509250929050565b6000806000806080858703121561234857600080fd5b612351856120cb565b935061235f602086016120cb565b925060408501359150606085013567ffffffffffffffff81111561238257600080fd5b8501601f8101871361239357600080fd5b6123a28782356020840161217e565b91505092959194509250565b600080604083850312156123c157600080fd5b6123ca836120cb565b91506123d8602084016120cb565b90509250929050565b600181811c908216806123f557607f821691505b6020821081141561241657634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b60006000198214156124c1576124c1612497565b5060010190565b600082198211156124db576124db612497565b500190565b60208082526031908201527f5468652072657175657374656420616d6f756e742065786365656473207468656040820152702072656d61696e696e6720737570706c7960781b606082015260800190565b600081600019048311821515161561254b5761254b612497565b500290565b60008351612562818460208801612047565b835190830190612576818360208801612047565b64173539b7b760d91b9101908152600501949350505050565b6000828210156125a1576125a1612497565b500390565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261261c5761261c6125f7565b500490565b600082612630576126306125f7565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906126ba90830184612073565b9695505050505050565b6000602082840312156126d657600080fd5b815161136b8161201456fea2646970667358221220c7ab0318025d1497043932b99654c854ac5192c7f305e15cff16f4276e4e273064736f6c634300080a0033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001748756d616e73206f6620746865204d65746176657273650000000000000000000000000000000000000000000000000000000000000000000000000000000004484f544d00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Humans of the Metaverse
Arg [1] : _symbol (string): HOTM

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [3] : 48756d616e73206f6620746865204d6574617665727365000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 484f544d00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

34707:5352:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33090:225;;;;;;;;;;-1:-1:-1;33090:225:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;33090:225:0;;;;;;;;27181:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27815:221::-;;;;;;;;;;-1:-1:-1;27815:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;27815:221:0;1528:203:1;35077:76:0;;;;;;;;;;-1:-1:-1;35077:76:0;;;;-1:-1:-1;;;;;35077:76:0;;;38545:124;;;;;;;;;;-1:-1:-1;38545:124:0;;;;;:::i;:::-;;:::i;:::-;;27397:412;;;;;;;;;;-1:-1:-1;27397:412:0;;;;;:::i;:::-;;:::i;34251:110::-;;;;;;;;;;-1:-1:-1;34339:7:0;:14;34251:110;;;2319:25:1;;;2307:2;2292:18;34251:110:0;2173:177:1;39627:193:0;;;;;;;;;;-1:-1:-1;39627:193:0;;;;;:::i;:::-;;:::i;33321:500::-;;;;;;;;;;-1:-1:-1;33321:500:0;;;;;:::i;:::-;;:::i;36419:91::-;;;;;;;;;;;;;:::i;36047:123::-;;;;;;;;;;-1:-1:-1;36047:123:0;;;;;:::i;:::-;-1:-1:-1;;;;;36136:26:0;36112:4;36136:26;;;:16;:26;;;;;;;;;36047:123;37934:114;;;;;;;;;;;;;:::i;28858:185::-;;;;;;;;;;-1:-1:-1;28858:185:0;;;;;:::i;:::-;;:::i;38449:88::-;;;;;;;;;;-1:-1:-1;38449:88:0;;;;;:::i;:::-;;:::i;34367:194::-;;;;;;;;;;-1:-1:-1;34367:194:0;;;;;:::i;:::-;;:::i;35324:56::-;;;;;;;;;;-1:-1:-1;35324:56:0;;;;;:::i;:::-;;;;;;;;;;;;;;39515:104;;;;;;;;;;-1:-1:-1;39515:104:0;;;;;:::i;:::-;;:::i;35204:32::-;;;;;;;;;;-1:-1:-1;35204:32:0;;;;-1:-1:-1;;;35204:32:0;;;;;;35162:35;;;;;;;;;;-1:-1:-1;35162:35:0;;;;-1:-1:-1;;;35162:35:0;;;;;;26936:239;;;;;;;;;;-1:-1:-1;26936:239:0;;;;;:::i;:::-;;:::i;26508:422::-;;;;;;;;;;-1:-1:-1;26508:422:0;;;;;:::i;:::-;;:::i;3578:94::-;;;;;;;;;;;;;:::i;38056:385::-;;;;;;;;;;-1:-1:-1;38056:385:0;;;;;:::i;:::-;;:::i;33827:418::-;;;;;;;;;;-1:-1:-1;33827:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2927:87::-;;;;;;;;;;-1:-1:-1;3000:6:0;;-1:-1:-1;;;;;3000:6:0;2927:87;;27287:104;;;;;;;;;;;;;:::i;36518:609::-;;;;;;:::i;:::-;;:::i;28042:295::-;;;;;;;;;;-1:-1:-1;28042:295:0;;;;;:::i;:::-;;:::i;36178:125::-;;;;;;;;;;-1:-1:-1;36178:125:0;;;;;:::i;:::-;;:::i;39828:228::-;;;;;;;;;;-1:-1:-1;39828:228:0;;;;;:::i;:::-;;:::i;38677:353::-;;;;;;;;;;-1:-1:-1;38677:353:0;;;;;:::i;:::-;;:::i;39061:446::-;;;;;;;;;;-1:-1:-1;39061:446:0;;;;;:::i;:::-;;:::i;28343:164::-;;;;;;;;;;-1:-1:-1;28343:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28464:25:0;;;28440:4;28464:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28343:164;35269:48;;;;;;;;;;-1:-1:-1;35269:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;3827:192;;;;;;;;;;-1:-1:-1;3827:192:0;;;;;:::i;:::-;;:::i;37135:791::-;;;;;;:::i;:::-;;:::i;36311:100::-;;;;;;;;;;;;;:::i;33090:225::-;33193:4;-1:-1:-1;;;;;;33217:50:0;;-1:-1:-1;;;33217:50:0;;:90;;;33271:36;33295:11;33271:23;:36::i;:::-;33210:97;33090:225;-1:-1:-1;;33090:225:0:o;27181:100::-;27235:13;27268:5;27261:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27181:100;:::o;27815:221::-;27891:7;27919:16;27927:7;27919;:16::i;:::-;27911:73;;;;-1:-1:-1;;;27911:73:0;;7237:2:1;27911:73:0;;;7219:21:1;7276:2;7256:18;;;7249:30;7315:34;7295:18;;;7288:62;-1:-1:-1;;;7366:18:1;;;7359:42;7418:19;;27911:73:0;;;;;;;;;-1:-1:-1;28004:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28004:24:0;;27815:221::o;38545:124::-;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;38628:13:::1;:33:::0;38545:124::o;27397:412::-;27478:13;27494:24;27510:7;27494:15;:24::i;:::-;27478:40;;27543:5;-1:-1:-1;;;;;27537:11:0;:2;-1:-1:-1;;;;;27537:11:0;;;27529:57;;;;-1:-1:-1;;;27529:57:0;;8011:2:1;27529:57:0;;;7993:21:1;8050:2;8030:18;;;8023:30;8089:34;8069:18;;;8062:62;-1:-1:-1;;;8140:18:1;;;8133:31;8181:19;;27529:57:0;7809:397:1;27529:57:0;1856:10;-1:-1:-1;;;;;27621:21:0;;;;:62;;-1:-1:-1;27646:37:0;27663:5;1856:10;28343:164;:::i;27646:37::-;27599:168;;;;-1:-1:-1;;;27599:168:0;;8413:2:1;27599:168:0;;;8395:21:1;8452:2;8432:18;;;8425:30;8491:34;8471:18;;;8464:62;8562:26;8542:18;;;8535:54;8606:19;;27599:168:0;8211:420:1;27599:168:0;27780:21;27789:2;27793:7;27780:8;:21::i;:::-;27467:342;27397:412;;:::o;39627:193::-;39722:42;39743:5;39750:3;39755:8;39722:20;:42::i;:::-;39775:37;39791:5;39798:3;39803:8;39775:15;:37::i;33321:500::-;33410:15;33454:24;33472:5;33454:17;:24::i;:::-;33446:5;:32;33438:67;;;;-1:-1:-1;;;33438:67:0;;;;;;;:::i;:::-;33516:10;33542:6;33537:226;33554:7;:14;33550:18;;33537:226;;;33603:7;33611:1;33603:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;33594:19:0;;;33603:10;;33594:19;33590:162;;;33647:5;33638;:14;33634:102;;;33683:1;-1:-1:-1;33676:8:0;;-1:-1:-1;33676:8:0;33634:102;33729:7;;;:::i;:::-;;;33634:102;33570:3;;;:::i;:::-;;;33537:226;;;-1:-1:-1;33773:40:0;;-1:-1:-1;;;33773:40:0;;;;;;;:::i;36419:91::-;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;36490:12:::1;::::0;;-1:-1:-1;;;;36474:28:0;::::1;-1:-1:-1::0;;;36490:12:0;;;::::1;;;36489:13;36474:28:::0;;::::1;;::::0;;36419:91::o;37934:114::-;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;37992:47:::1;::::0;38000:10:::1;::::0;38017:21:::1;37992:47:::0;::::1;;;::::0;::::1;::::0;;;38017:21;38000:10;37992:47;::::1;;;;;;37984:56;;;::::0;::::1;;37934:114::o:0;28858:185::-;28996:39;29013:4;29019:2;29023:7;28996:39;;;;;;;;;;;;:16;:39::i;38449:88::-;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;38514:4:::1;:15:::0;38449:88::o;34367:194::-;34442:7;34478:24;34339:7;:14;;34251:110;34478:24;34470:5;:32;34462:68;;;;-1:-1:-1;;;34462:68:0;;9593:2:1;34462:68:0;;;9575:21:1;9632:2;9612:18;;;9605:30;9671:25;9651:18;;;9644:53;9714:18;;34462:68:0;9391:347:1;34462:68:0;-1:-1:-1;34548:5:0;34367:194::o;39515:104::-;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;39590:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;39515:104:::0;:::o;26936:239::-;27008:7;27028:13;27044:7;27052;27044:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;27044:16:0;;-1:-1:-1;27079:19:0;27071:73;;;;-1:-1:-1;;;27071:73:0;;9945:2:1;27071:73:0;;;9927:21:1;9984:2;9964:18;;;9957:30;10023:34;10003:18;;;9996:62;-1:-1:-1;;;10074:18:1;;;10067:39;10123:19;;27071:73:0;9743:405:1;26508:422:0;26580:7;-1:-1:-1;;;;;26608:19:0;;26600:74;;;;-1:-1:-1;;;26600:74:0;;10355:2:1;26600:74:0;;;10337:21:1;10394:2;10374:18;;;10367:30;10433:34;10413:18;;;10406:62;-1:-1:-1;;;10484:18:1;;;10477:40;10534:19;;26600:74:0;10153:406:1;26600:74:0;26724:7;:14;26685:10;;;26749:127;26770:6;26766:1;:10;26749:127;;;26811:7;26819:1;26811:10;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;26802:19:0;;;26811:10;;26802:19;26798:67;;;26842:7;;;:::i;:::-;;;26798:67;26778:3;;;:::i;:::-;;;26749:127;;;-1:-1:-1;26917:5:0;;26508:422;-1:-1:-1;;;26508:422:0:o;3578:94::-;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;3643:21:::1;3661:1;3643:9;:21::i;38056:385::-:0;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;38146:9:::1;38141:293;38161:21:::0;;::::1;38141:293;;;38237:1;38212:10:::0;;38223:1;38212:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38212:27:0::1;;;38204:67;;;::::0;-1:-1:-1;;;38204:67:0;;10766:2:1;38204:67:0::1;::::0;::::1;10748:21:1::0;10805:2;10785:18;;;10778:30;10844:29;10824:18;;;10817:57;10891:18;;38204:67:0::1;10564:351:1::0;38204:67:0::1;38320:4;38286:16;:31;38303:10;;38314:1;38303:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38286:31:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;38286:31:0;;;:38;;-1:-1:-1;;38286:38:0::1;::::0;::::1;;::::0;;;::::1;::::0;;;38339:21:::1;-1:-1:-1::0;38361:10:0;;38372:1;38361:13;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38339:36:0::1;-1:-1:-1::0;;;;;38339:36:0::1;;;;;;;;;;;;;:40;:83;;38421:1;38339:83;;;38382:21;:36;38404:10;;38415:1;38404:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;38382:36:0::1;-1:-1:-1::0;;;;;38382:36:0::1;;;;;;;;;;;;;38339:83;-1:-1:-1::0;38184:3:0;::::1;::::0;::::1;:::i;:::-;;;;38141:293;;33827:418:::0;33886:16;33927:24;33945:5;33927:17;:24::i;:::-;33923:1;:28;33915:63;;;;-1:-1:-1;;;33915:63:0;;;;;;;:::i;:::-;33989:18;34010:16;34020:5;34010:9;:16::i;:::-;33989:37;;34037:25;34079:10;34065:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34065:25:0;;34037:53;;34106:9;34101:111;34125:10;34121:1;:14;34101:111;;;34171:29;34191:5;34198:1;34171:19;:29::i;:::-;34157:8;34166:1;34157:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;34137:3;;;;:::i;:::-;;;;34101:111;;;-1:-1:-1;34229:8:0;33827:418;-1:-1:-1;;;33827:418:0:o;27287:104::-;27343:13;27376:7;27369:14;;;;;:::i;36518:609::-;36589:12;;-1:-1:-1;;;36589:12:0;;;;36581:43;;;;-1:-1:-1;;;36581:43:0;;11122:2:1;36581:43:0;;;11104:21:1;11161:2;11141:18;;;11134:30;-1:-1:-1;;;11180:18:1;;;11173:48;11238:18;;36581:43:0;10920:342:1;36581:43:0;36657:1;36643:11;:15;36635:61;;;;-1:-1:-1;;;36635:61:0;;11469:2:1;36635:61:0;;;11451:21:1;;;11488:18;;;11481:30;11547:34;11527:18;;;11520:62;11599:18;;36635:61:0;11267:356:1;36635:61:0;36730:13;;36715:11;:28;;36707:74;;;;-1:-1:-1;;;36707:74:0;;11830:2:1;36707:74:0;;;11812:21:1;;;11849:18;;;11842:30;11908:34;11888:18;;;11881:62;11960:18;;36707:74:0;11628:356:1;36707:74:0;36794:19;36816:13;34339:7;:14;;34251:110;36816:13;36794:35;;36879:15;:13;:15::i;:::-;36850:25;36864:11;36850;:25;:::i;:::-;:44;;36842:107;;;;-1:-1:-1;;;36842:107:0;;;;;;;:::i;:::-;36988:11;36981:4;;:18;;;;:::i;:::-;36968:9;:31;;36960:40;;;;;;37018:9;37013:107;37037:11;37033:1;:15;37013:107;;;37070:38;37080:10;37092:15;37106:1;37092:11;:15;:::i;:::-;37070:9;:38::i;:::-;37050:3;;;;:::i;:::-;;;;37013:107;;28042:295;-1:-1:-1;;;;;28145:24:0;;1856:10;28145:24;;28137:62;;;;-1:-1:-1;;;28137:62:0;;12915:2:1;28137:62:0;;;12897:21:1;12954:2;12934:18;;;12927:30;12993:27;12973:18;;;12966:55;13038:18;;28137:62:0;12713:349:1;28137:62:0;1856:10;28212:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28212:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28212:53:0;;;;;;;;;;28281:48;;540:41:1;;;28212:42:0;;1856:10;28281:48;;513:18:1;28281:48:0;;;;;;;28042:295;;:::o;36178:125::-;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;36260:16:::1;:35:::0;;-1:-1:-1;;;;;;36260:35:0::1;-1:-1:-1::0;;;;;36260:35:0;;;::::1;::::0;;;::::1;::::0;;36178:125::o;39828:228::-;39947:53;39972:5;39979:3;39984:8;39994:5;39947:24;:53::i;:::-;40011:37;40027:5;40034:3;40039:8;40011:15;:37::i;:::-;39828:228;;;;:::o;38677:353::-;38753:13;38787:17;38795:8;38787:7;:17::i;:::-;38779:63;;;;-1:-1:-1;;;38779:63:0;;13269:2:1;38779:63:0;;;13251:21:1;13308:2;13288:18;;;13281:30;13347:34;13327:18;;;13320:62;-1:-1:-1;;;13398:18:1;;;13391:31;13439:19;;38779:63:0;13067:397:1;38779:63:0;38853:28;38884:10;:8;:10::i;:::-;38853:41;;38943:1;38918:14;38912:28;:32;:110;;;;;;;;;;;;;;;;;38971:14;38987:19;:8;:17;:19::i;:::-;38954:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38912:110;38905:117;38677:353;-1:-1:-1;;;38677:353:0:o;39061:446::-;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;39143:14:::1;39160:13;34339:7:::0;:14;;34251:110;39160:13:::1;39143:30;;39223:1;39206:14;:18;:68;;;;;39246:28;;39228:14;:46;;39206:68;39184:150;;;::::0;-1:-1:-1;;;39184:150:0;;14313:2:1;39184:150:0::1;::::0;::::1;14295:21:1::0;;;14332:18;;;14325:30;14391:34;14371:18;;;14364:62;14443:18;;39184:150:0::1;14111:356:1::0;39184:150:0::1;39350:9;39345:98;39369:14;39365:1;:18;39345:98;;;39405:26;39415:3:::0;39420:10:::1;39429:1:::0;39420:6;:10:::1;:::i;39405:26::-;39385:3:::0;::::1;::::0;::::1;:::i;:::-;;;;39345:98;;;;39485:14;39453:28;;:46;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;39061:446:0:o;3827:192::-;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;3916:22:0;::::1;3908:73;;;::::0;-1:-1:-1;;;3908:73:0;;14804:2:1;3908:73:0::1;::::0;::::1;14786:21:1::0;14843:2;14823:18;;;14816:30;14882:34;14862:18;;;14855:62;-1:-1:-1;;;14933:18:1;;;14926:36;14979:19;;3908:73:0::1;14602:402:1::0;3908:73:0::1;3992:19;4002:8;3992:9;:19::i;:::-;3827:192:::0;:::o;37135:791::-;37213:15;;-1:-1:-1;;;37213:15:0;;;;37205:49;;;;-1:-1:-1;;;37205:49:0;;15211:2:1;37205:49:0;;;15193:21:1;15250:2;15230:18;;;15223:30;-1:-1:-1;;;15269:18:1;;;15262:51;15330:18;;37205:49:0;15009:345:1;37205:49:0;37290:10;37273:28;;;;:16;:28;;;;;;;;37265:66;;;;-1:-1:-1;;;37265:66:0;;15561:2:1;37265:66:0;;;15543:21:1;15600:2;15580:18;;;15573:30;15639:27;15619:18;;;15612:55;15684:18;;37265:66:0;15359:349:1;37265:66:0;37344:19;37366:13;34339:7;:14;;34251:110;37366:13;37456:10;37390:22;37434:33;;;:21;:33;;;;;;37344:35;;-1:-1:-1;37390:22:0;37415:52;;34932:1;37415:52;:::i;:::-;37390:77;;37503:14;37488:11;:29;;37480:66;;;;-1:-1:-1;;;37480:66:0;;15915:2:1;37480:66:0;;;15897:21:1;15954:2;15934:18;;;15927:30;15993:26;15973:18;;;15966:54;16037:18;;37480:66:0;15713:348:1;37480:66:0;37594:15;:13;:15::i;:::-;37565:25;37579:11;37565;:25;:::i;:::-;:44;;37557:106;;;;-1:-1:-1;;;37557:106:0;;;;;;;:::i;:::-;37702:11;37695:4;;:18;;;;:::i;:::-;37682:9;:31;;37674:66;;;;-1:-1:-1;;;37674:66:0;;16268:2:1;37674:66:0;;;16250:21:1;16307:2;16287:18;;;16280:30;-1:-1:-1;;;16326:18:1;;;16319:51;16387:18;;37674:66:0;16066:345:1;37674:66:0;37775:10;37753:33;;;;:21;:33;;;;;:48;;37790:11;;37753:33;:48;;37790:11;;37753:48;:::i;:::-;;;;-1:-1:-1;37818:9:0;;-1:-1:-1;37814:105:0;37837:11;37833:1;:15;37814:105;;;37869:38;37879:10;37891:15;37905:1;37891:11;:15;:::i;37869:38::-;37850:3;;;;:::i;:::-;;;;37814:105;;36311:100;3000:6;;-1:-1:-1;;;;;3000:6:0;1856:10;3147:23;3139:68;;;;-1:-1:-1;;;3139:68:0;;;;;;;:::i;:::-;36388:15:::1;::::0;;-1:-1:-1;;;;36369:34:0;::::1;-1:-1:-1::0;;;36388:15:0;;;::::1;;;36387:16;36369:34:::0;;::::1;;::::0;;36311:100::o;26209:293::-;26311:4;-1:-1:-1;;;;;;26344:40:0;;-1:-1:-1;;;26344:40:0;;:101;;-1:-1:-1;;;;;;;26397:48:0;;-1:-1:-1;;;26397:48:0;26344:101;:150;;;-1:-1:-1;;;;;;;;;;25671:40:0;;;26458:36;25562:157;29704:155;29803:7;:14;29769:4;;29793:24;;:58;;;;;29849:1;-1:-1:-1;;;;;29821:30:0;:7;29829;29821:16;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;29821:16:0;:30;;29786:65;29704:155;-1:-1:-1;;29704:155:0:o;31877:175::-;31952:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31952:29:0;-1:-1:-1;;;;;31952:29:0;;;;;;;;:24;;32006;31952;32006:15;:24::i;:::-;-1:-1:-1;;;;;31997:47:0;;;;;;;;;;;31877:175;;:::o;28513:339::-;28708:41;1856:10;28741:7;28708:18;:41::i;:::-;28700:103;;;;-1:-1:-1;;;28700:103:0;;;;;;;:::i;:::-;28816:28;28826:4;28832:2;28836:7;28816:9;:28::i;35799:223::-;35894:16;;-1:-1:-1;;;;;35894:16:0;:30;35890:125;;35950:16;;35941:62;;-1:-1:-1;;;35941:62:0;;-1:-1:-1;;;;;17092:15:1;;;35941:62:0;;;17074:34:1;17144:15;;;17124:18;;;17117:43;17176:18;;;17169:34;;;35950:16:0;;;;35941:40;;17009:18:1;;35941:62:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35799:223;;;:::o;4027:173::-;4102:6;;;-1:-1:-1;;;;;4119:17:0;;;-1:-1:-1;;;;;;4119:17:0;;;;;;;4152:40;;4102:6;;;4119:17;4102:6;;4152:40;;4083:16;;4152:40;4072:128;4027:173;:::o;35659:132::-;35715:7;35755:28;;34877:4;35742:41;;;;:::i;:::-;35735:48;;35659:132;:::o;30220:110::-;30296:26;30306:2;30310:7;30296:26;;;;;;;;;;;;:9;:26::i;29049:328::-;29224:41;1856:10;29257:7;29224:18;:41::i;:::-;29216:103;;;;-1:-1:-1;;;29216:103:0;;;;;;;:::i;:::-;29330:39;29344:4;29350:2;29354:7;29363:5;29330:13;:39::i;35552:99::-;35603:13;35636:7;35629:14;;;;;:::i;4460:723::-;4516:13;4737:10;4733:53;;-1:-1:-1;;4764:10:0;;;;;;;;;;;;-1:-1:-1;;;4764:10:0;;;;;4460:723::o;4733:53::-;4811:5;4796:12;4852:78;4859:9;;4852:78;;4885:8;;;;:::i;:::-;;-1:-1:-1;4908:10:0;;-1:-1:-1;4916:2:0;4908:10;;:::i;:::-;;;4852:78;;;4940:19;4972:6;4962:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;4962:17:0;;4940:39;;4990:154;4997:10;;4990:154;;5024:11;5034:1;5024:11;;:::i;:::-;;-1:-1:-1;5093:10:0;5101:2;5093:5;:10;:::i;:::-;5080:24;;:2;:24;:::i;:::-;5067:39;;5050:6;5057;5050:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;5050:56:0;;;;;;;;-1:-1:-1;5121:11:0;5130:2;5121:11;;:::i;:::-;;;4990:154;;;5168:6;4460:723;-1:-1:-1;;;;4460:723:0:o;29865:349::-;29958:4;29983:16;29991:7;29983;:16::i;:::-;29975:73;;;;-1:-1:-1;;;29975:73:0;;17790:2:1;29975:73:0;;;17772:21:1;17829:2;17809:18;;;17802:30;17868:34;17848:18;;;17841:62;-1:-1:-1;;;17919:18:1;;;17912:42;17971:19;;29975:73:0;17588:408:1;29975:73:0;30059:13;30075:24;30091:7;30075:15;:24::i;:::-;30059:40;;30129:5;-1:-1:-1;;;;;30118:16:0;:7;-1:-1:-1;;;;;30118:16:0;;:51;;;;30162:7;-1:-1:-1;;;;;30138:31:0;:20;30150:7;30138:11;:20::i;:::-;-1:-1:-1;;;;;30138:31:0;;30118:51;:87;;;-1:-1:-1;;;;;;28464:25:0;;;28440:4;28464:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30173:32;28343:164;31354:517;31514:4;-1:-1:-1;;;;;31486:32:0;:24;31502:7;31486:15;:24::i;:::-;-1:-1:-1;;;;;31486:32:0;;31478:86;;;;-1:-1:-1;;;31478:86:0;;18203:2:1;31478:86:0;;;18185:21:1;18242:2;18222:18;;;18215:30;18281:34;18261:18;;;18254:62;-1:-1:-1;;;18332:18:1;;;18325:39;18381:19;;31478:86:0;18001:405:1;31478:86:0;-1:-1:-1;;;;;31583:16:0;;31575:65;;;;-1:-1:-1;;;31575:65:0;;18613:2:1;31575:65:0;;;18595:21:1;18652:2;18632:18;;;18625:30;18691:34;18671:18;;;18664:62;-1:-1:-1;;;18742:18:1;;;18735:34;18786:19;;31575:65:0;18411:400:1;31575:65:0;31757:29;31774:1;31778:7;31757:8;:29::i;:::-;31816:2;31797:7;31805;31797:16;;;;;;;;:::i;:::-;;;;;;;;;:21;;-1:-1:-1;;;;;;31797:21:0;-1:-1:-1;;;;;31797:21:0;;;;;;31836:27;;31855:7;;31836:27;;;;;;;;;;31797:16;31836:27;31354:517;;;:::o;30336:321::-;30466:18;30472:2;30476:7;30466:5;:18::i;:::-;30517:54;30548:1;30552:2;30556:7;30565:5;30517:22;:54::i;:::-;30495:154;;;;-1:-1:-1;;;30495:154:0;;;;;;;:::i;29383:315::-;29540:28;29550:4;29556:2;29560:7;29540:9;:28::i;:::-;29587:48;29610:4;29616:2;29620:7;29629:5;29587:22;:48::i;:::-;29579:111;;;;-1:-1:-1;;;29579:111:0;;;;;;;:::i;30663:346::-;-1:-1:-1;;;;;30743:16:0;;30735:61;;;;-1:-1:-1;;;30735:61:0;;19437:2:1;30735:61:0;;;19419:21:1;;;19456:18;;;19449:30;19515:34;19495:18;;;19488:62;19567:18;;30735:61:0;19235:356:1;30735:61:0;30816:16;30824:7;30816;:16::i;:::-;30815:17;30807:58;;;;-1:-1:-1;;;30807:58:0;;19798:2:1;30807:58:0;;;19780:21:1;19837:2;19817:18;;;19810:30;19876;19856:18;;;19849:58;19924:18;;30807:58:0;19596:352:1;30807:58:0;30934:7;:16;;;;;;;-1:-1:-1;30934:16:0;;;;;;;-1:-1:-1;;;;;;30934:16:0;-1:-1:-1;;;;;30934:16:0;;;;;;;;30968:33;;30993:7;;-1:-1:-1;30968:33:0;;-1:-1:-1;;30968:33:0;30663:346;;:::o;32058:799::-;32213:4;-1:-1:-1;;;;;32234:13:0;;17827:20;17875:8;32230:620;;32270:72;;-1:-1:-1;;;32270:72:0;;-1:-1:-1;;;;;32270:36:0;;;;;:72;;1856:10;;32321:4;;32327:7;;32336:5;;32270:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32270:72:0;;;;;;;;-1:-1:-1;;32270:72:0;;;;;;;;;;;;:::i;:::-;;;32266:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32512:13:0;;32508:272;;32555:60;;-1:-1:-1;;;32555:60:0;;;;;;;:::i;32508:272::-;32730:6;32724:13;32715:6;32711:2;32707:15;32700:38;32266:529;-1:-1:-1;;;;;;32393:51:0;-1:-1:-1;;;32393:51:0;;-1:-1:-1;32386:58:0;;32230:620;-1:-1:-1;32834:4:0;32058:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:173::-;1804:20;;-1:-1:-1;;;;;1853:31:1;;1843:42;;1833:70;;1899:1;1896;1889:12;1833:70;1736:173;;;:::o;1914:254::-;1982:6;1990;2043:2;2031:9;2022:7;2018:23;2014:32;2011:52;;;2059:1;2056;2049:12;2011:52;2082:29;2101:9;2082:29;:::i;:::-;2072:39;2158:2;2143:18;;;;2130:32;;-1:-1:-1;;;1914:254:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2688:186::-;2747:6;2800:2;2788:9;2779:7;2775:23;2771:32;2768:52;;;2816:1;2813;2806:12;2768:52;2839:29;2858:9;2839:29;:::i;2879:127::-;2940:10;2935:3;2931:20;2928:1;2921:31;2971:4;2968:1;2961:15;2995:4;2992:1;2985:15;3011:632;3076:5;3106:18;3147:2;3139:6;3136:14;3133:40;;;3153:18;;:::i;:::-;3228:2;3222:9;3196:2;3282:15;;-1:-1:-1;;3278:24:1;;;3304:2;3274:33;3270:42;3258:55;;;3328:18;;;3348:22;;;3325:46;3322:72;;;3374:18;;:::i;:::-;3414:10;3410:2;3403:22;3443:6;3434:15;;3473:6;3465;3458:22;3513:3;3504:6;3499:3;3495:16;3492:25;3489:45;;;3530:1;3527;3520:12;3489:45;3580:6;3575:3;3568:4;3560:6;3556:17;3543:44;3635:1;3628:4;3619:6;3611;3607:19;3603:30;3596:41;;;;3011:632;;;;;:::o;3648:451::-;3717:6;3770:2;3758:9;3749:7;3745:23;3741:32;3738:52;;;3786:1;3783;3776:12;3738:52;3826:9;3813:23;3859:18;3851:6;3848:30;3845:50;;;3891:1;3888;3881:12;3845:50;3914:22;;3967:4;3959:13;;3955:27;-1:-1:-1;3945:55:1;;3996:1;3993;3986:12;3945:55;4019:74;4085:7;4080:2;4067:16;4062:2;4058;4054:11;4019:74;:::i;4104:615::-;4190:6;4198;4251:2;4239:9;4230:7;4226:23;4222:32;4219:52;;;4267:1;4264;4257:12;4219:52;4307:9;4294:23;4336:18;4377:2;4369:6;4366:14;4363:34;;;4393:1;4390;4383:12;4363:34;4431:6;4420:9;4416:22;4406:32;;4476:7;4469:4;4465:2;4461:13;4457:27;4447:55;;4498:1;4495;4488:12;4447:55;4538:2;4525:16;4564:2;4556:6;4553:14;4550:34;;;4580:1;4577;4570:12;4550:34;4633:7;4628:2;4618:6;4615:1;4611:14;4607:2;4603:23;4599:32;4596:45;4593:65;;;4654:1;4651;4644:12;4593:65;4685:2;4677:11;;;;;4707:6;;-1:-1:-1;4104:615:1;;-1:-1:-1;;;;4104:615:1:o;4724:632::-;4895:2;4947:21;;;5017:13;;4920:18;;;5039:22;;;4866:4;;4895:2;5118:15;;;;5092:2;5077:18;;;4866:4;5161:169;5175:6;5172:1;5169:13;5161:169;;;5236:13;;5224:26;;5305:15;;;;5270:12;;;;5197:1;5190:9;5161:169;;;-1:-1:-1;5347:3:1;;4724:632;-1:-1:-1;;;;;;4724:632:1:o;5361:347::-;5426:6;5434;5487:2;5475:9;5466:7;5462:23;5458:32;5455:52;;;5503:1;5500;5493:12;5455:52;5526:29;5545:9;5526:29;:::i;:::-;5516:39;;5605:2;5594:9;5590:18;5577:32;5652:5;5645:13;5638:21;5631:5;5628:32;5618:60;;5674:1;5671;5664:12;5618:60;5697:5;5687:15;;;5361:347;;;;;:::o;5713:667::-;5808:6;5816;5824;5832;5885:3;5873:9;5864:7;5860:23;5856:33;5853:53;;;5902:1;5899;5892:12;5853:53;5925:29;5944:9;5925:29;:::i;:::-;5915:39;;5973:38;6007:2;5996:9;5992:18;5973:38;:::i;:::-;5963:48;;6058:2;6047:9;6043:18;6030:32;6020:42;;6113:2;6102:9;6098:18;6085:32;6140:18;6132:6;6129:30;6126:50;;;6172:1;6169;6162:12;6126:50;6195:22;;6248:4;6240:13;;6236:27;-1:-1:-1;6226:55:1;;6277:1;6274;6267:12;6226:55;6300:74;6366:7;6361:2;6348:16;6343:2;6339;6335:11;6300:74;:::i;:::-;6290:84;;;5713:667;;;;;;;:::o;6385:260::-;6453:6;6461;6514:2;6502:9;6493:7;6489:23;6485:32;6482:52;;;6530:1;6527;6520:12;6482:52;6553:29;6572:9;6553:29;:::i;:::-;6543:39;;6601:38;6635:2;6624:9;6620:18;6601:38;:::i;:::-;6591:48;;6385:260;;;;;:::o;6650:380::-;6729:1;6725:12;;;;6772;;;6793:61;;6847:4;6839:6;6835:17;6825:27;;6793:61;6900:2;6892:6;6889:14;6869:18;6866:38;6863:161;;;6946:10;6941:3;6937:20;6934:1;6927:31;6981:4;6978:1;6971:15;7009:4;7006:1;6999:15;6863:161;;6650:380;;;:::o;7448:356::-;7650:2;7632:21;;;7669:18;;;7662:30;7728:34;7723:2;7708:18;;7701:62;7795:2;7780:18;;7448:356::o;8636:346::-;8838:2;8820:21;;;8877:2;8857:18;;;8850:30;-1:-1:-1;;;8911:2:1;8896:18;;8889:52;8973:2;8958:18;;8636:346::o;8987:127::-;9048:10;9043:3;9039:20;9036:1;9029:31;9079:4;9076:1;9069:15;9103:4;9100:1;9093:15;9119:127;9180:10;9175:3;9171:20;9168:1;9161:31;9211:4;9208:1;9201:15;9235:4;9232:1;9225:15;9251:135;9290:3;-1:-1:-1;;9311:17:1;;9308:43;;;9331:18;;:::i;:::-;-1:-1:-1;9378:1:1;9367:13;;9251:135::o;11989:128::-;12029:3;12060:1;12056:6;12053:1;12050:13;12047:39;;;12066:18;;:::i;:::-;-1:-1:-1;12102:9:1;;11989:128::o;12122:413::-;12324:2;12306:21;;;12363:2;12343:18;;;12336:30;12402:34;12397:2;12382:18;;12375:62;-1:-1:-1;;;12468:2:1;12453:18;;12446:47;12525:3;12510:19;;12122:413::o;12540:168::-;12580:7;12646:1;12642;12638:6;12634:14;12631:1;12628:21;12623:1;12616:9;12609:17;12605:45;12602:71;;;12653:18;;:::i;:::-;-1:-1:-1;12693:9:1;;12540:168::o;13469:637::-;13749:3;13787:6;13781:13;13803:53;13849:6;13844:3;13837:4;13829:6;13825:17;13803:53;:::i;:::-;13919:13;;13878:16;;;;13941:57;13919:13;13878:16;13975:4;13963:17;;13941:57;:::i;:::-;-1:-1:-1;;;14020:20:1;;14049:22;;;14098:1;14087:13;;13469:637;-1:-1:-1;;;;13469:637:1:o;14472:125::-;14512:4;14540:1;14537;14534:8;14531:34;;;14545:18;;:::i;:::-;-1:-1:-1;14582:9:1;;14472:125::o;16416:413::-;16618:2;16600:21;;;16657:2;16637:18;;;16630:30;16696:34;16691:2;16676:18;;16669:62;-1:-1:-1;;;16762:2:1;16747:18;;16740:47;16819:3;16804:19;;16416:413::o;17214:127::-;17275:10;17270:3;17266:20;17263:1;17256:31;17306:4;17303:1;17296:15;17330:4;17327:1;17320:15;17346:120;17386:1;17412;17402:35;;17417:18;;:::i;:::-;-1:-1:-1;17451:9:1;;17346:120::o;17471:112::-;17503:1;17529;17519:35;;17534:18;;:::i;:::-;-1:-1:-1;17568:9:1;;17471:112::o;18816:414::-;19018:2;19000:21;;;19057:2;19037:18;;;19030:30;19096:34;19091:2;19076:18;;19069:62;-1:-1:-1;;;19162:2:1;19147:18;;19140:48;19220:3;19205:19;;18816:414::o;19953:489::-;-1:-1:-1;;;;;20222:15:1;;;20204:34;;20274:15;;20269:2;20254:18;;20247:43;20321:2;20306:18;;20299:34;;;20369:3;20364:2;20349:18;;20342:31;;;20147:4;;20390:46;;20416:19;;20408:6;20390:46;:::i;:::-;20382:54;19953:489;-1:-1:-1;;;;;;19953:489:1:o;20447:249::-;20516:6;20569:2;20557:9;20548:7;20544:23;20540:32;20537:52;;;20585:1;20582;20575:12;20537:52;20617:9;20611:16;20636:30;20660:5;20636:30;:::i

Swarm Source

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