ETH Price: $3,274.08 (-4.15%)
Gas: 10 Gwei

Token

Heavy Metal Heads (HMH)
 

Overview

Max Total Supply

141 HMH

Holders

78

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
naturalbornliquidity.eth
Balance
1 HMH
0x304A97c9A85C92C93Ca24e0A85B69f892B67355E
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
MetalHeads

Compiler Version
v0.8.6+commit.11564f7e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: contracts/MetalHeads.sol

// SPDX-LICENSE-IDENTIFIER: MIT

// File: contracts/MetalHeads.sol

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


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

pragma solidity 0.8.6;


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

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

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

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

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

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

// File @BulkAirdrops.sol




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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/MetalHeads.sol

//SPDX-License-Identifier: MIT

pragma solidity >=0.7.0 <0.9.0;



contract MetalHeads is ERC721Enumerable, Ownable {
  using Strings for uint256;
   
  string public baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.07 ether;
  uint256 public maxSupply = 250;
  uint256 public maxMintAmount = 3;
  uint256 public nftPerAddressLimit = 3;
  bool public paused = true;
  bool public revealed = true;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) public addressMintedBalance;

  constructor(
    string memory,
    string memory,
    string memory _initBaseURI
  ) ERC721("Heavy Metal Heads", "HMH") {
    setBaseURI(_initBaseURI);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(_mintAmount <= maxMintAmount, "max mint amount per session exceeded");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }


   function bulkAirdropERC721(IERC721 _token, address[] calldata _to, uint256[] calldata _id) public onlyOwner {
   require(_to.length == _id.length, "Receivers and IDs are different length");
   for (uint256 i = 0; i < _to.length; i++) {
      _token.safeTransferFrom(msg.sender, _to[i], _id[i]);
    }
  }

  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
  
  function withdraw() public payable onlyOwner {
    
    //This function sends 5% of the overall mint directly to an address that will be used to 
    //acquire @puzlwrld land to create a venue (casino, club) that deals IN ETH,
    //and will be maintained by the whole community.
    // And also 20 puzl punks distributed to the first 20 holders.
    (bool hs, ) = payable(0x943590A42C27D08e3744202c4Ae5eD55c2dE240D).call{value: address(this).balance * 5 / 100}("");
    require(hs);

    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"","type":"string"},{"internalType":"string","name":"_initBaseURI","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":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"_token","type":"address"},{"internalType":"address[]","name":"_to","type":"address[]"},{"internalType":"uint256[]","name":"_id","type":"uint256[]"}],"name":"bulkAirdropERC721","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","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":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001f9565b5066f8b0a10e470000600d5560fa600e556003600f8190556010556011805462ffffff1916620101011790553480156200006157600080fd5b5060405162002db038038062002db0833981016040819052620000849162000356565b60408051808201825260118152704865617679204d6574616c20486561647360781b6020808301918252835180850190945260038452620909a960eb1b908401528151919291620000d891600091620001f9565b508051620000ee906001906020840190620001f9565b5050506200010b620001056200011f60201b60201c565b62000123565b620001168162000175565b5050506200043a565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200017f62000198565b80516200019490600b906020840190620001f9565b5050565b600a546001600160a01b03163314620001f75760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b565b8280546200020790620003e7565b90600052602060002090601f0160209004810192826200022b576000855562000276565b82601f106200024657805160ff191683800117855562000276565b8280016001018555821562000276579182015b828111156200027657825182559160200191906001019062000259565b506200028492915062000288565b5090565b5b8082111562000284576000815560010162000289565b600082601f830112620002b157600080fd5b81516001600160401b0380821115620002ce57620002ce62000424565b604051601f8301601f19908116603f01168101908282118183101715620002f957620002f962000424565b816040528381526020925086838588010111156200031657600080fd5b600091505b838210156200033a57858201830151818301840152908201906200031b565b838211156200034c5760008385830101525b9695505050505050565b6000806000606084860312156200036c57600080fd5b83516001600160401b03808211156200038457600080fd5b62000392878388016200029f565b94506020860151915080821115620003a957600080fd5b620003b7878388016200029f565b93506040860151915080821115620003ce57600080fd5b50620003dd868287016200029f565b9150509250925092565b600181811c90821680620003fc57607f821691505b602082108114156200041e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612966806200044a6000396000f3fe6080604052600436106102675760003560e01c80636c0360eb11610144578063ba4e5c49116100b6578063d0eb26b01161007a578063d0eb26b0146106f7578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2fde38b146107b657600080fd5b8063ba4e5c491461066c578063ba7d2c761461068c578063c6682862146106a2578063c87b56dd146106b7578063cdb970d3146106d757600080fd5b806395d89b411161010857806395d89b41146105cf5780639c70b512146105e4578063a0712d6814610604578063a22cb46514610617578063a475b5dd14610637578063b88d4fde1461064c57600080fd5b80636c0360eb1461054757806370a082311461055c578063715018a61461057c5780637f00c7a6146105915780638da5cb5b146105b157600080fd5b80633af32abf116101dd57806344a0d68a116101a157806344a0d68a1461048e5780634f6ccce7146104ae57806351830227146104ce57806355f804b3146104ed5780635c975abb1461050d5780636352211e1461052757600080fd5b80633af32abf146103f95780633c952764146104195780633ccfd60b1461043957806342842e0e14610441578063438b63001461046157600080fd5b806313faede61161022f57806313faede61461033d57806318160ddd1461036157806318cae26914610376578063239c70ae146103a357806323b872dd146103b95780632f745c59146103d957600080fd5b806301ffc9a71461026c57806302329a29146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c61028736600461245c565b6107d6565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612441565b610801565b005b3480156102cf57600080fd5b506102d861081c565b60405161029891906126ec565b3480156102f157600080fd5b50610305610300366004612562565b6108ae565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046123d3565b6108d5565b34801561034957600080fd5b50610353600d5481565b604051908152602001610298565b34801561036d57600080fd5b50600854610353565b34801561038257600080fd5b50610353610391366004612287565b60136020526000908152604090205481565b3480156103af57600080fd5b50610353600f5481565b3480156103c557600080fd5b506102c16103d43660046122dd565b6109f0565b3480156103e557600080fd5b506103536103f43660046123d3565b610a21565b34801561040557600080fd5b5061028c610414366004612287565b610ab7565b34801561042557600080fd5b506102c1610434366004612441565b610b21565b6102c1610b45565b34801561044d57600080fd5b506102c161045c3660046122dd565b610c3f565b34801561046d57600080fd5b5061048161047c366004612287565b610c5a565b60405161029891906126a8565b34801561049a57600080fd5b506102c16104a9366004612562565b610cfc565b3480156104ba57600080fd5b506103536104c9366004612562565b610d09565b3480156104da57600080fd5b5060115461028c90610100900460ff1681565b3480156104f957600080fd5b506102c1610508366004612519565b610d9c565b34801561051957600080fd5b5060115461028c9060ff1681565b34801561053357600080fd5b50610305610542366004612562565b610db7565b34801561055357600080fd5b506102d8610e17565b34801561056857600080fd5b50610353610577366004612287565b610ea5565b34801561058857600080fd5b506102c1610f2b565b34801561059d57600080fd5b506102c16105ac366004612562565b610f3f565b3480156105bd57600080fd5b50600a546001600160a01b0316610305565b3480156105db57600080fd5b506102d8610f4c565b3480156105f057600080fd5b5060115461028c9062010000900460ff1681565b6102c1610612366004612562565b610f5b565b34801561062357600080fd5b506102c161063236600461239e565b611242565b34801561064357600080fd5b506102c161124d565b34801561065857600080fd5b506102c161066736600461231e565b611266565b34801561067857600080fd5b50610305610687366004612562565b61129e565b34801561069857600080fd5b5061035360105481565b3480156106ae57600080fd5b506102d86112c8565b3480156106c357600080fd5b506102d86106d2366004612562565b6112d5565b3480156106e357600080fd5b506102c16106f2366004612496565b6113b3565b34801561070357600080fd5b506102c1610712366004612562565b6114f7565b34801561072357600080fd5b50610353600e5481565b34801561073957600080fd5b506102c1610748366004612519565b611504565b34801561075957600080fd5b5061028c6107683660046122a4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102c16107b13660046123ff565b61151f565b3480156107c257600080fd5b506102c16107d1366004612287565b61153f565b60006001600160e01b0319821663780e9d6360e01b14806107fb57506107fb826115b8565b92915050565b610809611608565b6011805460ff1916911515919091179055565b60606000805461082b9061282d565b80601f01602080910402602001604051908101604052809291908181526020018280546108579061282d565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108b982611662565b506000908152600460205260409020546001600160a01b031690565b60006108e082610db7565b9050806001600160a01b0316836001600160a01b031614156109535760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061096f575061096f8133610768565b6109e15760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161094a565b6109eb83836116c1565b505050565b6109fa338261172f565b610a165760405162461bcd60e51b815260040161094a90612751565b6109eb8383836117ae565b6000610a2c83610ea5565b8210610a8e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601254811015610b1857826001600160a01b031660128281548110610ae257610ae26128d9565b6000918252602090912001546001600160a01b03161415610b065750600192915050565b80610b1081612868565b915050610abb565b50600092915050565b610b29611608565b60118054911515620100000262ff000019909216919091179055565b610b4d611608565b600073943590a42c27d08e3744202c4ae5ed55c2de240d6064610b714760056127cb565b610b7b91906127b7565b604051600081818185875af1925050503d8060008114610bb7576040519150601f19603f3d011682016040523d82523d6000602084013e610bbc565b606091505b5050905080610bca57600080fd5b6000610bde600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c2d565b606091505b5050905080610c3b57600080fd5b5050565b6109eb83838360405180602001604052806000815250611266565b60606000610c6783610ea5565b905060008167ffffffffffffffff811115610c8457610c846128ef565b604051908082528060200260200182016040528015610cad578160200160208202803683370190505b50905060005b82811015610cf457610cc58582610a21565b828281518110610cd757610cd76128d9565b602090810291909101015280610cec81612868565b915050610cb3565b509392505050565b610d04611608565b600d55565b6000610d1460085490565b8210610d775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094a565b60088281548110610d8a57610d8a6128d9565b90600052602060002001549050919050565b610da4611608565b8051610c3b90600b9060208401906120a6565b6000818152600260205260408120546001600160a01b0316806107fb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161094a565b600b8054610e249061282d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e509061282d565b8015610e9d5780601f10610e7257610100808354040283529160200191610e9d565b820191906000526020600020905b815481529060010190602001808311610e8057829003601f168201915b505050505081565b60006001600160a01b038216610f0f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161094a565b506001600160a01b031660009081526003602052604090205490565b610f33611608565b610f3d6000611955565b565b610f47611608565b600f55565b60606001805461082b9061282d565b60115460ff1615610fa75760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161094a565b6000610fb260085490565b9050600082116110045760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161094a565b600f548211156110625760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161094a565b600e5461106f838361279f565b11156110b65760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161094a565b600a546001600160a01b031633146111f25760115462010000900460ff161515600114156111a0576110e733610ab7565b6111335760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161094a565b33600090815260136020526040902054601054611150848361279f565b111561119e5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161094a565b505b81600d546111ae91906127cb565b3410156111f25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161094a565b60015b8281116109eb5733600090815260136020526040812080549161121783612868565b9091555061123090503361122b838561279f565b6119a7565b8061123a81612868565b9150506111f5565b610c3b3383836119c1565b611255611608565b6011805461ff001916610100179055565b611270338361172f565b61128c5760405162461bcd60e51b815260040161094a90612751565b61129884848484611a90565b50505050565b601281815481106112ae57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610e249061282d565b6000818152600260205260409020546060906001600160a01b03166113545760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094a565b600061135e611ac3565b9050600081511161137e57604051806020016040528060008152506113ac565b8061138884611ad2565b600c60405160200161139c939291906125a7565b6040516020818303038152906040525b9392505050565b6113bb611608565b8281146114195760405162461bcd60e51b815260206004820152602660248201527f52656365697665727320616e64204944732061726520646966666572656e74206044820152650d8cadccee8d60d31b606482015260840161094a565b60005b838110156114ef57856001600160a01b03166342842e0e33878785818110611446576114466128d9565b905060200201602081019061145b9190612287565b86868681811061146d5761146d6128d9565b6040516001600160e01b031960e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b1580156114c457600080fd5b505af11580156114d8573d6000803e3d6000fd5b5050505080806114e790612868565b91505061141c565b505050505050565b6114ff611608565b601055565b61150c611608565b8051610c3b90600c9060208401906120a6565b611527611608565b6115336012600061212a565b6109eb60128383612148565b611547611608565b6001600160a01b0381166115ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094a565b6115b581611955565b50565b60006001600160e01b031982166380ac58cd60e01b14806115e957506001600160e01b03198216635b5e139f60e01b145b806107fb57506301ffc9a760e01b6001600160e01b03198316146107fb565b600a546001600160a01b03163314610f3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094a565b6000818152600260205260409020546001600160a01b03166115b55760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161094a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116f682610db7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061173b83610db7565b9050806001600160a01b0316846001600160a01b0316148061178257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117a65750836001600160a01b031661179b846108ae565b6001600160a01b0316145b949350505050565b826001600160a01b03166117c182610db7565b6001600160a01b0316146118255760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161094a565b6001600160a01b0382166118875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094a565b611892838383611bd0565b61189d6000826116c1565b6001600160a01b03831660009081526003602052604081208054600192906118c69084906127ea565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f490849061279f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c3b828260405180602001604052806000815250611c88565b816001600160a01b0316836001600160a01b03161415611a235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a9b8484846117ae565b611aa784848484611cbb565b6112985760405162461bcd60e51b815260040161094a906126ff565b6060600b805461082b9061282d565b606081611af65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b205780611b0a81612868565b9150611b199050600a836127b7565b9150611afa565b60008167ffffffffffffffff811115611b3b57611b3b6128ef565b6040519080825280601f01601f191660200182016040528015611b65576020820181803683370190505b5090505b84156117a657611b7a6001836127ea565b9150611b87600a86612883565b611b9290603061279f565b60f81b818381518110611ba757611ba76128d9565b60200101906001600160f81b031916908160001a905350611bc9600a866127b7565b9450611b69565b6001600160a01b038316611c2b57611c2681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c4e565b816001600160a01b0316836001600160a01b031614611c4e57611c4e8382611dc8565b6001600160a01b038216611c65576109eb81611e65565b826001600160a01b0316826001600160a01b0316146109eb576109eb8282611f14565b611c928383611f58565b611c9f6000848484611cbb565b6109eb5760405162461bcd60e51b815260040161094a906126ff565b60006001600160a01b0384163b15611dbd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cff90339089908890889060040161266b565b602060405180830381600087803b158015611d1957600080fd5b505af1925050508015611d49575060408051601f3d908101601f19168201909252611d4691810190612479565b60015b611da3573d808015611d77576040519150601f19603f3d011682016040523d82523d6000602084013e611d7c565b606091505b508051611d9b5760405162461bcd60e51b815260040161094a906126ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a6565b506001949350505050565b60006001611dd584610ea5565b611ddf91906127ea565b600083815260076020526040902054909150808214611e32576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e77906001906127ea565b60008381526009602052604081205460088054939450909284908110611e9f57611e9f6128d9565b906000526020600020015490508060088381548110611ec057611ec06128d9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ef857611ef86128c3565b6001900381819060005260206000200160009055905550505050565b6000611f1f83610ea5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094a565b6000818152600260205260409020546001600160a01b0316156120135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094a565b61201f60008383611bd0565b6001600160a01b038216600090815260036020526040812080546001929061204890849061279f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120b29061282d565b90600052602060002090601f0160209004810192826120d4576000855561211a565b82601f106120ed57805160ff191683800117855561211a565b8280016001018555821561211a579182015b8281111561211a5782518255916020019190600101906120ff565b5061212692915061219b565b5090565b50805460008255906000526020600020908101906115b5919061219b565b82805482825590600052602060002090810192821561211a579160200282015b8281111561211a5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612168565b5b80821115612126576000815560010161219c565b600067ffffffffffffffff808411156121cb576121cb6128ef565b604051601f8501601f19908116603f011681019082821181831017156121f3576121f36128ef565b8160405280935085815286868601111561220c57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261223857600080fd5b50813567ffffffffffffffff81111561225057600080fd5b6020830191508360208260051b850101111561226b57600080fd5b9250929050565b8035801515811461228257600080fd5b919050565b60006020828403121561229957600080fd5b81356113ac81612905565b600080604083850312156122b757600080fd5b82356122c281612905565b915060208301356122d281612905565b809150509250929050565b6000806000606084860312156122f257600080fd5b83356122fd81612905565b9250602084013561230d81612905565b929592945050506040919091013590565b6000806000806080858703121561233457600080fd5b843561233f81612905565b9350602085013561234f81612905565b925060408501359150606085013567ffffffffffffffff81111561237257600080fd5b8501601f8101871361238357600080fd5b612392878235602084016121b0565b91505092959194509250565b600080604083850312156123b157600080fd5b82356123bc81612905565b91506123ca60208401612272565b90509250929050565b600080604083850312156123e657600080fd5b82356123f181612905565b946020939093013593505050565b6000806020838503121561241257600080fd5b823567ffffffffffffffff81111561242957600080fd5b61243585828601612226565b90969095509350505050565b60006020828403121561245357600080fd5b6113ac82612272565b60006020828403121561246e57600080fd5b81356113ac8161291a565b60006020828403121561248b57600080fd5b81516113ac8161291a565b6000806000806000606086880312156124ae57600080fd5b85356124b981612905565b9450602086013567ffffffffffffffff808211156124d657600080fd5b6124e289838a01612226565b909650945060408801359150808211156124fb57600080fd5b5061250888828901612226565b969995985093965092949392505050565b60006020828403121561252b57600080fd5b813567ffffffffffffffff81111561254257600080fd5b8201601f8101841361255357600080fd5b6117a6848235602084016121b0565b60006020828403121561257457600080fd5b5035919050565b60008151808452612593816020860160208601612801565b601f01601f19169290920160200192915050565b6000845160206125ba8285838a01612801565b8551918401916125cd8184848a01612801565b8554920191600090600181811c90808316806125ea57607f831692505b85831081141561260857634e487b7160e01b85526022600452602485fd5b80801561261c576001811461262d5761265a565b60ff1985168852838801955061265a565b60008b81526020902060005b858110156126525781548a820152908401908801612639565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061269e9083018461257b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126e0578351835292840192918401916001016126c4565b50909695505050505050565b6020815260006113ac602083018461257b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156127b2576127b2612897565b500190565b6000826127c6576127c66128ad565b500490565b60008160001904831182151516156127e5576127e5612897565b500290565b6000828210156127fc576127fc612897565b500390565b60005b8381101561281c578181015183820152602001612804565b838111156112985750506000910152565b600181811c9082168061284157607f821691505b6020821081141561286257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287c5761287c612897565b5060010190565b600082612892576128926128ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146115b557600080fd5b6001600160e01b0319811681146115b557600080fdfea2646970667358221220a379039297a97752c366858e14d34f2db965b5ea83eef76c08ad4cda7504531964736f6c634300080600330000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636c0360eb11610144578063ba4e5c49116100b6578063d0eb26b01161007a578063d0eb26b0146106f7578063d5abeb0114610717578063da3ef23f1461072d578063e985e9c51461074d578063edec5f2714610796578063f2fde38b146107b657600080fd5b8063ba4e5c491461066c578063ba7d2c761461068c578063c6682862146106a2578063c87b56dd146106b7578063cdb970d3146106d757600080fd5b806395d89b411161010857806395d89b41146105cf5780639c70b512146105e4578063a0712d6814610604578063a22cb46514610617578063a475b5dd14610637578063b88d4fde1461064c57600080fd5b80636c0360eb1461054757806370a082311461055c578063715018a61461057c5780637f00c7a6146105915780638da5cb5b146105b157600080fd5b80633af32abf116101dd57806344a0d68a116101a157806344a0d68a1461048e5780634f6ccce7146104ae57806351830227146104ce57806355f804b3146104ed5780635c975abb1461050d5780636352211e1461052757600080fd5b80633af32abf146103f95780633c952764146104195780633ccfd60b1461043957806342842e0e14610441578063438b63001461046157600080fd5b806313faede61161022f57806313faede61461033d57806318160ddd1461036157806318cae26914610376578063239c70ae146103a357806323b872dd146103b95780632f745c59146103d957600080fd5b806301ffc9a71461026c57806302329a29146102a157806306fdde03146102c3578063081812fc146102e5578063095ea7b31461031d575b600080fd5b34801561027857600080fd5b5061028c61028736600461245c565b6107d6565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102c16102bc366004612441565b610801565b005b3480156102cf57600080fd5b506102d861081c565b60405161029891906126ec565b3480156102f157600080fd5b50610305610300366004612562565b6108ae565b6040516001600160a01b039091168152602001610298565b34801561032957600080fd5b506102c16103383660046123d3565b6108d5565b34801561034957600080fd5b50610353600d5481565b604051908152602001610298565b34801561036d57600080fd5b50600854610353565b34801561038257600080fd5b50610353610391366004612287565b60136020526000908152604090205481565b3480156103af57600080fd5b50610353600f5481565b3480156103c557600080fd5b506102c16103d43660046122dd565b6109f0565b3480156103e557600080fd5b506103536103f43660046123d3565b610a21565b34801561040557600080fd5b5061028c610414366004612287565b610ab7565b34801561042557600080fd5b506102c1610434366004612441565b610b21565b6102c1610b45565b34801561044d57600080fd5b506102c161045c3660046122dd565b610c3f565b34801561046d57600080fd5b5061048161047c366004612287565b610c5a565b60405161029891906126a8565b34801561049a57600080fd5b506102c16104a9366004612562565b610cfc565b3480156104ba57600080fd5b506103536104c9366004612562565b610d09565b3480156104da57600080fd5b5060115461028c90610100900460ff1681565b3480156104f957600080fd5b506102c1610508366004612519565b610d9c565b34801561051957600080fd5b5060115461028c9060ff1681565b34801561053357600080fd5b50610305610542366004612562565b610db7565b34801561055357600080fd5b506102d8610e17565b34801561056857600080fd5b50610353610577366004612287565b610ea5565b34801561058857600080fd5b506102c1610f2b565b34801561059d57600080fd5b506102c16105ac366004612562565b610f3f565b3480156105bd57600080fd5b50600a546001600160a01b0316610305565b3480156105db57600080fd5b506102d8610f4c565b3480156105f057600080fd5b5060115461028c9062010000900460ff1681565b6102c1610612366004612562565b610f5b565b34801561062357600080fd5b506102c161063236600461239e565b611242565b34801561064357600080fd5b506102c161124d565b34801561065857600080fd5b506102c161066736600461231e565b611266565b34801561067857600080fd5b50610305610687366004612562565b61129e565b34801561069857600080fd5b5061035360105481565b3480156106ae57600080fd5b506102d86112c8565b3480156106c357600080fd5b506102d86106d2366004612562565b6112d5565b3480156106e357600080fd5b506102c16106f2366004612496565b6113b3565b34801561070357600080fd5b506102c1610712366004612562565b6114f7565b34801561072357600080fd5b50610353600e5481565b34801561073957600080fd5b506102c1610748366004612519565b611504565b34801561075957600080fd5b5061028c6107683660046122a4565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156107a257600080fd5b506102c16107b13660046123ff565b61151f565b3480156107c257600080fd5b506102c16107d1366004612287565b61153f565b60006001600160e01b0319821663780e9d6360e01b14806107fb57506107fb826115b8565b92915050565b610809611608565b6011805460ff1916911515919091179055565b60606000805461082b9061282d565b80601f01602080910402602001604051908101604052809291908181526020018280546108579061282d565b80156108a45780601f10610879576101008083540402835291602001916108a4565b820191906000526020600020905b81548152906001019060200180831161088757829003601f168201915b5050505050905090565b60006108b982611662565b506000908152600460205260409020546001600160a01b031690565b60006108e082610db7565b9050806001600160a01b0316836001600160a01b031614156109535760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084015b60405180910390fd5b336001600160a01b038216148061096f575061096f8133610768565b6109e15760405162461bcd60e51b815260206004820152603e60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000606482015260840161094a565b6109eb83836116c1565b505050565b6109fa338261172f565b610a165760405162461bcd60e51b815260040161094a90612751565b6109eb8383836117ae565b6000610a2c83610ea5565b8210610a8e5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161094a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601254811015610b1857826001600160a01b031660128281548110610ae257610ae26128d9565b6000918252602090912001546001600160a01b03161415610b065750600192915050565b80610b1081612868565b915050610abb565b50600092915050565b610b29611608565b60118054911515620100000262ff000019909216919091179055565b610b4d611608565b600073943590a42c27d08e3744202c4ae5ed55c2de240d6064610b714760056127cb565b610b7b91906127b7565b604051600081818185875af1925050503d8060008114610bb7576040519150601f19603f3d011682016040523d82523d6000602084013e610bbc565b606091505b5050905080610bca57600080fd5b6000610bde600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c28576040519150601f19603f3d011682016040523d82523d6000602084013e610c2d565b606091505b5050905080610c3b57600080fd5b5050565b6109eb83838360405180602001604052806000815250611266565b60606000610c6783610ea5565b905060008167ffffffffffffffff811115610c8457610c846128ef565b604051908082528060200260200182016040528015610cad578160200160208202803683370190505b50905060005b82811015610cf457610cc58582610a21565b828281518110610cd757610cd76128d9565b602090810291909101015280610cec81612868565b915050610cb3565b509392505050565b610d04611608565b600d55565b6000610d1460085490565b8210610d775760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161094a565b60088281548110610d8a57610d8a6128d9565b90600052602060002001549050919050565b610da4611608565b8051610c3b90600b9060208401906120a6565b6000818152600260205260408120546001600160a01b0316806107fb5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161094a565b600b8054610e249061282d565b80601f0160208091040260200160405190810160405280929190818152602001828054610e509061282d565b8015610e9d5780601f10610e7257610100808354040283529160200191610e9d565b820191906000526020600020905b815481529060010190602001808311610e8057829003601f168201915b505050505081565b60006001600160a01b038216610f0f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b606482015260840161094a565b506001600160a01b031660009081526003602052604090205490565b610f33611608565b610f3d6000611955565b565b610f47611608565b600f55565b60606001805461082b9061282d565b60115460ff1615610fa75760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161094a565b6000610fb260085490565b9050600082116110045760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161094a565b600f548211156110625760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161094a565b600e5461106f838361279f565b11156110b65760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161094a565b600a546001600160a01b031633146111f25760115462010000900460ff161515600114156111a0576110e733610ab7565b6111335760405162461bcd60e51b815260206004820152601760248201527f75736572206973206e6f742077686974656c6973746564000000000000000000604482015260640161094a565b33600090815260136020526040902054601054611150848361279f565b111561119e5760405162461bcd60e51b815260206004820152601c60248201527f6d6178204e465420706572206164647265737320657863656564656400000000604482015260640161094a565b505b81600d546111ae91906127cb565b3410156111f25760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161094a565b60015b8281116109eb5733600090815260136020526040812080549161121783612868565b9091555061123090503361122b838561279f565b6119a7565b8061123a81612868565b9150506111f5565b610c3b3383836119c1565b611255611608565b6011805461ff001916610100179055565b611270338361172f565b61128c5760405162461bcd60e51b815260040161094a90612751565b61129884848484611a90565b50505050565b601281815481106112ae57600080fd5b6000918252602090912001546001600160a01b0316905081565b600c8054610e249061282d565b6000818152600260205260409020546060906001600160a01b03166113545760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161094a565b600061135e611ac3565b9050600081511161137e57604051806020016040528060008152506113ac565b8061138884611ad2565b600c60405160200161139c939291906125a7565b6040516020818303038152906040525b9392505050565b6113bb611608565b8281146114195760405162461bcd60e51b815260206004820152602660248201527f52656365697665727320616e64204944732061726520646966666572656e74206044820152650d8cadccee8d60d31b606482015260840161094a565b60005b838110156114ef57856001600160a01b03166342842e0e33878785818110611446576114466128d9565b905060200201602081019061145b9190612287565b86868681811061146d5761146d6128d9565b6040516001600160e01b031960e088901b1681526001600160a01b03958616600482015294909316602485015250602090910201356044820152606401600060405180830381600087803b1580156114c457600080fd5b505af11580156114d8573d6000803e3d6000fd5b5050505080806114e790612868565b91505061141c565b505050505050565b6114ff611608565b601055565b61150c611608565b8051610c3b90600c9060208401906120a6565b611527611608565b6115336012600061212a565b6109eb60128383612148565b611547611608565b6001600160a01b0381166115ac5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161094a565b6115b581611955565b50565b60006001600160e01b031982166380ac58cd60e01b14806115e957506001600160e01b03198216635b5e139f60e01b145b806107fb57506301ffc9a760e01b6001600160e01b03198316146107fb565b600a546001600160a01b03163314610f3d5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161094a565b6000818152600260205260409020546001600160a01b03166115b55760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b604482015260640161094a565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116f682610db7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60008061173b83610db7565b9050806001600160a01b0316846001600160a01b0316148061178257506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b806117a65750836001600160a01b031661179b846108ae565b6001600160a01b0316145b949350505050565b826001600160a01b03166117c182610db7565b6001600160a01b0316146118255760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161094a565b6001600160a01b0382166118875760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161094a565b611892838383611bd0565b61189d6000826116c1565b6001600160a01b03831660009081526003602052604081208054600192906118c69084906127ea565b90915550506001600160a01b03821660009081526003602052604081208054600192906118f490849061279f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c3b828260405180602001604052806000815250611c88565b816001600160a01b0316836001600160a01b03161415611a235760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161094a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611a9b8484846117ae565b611aa784848484611cbb565b6112985760405162461bcd60e51b815260040161094a906126ff565b6060600b805461082b9061282d565b606081611af65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b205780611b0a81612868565b9150611b199050600a836127b7565b9150611afa565b60008167ffffffffffffffff811115611b3b57611b3b6128ef565b6040519080825280601f01601f191660200182016040528015611b65576020820181803683370190505b5090505b84156117a657611b7a6001836127ea565b9150611b87600a86612883565b611b9290603061279f565b60f81b818381518110611ba757611ba76128d9565b60200101906001600160f81b031916908160001a905350611bc9600a866127b7565b9450611b69565b6001600160a01b038316611c2b57611c2681600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611c4e565b816001600160a01b0316836001600160a01b031614611c4e57611c4e8382611dc8565b6001600160a01b038216611c65576109eb81611e65565b826001600160a01b0316826001600160a01b0316146109eb576109eb8282611f14565b611c928383611f58565b611c9f6000848484611cbb565b6109eb5760405162461bcd60e51b815260040161094a906126ff565b60006001600160a01b0384163b15611dbd57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cff90339089908890889060040161266b565b602060405180830381600087803b158015611d1957600080fd5b505af1925050508015611d49575060408051601f3d908101601f19168201909252611d4691810190612479565b60015b611da3573d808015611d77576040519150601f19603f3d011682016040523d82523d6000602084013e611d7c565b606091505b508051611d9b5760405162461bcd60e51b815260040161094a906126ff565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117a6565b506001949350505050565b60006001611dd584610ea5565b611ddf91906127ea565b600083815260076020526040902054909150808214611e32576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e77906001906127ea565b60008381526009602052604081205460088054939450909284908110611e9f57611e9f6128d9565b906000526020600020015490508060088381548110611ec057611ec06128d9565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ef857611ef86128c3565b6001900381819060005260206000200160009055905550505050565b6000611f1f83610ea5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fae5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161094a565b6000818152600260205260409020546001600160a01b0316156120135760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161094a565b61201f60008383611bd0565b6001600160a01b038216600090815260036020526040812080546001929061204890849061279f565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120b29061282d565b90600052602060002090601f0160209004810192826120d4576000855561211a565b82601f106120ed57805160ff191683800117855561211a565b8280016001018555821561211a579182015b8281111561211a5782518255916020019190600101906120ff565b5061212692915061219b565b5090565b50805460008255906000526020600020908101906115b5919061219b565b82805482825590600052602060002090810192821561211a579160200282015b8281111561211a5781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612168565b5b80821115612126576000815560010161219c565b600067ffffffffffffffff808411156121cb576121cb6128ef565b604051601f8501601f19908116603f011681019082821181831017156121f3576121f36128ef565b8160405280935085815286868601111561220c57600080fd5b858560208301376000602087830101525050509392505050565b60008083601f84011261223857600080fd5b50813567ffffffffffffffff81111561225057600080fd5b6020830191508360208260051b850101111561226b57600080fd5b9250929050565b8035801515811461228257600080fd5b919050565b60006020828403121561229957600080fd5b81356113ac81612905565b600080604083850312156122b757600080fd5b82356122c281612905565b915060208301356122d281612905565b809150509250929050565b6000806000606084860312156122f257600080fd5b83356122fd81612905565b9250602084013561230d81612905565b929592945050506040919091013590565b6000806000806080858703121561233457600080fd5b843561233f81612905565b9350602085013561234f81612905565b925060408501359150606085013567ffffffffffffffff81111561237257600080fd5b8501601f8101871361238357600080fd5b612392878235602084016121b0565b91505092959194509250565b600080604083850312156123b157600080fd5b82356123bc81612905565b91506123ca60208401612272565b90509250929050565b600080604083850312156123e657600080fd5b82356123f181612905565b946020939093013593505050565b6000806020838503121561241257600080fd5b823567ffffffffffffffff81111561242957600080fd5b61243585828601612226565b90969095509350505050565b60006020828403121561245357600080fd5b6113ac82612272565b60006020828403121561246e57600080fd5b81356113ac8161291a565b60006020828403121561248b57600080fd5b81516113ac8161291a565b6000806000806000606086880312156124ae57600080fd5b85356124b981612905565b9450602086013567ffffffffffffffff808211156124d657600080fd5b6124e289838a01612226565b909650945060408801359150808211156124fb57600080fd5b5061250888828901612226565b969995985093965092949392505050565b60006020828403121561252b57600080fd5b813567ffffffffffffffff81111561254257600080fd5b8201601f8101841361255357600080fd5b6117a6848235602084016121b0565b60006020828403121561257457600080fd5b5035919050565b60008151808452612593816020860160208601612801565b601f01601f19169290920160200192915050565b6000845160206125ba8285838a01612801565b8551918401916125cd8184848a01612801565b8554920191600090600181811c90808316806125ea57607f831692505b85831081141561260857634e487b7160e01b85526022600452602485fd5b80801561261c576001811461262d5761265a565b60ff1985168852838801955061265a565b60008b81526020902060005b858110156126525781548a820152908401908801612639565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061269e9083018461257b565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156126e0578351835292840192918401916001016126c4565b50909695505050505050565b6020815260006113ac602083018461257b565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252602e908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526d1c881b9bdc88185c1c1c9bdd995960921b606082015260800190565b600082198211156127b2576127b2612897565b500190565b6000826127c6576127c66128ad565b500490565b60008160001904831182151516156127e5576127e5612897565b500290565b6000828210156127fc576127fc612897565b500390565b60005b8381101561281c578181015183820152602001612804565b838111156112985750506000910152565b600181811c9082168061284157607f821691505b6020821081141561286257634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561287c5761287c612897565b5060010190565b600082612892576128926128ad565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146115b557600080fd5b6001600160e01b0319811681146115b557600080fdfea2646970667358221220a379039297a97752c366858e14d34f2db965b5ea83eef76c08ad4cda7504531964736f6c63430008060033

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

