ETH Price: $2,742.74 (-0.49%)

Token

Monster Frens (MFR)
 

Overview

Max Total Supply

693 MFR

Holders

152

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 MFR
0x78019d088411ebdd41c7a94dbb027cf001ce0561
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:
MonsterFrens

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-26
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
    Context,
    ERC165,
    IERC721,
    IERC721Metadata,
    IERC721Enumerable
{
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 private nextIndexId = 1;

    uint256 internal immutable collectionSize;
    uint256 internal immutable maxBatchSize;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) private _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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
     * `maxBatchSize` refers to how much a minter can mint at a time.
     * `collectionSize_` refers to how many tokens are in the collection.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        uint256 maxBatchSize_,
        uint256 collectionSize_
    ) {
        require(
            collectionSize_ > 0,
            "ERC721A: collection must have a nonzero supply"
        );
        require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
        _name = name_;
        _symbol = symbol_;
        maxBatchSize = maxBatchSize_;
        collectionSize = collectionSize_;
    }

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx = 0;
        address currOwnershipAddr = address(0);
        for (uint256 i = 0; i < numMintedSoFar; i++) {
            TokenOwnership memory ownership = _ownerships[i];
            if (ownership.addr != address(0)) {
                currOwnershipAddr = ownership.addr;
            }
            if (currOwnershipAddr == owner) {
                if (tokenIdsIdx == index) {
                    return i;
                }
                tokenIdsIdx++;
            }
        }
        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        uint256 lowestTokenToCheck;
        if (tokenId >= maxBatchSize) {
            lowestTokenToCheck = tokenId - maxBatchSize + 1;
        }

        for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < nextIndexId ;
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - there must be `quantity` tokens remaining unminted in the total collection.
     * - `to` cannot be the zero address.
     * - `quantity` cannot be larger than the max batch size.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 quantity) internal {
        uint256 startTokenId = nextIndexId;
        require(to != address(0), "ERC721A: mint to the zero address");
        // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
        require(!_exists(startTokenId), "ERC721A: token already minted");
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

        AddressData memory addressData = _addressData[to];
        _addressData[to] = AddressData(
            addressData.balance + uint128(quantity),
            addressData.numberMinted + uint128(quantity)
        );
        _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

        uint256 updatedIndex = startTokenId;

        for (uint256 i = 0; i < quantity; i++) {
            emit Transfer(address(0), to, updatedIndex);
            updatedIndex++;
        }

        nextIndexId = updatedIndex;
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

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

        _addressData[from].balance -= 1;
        _addressData[to].balance += 1;
        _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

        // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
        // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
        uint256 nextTokenId = tokenId + 1;
        if (_ownerships[nextTokenId].addr == address(0)) {
            if (_exists(nextTokenId)) {
                _ownerships[nextTokenId] = TokenOwnership(
                    prevOwnership.addr,
                    prevOwnership.startTimestamp
                );
            }
        }

        emit Transfer(from, to, tokenId);
    }

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

    uint256 public nextOwnerToExplicitlySet = 0;

    /**
     * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
     */
    function _setOwnersExplicit(uint256 quantity) internal {
        uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
        require(quantity > 0, "quantity must be nonzero");
        uint256 endIndex = oldNextOwnerToSet + quantity - 1;
        if (endIndex > collectionSize - 1) {
            endIndex = collectionSize - 1;
        }
        // We know if the last one in the group exists, all in the group exist, due to serial ordering.
        require(_exists(endIndex), "not enough minted yet for this cleanup");
        for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
            if (_ownerships[i].addr == address(0)) {
                TokenOwnership memory ownership = ownershipOf(i);
                _ownerships[i] = TokenOwnership(
                    ownership.addr,
                    ownership.startTimestamp
                );
            }
        }
        nextOwnerToExplicitlySet = endIndex + 1;
    }

    /**
     * @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(
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
}

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

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

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

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

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

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

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

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

contract MonsterFrens is ERC721A, Ownable {
    using Address for address;

    struct Account {
        bool isWhitelisted;
        uint256 confirmedMints;
    }

    mapping(address => Account) public accountInfo;

    uint256 public constant MAX_SUPPLY = 8888;
    uint256 public constant PUBLIC_SUPPLY = 8555;
    uint256 public constant GIFT_SUPPLY = 333;

    uint256 public constant WHITELIST_LIMIT = 4;
    uint256 public constant DISCOUNT_PRICE = 0.04 ether;
    uint256 public constant PRICE = 0.05 ether;

    bool public isDiscountActive;
    bool public isPresaleActive;
    bool public isPublicActive;

    //metadata prefix
    string public baseTokenURI;

    modifier onlyWallets() {
        require(tx.origin == msg.sender, "must be a wallet");

        _;
    }

    constructor(string memory newBaseURI)
        ERC721A("Monster Frens", "MFR", 4, MAX_SUPPLY)
    {
        setBaseURI(newBaseURI);
    }

    function setWhitelistedAddresses(address[] calldata accounts)
        external
        onlyOwner
        returns (bool)
    {
        uint256 offset = accounts.length;

        for (uint256 i = 0; i < offset; i++) {
            accountInfo[accounts[i]].isWhitelisted = true;
        }
        return true;
    }

    function setPresaleStatus(bool isActive) external onlyOwner returns (bool) {
        isPresaleActive = isActive;
        return true;
    }

    function setPublicStatus(bool isActive) external onlyOwner returns (bool) {
        isPublicActive = isActive;
        return true;
    }

    function mintPresale(uint256 amount)
        external
        payable
        onlyWallets
        returns (bool)
    {
        uint256 supply = totalSupply();

        require(isPresaleActive, "private sale not activated");
        require(
            accountInfo[msg.sender].confirmedMints + amount <= WHITELIST_LIMIT,
            "Max mint limit reached"
        );
        require(amount <= WHITELIST_LIMIT, "min amount exceeds limit");
        require(
            accountInfo[msg.sender].isWhitelisted,
            "caller not whitelisted"
        );
        require(
            supply + amount <= PUBLIC_SUPPLY,
            "amount exceeds available supply"
        );
        require(
            msg.value == DISCOUNT_PRICE * amount,
            "incorrect ETH amount sent"
        );

        accountInfo[msg.sender].confirmedMints += amount;
        _safeMint(msg.sender, amount);
        return true;
    }

    function mintPublic(uint256 amount)
        external
        payable
        onlyWallets
        returns (bool)
    {
        uint256 supply = totalSupply();

        require(isPublicActive, "public sale not activated");
        require(
            amount > 0 && amount <= maxBatchSize,
            "amount exceeds batch limit"
        );
        require(
            supply + amount <= PUBLIC_SUPPLY,
            "amount exceeds available supply"
        );
        require(msg.value == PRICE * amount, "incorrect ETH amount sent");

        _safeMint(msg.sender, amount);
        return true;
    }

    function airdrop(address to, uint256 amount)
        external
        onlyOwner
        returns (bool)
    {
        uint256 supply = totalSupply();

        require(supply + amount <= MAX_SUPPLY, "amount exceeds max supply");

        _safeMint(to, amount);
        return true;
    }

    function withdrawTeam() external onlyOwner returns (bool) {
        uint256 balance = address(this).balance;

        require(balance > 0, "no funds to withdraw");
        //transfer funds
        payable(msg.sender).transfer(balance);
        return true;
    }

    function setBaseURI(string memory baseURI) public onlyOwner returns (bool) {
        baseTokenURI = baseURI;
        return true;
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DISCOUNT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIFT_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PUBLIC_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"accountInfo","outputs":[{"internalType":"bool","name":"isWhitelisted","type":"bool"},{"internalType":"uint256","name":"confirmedMints","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"airdrop","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isDiscountActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintPublic","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setPresaleStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isActive","type":"bool"}],"name":"setPublicStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"}],"name":"setWhitelistedAddresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60c0604052600160005560006007553480156200001b57600080fd5b5060405162002d2138038062002d218339810160408190526200003e916200031f565b6040518060400160405280600d81526020016c4d6f6e73746572204672656e7360981b8152506040518060400160405280600381526020016226a32960e91b81525060046122b860008111620000f25760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620001545760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620000e9565b83516200016990600190602087019062000279565b5082516200017f90600290602086019062000279565b5060a0919091526080525062000197905033620001aa565b620001a281620001fc565b50506200044e565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546000906001600160a01b031633146200025b5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620000e9565b81516200027090600b90602085019062000279565b50600192915050565b8280546200028790620003fb565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b600060208083850312156200033357600080fd5b82516001600160401b03808211156200034b57600080fd5b818501915085601f8301126200036057600080fd5b81518181111562000375576200037562000438565b604051601f8201601f19908116603f01168101908382118183101715620003a057620003a062000438565b816040528281528886848701011115620003b957600080fd5b600093505b82841015620003dd5784840186015181850187015292850192620003be565b82841115620003ef5760008684830101525b98975050505050505050565b600181811c908216806200041057607f821691505b602082108114156200043257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05161289b62000486600039600081816111ff01528181611b7a01528181611ba40152611db101526000505061289b6000f3fe6080604052600436106102305760003560e01c80638342083a1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610668578063efd0cbf9146106b1578063f1528ae1146106c4578063f2fde38b146106e4578063f759867a1461070457600080fd5b8063b88d4fde146105e8578063bb51f32d14610608578063c87b56dd1461061d578063d547cfb71461063d578063d7224ba01461065257600080fd5b806395d89b41116100f257806395d89b411461052d578063a08c61d314610542578063a22cb46514610557578063a3330d2514610577578063a7310b581461059757600080fd5b80638342083a1461049e5780638895283f146104b45780638ba4cc3c146104d45780638d859f3e146104f45780638da5cb5b1461050f57600080fd5b80632f745c59116101bc5780635b1a540a116101805780635b1a540a1461041057806360d938dc1461042a5780636352211e1461044957806370a0823114610469578063715018a61461048957600080fd5b80632f745c591461037a57806332cb6b0c1461039a57806342842e0e146103b05780634f6ccce7146103d057806355f804b3146103f057600080fd5b8063095ea7b311610203578063095ea7b3146102ed57806318160ddd1461030f5780631c5b64e2146103245780631ea639011461034457806323b872dd1461035a57600080fd5b806301ffc9a714610235578063057707a01461026a57806306fdde0314610293578063081812fc146102b5575b600080fd5b34801561024157600080fd5b506102556102503660046124cf565b610717565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b50610285668e1bc9bf04000081565b604051908152602001610261565b34801561029f57600080fd5b506102a8610784565b6040516102619190612603565b3480156102c157600080fd5b506102d56102d0366004612552565b610816565b6040516001600160a01b039091168152602001610261565b3480156102f957600080fd5b5061030d610308366004612415565b6108a6565b005b34801561031b57600080fd5b506102856109be565b34801561033057600080fd5b5061025561033f3660046124b4565b6109d4565b34801561035057600080fd5b5061028561014d81565b34801561036657600080fd5b5061030d610375366004612333565b610a1f565b34801561038657600080fd5b50610285610395366004612415565b610a2a565b3480156103a657600080fd5b506102856122b881565b3480156103bc57600080fd5b5061030d6103cb366004612333565b610ba2565b3480156103dc57600080fd5b506102856103eb366004612552565b610bbd565b3480156103fc57600080fd5b5061025561040b366004612509565b610c25565b34801561041c57600080fd5b50600a546102559060ff1681565b34801561043657600080fd5b50600a5461025590610100900460ff1681565b34801561045557600080fd5b506102d5610464366004612552565b610c6e565b34801561047557600080fd5b506102856104843660046122e5565b610c80565b34801561049557600080fd5b5061030d610d11565b3480156104aa57600080fd5b5061028561216b81565b3480156104c057600080fd5b506102556104cf3660046124b4565b610d47565b3480156104e057600080fd5b506102556104ef366004612415565b610d91565b34801561050057600080fd5b5061028566b1a2bc2ec5000081565b34801561051b57600080fd5b506008546001600160a01b03166102d5565b34801561053957600080fd5b506102a8610e39565b34801561054e57600080fd5b50610285600481565b34801561056357600080fd5b5061030d6105723660046123eb565b610e48565b34801561058357600080fd5b50600a546102559062010000900460ff1681565b3480156105a357600080fd5b506105d16105b23660046122e5565b6009602052600090815260409020805460019091015460ff9091169082565b604080519215158352602083019190915201610261565b3480156105f457600080fd5b5061030d61060336600461236f565b610f0d565b34801561061457600080fd5b50610255610f46565b34801561062957600080fd5b506102a8610638366004612552565b610fee565b34801561064957600080fd5b506102a86110bb565b34801561065e57600080fd5b5061028560075481565b34801561067457600080fd5b50610255610683366004612300565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102556106bf366004612552565b611149565b3480156106d057600080fd5b506102556106df36600461243f565b61132e565b3480156106f057600080fd5b5061030d6106ff3660046122e5565b6113d9565b610255610712366004612552565b611474565b60006001600160e01b031982166380ac58cd60e01b148061074857506001600160e01b03198216635b5e139f60e01b145b8061076357506001600160e01b0319821663780e9d6360e01b145b8061077e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107939061278d565b80601f01602080910402602001604051908101604052809291908181526020018280546107bf9061278d565b801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b6000610823826000541190565b61088a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b182610c6e565b9050806001600160a01b0316836001600160a01b031614156109205760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610881565b336001600160a01b038216148061093c575061093c8133610683565b6109ae5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610881565b6109b9838383611715565b505050565b600060016000546109cf9190612733565b905090565b6008546000906001600160a01b03163314610a015760405162461bcd60e51b815260040161088190612616565b50600a805462ff00001916620100008315150217905560015b919050565b6109b9838383611771565b6000610a3583610c80565b8210610a8e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610881565b6000610a986109be565b905060008060005b83811015610b42576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610af357805192505b876001600160a01b0316836001600160a01b03161415610b2f5786841415610b215750935061077e92505050565b83610b2b816127c8565b9450505b5080610b3a816127c8565b915050610aa0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610881565b6109b983838360405180602001604052806000815250610f0d565b6000610bc76109be565b8210610c215760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610881565b5090565b6008546000906001600160a01b03163314610c525760405162461bcd60e51b815260040161088190612616565b8151610c6590600b9060208501906121b8565b50600192915050565b6000610c7982611af8565b5192915050565b60006001600160a01b038216610cec5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610881565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161088190612616565b610d456000611ca2565b565b6008546000906001600160a01b03163314610d745760405162461bcd60e51b815260040161088190612616565b50600a80548215156101000261ff00199091161790556001919050565b6008546000906001600160a01b03163314610dbe5760405162461bcd60e51b815260040161088190612616565b6000610dc86109be565b90506122b8610dd784836126c0565b1115610e255760405162461bcd60e51b815260206004820152601960248201527f616d6f756e742065786365656473206d617820737570706c79000000000000006044820152606401610881565b610e2f8484611cf4565b5060019392505050565b6060600280546107939061278d565b6001600160a01b038216331415610ea15760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610881565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f18848484611771565b610f2484848484611fa5565b610f405760405162461bcd60e51b81526004016108819061264b565b50505050565b6008546000906001600160a01b03163314610f735760405162461bcd60e51b815260040161088190612616565b4780610fb85760405162461bcd60e51b81526020600482015260146024820152736e6f2066756e647320746f20776974686472617760601b6044820152606401610881565b604051339082156108fc029083906000818181858888f19350505050158015610fe5573d6000803e3d6000fd5b50600191505090565b6060610ffb826000541190565b61105f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610881565b60006110696120ab565b9050600081511161108957604051806020016040528060008152506110b4565b80611093846120ba565b6040516020016110a4929190612597565b6040516020818303038152906040525b9392505050565b600b80546110c89061278d565b80601f01602080910402602001604051908101604052809291908181526020018280546110f49061278d565b80156111415780601f1061111657610100808354040283529160200191611141565b820191906000526020600020905b81548152906001019060200180831161112457829003601f168201915b505050505081565b600032331461118d5760405162461bcd60e51b815260206004820152601060248201526f1b5d5cdd0818994818481dd85b1b195d60821b6044820152606401610881565b60006111976109be565b600a5490915062010000900460ff166111f25760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c65206e6f7420616374697661746564000000000000006044820152606401610881565b60008311801561122257507f00000000000000000000000000000000000000000000000000000000000000008311155b61126e5760405162461bcd60e51b815260206004820152601a60248201527f616d6f756e742065786365656473206261746368206c696d69740000000000006044820152606401610881565b61216b61127b84836126c0565b11156112c95760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e74206578636565647320617661696c61626c6520737570706c79006044820152606401610881565b6112da8366b1a2bc2ec500006126ec565b34146113245760405162461bcd60e51b81526020600482015260196024820152781a5b98dbdc9c9958dd0811551208185b5bdd5b9d081cd95b9d603a1b6044820152606401610881565b610c653384611cf4565b6008546000906001600160a01b0316331461135b5760405162461bcd60e51b815260040161088190612616565b8160005b818110156113ce5760016009600087878581811061137f5761137f612823565b905060200201602081019061139491906122e5565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113c6816127c8565b91505061135f565b506001949350505050565b6008546001600160a01b031633146114035760405162461bcd60e51b815260040161088190612616565b6001600160a01b0381166114685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610881565b61147181611ca2565b50565b60003233146114b85760405162461bcd60e51b815260206004820152601060248201526f1b5d5cdd0818994818481dd85b1b195d60821b6044820152606401610881565b60006114c26109be565b600a54909150610100900460ff1661151c5760405162461bcd60e51b815260206004820152601a60248201527f707269766174652073616c65206e6f74206163746976617465640000000000006044820152606401610881565b3360009081526009602052604090206001015460049061153d9085906126c0565b11156115845760405162461bcd60e51b815260206004820152601660248201527513585e081b5a5b9d081b1a5b5a5d081c995858da195960521b6044820152606401610881565b60048311156115d55760405162461bcd60e51b815260206004820152601860248201527f6d696e20616d6f756e742065786365656473206c696d697400000000000000006044820152606401610881565b3360009081526009602052604090205460ff1661162d5760405162461bcd60e51b815260206004820152601660248201527518d85b1b195c881b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610881565b61216b61163a84836126c0565b11156116885760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e74206578636565647320617661696c61626c6520737570706c79006044820152606401610881565b61169983668e1bc9bf0400006126ec565b34146116e35760405162461bcd60e51b81526020600482015260196024820152781a5b98dbdc9c9958dd0811551208185b5bdd5b9d081cd95b9d603a1b6044820152606401610881565b33600090815260096020526040812060010180548592906117059084906126c0565b90915550610c6590503384611cf4565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061177c82611af8565b80519091506000906001600160a01b0316336001600160a01b031614806117b35750336117a884610816565b6001600160a01b0316145b806117c5575081516117c59033610683565b90508061182f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610881565b846001600160a01b031682600001516001600160a01b0316146118a35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610881565b6001600160a01b0384166119075760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610881565b6119176000848460000151611715565b6001600160a01b03851660009081526004602052604081208054600192906119499084906001600160801b031661270b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119959185911661269e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a1d8460016126c0565b6000818152600360205260409020549091506001600160a01b0316611aaf57611a47816000541190565b15611aaf5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6040805180820190915260008082526020820152611b17826000541190565b611b765760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610881565b60007f00000000000000000000000000000000000000000000000000000000000000008310611bd757611bc97f000000000000000000000000000000000000000000000000000000000000000084612733565b611bd49060016126c0565b90505b825b818110611c41576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c2e57949350505050565b5080611c3981612776565b915050611bd9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610881565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b038316611d575760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610881565b611d62816000541190565b15611daf5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610881565b7f0000000000000000000000000000000000000000000000000000000000000000821115611e2a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610881565b6001600160a01b0383166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e8690869061269e565b6001600160801b03168152602001848360200151611ea4919061269e565b6001600160801b039081169091526001600160a01b0380871660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b84811015611f9b5760405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a481611f85816127c8565b9250508080611f93906127c8565b915050611f3b565b5060005550505050565b60006001600160a01b0384163b156113ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fe99033908990889088906004016125c6565b602060405180830381600087803b15801561200357600080fd5b505af1925050508015612033575060408051601f3d908101601f19168201909252612030918101906124ec565b60015b61208d573d808015612061576040519150601f19603f3d011682016040523d82523d6000602084013e612066565b606091505b5080516120855760405162461bcd60e51b81526004016108819061264b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107939061278d565b6060816120de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561210857806120f2816127c8565b91506121019050600a836126d8565b91506120e2565b60008167ffffffffffffffff81111561212357612123612839565b6040519080825280601f01601f19166020018201604052801561214d576020820181803683370190505b5090505b84156120a357612162600183612733565b915061216f600a866127e3565b61217a9060306126c0565b60f81b81838151811061218f5761218f612823565b60200101906001600160f81b031916908160001a9053506121b1600a866126d8565b9450612151565b8280546121c49061278d565b90600052602060002090601f0160209004810192826121e6576000855561222c565b82601f106121ff57805160ff191683800117855561222c565b8280016001018555821561222c579182015b8281111561222c578251825591602001919060010190612211565b50610c219291505b80821115610c215760008155600101612234565b600067ffffffffffffffff8084111561226357612263612839565b604051601f8501601f19908116603f0116810190828211818310171561228b5761228b612839565b816040528093508581528686860111156122a457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a1a57600080fd5b80358015158114610a1a57600080fd5b6000602082840312156122f757600080fd5b6110b4826122be565b6000806040838503121561231357600080fd5b61231c836122be565b915061232a602084016122be565b90509250929050565b60008060006060848603121561234857600080fd5b612351846122be565b925061235f602085016122be565b9150604084013590509250925092565b6000806000806080858703121561238557600080fd5b61238e856122be565b935061239c602086016122be565b925060408501359150606085013567ffffffffffffffff8111156123bf57600080fd5b8501601f810187136123d057600080fd5b6123df87823560208401612248565b91505092959194509250565b600080604083850312156123fe57600080fd5b612407836122be565b915061232a602084016122d5565b6000806040838503121561242857600080fd5b612431836122be565b946020939093013593505050565b6000806020838503121561245257600080fd5b823567ffffffffffffffff8082111561246a57600080fd5b818501915085601f83011261247e57600080fd5b81358181111561248d57600080fd5b8660208260051b85010111156124a257600080fd5b60209290920196919550909350505050565b6000602082840312156124c657600080fd5b6110b4826122d5565b6000602082840312156124e157600080fd5b81356110b48161284f565b6000602082840312156124fe57600080fd5b81516110b48161284f565b60006020828403121561251b57600080fd5b813567ffffffffffffffff81111561253257600080fd5b8201601f8101841361254357600080fd5b6120a384823560208401612248565b60006020828403121561256457600080fd5b5035919050565b6000815180845261258381602086016020860161274a565b601f01601f19169290920160200192915050565b600083516125a981846020880161274a565b8351908301906125bd81836020880161274a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125f99083018461256b565b9695505050505050565b6020815260006110b4602083018461256b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156125bd576125bd6127f7565b600082198211156126d3576126d36127f7565b500190565b6000826126e7576126e761280d565b500490565b6000816000190483118215151615612706576127066127f7565b500290565b60006001600160801b038381169083168181101561272b5761272b6127f7565b039392505050565b600082821015612745576127456127f7565b500390565b60005b8381101561276557818101518382015260200161274d565b83811115610f405750506000910152565b600081612785576127856127f7565b506000190190565b600181811c908216806127a157607f821691505b602082108114156127c257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127dc576127dc6127f7565b5060010190565b6000826127f2576127f261280d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461147157600080fdfea264697066735822122098852b93bc8c9ebc075bf2458980fbbe5b43aca558a402bfc2ee77959855237064736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6d657461646174612e6d6f6e737465726672656e732e696f2f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c80638342083a1161012e578063b88d4fde116100ab578063e985e9c51161006f578063e985e9c514610668578063efd0cbf9146106b1578063f1528ae1146106c4578063f2fde38b146106e4578063f759867a1461070457600080fd5b8063b88d4fde146105e8578063bb51f32d14610608578063c87b56dd1461061d578063d547cfb71461063d578063d7224ba01461065257600080fd5b806395d89b41116100f257806395d89b411461052d578063a08c61d314610542578063a22cb46514610557578063a3330d2514610577578063a7310b581461059757600080fd5b80638342083a1461049e5780638895283f146104b45780638ba4cc3c146104d45780638d859f3e146104f45780638da5cb5b1461050f57600080fd5b80632f745c59116101bc5780635b1a540a116101805780635b1a540a1461041057806360d938dc1461042a5780636352211e1461044957806370a0823114610469578063715018a61461048957600080fd5b80632f745c591461037a57806332cb6b0c1461039a57806342842e0e146103b05780634f6ccce7146103d057806355f804b3146103f057600080fd5b8063095ea7b311610203578063095ea7b3146102ed57806318160ddd1461030f5780631c5b64e2146103245780631ea639011461034457806323b872dd1461035a57600080fd5b806301ffc9a714610235578063057707a01461026a57806306fdde0314610293578063081812fc146102b5575b600080fd5b34801561024157600080fd5b506102556102503660046124cf565b610717565b60405190151581526020015b60405180910390f35b34801561027657600080fd5b50610285668e1bc9bf04000081565b604051908152602001610261565b34801561029f57600080fd5b506102a8610784565b6040516102619190612603565b3480156102c157600080fd5b506102d56102d0366004612552565b610816565b6040516001600160a01b039091168152602001610261565b3480156102f957600080fd5b5061030d610308366004612415565b6108a6565b005b34801561031b57600080fd5b506102856109be565b34801561033057600080fd5b5061025561033f3660046124b4565b6109d4565b34801561035057600080fd5b5061028561014d81565b34801561036657600080fd5b5061030d610375366004612333565b610a1f565b34801561038657600080fd5b50610285610395366004612415565b610a2a565b3480156103a657600080fd5b506102856122b881565b3480156103bc57600080fd5b5061030d6103cb366004612333565b610ba2565b3480156103dc57600080fd5b506102856103eb366004612552565b610bbd565b3480156103fc57600080fd5b5061025561040b366004612509565b610c25565b34801561041c57600080fd5b50600a546102559060ff1681565b34801561043657600080fd5b50600a5461025590610100900460ff1681565b34801561045557600080fd5b506102d5610464366004612552565b610c6e565b34801561047557600080fd5b506102856104843660046122e5565b610c80565b34801561049557600080fd5b5061030d610d11565b3480156104aa57600080fd5b5061028561216b81565b3480156104c057600080fd5b506102556104cf3660046124b4565b610d47565b3480156104e057600080fd5b506102556104ef366004612415565b610d91565b34801561050057600080fd5b5061028566b1a2bc2ec5000081565b34801561051b57600080fd5b506008546001600160a01b03166102d5565b34801561053957600080fd5b506102a8610e39565b34801561054e57600080fd5b50610285600481565b34801561056357600080fd5b5061030d6105723660046123eb565b610e48565b34801561058357600080fd5b50600a546102559062010000900460ff1681565b3480156105a357600080fd5b506105d16105b23660046122e5565b6009602052600090815260409020805460019091015460ff9091169082565b604080519215158352602083019190915201610261565b3480156105f457600080fd5b5061030d61060336600461236f565b610f0d565b34801561061457600080fd5b50610255610f46565b34801561062957600080fd5b506102a8610638366004612552565b610fee565b34801561064957600080fd5b506102a86110bb565b34801561065e57600080fd5b5061028560075481565b34801561067457600080fd5b50610255610683366004612300565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b6102556106bf366004612552565b611149565b3480156106d057600080fd5b506102556106df36600461243f565b61132e565b3480156106f057600080fd5b5061030d6106ff3660046122e5565b6113d9565b610255610712366004612552565b611474565b60006001600160e01b031982166380ac58cd60e01b148061074857506001600160e01b03198216635b5e139f60e01b145b8061076357506001600160e01b0319821663780e9d6360e01b145b8061077e57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546107939061278d565b80601f01602080910402602001604051908101604052809291908181526020018280546107bf9061278d565b801561080c5780601f106107e15761010080835404028352916020019161080c565b820191906000526020600020905b8154815290600101906020018083116107ef57829003601f168201915b5050505050905090565b6000610823826000541190565b61088a5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006108b182610c6e565b9050806001600160a01b0316836001600160a01b031614156109205760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610881565b336001600160a01b038216148061093c575061093c8133610683565b6109ae5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610881565b6109b9838383611715565b505050565b600060016000546109cf9190612733565b905090565b6008546000906001600160a01b03163314610a015760405162461bcd60e51b815260040161088190612616565b50600a805462ff00001916620100008315150217905560015b919050565b6109b9838383611771565b6000610a3583610c80565b8210610a8e5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610881565b6000610a986109be565b905060008060005b83811015610b42576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610af357805192505b876001600160a01b0316836001600160a01b03161415610b2f5786841415610b215750935061077e92505050565b83610b2b816127c8565b9450505b5080610b3a816127c8565b915050610aa0565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610881565b6109b983838360405180602001604052806000815250610f0d565b6000610bc76109be565b8210610c215760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610881565b5090565b6008546000906001600160a01b03163314610c525760405162461bcd60e51b815260040161088190612616565b8151610c6590600b9060208501906121b8565b50600192915050565b6000610c7982611af8565b5192915050565b60006001600160a01b038216610cec5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610881565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6008546001600160a01b03163314610d3b5760405162461bcd60e51b815260040161088190612616565b610d456000611ca2565b565b6008546000906001600160a01b03163314610d745760405162461bcd60e51b815260040161088190612616565b50600a80548215156101000261ff00199091161790556001919050565b6008546000906001600160a01b03163314610dbe5760405162461bcd60e51b815260040161088190612616565b6000610dc86109be565b90506122b8610dd784836126c0565b1115610e255760405162461bcd60e51b815260206004820152601960248201527f616d6f756e742065786365656473206d617820737570706c79000000000000006044820152606401610881565b610e2f8484611cf4565b5060019392505050565b6060600280546107939061278d565b6001600160a01b038216331415610ea15760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610881565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b610f18848484611771565b610f2484848484611fa5565b610f405760405162461bcd60e51b81526004016108819061264b565b50505050565b6008546000906001600160a01b03163314610f735760405162461bcd60e51b815260040161088190612616565b4780610fb85760405162461bcd60e51b81526020600482015260146024820152736e6f2066756e647320746f20776974686472617760601b6044820152606401610881565b604051339082156108fc029083906000818181858888f19350505050158015610fe5573d6000803e3d6000fd5b50600191505090565b6060610ffb826000541190565b61105f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610881565b60006110696120ab565b9050600081511161108957604051806020016040528060008152506110b4565b80611093846120ba565b6040516020016110a4929190612597565b6040516020818303038152906040525b9392505050565b600b80546110c89061278d565b80601f01602080910402602001604051908101604052809291908181526020018280546110f49061278d565b80156111415780601f1061111657610100808354040283529160200191611141565b820191906000526020600020905b81548152906001019060200180831161112457829003601f168201915b505050505081565b600032331461118d5760405162461bcd60e51b815260206004820152601060248201526f1b5d5cdd0818994818481dd85b1b195d60821b6044820152606401610881565b60006111976109be565b600a5490915062010000900460ff166111f25760405162461bcd60e51b815260206004820152601960248201527f7075626c69632073616c65206e6f7420616374697661746564000000000000006044820152606401610881565b60008311801561122257507f00000000000000000000000000000000000000000000000000000000000000048311155b61126e5760405162461bcd60e51b815260206004820152601a60248201527f616d6f756e742065786365656473206261746368206c696d69740000000000006044820152606401610881565b61216b61127b84836126c0565b11156112c95760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e74206578636565647320617661696c61626c6520737570706c79006044820152606401610881565b6112da8366b1a2bc2ec500006126ec565b34146113245760405162461bcd60e51b81526020600482015260196024820152781a5b98dbdc9c9958dd0811551208185b5bdd5b9d081cd95b9d603a1b6044820152606401610881565b610c653384611cf4565b6008546000906001600160a01b0316331461135b5760405162461bcd60e51b815260040161088190612616565b8160005b818110156113ce5760016009600087878581811061137f5761137f612823565b905060200201602081019061139491906122e5565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113c6816127c8565b91505061135f565b506001949350505050565b6008546001600160a01b031633146114035760405162461bcd60e51b815260040161088190612616565b6001600160a01b0381166114685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610881565b61147181611ca2565b50565b60003233146114b85760405162461bcd60e51b815260206004820152601060248201526f1b5d5cdd0818994818481dd85b1b195d60821b6044820152606401610881565b60006114c26109be565b600a54909150610100900460ff1661151c5760405162461bcd60e51b815260206004820152601a60248201527f707269766174652073616c65206e6f74206163746976617465640000000000006044820152606401610881565b3360009081526009602052604090206001015460049061153d9085906126c0565b11156115845760405162461bcd60e51b815260206004820152601660248201527513585e081b5a5b9d081b1a5b5a5d081c995858da195960521b6044820152606401610881565b60048311156115d55760405162461bcd60e51b815260206004820152601860248201527f6d696e20616d6f756e742065786365656473206c696d697400000000000000006044820152606401610881565b3360009081526009602052604090205460ff1661162d5760405162461bcd60e51b815260206004820152601660248201527518d85b1b195c881b9bdd081dda1a5d195b1a5cdd195960521b6044820152606401610881565b61216b61163a84836126c0565b11156116885760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e74206578636565647320617661696c61626c6520737570706c79006044820152606401610881565b61169983668e1bc9bf0400006126ec565b34146116e35760405162461bcd60e51b81526020600482015260196024820152781a5b98dbdc9c9958dd0811551208185b5bdd5b9d081cd95b9d603a1b6044820152606401610881565b33600090815260096020526040812060010180548592906117059084906126c0565b90915550610c6590503384611cf4565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061177c82611af8565b80519091506000906001600160a01b0316336001600160a01b031614806117b35750336117a884610816565b6001600160a01b0316145b806117c5575081516117c59033610683565b90508061182f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610881565b846001600160a01b031682600001516001600160a01b0316146118a35760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610881565b6001600160a01b0384166119075760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610881565b6119176000848460000151611715565b6001600160a01b03851660009081526004602052604081208054600192906119499084906001600160801b031661270b565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926119959185911661269e565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526003909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055611a1d8460016126c0565b6000818152600360205260409020549091506001600160a01b0316611aaf57611a47816000541190565b15611aaf5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050505050565b6040805180820190915260008082526020820152611b17826000541190565b611b765760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610881565b60007f00000000000000000000000000000000000000000000000000000000000000048310611bd757611bc97f000000000000000000000000000000000000000000000000000000000000000484612733565b611bd49060016126c0565b90505b825b818110611c41576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611c2e57949350505050565b5080611c3981612776565b915050611bd9565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610881565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000546001600160a01b038316611d575760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610881565b611d62816000541190565b15611daf5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610881565b7f0000000000000000000000000000000000000000000000000000000000000004821115611e2a5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610881565b6001600160a01b0383166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611e8690869061269e565b6001600160801b03168152602001848360200151611ea4919061269e565b6001600160801b039081169091526001600160a01b0380871660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b84811015611f9b5760405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a481611f85816127c8565b9250508080611f93906127c8565b915050611f3b565b5060005550505050565b60006001600160a01b0384163b156113ce57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611fe99033908990889088906004016125c6565b602060405180830381600087803b15801561200357600080fd5b505af1925050508015612033575060408051601f3d908101601f19168201909252612030918101906124ec565b60015b61208d573d808015612061576040519150601f19603f3d011682016040523d82523d6000602084013e612066565b606091505b5080516120855760405162461bcd60e51b81526004016108819061264b565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600b80546107939061278d565b6060816120de5750506040805180820190915260018152600360fc1b602082015290565b8160005b811561210857806120f2816127c8565b91506121019050600a836126d8565b91506120e2565b60008167ffffffffffffffff81111561212357612123612839565b6040519080825280601f01601f19166020018201604052801561214d576020820181803683370190505b5090505b84156120a357612162600183612733565b915061216f600a866127e3565b61217a9060306126c0565b60f81b81838151811061218f5761218f612823565b60200101906001600160f81b031916908160001a9053506121b1600a866126d8565b9450612151565b8280546121c49061278d565b90600052602060002090601f0160209004810192826121e6576000855561222c565b82601f106121ff57805160ff191683800117855561222c565b8280016001018555821561222c579182015b8281111561222c578251825591602001919060010190612211565b50610c219291505b80821115610c215760008155600101612234565b600067ffffffffffffffff8084111561226357612263612839565b604051601f8501601f19908116603f0116810190828211818310171561228b5761228b612839565b816040528093508581528686860111156122a457600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b0381168114610a1a57600080fd5b80358015158114610a1a57600080fd5b6000602082840312156122f757600080fd5b6110b4826122be565b6000806040838503121561231357600080fd5b61231c836122be565b915061232a602084016122be565b90509250929050565b60008060006060848603121561234857600080fd5b612351846122be565b925061235f602085016122be565b9150604084013590509250925092565b6000806000806080858703121561238557600080fd5b61238e856122be565b935061239c602086016122be565b925060408501359150606085013567ffffffffffffffff8111156123bf57600080fd5b8501601f810187136123d057600080fd5b6123df87823560208401612248565b91505092959194509250565b600080604083850312156123fe57600080fd5b612407836122be565b915061232a602084016122d5565b6000806040838503121561242857600080fd5b612431836122be565b946020939093013593505050565b6000806020838503121561245257600080fd5b823567ffffffffffffffff8082111561246a57600080fd5b818501915085601f83011261247e57600080fd5b81358181111561248d57600080fd5b8660208260051b85010111156124a257600080fd5b60209290920196919550909350505050565b6000602082840312156124c657600080fd5b6110b4826122d5565b6000602082840312156124e157600080fd5b81356110b48161284f565b6000602082840312156124fe57600080fd5b81516110b48161284f565b60006020828403121561251b57600080fd5b813567ffffffffffffffff81111561253257600080fd5b8201601f8101841361254357600080fd5b6120a384823560208401612248565b60006020828403121561256457600080fd5b5035919050565b6000815180845261258381602086016020860161274a565b601f01601f19169290920160200192915050565b600083516125a981846020880161274a565b8351908301906125bd81836020880161274a565b01949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125f99083018461256b565b9695505050505050565b6020815260006110b4602083018461256b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b038083168185168083038211156125bd576125bd6127f7565b600082198211156126d3576126d36127f7565b500190565b6000826126e7576126e761280d565b500490565b6000816000190483118215151615612706576127066127f7565b500290565b60006001600160801b038381169083168181101561272b5761272b6127f7565b039392505050565b600082821015612745576127456127f7565b500390565b60005b8381101561276557818101518382015260200161274d565b83811115610f405750506000910152565b600081612785576127856127f7565b506000190190565b600181811c908216806127a157607f821691505b602082108114156127c257634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127dc576127dc6127f7565b5060010190565b6000826127f2576127f261280d565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461147157600080fdfea264697066735822122098852b93bc8c9ebc075bf2458980fbbe5b43aca558a402bfc2ee77959855237064736f6c63430008070033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6d657461646174612e6d6f6e737465726672656e732e696f2f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : newBaseURI (string): https://metadata.monsterfrens.io/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [2] : 68747470733a2f2f6d657461646174612e6d6f6e737465726672656e732e696f
Arg [3] : 2f00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

38801:4023:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24253:422;;;;;;;;;;-1:-1:-1;24253:422:0;;;;;:::i;:::-;;:::i;:::-;;;6523:14:1;;6516:22;6498:41;;6486:2;6471:18;24253:422:0;;;;;;;;39231:51;;;;;;;;;;;;39272:10;39231:51;;;;;19122:25:1;;;19110:2;19095:18;39231:51:0;18976:177:1;26214:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27909:292::-;;;;;;;;;;-1:-1:-1;27909:292:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5821:32:1;;;5803:51;;5791:2;5776:18;27909:292:0;5657:203:1;27430:413:0;;;;;;;;;;-1:-1:-1;27430:413:0;;;;;:::i;:::-;;:::i;:::-;;22606:103;;;;;;;;;;;;;:::i;40246:140::-;;;;;;;;;;-1:-1:-1;40246:140:0;;;;;:::i;:::-;;:::i;39131:41::-;;;;;;;;;;;;39169:3;39131:41;;28936:162;;;;;;;;;;-1:-1:-1;28936:162:0;;;;;:::i;:::-;;:::i;23317:864::-;;;;;;;;;;-1:-1:-1;23317:864:0;;;;;:::i;:::-;;:::i;39032:41::-;;;;;;;;;;;;39069:4;39032:41;;29169:177;;;;;;;;;;-1:-1:-1;29169:177:0;;;;;:::i;:::-;;:::i;22786:228::-;;;;;;;;;;-1:-1:-1;22786:228:0;;;;;:::i;:::-;;:::i;42562:138::-;;;;;;;;;;-1:-1:-1;42562:138:0;;;;;:::i;:::-;;:::i;39340:28::-;;;;;;;;;;-1:-1:-1;39340:28:0;;;;;;;;39375:27;;;;;;;;;;-1:-1:-1;39375:27:0;;;;;;;;;;;26023:124;;;;;;;;;;-1:-1:-1;26023:124:0;;;;;:::i;:::-;;:::i;24739:258::-;;;;;;;;;;-1:-1:-1;24739:258:0;;;;;:::i;:::-;;:::i;37947:103::-;;;;;;;;;;;;;:::i;39080:44::-;;;;;;;;;;;;39120:4;39080:44;;40096:142;;;;;;;;;;-1:-1:-1;40096:142:0;;;;;:::i;:::-;;:::i;41981:296::-;;;;;;;;;;-1:-1:-1;41981:296:0;;;;;:::i;:::-;;:::i;39289:42::-;;;;;;;;;;;;39321:10;39289:42;;37296:87;;;;;;;;;;-1:-1:-1;37369:6:0;;-1:-1:-1;;;;;37369:6:0;37296:87;;26383:104;;;;;;;;;;;;;:::i;39181:43::-;;;;;;;;;;;;39223:1;39181:43;;28273:311;;;;;;;;;;-1:-1:-1;28273:311:0;;;;;:::i;:::-;;:::i;39409:26::-;;;;;;;;;;-1:-1:-1;39409:26:0;;;;;;;;;;;38977:46;;;;;;;;;;-1:-1:-1;38977:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6743:14:1;;6736:22;6718:41;;6790:2;6775:18;;6768:34;;;;6691:18;38977:46:0;6550:258:1;29417:355:0;;;;;;;;;;-1:-1:-1;29417:355:0;;;;;:::i;:::-;;:::i;42285:269::-;;;;;;;;;;;;;:::i;26558:468::-;;;;;;;;;;-1:-1:-1;26558:468:0;;;;;:::i;:::-;;:::i;39467:26::-;;;;;;;;;;;;;:::i;33689:43::-;;;;;;;;;;;;;;;;28655:214;;;;;;;;;;-1:-1:-1;28655:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;28826:25:0;;;28797:4;28826:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;28655:214;41351:622;;;;;;:::i;:::-;;:::i;39766:322::-;;;;;;;;;;-1:-1:-1;39766:322:0;;;;;:::i;:::-;;:::i;38205:238::-;;;;;;;;;;-1:-1:-1;38205:238:0;;;;;:::i;:::-;;:::i;40394:949::-;;;;;;:::i;:::-;;:::i;24253:422::-;24400:4;-1:-1:-1;;;;;;24442:40:0;;-1:-1:-1;;;24442:40:0;;:105;;-1:-1:-1;;;;;;;24499:48:0;;-1:-1:-1;;;24499:48:0;24442:105;:172;;;-1:-1:-1;;;;;;;24564:50:0;;-1:-1:-1;;;24564:50:0;24442:172;:225;;;-1:-1:-1;;;;;;;;;;20167:40:0;;;24631:36;24422:245;24253:422;-1:-1:-1;;24253:422:0:o;26214:100::-;26268:13;26301:5;26294:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26214:100;:::o;27909:292::-;28013:7;28060:16;28068:7;30084:4;30118:11;-1:-1:-1;30108:21:0;30027:111;28060:16;28038:111;;;;-1:-1:-1;;;28038:111:0;;18361:2:1;28038:111:0;;;18343:21:1;18400:2;18380:18;;;18373:30;18439:34;18419:18;;;18412:62;-1:-1:-1;;;18490:18:1;;;18483:43;18543:19;;28038:111:0;;;;;;;;;-1:-1:-1;28169:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;28169:24:0;;27909:292::o;27430:413::-;27503:13;27519:24;27535:7;27519:15;:24::i;:::-;27503:40;;27568:5;-1:-1:-1;;;;;27562:11:0;:2;-1:-1:-1;;;;;27562:11:0;;;27554:58;;;;-1:-1:-1;;;27554:58:0;;14529:2:1;27554:58:0;;;14511:21:1;14568:2;14548:18;;;14541:30;14607:34;14587:18;;;14580:62;-1:-1:-1;;;14658:18:1;;;14651:32;14700:19;;27554:58:0;14327:398:1;27554:58:0;19176:10;-1:-1:-1;;;;;27647:21:0;;;;:62;;-1:-1:-1;27672:37:0;27689:5;19176:10;28655:214;:::i;27672:37::-;27625:169;;;;-1:-1:-1;;;27625:169:0;;11379:2:1;27625:169:0;;;11361:21:1;11418:2;11398:18;;;11391:30;11457:34;11437:18;;;11430:62;11528:27;11508:18;;;11501:55;11573:19;;27625:169:0;11177:421:1;27625:169:0;27807:28;27816:2;27820:7;27829:5;27807:8;:28::i;:::-;27492:351;27430:413;;:::o;22606:103::-;22659:7;22700:1;22686:11;;:15;;;;:::i;:::-;22679:22;;22606:103;:::o;40246:140::-;37369:6;;40314:4;;-1:-1:-1;;;;;37369:6:0;19176:10;37516:23;37508:68;;;;-1:-1:-1;;;37508:68:0;;;;;;;:::i;:::-;-1:-1:-1;40331:14:0::1;:25:::0;;-1:-1:-1;;40331:25:0::1;::::0;;::::1;;;;::::0;;-1:-1:-1;37587:1:0::1;40246:140:::0;;;:::o;28936:162::-;29062:28;29072:4;29078:2;29082:7;29062:9;:28::i;23317:864::-;23442:7;23483:16;23493:5;23483:9;:16::i;:::-;23475:5;:24;23467:71;;;;-1:-1:-1;;;23467:71:0;;7239:2:1;23467:71:0;;;7221:21:1;7278:2;7258:18;;;7251:30;7317:34;7297:18;;;7290:62;-1:-1:-1;;;7368:18:1;;;7361:32;7410:19;;23467:71:0;7037:398:1;23467:71:0;23549:22;23574:13;:11;:13::i;:::-;23549:38;;23598:19;23632:25;23686:9;23681:426;23705:14;23701:1;:18;23681:426;;;23741:31;23775:14;;;:11;:14;;;;;;;;;23741:48;;;;;;;;;-1:-1:-1;;;;;23741:48:0;;;;;-1:-1:-1;;;23741:48:0;;;;;;;;;;;;23808:28;23804:103;;23877:14;;;-1:-1:-1;23804:103:0;23946:5;-1:-1:-1;;;;;23925:26:0;:17;-1:-1:-1;;;;;23925:26:0;;23921:175;;;23991:5;23976:11;:20;23972:77;;;-1:-1:-1;24028:1:0;-1:-1:-1;24021:8:0;;-1:-1:-1;;;24021:8:0;23972:77;24067:13;;;;:::i;:::-;;;;23921:175;-1:-1:-1;23721:3:0;;;;:::i;:::-;;;;23681:426;;;-1:-1:-1;24117:56:0;;-1:-1:-1;;;24117:56:0;;16467:2:1;24117:56:0;;;16449:21:1;16506:2;16486:18;;;16479:30;16545:34;16525:18;;;16518:62;-1:-1:-1;;;16596:18:1;;;16589:44;16650:19;;24117:56:0;16265:410:1;29169:177:0;29299:39;29316:4;29322:2;29326:7;29299:39;;;;;;;;;;;;:16;:39::i;22786:228::-;22889:7;22930:13;:11;:13::i;:::-;22922:5;:21;22914:69;;;;-1:-1:-1;;;22914:69:0;;9864:2:1;22914:69:0;;;9846:21:1;9903:2;9883:18;;;9876:30;9942:34;9922:18;;;9915:62;-1:-1:-1;;;9993:18:1;;;9986:33;10036:19;;22914:69:0;9662:399:1;22914:69:0;-1:-1:-1;23001:5:0;22786:228::o;42562:138::-;37369:6;;42631:4;;-1:-1:-1;;;;;37369:6:0;19176:10;37516:23;37508:68;;;;-1:-1:-1;;;37508:68:0;;;;;;;:::i;:::-;42648:22;;::::1;::::0;:12:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;42688:4:0::1;::::0;42562:138;-1:-1:-1;;42562:138:0:o;26023:124::-;26087:7;26114:20;26126:7;26114:11;:20::i;:::-;:25;;26023:124;-1:-1:-1;;26023:124:0:o;24739:258::-;24803:7;-1:-1:-1;;;;;24845:19:0;;24823:112;;;;-1:-1:-1;;;24823:112:0;;11805:2:1;24823:112:0;;;11787:21:1;11844:2;11824:18;;;11817:30;11883:34;11863:18;;;11856:62;-1:-1:-1;;;11934:18:1;;;11927:41;11985:19;;24823:112:0;11603:407:1;24823:112:0;-1:-1:-1;;;;;;24961:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24961:27:0;;24739:258::o;37947:103::-;37369:6;;-1:-1:-1;;;;;37369:6:0;19176:10;37516:23;37508:68;;;;-1:-1:-1;;;37508:68:0;;;;;;;:::i;:::-;38012:30:::1;38039:1;38012:18;:30::i;:::-;37947:103::o:0;40096:142::-;37369:6;;40165:4;;-1:-1:-1;;;;;37369:6:0;19176:10;37516:23;37508:68;;;;-1:-1:-1;;;37508:68:0;;;;;;;:::i;:::-;-1:-1:-1;40182:15:0::1;:26:::0;;;::::1;;;;-1:-1:-1::0;;40182:26:0;;::::1;;::::0;;:15:::1;40096:142:::0;;;:::o;41981:296::-;37369:6;;42081:4;;-1:-1:-1;;;;;37369:6:0;19176:10;37516:23;37508:68;;;;-1:-1:-1;;;37508:68:0;;;;;;;:::i;:::-;42103:14:::1;42120:13;:11;:13::i;:::-;42103:30:::0;-1:-1:-1;39069:4:0::1;42154:15;42163:6:::0;42103:30;42154:15:::1;:::i;:::-;:29;;42146:67;;;::::0;-1:-1:-1;;;42146:67:0;;11025:2:1;42146:67:0::1;::::0;::::1;11007:21:1::0;11064:2;11044:18;;;11037:30;11103:27;11083:18;;;11076:55;11148:18;;42146:67:0::1;10823:349:1::0;42146:67:0::1;42226:21;42236:2;42240:6;42226:9;:21::i;:::-;-1:-1:-1::0;42265:4:0::1;::::0;41981:296;-1:-1:-1;;;41981:296:0:o;26383:104::-;26439:13;26472:7;26465:14;;;;;:::i;28273:311::-;-1:-1:-1;;;;;28391:24:0;;19176:10;28391:24;;28383:63;;;;-1:-1:-1;;;28383:63:0;;13755:2:1;28383:63:0;;;13737:21:1;13794:2;13774:18;;;13767:30;13833:28;13813:18;;;13806:56;13879:18;;28383:63:0;13553:350:1;28383:63:0;19176:10;28459:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;28459:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;28459:53:0;;;;;;;;;;28528:48;;6498:41:1;;;28459:42:0;;19176:10;28528:48;;6471:18:1;28528:48:0;;;;;;;28273:311;;:::o;29417:355::-;29576:28;29586:4;29592:2;29596:7;29576:9;:28::i;:::-;29637:48;29660:4;29666:2;29670:7;29679:5;29637:22;:48::i;:::-;29615:149;;;;-1:-1:-1;;;29615:149:0;;;;;;;:::i;:::-;29417:355;;;;:::o;42285:269::-;37369:6;;42337:4;;-1:-1:-1;;;;;37369:6:0;19176:10;37516:23;37508:68;;;;-1:-1:-1;;;37508:68:0;;;;;;;:::i;:::-;42372:21:::1;42414:11:::0;42406:44:::1;;;::::0;-1:-1:-1;;;42406:44:0;;18012:2:1;42406:44:0::1;::::0;::::1;17994:21:1::0;18051:2;18031:18;;;18024:30;-1:-1:-1;;;18070:18:1;;;18063:50;18130:18;;42406:44:0::1;17810:344:1::0;42406:44:0::1;42487:37;::::0;42495:10:::1;::::0;42487:37;::::1;;;::::0;42516:7;;42487:37:::1;::::0;;;42516:7;42495:10;42487:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;42542:4;42535:11;;;42285:269:::0;:::o;26558:468::-;26676:13;26729:16;26737:7;30084:4;30118:11;-1:-1:-1;30108:21:0;30027:111;26729:16;26707:113;;;;-1:-1:-1;;;26707:113:0;;13339:2:1;26707:113:0;;;13321:21:1;13378:2;13358:18;;;13351:30;13417:34;13397:18;;;13390:62;-1:-1:-1;;;13468:18:1;;;13461:45;13523:19;;26707:113:0;13137:411:1;26707:113:0;26833:21;26857:10;:8;:10::i;:::-;26833:34;;26922:1;26904:7;26898:21;:25;:120;;;;;;;;;;;;;;;;;26967:7;26976:18;:7;:16;:18::i;:::-;26950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26898:120;26878:140;26558:468;-1:-1:-1;;;26558:468:0:o;39467:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41351:622::-;41461:4;39544:9;39557:10;39544:23;39536:52;;;;-1:-1:-1;;;39536:52:0;;7993:2:1;39536:52:0;;;7975:21:1;8032:2;8012:18;;;8005:30;-1:-1:-1;;;8051:18:1;;;8044:46;8107:18;;39536:52:0;7791:340:1;39536:52:0;41483:14:::1;41500:13;:11;:13::i;:::-;41534:14;::::0;41483:30;;-1:-1:-1;41534:14:0;;::::1;;;41526:52;;;::::0;-1:-1:-1;;;41526:52:0;;12217:2:1;41526:52:0::1;::::0;::::1;12199:21:1::0;12256:2;12236:18;;;12229:30;12295:27;12275:18;;;12268:55;12340:18;;41526:52:0::1;12015:349:1::0;41526:52:0::1;41620:1;41611:6;:10;:36;;;;;41635:12;41625:6;:22;;41611:36;41589:112;;;::::0;-1:-1:-1;;;41589:112:0;;16112:2:1;41589:112:0::1;::::0;::::1;16094:21:1::0;16151:2;16131:18;;;16124:30;16190:28;16170:18;;;16163:56;16236:18;;41589:112:0::1;15910:350:1::0;41589:112:0::1;39120:4;41734:15;41743:6:::0;41734;:15:::1;:::i;:::-;:32;;41712:113;;;::::0;-1:-1:-1;;;41712:113:0;;16882:2:1;41712:113:0::1;::::0;::::1;16864:21:1::0;16921:2;16901:18;;;16894:30;16960:33;16940:18;;;16933:61;17011:18;;41712:113:0::1;16680:355:1::0;41712:113:0::1;41857:14;41865:6:::0;39321:10:::1;41857:14;:::i;:::-;41844:9;:27;41836:65;;;::::0;-1:-1:-1;;;41836:65:0;;17242:2:1;41836:65:0::1;::::0;::::1;17224:21:1::0;17281:2;17261:18;;;17254:30;-1:-1:-1;;;17300:18:1;;;17293:55;17365:18;;41836:65:0::1;17040:349:1::0;41836:65:0::1;41914:29;41924:10;41936:6;41914:9;:29::i;39766:322::-:0;37369:6;;39883:4;;-1:-1:-1;;;;;37369:6:0;19176:10;37516:23;37508:68;;;;-1:-1:-1;;;37508:68:0;;;;;;;:::i;:::-;39922:8;39905:14:::1;39950:109;39974:6;39970:1;:10;39950:109;;;40043:4;40002:11;:24;40014:8;;40023:1;40014:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;40002:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;40002:24:0;:45;;-1:-1:-1;;40002:45:0::1;::::0;::::1;;::::0;;;::::1;::::0;;39982:3;::::1;::::0;::::1;:::i;:::-;;;;39950:109;;;-1:-1:-1::0;40076:4:0::1;::::0;39766:322;-1:-1:-1;;;;39766:322:0:o;38205:238::-;37369:6;;-1:-1:-1;;;;;37369:6:0;19176:10;37516:23;37508:68;;;;-1:-1:-1;;;37508:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;38308:22:0;::::1;38286:110;;;::::0;-1:-1:-1;;;38286:110:0;;8338:2:1;38286:110:0::1;::::0;::::1;8320:21:1::0;8377:2;8357:18;;;8350:30;8416:34;8396:18;;;8389:62;-1:-1:-1;;;8467:18:1;;;8460:36;8513:19;;38286:110:0::1;8136:402:1::0;38286:110:0::1;38407:28;38426:8;38407:18;:28::i;:::-;38205:238:::0;:::o;40394:949::-;40505:4;39544:9;39557:10;39544:23;39536:52;;;;-1:-1:-1;;;39536:52:0;;7993:2:1;39536:52:0;;;7975:21:1;8032:2;8012:18;;;8005:30;-1:-1:-1;;;8051:18:1;;;8044:46;8107:18;;39536:52:0;7791:340:1;39536:52:0;40527:14:::1;40544:13;:11;:13::i;:::-;40578:15;::::0;40527:30;;-1:-1:-1;40578:15:0::1;::::0;::::1;;;40570:54;;;::::0;-1:-1:-1;;;40570:54:0;;9156:2:1;40570:54:0::1;::::0;::::1;9138:21:1::0;9195:2;9175:18;;;9168:30;9234:28;9214:18;;;9207:56;9280:18;;40570:54:0::1;8954:350:1::0;40570:54:0::1;40669:10;40657:23;::::0;;;:11:::1;:23;::::0;;;;:38:::1;;::::0;39223:1:::1;::::0;40657:47:::1;::::0;40698:6;;40657:47:::1;:::i;:::-;:66;;40635:138;;;::::0;-1:-1:-1;;;40635:138:0;;10674:2:1;40635:138:0::1;::::0;::::1;10656:21:1::0;10713:2;10693:18;;;10686:30;-1:-1:-1;;;10732:18:1;;;10725:52;10794:18;;40635:138:0::1;10472:346:1::0;40635:138:0::1;39223:1;40792:6;:25;;40784:62;;;::::0;-1:-1:-1;;;40784:62:0;;9511:2:1;40784:62:0::1;::::0;::::1;9493:21:1::0;9550:2;9530:18;;;9523:30;9589:26;9569:18;;;9562:54;9633:18;;40784:62:0::1;9309:348:1::0;40784:62:0::1;40891:10;40879:23;::::0;;;:11:::1;:23;::::0;;;;:37;::::1;;40857:109;;;::::0;-1:-1:-1;;;40857:109:0;;7642:2:1;40857:109:0::1;::::0;::::1;7624:21:1::0;7681:2;7661:18;;;7654:30;-1:-1:-1;;;7700:18:1;;;7693:52;7762:18;;40857:109:0::1;7440:346:1::0;40857:109:0::1;39120:4;40999:15;41008:6:::0;40999;:15:::1;:::i;:::-;:32;;40977:113;;;::::0;-1:-1:-1;;;40977:113:0;;16882:2:1;40977:113:0::1;::::0;::::1;16864:21:1::0;16921:2;16901:18;;;16894:30;16960:33;16940:18;;;16933:61;17011:18;;40977:113:0::1;16680:355:1::0;40977:113:0::1;41136:23;41153:6:::0;39272:10:::1;41136:23;:::i;:::-;41123:9;:36;41101:111;;;::::0;-1:-1:-1;;;41101:111:0;;17242:2:1;41101:111:0::1;::::0;::::1;17224:21:1::0;17281:2;17261:18;;;17254:30;-1:-1:-1;;;17300:18:1;;;17293:55;17365:18;;41101:111:0::1;17040:349:1::0;41101:111:0::1;41237:10;41225:23;::::0;;;:11:::1;:23;::::0;;;;:38:::1;;:48:::0;;41267:6;;41225:23;:48:::1;::::0;41267:6;;41225:48:::1;:::i;:::-;::::0;;;-1:-1:-1;41284:29:0::1;::::0;-1:-1:-1;41294:10:0::1;41306:6:::0;41284:9:::1;:29::i;33485:196::-:0;33600:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;33600:29:0;-1:-1:-1;;;;;33600:29:0;;;;;;;;;33645:28;;33600:24;;33645:28;;;;;;;33485:196;;;:::o;31767:1600::-;31882:35;31920:20;31932:7;31920:11;:20::i;:::-;31995:18;;31882:58;;-1:-1:-1;31953:22:0;;-1:-1:-1;;;;;31979:34:0;19176:10;-1:-1:-1;;;;;31979:34:0;;:87;;;-1:-1:-1;19176:10:0;32030:20;32042:7;32030:11;:20::i;:::-;-1:-1:-1;;;;;32030:36:0;;31979:87;:154;;;-1:-1:-1;32100:18:0;;32083:50;;19176:10;28655:214;:::i;32083:50::-;31953:181;;32169:17;32147:117;;;;-1:-1:-1;;;32147:117:0;;14110:2:1;32147:117:0;;;14092:21:1;14149:2;14129:18;;;14122:30;14188:34;14168:18;;;14161:62;-1:-1:-1;;;14239:18:1;;;14232:48;14297:19;;32147:117:0;13908:414:1;32147:117:0;32321:4;-1:-1:-1;;;;;32299:26:0;:13;:18;;;-1:-1:-1;;;;;32299:26:0;;32277:114;;;;-1:-1:-1;;;32277:114:0;;12571:2:1;32277:114:0;;;12553:21:1;12610:2;12590:18;;;12583:30;12649:34;12629:18;;;12622:62;-1:-1:-1;;;12700:18:1;;;12693:36;12746:19;;32277:114:0;12369:402:1;32277:114:0;-1:-1:-1;;;;;32410:16:0;;32402:66;;;;-1:-1:-1;;;32402:66:0;;10268:2:1;32402:66:0;;;10250:21:1;10307:2;10287:18;;;10280:30;10346:34;10326:18;;;10319:62;-1:-1:-1;;;10397:18:1;;;10390:35;10442:19;;32402:66:0;10066:401:1;32402:66:0;32533:49;32550:1;32554:7;32563:13;:18;;;32533:8;:49::i;:::-;-1:-1:-1;;;;;32595:18:0;;;;;;:12;:18;;;;;:31;;32625:1;;32595:18;:31;;32625:1;;-1:-1:-1;;;;;32595:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;32595:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;32637:16:0;;-1:-1:-1;32637:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;32637:16:0;;:29;;-1:-1:-1;;32637:29:0;;:::i;:::-;;;-1:-1:-1;;;;;32637:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32700:43:0;;;;;;;;-1:-1:-1;;;;;32700:43:0;;;;;;32726:15;32700:43;;;;;;;;;-1:-1:-1;32677:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;32677:66:0;-1:-1:-1;;;;;;32677:66:0;;;;;;;;;;;33005:11;32689:7;-1:-1:-1;33005:11:0;:::i;:::-;33072:1;33031:24;;;:11;:24;;;;;:29;32983:33;;-1:-1:-1;;;;;;33031:29:0;33027:288;;33095:20;33103:11;30084:4;30118:11;-1:-1:-1;30108:21:0;30027:111;33095:20;33091:213;;;33163:125;;;;;;;;33200:18;;-1:-1:-1;;;;;33163:125:0;;;;;;33241:28;;;;33163:125;;;;;;;;;;-1:-1:-1;33136:24:0;;;:11;:24;;;;;;;:152;;;;;;;;;-1:-1:-1;;;33136:152:0;-1:-1:-1;;;;;;33136:152:0;;;;;;;;;;;;33091:213;33351:7;33347:2;-1:-1:-1;;;;;33332:27:0;33341:4;-1:-1:-1;;;;;33332:27:0;;;;;;;;;;;31871:1496;;;31767:1600;;;:::o;25279:682::-;-1:-1:-1;;;;;;;;;;;;;;;;;25414:16:0;25422:7;30084:4;30118:11;-1:-1:-1;30108:21:0;30027:111;25414:16;25406:71;;;;-1:-1:-1;;;25406:71:0;;8745:2:1;25406:71:0;;;8727:21:1;8784:2;8764:18;;;8757:30;8823:34;8803:18;;;8796:62;-1:-1:-1;;;8874:18:1;;;8867:40;8924:19;;25406:71:0;8543:406:1;25406:71:0;25490:26;25542:12;25531:7;:23;25527:103;;25592:22;25602:12;25592:7;:22;:::i;:::-;:26;;25617:1;25592:26;:::i;:::-;25571:47;;25527:103;25662:7;25642:242;25679:18;25671:4;:26;25642:242;;25722:31;25756:17;;;:11;:17;;;;;;;;;25722:51;;;;;;;;;-1:-1:-1;;;;;25722:51:0;;;;;-1:-1:-1;;;25722:51:0;;;;;;;;;;;;25792:28;25788:85;;25848:9;25279:682;-1:-1:-1;;;;25279:682:0:o;25788:85::-;-1:-1:-1;25699:6:0;;;;:::i;:::-;;;;25642:242;;;-1:-1:-1;25896:57:0;;-1:-1:-1;;;25896:57:0;;17596:2:1;25896:57:0;;;17578:21:1;17635:2;17615:18;;;17608:30;17674:34;17654:18;;;17647:62;-1:-1:-1;;;17725:18:1;;;17718:45;17780:19;;25896:57:0;17394:411:1;38603:191:0;38696:6;;;-1:-1:-1;;;;;38713:17:0;;;-1:-1:-1;;;;;;38713:17:0;;;;;;;38746:40;;38696:6;;;38713:17;38696:6;;38746:40;;38677:16;;38746:40;38666:128;38603:191;:::o;30501:1012::-;30570:20;30593:11;-1:-1:-1;;;;;30623:16:0;;30615:62;;;;-1:-1:-1;;;30615:62:0;;15710:2:1;30615:62:0;;;15692:21:1;15749:2;15729:18;;;15722:30;15788:34;15768:18;;;15761:62;-1:-1:-1;;;15839:18:1;;;15832:31;15880:19;;30615:62:0;15508:397:1;30615:62:0;30822:21;30830:12;30084:4;30118:11;-1:-1:-1;30108:21:0;30027:111;30822:21;30821:22;30813:64;;;;-1:-1:-1;;;30813:64:0;;15352:2:1;30813:64:0;;;15334:21:1;15391:2;15371:18;;;15364:30;15430:31;15410:18;;;15403:59;15479:18;;30813:64:0;15150:353:1;30813:64:0;30908:12;30896:8;:24;;30888:71;;;;-1:-1:-1;;;30888:71:0;;18775:2:1;30888:71:0;;;18757:21:1;18814:2;18794:18;;;18787:30;18853:34;18833:18;;;18826:62;-1:-1:-1;;;18904:18:1;;;18897:32;18946:19;;30888:71:0;18573:398:1;30888:71:0;-1:-1:-1;;;;;31005:16:0;;30972:30;31005:16;;;:12;:16;;;;;;;;;30972:49;;;;;;;;;-1:-1:-1;;;;;30972:49:0;;;;;-1:-1:-1;;;30972:49:0;;;;;;;;;;;31051:135;;;;;;;;31077:19;;30972:49;;31051:135;;;31077:39;;31107:8;;31077:39;:::i;:::-;-1:-1:-1;;;;;31051:135:0;;;;;31166:8;31131:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;31051:135:0;;;;;;-1:-1:-1;;;;;31032:16:0;;;;;;;:12;:16;;;;;;;;:154;;;;;;;;-1:-1:-1;;;31032:154:0;;;;;;;;;;;;31225:43;;;;;;;;;;;31251:15;31225:43;;;;;;;;31197:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;31197:71:0;-1:-1:-1;;;;;;31197:71:0;;;;;;;;;;;;;;;;;;31209:12;;31329:138;31353:8;31349:1;:12;31329:138;;;31388:38;;31413:12;;-1:-1:-1;;;;;31388:38:0;;;31405:1;;31388:38;;31405:1;;31388:38;31441:14;;;;:::i;:::-;;;;31363:3;;;;;:::i;:::-;;;;31329:138;;;-1:-1:-1;31479:11:0;:26;-1:-1:-1;;;;30501:1012:0:o;35360:985::-;35515:4;-1:-1:-1;;;;;35536:13:0;;9064:20;9112:8;35532:806;;35589:175;;-1:-1:-1;;;35589:175:0;;-1:-1:-1;;;;;35589:36:0;;;;;:175;;19176:10;;35683:4;;35710:7;;35740:5;;35589:175;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35589:175:0;;;;;;;;-1:-1:-1;;35589:175:0;;;;;;;;;;;;:::i;:::-;;;35568:715;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35951:13:0;;35947:321;;35994:109;;-1:-1:-1;;;35994:109:0;;;;;;;:::i;35947:321::-;36218:6;36212:13;36203:6;36199:2;36195:15;36188:38;35568:715;-1:-1:-1;;;;;;35828:55:0;-1:-1:-1;;;35828:55:0;;-1:-1:-1;35532:806:0;35360:985;;;;;;:::o;42708:113::-;42768:13;42801:12;42794:19;;;;;:::i;16765:723::-;16821:13;17042:10;17038:53;;-1:-1:-1;;17069:10:0;;;;;;;;;;;;-1:-1:-1;;;17069:10:0;;;;;16765:723::o;17038:53::-;17116:5;17101:12;17157:78;17164:9;;17157:78;;17190:8;;;;:::i;:::-;;-1:-1:-1;17213:10:0;;-1:-1:-1;17221:2:0;17213:10;;:::i;:::-;;;17157:78;;;17245:19;17277:6;17267:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17267:17:0;;17245:39;;17295:154;17302:10;;17295:154;;17329:11;17339:1;17329:11;;:::i;:::-;;-1:-1:-1;17398:10:0;17406:2;17398:5;:10;:::i;:::-;17385:24;;:2;:24;:::i;:::-;17372:39;;17355:6;17362;17355:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17355:56:0;;;;;;;;-1:-1:-1;17426:11:0;17435:2;17426:11;;:::i;:::-;;;17295:154;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;828:160;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:470::-;5361:3;5399:6;5393:13;5415:53;5461:6;5456:3;5449:4;5441:6;5437:17;5415:53;:::i;:::-;5531:13;;5490:16;;;;5553:57;5531:13;5490:16;5587:4;5575:17;;5553:57;:::i;:::-;5626:20;;5182:470;-1:-1:-1;;;;5182:470:1:o;5865:488::-;-1:-1:-1;;;;;6134:15:1;;;6116:34;;6186:15;;6181:2;6166:18;;6159:43;6233:2;6218:18;;6211:34;;;6281:3;6276:2;6261:18;;6254:31;;;6059:4;;6302:45;;6327:19;;6319:6;6302:45;:::i;:::-;6294:53;5865:488;-1:-1:-1;;;;;;5865:488:1:o;6813:219::-;6962:2;6951:9;6944:21;6925:4;6982:44;7022:2;7011:9;7007:18;6999:6;6982:44;:::i;12776:356::-;12978:2;12960:21;;;12997:18;;;12990:30;13056:34;13051:2;13036:18;;13029:62;13123:2;13108:18;;12776:356::o;14730:415::-;14932:2;14914:21;;;14971:2;14951:18;;;14944:30;15010:34;15005:2;14990:18;;14983:62;-1:-1:-1;;;15076:2:1;15061:18;;15054:49;15135:3;15120:19;;14730:415::o;19158:253::-;19198:3;-1:-1:-1;;;;;19287:2:1;19284:1;19280:10;19317:2;19314:1;19310:10;19348:3;19344:2;19340:12;19335:3;19332:21;19329:47;;;19356:18;;:::i;19416:128::-;19456:3;19487:1;19483:6;19480:1;19477:13;19474:39;;;19493:18;;:::i;:::-;-1:-1:-1;19529:9:1;;19416:128::o;19549:120::-;19589:1;19615;19605:35;;19620:18;;:::i;:::-;-1:-1:-1;19654:9:1;;19549:120::o;19674:168::-;19714:7;19780:1;19776;19772:6;19768:14;19765:1;19762:21;19757:1;19750:9;19743:17;19739:45;19736:71;;;19787:18;;:::i;:::-;-1:-1:-1;19827:9:1;;19674:168::o;19847:246::-;19887:4;-1:-1:-1;;;;;20000:10:1;;;;19970;;20022:12;;;20019:38;;;20037:18;;:::i;:::-;20074:13;;19847:246;-1:-1:-1;;;19847:246:1:o;20098:125::-;20138:4;20166:1;20163;20160:8;20157:34;;;20171:18;;:::i;:::-;-1:-1:-1;20208:9:1;;20098:125::o;20228:258::-;20300:1;20310:113;20324:6;20321:1;20318:13;20310:113;;;20400:11;;;20394:18;20381:11;;;20374:39;20346:2;20339:10;20310:113;;;20441:6;20438:1;20435:13;20432:48;;;-1:-1:-1;;20476:1:1;20458:16;;20451:27;20228:258::o;20491:136::-;20530:3;20558:5;20548:39;;20567:18;;:::i;:::-;-1:-1:-1;;;20603:18:1;;20491:136::o;20632:380::-;20711:1;20707:12;;;;20754;;;20775:61;;20829:4;20821:6;20817:17;20807:27;;20775:61;20882:2;20874:6;20871:14;20851:18;20848:38;20845:161;;;20928:10;20923:3;20919:20;20916:1;20909:31;20963:4;20960:1;20953:15;20991:4;20988:1;20981:15;20845:161;;20632:380;;;:::o;21017:135::-;21056:3;-1:-1:-1;;21077:17:1;;21074:43;;;21097:18;;:::i;:::-;-1:-1:-1;21144:1:1;21133:13;;21017:135::o;21157:112::-;21189:1;21215;21205:35;;21220:18;;:::i;:::-;-1:-1:-1;21254:9:1;;21157:112::o;21274:127::-;21335:10;21330:3;21326:20;21323:1;21316:31;21366:4;21363:1;21356:15;21390:4;21387:1;21380:15;21406:127;21467:10;21462:3;21458:20;21455:1;21448:31;21498:4;21495:1;21488:15;21522:4;21519:1;21512:15;21538:127;21599:10;21594:3;21590:20;21587:1;21580:31;21630:4;21627:1;21620:15;21654:4;21651:1;21644:15;21670:127;21731:10;21726:3;21722:20;21719:1;21712:31;21762:4;21759:1;21752:15;21786:4;21783:1;21776:15;21802:131;-1:-1:-1;;;;;;21876:32:1;;21866:43;;21856:71;;21923:1;21920;21913:12

Swarm Source

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