ETH Price: $3,511.35 (+2.76%)
Gas: 13 Gwei

Token

BabyDeluxe (BABYBEAR)
 

Overview

Max Total Supply

3,500 BABYBEAR

Holders

909

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
nftclub.eth
Balance
1 BABYBEAR
0xdfeb50f97bb6a660697849ac13645e2e26cc4915
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:
BabyDeluxe

Compiler Version
v0.8.10+commit.fc410830

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

pragma solidity ^0.8.0;

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

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;


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

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

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

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

// OpenZeppelin Contracts v4.4.0 (utils/Address.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

// OpenZeppelin Contracts v4.4.0 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;


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

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/ERC721URIStorage.sol)

pragma solidity ^0.8.0;


/**
 * @dev ERC721 token with storage based token URI management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

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

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

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

// OpenZeppelin Contracts v4.4.0 (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts v4.4.0 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

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

// File: contracts/BabyDeluxe.sol

pragma solidity ^0.8.10;







contract BabyDeluxe is ERC721Enumerable, Ownable {
  using Strings for uint256;
  using Address for address;

  struct Conf {
        uint16 supply;
        uint16 _reserved;
        uint16 maxBabies;
        uint64 price;
    }
   
    address private controller;
    address public fundsWallet;
    bool public mintEnabled = false;
    bool public whitelistMintEnabled = false;
    uint8 public perMint = 10;
    uint16 public perWhitelistAccount = 5;
    uint16 public perAccount = 300;
    uint256 public imagesHash;
    string private defaultURI;
    string private baseURI;
    string private metaURI;
    mapping (address => bool) public whitelist;

    

    mapping(uint256 => uint256) private metaHashes;

    Conf private conf;

    event updateMetaHash(address, uint256, uint256);

    modifier isController(address sender) {
        require(
            sender != address(0) && (sender == owner() || sender == controller)
        );
        _;
    }

    /**
     * @notice Setup ERC721 and initial config
     */
    constructor(
        string memory name,
        string memory symbol,
        string memory _defaultURI,
        address _fundsWallet
    ) ERC721(name, symbol) {
        require(_fundsWallet != address(0), "Zero address error");
        fundsWallet = _fundsWallet;
        conf = Conf(0, 100, 3500, 50000000000000000);
        defaultURI = _defaultURI;
    }

    /**
     * @notice Send ETH to owners wallet 
     */
    function ownerWithdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }

    /**
     * @notice send contract eth to fundswallet 
     */
    function fundsWithdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(fundsWallet).transfer(balance);
    }

    /**
     * @notice Send reserved babies 
     * @param _to address to send reserved nfts to.
     * @param _amount number of nfts to send 
     */
    function fetchTeamReserved(address _to, uint16 _amount)
        public
        onlyOwner
    {
        require( _to !=  address(0), "Zero address error");
        require( _amount <= conf._reserved, "Exceeds reserved babies supply");
        uint16 supply = conf.supply;
        unchecked {
          for (uint8 i = 0; i < _amount; i++) {
              _safeMint(_to, supply++);
          }
        }
        conf.supply = supply;
        conf._reserved -= _amount;
    }

    /**
     * @notice Bring new Babies into the world.
     * @param amount Number of Babies to mint.
     * @dev Utilize unchecked {} and calldata for gas savings.
     */
    function mint(uint256 amount) public payable {
        require(mintEnabled, "Minting is disabled.");
        require(
            conf.supply + amount <= conf.maxBabies - conf._reserved,
            "Amount exceeds maximum supply of Babies."
        );
        require(
            balanceOf(msg.sender) + amount <= perAccount,
            "Amount exceeds current maximum mints per account."
        );
        require(
            amount <= perMint,
            "Amount exceeds current maximum Babies per mint."
        );
        require(
            conf.price * amount <= msg.value,
            "Ether value sent is not correct."
        );

        uint16 supply = conf.supply;
        unchecked {
            for (uint16 i = 0; i < amount; i++) {
                _safeMint(msg.sender, supply++);
            }
        }
        conf.supply = supply;
    }

    // Whitelist functions

    /**
     * @notice add addresses to whitelist in bulk.
     * @param addresses Arrary of whitelisted addresses
     * @dev Only authorized accounts.
     */
    function bulkWhitelist(address[] memory addresses) public onlyOwner {
        for(uint i=0; i < addresses.length; i++){
            address addr = addresses[i];
            if(whitelist[addr] != true && addr != address(0)){
                whitelist[addr] = true;
            }
        }
    }

    /**
     * @notice Whitelist Bring new Babies into the world.
     * @param amount Number of Babies to mint.
     * @dev Utilize unchecked {} and calldata for gas savings.
     */
    function whitelistMint(uint256 amount) public payable {
        require(whitelistMintEnabled, "Whitelist Minting is disabled.");
        require( whitelist[msg.sender] == true, "Only whitelist can mint" );
        require(
            conf.supply + amount <= conf.maxBabies - conf._reserved,
            "Amount exceeds maximum supply of Babies."
        );
        require(
            balanceOf(msg.sender) + amount <= perWhitelistAccount,
            "Amount exceeds current maximum mints per account."
        );
        require(
            amount <= perMint,
            "Amount exceeds current maximum Babies per mint."
        );
        require(
            conf.price * amount <= msg.value,
            "Ether value sent is not correct."
        );

        uint16 supply = conf.supply;
        unchecked {
            for (uint16 i = 0; i < amount; i++) {
                _safeMint(msg.sender, supply++);
            }
        }
        conf.supply = supply;
    }

    /**
     * @notice Toggle white list mint status.
     * @dev Only authorized accounts.
     */
    function toggleWhitelistMintEnabled() public onlyOwner {
        whitelistMintEnabled = !whitelistMintEnabled;
    }

    /**
     * @notice Set price.
     * @param newPrice new minting price
     * @dev Only authorized accounts.
     */
    function setPrice(uint64 newPrice) public onlyOwner {
        conf.price = newPrice;
    }

    /**
     * @notice Set funds wallet.
     * @param _fundsWallet new funds wallet address 
     * @dev Only authorized accounts.
     */
    function setFundsWallet(address _fundsWallet) public onlyOwner {
        require(_fundsWallet != address(0), "Zero address error");
        fundsWallet = _fundsWallet;
    }

    /**
     * @notice Set meta hash for token.
     * @param id Token id.
     * @param _hash Hash value.
     * @dev Only authorized accounts.
     */
    function setMetaHash(uint256 id, uint256 _hash)
        public
        isController(msg.sender)
    {
        require(_exists(id), "Token does not exist.");
        metaHashes[id] = _hash;
        emit updateMetaHash(msg.sender, id, _hash);
    }

    /**
     * @notice Return mint price.
     */
    function getMintPrice() public view returns (uint64) {
        return conf.price;
    }

    /**
     * @notice Return meta hash for token.
     */
    function getMetaHash(uint256 id) public view returns (uint256) {
        return metaHashes[id];
    }

    /**
     * @notice Sets URI for image hashes.
     */
    function setImagesHash(uint256 _imagesHash) public onlyOwner {
        imagesHash = _imagesHash;
    }

    /**
     * @notice Toggles minting state.
     */
    function toggleMintEnabled() public onlyOwner {
        mintEnabled = !mintEnabled;
    }

    /**
     * @notice Sets max Babies per mint.
     */
    function setPerMint(uint8 _perMint) public onlyOwner {
        perMint = _perMint;
    }

    /**
     * @notice Sets max mints per account.
     */
    function setPerAccount(uint16 _perAccount) public onlyOwner {
        perAccount = _perAccount;
    }
    
    /**
     * @notice Sets max mints per whitelist account.
     */
    function setPerWhitelistAccount(uint16 _perAccount) public onlyOwner {
        perWhitelistAccount = _perAccount;
    }

    /**
     * @notice Set base URI.
     */
    function setBaseURI(string memory _baseURI) public onlyOwner {
        baseURI = _baseURI;
    }

    /**
     * @notice Set default URI.
     */
    function setDefaultURI(string memory _defaultURI) public onlyOwner {
        defaultURI = _defaultURI;
    }

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        require(_exists(tokenId), "Token does not exist.");

        if (bytes(baseURI).length == 0) {
            return defaultURI;
        } else {
            return string(abi.encodePacked(baseURI, (tokenId).toString()));
        }
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"_defaultURI","type":"string"},{"internalType":"address","name":"_fundsWallet","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"","type":"address"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"","type":"uint256"}],"name":"updateMetaHash","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"bulkWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint16","name":"_amount","type":"uint16"}],"name":"fetchTeamReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"fundsWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fundsWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getMetaHash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"imagesHash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ownerWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"perAccount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"perWhitelistAccount","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_fundsWallet","type":"address"}],"name":"setFundsWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_imagesHash","type":"uint256"}],"name":"setImagesHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"_hash","type":"uint256"}],"name":"setMetaHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_perAccount","type":"uint16"}],"name":"setPerAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_perMint","type":"uint8"}],"name":"setPerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint16","name":"_perAccount","type":"uint16"}],"name":"setPerWhitelistAccount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"newPrice","type":"uint64"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistMintEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

