ETH Price: $3,074.02 (-1.51%)

Token

Megalodon Ranch Genesis (MEG)
 

Overview

Max Total Supply

113 MEG

Holders

45

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MEG
0x4ab1e214c3e93cfe63a83222625c8ea9bcd75191
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:
MEGALODON

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 13 of 16: MEGALODON.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.2;

import "../ERC721.sol";
import "../ERC721Enumerable.sol";
import "../Pausable.sol";
import "../Ownable.sol";
import "../Counters.sol";

/// @custom:security-contact [email protected]
contract MEGALODON is ERC721, ERC721Enumerable, Pausable, Ownable {
    using Counters for Counters.Counter;
    using Strings for uint256;
    Counters.Counter private _tokenIdCounter;

    string baseURI;
    string public baseExtension = ".json";
    uint256 public cost = 0.15 ether;
    uint256 public maxSupply = 500;
    uint256 public maxMintAmount = 5;
    bool public revealed = false;
    string public notRevealedUri;
    uint256 private _totalReleased = 0;

    uint256 public revealDelay = block.timestamp + (0);
    uint256 public claimsOpen = block.timestamp + (0);

    mapping(uint256 => address) private _claimed;
    mapping(uint256 => bytes4) private _hash;

    constructor(
        string memory _name,
        string memory _symbol,
        string memory _initBaseURI,
        string memory _initNotRevealedUri
    ) ERC721(_name, _symbol) {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        _pause();
    }

    function mint(uint256 _mintAmount) public payable {
        uint256 supply = totalSupply();
        require(!paused(), "the contract is paused");
        require(_mintAmount > 0);
        require(
            _mintAmount <= maxMintAmount,
            "exceeds max allowed mint in one action"
        );
        require(
            supply + _mintAmount <= maxSupply,
            "exceeds max allowed token supply"
        );

        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintAmount);
        }

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

        if (totalSupply() >= maxSupply) {
            //            claimsOpen = block.timestamp + 9 days;
            reveal();
        }
    }

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

    function balance() public view onlyOwner returns (uint256) {
        return address(this).balance;
    }

    function totalReleased() public view onlyOwner returns (uint256) {
        return _totalReleased;
    }

    function totalIncome() public view onlyOwner returns (uint256) {
        uint256 _totalIncome = address(this).balance + _totalReleased;
        return (_totalIncome);
    }

    function withdraw() public payable onlyOwner {
        uint256 withdrawalAmount = address(this).balance;
        (bool success, ) = payable(msg.sender).call{
            value: address(this).balance
        }("");
        require(success);
        _totalReleased += withdrawalAmount;
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
        //        whitelistEnd = block.timestamp + 6 hours;
    }

    function setClaimsOpen(uint256 _date) public onlyOwner {
        claimsOpen = _date;
    }

    function setRevealDelay(uint256 _date) public onlyOwner {
        revealDelay = _date;
    }

    function claimed(uint256 _id) public view virtual returns (address) {
        return _claimed[_id];
    }

    function hashClaim(uint256 _id) public view virtual returns (bytes4) {
        require(
            (msg.sender == ownerOf(_id)) || (msg.sender == owner()),
            "You are not the owner of this token."
        );
        return _hash[_id];
    }

    function hash(address _addr, uint256 _id) private view returns (bytes4) {
        bytes32 result = keccak256(
            abi.encodePacked(_addr, _id, block.timestamp)
        );
        return bytes4(result);
    }

    function claim(uint256 _id) public {
        require(
            (block.timestamp > claimsOpen),
            "Tooth claiming has not yet been opened."
        );
        require(
            (_claimed[_id] == address(0)),
            "This tooth has already been claimed."
        );
        require(
            (msg.sender == ownerOf(_id)),
            "You are not the owner of this token."
        );
        _claimed[_id] = msg.sender;
        _hash[_id] = hash(msg.sender, _id);
    }

    function approve(address to, uint256 tokenId) public override {
        super.approve(to, tokenId);
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        super.transferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        super.safeTransferFrom(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        super.safeTransferFrom(from, to, tokenId, _data);
    }

    function getApproved(uint256 tokenId)
        public
        view
        virtual
        override
        returns (address)
    {
        return super.getApproved(tokenId);
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        return super.setApprovalForAll(operator, approved);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        virtual
        override
        returns (bool)
    {
        return super.isApprovedForAll(owner, operator);
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId,
        uint256 batchsize
    ) internal override(ERC721, ERC721Enumerable) {
        super._beforeTokenTransfer(from, to, tokenId, batchsize);
    }

    function _burn(uint256 tokenId) internal override(ERC721) {
        super._burn(tokenId);
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        override
        returns (string memory)
    {
        if (revealed == false) {
            return notRevealedUri;
        }

        if (revealDelay >= block.timestamp) {
            return notRevealedUri;
        }

        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

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

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, ERC721Enumerable)
        returns (bool)
    {
        return super.supportsInterface(interfaceId);
    }

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

    function reveal() public onlyOwner {
        //        revealDelay = block.timestamp + 2 days;
        revealed = true;
    }

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

    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        maxSupply = _newMaxSupply;
    }

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

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

File 1 of 16: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 2 of 16: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 16: Counters.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

File 4 of 16: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "../IERC165.sol";

/**
 * @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 5 of 16: ERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";
import "../IERC721Receiver.sol";
import "../IERC721Metadata.sol";
import "../Address.sol";
import "../Context.sol";
import "../Strings.sol";
import "../ERC165.sol";

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory data
    ) public virtual override {
        require(
            _isApprovedOrOwner(_msgSender(), tokenId),
            "ERC721: caller is not token owner or 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 the owner of the `tokenId`. Does NOT revert if token doesn't exist
     */
    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        return _owners[tokenId];
    }

    /**
     * @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 _ownerOf(tokenId) != address(0);
    }

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

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

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

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

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

        // Check that tokenId was not minted by `_beforeTokenTransfer` hook
        require(!_exists(tokenId), "ERC721: token already minted");

        unchecked {
            // Will not overflow unless all 2**256 token ids are minted to the same owner.
            // Given that tokens are minted one by one, it is impossible in practice that
            // this ever happens. Might change if we allow batch minting.
            // The ERC fails to describe this case.
            _balances[to] += 1;
        }

        _owners[tokenId] = to;

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

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

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     * This is an internal function that does not check if the sender is authorized to operate on the token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Update ownership in case tokenId was transferred by `_beforeTokenTransfer` hook
        owner = ERC721.ownerOf(tokenId);

        // Clear approvals
        delete _tokenApprovals[tokenId];

        unchecked {
            // Cannot overflow, as that would require more tokens to be burned/transferred
            // out than the owner initially received through minting and transferring in.
            _balances[owner] -= 1;
        }
        delete _owners[tokenId];

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

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

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

        _beforeTokenTransfer(from, to, tokenId, 1);

        // Check that tokenId was not transferred by `_beforeTokenTransfer` hook
        require(
            ERC721.ownerOf(tokenId) == from,
            "ERC721: transfer from incorrect owner"
        );

        // Clear approvals from the previous owner
        delete _tokenApprovals[tokenId];

        unchecked {
            // `_balances[from]` cannot overflow for the same reason as described in `_burn`:
            // `from`'s balance is the number of token held, which is at least one before the current
            // transfer.
            // `_balances[to]` could overflow in the conditions described in `_mint`. That would require
            // all 2**256 token ids to be minted, which in practice is impossible.
            _balances[from] -= 1;
            _balances[to] += 1;
        }
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);

        _afterTokenTransfer(from, to, tokenId, 1);
    }

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

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

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens will be transferred to `to`.
     * - When `from` is zero, the tokens will be minted for `to`.
     * - When `to` is zero, ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256, /* firstTokenId */
        uint256 batchSize
    ) internal virtual {
        if (batchSize > 1) {
            if (from != address(0)) {
                _balances[from] -= batchSize;
            }
            if (to != address(0)) {
                _balances[to] += batchSize;
            }
        }
    }

    /**
     * @dev Hook that is called after any token transfer. This includes minting and burning. If {ERC721Consecutive} is
     * used, the hook may be called as part of a consecutive (batch) mint, as indicated by `batchSize` greater than 1.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s tokens were transferred to `to`.
     * - When `from` is zero, the tokens were minted for `to`.
     * - When `to` is zero, ``from``'s tokens were burned.
     * - `from` and `to` are never both zero.
     * - `batchSize` is non-zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual {}
}

File 6 of 16: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/extensions/ERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../ERC721.sol";
import "../IERC721Enumerable.sol";

/**
 * @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 See {ERC721-_beforeTokenTransfer}.
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 firstTokenId,
        uint256 batchSize
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, firstTokenId, batchSize);

        if (batchSize > 1) {
            // Will only trigger during construction. Batch transferring (minting) is not available afterwards.
            revert("ERC721Enumerable: consecutive transfers not supported");
        }

        uint256 tokenId = firstTokenId;

        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 7 of 16: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 8 of 16: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../IERC165.sol";

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Note that the caller is responsible to confirm that the recipient is capable of receiving ERC721
     * or else they may be permanently lost. Usage of {safeTransferFrom} prevents loss, though the caller must
     * understand this adds an external call which potentially creates a reentrancy vulnerability.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

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

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

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

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

File 9 of 16: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 10 of 16: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

/**
 * @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 11 of 16: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 12 of 16: Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            require(denominator > prod1);

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
            // in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

File 14 of 16: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../Context.sol";

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

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

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

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

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

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

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

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

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

File 15 of 16: Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 16 of 16: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "../Math.sol";

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

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @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] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"claimed","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimsOpen","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"hashClaim","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_date","type":"uint256"}],"name":"setClaimsOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_date","type":"uint256"}],"name":"setRevealDelay","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalIncome","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600d9190620002bb565b50670214e8348c4f0000600e556101f4600f5560056010556011805460ff19169055600060138190556200005e904290620004d1565b6014556200006e426000620004d1565b6015553480156200007e57600080fd5b506040516200300838038062003008833981016040819052620000a19162000418565b835184908490620000ba906000906020850190620002bb565b508051620000d0906001906020840190620002bb565b5050600a805460ff1916905550620000e83362000112565b620000f3826200016c565b620000fe816200018f565b62000108620001ae565b505050506200054b565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620001766200020b565b80516200018b90600c906020840190620002bb565b5050565b620001996200020b565b80516200018b906012906020840190620002bb565b620001b862000273565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258620001ee3390565b6040516001600160a01b03909116815260200160405180910390a1565b600a546001600160a01b03610100909104163314620002715760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b565b600a5460ff1615620002715760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b604482015260640162000268565b828054620002c990620004f8565b90600052602060002090601f016020900481019282620002ed576000855562000338565b82601f106200030857805160ff191683800117855562000338565b8280016001018555821562000338579182015b82811115620003385782518255916020019190600101906200031b565b50620003469291506200034a565b5090565b5b808211156200034657600081556001016200034b565b600082601f8301126200037357600080fd5b81516001600160401b038082111562000390576200039062000535565b604051601f8301601f19908116603f01168101908282118183101715620003bb57620003bb62000535565b81604052838152602092508683858801011115620003d857600080fd5b600091505b83821015620003fc5785820183015181830184015290820190620003dd565b838211156200040e5760008385830101525b9695505050505050565b600080600080608085870312156200042f57600080fd5b84516001600160401b03808211156200044757600080fd5b620004558883890162000361565b955060208701519150808211156200046c57600080fd5b6200047a8883890162000361565b945060408701519150808211156200049157600080fd5b6200049f8883890162000361565b93506060870151915080821115620004b657600080fd5b50620004c58782880162000361565b91505092959194509250565b60008219821115620004f357634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200050d57607f821691505b602082108114156200052f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612aad806200055b6000396000f3fe6080604052600436106102885760003560e01c80636352211e1161015a578063b69ef8a8116100c1578063dbe7e3bd1161007a578063dbe7e3bd14610729578063e33b7de31461075f578063e985e9c514610774578063f2c4ce1e14610794578063f2fde38b146107b4578063f598fd91146107d457600080fd5b8063b69ef8a814610693578063b88d4fde146106a8578063c6682862146106c8578063c87b56dd146106dd578063d1a00d50146106fd578063d5abeb011461071357600080fd5b80638da5cb5b116101135780638da5cb5b146105f357806395d89b4114610616578063a0712d681461062b578063a22cb4651461063e578063a475b5dd1461065e578063a68c25d81461067357600080fd5b80636352211e146105495780636f8b44b01461056957806370a0823114610589578063715018a6146105a95780637f00c7a6146105be5780638456cb59146105de57600080fd5b80633ccfd60b116101fe57806351830227116101b757806351830227146104ac578063522577e9146104c657806353236d74146104db57806355f804b3146104f15780635a5a8891146105115780635c975abb1461053157600080fd5b80633ccfd60b146104025780633f4ba83a1461040a57806342842e0e1461041f578063438b63001461043f57806344a0d68a1461046c5780634f6ccce71461048c57600080fd5b806313faede61161025057806313faede61461035357806318160ddd14610377578063239c70ae1461038c57806323b872dd146103a25780632f745c59146103c2578063379607f5146103e257600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063081c8c441461031c578063095ea7b314610331575b600080fd5b34801561029957600080fd5b506102ad6102a83660046125f1565b61080d565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d761081e565b6040516102b991906127fe565b3480156102f057600080fd5b506103046102ff366004612674565b6108b0565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b506102d76108bb565b34801561033d57600080fd5b5061035161034c3660046125c7565b610949565b005b34801561035f57600080fd5b50610369600e5481565b6040519081526020016102b9565b34801561038357600080fd5b50600854610369565b34801561039857600080fd5b5061036960105481565b3480156103ae57600080fd5b506103516103bd3660046124d3565b610957565b3480156103ce57600080fd5b506103696103dd3660046125c7565b610967565b3480156103ee57600080fd5b506103516103fd366004612674565b610a02565b610351610b9c565b34801561041657600080fd5b50610351610c16565b34801561042b57600080fd5b5061035161043a3660046124d3565b610c28565b34801561044b57600080fd5b5061045f61045a366004612485565b610c33565b6040516102b991906127ba565b34801561047857600080fd5b50610351610487366004612674565b610cd5565b34801561049857600080fd5b506103696104a7366004612674565b610ce2565b3480156104b857600080fd5b506011546102ad9060ff1681565b3480156104d257600080fd5b50610369610d75565b3480156104e757600080fd5b5061036960145481565b3480156104fd57600080fd5b5061035161050c36600461262b565b610d95565b34801561051d57600080fd5b5061035161052c366004612674565b610db0565b34801561053d57600080fd5b50600a5460ff166102ad565b34801561055557600080fd5b50610304610564366004612674565b610dbd565b34801561057557600080fd5b50610351610584366004612674565b610e1d565b34801561059557600080fd5b506103696105a4366004612485565b610e2a565b3480156105b557600080fd5b50610351610eb0565b3480156105ca57600080fd5b506103516105d9366004612674565b610ec2565b3480156105ea57600080fd5b50610351610ecf565b3480156105ff57600080fd5b50600a5461010090046001600160a01b0316610304565b34801561062257600080fd5b506102d7610edf565b610351610639366004612674565b610eee565b34801561064a57600080fd5b5061035161065936600461258b565b61109c565b34801561066a57600080fd5b506103516110a6565b34801561067f57600080fd5b5061035161068e366004612674565b6110bd565b34801561069f57600080fd5b506103696110ca565b3480156106b457600080fd5b506103516106c336600461250f565b6110d9565b3480156106d457600080fd5b506102d76110eb565b3480156106e957600080fd5b506102d76106f8366004612674565b6110f8565b34801561070957600080fd5b5061036960155481565b34801561071f57600080fd5b50610369600f5481565b34801561073557600080fd5b50610304610744366004612674565b6000908152601660205260409020546001600160a01b031690565b34801561076b57600080fd5b50610369611288565b34801561078057600080fd5b506102ad61078f3660046124a0565b611299565b3480156107a057600080fd5b506103516107af36600461262b565b6112c9565b3480156107c057600080fd5b506103516107cf366004612485565b6112e4565b3480156107e057600080fd5b506107f46107ef366004612674565b61135d565b6040516001600160e01b031990911681526020016102b9565b6000610818826113da565b92915050565b60606000805461082d906129b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610859906129b3565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b5050505050905090565b6000610818826113ff565b601280546108c8906129b3565b80601f01602080910402602001604051908101604052809291908181526020018280546108f4906129b3565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b505050505081565b6109538282611426565b5050565b610962838383611537565b505050565b600061097283610e2a565b82106109d95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6015544211610a635760405162461bcd60e51b815260206004820152602760248201527f546f6f746820636c61696d696e6720686173206e6f7420796574206265656e2060448201526637b832b732b21760c91b60648201526084016109d0565b6000818152601660205260409020546001600160a01b031615610ad45760405162461bcd60e51b8152602060048201526024808201527f5468697320746f6f74682068617320616c7265616479206265656e20636c616960448201526336b2b21760e11b60648201526084016109d0565b610add81610dbd565b6001600160a01b0316336001600160a01b031614610b0d5760405162461bcd60e51b81526004016109d0906128f5565b6000818152601660209081526040918290208054336001600160a01b03199091168117909155825160609190911b6bffffffffffffffffffffffff19168183015260348101849052426054808301919091528351808303909101815260749091019092528151910120600091825260176020526040909120805463ffffffff191660e09290921c919091179055565b610ba4611568565b6040514790600090339047908381818185875af1925050503d8060008114610be8576040519150601f19603f3d011682016040523d82523d6000602084013e610bed565b606091505b5050905080610bfb57600080fd5b8160136000828254610c0d9190612939565b90915550505050565b610c1e611568565b610c266115c8565b565b61096283838361161a565b60606000610c4083610e2a565b905060008167ffffffffffffffff811115610c5d57610c5d612a4b565b604051908082528060200260200182016040528015610c86578160200160208202803683370190505b50905060005b82811015610ccd57610c9e8582610967565b828281518110610cb057610cb0612a35565b602090810291909101015280610cc5816129ee565b915050610c8c565b509392505050565b610cdd611568565b600e55565b6000610ced60085490565b8210610d505760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109d0565b60088281548110610d6357610d63612a35565b90600052602060002001549050919050565b6000610d7f611568565b600060135447610d8f9190612939565b91505090565b610d9d611568565b805161095390600c90602084019061235a565b610db8611568565b601555565b6000818152600260205260408120546001600160a01b0316806108185760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109d0565b610e25611568565b600f55565b60006001600160a01b038216610e945760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016109d0565b506001600160a01b031660009081526003602052604090205490565b610eb8611568565b610c266000611635565b610eca611568565b601055565b610ed7611568565b610c2661168f565b60606001805461082d906129b3565b6000610ef960085490565b9050610f07600a5460ff1690565b15610f4d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016109d0565b60008211610f5a57600080fd5b601054821115610fbb5760405162461bcd60e51b815260206004820152602660248201527f65786365656473206d617820616c6c6f776564206d696e7420696e206f6e652060448201526530b1ba34b7b760d11b60648201526084016109d0565b600f54610fc88383612939565b11156110165760405162461bcd60e51b815260206004820181905260248201527f65786365656473206d617820616c6c6f77656420746f6b656e20737570706c7960448201526064016109d0565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b0316146110595781600e5461104d9190612951565b34101561105957600080fd5b60015b82811161108857611076336110718385612939565b6116cc565b80611080816129ee565b91505061105c565b50600f5460085410610953576109536110a6565b61095382826116e6565b6110ae611568565b6011805460ff19166001179055565b6110c5611568565b601455565b60006110d4611568565b504790565b6110e5848484846116f1565b50505050565b600d80546108c8906129b3565b60115460609060ff166111975760128054611112906129b3565b80601f016020809104026020016040519081016040528092919081815260200182805461113e906129b3565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b50505050509050919050565b42601454106111ad5760128054611112906129b3565b6000828152600260205260409020546001600160a01b03166112295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d0565b6000611233611723565b905060008151116112535760405180602001604052806000815250611281565b8061125d84611732565b600d604051602001611271939291906126b9565b6040516020818303038152906040525b9392505050565b6000611292611568565b5060135490565b6001600160a01b03808316600090815260056020908152604080832093851683529290529081205460ff16611281565b6112d1611568565b805161095390601290602084019061235a565b6112ec611568565b6001600160a01b0381166113515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d0565b61135a81611635565b50565b600061136882610dbd565b6001600160a01b0316336001600160a01b031614806113a85750600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b0316145b6113c45760405162461bcd60e51b81526004016109d0906128f5565b5060009081526017602052604090205460e01b90565b60006001600160e01b0319821663780e9d6360e01b14806108185750610818826117c7565b600061140a82611817565b506000908152600460205260409020546001600160a01b031690565b600061143182610dbd565b9050806001600160a01b0316836001600160a01b0316141561149f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109d0565b336001600160a01b03821614806114bb57506114bb8133611299565b61152d5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016109d0565b6109628383611876565b61154133826118e4565b61155d5760405162461bcd60e51b81526004016109d090612811565b610962838383611943565b600a546001600160a01b03610100909104163314610c265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109d0565b6115d0611ab4565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610962838383604051806020016040528060008152506110d9565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611697611afd565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115fd3390565b610953828260405180602001604052806000815250611b43565b610953338383611b76565b6116fb33836118e4565b6117175760405162461bcd60e51b81526004016109d090612811565b6110e584848484611c45565b6060600c805461082d906129b3565b6060600061173f83611c78565b600101905060008167ffffffffffffffff81111561175f5761175f612a4b565b6040519080825280601f01601f191660200182016040528015611789576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846117c257610ccd565b611793565b60006001600160e01b031982166380ac58cd60e01b14806117f857506001600160e01b03198216635b5e139f60e01b145b8061081857506301ffc9a760e01b6001600160e01b0319831614610818565b6000818152600260205260409020546001600160a01b031661135a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109d0565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ab82610dbd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806118f083610dbd565b9050806001600160a01b0316846001600160a01b0316148061191757506119178185611299565b8061193b5750836001600160a01b0316611930846108b0565b6001600160a01b0316145b949350505050565b826001600160a01b031661195682610dbd565b6001600160a01b03161461197c5760405162461bcd60e51b81526004016109d0906128b0565b6001600160a01b0382166119de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109d0565b6119eb8383836001611d50565b826001600160a01b03166119fe82610dbd565b6001600160a01b031614611a245760405162461bcd60e51b81526004016109d0906128b0565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff16610c265760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109d0565b600a5460ff1615610c265760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109d0565b611b4d8383611d5c565b611b5a6000848484611ef5565b6109625760405162461bcd60e51b81526004016109d09061285e565b816001600160a01b0316836001600160a01b03161415611bd85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109d0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c50848484611943565b611c5c84848484611ef5565b6110e55760405162461bcd60e51b81526004016109d09061285e565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611cb75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611ce3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611d0157662386f26fc10000830492506010015b6305f5e1008310611d19576305f5e100830492506008015b6127108310611d2d57612710830492506004015b60648310611d3f576064830492506002015b600a83106108185760010192915050565b6110e584848484612002565b6001600160a01b038216611db25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109d0565b6000818152600260205260409020546001600160a01b031615611e175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109d0565b611e25600083836001611d50565b6000818152600260205260409020546001600160a01b031615611e8a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109d0565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611ff757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f3990339089908890889060040161277d565b602060405180830381600087803b158015611f5357600080fd5b505af1925050508015611f83575060408051601f3d908101601f19168201909252611f809181019061260e565b60015b611fdd573d808015611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b508051611fd55760405162461bcd60e51b81526004016109d09061285e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061193b565b506001949350505050565b61200e84848484612142565b600181111561207d5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016109d0565b816001600160a01b0385166120d9576120d481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120fc565b836001600160a01b0316856001600160a01b0316146120fc576120fc85826121ca565b6001600160a01b0384166121185761211381612267565b61213b565b846001600160a01b0316846001600160a01b03161461213b5761213b8482612316565b5050505050565b60018111156110e5576001600160a01b03841615612188576001600160a01b03841660009081526003602052604081208054839290612182908490612970565b90915550505b6001600160a01b038316156110e5576001600160a01b038316600090815260036020526040812080548392906121bf908490612939565b909155505050505050565b600060016121d784610e2a565b6121e19190612970565b600083815260076020526040902054909150808214612234576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061227990600190612970565b600083815260096020526040812054600880549394509092849081106122a1576122a1612a35565b9060005260206000200154905080600883815481106122c2576122c2612a35565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122fa576122fa612a1f565b6001900381819060005260206000200160009055905550505050565b600061232183610e2a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612366906129b3565b90600052602060002090601f01602090048101928261238857600085556123ce565b82601f106123a157805160ff19168380011785556123ce565b828001600101855582156123ce579182015b828111156123ce5782518255916020019190600101906123b3565b506123da9291506123de565b5090565b5b808211156123da57600081556001016123df565b600067ffffffffffffffff8084111561240e5761240e612a4b565b604051601f8501601f19908116603f0116810190828211818310171561243657612436612a4b565b8160405280935085815286868601111561244f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461248057600080fd5b919050565b60006020828403121561249757600080fd5b61128182612469565b600080604083850312156124b357600080fd5b6124bc83612469565b91506124ca60208401612469565b90509250929050565b6000806000606084860312156124e857600080fd5b6124f184612469565b92506124ff60208501612469565b9150604084013590509250925092565b6000806000806080858703121561252557600080fd5b61252e85612469565b935061253c60208601612469565b925060408501359150606085013567ffffffffffffffff81111561255f57600080fd5b8501601f8101871361257057600080fd5b61257f878235602084016123f3565b91505092959194509250565b6000806040838503121561259e57600080fd5b6125a783612469565b9150602083013580151581146125bc57600080fd5b809150509250929050565b600080604083850312156125da57600080fd5b6125e383612469565b946020939093013593505050565b60006020828403121561260357600080fd5b813561128181612a61565b60006020828403121561262057600080fd5b815161128181612a61565b60006020828403121561263d57600080fd5b813567ffffffffffffffff81111561265457600080fd5b8201601f8101841361266557600080fd5b61193b848235602084016123f3565b60006020828403121561268657600080fd5b5035919050565b600081518084526126a5816020860160208601612987565b601f01601f19169290920160200192915050565b6000845160206126cc8285838a01612987565b8551918401916126df8184848a01612987565b8554920191600090600181811c90808316806126fc57607f831692505b85831081141561271a57634e487b7160e01b85526022600452602485fd5b80801561272e576001811461273f5761276c565b60ff1985168852838801955061276c565b60008b81526020902060005b858110156127645781548a82015290840190880161274b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b09083018461268d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127f2578351835292840192918401916001016127d6565b50909695505050505050565b602081526000611281602083018461268d565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526024908201527f596f7520617265206e6f7420746865206f776e6572206f66207468697320746f60408201526335b2b71760e11b606082015260800190565b6000821982111561294c5761294c612a09565b500190565b600081600019048311821515161561296b5761296b612a09565b500290565b60008282101561298257612982612a09565b500390565b60005b838110156129a257818101518382015260200161298a565b838111156110e55750506000910152565b600181811c908216806129c757607f821691505b602082108114156129e857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a0257612a02612a09565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461135a57600080fdfea26469706673582212205551d8f4268026e620175944120853c05b970b9c3170453e38856d1fbdef415a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000174d6567616c6f646f6e2052616e63682047656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000034d454700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61675471474470577365714e4a694d7165554135446b434565504d724c68326b514c6e6b62545871376f6b782f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d57525247735a463144684b6979396769757a55417833696561544a79744c77455532736266776e684c7652330000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c80636352211e1161015a578063b69ef8a8116100c1578063dbe7e3bd1161007a578063dbe7e3bd14610729578063e33b7de31461075f578063e985e9c514610774578063f2c4ce1e14610794578063f2fde38b146107b4578063f598fd91146107d457600080fd5b8063b69ef8a814610693578063b88d4fde146106a8578063c6682862146106c8578063c87b56dd146106dd578063d1a00d50146106fd578063d5abeb011461071357600080fd5b80638da5cb5b116101135780638da5cb5b146105f357806395d89b4114610616578063a0712d681461062b578063a22cb4651461063e578063a475b5dd1461065e578063a68c25d81461067357600080fd5b80636352211e146105495780636f8b44b01461056957806370a0823114610589578063715018a6146105a95780637f00c7a6146105be5780638456cb59146105de57600080fd5b80633ccfd60b116101fe57806351830227116101b757806351830227146104ac578063522577e9146104c657806353236d74146104db57806355f804b3146104f15780635a5a8891146105115780635c975abb1461053157600080fd5b80633ccfd60b146104025780633f4ba83a1461040a57806342842e0e1461041f578063438b63001461043f57806344a0d68a1461046c5780634f6ccce71461048c57600080fd5b806313faede61161025057806313faede61461035357806318160ddd14610377578063239c70ae1461038c57806323b872dd146103a25780632f745c59146103c2578063379607f5146103e257600080fd5b806301ffc9a71461028d57806306fdde03146102c2578063081812fc146102e4578063081c8c441461031c578063095ea7b314610331575b600080fd5b34801561029957600080fd5b506102ad6102a83660046125f1565b61080d565b60405190151581526020015b60405180910390f35b3480156102ce57600080fd5b506102d761081e565b6040516102b991906127fe565b3480156102f057600080fd5b506103046102ff366004612674565b6108b0565b6040516001600160a01b0390911681526020016102b9565b34801561032857600080fd5b506102d76108bb565b34801561033d57600080fd5b5061035161034c3660046125c7565b610949565b005b34801561035f57600080fd5b50610369600e5481565b6040519081526020016102b9565b34801561038357600080fd5b50600854610369565b34801561039857600080fd5b5061036960105481565b3480156103ae57600080fd5b506103516103bd3660046124d3565b610957565b3480156103ce57600080fd5b506103696103dd3660046125c7565b610967565b3480156103ee57600080fd5b506103516103fd366004612674565b610a02565b610351610b9c565b34801561041657600080fd5b50610351610c16565b34801561042b57600080fd5b5061035161043a3660046124d3565b610c28565b34801561044b57600080fd5b5061045f61045a366004612485565b610c33565b6040516102b991906127ba565b34801561047857600080fd5b50610351610487366004612674565b610cd5565b34801561049857600080fd5b506103696104a7366004612674565b610ce2565b3480156104b857600080fd5b506011546102ad9060ff1681565b3480156104d257600080fd5b50610369610d75565b3480156104e757600080fd5b5061036960145481565b3480156104fd57600080fd5b5061035161050c36600461262b565b610d95565b34801561051d57600080fd5b5061035161052c366004612674565b610db0565b34801561053d57600080fd5b50600a5460ff166102ad565b34801561055557600080fd5b50610304610564366004612674565b610dbd565b34801561057557600080fd5b50610351610584366004612674565b610e1d565b34801561059557600080fd5b506103696105a4366004612485565b610e2a565b3480156105b557600080fd5b50610351610eb0565b3480156105ca57600080fd5b506103516105d9366004612674565b610ec2565b3480156105ea57600080fd5b50610351610ecf565b3480156105ff57600080fd5b50600a5461010090046001600160a01b0316610304565b34801561062257600080fd5b506102d7610edf565b610351610639366004612674565b610eee565b34801561064a57600080fd5b5061035161065936600461258b565b61109c565b34801561066a57600080fd5b506103516110a6565b34801561067f57600080fd5b5061035161068e366004612674565b6110bd565b34801561069f57600080fd5b506103696110ca565b3480156106b457600080fd5b506103516106c336600461250f565b6110d9565b3480156106d457600080fd5b506102d76110eb565b3480156106e957600080fd5b506102d76106f8366004612674565b6110f8565b34801561070957600080fd5b5061036960155481565b34801561071f57600080fd5b50610369600f5481565b34801561073557600080fd5b50610304610744366004612674565b6000908152601660205260409020546001600160a01b031690565b34801561076b57600080fd5b50610369611288565b34801561078057600080fd5b506102ad61078f3660046124a0565b611299565b3480156107a057600080fd5b506103516107af36600461262b565b6112c9565b3480156107c057600080fd5b506103516107cf366004612485565b6112e4565b3480156107e057600080fd5b506107f46107ef366004612674565b61135d565b6040516001600160e01b031990911681526020016102b9565b6000610818826113da565b92915050565b60606000805461082d906129b3565b80601f0160208091040260200160405190810160405280929190818152602001828054610859906129b3565b80156108a65780601f1061087b576101008083540402835291602001916108a6565b820191906000526020600020905b81548152906001019060200180831161088957829003601f168201915b5050505050905090565b6000610818826113ff565b601280546108c8906129b3565b80601f01602080910402602001604051908101604052809291908181526020018280546108f4906129b3565b80156109415780601f1061091657610100808354040283529160200191610941565b820191906000526020600020905b81548152906001019060200180831161092457829003601f168201915b505050505081565b6109538282611426565b5050565b610962838383611537565b505050565b600061097283610e2a565b82106109d95760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084015b60405180910390fd5b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6015544211610a635760405162461bcd60e51b815260206004820152602760248201527f546f6f746820636c61696d696e6720686173206e6f7420796574206265656e2060448201526637b832b732b21760c91b60648201526084016109d0565b6000818152601660205260409020546001600160a01b031615610ad45760405162461bcd60e51b8152602060048201526024808201527f5468697320746f6f74682068617320616c7265616479206265656e20636c616960448201526336b2b21760e11b60648201526084016109d0565b610add81610dbd565b6001600160a01b0316336001600160a01b031614610b0d5760405162461bcd60e51b81526004016109d0906128f5565b6000818152601660209081526040918290208054336001600160a01b03199091168117909155825160609190911b6bffffffffffffffffffffffff19168183015260348101849052426054808301919091528351808303909101815260749091019092528151910120600091825260176020526040909120805463ffffffff191660e09290921c919091179055565b610ba4611568565b6040514790600090339047908381818185875af1925050503d8060008114610be8576040519150601f19603f3d011682016040523d82523d6000602084013e610bed565b606091505b5050905080610bfb57600080fd5b8160136000828254610c0d9190612939565b90915550505050565b610c1e611568565b610c266115c8565b565b61096283838361161a565b60606000610c4083610e2a565b905060008167ffffffffffffffff811115610c5d57610c5d612a4b565b604051908082528060200260200182016040528015610c86578160200160208202803683370190505b50905060005b82811015610ccd57610c9e8582610967565b828281518110610cb057610cb0612a35565b602090810291909101015280610cc5816129ee565b915050610c8c565b509392505050565b610cdd611568565b600e55565b6000610ced60085490565b8210610d505760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109d0565b60088281548110610d6357610d63612a35565b90600052602060002001549050919050565b6000610d7f611568565b600060135447610d8f9190612939565b91505090565b610d9d611568565b805161095390600c90602084019061235a565b610db8611568565b601555565b6000818152600260205260408120546001600160a01b0316806108185760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109d0565b610e25611568565b600f55565b60006001600160a01b038216610e945760405162461bcd60e51b815260206004820152602960248201527f4552433732313a2061646472657373207a65726f206973206e6f7420612076616044820152683634b21037bbb732b960b91b60648201526084016109d0565b506001600160a01b031660009081526003602052604090205490565b610eb8611568565b610c266000611635565b610eca611568565b601055565b610ed7611568565b610c2661168f565b60606001805461082d906129b3565b6000610ef960085490565b9050610f07600a5460ff1690565b15610f4d5760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b60448201526064016109d0565b60008211610f5a57600080fd5b601054821115610fbb5760405162461bcd60e51b815260206004820152602660248201527f65786365656473206d617820616c6c6f776564206d696e7420696e206f6e652060448201526530b1ba34b7b760d11b60648201526084016109d0565b600f54610fc88383612939565b11156110165760405162461bcd60e51b815260206004820181905260248201527f65786365656473206d617820616c6c6f77656420746f6b656e20737570706c7960448201526064016109d0565b600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b0316146110595781600e5461104d9190612951565b34101561105957600080fd5b60015b82811161108857611076336110718385612939565b6116cc565b80611080816129ee565b91505061105c565b50600f5460085410610953576109536110a6565b61095382826116e6565b6110ae611568565b6011805460ff19166001179055565b6110c5611568565b601455565b60006110d4611568565b504790565b6110e5848484846116f1565b50505050565b600d80546108c8906129b3565b60115460609060ff166111975760128054611112906129b3565b80601f016020809104026020016040519081016040528092919081815260200182805461113e906129b3565b801561118b5780601f106111605761010080835404028352916020019161118b565b820191906000526020600020905b81548152906001019060200180831161116e57829003601f168201915b50505050509050919050565b42601454106111ad5760128054611112906129b3565b6000828152600260205260409020546001600160a01b03166112295760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016109d0565b6000611233611723565b905060008151116112535760405180602001604052806000815250611281565b8061125d84611732565b600d604051602001611271939291906126b9565b6040516020818303038152906040525b9392505050565b6000611292611568565b5060135490565b6001600160a01b03808316600090815260056020908152604080832093851683529290529081205460ff16611281565b6112d1611568565b805161095390601290602084019061235a565b6112ec611568565b6001600160a01b0381166113515760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109d0565b61135a81611635565b50565b600061136882610dbd565b6001600160a01b0316336001600160a01b031614806113a85750600a5461010090046001600160a01b03166001600160a01b0316336001600160a01b0316145b6113c45760405162461bcd60e51b81526004016109d0906128f5565b5060009081526017602052604090205460e01b90565b60006001600160e01b0319821663780e9d6360e01b14806108185750610818826117c7565b600061140a82611817565b506000908152600460205260409020546001600160a01b031690565b600061143182610dbd565b9050806001600160a01b0316836001600160a01b0316141561149f5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109d0565b336001600160a01b03821614806114bb57506114bb8133611299565b61152d5760405162461bcd60e51b815260206004820152603d60248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60448201527f6b656e206f776e6572206f7220617070726f76656420666f7220616c6c00000060648201526084016109d0565b6109628383611876565b61154133826118e4565b61155d5760405162461bcd60e51b81526004016109d090612811565b610962838383611943565b600a546001600160a01b03610100909104163314610c265760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109d0565b6115d0611ab4565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b610962838383604051806020016040528060008152506110d9565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611697611afd565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586115fd3390565b610953828260405180602001604052806000815250611b43565b610953338383611b76565b6116fb33836118e4565b6117175760405162461bcd60e51b81526004016109d090612811565b6110e584848484611c45565b6060600c805461082d906129b3565b6060600061173f83611c78565b600101905060008167ffffffffffffffff81111561175f5761175f612a4b565b6040519080825280601f01601f191660200182016040528015611789576020820181803683370190505b5090508181016020015b600019016f181899199a1a9b1b9c1cb0b131b232b360811b600a86061a8153600a85049450846117c257610ccd565b611793565b60006001600160e01b031982166380ac58cd60e01b14806117f857506001600160e01b03198216635b5e139f60e01b145b8061081857506301ffc9a760e01b6001600160e01b0319831614610818565b6000818152600260205260409020546001600160a01b031661135a5760405162461bcd60e51b8152602060048201526018602482015277115490cdcc8c4e881a5b9d985b1a59081d1bdad95b88125160421b60448201526064016109d0565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906118ab82610dbd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806118f083610dbd565b9050806001600160a01b0316846001600160a01b0316148061191757506119178185611299565b8061193b5750836001600160a01b0316611930846108b0565b6001600160a01b0316145b949350505050565b826001600160a01b031661195682610dbd565b6001600160a01b03161461197c5760405162461bcd60e51b81526004016109d0906128b0565b6001600160a01b0382166119de5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109d0565b6119eb8383836001611d50565b826001600160a01b03166119fe82610dbd565b6001600160a01b031614611a245760405162461bcd60e51b81526004016109d0906128b0565b600081815260046020908152604080832080546001600160a01b03199081169091556001600160a01b0387811680865260038552838620805460001901905590871680865283862080546001019055868652600290945282852080549092168417909155905184937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff16610c265760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b60448201526064016109d0565b600a5460ff1615610c265760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b60448201526064016109d0565b611b4d8383611d5c565b611b5a6000848484611ef5565b6109625760405162461bcd60e51b81526004016109d09061285e565b816001600160a01b0316836001600160a01b03161415611bd85760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109d0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611c50848484611943565b611c5c84848484611ef5565b6110e55760405162461bcd60e51b81526004016109d09061285e565b60008072184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b8310611cb75772184f03e93ff9f4daa797ed6e38ed64bf6a1f0160401b830492506040015b6d04ee2d6d415b85acef81000000008310611ce3576d04ee2d6d415b85acef8100000000830492506020015b662386f26fc100008310611d0157662386f26fc10000830492506010015b6305f5e1008310611d19576305f5e100830492506008015b6127108310611d2d57612710830492506004015b60648310611d3f576064830492506002015b600a83106108185760010192915050565b6110e584848484612002565b6001600160a01b038216611db25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109d0565b6000818152600260205260409020546001600160a01b031615611e175760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109d0565b611e25600083836001611d50565b6000818152600260205260409020546001600160a01b031615611e8a5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109d0565b6001600160a01b038216600081815260036020908152604080832080546001019055848352600290915280822080546001600160a01b0319168417905551839291907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001600160a01b0384163b15611ff757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611f3990339089908890889060040161277d565b602060405180830381600087803b158015611f5357600080fd5b505af1925050508015611f83575060408051601f3d908101601f19168201909252611f809181019061260e565b60015b611fdd573d808015611fb1576040519150601f19603f3d011682016040523d82523d6000602084013e611fb6565b606091505b508051611fd55760405162461bcd60e51b81526004016109d09061285e565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061193b565b506001949350505050565b61200e84848484612142565b600181111561207d5760405162461bcd60e51b815260206004820152603560248201527f455243373231456e756d657261626c653a20636f6e7365637574697665207472604482015274185b9cd9995c9cc81b9bdd081cdd5c1c1bdc9d1959605a1b60648201526084016109d0565b816001600160a01b0385166120d9576120d481600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120fc565b836001600160a01b0316856001600160a01b0316146120fc576120fc85826121ca565b6001600160a01b0384166121185761211381612267565b61213b565b846001600160a01b0316846001600160a01b03161461213b5761213b8482612316565b5050505050565b60018111156110e5576001600160a01b03841615612188576001600160a01b03841660009081526003602052604081208054839290612182908490612970565b90915550505b6001600160a01b038316156110e5576001600160a01b038316600090815260036020526040812080548392906121bf908490612939565b909155505050505050565b600060016121d784610e2a565b6121e19190612970565b600083815260076020526040902054909150808214612234576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061227990600190612970565b600083815260096020526040812054600880549394509092849081106122a1576122a1612a35565b9060005260206000200154905080600883815481106122c2576122c2612a35565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806122fa576122fa612a1f565b6001900381819060005260206000200160009055905550505050565b600061232183610e2a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612366906129b3565b90600052602060002090601f01602090048101928261238857600085556123ce565b82601f106123a157805160ff19168380011785556123ce565b828001600101855582156123ce579182015b828111156123ce5782518255916020019190600101906123b3565b506123da9291506123de565b5090565b5b808211156123da57600081556001016123df565b600067ffffffffffffffff8084111561240e5761240e612a4b565b604051601f8501601f19908116603f0116810190828211818310171561243657612436612a4b565b8160405280935085815286868601111561244f57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461248057600080fd5b919050565b60006020828403121561249757600080fd5b61128182612469565b600080604083850312156124b357600080fd5b6124bc83612469565b91506124ca60208401612469565b90509250929050565b6000806000606084860312156124e857600080fd5b6124f184612469565b92506124ff60208501612469565b9150604084013590509250925092565b6000806000806080858703121561252557600080fd5b61252e85612469565b935061253c60208601612469565b925060408501359150606085013567ffffffffffffffff81111561255f57600080fd5b8501601f8101871361257057600080fd5b61257f878235602084016123f3565b91505092959194509250565b6000806040838503121561259e57600080fd5b6125a783612469565b9150602083013580151581146125bc57600080fd5b809150509250929050565b600080604083850312156125da57600080fd5b6125e383612469565b946020939093013593505050565b60006020828403121561260357600080fd5b813561128181612a61565b60006020828403121561262057600080fd5b815161128181612a61565b60006020828403121561263d57600080fd5b813567ffffffffffffffff81111561265457600080fd5b8201601f8101841361266557600080fd5b61193b848235602084016123f3565b60006020828403121561268657600080fd5b5035919050565b600081518084526126a5816020860160208601612987565b601f01601f19169290920160200192915050565b6000845160206126cc8285838a01612987565b8551918401916126df8184848a01612987565b8554920191600090600181811c90808316806126fc57607f831692505b85831081141561271a57634e487b7160e01b85526022600452602485fd5b80801561272e576001811461273f5761276c565b60ff1985168852838801955061276c565b60008b81526020902060005b858110156127645781548a82015290840190880161274b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127b09083018461268d565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156127f2578351835292840192918401916001016127d6565b50909695505050505050565b602081526000611281602083018461268d565b6020808252602d908201527f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560408201526c1c881bdc88185c1c1c9bdd9959609a1b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526025908201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060408201526437bbb732b960d91b606082015260800190565b60208082526024908201527f596f7520617265206e6f7420746865206f776e6572206f66207468697320746f60408201526335b2b71760e11b606082015260800190565b6000821982111561294c5761294c612a09565b500190565b600081600019048311821515161561296b5761296b612a09565b500290565b60008282101561298257612982612a09565b500390565b60005b838110156129a257818101518382015260200161298a565b838111156110e55750506000910152565b600181811c908216806129c757607f821691505b602082108114156129e857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a0257612a02612a09565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461135a57600080fdfea26469706673582212205551d8f4268026e620175944120853c05b970b9c3170453e38856d1fbdef415a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000174d6567616c6f646f6e2052616e63682047656e6573697300000000000000000000000000000000000000000000000000000000000000000000000000000000034d454700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d61675471474470577365714e4a694d7165554135446b434565504d724c68326b514c6e6b62545871376f6b782f000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d57525247735a463144684b6979396769757a55417833696561544a79744c77455532736266776e684c7652330000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Megalodon Ranch Genesis
Arg [1] : _symbol (string): MEG
Arg [2] : _initBaseURI (string): ipfs://QmagTqGDpWseqNJiMqeUA5DkCEePMrLh2kQLnkbTXq7okx/
Arg [3] : _initNotRevealedUri (string): ipfs://QmWRRGsZF1DhKiy9giuzUAx3ieaTJytLwEU2sbfwnhLvR3

-----Encoded View---------------
14 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000017
Arg [5] : 4d6567616c6f646f6e2052616e63682047656e65736973000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 4d45470000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d61675471474470577365714e4a694d7165554135446b43
Arg [10] : 4565504d724c68326b514c6e6b62545871376f6b782f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [12] : 697066733a2f2f516d57525247735a463144684b6979396769757a5541783369
Arg [13] : 6561544a79744c77455532736266776e684c7652330000000000000000000000


Deployed Bytecode Sourcemap

252:8035:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7048:212;;;;;;;;;;-1:-1:-1;7048:212:11;;;;;:::i;:::-;;:::i;:::-;;;7914:14:16;;7907:22;7889:41;;7877:2;7862:18;7048:212:11;;;;;;;;2579:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;5139:187:11:-;;;;;;;;;;-1:-1:-1;5139:187:11;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6575:32:16;;;6557:51;;6545:2;6530:18;5139:187:11;6411:203:16;663:28:11;;;;;;;;;;;;;:::i;4411:107::-;;;;;;;;;;-1:-1:-1;4411:107:11;;;;;:::i;:::-;;:::i;:::-;;513:32;;;;;;;;;;;;;;;;;;;18291:25:16;;;18279:2;18264:18;513:32:11;18145:177:16;1777:111:5;;;;;;;;;;-1:-1:-1;1864:10:5;:17;1777:111;;589:32:11;;;;;;;;;;;;;;;;4526:179;;;;;;;;;;-1:-1:-1;4526:179:11;;;;;:::i;:::-;;:::i;1375:331:5:-;;;;;;;;;;-1:-1:-1;1375:331:5;;;;;:::i;:::-;;:::i;3897:506:11:-;;;;;;;;;;-1:-1:-1;3897:506:11;;;;;:::i;:::-;;:::i;2580:296::-;;;:::i;2953:126::-;;;;;;;;;;;;;:::i;4713:187::-;;;;;;;;;;-1:-1:-1;4713:187:11;;;;;:::i;:::-;;:::i;7268:390::-;;;;;;;;;;-1:-1:-1;7268:390:11;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2076:86::-;;;;;;;;;;-1:-1:-1;2076:86:11;;;;;:::i;:::-;;:::i;1960:308:5:-;;;;;;;;;;-1:-1:-1;1960:308:5;;;;;:::i;:::-;;:::i;628:28:11:-;;;;;;;;;;-1:-1:-1;628:28:11;;;;;;;;2397:175;;;;;;;;;;;;;:::i;741:50::-;;;;;;;;;;;;;;;;8180:104;;;;;;;;;;-1:-1:-1;8180:104:11;;;;;:::i;:::-;;:::i;3087:92::-;;;;;;;;;;-1:-1:-1;3087:92:11;;;;;:::i;:::-;;:::i;1609:84:14:-;;;;;;;;;;-1:-1:-1;1679:7:14;;;;1609:84;;2254:263:4;;;;;;;;;;-1:-1:-1;2254:263:4;;;;;:::i;:::-;;:::i;7932:106:11:-;;;;;;;;;;-1:-1:-1;7932:106:11;;;;;:::i;:::-;;:::i;1915:282:4:-;;;;;;;;;;-1:-1:-1;1915:282:4;;;;;:::i;:::-;;:::i;1847:101:13:-;;;;;;;;;;;;;:::i;7802:122:11:-;;;;;;;;;;-1:-1:-1;7802:122:11;;;;;:::i;:::-;;:::i;2884:61::-;;;;;;;;;;;;;:::i;1217:85:13:-;;;;;;;;;;-1:-1:-1;1289:6:13;;;;;-1:-1:-1;;;;;1289:6:13;1217:85;;2741:102:4;;;;;;;;;;;;;:::i;1260:808:11:-;;;;;;:::i;:::-;;:::i;5334:185::-;;;;;;;;;;-1:-1:-1;5334:185:11;;;;;:::i;:::-;;:::i;7666:128::-;;;;;;;;;;;;;:::i;3187:94::-;;;;;;;;;;-1:-1:-1;3187:94:11;;;;;:::i;:::-;;:::i;2170:106::-;;;;;;;;;;;;;:::i;4908:223::-;;;;;;;;;;-1:-1:-1;4908:223:11;;;;;:::i;:::-;;:::i;469:37::-;;;;;;;;;;;;;:::i;6236:804::-;;;;;;;;;;-1:-1:-1;6236:804:11;;;;;:::i;:::-;;:::i;798:49::-;;;;;;;;;;;;;;;;552:30;;;;;;;;;;;;;;;;3289:107;;;;;;;;;;-1:-1:-1;3289:107:11;;;;;:::i;:::-;3348:7;3375:13;;;:8;:13;;;;;;-1:-1:-1;;;;;3375:13:11;;3289:107;2284:105;;;;;;;;;;;;;:::i;5527:218::-;;;;;;;;;;-1:-1:-1;5527:218:11;;;;;:::i;:::-;;:::i;8046:126::-;;;;;;;;;;-1:-1:-1;8046:126:11;;;;;:::i;:::-;;:::i;2097:232:13:-;;;;;;;;;;-1:-1:-1;2097:232:13;;;;;:::i;:::-;;:::i;3404:257:11:-;;;;;;;;;;-1:-1:-1;3404:257:11;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;;8103:33:16;;;8085:52;;8073:2;8058:18;3404:257:11;7941:202:16;7048:212:11;7187:4;7216:36;7240:11;7216:23;:36::i;:::-;7209:43;7048:212;-1:-1:-1;;7048:212:11:o;2579:98:4:-;2633:13;2665:5;2658:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2579:98;:::o;5139:187:11:-;5260:7;5292:26;5310:7;5292:17;:26::i;663:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4411:107::-;4484:26;4498:2;4502:7;4484:13;:26::i;:::-;4411:107;;:::o;4526:179::-;4660:37;4679:4;4685:2;4689:7;4660:18;:37::i;:::-;4526:179;;;:::o;1375:331:5:-;1512:7;1564:23;1581:5;1564:16;:23::i;:::-;1556:5;:31;1535:121;;;;-1:-1:-1;;;1535:121:5;;10510:2:16;1535:121:5;;;10492:21:16;10549:2;10529:18;;;10522:30;10588:34;10568:18;;;10561:62;-1:-1:-1;;;10639:18:16;;;10632:41;10690:19;;1535:121:5;;;;;;;;;-1:-1:-1;;;;;;1673:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1375:331::o;3897:506:11:-;3984:10;;3966:15;:28;3943:119;;;;-1:-1:-1;;;3943:119:11;;12916:2:16;3943:119:11;;;12898:21:16;12955:2;12935:18;;;12928:30;12994:34;12974:18;;;12967:62;-1:-1:-1;;;13045:18:16;;;13038:37;13092:19;;3943:119:11;12714:403:16;3943:119:11;4121:1;4096:13;;;:8;:13;;;;;;-1:-1:-1;;;;;4096:13:11;:27;4073:115;;;;-1:-1:-1;;;4073:115:11;;8574:2:16;4073:115:11;;;8556:21:16;8613:2;8593:18;;;8586:30;8652:34;8632:18;;;8625:62;-1:-1:-1;;;8703:18:16;;;8696:34;8747:19;;4073:115:11;8372:400:16;4073:115:11;4236:12;4244:3;4236:7;:12::i;:::-;-1:-1:-1;;;;;4222:26:11;:10;-1:-1:-1;;;;;4222:26:11;;4199:114;;;;-1:-1:-1;;;4199:114:11;;;;;;;:::i;:::-;4324:13;;;;:8;:13;;;;;;;;;:26;;4340:10;-1:-1:-1;;;;;;4324:26:11;;;;;;;;3793:45;;4510:2:16;4506:15;;;;-1:-1:-1;;4502:53:16;3793:45:11;;;4490:66:16;4572:12;;;4565:28;;;3822:15:11;4609:12:16;;;;4602:28;;;;3793:45:11;;;;;;;;;;4646:12:16;;;;3793:45:11;;;3769:80;;;;;4361:10;;;;:5;:10;;;;;;:34;;-1:-1:-1;;4361:34:11;;;;;;;;;;;;3897:506::o;2580:296::-;1110:13:13;:11;:13::i;:::-;2714:82:11::1;::::0;2663:21:::1;::::0;2636:24:::1;::::0;2722:10:::1;::::0;2760:21:::1;::::0;2636:24;2714:82;2636:24;2714:82;2760:21;2722:10;2714:82:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2695:101;;;2815:7;2807:16;;;::::0;::::1;;2852;2834:14;;:34;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;2580:296:11:o;2953:126::-;1110:13:13;:11;:13::i;:::-;3000:10:11::1;:8;:10::i;:::-;2953:126::o:0;4713:187::-;4851:41;4874:4;4880:2;4884:7;4851:22;:41::i;7268:390::-;7355:16;7389:23;7415:17;7425:6;7415:9;:17::i;:::-;7389:43;;7443:25;7485:15;7471:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7471:30:11;;7443:58;;7517:9;7512:113;7532:15;7528:1;:19;7512:113;;;7583:30;7603:6;7611:1;7583:19;:30::i;:::-;7569:8;7578:1;7569:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;7549:3;;;;:::i;:::-;;;;7512:113;;;-1:-1:-1;7642:8:11;7268:390;-1:-1:-1;;;7268:390:11:o;2076:86::-;1110:13:13;:11;:13::i;:::-;2139:4:11::1;:15:::0;2076:86::o;1960:308:5:-;2075:7;2127:30;1864:10;:17;;1777:111;2127:30;2119:5;:38;2098:129;;;;-1:-1:-1;;;2098:129:5;;17512:2:16;2098:129:5;;;17494:21:16;17551:2;17531:18;;;17524:30;17590:34;17570:18;;;17563:62;-1:-1:-1;;;17641:18:16;;;17634:42;17693:19;;2098:129:5;17310:408:16;2098:129:5;2244:10;2255:5;2244:17;;;;;;;;:::i;:::-;;;;;;;;;2237:24;;1960:308;;;:::o;2397:175:11:-;2451:7;1110:13:13;:11;:13::i;:::-;2471:20:11::1;2518:14;;2494:21;:38;;;;:::i;:::-;2471:61:::0;-1:-1:-1;;2397:175:11;:::o;8180:104::-;1110:13:13;:11;:13::i;:::-;8255:21:11;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;3087:92::-:0;1110:13:13;:11;:13::i;:::-;3153:10:11::1;:18:::0;3087:92::o;2254:263:4:-;2366:7;7344:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7344:16:4;;2432:56;;;;-1:-1:-1;;;2432:56:4;;16327:2:16;2432:56:4;;;16309:21:16;16366:2;16346:18;;;16339:30;-1:-1:-1;;;16385:18:16;;;16378:54;16449:18;;2432:56:4;16125:348:16;7932:106:11;1110:13:13;:11;:13::i;:::-;8005:9:11::1;:25:::0;7932:106::o;1915:282:4:-;2027:7;-1:-1:-1;;;;;2071:19:4;;2050:107;;;;-1:-1:-1;;;2050:107:4;;14428:2:16;2050:107:4;;;14410:21:16;14467:2;14447:18;;;14440:30;14506:34;14486:18;;;14479:62;-1:-1:-1;;;14557:18:16;;;14550:39;14606:19;;2050:107:4;14226:405:16;2050:107:4;-1:-1:-1;;;;;;2174:16:4;;;;;:9;:16;;;;;;;1915:282::o;1847:101:13:-;1110:13;:11;:13::i;:::-;1911:30:::1;1938:1;1911:18;:30::i;7802:122:11:-:0;1110:13:13;:11;:13::i;:::-;7883::11::1;:33:::0;7802:122::o;2884:61::-;1110:13:13;:11;:13::i;:::-;2929:8:11::1;:6;:8::i;2741:102:4:-:0;2797:13;2829:7;2822:14;;;;;:::i;1260:808:11:-;1321:14;1338:13;1864:10:5;:17;;1777:111;1338:13:11;1321:30;;1371:8;1679:7:14;;;;;1609:84;1371:8:11;1370:9;1362:44;;;;-1:-1:-1;;;1362:44:11;;15560:2:16;1362:44:11;;;15542:21:16;15599:2;15579:18;;;15572:30;-1:-1:-1;;;15618:18:16;;;15611:52;15680:18;;1362:44:11;15358:346:16;1362:44:11;1439:1;1425:11;:15;1417:24;;;;;;1489:13;;1474:11;:28;;1452:116;;;;-1:-1:-1;;;1452:116:11;;8979:2:16;1452:116:11;;;8961:21:16;9018:2;8998:18;;;8991:30;9057:34;9037:18;;;9030:62;-1:-1:-1;;;9108:18:16;;;9101:36;9154:19;;1452:116:11;8777:402:16;1452:116:11;1625:9;;1601:20;1610:11;1601:6;:20;:::i;:::-;:33;;1579:115;;;;-1:-1:-1;;;1579:115:11;;10149:2:16;1579:115:11;;;10131:21:16;;;10168:18;;;10161:30;10227:34;10207:18;;;10200:62;10279:18;;1579:115:11;9947:356:16;1579:115:11;1289:6:13;;;;;-1:-1:-1;;;;;1289:6:13;-1:-1:-1;;;;;1711:21:11;:10;-1:-1:-1;;;;;1711:21:11;;1707:94;;1777:11;1770:4;;:18;;;;:::i;:::-;1757:9;:31;;1749:40;;;;;;1830:1;1813:103;1838:11;1833:1;:16;1813:103;;1871:33;1881:10;1893;1902:1;1893:6;:10;:::i;:::-;1871:9;:33::i;:::-;1851:3;;;;:::i;:::-;;;;1813:103;;;-1:-1:-1;1949:9:11;;1864:10:5;:17;1932:26:11;1928:133;;2041:8;:6;:8::i;5334:185::-;5468:43;5492:8;5502;5468:23;:43::i;7666:128::-;1110:13:13;:11;:13::i;:::-;7771:8:11::1;:15:::0;;-1:-1:-1;;7771:15:11::1;7782:4;7771:15;::::0;;7666:128::o;3187:94::-;1110:13:13;:11;:13::i;:::-;3254:11:11::1;:19:::0;3187:94::o;2170:106::-;2220:7;1110:13:13;:11;:13::i;:::-;-1:-1:-1;2247:21:11::1;2170:106:::0;:::o;4908:223::-;5075:48;5098:4;5104:2;5108:7;5117:5;5075:22;:48::i;:::-;4908:223;;;;:::o;469:37::-;;;;;;;:::i;6236:804::-;6372:8;;6337:13;;6372:8;;6368:71;;6413:14;6406:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6236:804;;;:::o;6368:71::-;6470:15;6455:11;;:30;6451:84;;6509:14;6502:21;;;;;:::i;6451:84::-;7735:4:4;7344:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7344:16:4;6547:113:11;;;;-1:-1:-1;;;6547:113:11;;15911:2:16;6547:113:11;;;15893:21:16;15950:2;15930:18;;;15923:30;15989:34;15969:18;;;15962:62;-1:-1:-1;;;16040:18:16;;;16033:45;16095:19;;6547:113:11;15709:411:16;6547:113:11;6673:28;6704:10;:8;:10::i;:::-;6673:41;;6776:1;6751:14;6745:28;:32;:287;;;;;;;;;;;;;;;;;6869:14;6910:18;:7;:16;:18::i;:::-;6955:13;6826:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6745:287;6725:307;6236:804;-1:-1:-1;;;6236:804:11:o;2284:105::-;2340:7;1110:13:13;:11;:13::i;:::-;-1:-1:-1;2367:14:11::1;::::0;2284:105;:::o;5527:218::-;-1:-1:-1;;;;;4820:25:4;;;5669:4:11;4820:25:4;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;5698:39:11;4656:206:4;8046:126:11;1110:13:13;:11;:13::i;:::-;8132:32:11;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;2097:232:13:-:0;1110:13;:11;:13::i;:::-;-1:-1:-1;;;;;2198:22:13;::::1;2177:107;;;::::0;-1:-1:-1;;;2177:107:13;;11341:2:16;2177:107:13::1;::::0;::::1;11323:21:16::0;11380:2;11360:18;;;11353:30;11419:34;11399:18;;;11392:62;-1:-1:-1;;;11470:18:16;;;11463:36;11516:19;;2177:107:13::1;11139:402:16::0;2177:107:13::1;2294:28;2313:8;2294:18;:28::i;:::-;2097:232:::0;:::o;3404:257:11:-;3465:6;3521:12;3529:3;3521:7;:12::i;:::-;-1:-1:-1;;;;;3507:26:11;:10;-1:-1:-1;;;;;3507:26:11;;3506:55;;;-1:-1:-1;1289:6:13;;;;;-1:-1:-1;;;;;1289:6:13;-1:-1:-1;;;;;3539:21:11;:10;-1:-1:-1;;;;;3539:21:11;;3506:55;3484:141;;;;-1:-1:-1;;;3484:141:11;;;;;;;:::i;:::-;-1:-1:-1;3643:10:11;;;;:5;:10;;;;;;;;;3404:257::o;1006:290:5:-;1148:4;-1:-1:-1;;;;;;1187:50:5;;-1:-1:-1;;;1187:50:5;;:102;;;1253:36;1277:11;1253:23;:36::i;4131:211:4:-;4247:7;4270:23;4285:7;4270:14;:23::i;:::-;-1:-1:-1;4311:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4311:24:4;;4131:211::o;3664:406::-;3744:13;3760:23;3775:7;3760:14;:23::i;:::-;3744:39;;3807:5;-1:-1:-1;;;;;3801:11:4;:2;-1:-1:-1;;;;;3801:11:4;;;3793:57;;;;-1:-1:-1;;;3793:57:4;;16680:2:16;3793:57:4;;;16662:21:16;16719:2;16699:18;;;16692:30;16758:34;16738:18;;;16731:62;-1:-1:-1;;;16809:18:16;;;16802:31;16850:19;;3793:57:4;16478:397:16;3793:57:4;719:10:1;-1:-1:-1;;;;;3882:21:4;;;;:62;;-1:-1:-1;3907:37:4;3924:5;719:10:1;5527:218:11;:::i;3907:37:4:-;3861:170;;;;-1:-1:-1;;;3861:170:4;;17082:2:16;3861:170:4;;;17064:21:16;17121:2;17101:18;;;17094:30;17160:34;17140:18;;;17133:62;17231:31;17211:18;;;17204:59;17280:19;;3861:170:4;16880:425:16;3861:170:4;4042:21;4051:2;4055:7;4042:8;:21::i;4924:360::-;5126:41;719:10:1;5159:7:4;5126:18;:41::i;:::-;5105:133;;;;-1:-1:-1;;;5105:133:4;;;;;;;:::i;:::-;5249:28;5259:4;5265:2;5269:7;5249:9;:28::i;1375:130:13:-;1289:6;;-1:-1:-1;;;;;1289:6:13;;;;;719:10:1;1438:23:13;1430:68;;;;-1:-1:-1;;;1430:68:13;;15199:2:16;1430:68:13;;;15181:21:16;;;15218:18;;;15211:30;15277:34;15257:18;;;15250:62;15329:18;;1430:68:13;14997:356:16;2427:117:14;1480:16;:14;:16::i;:::-;2485:7:::1;:15:::0;;-1:-1:-1;;2485:15:14::1;::::0;;2515:22:::1;719:10:1::0;2524:12:14::1;2515:22;::::0;-1:-1:-1;;;;;6575:32:16;;;6557:51;;6545:2;6530:18;2515:22:14::1;;;;;;;2427:117::o:0;5350:179:4:-;5483:39;5500:4;5506:2;5510:7;5483:39;;;;;;;;;;;;:16;:39::i;2483:187:13:-;2575:6;;;-1:-1:-1;;;;;2591:17:13;;;2575:6;2591:17;;;-1:-1:-1;;;;;;2591:17:13;;;;;;2623:40;;2575:6;;;;;;;;2623:40;;2556:16;;2623:40;2546:124;2483:187;:::o;2180:115:14:-;1233:19;:17;:19::i;:::-;2239:7:::1;:14:::0;;-1:-1:-1;;2239:14:14::1;2249:4;2239:14;::::0;;2268:20:::1;2275:12;719:10:1::0;;640:96;8605:108:4;8680:26;8690:2;8694:7;8680:26;;;;;;;;;;;;:9;:26::i;4409:181::-;4531:52;719:10:1;4564:8:4;4574;4531:18;:52::i;5595:348::-;5776:41;719:10:1;5809:7:4;5776:18;:41::i;:::-;5755:133;;;;-1:-1:-1;;;5755:133:4;;;;;;;:::i;:::-;5898:38;5912:4;5918:2;5922:7;5931:4;5898:13;:38::i;6120:108:11:-;6180:13;6213:7;6206:14;;;;;:::i;411:696:15:-;467:13;516:14;533:17;544:5;533:10;:17::i;:::-;553:1;533:21;516:38;;568:20;602:6;591:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;591:18:15;-1:-1:-1;568:41:15;-1:-1:-1;729:28:15;;;745:2;729:28;784:280;-1:-1:-1;;815:5:15;-1:-1:-1;;;949:2:15;938:14;;933:30;815:5;920:44;1008:2;999:11;;;-1:-1:-1;1032:10:15;1028:21;;1044:5;;1028:21;784:280;;1512:344:4;1654:4;-1:-1:-1;;;;;;1693:40:4;;-1:-1:-1;;;1693:40:4;;:104;;-1:-1:-1;;;;;;;1749:48:4;;-1:-1:-1;;;1749:48:4;1693:104;:156;;;-1:-1:-1;;;;;;;;;;982:40:3;;;1813:36:4;830:199:3;14008:133:4;7735:4;7344:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7344:16:4;14081:53;;;;-1:-1:-1;;;14081:53:4;;16327:2:16;14081:53:4;;;16309:21:16;16366:2;16346:18;;;16339:30;-1:-1:-1;;;16385:18:16;;;16378:54;16449:18;;14081:53:4;16125:348:16;13310:171:4;13384:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;13384:29:4;-1:-1:-1;;;;;13384:29:4;;;;;;;;:24;;13437:23;13384:24;13437:14;:23::i;:::-;-1:-1:-1;;;;;13428:46:4;;;;;;;;;;;13310:171;;:::o;7954:321::-;8079:4;8099:13;8115:23;8130:7;8115:14;:23::i;:::-;8099:39;;8167:5;-1:-1:-1;;;;;8156:16:4;:7;-1:-1:-1;;;;;8156:16:4;;:64;;;;8188:32;8205:5;8212:7;8188:16;:32::i;:::-;8156:111;;;;8260:7;-1:-1:-1;;;;;8236:31:4;:20;8248:7;8236:11;:20::i;:::-;-1:-1:-1;;;;;8236:31:4;;8156:111;8148:120;7954:321;-1:-1:-1;;;;7954:321:4:o;11897:1301::-;12064:4;-1:-1:-1;;;;;12037:31:4;:23;12052:7;12037:14;:23::i;:::-;-1:-1:-1;;;;;12037:31:4;;12016:115;;;;-1:-1:-1;;;12016:115:4;;;;;;;:::i;:::-;-1:-1:-1;;;;;12149:16:4;;12141:65;;;;-1:-1:-1;;;12141:65:4;;13324:2:16;12141:65:4;;;13306:21:16;13363:2;13343:18;;;13336:30;13402:34;13382:18;;;13375:62;-1:-1:-1;;;13453:18:16;;;13446:34;13497:19;;12141:65:4;13122:400:16;12141:65:4;12217:42;12238:4;12244:2;12248:7;12257:1;12217:20;:42::i;:::-;12399:4;-1:-1:-1;;;;;12372:31:4;:23;12387:7;12372:14;:23::i;:::-;-1:-1:-1;;;;;12372:31:4;;12351:115;;;;-1:-1:-1;;;12351:115:4;;;;;;;:::i;:::-;12535:24;;;;:15;:24;;;;;;;;12528:31;;-1:-1:-1;;;;;;12528:31:4;;;;;;-1:-1:-1;;;;;13003:15:4;;;;;;:9;:15;;;;;:20;;-1:-1:-1;;13003:20:4;;;13037:13;;;;;;;;;:18;;12528:31;13037:18;;;13075:16;;;:7;:16;;;;;;:21;;;;;;;;;;13112:27;;12551:7;;13112:27;;;4526:179:11;;;:::o;1939:106:14:-;1679:7;;;;1997:41;;;;-1:-1:-1;;;1997:41:14;;9386:2:16;1997:41:14;;;9368:21:16;9425:2;9405:18;;;9398:30;-1:-1:-1;;;9444:18:16;;;9437:50;9504:18;;1997:41:14;9184:344:16;1761:106:14;1679:7;;;;1830:9;1822:38;;;;-1:-1:-1;;;1822:38:14;;14083:2:16;1822:38:14;;;14065:21:16;14122:2;14102:18;;;14095:30;-1:-1:-1;;;14141:18:16;;;14134:46;14197:18;;1822:38:14;13881:340:16;8934:309:4;9058:18;9064:2;9068:7;9058:5;:18::i;:::-;9107:53;9138:1;9142:2;9146:7;9155:4;9107:22;:53::i;:::-;9086:150;;;;-1:-1:-1;;;9086:150:4;;;;;;;:::i;13617:307::-;13767:8;-1:-1:-1;;;;;13758:17:4;:5;-1:-1:-1;;;;;13758:17:4;;;13750:55;;;;-1:-1:-1;;;13750:55:4;;13729:2:16;13750:55:4;;;13711:21:16;13768:2;13748:18;;;13741:30;13807:27;13787:18;;;13780:55;13852:18;;13750:55:4;13527:349:16;13750:55:4;-1:-1:-1;;;;;13815:25:4;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;13815:46:4;;;;;;;;;;13876:41;;7889::16;;;13876::4;;7862:18:16;13876:41:4;;;;;;;13617:307;;;:::o;6804:339::-;6954:28;6964:4;6970:2;6974:7;6954:9;:28::i;:::-;7013:47;7036:4;7042:2;7046:7;7055:4;7013:22;:47::i;:::-;6992:144;;;;-1:-1:-1;;;6992:144:4;;;;;;;:::i;9889:890:12:-;9942:7;;-1:-1:-1;;;10017:15:12;;10013:99;;-1:-1:-1;;;10052:15:12;;;-1:-1:-1;10095:2:12;10085:12;10013:99;10138:6;10129:5;:15;10125:99;;10173:6;10164:15;;;-1:-1:-1;10207:2:12;10197:12;10125:99;10250:6;10241:5;:15;10237:99;;10285:6;10276:15;;;-1:-1:-1;10319:2:12;10309:12;10237:99;10362:5;10353;:14;10349:96;;10396:5;10387:14;;;-1:-1:-1;10429:1:12;10419:11;10349:96;10471:5;10462;:14;10458:96;;10505:5;10496:14;;;-1:-1:-1;10538:1:12;10528:11;10458:96;10580:5;10571;:14;10567:96;;10614:5;10605:14;;;-1:-1:-1;10647:1:12;10637:11;10567:96;10689:5;10680;:14;10676:64;;10724:1;10714:11;10766:6;9889:890;-1:-1:-1;;9889:890:12:o;5753:254:11:-;5943:56;5970:4;5976:2;5980:7;5989:9;5943:26;:56::i;9565:920:4:-;-1:-1:-1;;;;;9644:16:4;;9636:61;;;;-1:-1:-1;;;9636:61:4;;14838:2:16;9636:61:4;;;14820:21:16;;;14857:18;;;14850:30;14916:34;14896:18;;;14889:62;14968:18;;9636:61:4;14636:356:16;9636:61:4;7735:4;7344:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7344:16:4;7758:31;9707:58;;;;-1:-1:-1;;;9707:58:4;;12559:2:16;9707:58:4;;;12541:21:16;12598:2;12578:18;;;12571:30;12637;12617:18;;;12610:58;12685:18;;9707:58:4;12357:352:16;9707:58:4;9776:48;9805:1;9809:2;9813:7;9822:1;9776:20;:48::i;:::-;7735:4;7344:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7344:16:4;7758:31;9911:58;;;;-1:-1:-1;;;9911:58:4;;12559:2:16;9911:58:4;;;12541:21:16;12598:2;12578:18;;;12571:30;12637;12617:18;;;12610:58;12685:18;;9911:58:4;12357:352:16;9911:58:4;-1:-1:-1;;;;;10311:13:4;;;;;;:9;:13;;;;;;;;:18;;10328:1;10311:18;;;10350:16;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10350:21:4;;;;;10387:33;10358:7;;10311:13;;10387:33;;10311:13;;10387:33;4411:107:11;;:::o;14693:1003:4:-;14842:4;-1:-1:-1;;;;;14862:13:4;;1465:19:0;:23;14858:832:4;;14913:169;;-1:-1:-1;;;14913:169:4;;-1:-1:-1;;;;;14913:36:4;;;;;:169;;719:10:1;;15005:4:4;;15031:7;;15060:4;;14913:169;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14913:169:4;;;;;;;;-1:-1:-1;;14913:169:4;;;;;;;;;;;;:::i;:::-;;;14893:745;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;15261:13:4;;15257:367;;15303:106;;-1:-1:-1;;;15303:106:4;;;;;;;:::i;15257:367::-;15576:6;15570:13;15561:6;15557:2;15553:15;15546:38;14893:745;-1:-1:-1;;;;;;15144:51:4;-1:-1:-1;;;15144:51:4;;-1:-1:-1;15137:58:4;;14858:832;-1:-1:-1;15675:4:4;14693:1003;;;;;;:::o;2337:890:5:-;2508:61;2535:4;2541:2;2545:12;2559:9;2508:26;:61::i;:::-;2596:1;2584:9;:13;2580:219;;;2725:63;;-1:-1:-1;;;2725:63:5;;17925:2:16;2725:63:5;;;17907:21:16;17964:2;17944:18;;;17937:30;18003:34;17983:18;;;17976:62;-1:-1:-1;;;18054:18:16;;;18047:51;18115:19;;2725:63:5;17723:417:16;2580:219:5;2827:12;-1:-1:-1;;;;;2854:18:5;;2850:183;;2888:40;2920:7;4036:10;:17;;4009:24;;;;:15;:24;;;;;:44;;;4063:24;;;;;;;;;;;;3933:161;2888:40;2850:183;;;2957:2;-1:-1:-1;;;;;2949:10:5;:4;-1:-1:-1;;;;;2949:10:5;;2945:88;;2975:47;3008:4;3014:7;2975:32;:47::i;:::-;-1:-1:-1;;;;;3046:16:5;;3042:179;;3078:45;3115:7;3078:36;:45::i;:::-;3042:179;;;3150:4;-1:-1:-1;;;;;3144:10:5;:2;-1:-1:-1;;;;;3144:10:5;;3140:81;;3170:40;3198:2;3202:7;3170:27;:40::i;:::-;2498:729;2337:890;;;;:::o;16412:396:4:-;16596:1;16584:9;:13;16580:222;;;-1:-1:-1;;;;;16617:18:4;;;16613:85;;-1:-1:-1;;;;;16655:15:4;;;;;;:9;:15;;;;;:28;;16674:9;;16655:15;:28;;16674:9;;16655:28;:::i;:::-;;;;-1:-1:-1;;16613:85:4;-1:-1:-1;;;;;16715:16:4;;;16711:81;;-1:-1:-1;;;;;16751:13:4;;;;;;:9;:13;;;;;:26;;16768:9;;16751:13;:26;;16768:9;;16751:26;:::i;:::-;;;;-1:-1:-1;;16412:396:4;;;;:::o;4711:982:5:-;4985:22;5035:1;5010:22;5027:4;5010:16;:22::i;:::-;:26;;;;:::i;:::-;5046:18;5067:26;;;:17;:26;;;;;;4985:51;;-1:-1:-1;5197:28:5;;;5193:323;;-1:-1:-1;;;;;5263:18:5;;5241:19;5263:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5312:30;;;;;;:44;;;5428:30;;:17;:30;;;;;:43;;;5193:323;-1:-1:-1;5609:26:5;;;;:17;:26;;;;;;;;5602:33;;;-1:-1:-1;;;;;5652:18:5;;;;;:12;:18;;;;;:34;;;;;;;5645:41;4711:982::o;5981:1061::-;6255:10;:17;6230:22;;6255:21;;6275:1;;6255:21;:::i;:::-;6286:18;6307:24;;;:15;:24;;;;;;6675:10;:26;;6230:46;;-1:-1:-1;6307:24:5;;6230:46;;6675:26;;;;;;:::i;:::-;;;;;;;;;6653:48;;6737:11;6712:10;6723;6712:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6816:28;;;:15;:28;;;;;;;:41;;;6985:24;;;;;6978:31;7019:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6052:990;;;5981:1061;:::o;3521:217::-;3605:14;3622:20;3639:2;3622:16;:20::i;:::-;-1:-1:-1;;;;;3652:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3696:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3521:217:5:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:16;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:16;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:16;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:16;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:16:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:16;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:16;;3858:180;-1:-1:-1;3858:180:16:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:16;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:16:o;4669:1527::-;4893:3;4931:6;4925:13;4957:4;4970:51;5014:6;5009:3;5004:2;4996:6;4992:15;4970:51;:::i;:::-;5084:13;;5043:16;;;;5106:55;5084:13;5043:16;5128:15;;;5106:55;:::i;:::-;5250:13;;5183:20;;;5223:1;;5310;5332:18;;;;5385;;;;5412:93;;5490:4;5480:8;5476:19;5464:31;;5412:93;5553:2;5543:8;5540:16;5520:18;5517:40;5514:167;;;-1:-1:-1;;;5580:33:16;;5636:4;5633:1;5626:15;5666:4;5587:3;5654:17;5514:167;5697:18;5724:110;;;;5848:1;5843:328;;;;5690:481;;5724:110;-1:-1:-1;;5759:24:16;;5745:39;;5804:20;;;;-1:-1:-1;5724:110:16;;5843:328;18400:1;18393:14;;;18437:4;18424:18;;5938:1;5952:169;5966:8;5963:1;5960:15;5952:169;;;6048:14;;6033:13;;;6026:37;6091:16;;;;5983:10;;5952:169;;;5956:3;;6152:8;6145:5;6141:20;6134:27;;5690:481;-1:-1:-1;6187:3:16;;4669:1527;-1:-1:-1;;;;;;;;;;;4669:1527:16:o;6619:488::-;-1:-1:-1;;;;;6888:15:16;;;6870:34;;6940:15;;6935:2;6920:18;;6913:43;6987:2;6972:18;;6965:34;;;7035:3;7030:2;7015:18;;7008:31;;;6813:4;;7056:45;;7081:19;;7073:6;7056:45;:::i;:::-;7048:53;6619:488;-1:-1:-1;;;;;;6619:488:16:o;7112:632::-;7283:2;7335:21;;;7405:13;;7308:18;;;7427:22;;;7254:4;;7283:2;7506:15;;;;7480:2;7465:18;;;7254:4;7549:169;7563:6;7560:1;7557:13;7549:169;;;7624:13;;7612:26;;7693:15;;;;7658:12;;;;7585:1;7578:9;7549:169;;;-1:-1:-1;7735:3:16;;7112:632;-1:-1:-1;;;;;;7112:632:16:o;8148:219::-;8297:2;8286:9;8279:21;8260:4;8317:44;8357:2;8346:9;8342:18;8334:6;8317:44;:::i;9533:409::-;9735:2;9717:21;;;9774:2;9754:18;;;9747:30;9813:34;9808:2;9793:18;;9786:62;-1:-1:-1;;;9879:2:16;9864:18;;9857:43;9932:3;9917:19;;9533:409::o;10720:414::-;10922:2;10904:21;;;10961:2;10941:18;;;10934:30;11000:34;10995:2;10980:18;;10973:62;-1:-1:-1;;;11066:2:16;11051:18;;11044:48;11124:3;11109:19;;10720:414::o;11546:401::-;11748:2;11730:21;;;11787:2;11767:18;;;11760:30;11826:34;11821:2;11806:18;;11799:62;-1:-1:-1;;;11892:2:16;11877:18;;11870:35;11937:3;11922:19;;11546:401::o;11952:400::-;12154:2;12136:21;;;12193:2;12173:18;;;12166:30;12232:34;12227:2;12212:18;;12205:62;-1:-1:-1;;;12298:2:16;12283:18;;12276:34;12342:3;12327:19;;11952:400::o;18453:128::-;18493:3;18524:1;18520:6;18517:1;18514:13;18511:39;;;18530:18;;:::i;:::-;-1:-1:-1;18566:9:16;;18453:128::o;18586:168::-;18626:7;18692:1;18688;18684:6;18680:14;18677:1;18674:21;18669:1;18662:9;18655:17;18651:45;18648:71;;;18699:18;;:::i;:::-;-1:-1:-1;18739:9:16;;18586:168::o;18759:125::-;18799:4;18827:1;18824;18821:8;18818:34;;;18832:18;;:::i;:::-;-1:-1:-1;18869:9:16;;18759:125::o;18889:258::-;18961:1;18971:113;18985:6;18982:1;18979:13;18971:113;;;19061:11;;;19055:18;19042:11;;;19035:39;19007:2;19000:10;18971:113;;;19102:6;19099:1;19096:13;19093:48;;;-1:-1:-1;;19137:1:16;19119:16;;19112:27;18889:258::o;19152:380::-;19231:1;19227:12;;;;19274;;;19295:61;;19349:4;19341:6;19337:17;19327:27;;19295:61;19402:2;19394:6;19391:14;19371:18;19368:38;19365:161;;;19448:10;19443:3;19439:20;19436:1;19429:31;19483:4;19480:1;19473:15;19511:4;19508:1;19501:15;19365:161;;19152:380;;;:::o;19537:135::-;19576:3;-1:-1:-1;;19597:17:16;;19594:43;;;19617:18;;:::i;:::-;-1:-1:-1;19664:1:16;19653:13;;19537:135::o;19677:127::-;19738:10;19733:3;19729:20;19726:1;19719:31;19769:4;19766:1;19759:15;19793:4;19790:1;19783:15;19941:127;20002:10;19997:3;19993:20;19990:1;19983:31;20033:4;20030:1;20023:15;20057:4;20054:1;20047:15;20073:127;20134:10;20129:3;20125:20;20122:1;20115:31;20165:4;20162:1;20155:15;20189:4;20186:1;20179:15;20205:127;20266:10;20261:3;20257:20;20254:1;20247:31;20297:4;20294:1;20287:15;20321:4;20318:1;20311:15;20337:131;-1:-1:-1;;;;;;20411:32:16;;20401:43;;20391:71;;20458:1;20455;20448:12

Swarm Source

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