ETH Price: $3,452.96 (-1.00%)
Gas: 10 Gwei

Token

Trollz (TRZ)
 

Overview

Max Total Supply

1,000 TRZ

Holders

389

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ginette01.eth
Balance
1 TRZ
0x5af84f1318241b4224ecfc9e6d4e97a3118cd38f
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:
Trollz

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-08-26
*/

// SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

// File: @openzeppelin/contracts/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 tokenId);

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

// File: @openzeppelin/contracts/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/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 `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

// File: @openzeppelin/contracts/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: balance query for the zero address"
        );
        return _balances[owner];
    }

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

// File: @openzeppelin/contracts/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();
    }
}

pragma solidity ^0.8.0;

/// @author Aymane Ait Ben Ali /// [email protected] ///
contract Trollz is ERC721Enumerable, Ownable {
    using Counters for Counters.Counter;
    Counters.Counter private _tokenId;

    //VARIABLES
    uint256 public constant TrollzCap = 1000;
    uint256 public price = 70000000000000; //0.07 Ether
    string baseTokenURI;
    bool public saleOpen;
    address member1 = 0x4E5c60C857d399C81b8036bE8a1822ce96aFfDa1; //LTF
    address member2 = 0x5833A1675BF894abeCF365Fcd8C8741EC7Ad3630; //Sowben
    address member3 = 0xAd3948B4Aa2917c36fc0125C266b323f81805D36; //Mehz
    address member4 = 0x1002CA2d139962cA9bA0B560C7A703b4A149F6e0; //Aymane
    address member5 = 0x49282E5E05fE59A724641eE867641b5883C02E58; //Foudres
    mapping (address => bool) earlyBuyers;
    bool privateCalled;

    //EVENTS
    event TrollzMinted(uint256 totalMinted);

    constructor(string memory baseURI) ERC721("Trollz", "TRZ") {
        baseTokenURI = baseURI;
        
        //EARLYBUYERS
        earlyBuyers[0x8FB51e44Ea2140c49B911cD8d56f2a3730712ae2] = true;
        earlyBuyers[0x5f96816E479631903068520A407b5F170E989D2C] = true;
        earlyBuyers[0x5D9a1979c554F9f199d8390EBA88E25234882d3f] = true;
        earlyBuyers[0x070339e8016ffC869dfAf647fbd78513a7d735b1] = true;
        earlyBuyers[0x72B786Ff9ef6D56A2B2dDDcfFF9bf78f353B145b] = true;
        earlyBuyers[0x08257a3230469fCECBdA4155b27CBb65F75c40a4] = true;
        earlyBuyers[0xde89F85Be02E67f23BB257D622b8C227b78a10f2] = true;
        earlyBuyers[0xa9793B01BA723A37463E2e35ac7Ed98773820650] = true;
        earlyBuyers[0xe68649168f64468299cAf58b38400F327B9925C3] = true;
        earlyBuyers[0x353339c5EBc17B740BE010A6F7C5627b46B005e5] = true;
        earlyBuyers[0x807338C1EE3c87A19eEbf5351341A2638dc167c5] = true;
        earlyBuyers[0x20d60A9b4256920Dd556c0B42592CB1f355C02b1] = true;
        earlyBuyers[0xd5256515a53AAF89533cb9ffd06c0139A763A696] = true;
        earlyBuyers[0xEbb579d06f0C1995c66C115A0c1FbA796353E306] = true;
        earlyBuyers[0xC4A8C46649EA616dDeABF722fEe5bCC48b806e83] = true;
        earlyBuyers[0x89Bdd94180F6a1614306cB350a7C51979701Bc49] = true;
        earlyBuyers[0x3AAf439cb62DFCDc833210bE3459AEf99D7141D8] = true;
        earlyBuyers[0x2D1E70b9a850634059E81a05208633Ef03408e79] = true;
        earlyBuyers[0xbA018D9d99714616BaBfA208d2fAA921fa0c2D28] = true;
        earlyBuyers[0xF01874B954e8a9B9F65F2489087BC49EfA479b07] = true;
        earlyBuyers[0x9974D0dD1792A77b1330Ea80d90E00Fb07207Fa3] = true;
        earlyBuyers[0xeCFE8260eF208456A61405F8342473f532A2b9ee] = true;
        earlyBuyers[0x3C4d30Ef2D16e3E76f0BC5f816a5E89Dfe8e2962] = true;
        earlyBuyers[0xD5938CD8c7A9e43E343D3F5Aac54C569abc5C329] = true;
        earlyBuyers[0x9640e2Ef3633ac688BCA2D1687d794648AD34aA7] = true;
        earlyBuyers[0x74C609f880EB4655fa3aBB448e221dE38325fa84] = true;
        earlyBuyers[0x6974535d3408a989d9D6f7a6ec62A50767715a2E] = true;
        earlyBuyers[0x4c5E3C3dD1F8506AAb7D93a0244ff08242219774] = true;
        earlyBuyers[0x3672cEB80F7b77c5Cf5f0d8E4d8D253B885DB65d] = true;
        earlyBuyers[0x7d1EB41c01092b3cF44FB315c93Bd2fb647bbE62] = true;
        earlyBuyers[0xFB988F8AB27a2a4d0f5271C02A06E52Ec15B35ff] = true;
    }

    function walletOfOwner(address _owner) external view returns (uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }

        return tokensId;
    }

    function flipSaleState() public onlyOwner {
        saleOpen = !saleOpen;
    }

    function buyTrollz(uint256 _amount) public payable {
        require(block.number > 13103500, "You can't mint yet.");
        require(saleOpen, "Sale is not open yet");
        require(_amount > 0 && _amount <= 20, "You have to mint between 1 and 20 Trollz.");
        require(totalSupply() + _amount <= TrollzCap, "Trollz cap will be exceeded.");
        require(msg.value >= price * _amount, "Ether amount is not correct");

        for (uint256 i = 0; i < _amount; i++) {
            _mint(msg.sender);
        }
    }
    
    function earlyBuyTrollz(uint256 _amount) public payable {
        require(block.number > 13103460, "You can't mint yet.");
        require(saleOpen, "Sale is not open yet");
        require(_amount > 0 && _amount <= 5, "You have to mint between 1 and 5 Trollz.");
        require(totalSupply() + _amount <= TrollzCap, "Trollz cap will be exceeded.");
        require(msg.value >= price * _amount, "Ether amount is not correct");

        for (uint256 i = 0; i < _amount; i++) {
            _mint(msg.sender);
        }
    }
    
    function privateBuyTrollz() public onlyMember2 {
        require(privateCalled == false, "You already called this function.");
        
        for (uint256 i = 0; i < 10; i++) {
            _mint(msg.sender);
        }
        privateCalled = true;
    }

    function withdraw() payable public {
        payable(member1).transfer(address(this).balance / 4);
        payable(member2).transfer(address(this).balance / 2);
        payable(member3).transfer(address(this).balance / 10);
        payable(member4).transfer(address(this).balance / 10);
        payable(member5).transfer(address(this).balance / 20);
    }

    function _mint(address _to) private {
        _tokenId.increment();
        uint256 tokenId = _tokenId.current();
        _safeMint(_to, tokenId);
        emit TrollzMinted(tokenId);
    }

    function _baseURI() internal view virtual override returns (string memory) {
        return baseTokenURI;
    }
    
    //MODIFIER
    modifier onlyMember2 {
        require(msg.sender == member2);
    _;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"totalMinted","type":"uint256"}],"name":"TrollzMinted","type":"event"},{"inputs":[],"name":"TrollzCap","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":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"buyTrollz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"earlyBuyTrollz","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"privateBuyTrollz","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","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":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052653faa25226000600c55600e8054744e5c60c857d399c81b8036be8a1822ce96affda100610100600160a81b0319909116179055600f80546001600160a01b0319908116735833a1675bf894abecf365fcd8c8741ec7ad36301790915560108054821673ad3948b4aa2917c36fc0125c266b323f81805d36179055601180548216731002ca2d139962ca9ba0b560c7a703b4a149f6e0179055601280549091167349282e5e05fe59a724641ee867641b5883c02e58179055348015620000c957600080fd5b5060405162002d2938038062002d29833981016040819052620000ec916200079e565b60408051808201825260068152652a3937b6363d60d11b6020808301918252835180850190945260038452622a292d60e91b9084015281519192916200013591600091620006f8565b5080516200014b906001906020840190620006f8565b5050506200016862000162620006a260201b60201c565b620006a6565b80516200017d90600d906020840190620006f8565b505060136020527f971ebad2e5cf15f6da2919e05ac2befb41a771870a269ea37b0b53b4dcb11e5e8054600160ff1991821681179092557fce753ed4fff51a353ebf25846767c3b998992f1af4bf15a8e15f374f464dd6b080548216831790557f355a94e5253600d47d37cbe09a0c20c34b1a932d153292e7ebdd393da3d1dcd480548216831790557f4e8c5e9202eb0131bb648baa8509543cb74acdf50bbc3257690d62f87518f9ab80548216831790557f2db1f9d639c1e79ea5e68436dbfdf70a6ccfc9e498ab064b39e1ddc43f3ba14f80548216831790557f1cf15c25f470257af840884a628e0eada49e3a266f13acd0c1c0e93a0837b70b80548216831790557fff7fbea86ed4348b333e0cbe5fa49b193a4734837424e43cc3a99ab059b1b28680548216831790557fe42b6db8fa4b0b368a8b356e3bc0762ccd7c5af9194867b2ee3df6aa07e5e0c480548216831790557ff6db18e540944fe48feeeb0b2c93136f3522aca27b87ae56580686649c53838280548216831790557fe9baf054616469ef1585e98b9293606d8b809fd0bf46bc3aca96d3ad528f59b680548216831790557fecfda6c6efda98fc4a4fb4a6b6b066b7f10792b8366692b105e88cb05c2b7c7880548216831790557ff65db92dd407da23952800d7bb7e39dc95d6dcefa935c01af57c4df26743c1ac80548216831790557fcb96ccc710e8806394f6be050cb4f969dfe4c6471f4fc3a52edf62222afa06f780548216831790557f12e52c8f2a78465b7432e0d8bc2e0f9173f9677b0ead7f56fb1baca0774e34ab80548216831790557fa565bbf4a7e3f23a7342e9a0f1b1b3e6e444f52bfb076e29a957f38dcb450e5a80548216831790557f82b4696120298d31f997bbb411d42da82754371dbcc17de78e86ee4b74b0688080548216831790557fe19097ee8346fc7cdbffab8b4ec17588513c8b942badb36cb7eaacb72a00f75c80548216831790557f1e30a91bc30d8aa30714dafc67b6e85846229c23b5002997184f04108451898780548216831790557f4dd2de71dec58049041b15dedbf892015f2c468c303db0c052bfa6ecc0967ade80548216831790557ffc181dffbd0ee631634e15b8f37ea32f1dfc89b65ae55ca640512a7efaec80d780548216831790557fdb54558b1da9735b83169ccdf74a58cf9cd6d26027a9febfc56643ed7bcda81a80548216831790557fa30365ace4eba1392f13433adf9c70697024b3040b6db4399b6d3a9f08e4695880548216831790557f92d3649d34f6d3bea55d6d0117ed8f20b33e51bab2185611deec309250f6151f80548216831790557fc90a893e7e1de05f7db5bf54bf26aa71dd4f4564f4675010535055115a31b39d80548216831790557faa125681b151209a4fae37ea65a3a766271914cb9d4b89792ee8985c7221103f80548216831790557fca57f918dc94ded352e0bc0ad50829bb2931e65d35967328a19340db95bdb6d680548216831790557fe7c21b0f30d1d8f5faba3cd4b3be4c46ab6fedb57ea5e9c7a04a50a71b744f0b80548216831790557fcd90bd57b90d98fdaf4abdd22a575ce4ac87fe793f61932014bd5f1396ecc88680548216831790557ffe081017fc9134651a64b47be0313d2879ec48cf1e0324225e58d3b1ba6b4d5e80548216831790557fe765a539439c40c24abde8ca86b2acc51258b5ae7ef98f32fbe6d05b1beeda16805482168317905573fb988f8ab27a2a4d0f5271c02a06e52ec15b35ff6000527f298988c5e7915a84d6c9c4a92bf5f7ca15485ae9ef6f1efc6825f9fb58c14a5880549091169091179055620008c0565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000706906200086d565b90600052602060002090601f0160209004810192826200072a576000855562000775565b82601f106200074557805160ff191683800117855562000775565b8280016001018555821562000775579182015b828111156200077557825182559160200191906001019062000758565b506200078392915062000787565b5090565b5b8082111562000783576000815560010162000788565b60006020808385031215620007b1578182fd5b82516001600160401b0380821115620007c8578384fd5b818501915085601f830112620007dc578384fd5b815181811115620007f157620007f1620008aa565b604051601f8201601f1916810185018381118282101715620008175762000817620008aa565b60405281815283820185018810156200082e578586fd5b8592505b8183101562000851578383018501518184018601529184019162000832565b818311156200086257858583830101525b979650505050505050565b6002810460018216806200088257607f821691505b60208210811415620008a457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61245980620008d06000396000f3fe6080604052600436106101b75760003560e01c80635e392647116100ec578063a035b1fe1161008a578063c87b56dd11610064578063c87b56dd14610475578063c8a9c33414610495578063e985e9c5146104a8578063f2fde38b146104c8576101b7565b8063a035b1fe14610420578063a22cb46514610435578063b88d4fde14610455576101b7565b8063715018a6116100c6578063715018a6146103cc5780638da5cb5b146103e157806395d89b41146103f657806399288dbb1461040b576101b7565b80635e392647146103775780636352211e1461038c57806370a08231146103ac576101b7565b80632932d013116101595780633ccfd60b116101335780633ccfd60b1461030257806342842e0e1461030a578063438b63001461032a5780634f6ccce714610357576101b7565b80632932d013146102b85780632f745c59146102cd57806334918dfd146102ed576101b7565b8063095ea7b311610195578063095ea7b3146102415780630ce1e3231461026357806318160ddd1461027657806323b872dd14610298576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611ad4565b6104e8565b6040516101e99190611c14565b60405180910390f35b3480156101fe57600080fd5b50610207610515565b6040516101e99190611c1f565b34801561022057600080fd5b5061023461022f366004611b0c565b6105a7565b6040516101e99190611b7f565b34801561024d57600080fd5b5061026161025c366004611aab565b6105f3565b005b610261610271366004611b0c565b61068b565b34801561028257600080fd5b5061028b610787565b6040516101e991906122ca565b3480156102a457600080fd5b506102616102b336600461196a565b61078d565b3480156102c457600080fd5b506102616107c5565b3480156102d957600080fd5b5061028b6102e8366004611aab565b610836565b3480156102f957600080fd5b50610261610888565b6102616108db565b34801561031657600080fd5b5061026161032536600461196a565b610a31565b34801561033657600080fd5b5061034a61034536600461191e565b610a4c565b6040516101e99190611bd0565b34801561036357600080fd5b5061028b610372366004611b0c565b610b0a565b34801561038357600080fd5b5061028b610b65565b34801561039857600080fd5b506102346103a7366004611b0c565b610b6b565b3480156103b857600080fd5b5061028b6103c736600461191e565b610ba0565b3480156103d857600080fd5b50610261610be4565b3480156103ed57600080fd5b50610234610c2f565b34801561040257600080fd5b50610207610c3e565b34801561041757600080fd5b506101dc610c4d565b34801561042c57600080fd5b5061028b610c56565b34801561044157600080fd5b50610261610450366004611a71565b610c5c565b34801561046157600080fd5b506102616104703660046119a5565b610d2a565b34801561048157600080fd5b50610207610490366004611b0c565b610d69565b6102616104a3366004611b0c565b610dec565b3480156104b457600080fd5b506101dc6104c3366004611938565b610ee4565b3480156104d457600080fd5b506102616104e336600461191e565b610f12565b60006001600160e01b0319821663780e9d6360e01b148061050d575061050d82610f80565b90505b919050565b60606000805461052490612361565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612361565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b282610fc0565b6105d75760405162461bcd60e51b81526004016105ce90611fde565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105fe82610b6b565b9050806001600160a01b0316836001600160a01b031614156106325760405162461bcd60e51b81526004016105ce90612140565b806001600160a01b0316610644610fdd565b6001600160a01b031614806106605750610660816104c3610fdd565b61067c5760405162461bcd60e51b81526004016105ce90611eb9565b6106868383610fe1565b505050565b62c7f16443116106ad5760405162461bcd60e51b81526004016105ce9061221e565b600e5460ff166106cf5760405162461bcd60e51b81526004016105ce90611e3f565b6000811180156106e0575060058111155b6106fc5760405162461bcd60e51b81526004016105ce90612282565b6103e881610708610787565b61071291906122d3565b11156107305760405162461bcd60e51b81526004016105ce90611c32565b80600c5461073e91906122ff565b34101561075d5760405162461bcd60e51b81526004016105ce9061224b565b60005b81811015610783576107713361104f565b8061077b8161239c565b915050610760565b5050565b60085490565b61079e610798610fdd565b826110ac565b6107ba5760405162461bcd60e51b81526004016105ce90612181565b610686838383611131565b600f546001600160a01b031633146107dc57600080fd5b60145460ff16156107ff5760405162461bcd60e51b81526004016105ce90611d83565b60005b600a811015610826576108143361104f565b8061081e8161239c565b915050610802565b506014805460ff19166001179055565b600061084183610ba0565b821061085f5760405162461bcd60e51b81526004016105ce90611c69565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610890610fdd565b6001600160a01b03166108a1610c2f565b6001600160a01b0316146108c75760405162461bcd60e51b81526004016105ce9061202a565b600e805460ff19811660ff90911615179055565b600e5461010090046001600160a01b03166108fc6108fa6004476122eb565b6040518115909202916000818181858888f19350505050158015610922573d6000803e3d6000fd5b50600f546001600160a01b03166108fc61093d6002476122eb565b6040518115909202916000818181858888f19350505050158015610965573d6000803e3d6000fd5b506010546001600160a01b03166108fc610980600a476122eb565b6040518115909202916000818181858888f193505050501580156109a8573d6000803e3d6000fd5b506011546001600160a01b03166108fc6109c3600a476122eb565b6040518115909202916000818181858888f193505050501580156109eb573d6000803e3d6000fd5b506012546001600160a01b03166108fc610a066014476122eb565b6040518115909202916000818181858888f19350505050158015610a2e573d6000803e3d6000fd5b50565b61068683838360405180602001604052806000815250610d2a565b60606000610a5983610ba0565b905060008167ffffffffffffffff811115610a8457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610aad578160200160208202803683370190505b50905060005b82811015610b0257610ac58582610836565b828281518110610ae557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610afa8161239c565b915050610ab3565b509392505050565b6000610b14610787565b8210610b325760405162461bcd60e51b81526004016105ce906121d2565b60088281548110610b5357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6103e881565b6000818152600260205260408120546001600160a01b03168061050d5760405162461bcd60e51b81526004016105ce90611f60565b60006001600160a01b038216610bc85760405162461bcd60e51b81526004016105ce90611f16565b506001600160a01b031660009081526003602052604090205490565b610bec610fdd565b6001600160a01b0316610bfd610c2f565b6001600160a01b031614610c235760405162461bcd60e51b81526004016105ce9061202a565b610c2d600061125e565b565b600a546001600160a01b031690565b60606001805461052490612361565b600e5460ff1681565b600c5481565b610c64610fdd565b6001600160a01b0316826001600160a01b03161415610c955760405162461bcd60e51b81526004016105ce90611e08565b8060056000610ca2610fdd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ce6610fdd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d1e9190611c14565b60405180910390a35050565b610d3b610d35610fdd565b836110ac565b610d575760405162461bcd60e51b81526004016105ce90612181565b610d63848484846112b0565b50505050565b6060610d7482610fc0565b610d905760405162461bcd60e51b81526004016105ce906120a8565b6000610d9a6112e3565b90506000815111610dba5760405180602001604052806000815250610de5565b80610dc4846112f2565b604051602001610dd5929190611b50565b6040516020818303038152906040525b9392505050565b62c7f18c4311610e0e5760405162461bcd60e51b81526004016105ce9061221e565b600e5460ff16610e305760405162461bcd60e51b81526004016105ce90611e3f565b600081118015610e41575060148111155b610e5d5760405162461bcd60e51b81526004016105ce906120f7565b6103e881610e69610787565b610e7391906122d3565b1115610e915760405162461bcd60e51b81526004016105ce90611c32565b80600c54610e9f91906122ff565b341015610ebe5760405162461bcd60e51b81526004016105ce9061224b565b60005b8181101561078357610ed23361104f565b80610edc8161239c565b915050610ec1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f1a610fdd565b6001600160a01b0316610f2b610c2f565b6001600160a01b031614610f515760405162461bcd60e51b81526004016105ce9061202a565b6001600160a01b038116610f775760405162461bcd60e51b81526004016105ce90611d06565b610a2e8161125e565b60006001600160e01b031982166380ac58cd60e01b1480610fb157506001600160e01b03198216635b5e139f60e01b145b8061050d575061050d8261140d565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101682610b6b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611059600b611426565b6000611065600b61142f565b90506110718282611433565b7f380bac96f1d2302b0a3b41965336df651a3a393359c124cac2f7d327b011bdd0816040516110a091906122ca565b60405180910390a15050565b60006110b782610fc0565b6110d35760405162461bcd60e51b81526004016105ce90611e6d565b60006110de83610b6b565b9050806001600160a01b0316846001600160a01b031614806111195750836001600160a01b031661110e846105a7565b6001600160a01b0316145b8061112957506111298185610ee4565b949350505050565b826001600160a01b031661114482610b6b565b6001600160a01b03161461116a5760405162461bcd60e51b81526004016105ce9061205f565b6001600160a01b0382166111905760405162461bcd60e51b81526004016105ce90611dc4565b61119b83838361144d565b6111a6600082610fe1565b6001600160a01b03831660009081526003602052604081208054600192906111cf90849061231e565b90915550506001600160a01b03821660009081526003602052604081208054600192906111fd9084906122d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112bb848484611131565b6112c7848484846114d6565b610d635760405162461bcd60e51b81526004016105ce90611cb4565b6060600d805461052490612361565b60608161131757506040805180820190915260018152600360fc1b6020820152610510565b8160005b8115611341578061132b8161239c565b915061133a9050600a836122eb565b915061131b565b60008167ffffffffffffffff81111561136a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611394576020820181803683370190505b5090505b8415611129576113a960018361231e565b91506113b6600a866123b7565b6113c19060306122d3565b60f81b8183815181106113e457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611406600a866122eb565b9450611398565b6001600160e01b031981166301ffc9a760e01b14919050565b80546001019055565b5490565b6107838282604051806020016040528060008152506115f1565b611458838383610686565b6001600160a01b0383166114745761146f81611624565b611497565b816001600160a01b0316836001600160a01b031614611497576114978382611668565b6001600160a01b0382166114b3576114ae81611705565b610686565b826001600160a01b0316826001600160a01b0316146106865761068682826117de565b60006114ea846001600160a01b0316611822565b156115e657836001600160a01b031663150b7a02611506610fdd565b8786866040518563ffffffff1660e01b81526004016115289493929190611b93565b602060405180830381600087803b15801561154257600080fd5b505af1925050508015611572575060408051601f3d908101601f1916820190925261156f91810190611af0565b60015b6115cc573d8080156115a0576040519150601f19603f3d011682016040523d82523d6000602084013e6115a5565b606091505b5080516115c45760405162461bcd60e51b81526004016105ce90611cb4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611129565b506001949350505050565b6115fb8383611828565b61160860008484846114d6565b6106865760405162461bcd60e51b81526004016105ce90611cb4565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161167584610ba0565b61167f919061231e565b6000838152600760205260409020549091508082146116d2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117179060019061231e565b6000838152600960205260408120546008805493945090928490811061174d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061177c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117c257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006117e983610ba0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b03821661184e5760405162461bcd60e51b81526004016105ce90611fa9565b61185781610fc0565b156118745760405162461bcd60e51b81526004016105ce90611d4c565b6118806000838361144d565b6001600160a01b03821660009081526003602052604081208054600192906118a99084906122d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b038116811461051057600080fd5b60006020828403121561192f578081fd5b610de582611907565b6000806040838503121561194a578081fd5b61195383611907565b915061196160208401611907565b90509250929050565b60008060006060848603121561197e578081fd5b61198784611907565b925061199560208501611907565b9150604084013590509250925092565b600080600080608085870312156119ba578081fd5b6119c385611907565b935060206119d2818701611907565b935060408601359250606086013567ffffffffffffffff808211156119f5578384fd5b818801915088601f830112611a08578384fd5b813581811115611a1a57611a1a6123f7565b604051601f8201601f1916810185018381118282101715611a3d57611a3d6123f7565b60405281815283820185018b1015611a53578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611a83578182fd5b611a8c83611907565b915060208301358015158114611aa0578182fd5b809150509250929050565b60008060408385031215611abd578182fd5b611ac683611907565b946020939093013593505050565b600060208284031215611ae5578081fd5b8135610de58161240d565b600060208284031215611b01578081fd5b8151610de58161240d565b600060208284031215611b1d578081fd5b5035919050565b60008151808452611b3c816020860160208601612335565b601f01601f19169290920160200192915050565b60008351611b62818460208801612335565b835190830190611b76818360208801612335565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bc690830184611b24565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c0857835183529284019291840191600101611bec565b50909695505050505050565b901515815260200190565b600060208252610de56020830184611b24565b6020808252601c908201527f54726f6c6c7a206361702077696c6c2062652065786365656465642e00000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526021908201527f596f7520616c72656164792063616c6c656420746869732066756e6374696f6e6040820152601760f91b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526029908201527f596f75206861766520746f206d696e74206265747765656e203120616e64203260408201526818102a3937b6363d1760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601390820152722cb7ba9031b0b713ba1036b4b73a103cb2ba1760691b604082015260600190565b6020808252601b908201527f457468657220616d6f756e74206973206e6f7420636f72726563740000000000604082015260600190565b60208082526028908201527f596f75206861766520746f206d696e74206265747765656e203120616e642035604082015267102a3937b6363d1760c11b606082015260800190565b90815260200190565b600082198211156122e6576122e66123cb565b500190565b6000826122fa576122fa6123e1565b500490565b6000816000190483118215151615612319576123196123cb565b500290565b600082821015612330576123306123cb565b500390565b60005b83811015612350578181015183820152602001612338565b83811115610d635750506000910152565b60028104600182168061237557607f821691505b6020821081141561239657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b0576123b06123cb565b5060010190565b6000826123c6576123c66123e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2e57600080fdfea2646970667358221220aac6833ed0ca520dfe69d579f4c22036317ef73f5167f87b1f177285a85805d164736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d575059774c436a6a59644b72764453596a7a4e7a574e4c724c4d75796947516950414d6276765447633835412f00000000000000000000

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80635e392647116100ec578063a035b1fe1161008a578063c87b56dd11610064578063c87b56dd14610475578063c8a9c33414610495578063e985e9c5146104a8578063f2fde38b146104c8576101b7565b8063a035b1fe14610420578063a22cb46514610435578063b88d4fde14610455576101b7565b8063715018a6116100c6578063715018a6146103cc5780638da5cb5b146103e157806395d89b41146103f657806399288dbb1461040b576101b7565b80635e392647146103775780636352211e1461038c57806370a08231146103ac576101b7565b80632932d013116101595780633ccfd60b116101335780633ccfd60b1461030257806342842e0e1461030a578063438b63001461032a5780634f6ccce714610357576101b7565b80632932d013146102b85780632f745c59146102cd57806334918dfd146102ed576101b7565b8063095ea7b311610195578063095ea7b3146102415780630ce1e3231461026357806318160ddd1461027657806323b872dd14610298576101b7565b806301ffc9a7146101bc57806306fdde03146101f2578063081812fc14610214575b600080fd5b3480156101c857600080fd5b506101dc6101d7366004611ad4565b6104e8565b6040516101e99190611c14565b60405180910390f35b3480156101fe57600080fd5b50610207610515565b6040516101e99190611c1f565b34801561022057600080fd5b5061023461022f366004611b0c565b6105a7565b6040516101e99190611b7f565b34801561024d57600080fd5b5061026161025c366004611aab565b6105f3565b005b610261610271366004611b0c565b61068b565b34801561028257600080fd5b5061028b610787565b6040516101e991906122ca565b3480156102a457600080fd5b506102616102b336600461196a565b61078d565b3480156102c457600080fd5b506102616107c5565b3480156102d957600080fd5b5061028b6102e8366004611aab565b610836565b3480156102f957600080fd5b50610261610888565b6102616108db565b34801561031657600080fd5b5061026161032536600461196a565b610a31565b34801561033657600080fd5b5061034a61034536600461191e565b610a4c565b6040516101e99190611bd0565b34801561036357600080fd5b5061028b610372366004611b0c565b610b0a565b34801561038357600080fd5b5061028b610b65565b34801561039857600080fd5b506102346103a7366004611b0c565b610b6b565b3480156103b857600080fd5b5061028b6103c736600461191e565b610ba0565b3480156103d857600080fd5b50610261610be4565b3480156103ed57600080fd5b50610234610c2f565b34801561040257600080fd5b50610207610c3e565b34801561041757600080fd5b506101dc610c4d565b34801561042c57600080fd5b5061028b610c56565b34801561044157600080fd5b50610261610450366004611a71565b610c5c565b34801561046157600080fd5b506102616104703660046119a5565b610d2a565b34801561048157600080fd5b50610207610490366004611b0c565b610d69565b6102616104a3366004611b0c565b610dec565b3480156104b457600080fd5b506101dc6104c3366004611938565b610ee4565b3480156104d457600080fd5b506102616104e336600461191e565b610f12565b60006001600160e01b0319821663780e9d6360e01b148061050d575061050d82610f80565b90505b919050565b60606000805461052490612361565b80601f016020809104026020016040519081016040528092919081815260200182805461055090612361565b801561059d5780601f106105725761010080835404028352916020019161059d565b820191906000526020600020905b81548152906001019060200180831161058057829003601f168201915b5050505050905090565b60006105b282610fc0565b6105d75760405162461bcd60e51b81526004016105ce90611fde565b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006105fe82610b6b565b9050806001600160a01b0316836001600160a01b031614156106325760405162461bcd60e51b81526004016105ce90612140565b806001600160a01b0316610644610fdd565b6001600160a01b031614806106605750610660816104c3610fdd565b61067c5760405162461bcd60e51b81526004016105ce90611eb9565b6106868383610fe1565b505050565b62c7f16443116106ad5760405162461bcd60e51b81526004016105ce9061221e565b600e5460ff166106cf5760405162461bcd60e51b81526004016105ce90611e3f565b6000811180156106e0575060058111155b6106fc5760405162461bcd60e51b81526004016105ce90612282565b6103e881610708610787565b61071291906122d3565b11156107305760405162461bcd60e51b81526004016105ce90611c32565b80600c5461073e91906122ff565b34101561075d5760405162461bcd60e51b81526004016105ce9061224b565b60005b81811015610783576107713361104f565b8061077b8161239c565b915050610760565b5050565b60085490565b61079e610798610fdd565b826110ac565b6107ba5760405162461bcd60e51b81526004016105ce90612181565b610686838383611131565b600f546001600160a01b031633146107dc57600080fd5b60145460ff16156107ff5760405162461bcd60e51b81526004016105ce90611d83565b60005b600a811015610826576108143361104f565b8061081e8161239c565b915050610802565b506014805460ff19166001179055565b600061084183610ba0565b821061085f5760405162461bcd60e51b81526004016105ce90611c69565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b610890610fdd565b6001600160a01b03166108a1610c2f565b6001600160a01b0316146108c75760405162461bcd60e51b81526004016105ce9061202a565b600e805460ff19811660ff90911615179055565b600e5461010090046001600160a01b03166108fc6108fa6004476122eb565b6040518115909202916000818181858888f19350505050158015610922573d6000803e3d6000fd5b50600f546001600160a01b03166108fc61093d6002476122eb565b6040518115909202916000818181858888f19350505050158015610965573d6000803e3d6000fd5b506010546001600160a01b03166108fc610980600a476122eb565b6040518115909202916000818181858888f193505050501580156109a8573d6000803e3d6000fd5b506011546001600160a01b03166108fc6109c3600a476122eb565b6040518115909202916000818181858888f193505050501580156109eb573d6000803e3d6000fd5b506012546001600160a01b03166108fc610a066014476122eb565b6040518115909202916000818181858888f19350505050158015610a2e573d6000803e3d6000fd5b50565b61068683838360405180602001604052806000815250610d2a565b60606000610a5983610ba0565b905060008167ffffffffffffffff811115610a8457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610aad578160200160208202803683370190505b50905060005b82811015610b0257610ac58582610836565b828281518110610ae557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610afa8161239c565b915050610ab3565b509392505050565b6000610b14610787565b8210610b325760405162461bcd60e51b81526004016105ce906121d2565b60088281548110610b5357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b6103e881565b6000818152600260205260408120546001600160a01b03168061050d5760405162461bcd60e51b81526004016105ce90611f60565b60006001600160a01b038216610bc85760405162461bcd60e51b81526004016105ce90611f16565b506001600160a01b031660009081526003602052604090205490565b610bec610fdd565b6001600160a01b0316610bfd610c2f565b6001600160a01b031614610c235760405162461bcd60e51b81526004016105ce9061202a565b610c2d600061125e565b565b600a546001600160a01b031690565b60606001805461052490612361565b600e5460ff1681565b600c5481565b610c64610fdd565b6001600160a01b0316826001600160a01b03161415610c955760405162461bcd60e51b81526004016105ce90611e08565b8060056000610ca2610fdd565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610ce6610fdd565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610d1e9190611c14565b60405180910390a35050565b610d3b610d35610fdd565b836110ac565b610d575760405162461bcd60e51b81526004016105ce90612181565b610d63848484846112b0565b50505050565b6060610d7482610fc0565b610d905760405162461bcd60e51b81526004016105ce906120a8565b6000610d9a6112e3565b90506000815111610dba5760405180602001604052806000815250610de5565b80610dc4846112f2565b604051602001610dd5929190611b50565b6040516020818303038152906040525b9392505050565b62c7f18c4311610e0e5760405162461bcd60e51b81526004016105ce9061221e565b600e5460ff16610e305760405162461bcd60e51b81526004016105ce90611e3f565b600081118015610e41575060148111155b610e5d5760405162461bcd60e51b81526004016105ce906120f7565b6103e881610e69610787565b610e7391906122d3565b1115610e915760405162461bcd60e51b81526004016105ce90611c32565b80600c54610e9f91906122ff565b341015610ebe5760405162461bcd60e51b81526004016105ce9061224b565b60005b8181101561078357610ed23361104f565b80610edc8161239c565b915050610ec1565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b610f1a610fdd565b6001600160a01b0316610f2b610c2f565b6001600160a01b031614610f515760405162461bcd60e51b81526004016105ce9061202a565b6001600160a01b038116610f775760405162461bcd60e51b81526004016105ce90611d06565b610a2e8161125e565b60006001600160e01b031982166380ac58cd60e01b1480610fb157506001600160e01b03198216635b5e139f60e01b145b8061050d575061050d8261140d565b6000908152600260205260409020546001600160a01b0316151590565b3390565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061101682610b6b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611059600b611426565b6000611065600b61142f565b90506110718282611433565b7f380bac96f1d2302b0a3b41965336df651a3a393359c124cac2f7d327b011bdd0816040516110a091906122ca565b60405180910390a15050565b60006110b782610fc0565b6110d35760405162461bcd60e51b81526004016105ce90611e6d565b60006110de83610b6b565b9050806001600160a01b0316846001600160a01b031614806111195750836001600160a01b031661110e846105a7565b6001600160a01b0316145b8061112957506111298185610ee4565b949350505050565b826001600160a01b031661114482610b6b565b6001600160a01b03161461116a5760405162461bcd60e51b81526004016105ce9061205f565b6001600160a01b0382166111905760405162461bcd60e51b81526004016105ce90611dc4565b61119b83838361144d565b6111a6600082610fe1565b6001600160a01b03831660009081526003602052604081208054600192906111cf90849061231e565b90915550506001600160a01b03821660009081526003602052604081208054600192906111fd9084906122d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6112bb848484611131565b6112c7848484846114d6565b610d635760405162461bcd60e51b81526004016105ce90611cb4565b6060600d805461052490612361565b60608161131757506040805180820190915260018152600360fc1b6020820152610510565b8160005b8115611341578061132b8161239c565b915061133a9050600a836122eb565b915061131b565b60008167ffffffffffffffff81111561136a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611394576020820181803683370190505b5090505b8415611129576113a960018361231e565b91506113b6600a866123b7565b6113c19060306122d3565b60f81b8183815181106113e457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611406600a866122eb565b9450611398565b6001600160e01b031981166301ffc9a760e01b14919050565b80546001019055565b5490565b6107838282604051806020016040528060008152506115f1565b611458838383610686565b6001600160a01b0383166114745761146f81611624565b611497565b816001600160a01b0316836001600160a01b031614611497576114978382611668565b6001600160a01b0382166114b3576114ae81611705565b610686565b826001600160a01b0316826001600160a01b0316146106865761068682826117de565b60006114ea846001600160a01b0316611822565b156115e657836001600160a01b031663150b7a02611506610fdd565b8786866040518563ffffffff1660e01b81526004016115289493929190611b93565b602060405180830381600087803b15801561154257600080fd5b505af1925050508015611572575060408051601f3d908101601f1916820190925261156f91810190611af0565b60015b6115cc573d8080156115a0576040519150601f19603f3d011682016040523d82523d6000602084013e6115a5565b606091505b5080516115c45760405162461bcd60e51b81526004016105ce90611cb4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611129565b506001949350505050565b6115fb8383611828565b61160860008484846114d6565b6106865760405162461bcd60e51b81526004016105ce90611cb4565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6000600161167584610ba0565b61167f919061231e565b6000838152600760205260409020549091508082146116d2576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906117179060019061231e565b6000838152600960205260408120546008805493945090928490811061174d57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050806008838154811061177c57634e487b7160e01b600052603260045260246000fd5b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806117c257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006117e983610ba0565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b3b151590565b6001600160a01b03821661184e5760405162461bcd60e51b81526004016105ce90611fa9565b61185781610fc0565b156118745760405162461bcd60e51b81526004016105ce90611d4c565b6118806000838361144d565b6001600160a01b03821660009081526003602052604081208054600192906118a99084906122d3565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b80356001600160a01b038116811461051057600080fd5b60006020828403121561192f578081fd5b610de582611907565b6000806040838503121561194a578081fd5b61195383611907565b915061196160208401611907565b90509250929050565b60008060006060848603121561197e578081fd5b61198784611907565b925061199560208501611907565b9150604084013590509250925092565b600080600080608085870312156119ba578081fd5b6119c385611907565b935060206119d2818701611907565b935060408601359250606086013567ffffffffffffffff808211156119f5578384fd5b818801915088601f830112611a08578384fd5b813581811115611a1a57611a1a6123f7565b604051601f8201601f1916810185018381118282101715611a3d57611a3d6123f7565b60405281815283820185018b1015611a53578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215611a83578182fd5b611a8c83611907565b915060208301358015158114611aa0578182fd5b809150509250929050565b60008060408385031215611abd578182fd5b611ac683611907565b946020939093013593505050565b600060208284031215611ae5578081fd5b8135610de58161240d565b600060208284031215611b01578081fd5b8151610de58161240d565b600060208284031215611b1d578081fd5b5035919050565b60008151808452611b3c816020860160208601612335565b601f01601f19169290920160200192915050565b60008351611b62818460208801612335565b835190830190611b76818360208801612335565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611bc690830184611b24565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611c0857835183529284019291840191600101611bec565b50909695505050505050565b901515815260200190565b600060208252610de56020830184611b24565b6020808252601c908201527f54726f6c6c7a206361702077696c6c2062652065786365656465642e00000000604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526021908201527f596f7520616c72656164792063616c6c656420746869732066756e6374696f6e6040820152601760f91b606082015260800190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526014908201527314d85b19481a5cc81b9bdd081bdc195b881e595d60621b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526029908201527f596f75206861766520746f206d696e74206265747765656e203120616e64203260408201526818102a3937b6363d1760b91b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601390820152722cb7ba9031b0b713ba1036b4b73a103cb2ba1760691b604082015260600190565b6020808252601b908201527f457468657220616d6f756e74206973206e6f7420636f72726563740000000000604082015260600190565b60208082526028908201527f596f75206861766520746f206d696e74206265747765656e203120616e642035604082015267102a3937b6363d1760c11b606082015260800190565b90815260200190565b600082198211156122e6576122e66123cb565b500190565b6000826122fa576122fa6123e1565b500490565b6000816000190483118215151615612319576123196123cb565b500290565b600082821015612330576123306123cb565b500390565b60005b83811015612350578181015183820152602001612338565b83811115610d635750506000910152565b60028104600182168061237557607f821691505b6020821081141561239657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156123b0576123b06123cb565b5060010190565b6000826123c6576123c66123e1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610a2e57600080fdfea2646970667358221220aac6833ed0ca520dfe69d579f4c22036317ef73f5167f87b1f177285a85805d164736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d575059774c436a6a59644b72764453596a7a4e7a574e4c724c4d75796947516950414d6276765447633835412f00000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): ipfs://QmWPYwLCjjYdKrvDSYjzNzWNLrLMuyiGQiPAMbvvTGc85A/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d575059774c436a6a59644b72764453596a7a4e7a574e4c
Arg [3] : 724c4d75796947516950414d6276765447633835412f00000000000000000000