6080604052600c805466ffffffffffffff60a01b1916639600028560b11b1790553480156200002d57600080fd5b506040516200330f3803806200330f83398101604081905262000050916200033f565b83518490849062000069906000906020850190620001cc565b5080516200007f906001906020840190620001cc565b5050506200009c620000966200017660201b60201c565b6200017a565b6001600160a01b038116620000ec5760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640160405180910390fd5b600c80546001600160a01b0319166001600160a01b03831617905560408051608081018252600081526064602080830191909152610dac9282019290925266b1a2bc2ec50000606090910152601380546001600160701b0319166cb1a2bc2ec500000dac0064000017905582516200016b91600e9190850190620001cc565b50505050506200042f565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b828054620001da90620003f2565b90600052602060002090601f016020900481019282620001fe576000855562000249565b82601f106200021957805160ff191683800117855562000249565b8280016001018555821562000249579182015b82811115620002495782518255916020019190600101906200022c565b50620002579291506200025b565b5090565b5b808211156200025757600081556001016200025c565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200029a57600080fd5b81516001600160401b0380821115620002b757620002b762000272565b604051601f8301601f19908116603f01168101908282118183101715620002e257620002e262000272565b81604052838152602092508683858801011115620002ff57600080fd5b600091505b8382101562000323578582018301518183018401529082019062000304565b83821115620003355760008385830101525b9695505050505050565b600080600080608085870312156200035657600080fd5b84516001600160401b03808211156200036e57600080fd5b6200037c8883890162000288565b955060208701519150808211156200039357600080fd5b620003a18883890162000288565b94506040870151915080821115620003b857600080fd5b50620003c78782880162000288565b606087015190935090506001600160a01b0381168114620003e757600080fd5b939692955090935050565b600181811c908216806200040757607f821691505b602082108114156200042957634e487b7160e01b600052602260045260246000fd5b50919050565b612ed0806200043f6000396000f3fe60806040526004361061027d5760003560e01c8063715018a61161014f578063b88d4fde116100c1578063da1b9e081161007a578063da1b9e08146107b7578063e985e9c5146107d7578063f2fde38b14610820578063f64ca26114610840578063f73b554114610860578063fb4251761461088057600080fd5b8063b88d4fde146106e7578063c87b56dd14610707578063cb6f238d14610727578063ce75345b14610747578063d123973014610769578063d34b51c51461078a57600080fd5b806395d89b411161011357806395d89b41146106205780639b19251a14610635578063a0712d6814610665578063a22cb46514610678578063a7f93ebd14610698578063a80a1fd1146106d257600080fd5b8063715018a61461059a57806372c19498146105af578063868ff4a2146105cf5780638da5cb5b146105e257806391d7c2831461060057600080fd5b80632f745c59116101f357806355f804b3116101ac57806355f804b3146104e457806361f5baeb146105045780636352211e1461051957806364e39b87146105395780636caede3d1461055957806370a082311461057a57600080fd5b80632f745c591461042557806332b953721461044557806342842e0e1461045a5780634311de8f1461047a5780634eb0bada1461048f5780634f6ccce7146104c457600080fd5b80630ed62b02116102455780630ed62b021461035357806318160ddd146103865780631866ea8d146103a55780632194f3a2146103c5578063229c2048146103e557806323b872dd1461040557600080fd5b806301ffc9a71461028257806306fdde03146102b757806307db498b146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125f0565b610896565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc6108c1565b6040516102ae919061266c565b3480156102e557600080fd5b506102f96102f436600461267f565b610953565b005b34801561030757600080fd5b5061031b61031636600461267f565b61098b565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102f961034e3660046126af565b610a20565b34801561035f57600080fd5b50600c5461037490600160b01b900460ff1681565b60405160ff90911681526020016102ae565b34801561039257600080fd5b506008545b6040519081526020016102ae565b3480156103b157600080fd5b506102f96103c03660046126eb565b610b36565b3480156103d157600080fd5b50600c5461031b906001600160a01b031681565b3480156103f157600080fd5b506102f9610400366004612706565b610b82565b34801561041157600080fd5b506102f9610420366004612730565b610bdd565b34801561043157600080fd5b506103976104403660046126af565b610c0e565b34801561045157600080fd5b506102f9610ca4565b34801561046657600080fd5b506102f9610475366004612730565b610cef565b34801561048657600080fd5b506102f9610d0a565b34801561049b57600080fd5b50600c546104b190600160c81b900461ffff1681565b60405161ffff90911681526020016102ae565b3480156104d057600080fd5b506103976104df36600461267f565b610d67565b3480156104f057600080fd5b506102f96104ff36600461280b565b610dfa565b34801561051057600080fd5b506102f9610e37565b34801561052557600080fd5b5061031b61053436600461267f565b610e82565b34801561054557600080fd5b506102f9610554366004612854565b610ef9565b34801561056557600080fd5b50600c546102a290600160a81b900460ff1681565b34801561058657600080fd5b50610397610595366004612854565b610f90565b3480156105a657600080fd5b506102f9611017565b3480156105bb57600080fd5b506102f96105ca36600461286f565b61104d565b6102f96105dd36600461267f565b6111a5565b3480156105ee57600080fd5b50600a546001600160a01b031661031b565b34801561060c57600080fd5b506102f961061b3660046128a2565b6113de565b34801561062c57600080fd5b506102cc6114cf565b34801561064157600080fd5b506102a2610650366004612854565b60116020526000908152604090205460ff1681565b6102f961067336600461267f565b6114de565b34801561068457600080fd5b506102f96106933660046128c4565b611690565b3480156106a457600080fd5b50601354600160301b900467ffffffffffffffff1660405167ffffffffffffffff90911681526020016102ae565b3480156106de57600080fd5b506102f961169b565b3480156106f357600080fd5b506102f9610702366004612900565b6116ff565b34801561071357600080fd5b506102cc61072236600461267f565b611737565b34801561073357600080fd5b506102f961074236600461297c565b611874565b34801561075357600080fd5b50600c546104b190600160b81b900461ffff1681565b34801561077557600080fd5b50600c546102a290600160a01b900460ff1681565b34801561079657600080fd5b506103976107a536600461267f565b60009081526012602052604090205490565b3480156107c357600080fd5b506102f96107d236600461280b565b6118be565b3480156107e357600080fd5b506102a26107f236600461299f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082c57600080fd5b506102f961083b366004612854565b6118fb565b34801561084c57600080fd5b506102f961085b3660046126eb565b611996565b34801561086c57600080fd5b506102f961087b3660046129c9565b6119e2565b34801561088c57600080fd5b50610397600d5481565b60006001600160e01b0319821663780e9d6360e01b14806108bb57506108bb82611aae565b92915050565b6060600080546108d090612a76565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90612a76565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b600a546001600160a01b031633146109865760405162461bcd60e51b815260040161097d90612ab1565b60405180910390fd5b600d55565b6000818152600260205260408120546001600160a01b0316610a045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097d565b506000908152600460205260409020546001600160a01b031690565b6000610a2b82610e82565b9050806001600160a01b0316836001600160a01b03161415610a995760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097d565b336001600160a01b0382161480610ab55750610ab581336107f2565b610b275760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097d565b610b318383611afe565b505050565b600a546001600160a01b03163314610b605760405162461bcd60e51b815260040161097d90612ab1565b600c805461ffff909216600160b81b0261ffff60b81b19909216919091179055565b600a546001600160a01b03163314610bac5760405162461bcd60e51b815260040161097d90612ab1565b6013805467ffffffffffffffff909216600160301b026dffffffffffffffff00000000000019909216919091179055565b610be73382611b6c565b610c035760405162461bcd60e51b815260040161097d90612ae6565b610b31838383611c63565b6000610c1983610f90565b8210610c7b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cce5760405162461bcd60e51b815260040161097d90612ab1565b600c805460ff60a81b198116600160a81b9182900460ff1615909102179055565b610b31838383604051806020016040528060008152506116ff565b600a546001600160a01b03163314610d345760405162461bcd60e51b815260040161097d90612ab1565b6040514790339082156108fc029083906000818181858888f19350505050158015610d63573d6000803e3d6000fd5b5050565b6000610d7260085490565b8210610dd55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097d565b60088281548110610de857610de8612b37565b90600052602060002001549050919050565b600a546001600160a01b03163314610e245760405162461bcd60e51b815260040161097d90612ab1565b8051610d6390600f906020840190612541565b600a546001600160a01b03163314610e615760405162461bcd60e51b815260040161097d90612ab1565b600c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806108bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097d565b600a546001600160a01b03163314610f235760405162461bcd60e51b815260040161097d90612ab1565b6001600160a01b038116610f6e5760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161097d565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610ffb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110415760405162461bcd60e51b815260040161097d90612ab1565b61104b6000611e0e565b565b600a546001600160a01b031633146110775760405162461bcd60e51b815260040161097d90612ab1565b6001600160a01b0382166110c25760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161097d565b60135461ffff62010000909104811690821611156111225760405162461bcd60e51b815260206004820152601e60248201527f457863656564732072657365727665642062616269657320737570706c790000604482015260640161097d565b60135461ffff1660005b8261ffff168160ff1610156111575761114f848380600101945061ffff16611e60565b60010161112c565b506013805461ffff191661ffff8381169190911780835584929160029161118691859162010000900416612b63565b92506101000a81548161ffff021916908361ffff160217905550505050565b600c54600160a81b900460ff166111fe5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374204d696e74696e672069732064697361626c65642e0000604482015260640161097d565b3360009081526011602052604090205460ff1615156001146112625760405162461bcd60e51b815260206004820152601760248201527f4f6e6c792077686974656c6973742063616e206d696e74000000000000000000604482015260640161097d565b6013546112839061ffff620100008204811691640100000000900416612b63565b60135461ffff9182169161129991849116612b86565b11156112b75760405162461bcd60e51b815260040161097d90612b9e565b600c54600160b81b900461ffff16816112cf33610f90565b6112d99190612b86565b11156112f75760405162461bcd60e51b815260040161097d90612be6565b600c54600160b01b900460ff168111156113235760405162461bcd60e51b815260040161097d90612c37565b6013543490611344908390600160301b900467ffffffffffffffff16612c86565b11156113925760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161097d565b60135461ffff1660005b828161ffff1610156113c4576113bc338380600101945061ffff16611e60565b60010161139c565b506013805461ffff191661ffff9290921691909117905550565b3380158015906114125750600a546001600160a01b03828116911614806114125750600b546001600160a01b038281169116145b61141b57600080fd5b6000838152600260205260409020546001600160a01b03166114775760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161097d565b60008381526012602090815260409182902084905581513381529081018590529081018390527fb10b3625df7286db8dccbbe246db7ca30a7cb38626be90ba222cbf01339eeeba9060600160405180910390a1505050565b6060600180546108d090612a76565b600c54600160a01b900460ff1661152e5760405162461bcd60e51b815260206004820152601460248201527326b4b73a34b7339034b9903234b9b0b13632b21760611b604482015260640161097d565b60135461154f9061ffff620100008204811691640100000000900416612b63565b60135461ffff9182169161156591849116612b86565b11156115835760405162461bcd60e51b815260040161097d90612b9e565b600c54600160c81b900461ffff168161159b33610f90565b6115a59190612b86565b11156115c35760405162461bcd60e51b815260040161097d90612be6565b600c54600160b01b900460ff168111156115ef5760405162461bcd60e51b815260040161097d90612c37565b6013543490611610908390600160301b900467ffffffffffffffff16612c86565b111561165e5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161097d565b60135461ffff1660005b828161ffff1610156113c457611688338380600101945061ffff16611e60565b600101611668565b610d63338383611e7a565b600a546001600160a01b031633146116c55760405162461bcd60e51b815260040161097d90612ab1565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610d63573d6000803e3d6000fd5b6117093383611b6c565b6117255760405162461bcd60e51b815260040161097d90612ae6565b61173184848484611f49565b50505050565b6000818152600260205260409020546060906001600160a01b03166117965760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161097d565b600f80546117a390612a76565b1515905061183d57600e80546117b890612a76565b80601f01602080910402602001604051908101604052809291908181526020018280546117e490612a76565b80156118315780601f1061180657610100808354040283529160200191611831565b820191906000526020600020905b81548152906001019060200180831161181457829003601f168201915b50505050509050919050565b600f61184883611f7c565b604051602001611859929190612cc1565b6040516020818303038152906040529050919050565b919050565b600a546001600160a01b0316331461189e5760405162461bcd60e51b815260040161097d90612ab1565b600c805460ff909216600160b01b0260ff60b01b19909216919091179055565b600a546001600160a01b031633146118e85760405162461bcd60e51b815260040161097d90612ab1565b8051610d6390600e906020840190612541565b600a546001600160a01b031633146119255760405162461bcd60e51b815260040161097d90612ab1565b6001600160a01b03811661198a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097d565b61199381611e0e565b50565b600a546001600160a01b031633146119c05760405162461bcd60e51b815260040161097d90612ab1565b600c805461ffff909216600160c81b0261ffff60c81b19909216919091179055565b600a546001600160a01b03163314611a0c5760405162461bcd60e51b815260040161097d90612ab1565b60005b8151811015610d63576000828281518110611a2c57611a2c612b37565b6020908102919091018101516001600160a01b0381166000908152601190925260409091205490915060ff161515600114801590611a7257506001600160a01b03811615155b15611a9b576001600160a01b0381166000908152601160205260409020805460ff191660011790555b5080611aa681612d68565b915050611a0f565b60006001600160e01b031982166380ac58cd60e01b1480611adf57506001600160e01b03198216635b5e139f60e01b145b806108bb57506301ffc9a760e01b6001600160e01b03198316146108bb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b3382610e82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611be55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097d565b6000611bf083610e82565b9050806001600160a01b0316846001600160a01b03161480611c2b5750836001600160a01b0316611c208461098b565b6001600160a01b0316145b80611c5b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c7682610e82565b6001600160a01b031614611cde5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097d565b6001600160a01b038216611d405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097d565b611d4b83838361207a565b611d56600082611afe565b6001600160a01b0383166000908152600360205260408120805460019290611d7f908490612d83565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dad908490612b86565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d63828260405180602001604052806000815250612132565b816001600160a01b0316836001600160a01b03161415611edc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f54848484611c63565b611f6084848484612165565b6117315760405162461bcd60e51b815260040161097d90612d9a565b606081611fa05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fca5780611fb481612d68565b9150611fc39050600a83612e02565b9150611fa4565b60008167ffffffffffffffff811115611fe557611fe561276c565b6040519080825280601f01601f19166020018201604052801561200f576020820181803683370190505b5090505b8415611c5b57612024600183612d83565b9150612031600a86612e16565b61203c906030612b86565b60f81b81838151811061205157612051612b37565b60200101906001600160f81b031916908160001a905350612073600a86612e02565b9450612013565b6001600160a01b0383166120d5576120d081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120f8565b816001600160a01b0316836001600160a01b0316146120f8576120f88382612263565b6001600160a01b03821661210f57610b3181612300565b826001600160a01b0316826001600160a01b031614610b3157610b3182826123af565b61213c83836123f3565b6121496000848484612165565b610b315760405162461bcd60e51b815260040161097d90612d9a565b60006001600160a01b0384163b1561225857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121a9903390899088908890600401612e2a565b6020604051808303816000875af19250505080156121e4575060408051601f3d908101601f191682019092526121e191810190612e67565b60015b61223e573d808015612212576040519150601f19603f3d011682016040523d82523d6000602084013e612217565b606091505b5080516122365760405162461bcd60e51b815260040161097d90612d9a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c5b565b506001949350505050565b6000600161227084610f90565b61227a9190612d83565b6000838152600760205260409020549091508082146122cd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061231290600190612d83565b6000838152600960205260408120546008805493945090928490811061233a5761233a612b37565b90600052602060002001549050806008838154811061235b5761235b612b37565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061239357612393612e84565b6001900381819060005260206000200160009055905550505050565b60006123ba83610f90565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124495760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097d565b6000818152600260205260409020546001600160a01b0316156124ae5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097d565b6124ba6000838361207a565b6001600160a01b03821660009081526003602052604081208054600192906124e3908490612b86565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461254d90612a76565b90600052602060002090601f01602090048101928261256f57600085556125b5565b82601f1061258857805160ff19168380011785556125b5565b828001600101855582156125b5579182015b828111156125b557825182559160200191906001019061259a565b506125c19291506125c5565b5090565b5b808211156125c157600081556001016125c6565b6001600160e01b03198116811461199357600080fd5b60006020828403121561260257600080fd5b813561260d816125da565b9392505050565b60005b8381101561262f578181015183820152602001612617565b838111156117315750506000910152565b60008151808452612658816020860160208601612614565b601f01601f19169290920160200192915050565b60208152600061260d6020830184612640565b60006020828403121561269157600080fd5b5035919050565b80356001600160a01b038116811461186f57600080fd5b600080604083850312156126c257600080fd5b6126cb83612698565b946020939093013593505050565b803561ffff8116811461186f57600080fd5b6000602082840312156126fd57600080fd5b61260d826126d9565b60006020828403121561271857600080fd5b813567ffffffffffffffff8116811461260d57600080fd5b60008060006060848603121561274557600080fd5b61274e84612698565b925061275c60208501612698565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127ab576127ab61276c565b604052919050565b600067ffffffffffffffff8311156127cd576127cd61276c565b6127e0601f8401601f1916602001612782565b90508281528383830111156127f457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561281d57600080fd5b813567ffffffffffffffff81111561283457600080fd5b8201601f8101841361284557600080fd5b611c5b848235602084016127b3565b60006020828403121561286657600080fd5b61260d82612698565b6000806040838503121561288257600080fd5b61288b83612698565b9150612899602084016126d9565b90509250929050565b600080604083850312156128b557600080fd5b50508035926020909101359150565b600080604083850312156128d757600080fd5b6128e083612698565b9150602083013580151581146128f557600080fd5b809150509250929050565b6000806000806080858703121561291657600080fd5b61291f85612698565b935061292d60208601612698565b925060408501359150606085013567ffffffffffffffff81111561295057600080fd5b8501601f8101871361296157600080fd5b612970878235602084016127b3565b91505092959194509250565b60006020828403121561298e57600080fd5b813560ff8116811461260d57600080fd5b600080604083850312156129b257600080fd5b6129bb83612698565b915061289960208401612698565b600060208083850312156129dc57600080fd5b823567ffffffffffffffff808211156129f457600080fd5b818501915085601f830112612a0857600080fd5b813581811115612a1a57612a1a61276c565b8060051b9150612a2b848301612782565b8181529183018401918481019088841115612a4557600080fd5b938501935b83851015612a6a57612a5b85612698565b82529385019390850190612a4a565b98975050505050505050565b600181811c90821680612a8a57607f821691505b60208210811415612aab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff83811690831681811015612b7e57612b7e612b4d565b039392505050565b60008219821115612b9957612b99612b4d565b500190565b60208082526028908201527f416d6f756e742065786365656473206d6178696d756d20737570706c79206f66604082015267102130b134b2b99760c11b606082015260800190565b60208082526031908201527f416d6f756e7420657863656564732063757272656e74206d6178696d756d206d60408201527034b73a39903832b91030b1b1b7bab73a1760791b606082015260800190565b6020808252602f908201527f416d6f756e7420657863656564732063757272656e74206d6178696d756d204260408201526e30b134b2b9903832b91036b4b73a1760891b606082015260800190565b6000816000190483118215151615612ca057612ca0612b4d565b500290565b60008151612cb7818560208601612614565b9290920192915050565b600080845481600182811c915080831680612cdd57607f831692505b6020808410821415612cfd57634e487b7160e01b86526022600452602486fd5b818015612d115760018114612d2257612d4f565b60ff19861689528489019650612d4f565b60008b81526020902060005b86811015612d475781548b820152908501908301612d2e565b505084890196505b505050505050612d5f8185612ca5565b95945050505050565b6000600019821415612d7c57612d7c612b4d565b5060010190565b600082821015612d9557612d95612b4d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612e1157612e11612dec565b500490565b600082612e2557612e25612dec565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e5d90830184612640565b9695505050505050565b600060208284031215612e7957600080fd5b815161260d816125da565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220824621db5ae6d0a075851fdfb5ac589e07e4c17eb6fefb242c5aa29c62ddc3e964736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000006b8ab9f42bbbd05083d609942760cf6229b1c086000000000000000000000000000000000000000000000000000000000000000a4261627944656c7578650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084241425942454152000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d615944745359574e4751723578636950787a7076713144375754787332354d637a514c566a3862704d6d545500000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061027d5760003560e01c8063715018a61161014f578063b88d4fde116100c1578063da1b9e081161007a578063da1b9e08146107b7578063e985e9c5146107d7578063f2fde38b14610820578063f64ca26114610840578063f73b554114610860578063fb4251761461088057600080fd5b8063b88d4fde146106e7578063c87b56dd14610707578063cb6f238d14610727578063ce75345b14610747578063d123973014610769578063d34b51c51461078a57600080fd5b806395d89b411161011357806395d89b41146106205780639b19251a14610635578063a0712d6814610665578063a22cb46514610678578063a7f93ebd14610698578063a80a1fd1146106d257600080fd5b8063715018a61461059a57806372c19498146105af578063868ff4a2146105cf5780638da5cb5b146105e257806391d7c2831461060057600080fd5b80632f745c59116101f357806355f804b3116101ac57806355f804b3146104e457806361f5baeb146105045780636352211e1461051957806364e39b87146105395780636caede3d1461055957806370a082311461057a57600080fd5b80632f745c591461042557806332b953721461044557806342842e0e1461045a5780634311de8f1461047a5780634eb0bada1461048f5780634f6ccce7146104c457600080fd5b80630ed62b02116102455780630ed62b021461035357806318160ddd146103865780631866ea8d146103a55780632194f3a2146103c5578063229c2048146103e557806323b872dd1461040557600080fd5b806301ffc9a71461028257806306fdde03146102b757806307db498b146102d9578063081812fc146102fb578063095ea7b314610333575b600080fd5b34801561028e57600080fd5b506102a261029d3660046125f0565b610896565b60405190151581526020015b60405180910390f35b3480156102c357600080fd5b506102cc6108c1565b6040516102ae919061266c565b3480156102e557600080fd5b506102f96102f436600461267f565b610953565b005b34801561030757600080fd5b5061031b61031636600461267f565b61098b565b6040516001600160a01b0390911681526020016102ae565b34801561033f57600080fd5b506102f961034e3660046126af565b610a20565b34801561035f57600080fd5b50600c5461037490600160b01b900460ff1681565b60405160ff90911681526020016102ae565b34801561039257600080fd5b506008545b6040519081526020016102ae565b3480156103b157600080fd5b506102f96103c03660046126eb565b610b36565b3480156103d157600080fd5b50600c5461031b906001600160a01b031681565b3480156103f157600080fd5b506102f9610400366004612706565b610b82565b34801561041157600080fd5b506102f9610420366004612730565b610bdd565b34801561043157600080fd5b506103976104403660046126af565b610c0e565b34801561045157600080fd5b506102f9610ca4565b34801561046657600080fd5b506102f9610475366004612730565b610cef565b34801561048657600080fd5b506102f9610d0a565b34801561049b57600080fd5b50600c546104b190600160c81b900461ffff1681565b60405161ffff90911681526020016102ae565b3480156104d057600080fd5b506103976104df36600461267f565b610d67565b3480156104f057600080fd5b506102f96104ff36600461280b565b610dfa565b34801561051057600080fd5b506102f9610e37565b34801561052557600080fd5b5061031b61053436600461267f565b610e82565b34801561054557600080fd5b506102f9610554366004612854565b610ef9565b34801561056557600080fd5b50600c546102a290600160a81b900460ff1681565b34801561058657600080fd5b50610397610595366004612854565b610f90565b3480156105a657600080fd5b506102f9611017565b3480156105bb57600080fd5b506102f96105ca36600461286f565b61104d565b6102f96105dd36600461267f565b6111a5565b3480156105ee57600080fd5b50600a546001600160a01b031661031b565b34801561060c57600080fd5b506102f961061b3660046128a2565b6113de565b34801561062c57600080fd5b506102cc6114cf565b34801561064157600080fd5b506102a2610650366004612854565b60116020526000908152604090205460ff1681565b6102f961067336600461267f565b6114de565b34801561068457600080fd5b506102f96106933660046128c4565b611690565b3480156106a457600080fd5b50601354600160301b900467ffffffffffffffff1660405167ffffffffffffffff90911681526020016102ae565b3480156106de57600080fd5b506102f961169b565b3480156106f357600080fd5b506102f9610702366004612900565b6116ff565b34801561071357600080fd5b506102cc61072236600461267f565b611737565b34801561073357600080fd5b506102f961074236600461297c565b611874565b34801561075357600080fd5b50600c546104b190600160b81b900461ffff1681565b34801561077557600080fd5b50600c546102a290600160a01b900460ff1681565b34801561079657600080fd5b506103976107a536600461267f565b60009081526012602052604090205490565b3480156107c357600080fd5b506102f96107d236600461280b565b6118be565b3480156107e357600080fd5b506102a26107f236600461299f565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561082c57600080fd5b506102f961083b366004612854565b6118fb565b34801561084c57600080fd5b506102f961085b3660046126eb565b611996565b34801561086c57600080fd5b506102f961087b3660046129c9565b6119e2565b34801561088c57600080fd5b50610397600d5481565b60006001600160e01b0319821663780e9d6360e01b14806108bb57506108bb82611aae565b92915050565b6060600080546108d090612a76565b80601f01602080910402602001604051908101604052809291908181526020018280546108fc90612a76565b80156109495780601f1061091e57610100808354040283529160200191610949565b820191906000526020600020905b81548152906001019060200180831161092c57829003601f168201915b5050505050905090565b600a546001600160a01b031633146109865760405162461bcd60e51b815260040161097d90612ab1565b60405180910390fd5b600d55565b6000818152600260205260408120546001600160a01b0316610a045760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097d565b506000908152600460205260409020546001600160a01b031690565b6000610a2b82610e82565b9050806001600160a01b0316836001600160a01b03161415610a995760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161097d565b336001600160a01b0382161480610ab55750610ab581336107f2565b610b275760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161097d565b610b318383611afe565b505050565b600a546001600160a01b03163314610b605760405162461bcd60e51b815260040161097d90612ab1565b600c805461ffff909216600160b81b0261ffff60b81b19909216919091179055565b600a546001600160a01b03163314610bac5760405162461bcd60e51b815260040161097d90612ab1565b6013805467ffffffffffffffff909216600160301b026dffffffffffffffff00000000000019909216919091179055565b610be73382611b6c565b610c035760405162461bcd60e51b815260040161097d90612ae6565b610b31838383611c63565b6000610c1983610f90565b8210610c7b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161097d565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610cce5760405162461bcd60e51b815260040161097d90612ab1565b600c805460ff60a81b198116600160a81b9182900460ff1615909102179055565b610b31838383604051806020016040528060008152506116ff565b600a546001600160a01b03163314610d345760405162461bcd60e51b815260040161097d90612ab1565b6040514790339082156108fc029083906000818181858888f19350505050158015610d63573d6000803e3d6000fd5b5050565b6000610d7260085490565b8210610dd55760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161097d565b60088281548110610de857610de8612b37565b90600052602060002001549050919050565b600a546001600160a01b03163314610e245760405162461bcd60e51b815260040161097d90612ab1565b8051610d6390600f906020840190612541565b600a546001600160a01b03163314610e615760405162461bcd60e51b815260040161097d90612ab1565b600c805460ff60a01b198116600160a01b9182900460ff1615909102179055565b6000818152600260205260408120546001600160a01b0316806108bb5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161097d565b600a546001600160a01b03163314610f235760405162461bcd60e51b815260040161097d90612ab1565b6001600160a01b038116610f6e5760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161097d565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b038216610ffb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161097d565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110415760405162461bcd60e51b815260040161097d90612ab1565b61104b6000611e0e565b565b600a546001600160a01b031633146110775760405162461bcd60e51b815260040161097d90612ab1565b6001600160a01b0382166110c25760405162461bcd60e51b81526020600482015260126024820152712d32b9379030b2323932b9b99032b93937b960711b604482015260640161097d565b60135461ffff62010000909104811690821611156111225760405162461bcd60e51b815260206004820152601e60248201527f457863656564732072657365727665642062616269657320737570706c790000604482015260640161097d565b60135461ffff1660005b8261ffff168160ff1610156111575761114f848380600101945061ffff16611e60565b60010161112c565b506013805461ffff191661ffff8381169190911780835584929160029161118691859162010000900416612b63565b92506101000a81548161ffff021916908361ffff160217905550505050565b600c54600160a81b900460ff166111fe5760405162461bcd60e51b815260206004820152601e60248201527f57686974656c697374204d696e74696e672069732064697361626c65642e0000604482015260640161097d565b3360009081526011602052604090205460ff1615156001146112625760405162461bcd60e51b815260206004820152601760248201527f4f6e6c792077686974656c6973742063616e206d696e74000000000000000000604482015260640161097d565b6013546112839061ffff620100008204811691640100000000900416612b63565b60135461ffff9182169161129991849116612b86565b11156112b75760405162461bcd60e51b815260040161097d90612b9e565b600c54600160b81b900461ffff16816112cf33610f90565b6112d99190612b86565b11156112f75760405162461bcd60e51b815260040161097d90612be6565b600c54600160b01b900460ff168111156113235760405162461bcd60e51b815260040161097d90612c37565b6013543490611344908390600160301b900467ffffffffffffffff16612c86565b11156113925760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161097d565b60135461ffff1660005b828161ffff1610156113c4576113bc338380600101945061ffff16611e60565b60010161139c565b506013805461ffff191661ffff9290921691909117905550565b3380158015906114125750600a546001600160a01b03828116911614806114125750600b546001600160a01b038281169116145b61141b57600080fd5b6000838152600260205260409020546001600160a01b03166114775760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161097d565b60008381526012602090815260409182902084905581513381529081018590529081018390527fb10b3625df7286db8dccbbe246db7ca30a7cb38626be90ba222cbf01339eeeba9060600160405180910390a1505050565b6060600180546108d090612a76565b600c54600160a01b900460ff1661152e5760405162461bcd60e51b815260206004820152601460248201527326b4b73a34b7339034b9903234b9b0b13632b21760611b604482015260640161097d565b60135461154f9061ffff620100008204811691640100000000900416612b63565b60135461ffff9182169161156591849116612b86565b11156115835760405162461bcd60e51b815260040161097d90612b9e565b600c54600160c81b900461ffff168161159b33610f90565b6115a59190612b86565b11156115c35760405162461bcd60e51b815260040161097d90612be6565b600c54600160b01b900460ff168111156115ef5760405162461bcd60e51b815260040161097d90612c37565b6013543490611610908390600160301b900467ffffffffffffffff16612c86565b111561165e5760405162461bcd60e51b815260206004820181905260248201527f45746865722076616c75652073656e74206973206e6f7420636f72726563742e604482015260640161097d565b60135461ffff1660005b828161ffff1610156113c457611688338380600101945061ffff16611e60565b600101611668565b610d63338383611e7a565b600a546001600160a01b031633146116c55760405162461bcd60e51b815260040161097d90612ab1565b600c5460405147916001600160a01b03169082156108fc029083906000818181858888f19350505050158015610d63573d6000803e3d6000fd5b6117093383611b6c565b6117255760405162461bcd60e51b815260040161097d90612ae6565b61173184848484611f49565b50505050565b6000818152600260205260409020546060906001600160a01b03166117965760405162461bcd60e51b81526020600482015260156024820152742a37b5b2b7103237b2b9903737ba1032bc34b9ba1760591b604482015260640161097d565b600f80546117a390612a76565b1515905061183d57600e80546117b890612a76565b80601f01602080910402602001604051908101604052809291908181526020018280546117e490612a76565b80156118315780601f1061180657610100808354040283529160200191611831565b820191906000526020600020905b81548152906001019060200180831161181457829003601f168201915b50505050509050919050565b600f61184883611f7c565b604051602001611859929190612cc1565b6040516020818303038152906040529050919050565b919050565b600a546001600160a01b0316331461189e5760405162461bcd60e51b815260040161097d90612ab1565b600c805460ff909216600160b01b0260ff60b01b19909216919091179055565b600a546001600160a01b031633146118e85760405162461bcd60e51b815260040161097d90612ab1565b8051610d6390600e906020840190612541565b600a546001600160a01b031633146119255760405162461bcd60e51b815260040161097d90612ab1565b6001600160a01b03811661198a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161097d565b61199381611e0e565b50565b600a546001600160a01b031633146119c05760405162461bcd60e51b815260040161097d90612ab1565b600c805461ffff909216600160c81b0261ffff60c81b19909216919091179055565b600a546001600160a01b03163314611a0c5760405162461bcd60e51b815260040161097d90612ab1565b60005b8151811015610d63576000828281518110611a2c57611a2c612b37565b6020908102919091018101516001600160a01b0381166000908152601190925260409091205490915060ff161515600114801590611a7257506001600160a01b03811615155b15611a9b576001600160a01b0381166000908152601160205260409020805460ff191660011790555b5080611aa681612d68565b915050611a0f565b60006001600160e01b031982166380ac58cd60e01b1480611adf57506001600160e01b03198216635b5e139f60e01b145b806108bb57506301ffc9a760e01b6001600160e01b03198316146108bb565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b3382610e82565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611be55760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161097d565b6000611bf083610e82565b9050806001600160a01b0316846001600160a01b03161480611c2b5750836001600160a01b0316611c208461098b565b6001600160a01b0316145b80611c5b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c7682610e82565b6001600160a01b031614611cde5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161097d565b6001600160a01b038216611d405760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161097d565b611d4b83838361207a565b611d56600082611afe565b6001600160a01b0383166000908152600360205260408120805460019290611d7f908490612d83565b90915550506001600160a01b0382166000908152600360205260408120805460019290611dad908490612b86565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610d63828260405180602001604052806000815250612132565b816001600160a01b0316836001600160a01b03161415611edc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161097d565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f54848484611c63565b611f6084848484612165565b6117315760405162461bcd60e51b815260040161097d90612d9a565b606081611fa05750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fca5780611fb481612d68565b9150611fc39050600a83612e02565b9150611fa4565b60008167ffffffffffffffff811115611fe557611fe561276c565b6040519080825280601f01601f19166020018201604052801561200f576020820181803683370190505b5090505b8415611c5b57612024600183612d83565b9150612031600a86612e16565b61203c906030612b86565b60f81b81838151811061205157612051612b37565b60200101906001600160f81b031916908160001a905350612073600a86612e02565b9450612013565b6001600160a01b0383166120d5576120d081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120f8565b816001600160a01b0316836001600160a01b0316146120f8576120f88382612263565b6001600160a01b03821661210f57610b3181612300565b826001600160a01b0316826001600160a01b031614610b3157610b3182826123af565b61213c83836123f3565b6121496000848484612165565b610b315760405162461bcd60e51b815260040161097d90612d9a565b60006001600160a01b0384163b1561225857604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906121a9903390899088908890600401612e2a565b6020604051808303816000875af19250505080156121e4575060408051601f3d908101601f191682019092526121e191810190612e67565b60015b61223e573d808015612212576040519150601f19603f3d011682016040523d82523d6000602084013e612217565b606091505b5080516122365760405162461bcd60e51b815260040161097d90612d9a565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c5b565b506001949350505050565b6000600161227084610f90565b61227a9190612d83565b6000838152600760205260409020549091508082146122cd576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061231290600190612d83565b6000838152600960205260408120546008805493945090928490811061233a5761233a612b37565b90600052602060002001549050806008838154811061235b5761235b612b37565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061239357612393612e84565b6001900381819060005260206000200160009055905550505050565b60006123ba83610f90565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124495760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161097d565b6000818152600260205260409020546001600160a01b0316156124ae5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161097d565b6124ba6000838361207a565b6001600160a01b03821660009081526003602052604081208054600192906124e3908490612b86565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461254d90612a76565b90600052602060002090601f01602090048101928261256f57600085556125b5565b82601f1061258857805160ff19168380011785556125b5565b828001600101855582156125b5579182015b828111156125b557825182559160200191906001019061259a565b506125c19291506125c5565b5090565b5b808211156125c157600081556001016125c6565b6001600160e01b03198116811461199357600080fd5b60006020828403121561260257600080fd5b813561260d816125da565b9392505050565b60005b8381101561262f578181015183820152602001612617565b838111156117315750506000910152565b60008151808452612658816020860160208601612614565b601f01601f19169290920160200192915050565b60208152600061260d6020830184612640565b60006020828403121561269157600080fd5b5035919050565b80356001600160a01b038116811461186f57600080fd5b600080604083850312156126c257600080fd5b6126cb83612698565b946020939093013593505050565b803561ffff8116811461186f57600080fd5b6000602082840312156126fd57600080fd5b61260d826126d9565b60006020828403121561271857600080fd5b813567ffffffffffffffff8116811461260d57600080fd5b60008060006060848603121561274557600080fd5b61274e84612698565b925061275c60208501612698565b9150604084013590509250925092565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff811182821017156127ab576127ab61276c565b604052919050565b600067ffffffffffffffff8311156127cd576127cd61276c565b6127e0601f8401601f1916602001612782565b90508281528383830111156127f457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561281d57600080fd5b813567ffffffffffffffff81111561283457600080fd5b8201601f8101841361284557600080fd5b611c5b848235602084016127b3565b60006020828403121561286657600080fd5b61260d82612698565b6000806040838503121561288257600080fd5b61288b83612698565b9150612899602084016126d9565b90509250929050565b600080604083850312156128b557600080fd5b50508035926020909101359150565b600080604083850312156128d757600080fd5b6128e083612698565b9150602083013580151581146128f557600080fd5b809150509250929050565b6000806000806080858703121561291657600080fd5b61291f85612698565b935061292d60208601612698565b925060408501359150606085013567ffffffffffffffff81111561295057600080fd5b8501601f8101871361296157600080fd5b612970878235602084016127b3565b91505092959194509250565b60006020828403121561298e57600080fd5b813560ff8116811461260d57600080fd5b600080604083850312156129b257600080fd5b6129bb83612698565b915061289960208401612698565b600060208083850312156129dc57600080fd5b823567ffffffffffffffff808211156129f457600080fd5b818501915085601f830112612a0857600080fd5b813581811115612a1a57612a1a61276c565b8060051b9150612a2b848301612782565b8181529183018401918481019088841115612a4557600080fd5b938501935b83851015612a6a57612a5b85612698565b82529385019390850190612a4a565b98975050505050505050565b600181811c90821680612a8a57607f821691505b60208210811415612aab57634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600061ffff83811690831681811015612b7e57612b7e612b4d565b039392505050565b60008219821115612b9957612b99612b4d565b500190565b60208082526028908201527f416d6f756e742065786365656473206d6178696d756d20737570706c79206f66604082015267102130b134b2b99760c11b606082015260800190565b60208082526031908201527f416d6f756e7420657863656564732063757272656e74206d6178696d756d206d60408201527034b73a39903832b91030b1b1b7bab73a1760791b606082015260800190565b6020808252602f908201527f416d6f756e7420657863656564732063757272656e74206d6178696d756d204260408201526e30b134b2b9903832b91036b4b73a1760891b606082015260800190565b6000816000190483118215151615612ca057612ca0612b4d565b500290565b60008151612cb7818560208601612614565b9290920192915050565b600080845481600182811c915080831680612cdd57607f831692505b6020808410821415612cfd57634e487b7160e01b86526022600452602486fd5b818015612d115760018114612d2257612d4f565b60ff19861689528489019650612d4f565b60008b81526020902060005b86811015612d475781548b820152908501908301612d2e565b505084890196505b505050505050612d5f8185612ca5565b95945050505050565b6000600019821415612d7c57612d7c612b4d565b5060010190565b600082821015612d9557612d95612b4d565b500390565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b600082612e1157612e11612dec565b500490565b600082612e2557612e25612dec565b500690565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e5d90830184612640565b9695505050505050565b600060208284031215612e7957600080fd5b815161260d816125da565b634e487b7160e01b600052603160045260246000fdfea2646970667358221220824621db5ae6d0a075851fdfb5ac589e07e4c17eb6fefb242c5aa29c62ddc3e964736f6c634300080a0033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000006b8ab9f42bbbd05083d609942760cf6229b1c086000000000000000000000000000000000000000000000000000000000000000a4261627944656c7578650000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000084241425942454152000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d615944745359574e4751723578636950787a7076713144375754787332354d637a514c566a3862704d6d545500000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): BabyDeluxe
Arg [1] : symbol (string): BABYBEAR
Arg [2] : _defaultURI (string): https://gateway.pinata.cloud/ipfs/QmaYDtSYWNGQr5xciPxzpvq1D7WTxs25MczQLVj8bpMmTU
Arg [3] : _fundsWallet (address): 0x6B8AB9F42BbBd05083D609942760CF6229b1C086