0000000000000000000000000000000000000000000000000000000000000060000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : (string):
Arg [1] : (string):
Arg [2] : _initBaseURI (string):

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

46413:4677:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40155:224;;;;;;;;;;-1:-1:-1;40155:224:0;;;;;:::i;:::-;;:::i;:::-;;;10318:14:1;;10311:22;10293:41;;10281:2;10266:18;40155:224:0;;;;;;;;50156:73;;;;;;;;;;-1:-1:-1;50156:73:0;;;;;:::i;:::-;;:::i;:::-;;26889:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28402:171::-;;;;;;;;;;-1:-1:-1;28402:171:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8599:32:1;;;8581:51;;8569:2;8554:18;28402:171:0;8536:102:1;27919:417:0;;;;;;;;;;-1:-1:-1;27919:417:0;;;;;:::i;:::-;;:::i;46570:32::-;;;;;;;;;;;;;;;;;;;19963:25:1;;;19951:2;19936:18;46570:32:0;19918:76:1;40795:113:0;;;;;;;;;;-1:-1:-1;40883:10:0;:17;40795:113;;46864:55;;;;;;;;;;-1:-1:-1;46864:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;46642:32;;;;;;;;;;;;;;;;29102:336;;;;;;;;;;-1:-1:-1;29102:336:0;;;;;:::i;:::-;;:::i;40463:256::-;;;;;;;;;;-1:-1:-1;40463:256:0;;;;;:::i;:::-;;:::i;48169:239::-;;;;;;;;;;-1:-1:-1;48169:239:0;;;;;:::i;:::-;;:::i;50237:95::-;;;;;;;;;;-1:-1:-1;50237:95:0;;;;;:::i;:::-;;:::i;50492:595::-;;;:::i;29509:185::-;;;;;;;;;;-1:-1:-1;29509:185:0;;;;;:::i;:::-;;:::i;48414:348::-;;;;;;;;;;-1:-1:-1;48414:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;49714:80::-;;;;;;;;;;-1:-1:-1;49714:80:0;;;;;:::i;:::-;;:::i;40985:233::-;;;;;;;;;;-1:-1:-1;40985:233:0;;;;;:::i;:::-;;:::i;46751:27::-;;;;;;;;;;-1:-1:-1;46751:27:0;;;;;;;;;;;49922:98;;;;;;;;;;-1:-1:-1;49922:98:0;;;;;:::i;:::-;;:::i;46721:25::-;;;;;;;;;;-1:-1:-1;46721:25:0;;;;;;;;26600:222;;;;;;;;;;-1:-1:-1;26600:222:0;;;;;:::i;:::-;;:::i;46502:21::-;;;;;;;;;;;;;:::i;26331:207::-;;;;;;;;;;-1:-1:-1;26331:207:0;;;;;:::i;:::-;;:::i;5418:103::-;;;;;;;;;;;;;:::i;49800:116::-;;;;;;;;;;-1:-1:-1;49800:116:0;;;;;:::i;:::-;;:::i;4770:87::-;;;;;;;;;;-1:-1:-1;4843:6:0;;-1:-1:-1;;;;;4843:6:0;4770:87;;27058:104;;;;;;;;;;;;;:::i;46783:34::-;;;;;;;;;;-1:-1:-1;46783:34:0;;;;;;;;;;;47230:931;;;;;;:::i;:::-;;:::i;28645:155::-;;;;;;;;;;-1:-1:-1;28645:155:0;;;;;:::i;:::-;;:::i;49213:65::-;;;;;;;;;;;;;:::i;29765:323::-;;;;;;;;;;-1:-1:-1;29765:323:0;;;;;:::i;:::-;;:::i;46822:37::-;;;;;;;;;;-1:-1:-1;46822:37:0;;;;;:::i;:::-;;:::i;46679:::-;;;;;;;;;;;;;;;;46528;;;;;;;;;;;;;:::i;48768:423::-;;;;;;;;;;-1:-1:-1;48768:423:0;;;;;:::i;:::-;;:::i;49287:309::-;;;;;;;;;;-1:-1:-1;49287:309:0;;;;;:::i;:::-;;:::i;49602:104::-;;;;;;;;;;-1:-1:-1;49602:104:0;;;;;:::i;:::-;;:::i;46607:30::-;;;;;;;;;;;;;;;;50026:122;;;;;;;;;;-1:-1:-1;50026:122:0;;;;;:::i;:::-;;:::i;28871:164::-;;;;;;;;;;-1:-1:-1;28871:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;28992:25:0;;;28968:4;28992:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28871:164;50340:144;;;;;;;;;;-1:-1:-1;50340:144:0;;;;;:::i;:::-;;:::i;5676:201::-;;;;;;;;;;-1:-1:-1;5676:201:0;;;;;:::i;:::-;;:::i;40155:224::-;40257:4;-1:-1:-1;;;;;;40281:50:0;;-1:-1:-1;;;40281:50:0;;:90;;;40335:36;40359:11;40335:23;:36::i;:::-;40274:97;40155:224;-1:-1:-1;;40155:224:0:o;50156:73::-;4656:13;:11;:13::i;:::-;50208:6:::1;:15:::0;;-1:-1:-1;;50208:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;50156:73::o;26889:100::-;26943:13;26976:5;26969:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26889:100;:::o;28402:171::-;28478:7;28498:23;28513:7;28498:14;:23::i;:::-;-1:-1:-1;28541:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28541:24:0;;28402:171::o;27919:417::-;28000:13;28016:23;28031:7;28016:14;:23::i;:::-;28000:39;;28064:5;-1:-1:-1;;;;;28058:11:0;:2;-1:-1:-1;;;;;28058:11:0;;;28050:57;;;;-1:-1:-1;;;28050:57:0;;17734:2:1;28050:57:0;;;17716:21:1;17773:2;17753:18;;;17746:30;17812:34;17792:18;;;17785:62;-1:-1:-1;;;17863:18:1;;;17856:31;17904:19;;28050:57:0;;;;;;;;;3401:10;-1:-1:-1;;;;;28142:21:0;;;;:62;;-1:-1:-1;28167:37:0;28184:5;3401:10;28871:164;:::i;28167:37::-;28120:174;;;;-1:-1:-1;;;28120:174:0;;15054:2:1;28120:174:0;;;15036:21:1;15093:2;15073:18;;;15066:30;15132:34;15112:18;;;15105:62;15203:32;15183:18;;;15176:60;15253:19;;28120:174:0;15026:252:1;28120:174:0;28307:21;28316:2;28320:7;28307:8;:21::i;:::-;27989:347;27919:417;;:::o;29102:336::-;29297:41;3401:10;29330:7;29297:18;:41::i;:::-;29289:100;;;;-1:-1:-1;;;29289:100:0;;;;;;;:::i;:::-;29402:28;29412:4;29418:2;29422:7;29402:9;:28::i;40463:256::-;40560:7;40596:23;40613:5;40596:16;:23::i;:::-;40588:5;:31;40580:87;;;;-1:-1:-1;;;40580:87:0;;10771:2:1;40580:87:0;;;10753:21:1;10810:2;10790:18;;;10783:30;10849:34;10829:18;;;10822:62;-1:-1:-1;;;10900:18:1;;;10893:41;10951:19;;40580:87:0;10743:233:1;40580:87:0;-1:-1:-1;;;;;;40685:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40463:256::o;48169:239::-;48228:4;;48241:143;48262:20;:27;48258:31;;48241:143;;;48336:5;-1:-1:-1;;;;;48309:32:0;:20;48330:1;48309:23;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;48309:23:0;:32;48305:72;;;-1:-1:-1;48363:4:0;;48169:239;-1:-1:-1;;48169:239:0:o;48305:72::-;48291:3;;;;:::i;:::-;;;;48241:143;;;-1:-1:-1;48397:5:0;;48169:239;-1:-1:-1;;48169:239:0:o;50237:95::-;4656:13;:11;:13::i;:::-;50302:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;50302:24:0;;::::1;::::0;;;::::1;::::0;;50237:95::o;50492:595::-;4656:13;:11;:13::i;:::-;50850:7:::1;50871:42;50955:3;50927:25;:21;50951:1;50927:25;:::i;:::-;:31;;;;:::i;:::-;50863:100;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50849:114;;;50978:2;50970:11;;;::::0;::::1;;50991:7;51012;4843:6:::0;;-1:-1:-1;;;;;4843:6:0;;4770:87;51012:7:::1;-1:-1:-1::0;;;;;51004:21:0::1;51033;51004:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50990:69;;;51074:2;51066:11;;;::::0;::::1;;50537:550;;50492:595::o:0;29509:185::-;29647:39;29664:4;29670:2;29674:7;29647:39;;;;;;;;;;;;:16;:39::i;48414:348::-;48489:16;48517:23;48543:17;48553:6;48543:9;:17::i;:::-;48517:43;;48567:25;48609:15;48595:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48595:30:0;;48567:58;;48637:9;48632:103;48652:15;48648:1;:19;48632:103;;;48697:30;48717:6;48725:1;48697:19;:30::i;:::-;48683:8;48692:1;48683:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;48669:3;;;;:::i;:::-;;;;48632:103;;;-1:-1:-1;48748:8:0;48414:348;-1:-1:-1;;;48414:348:0:o;49714:80::-;4656:13;:11;:13::i;:::-;49773:4:::1;:15:::0;49714:80::o;40985:233::-;41060:7;41096:30;40883:10;:17;;40795:113;41096:30;41088:5;:38;41080:95;;;;-1:-1:-1;;;41080:95:0;;18483:2:1;41080:95:0;;;18465:21:1;18522:2;18502:18;;;18495:30;18561:34;18541:18;;;18534:62;-1:-1:-1;;;18612:18:1;;;18605:42;18664:19;;41080:95:0;18455:234:1;41080:95:0;41193:10;41204:5;41193:17;;;;;;;;:::i;:::-;;;;;;;;;41186:24;;40985:233;;;:::o;49922:98::-;4656:13;:11;:13::i;:::-;49993:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;26600:222::-:0;26672:7;26708:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26708:16:0;26743:19;26735:56;;;;-1:-1:-1;;;26735:56:0;;16974:2:1;26735:56:0;;;16956:21:1;17013:2;16993:18;;;16986:30;-1:-1:-1;;;17032:18:1;;;17025:54;17096:18;;26735:56:0;16946:174:1;46502:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26331:207::-;26403:7;-1:-1:-1;;;;;26431:19:0;;26423:73;;;;-1:-1:-1;;;26423:73:0;;13888:2:1;26423:73:0;;;13870:21:1;13927:2;13907:18;;;13900:30;13966:34;13946:18;;;13939:62;-1:-1:-1;;;14017:18:1;;;14010:39;14066:19;;26423:73:0;13860:231:1;26423:73:0;-1:-1:-1;;;;;;26514:16:0;;;;;:9;:16;;;;;;;26331:207::o;5418:103::-;4656:13;:11;:13::i;:::-;5483:30:::1;5510:1;5483:18;:30::i;:::-;5418:103::o:0;49800:116::-;4656:13;:11;:13::i;:::-;49877::::1;:33:::0;49800:116::o;27058:104::-;27114:13;27147:7;27140:14;;;;;:::i;47230:931::-;47296:6;;;;47295:7;47287:42;;;;-1:-1:-1;;;47287:42:0;;16207:2:1;47287:42:0;;;16189:21:1;16246:2;16226:18;;;16219:30;-1:-1:-1;;;16265:18:1;;;16258:52;16327:18;;47287:42:0;16179:172:1;47287:42:0;47336:14;47353:13;40883:10;:17;;40795:113;47353:13;47336:30;;47395:1;47381:11;:15;47373:55;;;;-1:-1:-1;;;47373:55:0;;19663:2:1;47373:55:0;;;19645:21:1;19702:2;19682:18;;;19675:30;19741:29;19721:18;;;19714:57;19788:18;;47373:55:0;19635:177:1;47373:55:0;47458:13;;47443:11;:28;;47435:77;;;;-1:-1:-1;;;47435:77:0;;14649:2:1;47435:77:0;;;14631:21:1;14688:2;14668:18;;;14661:30;14727:34;14707:18;;;14700:62;-1:-1:-1;;;14778:18:1;;;14771:34;14822:19;;47435:77:0;14621:226:1;47435:77:0;47551:9;;47527:20;47536:11;47527:6;:20;:::i;:::-;:33;;47519:68;;;;-1:-1:-1;;;47519:68:0;;14298:2:1;47519:68:0;;;14280:21:1;14337:2;14317:18;;;14310:30;-1:-1:-1;;;14356:18:1;;;14349:52;14418:18;;47519:68:0;14270:172:1;47519:68:0;4843:6;;-1:-1:-1;;;;;4843:6:0;47600:10;:21;47596:416;;47637:15;;;;;;;:23;;47656:4;47637:23;47634:298;;;47685:25;47699:10;47685:13;:25::i;:::-;47677:61;;;;-1:-1:-1;;;47677:61:0;;18896:2:1;47677:61:0;;;18878:21:1;18935:2;18915:18;;;18908:30;18974:25;18954:18;;;18947:53;19017:18;;47677:61:0;18868:173:1;47677:61:0;47801:10;47753:24;47780:32;;;:20;:32;;;;;;47869:18;;47835:30;47854:11;47780:32;47835:30;:::i;:::-;:52;;47827:93;;;;-1:-1:-1;;;47827:93:0;;12772:2:1;47827:93:0;;;12754:21:1;12811:2;12791:18;;;12784:30;12850;12830:18;;;12823:58;12898:18;;47827:93:0;12744:178:1;47827:93:0;47662:270;47634:298;47970:11;47963:4;;:18;;;;:::i;:::-;47950:9;:31;;47942:62;;;;-1:-1:-1;;;47942:62:0;;18136:2:1;47942:62:0;;;18118:21:1;18175:2;18155:18;;;18148:30;-1:-1:-1;;;18194:18:1;;;18187:48;18252:18;;47942:62:0;18108:168:1;47942:62:0;48037:1;48020:136;48045:11;48040:1;:16;48020:136;;48093:10;48072:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;48115:33:0;;-1:-1:-1;48125:10:0;48137;48146:1;48137:6;:10;:::i;:::-;48115:9;:33::i;:::-;48058:3;;;;:::i;:::-;;;;48020:136;;28645:155;28740:52;3401:10;28773:8;28783;28740:18;:52::i;49213:65::-;4656:13;:11;:13::i;:::-;49257:8:::1;:15:::0;;-1:-1:-1;;49257:15:0::1;;;::::0;;49213:65::o;29765:323::-;29939:41;3401:10;29972:7;29939:18;:41::i;:::-;29931:100;;;;-1:-1:-1;;;29931:100:0;;;;;;;:::i;:::-;30042:38;30056:4;30062:2;30066:7;30075:4;30042:13;:38::i;:::-;29765:323;;;;:::o;46822:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;46822:37:0;;-1:-1:-1;46822:37:0;:::o;46528:::-;;;;;;;:::i;48768:423::-;31660:4;31684:16;;;:7;:16;;;;;;48866:13;;-1:-1:-1;;;;;31684:16:0;48891:97;;;;-1:-1:-1;;;48891:97:0;;16558:2:1;48891:97:0;;;16540:21:1;16597:2;16577:18;;;16570:30;16636:34;16616:18;;;16609:62;-1:-1:-1;;;16687:18:1;;;16680:45;16742:19;;48891:97:0;16530:237:1;48891:97:0;48997:28;49028:10;:8;:10::i;:::-;48997:41;;49083:1;49058:14;49052:28;:32;:133;;;;;;;;;;;;;;;;;49120:14;49136:18;:7;:16;:18::i;:::-;49156:13;49103:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49052:133;49045:140;48768:423;-1:-1:-1;;;48768:423:0:o;49287:309::-;4656:13;:11;:13::i;:::-;49409:24;;::::1;49401:75;;;::::0;-1:-1:-1;;;49401:75:0;;17327:2:1;49401:75:0::1;::::0;::::1;17309:21:1::0;17366:2;17346:18;;;17339:30;17405:34;17385:18;;;17378:62;-1:-1:-1;;;17456:18:1;;;17449:36;17502:19;;49401:75:0::1;17299:228:1::0;49401:75:0::1;49487:9;49482:109;49502:14:::0;;::::1;49482:109;;;49532:6;-1:-1:-1::0;;;;;49532:23:0::1;;49556:10;49568:3;;49572:1;49568:6;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;49576:3;;49580:1;49576:6;;;;;;;:::i;:::-;49532:51;::::0;-1:-1:-1;;;;;;49532:51:0::1;::::0;;;;;;-1:-1:-1;;;;;8901:15:1;;;49532:51:0::1;::::0;::::1;8883:34:1::0;8953:15;;;;8933:18;;;8926:43;-1:-1:-1;49576:6:0::1;::::0;;::::1;;;8985:18:1::0;;;8978:34;8818:18;;49532:51:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;49518:3;;;;;:::i;:::-;;;;49482:109;;;;49287:309:::0;;;;;:::o;49602:104::-;4656:13;:11;:13::i;:::-;49673:18:::1;:27:::0;49602:104::o;50026:122::-;4656:13;:11;:13::i;:::-;50109:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;50340:144::-:0;4656:13;:11;:13::i;:::-;50415:27:::1;50422:20;;50415:27;:::i;:::-;50449:29;:20;50472:6:::0;;50449:29:::1;:::i;5676:201::-:0;4656:13;:11;:13::i;:::-;-1:-1:-1;;;;;5765:22:0;::::1;5757:73;;;::::0;-1:-1:-1;;;5757:73:0;;11602:2:1;5757:73:0::1;::::0;::::1;11584:21:1::0;11641:2;11621:18;;;11614:30;11680:34;11660:18;;;11653:62;-1:-1:-1;;;11731:18:1;;;11724:36;11777:19;;5757:73:0::1;11574:228:1::0;5757:73:0::1;5841:28;5860:8;5841:18;:28::i;:::-;5676:201:::0;:::o;25962:305::-;26064:4;-1:-1:-1;;;;;;26101:40:0;;-1:-1:-1;;;26101:40:0;;:105;;-1:-1:-1;;;;;;;26158:48:0;;-1:-1:-1;;;26158:48:0;26101:105;:158;;;-1:-1:-1;;;;;;;;;;17733:40:0;;;26223:36;17624:157;4935:132;4843:6;;-1:-1:-1;;;;;4843:6:0;3401:10;4999:23;4991:68;;;;-1:-1:-1;;;4991:68:0;;15846:2:1;4991:68:0;;;15828:21:1;;;15865:18;;;15858:30;15924:34;15904:18;;;15897:62;15976:18;;4991:68:0;15818:182:1;36377:135:0;31660:4;31684:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31684:16:0;36451:53;;;;-1:-1:-1;;;36451:53:0;;16974:2:1;36451:53:0;;;16956:21:1;17013:2;16993:18;;;16986:30;-1:-1:-1;;;17032:18:1;;;17025:54;17096:18;;36451:53:0;16946:174:1;35656::0;35731:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;35731:29:0;-1:-1:-1;;;;;35731:29:0;;;;;;;;:24;;35785:23;35731:24;35785:14;:23::i;:::-;-1:-1:-1;;;;;35776:46:0;;;;;;;;;;;35656:174;;:::o;31889:264::-;31982:4;31999:13;32015:23;32030:7;32015:14;:23::i;:::-;31999:39;;32068:5;-1:-1:-1;;;;;32057:16:0;:7;-1:-1:-1;;;;;32057:16:0;;:52;;;-1:-1:-1;;;;;;28992:25:0;;;28968:4;28992:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32077:32;32057:87;;;;32137:7;-1:-1:-1;;;;;32113:31:0;:20;32125:7;32113:11;:20::i;:::-;-1:-1:-1;;;;;32113:31:0;;32057:87;32049:96;31889:264;-1:-1:-1;;;;31889:264:0:o;34912:625::-;35071:4;-1:-1:-1;;;;;35044:31:0;:23;35059:7;35044:14;:23::i;:::-;-1:-1:-1;;;;;35044:31:0;;35036:81;;;;-1:-1:-1;;;35036:81:0;;12009:2:1;35036:81:0;;;11991:21:1;12048:2;12028:18;;;12021:30;12087:34;12067:18;;;12060:62;-1:-1:-1;;;12138:18:1;;;12131:35;12183:19;;35036:81:0;11981:227:1;35036:81:0;-1:-1:-1;;;;;35136:16:0;;35128:65;;;;-1:-1:-1;;;35128:65:0;;13129:2:1;35128:65:0;;;13111:21:1;13168:2;13148:18;;;13141:30;13207:34;13187:18;;;13180:62;-1:-1:-1;;;13258:18:1;;;13251:34;13302:19;;35128:65:0;13101:226:1;35128:65:0;35206:39;35227:4;35233:2;35237:7;35206:20;:39::i;:::-;35310:29;35327:1;35331:7;35310:8;:29::i;:::-;-1:-1:-1;;;;;35352:15:0;;;;;;:9;:15;;;;;:20;;35371:1;;35352:15;:20;;35371:1;;35352:20;:::i;:::-;;;;-1:-1:-1;;;;;;;35383:13:0;;;;;;:9;:13;;;;;:18;;35400:1;;35383:13;:18;;35400:1;;35383:18;:::i;:::-;;;;-1:-1:-1;;35412:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35412:21:0;-1:-1:-1;;;;;35412:21:0;;;;;;;;;35451:27;;35412:16;;35451:27;;;;;;;27989:347;27919:417;;:::o;6037:191::-;6130:6;;;-1:-1:-1;;;;;6147:17:0;;;-1:-1:-1;;;;;;6147:17:0;;;;;;;6180:40;;6130:6;;;6147:17;6130:6;;6180:40;;6111:16;;6180:40;6100:128;6037:191;:::o;32495:110::-;32571:26;32581:2;32585:7;32571:26;;;;;;;;;;;;:9;:26::i;35973:315::-;36128:8;-1:-1:-1;;;;;36119:17:0;:5;-1:-1:-1;;;;;36119:17:0;;;36111:55;;;;-1:-1:-1;;;36111:55:0;;13534:2:1;36111:55:0;;;13516:21:1;13573:2;13553:18;;;13546:30;13612:27;13592:18;;;13585:55;13657:18;;36111:55:0;13506:175:1;36111:55:0;-1:-1:-1;;;;;36177:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;36177:46:0;;;;;;;;;;36239:41;;10293::1;;;36239::0;;10266:18:1;36239:41:0;;;;;;;35973:315;;;:::o;30969:313::-;31125:28;31135:4;31141:2;31145:7;31125:9;:28::i;:::-;31172:47;31195:4;31201:2;31205:7;31214:4;31172:22;:47::i;:::-;31164:110;;;;-1:-1:-1;;;31164:110:0;;;;;;;:::i;47109:102::-;47169:13;47198:7;47191:14;;;;;:::i;540:723::-;596:13;817:10;813:53;;-1:-1:-1;;844:10:0;;;;;;;;;;;;-1:-1:-1;;;844:10:0;;;;;540:723::o;813:53::-;891:5;876:12;932:78;939:9;;932:78;;965:8;;;;:::i;:::-;;-1:-1:-1;988:10:0;;-1:-1:-1;996:2:0;988:10;;:::i;:::-;;;932:78;;;1020:19;1052:6;1042:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1042:17:0;;1020:39;;1070:154;1077:10;;1070:154;;1104:11;1114:1;1104:11;;:::i;:::-;;-1:-1:-1;1173:10:0;1181:2;1173:5;:10;:::i;:::-;1160:24;;:2;:24;:::i;:::-;1147:39;;1130:6;1137;1130:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1130:56:0;;;;;;;;-1:-1:-1;1201:11:0;1210:2;1201:11;;:::i;:::-;;;1070:154;;41831:589;-1:-1:-1;;;;;42037:18:0;;42033:187;;42072:40;42104:7;43247:10;:17;;43220:24;;;;:15;:24;;;;;:44;;;43275:24;;;;;;;;;;;;43143:164;42072:40;42033:187;;;42142:2;-1:-1:-1;;;;;42134:10:0;:4;-1:-1:-1;;;;;42134:10:0;;42130:90;;42161:47;42194:4;42200:7;42161:32;:47::i;:::-;-1:-1:-1;;;;;42234:16:0;;42230:183;;42267:45;42304:7;42267:36;:45::i;42230:183::-;42340:4;-1:-1:-1;;;;;42334:10:0;:2;-1:-1:-1;;;;;42334:10:0;;42330:83;;42361:40;42389:2;42393:7;42361:27;:40::i;32832:319::-;32961:18;32967:2;32971:7;32961:5;:18::i;:::-;33012:53;33043:1;33047:2;33051:7;33060:4;33012:22;:53::i;:::-;32990:153;;;;-1:-1:-1;;;32990:153:0;;;;;;;:::i;37076:853::-;37230:4;-1:-1:-1;;;;;37251:13:0;;7763:19;:23;37247:675;;37287:71;;-1:-1:-1;;;37287:71:0;;-1:-1:-1;;;;;37287:36:0;;;;;:71;;3401:10;;37338:4;;37344:7;;37353:4;;37287:71;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37287:71:0;;;;;;;;-1:-1:-1;;37287:71:0;;;;;;;;;;;;:::i;:::-;;;37283:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37528:13:0;;37524:328;;37571:60;;-1:-1:-1;;;37571:60:0;;;;;;;:::i;37524:328::-;37802:6;37796:13;37787:6;37783:2;37779:15;37772:38;37283:584;-1:-1:-1;;;;;;37409:51:0;-1:-1:-1;;;37409:51:0;;-1:-1:-1;37402:58:0;;37247:675;-1:-1:-1;37906:4:0;37076:853;;;;;;:::o;43934:988::-;44200:22;44250:1;44225:22;44242:4;44225:16;:22::i;:::-;:26;;;;:::i;:::-;44262:18;44283:26;;;:17;:26;;;;;;44200:51;;-1:-1:-1;44416:28:0;;;44412:328;;-1:-1:-1;;;;;44483:18:0;;44461:19;44483:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44534:30;;;;;;:44;;;44651:30;;:17;:30;;;;;:43;;;44412:328;-1:-1:-1;44836:26:0;;;;:17;:26;;;;;;;;44829:33;;;-1:-1:-1;;;;;44880:18:0;;;;;:12;:18;;;;;:34;;;;;;;44873:41;43934:988::o;45217:1079::-;45495:10;:17;45470:22;;45495:21;;45515:1;;45495:21;:::i;:::-;45527:18;45548:24;;;:15;:24;;;;;;45921:10;:26;;45470:46;;-1:-1:-1;45548:24:0;;45470:46;;45921:26;;;;;;:::i;:::-;;;;;;;;;45899:48;;45985:11;45960:10;45971;45960:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;46065:28;;;:15;:28;;;;;;;:41;;;46237:24;;;;;46230:31;46272:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;45288:1008;;;45217:1079;:::o;42721:221::-;42806:14;42823:20;42840:2;42823:16;:20::i;:::-;-1:-1:-1;;;;;42854:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42899:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42721:221:0:o;33487:439::-;-1:-1:-1;;;;;33567:16:0;;33559:61;;;;-1:-1:-1;;;33559:61:0;;15485:2:1;33559:61:0;;;15467:21:1;;;15504:18;;;15497:30;15563:34;15543:18;;;15536:62;15615:18;;33559:61:0;15457:182:1;33559:61:0;31660:4;31684:16;;;:7;:16;;;;;;-1:-1:-1;;;;;31684:16:0;:30;33631:58;;;;-1:-1:-1;;;33631:58:0;;12415:2:1;33631:58:0;;;12397:21:1;12454:2;12434:18;;;12427:30;12493;12473:18;;;12466:58;12541:18;;33631:58:0;12387:178:1;33631:58:0;33702:45;33731:1;33735:2;33739:7;33702:20;:45::i;:::-;-1:-1:-1;;;;;33760:13:0;;;;;;:9;:13;;;;;:18;;33777:1;;33760:13;:18;;33777:1;;33760:18;:::i;:::-;;;;-1:-1:-1;;33789:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33789:21:0;-1:-1:-1;;;;;33789:21:0;;;;;;;;33828:33;;33789:16;;;33828:33;;33789:16;;33828:33;50537:550:::1;;50492:595::o:0;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:367::-;713:8;723:6;777:3;770:4;762:6;758:17;754:27;744:2;;795:1;792;785:12;744:2;-1:-1:-1;818:20:1;;861:18;850:30;;847:2;;;893:1;890;883:12;847:2;930:4;922:6;918:17;906:29;;990:3;983:4;973:6;970:1;966:14;958:6;954:27;950:38;947:47;944:2;;;1007:1;1004;997:12;944:2;734:283;;;;;:::o;1022:160::-;1087:20;;1143:13;;1136:21;1126:32;;1116:2;;1172:1;1169;1162:12;1116:2;1068:114;;;:::o;1187:247::-;1246:6;1299:2;1287:9;1278:7;1274:23;1270:32;1267:2;;;1315:1;1312;1305:12;1267:2;1354:9;1341:23;1373:31;1398:5;1373:31;:::i;1439:388::-;1507:6;1515;1568:2;1556:9;1547:7;1543:23;1539:32;1536:2;;;1584:1;1581;1574:12;1536:2;1623:9;1610:23;1642:31;1667:5;1642:31;:::i;:::-;1692:5;-1:-1:-1;1749:2:1;1734:18;;1721:32;1762:33;1721:32;1762:33;:::i;:::-;1814:7;1804:17;;;1526:301;;;;;:::o;1832:456::-;1909:6;1917;1925;1978:2;1966:9;1957:7;1953:23;1949:32;1946:2;;;1994:1;1991;1984:12;1946:2;2033:9;2020:23;2052:31;2077:5;2052:31;:::i;:::-;2102:5;-1:-1:-1;2159:2:1;2144:18;;2131:32;2172:33;2131:32;2172:33;:::i;:::-;1936:352;;2224:7;;-1:-1:-1;;;2278:2:1;2263:18;;;;2250:32;;1936:352::o;2293:794::-;2388:6;2396;2404;2412;2465:3;2453:9;2444:7;2440:23;2436:33;2433:2;;;2482:1;2479;2472:12;2433:2;2521:9;2508:23;2540:31;2565:5;2540:31;:::i;:::-;2590:5;-1:-1:-1;2647:2:1;2632:18;;2619:32;2660:33;2619:32;2660:33;:::i;:::-;2712:7;-1:-1:-1;2766:2:1;2751:18;;2738:32;;-1:-1:-1;2821:2:1;2806:18;;2793:32;2848:18;2837:30;;2834:2;;;2880:1;2877;2870:12;2834:2;2903:22;;2956:4;2948:13;;2944:27;-1:-1:-1;2934:2:1;;2985:1;2982;2975:12;2934:2;3008:73;3073:7;3068:2;3055:16;3050:2;3046;3042:11;3008:73;:::i;:::-;2998:83;;;2423:664;;;;;;;:::o;3092:315::-;3157:6;3165;3218:2;3206:9;3197:7;3193:23;3189:32;3186:2;;;3234:1;3231;3224:12;3186:2;3273:9;3260:23;3292:31;3317:5;3292:31;:::i;:::-;3342:5;-1:-1:-1;3366:35:1;3397:2;3382:18;;3366:35;:::i;:::-;3356:45;;3176:231;;;;;:::o;3412:315::-;3480:6;3488;3541:2;3529:9;3520:7;3516:23;3512:32;3509:2;;;3557:1;3554;3547:12;3509:2;3596:9;3583:23;3615:31;3640:5;3615:31;:::i;:::-;3665:5;3717:2;3702:18;;;;3689:32;;-1:-1:-1;;;3499:228:1:o;3732:437::-;3818:6;3826;3879:2;3867:9;3858:7;3854:23;3850:32;3847:2;;;3895:1;3892;3885:12;3847:2;3935:9;3922:23;3968:18;3960:6;3957:30;3954:2;;;4000:1;3997;3990:12;3954:2;4039:70;4101:7;4092:6;4081:9;4077:22;4039:70;:::i;:::-;4128:8;;4013:96;;-1:-1:-1;3837:332:1;-1:-1:-1;;;;3837:332:1:o;4174:180::-;4230:6;4283:2;4271:9;4262:7;4258:23;4254:32;4251:2;;;4299:1;4296;4289:12;4251:2;4322:26;4338:9;4322:26;:::i;4359:245::-;4417:6;4470:2;4458:9;4449:7;4445:23;4441:32;4438:2;;;4486:1;4483;4476:12;4438:2;4525:9;4512:23;4544:30;4568:5;4544:30;:::i;4609:249::-;4678:6;4731:2;4719:9;4710:7;4706:23;4702:32;4699:2;;;4747:1;4744;4737:12;4699:2;4779:9;4773:16;4798:30;4822:5;4798:30;:::i;4863:923::-;5009:6;5017;5025;5033;5041;5094:2;5082:9;5073:7;5069:23;5065:32;5062:2;;;5110:1;5107;5100:12;5062:2;5149:9;5136:23;5168:31;5193:5;5168:31;:::i;:::-;5218:5;-1:-1:-1;5274:2:1;5259:18;;5246:32;5297:18;5327:14;;;5324:2;;;5354:1;5351;5344:12;5324:2;5393:70;5455:7;5446:6;5435:9;5431:22;5393:70;:::i;:::-;5482:8;;-1:-1:-1;5367:96:1;-1:-1:-1;5570:2:1;5555:18;;5542:32;;-1:-1:-1;5586:16:1;;;5583:2;;;5615:1;5612;5605:12;5583:2;;5654:72;5718:7;5707:8;5696:9;5692:24;5654:72;:::i;:::-;5052:734;;;;-1:-1:-1;5052:734:1;;-1:-1:-1;5745:8:1;;5628:98;5052:734;-1:-1:-1;;;5052:734:1:o;5791:450::-;5860:6;5913:2;5901:9;5892:7;5888:23;5884:32;5881:2;;;5929:1;5926;5919:12;5881:2;5969:9;5956:23;6002:18;5994:6;5991:30;5988:2;;;6034:1;6031;6024:12;5988:2;6057:22;;6110:4;6102:13;;6098:27;-1:-1:-1;6088:2:1;;6139:1;6136;6129:12;6088:2;6162:73;6227:7;6222:2;6209:16;6204:2;6200;6196:11;6162:73;:::i;6246:180::-;6305:6;6358:2;6346:9;6337:7;6333:23;6329:32;6326:2;;;6374:1;6371;6364:12;6326:2;-1:-1:-1;6397:23:1;;6316:110;-1:-1:-1;6316:110:1:o;6431:257::-;6472:3;6510:5;6504:12;6537:6;6532:3;6525:19;6553:63;6609:6;6602:4;6597:3;6593:14;6586:4;6579:5;6575:16;6553:63;:::i;:::-;6670:2;6649:15;-1:-1:-1;;6645:29:1;6636:39;;;;6677:4;6632:50;;6480:208;-1:-1:-1;;6480:208:1:o;6693:1527::-;6917:3;6955:6;6949:13;6981:4;6994:51;7038:6;7033:3;7028:2;7020:6;7016:15;6994:51;:::i;:::-;7108:13;;7067:16;;;;7130:55;7108:13;7067:16;7152:15;;;7130:55;:::i;:::-;7274:13;;7207:20;;;7247:1;;7334;7356:18;;;;7409;;;;7436:2;;7514:4;7504:8;7500:19;7488:31;;7436:2;7577;7567:8;7564:16;7544:18;7541:40;7538:2;;;-1:-1:-1;;;7604:33:1;;7660:4;7657:1;7650:15;7690:4;7611:3;7678:17;7538:2;7721:18;7748:110;;;;7872:1;7867:328;;;;7714:481;;7748:110;-1:-1:-1;;7783:24:1;;7769:39;;7828:20;;;;-1:-1:-1;7748:110:1;;7867:328;20072:1;20065:14;;;20109:4;20096:18;;7962:1;7976:169;7990:8;7987:1;7984:15;7976:169;;;8072:14;;8057:13;;;8050:37;8115:16;;;;8007:10;;7976:169;;;7980:3;;8176:8;8169:5;8165:20;8158:27;;7714:481;-1:-1:-1;8211:3:1;;6925:1295;-1:-1:-1;;;;;;;;;;;6925:1295:1:o;9023:488::-;-1:-1:-1;;;;;9292:15:1;;;9274:34;;9344:15;;9339:2;9324:18;;9317:43;9391:2;9376:18;;9369:34;;;9439:3;9434:2;9419:18;;9412:31;;;9217:4;;9460:45;;9485:19;;9477:6;9460:45;:::i;:::-;9452:53;9226:285;-1:-1:-1;;;;;;9226:285:1:o;9516:632::-;9687:2;9739:21;;;9809:13;;9712:18;;;9831:22;;;9658:4;;9687:2;9910:15;;;;9884:2;9869:18;;;9658:4;9953:169;9967:6;9964:1;9961:13;9953:169;;;10028:13;;10016:26;;10097:15;;;;10062:12;;;;9989:1;9982:9;9953:169;;;-1:-1:-1;10139:3:1;;9667:481;-1:-1:-1;;;;;;9667:481:1:o;10345:219::-;10494:2;10483:9;10476:21;10457:4;10514:44;10554:2;10543:9;10539:18;10531:6;10514:44;:::i;10981:414::-;11183:2;11165:21;;;11222:2;11202:18;;;11195:30;11261:34;11256:2;11241:18;;11234:62;-1:-1:-1;;;11327:2:1;11312:18;;11305:48;11385:3;11370:19;;11155:240::o;19046:410::-;19248:2;19230:21;;;19287:2;19267:18;;;19260:30;19326:34;19321:2;19306:18;;19299:62;-1:-1:-1;;;19392:2:1;19377:18;;19370:44;19446:3;19431:19;;19220:236::o;20125:128::-;20165:3;20196:1;20192:6;20189:1;20186:13;20183:2;;;20202:18;;:::i;:::-;-1:-1:-1;20238:9:1;;20173:80::o;20258:120::-;20298:1;20324;20314:2;;20329:18;;:::i;:::-;-1:-1:-1;20363:9:1;;20304:74::o;20383:168::-;20423:7;20489:1;20485;20481:6;20477:14;20474:1;20471:21;20466:1;20459:9;20452:17;20448:45;20445:2;;;20496:18;;:::i;:::-;-1:-1:-1;20536:9:1;;20435:116::o;20556:125::-;20596:4;20624:1;20621;20618:8;20615:2;;;20629:18;;:::i;:::-;-1:-1:-1;20666:9:1;;20605:76::o;20686:258::-;20758:1;20768:113;20782:6;20779:1;20776:13;20768:113;;;20858:11;;;20852:18;20839:11;;;20832:39;20804:2;20797:10;20768:113;;;20899:6;20896:1;20893:13;20890:2;;;-1:-1:-1;;20934:1:1;20916:16;;20909:27;20739:205::o;20949:380::-;21028:1;21024:12;;;;21071;;;21092:2;;21146:4;21138:6;21134:17;21124:27;;21092:2;21199;21191:6;21188:14;21168:18;21165:38;21162:2;;;21245:10;21240:3;21236:20;21233:1;21226:31;21280:4;21277:1;21270:15;21308:4;21305:1;21298:15;21162:2;;21004:325;;;:::o;21334:135::-;21373:3;-1:-1:-1;;21394:17:1;;21391:2;;;21414:18;;:::i;:::-;-1:-1:-1;21461:1:1;21450:13;;21381:88::o;21474:112::-;21506:1;21532;21522:2;;21537:18;;:::i;:::-;-1:-1:-1;21571:9:1;;21512:74::o;21591:127::-;21652:10;21647:3;21643:20;21640:1;21633:31;21683:4;21680:1;21673:15;21707:4;21704:1;21697:15;21723:127;21784:10;21779:3;21775:20;21772:1;21765:31;21815:4;21812:1;21805:15;21839:4;21836:1;21829:15;21855:127;21916:10;21911:3;21907:20;21904:1;21897:31;21947:4;21944:1;21937:15;21971:4;21968:1;21961:15;21987:127;22048:10;22043:3;22039:20;22036:1;22029:31;22079:4;22076:1;22069:15;22103:4;22100:1;22093:15;22119:127;22180:10;22175:3;22171:20;22168:1;22161:31;22211:4;22208:1;22201:15;22235:4;22232:1;22225:15;22251:131;-1:-1:-1;;;;;22326:31:1;;22316:42;;22306:2;;22372:1;22369;22362:12;22387:131;-1:-1:-1;;;;;;22461:32:1;;22451:43;;22441:2;;22508:1;22505;22498:12

Swarm Source

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