Deployed Bytecode Sourcemap

46371:5824:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39872:300;;;;;;;;;;-1:-1:-1;39872:300:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27032:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;28725:308::-;;;;;;;;;;-1:-1:-1;28725:308:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;28248:411::-;;;;;;;;;;-1:-1:-1;28248:411:0;;;;;:::i;:::-;;:::i;:::-;;50587:534;;;;;;:::i;:::-;;:::i;40675:113::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29784:376::-;;;;;;;;;;-1:-1:-1;29784:376:0;;;;;:::i;:::-;;:::i;51133:262::-;;;;;;;;;;;;;:::i;40256:343::-;;;;;;;;;;-1:-1:-1;40256:343:0;;;;;:::i;:::-;;:::i;49955:81::-;;;;;;;;;;;;;:::i;51403:361::-;;;:::i;30231:185::-;;;;;;;;;;-1:-1:-1;30231:185:0;;;;;:::i;:::-;;:::i;49594:353::-;;;;;;;;;;-1:-1:-1;49594:353:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;40865:320::-;;;;;;;;;;-1:-1:-1;40865:320:0;;;;;:::i;:::-;;:::i;46524:40::-;;;;;;;;;;;;;:::i;26639:326::-;;;;;;;;;;-1:-1:-1;26639:326:0;;;;;:::i;:::-;;:::i;26282:295::-;;;;;;;;;;-1:-1:-1;26282:295:0;;;;;:::i;:::-;;:::i;9739:94::-;;;;;;;;;;;;;:::i;9088:87::-;;;;;;;;;;;;;:::i;27201:104::-;;;;;;;;;;;;;:::i;46654:20::-;;;;;;;;;;;;;:::i;46571:37::-;;;;;;;;;;;;;:::i;29105:327::-;;;;;;;;;;-1:-1:-1;29105:327:0;;;;;:::i;:::-;;:::i;30487:365::-;;;;;;;;;;-1:-1:-1;30487:365:0;;;;;:::i;:::-;;:::i;27376:468::-;;;;;;;;;;-1:-1:-1;27376:468:0;;;;;:::i;:::-;;:::i;50044:531::-;;;;;;:::i;:::-;;:::i;29503:214::-;;;;;;;;;;-1:-1:-1;29503:214:0;;;;;:::i;:::-;;:::i;9988:229::-;;;;;;;;;;-1:-1:-1;9988:229:0;;;;;:::i;:::-;;:::i;39872:300::-;40019:4;-1:-1:-1;;;;;;40061:50:0;;-1:-1:-1;;;40061:50:0;;:103;;;40128:36;40152:11;40128:23;:36::i;:::-;40041:123;;39872:300;;;;:::o;27032:100::-;27086:13;27119:5;27112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27032:100;:::o;28725:308::-;28846:7;28893:16;28901:7;28893;:16::i;:::-;28871:110;;;;-1:-1:-1;;;28871:110:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;29001:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29001:24:0;;28725:308::o;28248:411::-;28329:13;28345:23;28360:7;28345:14;:23::i;:::-;28329:39;;28393:5;-1:-1:-1;;;;;28387:11:0;:2;-1:-1:-1;;;;;28387:11:0;;;28379:57;;;;-1:-1:-1;;;28379:57:0;;;;;;;:::i;:::-;28487:5;-1:-1:-1;;;;;28471:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;28471:21:0;;:62;;;;28496:37;28513:5;28520:12;:10;:12::i;28496:37::-;28449:168;;;;-1:-1:-1;;;28449:168:0;;;;;;;:::i;:::-;28630:21;28639:2;28643:7;28630:8;:21::i;:::-;28248:411;;;:::o;50587:534::-;50677:8;50662:12;:23;50654:55;;;;-1:-1:-1;;;50654:55:0;;;;;;;:::i;:::-;50728:8;;;;50720:41;;;;-1:-1:-1;;;50720:41:0;;;;;;;:::i;:::-;50790:1;50780:7;:11;:27;;;;;50806:1;50795:7;:12;;50780:27;50772:80;;;;-1:-1:-1;;;50772:80:0;;;;;;;:::i;:::-;46560:4;50887:7;50871:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;50863:77;;;;-1:-1:-1;;;50863:77:0;;;;;;;:::i;:::-;50980:7;50972:5;;:15;;;;:::i;:::-;50959:9;:28;;50951:68;;;;-1:-1:-1;;;50951:68:0;;;;;;;:::i;:::-;51037:9;51032:82;51056:7;51052:1;:11;51032:82;;;51085:17;51091:10;51085:5;:17::i;:::-;51065:3;;;;:::i;:::-;;;;51032:82;;;;50587:534;:::o;40675:113::-;40763:10;:17;40675:113;:::o;29784:376::-;29993:41;30012:12;:10;:12::i;:::-;30026:7;29993:18;:41::i;:::-;29971:140;;;;-1:-1:-1;;;29971:140:0;;;;;;;:::i;:::-;30124:28;30134:4;30140:2;30144:7;30124:9;:28::i;51133:262::-;52168:7;;-1:-1:-1;;;;;52168:7:0;52154:10;:21;52146:30;;;;;;51199:13:::1;::::0;::::1;;:22;51191:68;;;;-1:-1:-1::0;;;51191:68:0::1;;;;;;;:::i;:::-;51285:9;51280:77;51304:2;51300:1;:6;51280:77;;;51328:17;51334:10;51328:5;:17::i;:::-;51308:3:::0;::::1;::::0;::::1;:::i;:::-;;;;51280:77;;;-1:-1:-1::0;51367:13:0::1;:20:::0;;-1:-1:-1;;51367:20:0::1;51383:4;51367:20;::::0;;51133:262::o;40256:343::-;40398:7;40453:23;40470:5;40453:16;:23::i;:::-;40445:5;:31;40423:124;;;;-1:-1:-1;;;40423:124:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;40565:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;40256:343::o;49955:81::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;50020:8:::1;::::0;;-1:-1:-1;;50008:20:0;::::1;50020:8;::::0;;::::1;50019:9;50008:20;::::0;;49955:81::o;51403:361::-;51457:7;;;;;-1:-1:-1;;;;;51457:7:0;51449:52;51475:25;51499:1;51475:21;:25;:::i;:::-;51449:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51520:7:0;;-1:-1:-1;;;;;51520:7:0;51512:52;51538:25;51562:1;51538:21;:25;:::i;:::-;51512:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51583:7:0;;-1:-1:-1;;;;;51583:7:0;51575:53;51601:26;51625:2;51601:21;:26;:::i;:::-;51575:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51647:7:0;;-1:-1:-1;;;;;51647:7:0;51639:53;51665:26;51689:2;51665:21;:26;:::i;:::-;51639:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51711:7:0;;-1:-1:-1;;;;;51711:7:0;51703:53;51729:26;51753:2;51729:21;:26;:::i;:::-;51703:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51403:361::o;30231:185::-;30369:39;30386:4;30392:2;30396:7;30369:39;;;;;;;;;;;;:16;:39::i;49594:353::-;49656:16;49685:18;49706:17;49716:6;49706:9;:17::i;:::-;49685:38;;49736:25;49778:10;49764:25;;;;;;-1:-1:-1;;;49764:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49764:25:0;;49736:53;;49805:9;49800:112;49824:10;49820:1;:14;49800:112;;;49870:30;49890:6;49898:1;49870:19;:30::i;:::-;49856:8;49865:1;49856:11;;;;;;-1:-1:-1;;;49856:11:0;;;;;;;;;;;;;;;;;;:44;49836:3;;;;:::i;:::-;;;;49800:112;;;-1:-1:-1;49931:8:0;49594:353;-1:-1:-1;;;49594:353:0:o;40865:320::-;40985:7;41040:30;:28;:30::i;:::-;41032:5;:38;41010:132;;;;-1:-1:-1;;;41010:132:0;;;;;;;:::i;:::-;41160:10;41171:5;41160:17;;;;;;-1:-1:-1;;;41160:17:0;;;;;;;;;;;;;;;;;41153:24;;40865:320;;;:::o;46524:40::-;46560:4;46524:40;:::o;26639:326::-;26756:7;26797:16;;;:7;:16;;;;;;-1:-1:-1;;;;;26797:16:0;26846:19;26824:110;;;;-1:-1:-1;;;26824:110:0;;;;;;;:::i;26282:295::-;26399:7;-1:-1:-1;;;;;26446:19:0;;26424:111;;;;-1:-1:-1;;;26424:111:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;26553:16:0;;;;;:9;:16;;;;;;;26282:295::o;9739:94::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;9804:21:::1;9822:1;9804:9;:21::i;:::-;9739:94::o:0;9088:87::-;9161:6;;-1:-1:-1;;;;;9161:6:0;9088:87;:::o;27201:104::-;27257:13;27290:7;27283:14;;;;;:::i;46654:20::-;;;;;;:::o;46571:37::-;;;;:::o;29105:327::-;29252:12;:10;:12::i;:::-;-1:-1:-1;;;;;29240:24:0;:8;-1:-1:-1;;;;;29240:24:0;;;29232:62;;;;-1:-1:-1;;;29232:62:0;;;;;;;:::i;:::-;29352:8;29307:18;:32;29326:12;:10;:12::i;:::-;-1:-1:-1;;;;;29307:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;29307:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;29307:53:0;;;;;;;;;;;29391:12;:10;:12::i;:::-;-1:-1:-1;;;;;29376:48:0;;29415:8;29376:48;;;;;;:::i;:::-;;;;;;;;29105:327;;:::o;30487:365::-;30676:41;30695:12;:10;:12::i;:::-;30709:7;30676:18;:41::i;:::-;30654:140;;;;-1:-1:-1;;;30654:140:0;;;;;;;:::i;:::-;30805:39;30819:4;30825:2;30829:7;30838:5;30805:13;:39::i;:::-;30487:365;;;;:::o;27376:468::-;27494:13;27547:16;27555:7;27547;:16::i;:::-;27525:113;;;;-1:-1:-1;;;27525:113:0;;;;;;;:::i;:::-;27651:21;27675:10;:8;:10::i;:::-;27651:34;;27740:1;27722:7;27716:21;:25;:120;;;;;;;;;;;;;;;;;27785:7;27794:18;:7;:16;:18::i;:::-;27768:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;27716:120;27696:140;27376:468;-1:-1:-1;;;27376:468:0:o;50044:531::-;50129:8;50114:12;:23;50106:55;;;;-1:-1:-1;;;50106:55:0;;;;;;;:::i;:::-;50180:8;;;;50172:41;;;;-1:-1:-1;;;50172:41:0;;;;;;;:::i;:::-;50242:1;50232:7;:11;:28;;;;;50258:2;50247:7;:13;;50232:28;50224:82;;;;-1:-1:-1;;;50224:82:0;;;;;;;:::i;:::-;46560:4;50341:7;50325:13;:11;:13::i;:::-;:23;;;;:::i;:::-;:36;;50317:77;;;;-1:-1:-1;;;50317:77:0;;;;;;;:::i;:::-;50434:7;50426:5;;:15;;;;:::i;:::-;50413:9;:28;;50405:68;;;;-1:-1:-1;;;50405:68:0;;;;;;;:::i;:::-;50491:9;50486:82;50510:7;50506:1;:11;50486:82;;;50539:17;50545:10;50539:5;:17::i;:::-;50519:3;;;;:::i;:::-;;;;50486:82;;29503:214;-1:-1:-1;;;;;29674:25:0;;;29645:4;29674:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29503:214::o;9988:229::-;9319:12;:10;:12::i;:::-;-1:-1:-1;;;;;9308:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9308:23:0;;9300:68;;;;-1:-1:-1;;;9300:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10091:22:0;::::1;10069:110;;;;-1:-1:-1::0;;;10069:110:0::1;;;;;;;:::i;:::-;10190:19;10200:8;10190:9;:19::i;25863:355::-:0;26010:4;-1:-1:-1;;;;;;26052:40:0;;-1:-1:-1;;;26052:40:0;;:105;;-1:-1:-1;;;;;;;26109:48:0;;-1:-1:-1;;;26109:48:0;26052:105;:158;;;;26174:36;26198:11;26174:23;:36::i;32399:127::-;32464:4;32488:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32488:16:0;:30;;;32399:127::o;2061:98::-;2141:10;2061:98;:::o;36522:174::-;36597:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36597:29:0;-1:-1:-1;;;;;36597:29:0;;;;;;;;:24;;36651:23;36597:24;36651:14;:23::i;:::-;-1:-1:-1;;;;;36642:46:0;;;;;;;;;;;36522:174;;:::o;51772:193::-;51819:20;:8;:18;:20::i;:::-;51850:15;51868:18;:8;:16;:18::i;:::-;51850:36;;51897:23;51907:3;51912:7;51897:9;:23::i;:::-;51936:21;51949:7;51936:21;;;;;;:::i;:::-;;;;;;;;51772:193;;:::o;32693:452::-;32822:4;32866:16;32874:7;32866;:16::i;:::-;32844:110;;;;-1:-1:-1;;;32844:110:0;;;;;;;:::i;:::-;32965:13;32981:23;32996:7;32981:14;:23::i;:::-;32965:39;;33034:5;-1:-1:-1;;;;;33023:16:0;:7;-1:-1:-1;;;;;33023:16:0;;:64;;;;33080:7;-1:-1:-1;;;;;33056:31:0;:20;33068:7;33056:11;:20::i;:::-;-1:-1:-1;;;;;33056:31:0;;33023:64;:113;;;;33104:32;33121:5;33128:7;33104:16;:32::i;:::-;33015:122;32693:452;-1:-1:-1;;;;32693:452:0:o;35789:615::-;35962:4;-1:-1:-1;;;;;35935:31:0;:23;35950:7;35935:14;:23::i;:::-;-1:-1:-1;;;;;35935:31:0;;35913:122;;;;-1:-1:-1;;;35913:122:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;36054:16:0;;36046:65;;;;-1:-1:-1;;;36046:65:0;;;;;;;:::i;:::-;36124:39;36145:4;36151:2;36155:7;36124:20;:39::i;:::-;36228:29;36245:1;36249:7;36228:8;:29::i;:::-;-1:-1:-1;;;;;36270:15:0;;;;;;:9;:15;;;;;:20;;36289:1;;36270:15;:20;;36289:1;;36270:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36301:13:0;;;;;;:9;:13;;;;;:18;;36318:1;;36301:13;:18;;36318:1;;36301:18;:::i;:::-;;;;-1:-1:-1;;36330:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36330:21:0;-1:-1:-1;;;;;36330:21:0;;;;;;;;;36369:27;;36330:16;;36369:27;;;;;;;35789:615;;;:::o;10225:173::-;10300:6;;;-1:-1:-1;;;;;10317:17:0;;;-1:-1:-1;;;;;;10317:17:0;;;;;;;10350:40;;10300:6;;;10317:17;10300:6;;10350:40;;10281:16;;10350:40;10225:173;;:::o;31734:352::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31952:48;31975:4;31981:2;31985:7;31994:5;31952:22;:48::i;:::-;31930:148;;;;-1:-1:-1;;;31930:148:0;;;;;;;:::i;51973:113::-;52033:13;52066:12;52059:19;;;;;:::i;12730:723::-;12786:13;13007:10;13003:53;;-1:-1:-1;13034:10:0;;;;;;;;;;;;-1:-1:-1;;;13034:10:0;;;;;;13003:53;13081:5;13066:12;13122:78;13129:9;;13122:78;;13155:8;;;;:::i;:::-;;-1:-1:-1;13178:10:0;;-1:-1:-1;13186:2:0;13178:10;;:::i;:::-;;;13122:78;;;13210:19;13242:6;13232:17;;;;;;-1:-1:-1;;;13232:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13232:17:0;;13210:39;;13260:154;13267:10;;13260:154;;13294:11;13304:1;13294:11;;:::i;:::-;;-1:-1:-1;13363:10:0;13371:2;13363:5;:10;:::i;:::-;13350:24;;:2;:24;:::i;:::-;13337:39;;13320:6;13327;13320:14;;;;;;-1:-1:-1;;;13320:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;13320:56:0;;;;;;;;-1:-1:-1;13391:11:0;13400:2;13391:11;;:::i;:::-;;;13260:154;;12209:207;-1:-1:-1;;;;;;12368:40:0;;-1:-1:-1;;;12368:40:0;12209:207;;;:::o;970:127::-;1059:19;;1077:1;1059:19;;;970:127::o;848:114::-;940:14;;848:114::o;33487:110::-;33563:26;33573:2;33577:7;33563:26;;;;;;;;;;;;:9;:26::i;41798:589::-;41942:45;41969:4;41975:2;41979:7;41942:26;:45::i;:::-;-1:-1:-1;;;;;42004:18:0;;42000:187;;42039:40;42071:7;42039:31;:40::i;:::-;42000:187;;;42109:2;-1:-1:-1;;;;;42101:10:0;:4;-1:-1:-1;;;;;42101:10:0;;42097:90;;42128:47;42161:4;42167:7;42128:32;:47::i;:::-;-1:-1:-1;;;;;42201:16:0;;42197:183;;42234:45;42271:7;42234:36;:45::i;:::-;42197:183;;;42307:4;-1:-1:-1;;;;;42301:10:0;:2;-1:-1:-1;;;;;42301:10:0;;42297:83;;42328:40;42356:2;42360:7;42328:27;:40::i;37261:984::-;37416:4;37437:15;:2;-1:-1:-1;;;;;37437:13:0;;:15::i;:::-;37433:805;;;37506:2;-1:-1:-1;;;;;37490:36:0;;37549:12;:10;:12::i;:::-;37584:4;37611:7;37641:5;37490:175;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37490:175:0;;;;;;;;-1:-1:-1;;37490:175:0;;;;;;;;;;;;:::i;:::-;;;37469:714;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37852:13:0;;37848:320;;37895:108;;-1:-1:-1;;;37895:108:0;;;;;;;:::i;37848:320::-;38118:6;38112:13;38103:6;38099:2;38095:15;38088:38;37469:714;-1:-1:-1;;;;;;37729:55:0;-1:-1:-1;;;37729:55:0;;-1:-1:-1;37722:62:0;;37433:805;-1:-1:-1;38222:4:0;37261:984;;;;;;:::o;33824:321::-;33954:18;33960:2;33964:7;33954:5;:18::i;:::-;34005:54;34036:1;34040:2;34044:7;34053:5;34005:22;:54::i;:::-;33983:154;;;;-1:-1:-1;;;33983:154:0;;;;;;;:::i;43110:164::-;43214:10;:17;;43187:24;;;;:15;:24;;;;;:44;;;43242:24;;;;;;;;;;;;43110:164::o;43901:1002::-;44181:22;44231:1;44206:22;44223:4;44206:16;:22::i;:::-;:26;;;;:::i;:::-;44243:18;44264:26;;;:17;:26;;;;;;44181:51;;-1:-1:-1;44397:28:0;;;44393:328;;-1:-1:-1;;;;;44464:18:0;;44442:19;44464:18;;;:12;:18;;;;;;;;:34;;;;;;;;;44515:30;;;;;;:44;;;44632:30;;:17;:30;;;;;:43;;;44393:328;-1:-1:-1;44817:26:0;;;;:17;:26;;;;;;;;44810:33;;;-1:-1:-1;;;;;44861:18:0;;;;;:12;:18;;;;;:34;;;;;;;44854:41;43901:1002::o;45198:1079::-;45476:10;:17;45451:22;;45476:21;;45496:1;;45476:21;:::i;:::-;45508:18;45529:24;;;:15;:24;;;;;;45902:10;:26;;45451:46;;-1:-1:-1;45529:24:0;;45451:46;;45902:26;;;;-1:-1:-1;;;45902:26:0;;;;;;;;;;;;;;;;;45880:48;;45966:11;45941:10;45952;45941:22;;;;;;-1:-1:-1;;;45941:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;46046:28;;;:15;:28;;;;;;;:41;;;46218:24;;;;;46211:31;46253:10;:16;;;;;-1:-1:-1;;;46253:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;45198:1079;;;;:::o;42688:221::-;42773:14;42790:20;42807:2;42790:16;:20::i;:::-;-1:-1:-1;;;;;42821:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;42866:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;42688:221:0:o;15283:387::-;15606:20;15654:8;;;15283:387::o;34481:382::-;-1:-1:-1;;;;;34561:16:0;;34553:61;;;;-1:-1:-1;;;34553:61:0;;;;;;;:::i;:::-;34634:16;34642:7;34634;:16::i;:::-;34633:17;34625:58;;;;-1:-1:-1;;;34625:58:0;;;;;;;:::i;:::-;34696:45;34725:1;34729:2;34733:7;34696:20;:45::i;:::-;-1:-1:-1;;;;;34754:13:0;;;;;;:9;:13;;;;;:18;;34771:1;;34754:13;:18;;34771:1;;34754:18;:::i;:::-;;;;-1:-1:-1;;34783:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34783:21:0;-1:-1:-1;;;;;34783:21:0;;;;;;;;34822:33;;34783:16;;;34822:33;;34783:16;;34822:33;34481:382;;:::o;14:175:1:-;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:190::-;;3491:2;3479:9;3470:7;3466:23;3462:32;3459:2;;;3512:6;3504;3497:22;3459:2;-1:-1:-1;3540:23:1;;3449:120;-1:-1:-1;3449:120:1:o;3574:259::-;;3655:5;3649:12;3682:6;3677:3;3670:19;3698:63;3754:6;3747:4;3742:3;3738:14;3731:4;3724:5;3720:16;3698:63;:::i;:::-;3815:2;3794:15;-1:-1:-1;;3790:29:1;3781:39;;;;3822:4;3777:50;;3625:208;-1:-1:-1;;3625:208:1:o;3838:470::-;;4055:6;4049:13;4071:53;4117:6;4112:3;4105:4;4097:6;4093:17;4071:53;:::i;:::-;4187:13;;4146:16;;;;4209:57;4187:13;4146:16;4243:4;4231:17;;4209:57;:::i;:::-;4282:20;;4025:283;-1:-1:-1;;;;4025:283:1:o;4313:203::-;-1:-1:-1;;;;;4477:32:1;;;;4459:51;;4447:2;4432:18;;4414:102::o;4521:490::-;-1:-1:-1;;;;;4790:15:1;;;4772:34;;4842:15;;4837:2;4822:18;;4815:43;4889:2;4874:18;;4867:34;;;4937:3;4932:2;4917:18;;4910:31;;;4521:490;;4958:47;;4985:19;;4977:6;4958:47;:::i;:::-;4950:55;4724:287;-1:-1:-1;;;;;;4724:287:1:o;5016:635::-;5187:2;5239:21;;;5309:13;;5212:18;;;5331:22;;;5016:635;;5187:2;5410:15;;;;5384:2;5369:18;;;5016:635;5456:169;5470:6;5467:1;5464:13;5456:169;;;5531:13;;5519:26;;5600:15;;;;5565:12;;;;5492:1;5485:9;5456:169;;;-1:-1:-1;5642:3:1;;5167:484;-1:-1:-1;;;;;;5167:484:1:o;5656:187::-;5821:14;;5814:22;5796:41;;5784:2;5769:18;;5751:92::o;5848:221::-;;5997:2;5986:9;5979:21;6017:46;6059:2;6048:9;6044:18;6036:6;6017:46;:::i;6074:352::-;6276:2;6258:21;;;6315:2;6295:18;;;6288:30;6354;6349:2;6334:18;;6327:58;6417:2;6402:18;;6248:178::o;6431:407::-;6633:2;6615:21;;;6672:2;6652:18;;;6645:30;6711:34;6706:2;6691:18;;6684:62;-1:-1:-1;;;6777:2:1;6762:18;;6755:41;6828:3;6813:19;;6605:233::o;6843:414::-;7045:2;7027:21;;;7084:2;7064:18;;;7057:30;7123:34;7118:2;7103:18;;7096:62;-1:-1:-1;;;7189:2:1;7174:18;;7167:48;7247:3;7232:19;;7017:240::o;7262:402::-;7464:2;7446:21;;;7503:2;7483:18;;;7476:30;7542:34;7537:2;7522:18;;7515:62;-1:-1:-1;;;7608:2:1;7593:18;;7586:36;7654:3;7639:19;;7436:228::o;7669:352::-;7871:2;7853:21;;;7910:2;7890:18;;;7883:30;7949;7944:2;7929:18;;7922:58;8012:2;7997:18;;7843:178::o;8026:397::-;8228:2;8210:21;;;8267:2;8247:18;;;8240:30;8306:34;8301:2;8286:18;;8279:62;-1:-1:-1;;;8372:2:1;8357:18;;8350:31;8413:3;8398:19;;8200:223::o;8428:400::-;8630:2;8612:21;;;8669:2;8649:18;;;8642:30;8708:34;8703:2;8688:18;;8681:62;-1:-1:-1;;;8774:2:1;8759:18;;8752:34;8818:3;8803:19;;8602:226::o;8833:349::-;9035:2;9017:21;;;9074:2;9054:18;;;9047:30;9113:27;9108:2;9093:18;;9086:55;9173:2;9158:18;;9007:175::o;9187:344::-;9389:2;9371:21;;;9428:2;9408:18;;;9401:30;-1:-1:-1;;;9462:2:1;9447:18;;9440:50;9522:2;9507:18;;9361:170::o;9536:408::-;9738:2;9720:21;;;9777:2;9757:18;;;9750:30;9816:34;9811:2;9796:18;;9789:62;-1:-1:-1;;;9882:2:1;9867:18;;9860:42;9934:3;9919:19;;9710:234::o;9949:420::-;10151:2;10133:21;;;10190:2;10170:18;;;10163:30;10229:34;10224:2;10209:18;;10202:62;10300:26;10295:2;10280:18;;10273:54;10359:3;10344:19;;10123:246::o;10374:406::-;10576:2;10558:21;;;10615:2;10595:18;;;10588:30;10654:34;10649:2;10634:18;;10627:62;-1:-1:-1;;;10720:2:1;10705:18;;10698:40;10770:3;10755:19;;10548:232::o;10785:405::-;10987:2;10969:21;;;11026:2;11006:18;;;10999:30;11065:34;11060:2;11045:18;;11038:62;-1:-1:-1;;;11131:2:1;11116:18;;11109:39;11180:3;11165:19;;10959:231::o;11195:356::-;11397:2;11379:21;;;11416:18;;;11409:30;11475:34;11470:2;11455:18;;11448:62;11542:2;11527:18;;11369:182::o;11556:408::-;11758:2;11740:21;;;11797:2;11777:18;;;11770:30;11836:34;11831:2;11816:18;;11809:62;-1:-1:-1;;;11902:2:1;11887:18;;11880:42;11954:3;11939:19;;11730:234::o;11969:356::-;12171:2;12153:21;;;12190:18;;;12183:30;12249:34;12244:2;12229:18;;12222:62;12316:2;12301:18;;12143:182::o;12330:405::-;12532:2;12514:21;;;12571:2;12551:18;;;12544:30;12610:34;12605:2;12590:18;;12583:62;-1:-1:-1;;;12676:2:1;12661:18;;12654:39;12725:3;12710:19;;12504:231::o;12740:411::-;12942:2;12924:21;;;12981:2;12961:18;;;12954:30;13020:34;13015:2;13000:18;;12993:62;-1:-1:-1;;;13086:2:1;13071:18;;13064:45;13141:3;13126:19;;12914:237::o;13156:405::-;13358:2;13340:21;;;13397:2;13377:18;;;13370:30;13436:34;13431:2;13416:18;;13409:62;-1:-1:-1;;;13502:2:1;13487:18;;13480:39;13551:3;13536:19;;13330:231::o;13566:397::-;13768:2;13750:21;;;13807:2;13787:18;;;13780:30;13846:34;13841:2;13826:18;;13819:62;-1:-1:-1;;;13912:2:1;13897:18;;13890:31;13953:3;13938:19;;13740:223::o;13968:413::-;14170:2;14152:21;;;14209:2;14189:18;;;14182:30;14248:34;14243:2;14228:18;;14221:62;-1:-1:-1;;;14314:2:1;14299:18;;14292:47;14371:3;14356:19;;14142:239::o;14386:408::-;14588:2;14570:21;;;14627:2;14607:18;;;14600:30;14666:34;14661:2;14646:18;;14639:62;-1:-1:-1;;;14732:2:1;14717:18;;14710:42;14784:3;14769:19;;14560:234::o;14799:343::-;15001:2;14983:21;;;15040:2;15020:18;;;15013:30;-1:-1:-1;;;15074:2:1;15059:18;;15052:49;15133:2;15118:18;;14973:169::o;15147:351::-;15349:2;15331:21;;;15388:2;15368:18;;;15361:30;15427:29;15422:2;15407:18;;15400:57;15489:2;15474:18;;15321:177::o;15503:404::-;15705:2;15687:21;;;15744:2;15724:18;;;15717:30;15783:34;15778:2;15763:18;;15756:62;-1:-1:-1;;;15849:2:1;15834:18;;15827:38;15897:3;15882:19;;15677:230::o;15912:177::-;16058:25;;;16046:2;16031:18;;16013:76::o;16094:128::-;;16165:1;16161:6;16158:1;16155:13;16152:2;;;16171:18;;:::i;:::-;-1:-1:-1;16207:9:1;;16142:80::o;16227:120::-;;16293:1;16283:2;;16298:18;;:::i;:::-;-1:-1:-1;16332:9:1;;16273:74::o;16352:168::-;;16458:1;16454;16450:6;16446:14;16443:1;16440:21;16435:1;16428:9;16421:17;16417:45;16414:2;;;16465:18;;:::i;:::-;-1:-1:-1;16505:9:1;;16404:116::o;16525:125::-;;16593:1;16590;16587:8;16584:2;;;16598:18;;:::i;:::-;-1:-1:-1;16635:9:1;;16574:76::o;16655:258::-;16727:1;16737:113;16751:6;16748:1;16745:13;16737:113;;;16827:11;;;16821:18;16808:11;;;16801:39;16773:2;16766:10;16737:113;;;16868:6;16865:1;16862:13;16859:2;;;-1:-1:-1;;16903:1:1;16885:16;;16878:27;16708:205::o;16918:380::-;17003:1;16993:12;;17050:1;17040:12;;;17061:2;;17115:4;17107:6;17103:17;17093:27;;17061:2;17168;17160:6;17157:14;17137:18;17134:38;17131:2;;;17214:10;17209:3;17205:20;17202:1;17195:31;17249:4;17246:1;17239:15;17277:4;17274:1;17267:15;17131:2;;16973:325;;;:::o;17303:135::-;;-1:-1:-1;;17363:17:1;;17360:2;;;17383:18;;:::i;:::-;-1:-1:-1;17430:1:1;17419:13;;17350:88::o;17443:112::-;;17501:1;17491:2;;17506:18;;:::i;:::-;-1:-1:-1;17540:9:1;;17481:74::o;17560:127::-;17621:10;17616:3;17612:20;17609:1;17602:31;17652:4;17649:1;17642:15;17676:4;17673:1;17666:15;17692:127;17753:10;17748:3;17744:20;17741:1;17734:31;17784:4;17781:1;17774:15;17808:4;17805:1;17798:15;17824:127;17885:10;17880:3;17876:20;17873:1;17866:31;17916:4;17913:1;17906:15;17940:4;17937:1;17930:15;17956:133;-1:-1:-1;;;;;;18032:32:1;;18022:43;;18012:2;;18079:1;18076;18069:12

Swarm Source

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