-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000006b8ab9f42bbbd05083d609942760cf6229b1c086
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 4261627944656c75786500000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 4241425942454152000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000050
Arg [9] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [10] : 732f516d615944745359574e4751723578636950787a70767131443757547873
Arg [11] : 32354d637a514c566a3862704d6d545500000000000000000000000000000000


Deployed Bytecode Sourcemap

46470:8413:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37717:224;;;;;;;;;;-1:-1:-1;37717:224:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;37717:224:0;;;;;;;;22139:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;53378:104::-;;;;;;;;;;-1:-1:-1;53378:104:0;;;;;:::i;:::-;;:::i;:::-;;23698:221;;;;;;;;;;-1:-1:-1;23698:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1714:32:1;;;1696:51;;1684:2;1669:18;23698:221:0;1550:203:1;23221:411:0;;;;;;;;;;-1:-1:-1;23221:411:0;;;;;:::i;:::-;;:::i;46869:25::-;;;;;;;;;;-1:-1:-1;46869:25:0;;;;-1:-1:-1;;;46869:25:0;;;;;;;;;2367:4:1;2355:17;;;2337:36;;2325:2;2310:18;46869:25:0;2195:184:1;38357:113:0;;;;;;;;;;-1:-1:-1;38445:10:0;:17;38357:113;;;2530:25:1;;;2518:2;2503:18;38357:113:0;2384:177:1;54053:121:0;;;;;;;;;;-1:-1:-1;54053:121:0;;;;;:::i;:::-;;:::i;46751:26::-;;;;;;;;;;-1:-1:-1;46751:26:0;;;;-1:-1:-1;;;;;46751:26:0;;;52145:92;;;;;;;;;;-1:-1:-1;52145:92:0;;;;;:::i;:::-;;:::i;24448:339::-;;;;;;;;;;-1:-1:-1;24448:339:0;;;;;:::i;:::-;;:::i;38025:256::-;;;;;;;;;;-1:-1:-1;38025:256:0;;;;;:::i;:::-;;:::i;51893:118::-;;;;;;;;;;;;;:::i;24858:185::-;;;;;;;;;;-1:-1:-1;24858:185:0;;;;;:::i;:::-;;:::i;47982:148::-;;;;;;;;;;;;;:::i;46945:30::-;;;;;;;;;;-1:-1:-1;46945:30:0;;;;-1:-1:-1;;;46945:30:0;;;;;;;;;3715:6:1;3703:19;;;3685:38;;3673:2;3658:18;46945:30:0;3541:188:1;38547:233:0;;;;;;;;;;-1:-1:-1;38547:233:0;;;;;:::i;:::-;;:::i;54230:98::-;;;;;;;;;;-1:-1:-1;54230:98:0;;;;;:::i;:::-;;:::i;53547:91::-;;;;;;;;;;;;;:::i;21833:239::-;;;;;;;;;;-1:-1:-1;21833:239:0;;;;;:::i;:::-;;:::i;52390:176::-;;;;;;;;;;-1:-1:-1;52390:176:0;;;;;:::i;:::-;;:::i;46822:40::-;;;;;;;;;;-1:-1:-1;46822:40:0;;;;-1:-1:-1;;;46822:40:0;;;;;;21563:208;;;;;;;;;;-1:-1:-1;21563:208:0;;;;;:::i;:::-;;:::i;45576:103::-;;;;;;;;;;;;;:::i;48519:485::-;;;;;;;;;;-1:-1:-1;48519:485:0;;;;;:::i;:::-;;:::i;50779:1002::-;;;;;;:::i;:::-;;:::i;44925:87::-;;;;;;;;;;-1:-1:-1;44998:6:0;;-1:-1:-1;;;;;44998:6:0;44925:87;;52733:253;;;;;;;;;;-1:-1:-1;52733:253:0;;;;;:::i;:::-;;:::i;22308:104::-;;;;;;;;;;;;;:::i;47104:42::-;;;;;;;;;;-1:-1:-1;47104:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;49191:887;;;;;;:::i;:::-;;:::i;23991:155::-;;;;;;;;;;-1:-1:-1;23991:155:0;;;;;:::i;:::-;;:::i;53047:89::-;;;;;;;;;;-1:-1:-1;53118:4:0;:10;-1:-1:-1;;;53118:10:0;;;;53047:89;;6247:18:1;6235:31;;;6217:50;;6205:2;6190:18;53047:89:0;6073:200:1;48206:149:0;;;;;;;;;;;;;:::i;25114:328::-;;;;;;;;;;-1:-1:-1;25114:328:0;;;;;:::i;:::-;;:::i;54505:373::-;;;;;;;;;;-1:-1:-1;54505:373:0;;;;;:::i;:::-;;:::i;53706:90::-;;;;;;;;;;-1:-1:-1;53706:90:0;;;;;:::i;:::-;;:::i;46901:37::-;;;;;;;;;;-1:-1:-1;46901:37:0;;;;-1:-1:-1;;;46901:37:0;;;;;;46784:31;;;;;;;;;;-1:-1:-1;46784:31:0;;;;-1:-1:-1;;;46784:31:0;;;;;;53206:103;;;;;;;;;;-1:-1:-1;53206:103:0;;;;;:::i;:::-;53260:7;53287:14;;;:10;:14;;;;;;;53206:103;54387:110;;;;;;;;;;-1:-1:-1;54387:110:0;;;;;:::i;:::-;;:::i;24217:164::-;;;;;;;;;;-1:-1:-1;24217:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24338:25:0;;;24314:4;24338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24217:164;45834:201;;;;;;;;;;-1:-1:-1;45834:201:0;;;;;:::i;:::-;;:::i;53866:103::-;;;;;;;;;;-1:-1:-1;53866:103:0;;;;;:::i;:::-;;:::i;50282:300::-;;;;;;;;;;-1:-1:-1;50282:300:0;;;;;:::i;:::-;;:::i;46982:25::-;;;;;;;;;;;;;;;;37717:224;37819:4;-1:-1:-1;;;;;;37843:50:0;;-1:-1:-1;;;37843:50:0;;:90;;;37897:36;37921:11;37897:23;:36::i;:::-;37836:97;37717:224;-1:-1:-1;;37717:224:0:o;22139:100::-;22193:13;22226:5;22219:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22139:100;:::o;53378:104::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;;;;;;;;;53450:10:::1;:24:::0;53378:104::o;23698:221::-;23774:7;27041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27041:16:0;23794:73;;;;-1:-1:-1;;;23794:73:0;;9394:2:1;23794:73:0;;;9376:21:1;9433:2;9413:18;;;9406:30;9472:34;9452:18;;;9445:62;-1:-1:-1;;;9523:18:1;;;9516:42;9575:19;;23794:73:0;9192:408:1;23794:73:0;-1:-1:-1;23887:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23887:24:0;;23698:221::o;23221:411::-;23302:13;23318:23;23333:7;23318:14;:23::i;:::-;23302:39;;23366:5;-1:-1:-1;;;;;23360:11:0;:2;-1:-1:-1;;;;;23360:11:0;;;23352:57;;;;-1:-1:-1;;;23352:57:0;;9807:2:1;23352:57:0;;;9789:21:1;9846:2;9826:18;;;9819:30;9885:34;9865:18;;;9858:62;-1:-1:-1;;;9936:18:1;;;9929:31;9977:19;;23352:57:0;9605:397:1;23352:57:0;16521:10;-1:-1:-1;;;;;23444:21:0;;;;:62;;-1:-1:-1;23469:37:0;23486:5;16521:10;24217:164;:::i;23469:37::-;23422:168;;;;-1:-1:-1;;;23422:168:0;;10209:2:1;23422:168:0;;;10191:21:1;10248:2;10228:18;;;10221:30;10287:34;10267:18;;;10260:62;10358:26;10338:18;;;10331:54;10402:19;;23422:168:0;10007:420:1;23422:168:0;23603:21;23612:2;23616:7;23603:8;:21::i;:::-;23291:341;23221:411;;:::o;54053:121::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;54133:19:::1;:33:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;54133:33:0::1;-1:-1:-1::0;;;;54133:33:0;;::::1;::::0;;;::::1;::::0;;54053:121::o;52145:92::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;52208:4:::1;:21:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;52208:21:0::1;-1:-1:-1::0;;52208:21:0;;::::1;::::0;;;::::1;::::0;;52145:92::o;24448:339::-;24643:41;16521:10;24676:7;24643:18;:41::i;:::-;24635:103;;;;-1:-1:-1;;;24635:103:0;;;;;;;:::i;:::-;24751:28;24761:4;24767:2;24771:7;24751:9;:28::i;38025:256::-;38122:7;38158:23;38175:5;38158:16;:23::i;:::-;38150:5;:31;38142:87;;;;-1:-1:-1;;;38142:87:0;;11052:2:1;38142:87:0;;;11034:21:1;11091:2;11071:18;;;11064:30;11130:34;11110:18;;;11103:62;-1:-1:-1;;;11181:18:1;;;11174:41;11232:19;;38142:87:0;10850:407:1;38142:87:0;-1:-1:-1;;;;;;38247:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;38025:256::o;51893:118::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;51983:20:::1;::::0;;-1:-1:-1;;;;51959:44:0;::::1;-1:-1:-1::0;;;51983:20:0;;;::::1;;;51982:21;51959:44:::0;;::::1;;::::0;;51893:118::o;24858:185::-;24996:39;25013:4;25019:2;25023:7;24996:39;;;;;;;;;;;;:16;:39::i;47982:148::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;48085:37:::1;::::0;48053:21:::1;::::0;48093:10:::1;::::0;48085:37;::::1;;;::::0;48053:21;;48035:15:::1;48085:37:::0;48035:15;48085:37;48053:21;48093:10;48085:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48024:106;47982:148::o:0;38547:233::-;38622:7;38658:30;38445:10;:17;;38357:113;38658:30;38650:5;:38;38642:95;;;;-1:-1:-1;;;38642:95:0;;11464:2:1;38642:95:0;;;11446:21:1;11503:2;11483:18;;;11476:30;11542:34;11522:18;;;11515:62;-1:-1:-1;;;11593:18:1;;;11586:42;11645:19;;38642:95:0;11262:408:1;38642:95:0;38755:10;38766:5;38755:17;;;;;;;;:::i;:::-;;;;;;;;;38748:24;;38547:233;;;:::o;54230:98::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;54302:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;53547:91::-:0;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;53619:11:::1;::::0;;-1:-1:-1;;;;53604:26:0;::::1;-1:-1:-1::0;;;53619:11:0;;;::::1;;;53618:12;53604:26:::0;;::::1;;::::0;;53547:91::o;21833:239::-;21905:7;21941:16;;;:7;:16;;;;;;-1:-1:-1;;;;;21941:16:0;21976:19;21968:73;;;;-1:-1:-1;;;21968:73:0;;12009:2:1;21968:73:0;;;11991:21:1;12048:2;12028:18;;;12021:30;12087:34;12067:18;;;12060:62;-1:-1:-1;;;12138:18:1;;;12131:39;12187:19;;21968:73:0;11807:405:1;52390:176:0;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;52472:26:0;::::1;52464:57;;;::::0;-1:-1:-1;;;52464:57:0;;12419:2:1;52464:57:0::1;::::0;::::1;12401:21:1::0;12458:2;12438:18;;;12431:30;-1:-1:-1;;;12477:18:1;;;12470:48;12535:18;;52464:57:0::1;12217:342:1::0;52464:57:0::1;52532:11;:26:::0;;-1:-1:-1;;;;;;52532:26:0::1;-1:-1:-1::0;;;;;52532:26:0;;;::::1;::::0;;;::::1;::::0;;52390:176::o;21563:208::-;21635:7;-1:-1:-1;;;;;21663:19:0;;21655:74;;;;-1:-1:-1;;;21655:74:0;;12766:2:1;21655:74:0;;;12748:21:1;12805:2;12785:18;;;12778:30;12844:34;12824:18;;;12817:62;-1:-1:-1;;;12895:18:1;;;12888:40;12945:19;;21655:74:0;12564:406:1;21655:74:0;-1:-1:-1;;;;;;21747:16:0;;;;;:9;:16;;;;;;;21563:208::o;45576:103::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;45641:30:::1;45668:1;45641:18;:30::i;:::-;45576:103::o:0;48519:485::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;48635:18:0;::::1;48626:50;;;::::0;-1:-1:-1;;;48626:50:0;;12419:2:1;48626:50:0::1;::::0;::::1;12401:21:1::0;12458:2;12438:18;;;12431:30;-1:-1:-1;;;12477:18:1;;;12470:48;12535:18;;48626:50:0::1;12217:342:1::0;48626:50:0::1;48707:4;:14:::0;::::1;::::0;;;::::1;::::0;::::1;48696:25:::0;;::::1;;;48687:69;;;::::0;-1:-1:-1;;;48687:69:0;;13177:2:1;48687:69:0::1;::::0;::::1;13159:21:1::0;13216:2;13196:18;;;13189:30;13255:32;13235:18;;;13228:60;13305:18;;48687:69:0::1;12975:354:1::0;48687:69:0::1;48783:4;:11:::0;::::1;;48767:13;48828:91;48850:7;48846:11;;:1;:11;;;48828:91;;;48881:24;48891:3;48896:8;;;;;;48881:24;;:9;:24::i;:::-;48859:3;;48828:91;;;-1:-1:-1::0;48940:4:0::1;:20:::0;;-1:-1:-1;;48940:20:0::1;;::::0;;::::1;::::0;;;::::1;::::0;;;48989:7;;48940:4;48971:14:::1;::::0;:25:::1;::::0;48989:7;;48971:25;;::::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;48615:389;48519:485:::0;;:::o;50779:1002::-;50852:20;;-1:-1:-1;;;50852:20:0;;;;50844:63;;;;-1:-1:-1;;;50844:63:0;;13890:2:1;50844:63:0;;;13872:21:1;13929:2;13909:18;;;13902:30;13968:32;13948:18;;;13941:60;14018:18;;50844:63:0;13688:354:1;50844:63:0;50937:10;50927:21;;;;:9;:21;;;;;;;;:29;;:21;:29;50918:67;;;;-1:-1:-1;;;50918:67:0;;14249:2:1;50918:67:0;;;14231:21:1;14288:2;14268:18;;;14261:30;14327:25;14307:18;;;14300:53;14370:18;;50918:67:0;14047:347:1;50918:67:0;51059:4;:14;51042:31;;51059:14;;;;;;;51042;;;;:31;:::i;:::-;51018:4;:11;:55;;;;;:20;;51032:6;;51018:11;:20;:::i;:::-;:55;;50996:145;;;;-1:-1:-1;;;50996:145:0;;;;;;;:::i;:::-;51208:19;;-1:-1:-1;;;51208:19:0;;;;51198:6;51174:21;51184:10;51174:9;:21::i;:::-;:30;;;;:::i;:::-;:53;;51152:152;;;;-1:-1:-1;;;51152:152:0;;;;;;;:::i;:::-;51347:7;;-1:-1:-1;;;51347:7:0;;;;51337:17;;;51315:114;;;;-1:-1:-1;;;51315:114:0;;;;;;;:::i;:::-;51462:4;:10;51485:9;;51462:19;;51475:6;;-1:-1:-1;;;51462:10:0;;;;:19;:::i;:::-;:32;;51440:114;;;;-1:-1:-1;;;51440:114:0;;16150:2:1;51440:114:0;;;16132:21:1;;;16169:18;;;16162:30;16228:34;16208:18;;;16201:62;16280:18;;51440:114:0;15948:356:1;51440:114:0;51583:4;:11;;;51567:13;51630:102;51653:6;51649:1;:10;;;51630:102;;;51685:31;51695:10;51707:8;;;;;;51685:31;;:9;:31::i;:::-;51661:3;;51630:102;;;-1:-1:-1;51753:4:0;:20;;-1:-1:-1;;51753:20:0;;;;;;;;;;;;-1:-1:-1;50779:1002:0:o;52733:253::-;52819:10;47371:20;;;;;:67;;-1:-1:-1;44998:6:0;;-1:-1:-1;;;;;47396:17:0;;;44998:6;;47396:17;;:41;;-1:-1:-1;47427:10:0;;-1:-1:-1;;;;;47417:20:0;;;47427:10;;47417:20;47396:41;47349:100;;;;;;27017:4;27041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27041:16:0;52847:45:::1;;;::::0;-1:-1:-1;;;52847:45:0;;16511:2:1;52847:45:0::1;::::0;::::1;16493:21:1::0;16550:2;16530:18;;;16523:30;-1:-1:-1;;;16569:18:1;;;16562:51;16630:18;;52847:45:0::1;16309:345:1::0;52847:45:0::1;52903:14;::::0;;;:10:::1;:14;::::0;;;;;;;;:22;;;52941:37;;52956:10:::1;16861:51:1::0;;16928:18;;;16921:34;;;16971:18;;;16964:34;;;52941:37:0::1;::::0;16849:2:1;16834:18;52941:37:0::1;;;;;;;52733:253:::0;;;:::o;22308:104::-;22364:13;22397:7;22390:14;;;;;:::i;49191:887::-;49255:11;;-1:-1:-1;;;49255:11:0;;;;49247:44;;;;-1:-1:-1;;;49247:44:0;;17211:2:1;49247:44:0;;;17193:21:1;17250:2;17230:18;;;17223:30;-1:-1:-1;;;17269:18:1;;;17262:50;17329:18;;49247:44:0;17009:344:1;49247:44:0;49365:4;:14;49348:31;;49365:14;;;;;;;49348;;;;:31;:::i;:::-;49324:4;:11;:55;;;;;:20;;49338:6;;49324:11;:20;:::i;:::-;:55;;49302:145;;;;-1:-1:-1;;;49302:145:0;;;;;;;:::i;:::-;49514:10;;-1:-1:-1;;;49514:10:0;;;;49504:6;49480:21;49490:10;49480:9;:21::i;:::-;:30;;;;:::i;:::-;:44;;49458:143;;;;-1:-1:-1;;;49458:143:0;;;;;;;:::i;:::-;49644:7;;-1:-1:-1;;;49644:7:0;;;;49634:17;;;49612:114;;;;-1:-1:-1;;;49612:114:0;;;;;;;:::i;:::-;49759:4;:10;49782:9;;49759:19;;49772:6;;-1:-1:-1;;;49759:10:0;;;;:19;:::i;:::-;:32;;49737:114;;;;-1:-1:-1;;;49737:114:0;;16150:2:1;49737:114:0;;;16132:21:1;;;16169:18;;;16162:30;16228:34;16208:18;;;16201:62;16280:18;;49737:114:0;15948:356:1;49737:114:0;49880:4;:11;;;49864:13;49927:102;49950:6;49946:1;:10;;;49927:102;;;49982:31;49992:10;50004:8;;;;;;49982:31;;:9;:31::i;:::-;49958:3;;49927:102;;23991:155;24086:52;16521:10;24119:8;24129;24086:18;:52::i;48206:149::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;48317:11:::1;::::0;48309:38:::1;::::0;48277:21:::1;::::0;-1:-1:-1;;;;;48317:11:0::1;::::0;48309:38;::::1;;;::::0;48277:21;;48259:15:::1;48309:38:::0;48259:15;48309:38;48277:21;48317:11;48309:38;::::1;;;;;;;;;;;;;::::0;::::1;;;;25114:328:::0;25289:41;16521:10;25322:7;25289:18;:41::i;:::-;25281:103;;;;-1:-1:-1;;;25281:103:0;;;;;;;:::i;:::-;25395:39;25409:4;25415:2;25419:7;25428:5;25395:13;:39::i;:::-;25114:328;;;;:::o;54505:373::-;27017:4;27041:16;;;:7;:16;;;;;;54606:13;;-1:-1:-1;;;;;27041:16:0;54637:50;;;;-1:-1:-1;;;54637:50:0;;16511:2:1;54637:50:0;;;16493:21:1;16550:2;16530:18;;;16523:30;-1:-1:-1;;;16569:18:1;;;16562:51;16630:18;;54637:50:0;16309:345:1;54637:50:0;54710:7;54704:21;;;;;:::i;:::-;:26;54700:171;;-1:-1:-1;54700:171:0;;54754:10;54747:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54505:373;;;:::o;54700:171::-;54828:7;54837:20;54838:7;54837:18;:20::i;:::-;54811:47;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54797:62;;54505:373;;;:::o;54700:171::-;54505:373;;;:::o;53706:90::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;53770:7:::1;:18:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;53770:18:0::1;-1:-1:-1::0;;;;53770:18:0;;::::1;::::0;;;::::1;::::0;;53706:90::o;54387:110::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;54465:24;;::::1;::::0;:10:::1;::::0;:24:::1;::::0;::::1;::::0;::::1;:::i;45834:201::-:0;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45923:22:0;::::1;45915:73;;;::::0;-1:-1:-1;;;45915:73:0;;19055:2:1;45915:73:0::1;::::0;::::1;19037:21:1::0;19094:2;19074:18;;;19067:30;19133:34;19113:18;;;19106:62;-1:-1:-1;;;19184:18:1;;;19177:36;19230:19;;45915:73:0::1;18853:402:1::0;45915:73:0::1;45999:28;46018:8;45999:18;:28::i;:::-;45834:201:::0;:::o;53866:103::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;53937:10:::1;:24:::0;;::::1;::::0;;::::1;-1:-1:-1::0;;;53937:24:0::1;-1:-1:-1::0;;;;53937:24:0;;::::1;::::0;;;::::1;::::0;;53866:103::o;50282:300::-;44998:6;;-1:-1:-1;;;;;44998:6:0;16521:10;45145:23;45137:68;;;;-1:-1:-1;;;45137:68:0;;;;;;;:::i;:::-;50365:6:::1;50361:214;50379:9;:16;50375:1;:20;50361:214;;;50416:12;50431:9;50441:1;50431:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;50461:15:0;::::1;;::::0;;;:9:::1;:15:::0;;;;;;;;50431:12;;-1:-1:-1;50461:15:0::1;;:23;;:15:::0;:23:::1;::::0;::::1;::::0;:45:::1;;-1:-1:-1::0;;;;;;50488:18:0;::::1;::::0;::::1;50461:45;50458:106;;;-1:-1:-1::0;;;;;50526:15:0;::::1;;::::0;;;:9:::1;:15;::::0;;;;:22;;-1:-1:-1;;50526:22:0::1;50544:4;50526:22;::::0;;50458:106:::1;-1:-1:-1::0;50397:3:0;::::1;::::0;::::1;:::i;:::-;;;;50361:214;;21194:305:::0;21296:4;-1:-1:-1;;;;;;21333:40:0;;-1:-1:-1;;;21333:40:0;;:105;;-1:-1:-1;;;;;;;21390:48:0;;-1:-1:-1;;;21390:48:0;21333:105;:158;;;-1:-1:-1;;;;;;;;;;19749:40:0;;;21455:36;19640:157;30934:174;31009:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31009:29:0;-1:-1:-1;;;;;31009:29:0;;;;;;;;:24;;31063:23;31009:24;31063:14;:23::i;:::-;-1:-1:-1;;;;;31054:46:0;;;;;;;;;;;30934:174;;:::o;27246:348::-;27339:4;27041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27041:16:0;27356:73;;;;-1:-1:-1;;;27356:73:0;;19602:2:1;27356:73:0;;;19584:21:1;19641:2;19621:18;;;19614:30;19680:34;19660:18;;;19653:62;-1:-1:-1;;;19731:18:1;;;19724:42;19783:19;;27356:73:0;19400:408:1;27356:73:0;27440:13;27456:23;27471:7;27456:14;:23::i;:::-;27440:39;;27509:5;-1:-1:-1;;;;;27498:16:0;:7;-1:-1:-1;;;;;27498:16:0;;:51;;;;27542:7;-1:-1:-1;;;;;27518:31:0;:20;27530:7;27518:11;:20::i;:::-;-1:-1:-1;;;;;27518:31:0;;27498:51;:87;;;-1:-1:-1;;;;;;24338:25:0;;;24314:4;24338:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;27553:32;27490:96;27246:348;-1:-1:-1;;;;27246:348:0:o;30238:578::-;30397:4;-1:-1:-1;;;;;30370:31:0;:23;30385:7;30370:14;:23::i;:::-;-1:-1:-1;;;;;30370:31:0;;30362:85;;;;-1:-1:-1;;;30362:85:0;;20015:2:1;30362:85:0;;;19997:21:1;20054:2;20034:18;;;20027:30;20093:34;20073:18;;;20066:62;-1:-1:-1;;;20144:18:1;;;20137:39;20193:19;;30362:85:0;19813:405:1;30362:85:0;-1:-1:-1;;;;;30466:16:0;;30458:65;;;;-1:-1:-1;;;30458:65:0;;20425:2:1;30458:65:0;;;20407:21:1;20464:2;20444:18;;;20437:30;20503:34;20483:18;;;20476:62;-1:-1:-1;;;20554:18:1;;;20547:34;20598:19;;30458:65:0;20223:400:1;30458:65:0;30536:39;30557:4;30563:2;30567:7;30536:20;:39::i;:::-;30640:29;30657:1;30661:7;30640:8;:29::i;:::-;-1:-1:-1;;;;;30682:15:0;;;;;;:9;:15;;;;;:20;;30701:1;;30682:15;:20;;30701:1;;30682:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30713:13:0;;;;;;:9;:13;;;;;:18;;30730:1;;30713:13;:18;;30730:1;;30713:18;:::i;:::-;;;;-1:-1:-1;;30742:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30742:21:0;-1:-1:-1;;;;;30742:21:0;;;;;;;;;30781:27;;30742:16;;30781:27;;;;;;;30238:578;;;:::o;46195:191::-;46288:6;;;-1:-1:-1;;;;;46305:17:0;;;-1:-1:-1;;;;;;46305:17:0;;;;;;;46338:40;;46288:6;;;46305:17;46288:6;;46338:40;;46269:16;;46338:40;46258:128;46195:191;:::o;27936:110::-;28012:26;28022:2;28026:7;28012:26;;;;;;;;;;;;:9;:26::i;31250:315::-;31405:8;-1:-1:-1;;;;;31396:17:0;:5;-1:-1:-1;;;;;31396:17:0;;;31388:55;;;;-1:-1:-1;;;31388:55:0;;20960:2:1;31388:55:0;;;20942:21:1;20999:2;20979:18;;;20972:30;21038:27;21018:18;;;21011:55;21083:18;;31388:55:0;20758:349:1;31388:55:0;-1:-1:-1;;;;;31454:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;31454:46:0;;;;;;;;;;31516:41;;540::1;;;31516::0;;513:18:1;31516:41:0;;;;;;;31250:315;;;:::o;26324:::-;26481:28;26491:4;26497:2;26501:7;26481:9;:28::i;:::-;26528:48;26551:4;26557:2;26561:7;26570:5;26528:22;:48::i;:::-;26520:111;;;;-1:-1:-1;;;26520:111:0;;;;;;;:::i;17018:723::-;17074:13;17295:10;17291:53;;-1:-1:-1;;17322:10:0;;;;;;;;;;;;-1:-1:-1;;;17322:10:0;;;;;17018:723::o;17291:53::-;17369:5;17354:12;17410:78;17417:9;;17410:78;;17443:8;;;;:::i;:::-;;-1:-1:-1;17466:10:0;;-1:-1:-1;17474:2:0;17466:10;;:::i;:::-;;;17410:78;;;17498:19;17530:6;17520:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17520:17:0;;17498:39;;17548:154;17555:10;;17548:154;;17582:11;17592:1;17582:11;;:::i;:::-;;-1:-1:-1;17651:10:0;17659:2;17651:5;:10;:::i;:::-;17638:24;;:2;:24;:::i;:::-;17625:39;;17608:6;17615;17608:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;17608:56:0;;;;;;;;-1:-1:-1;17679:11:0;17688:2;17679:11;;:::i;:::-;;;17548:154;;39393:589;-1:-1:-1;;;;;39599:18:0;;39595:187;;39634:40;39666:7;40809:10;:17;;40782:24;;;;:15;:24;;;;;:44;;;40837:24;;;;;;;;;;;;40705:164;39634:40;39595:187;;;39704:2;-1:-1:-1;;;;;39696:10:0;:4;-1:-1:-1;;;;;39696:10:0;;39692:90;;39723:47;39756:4;39762:7;39723:32;:47::i;:::-;-1:-1:-1;;;;;39796:16:0;;39792:183;;39829:45;39866:7;39829:36;:45::i;39792:183::-;39902:4;-1:-1:-1;;;;;39896:10:0;:2;-1:-1:-1;;;;;39896:10:0;;39892:83;;39923:40;39951:2;39955:7;39923:27;:40::i;28273:321::-;28403:18;28409:2;28413:7;28403:5;:18::i;:::-;28454:54;28485:1;28489:2;28493:7;28502:5;28454:22;:54::i;:::-;28432:154;;;;-1:-1:-1;;;28432:154:0;;;;;;;:::i;32130:799::-;32285:4;-1:-1:-1;;;;;32306:13:0;;8756:20;8804:8;32302:620;;32342:72;;-1:-1:-1;;;32342:72:0;;-1:-1:-1;;;;;32342:36:0;;;;;:72;;16521:10;;32393:4;;32399:7;;32408:5;;32342:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32342:72:0;;;;;;;;-1:-1:-1;;32342:72:0;;;;;;;;;;;;:::i;:::-;;;32338:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32584:13:0;;32580:272;;32627:60;;-1:-1:-1;;;32627:60:0;;;;;;;:::i;32580:272::-;32802:6;32796:13;32787:6;32783:2;32779:15;32772:38;32338:529;-1:-1:-1;;;;;;32465:51:0;-1:-1:-1;;;32465:51:0;;-1:-1:-1;32458:58:0;;32302:620;-1:-1:-1;32906:4:0;32130:799;;;;;;:::o;41496:988::-;41762:22;41812:1;41787:22;41804:4;41787:16;:22::i;:::-;:26;;;;:::i;:::-;41824:18;41845:26;;;:17;:26;;;;;;41762:51;;-1:-1:-1;41978:28:0;;;41974:328;;-1:-1:-1;;;;;42045:18:0;;42023:19;42045:18;;;:12;:18;;;;;;;;:34;;;;;;;;;42096:30;;;;;;:44;;;42213:30;;:17;:30;;;;;:43;;;41974:328;-1:-1:-1;42398:26:0;;;;:17;:26;;;;;;;;42391:33;;;-1:-1:-1;;;;;42442:18:0;;;;;:12;:18;;;;;:34;;;;;;;42435:41;41496:988::o;42779:1079::-;43057:10;:17;43032:22;;43057:21;;43077:1;;43057:21;:::i;:::-;43089:18;43110:24;;;:15;:24;;;;;;43483:10;:26;;43032:46;;-1:-1:-1;43110:24:0;;43032:46;;43483:26;;;;;;:::i;:::-;;;;;;;;;43461:48;;43547:11;43522:10;43533;43522:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;43627:28;;;:15;:28;;;;;;;:41;;;43799:24;;;;;43792:31;43834:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42850:1008;;;42779:1079;:::o;40283:221::-;40368:14;40385:20;40402:2;40385:16;:20::i;:::-;-1:-1:-1;;;;;40416:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;40461:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;40283:221:0:o;28930:382::-;-1:-1:-1;;;;;29010:16:0;;29002:61;;;;-1:-1:-1;;;29002:61:0;;22998:2:1;29002:61:0;;;22980:21:1;;;23017:18;;;23010:30;23076:34;23056:18;;;23049:62;23128:18;;29002:61:0;22796:356:1;29002:61:0;27017:4;27041:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27041:16:0;:30;29074:58;;;;-1:-1:-1;;;29074:58:0;;23359:2:1;29074:58:0;;;23341:21:1;23398:2;23378:18;;;23371:30;23437;23417:18;;;23410:58;23485:18;;29074:58:0;23157:352:1;29074:58:0;29145:45;29174:1;29178:2;29182:7;29145:20;:45::i;:::-;-1:-1:-1;;;;;29203:13:0;;;;;;:9;:13;;;;;:18;;29220:1;;29203:13;:18;;29220:1;;29203:18;:::i;:::-;;;;-1:-1:-1;;29232:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29232:21:0;-1:-1:-1;;;;;29232:21:0;;;;;;;;29271:33;;29232:16;;;29271:33;;29232:16;;29271:33;28930:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;:::-;384:5;150:245;-1:-1:-1;;;150:245:1:o;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:269::-;908:3;946:5;940:12;973:6;968:3;961:19;989:63;1045:6;1038:4;1033:3;1029:14;1022:4;1015:5;1011:16;989:63;:::i;:::-;1106:2;1085:15;-1:-1:-1;;1081:29:1;1072:39;;;;1113:4;1068:50;;855:269;-1:-1:-1;;855:269:1:o;1129:231::-;1278:2;1267:9;1260:21;1241:4;1298:56;1350:2;1339:9;1335:18;1327:6;1298:56;:::i;1365:180::-;1424:6;1477:2;1465:9;1456:7;1452:23;1448:32;1445:52;;;1493:1;1490;1483:12;1445:52;-1:-1:-1;1516:23:1;;1365:180;-1:-1:-1;1365:180:1:o;1758:173::-;1826:20;;-1:-1:-1;;;;;1875:31:1;;1865:42;;1855:70;;1921:1;1918;1911:12;1936:254;2004:6;2012;2065:2;2053:9;2044:7;2040:23;2036:32;2033:52;;;2081:1;2078;2071:12;2033:52;2104:29;2123:9;2104:29;:::i;:::-;2094:39;2180:2;2165:18;;;;2152:32;;-1:-1:-1;;;1936:254:1:o;2566:159::-;2633:20;;2693:6;2682:18;;2672:29;;2662:57;;2715:1;2712;2705:12;2730:184;2788:6;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:28;2898:9;2880:28;:::i;2919:284::-;2977:6;3030:2;3018:9;3009:7;3005:23;3001:32;2998:52;;;3046:1;3043;3036:12;2998:52;3085:9;3072:23;3135:18;3128:5;3124:30;3117:5;3114:41;3104:69;;3169:1;3166;3159:12;3208:328;3285:6;3293;3301;3354:2;3342:9;3333:7;3329:23;3325:32;3322:52;;;3370:1;3367;3360:12;3322:52;3393:29;3412:9;3393:29;:::i;:::-;3383:39;;3441:38;3475:2;3464:9;3460:18;3441:38;:::i;:::-;3431:48;;3526:2;3515:9;3511:18;3498:32;3488:42;;3208:328;;;;;:::o;3734:127::-;3795:10;3790:3;3786:20;3783:1;3776:31;3826:4;3823:1;3816:15;3850:4;3847:1;3840:15;3866:275;3937:2;3931:9;4002:2;3983:13;;-1:-1:-1;;3979:27:1;3967:40;;4037:18;4022:34;;4058:22;;;4019:62;4016:88;;;4084:18;;:::i;:::-;4120:2;4113:22;3866:275;;-1:-1:-1;3866:275:1:o;4146:407::-;4211:5;4245:18;4237:6;4234:30;4231:56;;;4267:18;;:::i;:::-;4305:57;4350:2;4329:15;;-1:-1:-1;;4325:29:1;4356:4;4321:40;4305:57;:::i;:::-;4296:66;;4385:6;4378:5;4371:21;4425:3;4416:6;4411:3;4407:16;4404:25;4401:45;;;4442:1;4439;4432:12;4401:45;4491:6;4486:3;4479:4;4472:5;4468:16;4455:43;4545:1;4538:4;4529:6;4522:5;4518:18;4514:29;4507:40;4146:407;;;;;:::o;4558:451::-;4627:6;4680:2;4668:9;4659:7;4655:23;4651:32;4648:52;;;4696:1;4693;4686:12;4648:52;4736:9;4723:23;4769:18;4761:6;4758:30;4755:50;;;4801:1;4798;4791:12;4755:50;4824:22;;4877:4;4869:13;;4865:27;-1:-1:-1;4855:55:1;;4906:1;4903;4896:12;4855:55;4929:74;4995:7;4990:2;4977:16;4972:2;4968;4964:11;4929:74;:::i;5014:186::-;5073:6;5126:2;5114:9;5105:7;5101:23;5097:32;5094:52;;;5142:1;5139;5132:12;5094:52;5165:29;5184:9;5165:29;:::i;5205:258::-;5272:6;5280;5333:2;5321:9;5312:7;5308:23;5304:32;5301:52;;;5349:1;5346;5339:12;5301:52;5372:29;5391:9;5372:29;:::i;:::-;5362:39;;5420:37;5453:2;5442:9;5438:18;5420:37;:::i;:::-;5410:47;;5205:258;;;;;:::o;5468:248::-;5536:6;5544;5597:2;5585:9;5576:7;5572:23;5568:32;5565:52;;;5613:1;5610;5603:12;5565:52;-1:-1:-1;;5636:23:1;;;5706:2;5691:18;;;5678:32;;-1:-1:-1;5468:248:1:o;5721:347::-;5786:6;5794;5847:2;5835:9;5826:7;5822:23;5818:32;5815:52;;;5863:1;5860;5853:12;5815:52;5886:29;5905:9;5886:29;:::i;:::-;5876:39;;5965:2;5954:9;5950:18;5937:32;6012:5;6005:13;5998:21;5991:5;5988:32;5978:60;;6034:1;6031;6024:12;5978:60;6057:5;6047:15;;;5721:347;;;;;:::o;6278:667::-;6373:6;6381;6389;6397;6450:3;6438:9;6429:7;6425:23;6421:33;6418:53;;;6467:1;6464;6457:12;6418:53;6490:29;6509:9;6490:29;:::i;:::-;6480:39;;6538:38;6572:2;6561:9;6557:18;6538:38;:::i;:::-;6528:48;;6623:2;6612:9;6608:18;6595:32;6585:42;;6678:2;6667:9;6663:18;6650:32;6705:18;6697:6;6694:30;6691:50;;;6737:1;6734;6727:12;6691:50;6760:22;;6813:4;6805:13;;6801:27;-1:-1:-1;6791:55:1;;6842:1;6839;6832:12;6791:55;6865:74;6931:7;6926:2;6913:16;6908:2;6904;6900:11;6865:74;:::i;:::-;6855:84;;;6278:667;;;;;;;:::o;6950:269::-;7007:6;7060:2;7048:9;7039:7;7035:23;7031:32;7028:52;;;7076:1;7073;7066:12;7028:52;7115:9;7102:23;7165:4;7158:5;7154:16;7147:5;7144:27;7134:55;;7185:1;7182;7175:12;7224:260;7292:6;7300;7353:2;7341:9;7332:7;7328:23;7324:32;7321:52;;;7369:1;7366;7359:12;7321:52;7392:29;7411:9;7392:29;:::i;:::-;7382:39;;7440:38;7474:2;7463:9;7459:18;7440:38;:::i;7489:952::-;7573:6;7604:2;7647;7635:9;7626:7;7622:23;7618:32;7615:52;;;7663:1;7660;7653:12;7615:52;7703:9;7690:23;7732:18;7773:2;7765:6;7762:14;7759:34;;;7789:1;7786;7779:12;7759:34;7827:6;7816:9;7812:22;7802:32;;7872:7;7865:4;7861:2;7857:13;7853:27;7843:55;;7894:1;7891;7884:12;7843:55;7930:2;7917:16;7952:2;7948;7945:10;7942:36;;;7958:18;;:::i;:::-;8004:2;8001:1;7997:10;7987:20;;8027:28;8051:2;8047;8043:11;8027:28;:::i;:::-;8089:15;;;8159:11;;;8155:20;;;8120:12;;;;8187:19;;;8184:39;;;8219:1;8216;8209:12;8184:39;8243:11;;;;8263:148;8279:6;8274:3;8271:15;8263:148;;;8345:23;8364:3;8345:23;:::i;:::-;8333:36;;8296:12;;;;8389;;;;8263:148;;;8430:5;7489:952;-1:-1:-1;;;;;;;;7489:952:1:o;8446:380::-;8525:1;8521:12;;;;8568;;;8589:61;;8643:4;8635:6;8631:17;8621:27;;8589:61;8696:2;8688:6;8685:14;8665:18;8662:38;8659:161;;;8742:10;8737:3;8733:20;8730:1;8723:31;8777:4;8774:1;8767:15;8805:4;8802:1;8795:15;8659:161;;8446:380;;;:::o;8831:356::-;9033:2;9015:21;;;9052:18;;;9045:30;9111:34;9106:2;9091:18;;9084:62;9178:2;9163:18;;8831:356::o;10432:413::-;10634:2;10616:21;;;10673:2;10653:18;;;10646:30;10712:34;10707:2;10692:18;;10685:62;-1:-1:-1;;;10778:2:1;10763:18;;10756:47;10835:3;10820:19;;10432:413::o;11675:127::-;11736:10;11731:3;11727:20;11724:1;11717:31;11767:4;11764:1;11757:15;11791:4;11788:1;11781:15;13334:127;13395:10;13390:3;13386:20;13383:1;13376:31;13426:4;13423:1;13416:15;13450:4;13447:1;13440:15;13466:217;13505:4;13534:6;13590:10;;;;13560;;13612:12;;;13609:38;;;13627:18;;:::i;:::-;13664:13;;13466:217;-1:-1:-1;;;13466:217:1:o;14399:128::-;14439:3;14470:1;14466:6;14463:1;14460:13;14457:39;;;14476:18;;:::i;:::-;-1:-1:-1;14512:9:1;;14399:128::o;14532:404::-;14734:2;14716:21;;;14773:2;14753:18;;;14746:30;14812:34;14807:2;14792:18;;14785:62;-1:-1:-1;;;14878:2:1;14863:18;;14856:38;14926:3;14911:19;;14532:404::o;14941:413::-;15143:2;15125:21;;;15182:2;15162:18;;;15155:30;15221:34;15216:2;15201:18;;15194:62;-1:-1:-1;;;15287:2:1;15272:18;;15265:47;15344:3;15329:19;;14941:413::o;15359:411::-;15561:2;15543:21;;;15600:2;15580:18;;;15573:30;15639:34;15634:2;15619:18;;15612:62;-1:-1:-1;;;15705:2:1;15690:18;;15683:45;15760:3;15745:19;;15359:411::o;15775:168::-;15815:7;15881:1;15877;15873:6;15869:14;15866:1;15863:21;15858:1;15851:9;15844:17;15840:45;15837:71;;;15888:18;;:::i;:::-;-1:-1:-1;15928:9:1;;15775:168::o;17484:185::-;17526:3;17564:5;17558:12;17579:52;17624:6;17619:3;17612:4;17605:5;17601:16;17579:52;:::i;:::-;17647:16;;;;;17484:185;-1:-1:-1;;17484:185:1:o;17674:1174::-;17850:3;17879:1;17912:6;17906:13;17942:3;17964:1;17992:9;17988:2;17984:18;17974:28;;18052:2;18041:9;18037:18;18074;18064:61;;18118:4;18110:6;18106:17;18096:27;;18064:61;18144:2;18192;18184:6;18181:14;18161:18;18158:38;18155:165;;;-1:-1:-1;;;18219:33:1;;18275:4;18272:1;18265:15;18305:4;18226:3;18293:17;18155:165;18336:18;18363:104;;;;18481:1;18476:320;;;;18329:467;;18363:104;-1:-1:-1;;18396:24:1;;18384:37;;18441:16;;;;-1:-1:-1;18363:104:1;;18476:320;17431:1;17424:14;;;17468:4;17455:18;;18571:1;18585:165;18599:6;18596:1;18593:13;18585:165;;;18677:14;;18664:11;;;18657:35;18720:16;;;;18614:10;;18585:165;;;18589:3;;18779:6;18774:3;18770:16;18763:23;;18329:467;;;;;;;18812:30;18838:3;18830:6;18812:30;:::i;:::-;18805:37;17674:1174;-1:-1:-1;;;;;17674:1174:1:o;19260:135::-;19299:3;-1:-1:-1;;19320:17:1;;19317:43;;;19340:18;;:::i;:::-;-1:-1:-1;19387:1:1;19376:13;;19260:135::o;20628:125::-;20668:4;20696:1;20693;20690:8;20687:34;;;20701:18;;:::i;:::-;-1:-1:-1;20738:9:1;;20628:125::o;21112:414::-;21314:2;21296:21;;;21353:2;21333:18;;;21326:30;21392:34;21387:2;21372:18;;21365:62;-1:-1:-1;;;21458:2:1;21443:18;;21436:48;21516:3;21501:19;;21112:414::o;21531:127::-;21592:10;21587:3;21583:20;21580:1;21573:31;21623:4;21620:1;21613:15;21647:4;21644:1;21637:15;21663:120;21703:1;21729;21719:35;;21734:18;;:::i;:::-;-1:-1:-1;21768:9:1;;21663:120::o;21788:112::-;21820:1;21846;21836:35;;21851:18;;:::i;:::-;-1:-1:-1;21885:9:1;;21788:112::o;21905:500::-;-1:-1:-1;;;;;22174:15:1;;;22156:34;;22226:15;;22221:2;22206:18;;22199:43;22273:2;22258:18;;22251:34;;;22321:3;22316:2;22301:18;;22294:31;;;22099:4;;22342:57;;22379:19;;22371:6;22342:57;:::i;:::-;22334:65;21905:500;-1:-1:-1;;;;;;21905:500:1:o;22410:249::-;22479:6;22532:2;22520:9;22511:7;22507:23;22503:32;22500:52;;;22548:1;22545;22538:12;22500:52;22580:9;22574:16;22599:30;22623:5;22599:30;:::i;22664:127::-;22725:10;22720:3;22716:20;22713:1;22706:31;22756:4;22753:1;22746:15;22780:4;22777:1;22770:15

Swarm Source

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