ETH Price: $3,122.51 (+0.79%)
Gas: 6 Gwei

Token

Fury of the Fur (FOTF)
 

Overview

Max Total Supply

9,671 FOTF

Holders

1,932

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
icehawk.eth
Balance
1 FOTF
0x32b11BC488086890554A10C6Dd08f73109930570
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

A story-driven collection fueled with art utility and guided by 9671 revolting FuryTeds.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Fury_of_the_Fur

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;

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

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

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol
pragma solidity ^0.8.0;
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}
pragma solidity >=0.7.0 <0.9.0;

contract Fury_of_the_Fur is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string baseURI;
  string public baseExtension = ".json";
  uint256 public cost = 0.07 ether;
  uint256 public whiteListCost = 0.05 ether;
  uint256 public maxSupply = 9671;
  uint256 public maxMintAmount = 7;
  uint256 public maxMintAmountForWhiteList = 2;
  uint256 private giveAways = 100;
  bool public paused = true;
  bool public paused_whiteList = true;
  bool public revealed = false;
  string public notRevealedUri;
  bytes32 public merkleRoot = 0x8d095247fc680944bf0266974322c9065c9d26c529d8127f212163024609d086;
  mapping(address => bool) public whitelistClaimed;
//   mapping(int => bool) private indexMinted;
//   mapping(uint => int) private NFTsStatus;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
    // for (uint256 i = 0; i < 200; i++) {
    //     uint randomNumber =  uint(keccak256(abi.encodePacked(block.timestamp,block.difficulty,  
    //     msg.sender))) % 9671; 
    //     //uint randomNumber = Math.floor(Math.random() * 9671);
    //     if(NFTsStatus[randomNumber]==0)
    //     {
    //         if(randomNumber == 271 || randomNumber == 322 || randomNumber == 494 || randomNumber == 502 || randomNumber == 522 || randomNumber == 562 || randomNumber == 602 || randomNumber == 640 || randomNumber == 662 || randomNumber == 720 || randomNumber == 746 || randomNumber == 943 || randomNumber == 1133 || randomNumber == 1136 || randomNumber == 1408 || randomNumber == 1493 || randomNumber == 1597 || randomNumber == 2185 || randomNumber == 6216 || randomNumber == 6528 || randomNumber == 6928 || randomNumber == 6937 || randomNumber == 7016 || randomNumber == 7298 || randomNumber == 7704 || randomNumber == 8685 || randomNumber == 8814 || randomNumber == 8838 || randomNumber == 8861 || randomNumber == 8905 || randomNumber == 8921 || randomNumber == 9623 || randomNumber == 9658 || randomNumber == 9671 || randomNumber == 2510 || randomNumber == 4245 || randomNumber == 492 || randomNumber == 2813)
    //         {
    //             i--;
    //         }
    //         else
    //         {
    //             NFTsStatus[randomNumber]=2;
    //         }  
    //     }
    //     else
    //     {
    //         i--;
    //     }
    // }
    // for (uint256 randomNumber = 1; randomNumber <= 9671; randomNumber++) {
    //     if(randomNumber == 271 || randomNumber == 322 || randomNumber == 494 || randomNumber == 502 || randomNumber == 522 || randomNumber == 562 || randomNumber == 602 || randomNumber == 640 || randomNumber == 662 || randomNumber == 720 || randomNumber == 746 || randomNumber == 943 || randomNumber == 1133 || randomNumber == 1136 || randomNumber == 1408 || randomNumber == 1493 || randomNumber == 1597 || randomNumber == 2185 || randomNumber == 6216 || randomNumber == 6528 || randomNumber == 6928 || randomNumber == 6937 || randomNumber == 7016 || randomNumber == 7298 || randomNumber == 7704 || randomNumber == 8685 || randomNumber == 8814 || randomNumber == 8838 || randomNumber == 8861 || randomNumber == 8905 || randomNumber == 8921 || randomNumber == 9623 || randomNumber == 9658 || randomNumber == 9671 || randomNumber == 2510 || randomNumber == 4245 || randomNumber == 492 || randomNumber == 2813)
    //     {
    //         NFTsStatus[randomNumber]=2;
    //     }
    //     if(NFTsStatus[randomNumber]!=2)
    //     {
    //         NFTsStatus[randomNumber]=0;
    //     }
    // }
  }

  // internal
  function _baseURI() internal view virtual override returns (string memory) {
    return baseURI;
  }
    function whitelistMint(bytes32[] calldata _merkleProof,uint256 _mintAmount) public payable
    {
        require(!paused_whiteList);
        require(!whitelistClaimed[msg.sender],"Address has already claimed");

        bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

        require(MerkleProof.verify(_merkleProof,merkleRoot,leaf), "Invalid Proof");

        whitelistClaimed[msg.sender] = true;
        uint256 supply = totalSupply();
        require(_mintAmount > 0);
        require(_mintAmount <= maxMintAmountForWhiteList);
        require(supply + _mintAmount <= maxSupply);
        if (msg.sender == owner()) {
            _mintAmount = giveAways;
        }
        // if (msg.sender == owner()) {
        //     uint256 i = 1;
        //     while(NFTsStatus[i]!=2)
        //     {
        //         i++;
        //     }
        //     if(tokenByIndex(i)!=0)
        //     {
        //         NFTsStatus[i]=3;
        //     }
        //     _safeMint(msg.sender, supply + i);
        //     for (uint256 i = 1; i <= _mintAmount; i++) {
        //         for (uint256 j = 1; j <= 9672; j++) {

        //         }
            
        //     }
        // }
        if (msg.sender != owner()) {
        require(msg.value >= whiteListCost * _mintAmount);
        }
        for (uint256 i = 1; i <= _mintAmount; i++) {
        _safeMint(msg.sender, supply + i);
        }

        
    }
  // public
  function mint(uint256 _mintAmount) public payable {
    uint256 supply = totalSupply();
    require(!paused);
    require(_mintAmount > 0);
    require(supply + _mintAmount <= maxSupply);

    if (msg.sender != owner()) {
      require(msg.value >= cost * _mintAmount);
      require(_mintAmount <= maxMintAmount);
    }
    for (uint256 i = 1; i <= _mintAmount; i++) {
      _safeMint(msg.sender, supply + i);
    }
  }

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

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  // public
  function reveal() public onlyOwner() {
      revealed = true;
  }
  
  function setCost(uint256 _newCost) public onlyOwner() {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner() {
    maxMintAmount = _newmaxMintAmount;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

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

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }

  function pause_whiteList(bool _state) public onlyOwner {
    paused_whiteList = _state;
  }
  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
 
  function withdraw() public payable onlyOwner {
    (bool success, ) = payable(msg.sender).call{value: address(this).balance}("");
    require(success);
  }
}

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":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountForWhiteList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause_whiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused_whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c91906200023d565b5066f8b0a10e470000600d5566b1a2bc2ec50000600e556125c7600f556007601055600260115560646012556013805462ffffff19166101011790557f8d095247fc680944bf0266974322c9065c9d26c529d8127f212163024609d0866015553480156200009557600080fd5b5060405162002d6c38038062002d6c833981016040819052620000b8916200039a565b835184908490620000d19060009060208501906200023d565b508051620000e79060019060208401906200023d565b50505062000104620000fe6200012460201b60201c565b62000128565b6200010f826200017a565b6200011a81620001e2565b50505050620004a6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001c95760405162461bcd60e51b8152602060048201819052602482015260008051602062002d4c83398151915260448201526064015b60405180910390fd5b8051620001de90600b9060208401906200023d565b5050565b600a546001600160a01b031633146200022d5760405162461bcd60e51b8152602060048201819052602482015260008051602062002d4c8339815191526044820152606401620001c0565b8051620001de9060149060208401905b8280546200024b9062000453565b90600052602060002090601f0160209004810192826200026f5760008555620002ba565b82601f106200028a57805160ff1916838001178555620002ba565b82800160010185558215620002ba579182015b82811115620002ba5782518255916020019190600101906200029d565b50620002c8929150620002cc565b5090565b5b80821115620002c85760008155600101620002cd565b600082601f830112620002f557600080fd5b81516001600160401b038082111562000312576200031262000490565b604051601f8301601f19908116603f011681019082821181831017156200033d576200033d62000490565b816040528381526020925086838588010111156200035a57600080fd5b600091505b838210156200037e57858201830151818301840152908201906200035f565b83821115620003905760008385830101525b9695505050505050565b60008060008060808587031215620003b157600080fd5b84516001600160401b0380821115620003c957600080fd5b620003d788838901620002e3565b95506020870151915080821115620003ee57600080fd5b620003fc88838901620002e3565b945060408701519150808211156200041357600080fd5b6200042188838901620002e3565b935060608701519150808211156200043857600080fd5b506200044787828801620002e3565b91505092959194509250565b600181811c908216806200046857607f821691505b602082108114156200048a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61289680620004b66000396000f3fe60806040526004361061025c5760003560e01c80636352211e11610144578063a475b5dd116100b6578063d7e484201161007a578063d7e4842014610694578063da3ef23f146106b4578063db4bec44146106d4578063e985e9c514610704578063f2c4ce1e1461074d578063f2fde38b1461076d57600080fd5b8063a475b5dd14610614578063b88d4fde14610629578063c668286214610649578063c87b56dd1461065e578063d5abeb011461067e57600080fd5b80638da5cb5b116101085780638da5cb5b146105825780639257e044146105a057806395d89b41146105b6578063a0712d68146105cb578063a22cb465146105de578063a264d27d146105fe57600080fd5b80636352211e146104ee57806369f2b0be1461050e57806370a082311461052d578063715018a61461054d5780637f00c7a61461056257600080fd5b80632904e6d9116101dd578063438b6300116101a1578063438b63001461042757806344a0d68a146104545780634f6ccce714610474578063518302271461049457806355f804b3146104b45780635c975abb146104d457600080fd5b80632904e6d9146103b65780632eb4a7ab146103c95780632f745c59146103df5780633ccfd60b146103ff57806342842e0e1461040757600080fd5b8063095ea7b311610224578063095ea7b31461032757806313faede61461034757806318160ddd1461036b578063239c70ae1461038057806323b872dd1461039657600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063081c8c4414610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046123d0565b61078d565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b13660046123b5565b6107b8565b005b3480156102c457600080fd5b506102cd6107fe565b60405161028d91906125f9565b3480156102e657600080fd5b506102fa6102f5366004612453565b610890565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102cd610925565b34801561033357600080fd5b506102b6610342366004612310565b6109b3565b34801561035357600080fd5b5061035d600d5481565b60405190815260200161028d565b34801561037757600080fd5b5060085461035d565b34801561038c57600080fd5b5061035d60105481565b3480156103a257600080fd5b506102b66103b136600461222e565b610ac9565b6102b66103c436600461233a565b610afa565b3480156103d557600080fd5b5061035d60155481565b3480156103eb57600080fd5b5061035d6103fa366004612310565b610cfa565b6102b6610d90565b34801561041357600080fd5b506102b661042236600461222e565b610e12565b34801561043357600080fd5b506104476104423660046121e0565b610e2d565b60405161028d91906125b5565b34801561046057600080fd5b506102b661046f366004612453565b610ecf565b34801561048057600080fd5b5061035d61048f366004612453565b610efe565b3480156104a057600080fd5b506013546102819062010000900460ff1681565b3480156104c057600080fd5b506102b66104cf36600461240a565b610f91565b3480156104e057600080fd5b506013546102819060ff1681565b3480156104fa57600080fd5b506102fa610509366004612453565b610fd2565b34801561051a57600080fd5b5060135461028190610100900460ff1681565b34801561053957600080fd5b5061035d6105483660046121e0565b611049565b34801561055957600080fd5b506102b66110d0565b34801561056e57600080fd5b506102b661057d366004612453565b611106565b34801561058e57600080fd5b50600a546001600160a01b03166102fa565b3480156105ac57600080fd5b5061035d600e5481565b3480156105c257600080fd5b506102cd611135565b6102b66105d9366004612453565b611144565b3480156105ea57600080fd5b506102b66105f93660046122e6565b6111ec565b34801561060a57600080fd5b5061035d60115481565b34801561062057600080fd5b506102b66112b1565b34801561063557600080fd5b506102b661064436600461226a565b6112ee565b34801561065557600080fd5b506102cd611326565b34801561066a57600080fd5b506102cd610679366004612453565b611333565b34801561068a57600080fd5b5061035d600f5481565b3480156106a057600080fd5b506102b66106af3660046123b5565b6114b3565b3480156106c057600080fd5b506102b66106cf36600461240a565b6114f7565b3480156106e057600080fd5b506102816106ef3660046121e0565b60166020526000908152604090205460ff1681565b34801561071057600080fd5b5061028161071f3660046121fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075957600080fd5b506102b661076836600461240a565b611534565b34801561077957600080fd5b506102b66107883660046121e0565b611571565b60006001600160e01b0319821663780e9d6360e01b14806107b257506107b282611609565b92915050565b600a546001600160a01b031633146107eb5760405162461bcd60e51b81526004016107e29061265e565b60405180910390fd5b6013805460ff1916911515919091179055565b60606000805461080d90612772565b80601f016020809104026020016040519081016040528092919081815260200182805461083990612772565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e2565b506000908152600460205260409020546001600160a01b031690565b6014805461093290612772565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90612772565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b505050505081565b60006109be82610fd2565b9050806001600160a01b0316836001600160a01b03161415610a2c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e2565b336001600160a01b0382161480610a485750610a48813361071f565b610aba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e2565b610ac48383611659565b505050565b610ad333826116c7565b610aef5760405162461bcd60e51b81526004016107e290612693565b610ac48383836117be565b601354610100900460ff1615610b0f57600080fd5b3360009081526016602052604090205460ff1615610b6f5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732068617320616c726561647920636c61696d6564000000000060448201526064016107e2565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610be9848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015549150849050611969565b610c255760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210283937b7b360991b60448201526064016107e2565b336000908152601660205260408120805460ff19166001179055610c4860085490565b905060008311610c5757600080fd5b601154831115610c6657600080fd5b600f54610c7384836126e4565b1115610c7e57600080fd5b600a546001600160a01b0316331415610c975760125492505b600a546001600160a01b03163314610cc35782600e54610cb79190612710565b341015610cc357600080fd5b60015b838111610cf257610ce033610cdb83856126e4565b61197f565b80610cea816127ad565b915050610cc6565b505050505050565b6000610d0583611049565b8210610d675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107e2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dba5760405162461bcd60e51b81526004016107e29061265e565b604051600090339047908381818185875af1925050503d8060008114610dfc576040519150601f19603f3d011682016040523d82523d6000602084013e610e01565b606091505b5050905080610e0f57600080fd5b50565b610ac4838383604051806020016040528060008152506112ee565b60606000610e3a83611049565b905060008167ffffffffffffffff811115610e5757610e57612834565b604051908082528060200260200182016040528015610e80578160200160208202803683370190505b50905060005b82811015610ec757610e988582610cfa565b828281518110610eaa57610eaa61281e565b602090810291909101015280610ebf816127ad565b915050610e86565b509392505050565b600a546001600160a01b03163314610ef95760405162461bcd60e51b81526004016107e29061265e565b600d55565b6000610f0960085490565b8210610f6c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e2565b60088281548110610f7f57610f7f61281e565b90600052602060002001549050919050565b600a546001600160a01b03163314610fbb5760405162461bcd60e51b81526004016107e29061265e565b8051610fce90600b9060208401906120a5565b5050565b6000818152600260205260408120546001600160a01b0316806107b25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e2565b60006001600160a01b0382166110b45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110fa5760405162461bcd60e51b81526004016107e29061265e565b6111046000611999565b565b600a546001600160a01b031633146111305760405162461bcd60e51b81526004016107e29061265e565b601055565b60606001805461080d90612772565b600061114f60085490565b60135490915060ff161561116257600080fd5b6000821161116f57600080fd5b600f5461117c83836126e4565b111561118757600080fd5b600a546001600160a01b031633146111c25781600d546111a79190612710565b3410156111b357600080fd5b6010548211156111c257600080fd5b60015b828111610ac4576111da33610cdb83856126e4565b806111e4816127ad565b9150506111c5565b6001600160a01b0382163314156112455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112db5760405162461bcd60e51b81526004016107e29061265e565b6013805462ff0000191662010000179055565b6112f833836116c7565b6113145760405162461bcd60e51b81526004016107e290612693565b611320848484846119eb565b50505050565b600c805461093290612772565b6000818152600260205260409020546060906001600160a01b03166113b25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e2565b60135462010000900460ff1661145457601480546113cf90612772565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90612772565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b50505050509050919050565b600061145e611a1e565b9050600081511161147e57604051806020016040528060008152506114ac565b8061148884611a2d565b600c60405160200161149c93929190612498565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114dd5760405162461bcd60e51b81526004016107e29061265e565b601380549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146115215760405162461bcd60e51b81526004016107e29061265e565b8051610fce90600c9060208401906120a5565b600a546001600160a01b0316331461155e5760405162461bcd60e51b81526004016107e29061265e565b8051610fce9060149060208401906120a5565b600a546001600160a01b0316331461159b5760405162461bcd60e51b81526004016107e29061265e565b6001600160a01b0381166116005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e2565b610e0f81611999565b60006001600160e01b031982166380ac58cd60e01b148061163a57506001600160e01b03198216635b5e139f60e01b145b806107b257506301ffc9a760e01b6001600160e01b03198316146107b2565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168e82610fd2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e2565b600061174b83610fd2565b9050806001600160a01b0316846001600160a01b031614806117865750836001600160a01b031661177b84610890565b6001600160a01b0316145b806117b657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117d182610fd2565b6001600160a01b0316146118395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e2565b6001600160a01b03821661189b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e2565b6118a6838383611b2b565b6118b1600082611659565b6001600160a01b03831660009081526003602052604081208054600192906118da90849061272f565b90915550506001600160a01b03821660009081526003602052604081208054600192906119089084906126e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826119768584611be3565b14949350505050565b610fce828260405180602001604052806000815250611c87565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119f68484846117be565b611a0284848484611cba565b6113205760405162461bcd60e51b81526004016107e29061260c565b6060600b805461080d90612772565b606081611a515750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a7b5780611a65816127ad565b9150611a749050600a836126fc565b9150611a55565b60008167ffffffffffffffff811115611a9657611a96612834565b6040519080825280601f01601f191660200182016040528015611ac0576020820181803683370190505b5090505b84156117b657611ad560018361272f565b9150611ae2600a866127c8565b611aed9060306126e4565b60f81b818381518110611b0257611b0261281e565b60200101906001600160f81b031916908160001a905350611b24600a866126fc565b9450611ac4565b6001600160a01b038316611b8657611b8181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ba9565b816001600160a01b0316836001600160a01b031614611ba957611ba98382611dc7565b6001600160a01b038216611bc057610ac481611e64565b826001600160a01b0316826001600160a01b031614610ac457610ac48282611f13565b600081815b8451811015610ec7576000858281518110611c0557611c0561281e565b60200260200101519050808311611c47576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611c74565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611c7f816127ad565b915050611be8565b611c918383611f57565b611c9e6000848484611cba565b610ac45760405162461bcd60e51b81526004016107e29061260c565b60006001600160a01b0384163b15611dbc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cfe903390899088908890600401612578565b602060405180830381600087803b158015611d1857600080fd5b505af1925050508015611d48575060408051601f3d908101601f19168201909252611d45918101906123ed565b60015b611da2573d808015611d76576040519150601f19603f3d011682016040523d82523d6000602084013e611d7b565b606091505b508051611d9a5760405162461bcd60e51b81526004016107e29061260c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117b6565b506001949350505050565b60006001611dd484611049565b611dde919061272f565b600083815260076020526040902054909150808214611e31576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e769060019061272f565b60008381526009602052604081205460088054939450909284908110611e9e57611e9e61281e565b906000526020600020015490508060088381548110611ebf57611ebf61281e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ef757611ef7612808565b6001900381819060005260206000200160009055905550505050565b6000611f1e83611049565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e2565b6000818152600260205260409020546001600160a01b0316156120125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e2565b61201e60008383611b2b565b6001600160a01b03821660009081526003602052604081208054600192906120479084906126e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120b190612772565b90600052602060002090601f0160209004810192826120d35760008555612119565b82601f106120ec57805160ff1916838001178555612119565b82800160010185558215612119579182015b828111156121195782518255916020019190600101906120fe565b50612125929150612129565b5090565b5b80821115612125576000815560010161212a565b600067ffffffffffffffff8084111561215957612159612834565b604051601f8501601f19908116603f0116810190828211818310171561218157612181612834565b8160405280935085815286868601111561219a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121cb57600080fd5b919050565b803580151581146121cb57600080fd5b6000602082840312156121f257600080fd5b6114ac826121b4565b6000806040838503121561220e57600080fd5b612217836121b4565b9150612225602084016121b4565b90509250929050565b60008060006060848603121561224357600080fd5b61224c846121b4565b925061225a602085016121b4565b9150604084013590509250925092565b6000806000806080858703121561228057600080fd5b612289856121b4565b9350612297602086016121b4565b925060408501359150606085013567ffffffffffffffff8111156122ba57600080fd5b8501601f810187136122cb57600080fd5b6122da8782356020840161213e565b91505092959194509250565b600080604083850312156122f957600080fd5b612302836121b4565b9150612225602084016121d0565b6000806040838503121561232357600080fd5b61232c836121b4565b946020939093013593505050565b60008060006040848603121561234f57600080fd5b833567ffffffffffffffff8082111561236757600080fd5b818601915086601f83011261237b57600080fd5b81358181111561238a57600080fd5b8760208260051b850101111561239f57600080fd5b6020928301989097509590910135949350505050565b6000602082840312156123c757600080fd5b6114ac826121d0565b6000602082840312156123e257600080fd5b81356114ac8161284a565b6000602082840312156123ff57600080fd5b81516114ac8161284a565b60006020828403121561241c57600080fd5b813567ffffffffffffffff81111561243357600080fd5b8201601f8101841361244457600080fd5b6117b68482356020840161213e565b60006020828403121561246557600080fd5b5035919050565b60008151808452612484816020860160208601612746565b601f01601f19169290920160200192915050565b6000845160206124ab8285838a01612746565b8184019150670233ab93caa32b2160c51b8252600886516124d181838601858b01612746565b8654930192600090600181811c90808316806124ee57607f831692505b86831081141561250c57634e487b7160e01b85526022600452602485fd5b808015612520576001811461253557612566565b60ff1985168988015283890187019550612566565b60008c81526020902060005b8581101561255c5781548b82018a0152908401908901612541565b505086848a010195505b50939c9b505050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125ab9083018461246c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125ed578351835292840192918401916001016125d1565b50909695505050505050565b6020815260006114ac602083018461246c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156126f7576126f76127dc565b500190565b60008261270b5761270b6127f2565b500490565b600081600019048311821515161561272a5761272a6127dc565b500290565b600082821015612741576127416127dc565b500390565b60005b83811015612761578181015183820152602001612749565b838111156113205750506000910152565b600181811c9082168061278657607f821691505b602082108114156127a757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127c1576127c16127dc565b5060010190565b6000826127d7576127d76127f2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0f57600080fdfea2646970667358221220e4b7ab82eddc5ad35ce402c157fd86019822297935894509ead83251702bdace64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f46757279206f66207468652046757200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004464f5446000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51434831614b374676334878783737566f32796567366d43644c4845613842504169796a57697435566147422f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d656668516b6e624670786f6334776334767662416b6b774141325a7675586631427737425161357a767543442f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061025c5760003560e01c80636352211e11610144578063a475b5dd116100b6578063d7e484201161007a578063d7e4842014610694578063da3ef23f146106b4578063db4bec44146106d4578063e985e9c514610704578063f2c4ce1e1461074d578063f2fde38b1461076d57600080fd5b8063a475b5dd14610614578063b88d4fde14610629578063c668286214610649578063c87b56dd1461065e578063d5abeb011461067e57600080fd5b80638da5cb5b116101085780638da5cb5b146105825780639257e044146105a057806395d89b41146105b6578063a0712d68146105cb578063a22cb465146105de578063a264d27d146105fe57600080fd5b80636352211e146104ee57806369f2b0be1461050e57806370a082311461052d578063715018a61461054d5780637f00c7a61461056257600080fd5b80632904e6d9116101dd578063438b6300116101a1578063438b63001461042757806344a0d68a146104545780634f6ccce714610474578063518302271461049457806355f804b3146104b45780635c975abb146104d457600080fd5b80632904e6d9146103b65780632eb4a7ab146103c95780632f745c59146103df5780633ccfd60b146103ff57806342842e0e1461040757600080fd5b8063095ea7b311610224578063095ea7b31461032757806313faede61461034757806318160ddd1461036b578063239c70ae1461038057806323b872dd1461039657600080fd5b806301ffc9a71461026157806302329a291461029657806306fdde03146102b8578063081812fc146102da578063081c8c4414610312575b600080fd5b34801561026d57600080fd5b5061028161027c3660046123d0565b61078d565b60405190151581526020015b60405180910390f35b3480156102a257600080fd5b506102b66102b13660046123b5565b6107b8565b005b3480156102c457600080fd5b506102cd6107fe565b60405161028d91906125f9565b3480156102e657600080fd5b506102fa6102f5366004612453565b610890565b6040516001600160a01b03909116815260200161028d565b34801561031e57600080fd5b506102cd610925565b34801561033357600080fd5b506102b6610342366004612310565b6109b3565b34801561035357600080fd5b5061035d600d5481565b60405190815260200161028d565b34801561037757600080fd5b5060085461035d565b34801561038c57600080fd5b5061035d60105481565b3480156103a257600080fd5b506102b66103b136600461222e565b610ac9565b6102b66103c436600461233a565b610afa565b3480156103d557600080fd5b5061035d60155481565b3480156103eb57600080fd5b5061035d6103fa366004612310565b610cfa565b6102b6610d90565b34801561041357600080fd5b506102b661042236600461222e565b610e12565b34801561043357600080fd5b506104476104423660046121e0565b610e2d565b60405161028d91906125b5565b34801561046057600080fd5b506102b661046f366004612453565b610ecf565b34801561048057600080fd5b5061035d61048f366004612453565b610efe565b3480156104a057600080fd5b506013546102819062010000900460ff1681565b3480156104c057600080fd5b506102b66104cf36600461240a565b610f91565b3480156104e057600080fd5b506013546102819060ff1681565b3480156104fa57600080fd5b506102fa610509366004612453565b610fd2565b34801561051a57600080fd5b5060135461028190610100900460ff1681565b34801561053957600080fd5b5061035d6105483660046121e0565b611049565b34801561055957600080fd5b506102b66110d0565b34801561056e57600080fd5b506102b661057d366004612453565b611106565b34801561058e57600080fd5b50600a546001600160a01b03166102fa565b3480156105ac57600080fd5b5061035d600e5481565b3480156105c257600080fd5b506102cd611135565b6102b66105d9366004612453565b611144565b3480156105ea57600080fd5b506102b66105f93660046122e6565b6111ec565b34801561060a57600080fd5b5061035d60115481565b34801561062057600080fd5b506102b66112b1565b34801561063557600080fd5b506102b661064436600461226a565b6112ee565b34801561065557600080fd5b506102cd611326565b34801561066a57600080fd5b506102cd610679366004612453565b611333565b34801561068a57600080fd5b5061035d600f5481565b3480156106a057600080fd5b506102b66106af3660046123b5565b6114b3565b3480156106c057600080fd5b506102b66106cf36600461240a565b6114f7565b3480156106e057600080fd5b506102816106ef3660046121e0565b60166020526000908152604090205460ff1681565b34801561071057600080fd5b5061028161071f3660046121fb565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075957600080fd5b506102b661076836600461240a565b611534565b34801561077957600080fd5b506102b66107883660046121e0565b611571565b60006001600160e01b0319821663780e9d6360e01b14806107b257506107b282611609565b92915050565b600a546001600160a01b031633146107eb5760405162461bcd60e51b81526004016107e29061265e565b60405180910390fd5b6013805460ff1916911515919091179055565b60606000805461080d90612772565b80601f016020809104026020016040519081016040528092919081815260200182805461083990612772565b80156108865780601f1061085b57610100808354040283529160200191610886565b820191906000526020600020905b81548152906001019060200180831161086957829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166109095760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e2565b506000908152600460205260409020546001600160a01b031690565b6014805461093290612772565b80601f016020809104026020016040519081016040528092919081815260200182805461095e90612772565b80156109ab5780601f10610980576101008083540402835291602001916109ab565b820191906000526020600020905b81548152906001019060200180831161098e57829003601f168201915b505050505081565b60006109be82610fd2565b9050806001600160a01b0316836001600160a01b03161415610a2c5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016107e2565b336001600160a01b0382161480610a485750610a48813361071f565b610aba5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016107e2565b610ac48383611659565b505050565b610ad333826116c7565b610aef5760405162461bcd60e51b81526004016107e290612693565b610ac48383836117be565b601354610100900460ff1615610b0f57600080fd5b3360009081526016602052604090205460ff1615610b6f5760405162461bcd60e51b815260206004820152601b60248201527f416464726573732068617320616c726561647920636c61696d6564000000000060448201526064016107e2565b6040516bffffffffffffffffffffffff193360601b166020820152600090603401604051602081830303815290604052805190602001209050610be9848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015549150849050611969565b610c255760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210283937b7b360991b60448201526064016107e2565b336000908152601660205260408120805460ff19166001179055610c4860085490565b905060008311610c5757600080fd5b601154831115610c6657600080fd5b600f54610c7384836126e4565b1115610c7e57600080fd5b600a546001600160a01b0316331415610c975760125492505b600a546001600160a01b03163314610cc35782600e54610cb79190612710565b341015610cc357600080fd5b60015b838111610cf257610ce033610cdb83856126e4565b61197f565b80610cea816127ad565b915050610cc6565b505050505050565b6000610d0583611049565b8210610d675760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016107e2565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610dba5760405162461bcd60e51b81526004016107e29061265e565b604051600090339047908381818185875af1925050503d8060008114610dfc576040519150601f19603f3d011682016040523d82523d6000602084013e610e01565b606091505b5050905080610e0f57600080fd5b50565b610ac4838383604051806020016040528060008152506112ee565b60606000610e3a83611049565b905060008167ffffffffffffffff811115610e5757610e57612834565b604051908082528060200260200182016040528015610e80578160200160208202803683370190505b50905060005b82811015610ec757610e988582610cfa565b828281518110610eaa57610eaa61281e565b602090810291909101015280610ebf816127ad565b915050610e86565b509392505050565b600a546001600160a01b03163314610ef95760405162461bcd60e51b81526004016107e29061265e565b600d55565b6000610f0960085490565b8210610f6c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016107e2565b60088281548110610f7f57610f7f61281e565b90600052602060002001549050919050565b600a546001600160a01b03163314610fbb5760405162461bcd60e51b81526004016107e29061265e565b8051610fce90600b9060208401906120a5565b5050565b6000818152600260205260408120546001600160a01b0316806107b25760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016107e2565b60006001600160a01b0382166110b45760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016107e2565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146110fa5760405162461bcd60e51b81526004016107e29061265e565b6111046000611999565b565b600a546001600160a01b031633146111305760405162461bcd60e51b81526004016107e29061265e565b601055565b60606001805461080d90612772565b600061114f60085490565b60135490915060ff161561116257600080fd5b6000821161116f57600080fd5b600f5461117c83836126e4565b111561118757600080fd5b600a546001600160a01b031633146111c25781600d546111a79190612710565b3410156111b357600080fd5b6010548211156111c257600080fd5b60015b828111610ac4576111da33610cdb83856126e4565b806111e4816127ad565b9150506111c5565b6001600160a01b0382163314156112455760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016107e2565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b031633146112db5760405162461bcd60e51b81526004016107e29061265e565b6013805462ff0000191662010000179055565b6112f833836116c7565b6113145760405162461bcd60e51b81526004016107e290612693565b611320848484846119eb565b50505050565b600c805461093290612772565b6000818152600260205260409020546060906001600160a01b03166113b25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107e2565b60135462010000900460ff1661145457601480546113cf90612772565b80601f01602080910402602001604051908101604052809291908181526020018280546113fb90612772565b80156114485780601f1061141d57610100808354040283529160200191611448565b820191906000526020600020905b81548152906001019060200180831161142b57829003601f168201915b50505050509050919050565b600061145e611a1e565b9050600081511161147e57604051806020016040528060008152506114ac565b8061148884611a2d565b600c60405160200161149c93929190612498565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146114dd5760405162461bcd60e51b81526004016107e29061265e565b601380549115156101000261ff0019909216919091179055565b600a546001600160a01b031633146115215760405162461bcd60e51b81526004016107e29061265e565b8051610fce90600c9060208401906120a5565b600a546001600160a01b0316331461155e5760405162461bcd60e51b81526004016107e29061265e565b8051610fce9060149060208401906120a5565b600a546001600160a01b0316331461159b5760405162461bcd60e51b81526004016107e29061265e565b6001600160a01b0381166116005760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107e2565b610e0f81611999565b60006001600160e01b031982166380ac58cd60e01b148061163a57506001600160e01b03198216635b5e139f60e01b145b806107b257506301ffc9a760e01b6001600160e01b03198316146107b2565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061168e82610fd2565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166117405760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016107e2565b600061174b83610fd2565b9050806001600160a01b0316846001600160a01b031614806117865750836001600160a01b031661177b84610890565b6001600160a01b0316145b806117b657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b03166117d182610fd2565b6001600160a01b0316146118395760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016107e2565b6001600160a01b03821661189b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016107e2565b6118a6838383611b2b565b6118b1600082611659565b6001600160a01b03831660009081526003602052604081208054600192906118da90849061272f565b90915550506001600160a01b03821660009081526003602052604081208054600192906119089084906126e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000826119768584611be3565b14949350505050565b610fce828260405180602001604052806000815250611c87565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6119f68484846117be565b611a0284848484611cba565b6113205760405162461bcd60e51b81526004016107e29061260c565b6060600b805461080d90612772565b606081611a515750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611a7b5780611a65816127ad565b9150611a749050600a836126fc565b9150611a55565b60008167ffffffffffffffff811115611a9657611a96612834565b6040519080825280601f01601f191660200182016040528015611ac0576020820181803683370190505b5090505b84156117b657611ad560018361272f565b9150611ae2600a866127c8565b611aed9060306126e4565b60f81b818381518110611b0257611b0261281e565b60200101906001600160f81b031916908160001a905350611b24600a866126fc565b9450611ac4565b6001600160a01b038316611b8657611b8181600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b611ba9565b816001600160a01b0316836001600160a01b031614611ba957611ba98382611dc7565b6001600160a01b038216611bc057610ac481611e64565b826001600160a01b0316826001600160a01b031614610ac457610ac48282611f13565b600081815b8451811015610ec7576000858281518110611c0557611c0561281e565b60200260200101519050808311611c47576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250611c74565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b5080611c7f816127ad565b915050611be8565b611c918383611f57565b611c9e6000848484611cba565b610ac45760405162461bcd60e51b81526004016107e29061260c565b60006001600160a01b0384163b15611dbc57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611cfe903390899088908890600401612578565b602060405180830381600087803b158015611d1857600080fd5b505af1925050508015611d48575060408051601f3d908101601f19168201909252611d45918101906123ed565b60015b611da2573d808015611d76576040519150601f19603f3d011682016040523d82523d6000602084013e611d7b565b606091505b508051611d9a5760405162461bcd60e51b81526004016107e29061260c565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506117b6565b506001949350505050565b60006001611dd484611049565b611dde919061272f565b600083815260076020526040902054909150808214611e31576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e769060019061272f565b60008381526009602052604081205460088054939450909284908110611e9e57611e9e61281e565b906000526020600020015490508060088381548110611ebf57611ebf61281e565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611ef757611ef7612808565b6001900381819060005260206000200160009055905550505050565b6000611f1e83611049565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216611fad5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016107e2565b6000818152600260205260409020546001600160a01b0316156120125760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016107e2565b61201e60008383611b2b565b6001600160a01b03821660009081526003602052604081208054600192906120479084906126e4565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546120b190612772565b90600052602060002090601f0160209004810192826120d35760008555612119565b82601f106120ec57805160ff1916838001178555612119565b82800160010185558215612119579182015b828111156121195782518255916020019190600101906120fe565b50612125929150612129565b5090565b5b80821115612125576000815560010161212a565b600067ffffffffffffffff8084111561215957612159612834565b604051601f8501601f19908116603f0116810190828211818310171561218157612181612834565b8160405280935085815286868601111561219a57600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146121cb57600080fd5b919050565b803580151581146121cb57600080fd5b6000602082840312156121f257600080fd5b6114ac826121b4565b6000806040838503121561220e57600080fd5b612217836121b4565b9150612225602084016121b4565b90509250929050565b60008060006060848603121561224357600080fd5b61224c846121b4565b925061225a602085016121b4565b9150604084013590509250925092565b6000806000806080858703121561228057600080fd5b612289856121b4565b9350612297602086016121b4565b925060408501359150606085013567ffffffffffffffff8111156122ba57600080fd5b8501601f810187136122cb57600080fd5b6122da8782356020840161213e565b91505092959194509250565b600080604083850312156122f957600080fd5b612302836121b4565b9150612225602084016121d0565b6000806040838503121561232357600080fd5b61232c836121b4565b946020939093013593505050565b60008060006040848603121561234f57600080fd5b833567ffffffffffffffff8082111561236757600080fd5b818601915086601f83011261237b57600080fd5b81358181111561238a57600080fd5b8760208260051b850101111561239f57600080fd5b6020928301989097509590910135949350505050565b6000602082840312156123c757600080fd5b6114ac826121d0565b6000602082840312156123e257600080fd5b81356114ac8161284a565b6000602082840312156123ff57600080fd5b81516114ac8161284a565b60006020828403121561241c57600080fd5b813567ffffffffffffffff81111561243357600080fd5b8201601f8101841361244457600080fd5b6117b68482356020840161213e565b60006020828403121561246557600080fd5b5035919050565b60008151808452612484816020860160208601612746565b601f01601f19169290920160200192915050565b6000845160206124ab8285838a01612746565b8184019150670233ab93caa32b2160c51b8252600886516124d181838601858b01612746565b8654930192600090600181811c90808316806124ee57607f831692505b86831081141561250c57634e487b7160e01b85526022600452602485fd5b808015612520576001811461253557612566565b60ff1985168988015283890187019550612566565b60008c81526020902060005b8581101561255c5781548b82018a0152908401908901612541565b505086848a010195505b50939c9b505050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906125ab9083018461246c565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156125ed578351835292840192918401916001016125d1565b50909695505050505050565b6020815260006114ac602083018461246c565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b600082198211156126f7576126f76127dc565b500190565b60008261270b5761270b6127f2565b500490565b600081600019048311821515161561272a5761272a6127dc565b500290565b600082821015612741576127416127dc565b500390565b60005b83811015612761578181015183820152602001612749565b838111156113205750506000910152565b600181811c9082168061278657607f821691505b602082108114156127a757634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156127c1576127c16127dc565b5060010190565b6000826127d7576127d76127f2565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e0f57600080fdfea2646970667358221220e4b7ab82eddc5ad35ce402c157fd86019822297935894509ead83251702bdace64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000f46757279206f66207468652046757200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000004464f5446000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d51434831614b374676334878783737566f32796567366d43644c4845613842504169796a57697435566147422f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d656668516b6e624670786f6334776334767662416b6b774141325a7675586631427737425161357a767543442f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Fury of the Fur
Arg [1] : _symbol (string): FOTF
Arg [2] : _initBaseURI (string): ipfs://QmQCH1aK7Fv3Hxx77Vo2yeg6mCdLHEa8BPAiyjWit5VaGB/
Arg [3] : _initNotRevealedUri (string): ipfs://QmefhQknbFpxoc4wc4vvbAkkwAA2ZvuXf1Bw7BQa5zvuCD/hidden.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [5] : 46757279206f6620746865204675720000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 464f544600000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d51434831614b374676334878783737566f32796567366d
Arg [10] : 43644c4845613842504169796a57697435566147422f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [12] : 697066733a2f2f516d656668516b6e624670786f6334776334767662416b6b77
Arg [13] : 4141325a7675586631427737425161357a767543442f68696464656e2e6a736f
Arg [14] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

44895:7616:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34731:224;;;;;;;;;;-1:-1:-1;34731:224:0;;;;;:::i;:::-;;:::i;:::-;;;9172:14:1;;9165:22;9147:41;;9135:2;9120:18;34731:224:0;;;;;;;;52270:73;;;;;;;;;;-1:-1:-1;52270:73:0;;;;;:::i;:::-;;:::i;:::-;;22623:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24182:221::-;;;;;;;;;;-1:-1:-1;24182:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7833:32:1;;;7815:51;;7803:2;7788:18;24182:221:0;7669:203:1;45391:28:0;;;;;;;;;;;;;:::i;23705:411::-;;;;;;;;;;-1:-1:-1;23705:411:0;;;;;:::i;:::-;;:::i;45047:32::-;;;;;;;;;;;;;;;;;;;9345:25:1;;;9333:2;9318:18;45047:32:0;9199:177:1;35371:113:0;;;;;;;;;;-1:-1:-1;35459:10:0;:17;35371:113;;45166:32;;;;;;;;;;;;;;;;25072:339;;;;;;;;;;-1:-1:-1;25072:339:0;;;;;:::i;:::-;;:::i;48720:1453::-;;;;;;:::i;:::-;;:::i;45424:94::-;;;;;;;;;;;;;;;;35039:256;;;;;;;;;;-1:-1:-1;35039:256:0;;;;;:::i;:::-;;:::i;52350:158::-;;;:::i;25482:185::-;;;;;;;;;;-1:-1:-1;25482:185:0;;;;;:::i;:::-;;:::i;50629:348::-;;;;;;;;;;-1:-1:-1;50629:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;51601:82::-;;;;;;;;;;-1:-1:-1;51601:82:0;;;;;:::i;:::-;;:::i;35561:233::-;;;;;;;;;;-1:-1:-1;35561:233:0;;;;;:::i;:::-;;:::i;45358:28::-;;;;;;;;;;-1:-1:-1;45358:28:0;;;;;;;;;;;51941:98;;;;;;;;;;-1:-1:-1;51941:98:0;;;;;:::i;:::-;;:::i;45288:25::-;;;;;;;;;;-1:-1:-1;45288:25:0;;;;;;;;22317:239;;;;;;;;;;-1:-1:-1;22317:239:0;;;;;:::i;:::-;;:::i;45318:35::-;;;;;;;;;;-1:-1:-1;45318:35:0;;;;;;;;;;;22047:208;;;;;;;;;;-1:-1:-1;22047:208:0;;;;;:::i;:::-;;:::i;42520:94::-;;;;;;;;;;;;;:::i;51689:118::-;;;;;;;;;;-1:-1:-1;51689:118:0;;;;;:::i;:::-;;:::i;41869:87::-;;;;;;;;;;-1:-1:-1;41942:6:0;;-1:-1:-1;;;;;41942:6:0;41869:87;;45084:41;;;;;;;;;;;;;;;;22792:104;;;;;;;;;;;;;:::i;50190:433::-;;;;;;:::i;:::-;;:::i;24475:295::-;;;;;;;;;;-1:-1:-1;24475:295:0;;;;;:::i;:::-;;:::i;45203:44::-;;;;;;;;;;;;;;;;51526:67;;;;;;;;;;;;;:::i;25738:328::-;;;;;;;;;;-1:-1:-1;25738:328:0;;;;;:::i;:::-;;:::i;45005:37::-;;;;;;;;;;;;;:::i;50983:508::-;;;;;;;;;;-1:-1:-1;50983:508:0;;;;;:::i;:::-;;:::i;45130:31::-;;;;;;;;;;;;;;;;52173:93;;;;;;;;;;-1:-1:-1;52173:93:0;;;;;:::i;:::-;;:::i;52045:122::-;;;;;;;;;;-1:-1:-1;52045:122:0;;;;;:::i;:::-;;:::i;45523:48::-;;;;;;;;;;-1:-1:-1;45523:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;24841:164;;;;;;;;;;-1:-1:-1;24841:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;24962:25:0;;;24938:4;24962:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24841:164;51815:120;;;;;;;;;;-1:-1:-1;51815:120:0;;;;;:::i;:::-;;:::i;42769:192::-;;;;;;;;;;-1:-1:-1;42769:192:0;;;;;:::i;:::-;;:::i;34731:224::-;34833:4;-1:-1:-1;;;;;;34857:50:0;;-1:-1:-1;;;34857:50:0;;:90;;;34911:36;34935:11;34911:23;:36::i;:::-;34850:97;34731:224;-1:-1:-1;;34731:224:0:o;52270:73::-;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;;;;;;;;;52322:6:::1;:15:::0;;-1:-1:-1;;52322:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52270:73::o;22623:100::-;22677:13;22710:5;22703:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22623:100;:::o;24182:221::-;24258:7;27665:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27665:16:0;24278:73;;;;-1:-1:-1;;;24278:73:0;;14537:2:1;24278:73:0;;;14519:21:1;14576:2;14556:18;;;14549:30;14615:34;14595:18;;;14588:62;-1:-1:-1;;;14666:18:1;;;14659:42;14718:19;;24278:73:0;14335:408:1;24278:73:0;-1:-1:-1;24371:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24371:24:0;;24182:221::o;45391:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23705:411::-;23786:13;23802:23;23817:7;23802:14;:23::i;:::-;23786:39;;23850:5;-1:-1:-1;;;;;23844:11:0;:2;-1:-1:-1;;;;;23844:11:0;;;23836:57;;;;-1:-1:-1;;;23836:57:0;;16137:2:1;23836:57:0;;;16119:21:1;16176:2;16156:18;;;16149:30;16215:34;16195:18;;;16188:62;-1:-1:-1;;;16266:18:1;;;16259:31;16307:19;;23836:57:0;15935:397:1;23836:57:0;20232:10;-1:-1:-1;;;;;23928:21:0;;;;:62;;-1:-1:-1;23953:37:0;23970:5;20232:10;24841:164;:::i;23953:37::-;23906:168;;;;-1:-1:-1;;;23906:168:0;;12930:2:1;23906:168:0;;;12912:21:1;12969:2;12949:18;;;12942:30;13008:34;12988:18;;;12981:62;13079:26;13059:18;;;13052:54;13123:19;;23906:168:0;12728:420:1;23906:168:0;24087:21;24096:2;24100:7;24087:8;:21::i;:::-;23775:341;23705:411;;:::o;25072:339::-;25267:41;20232:10;25300:7;25267:18;:41::i;:::-;25259:103;;;;-1:-1:-1;;;25259:103:0;;;;;;;:::i;:::-;25375:28;25385:4;25391:2;25395:7;25375:9;:28::i;48720:1453::-;48836:16;;;;;;;48835:17;48827:26;;;;;;48890:10;48873:28;;;;:16;:28;;;;;;;;48872:29;48864:68;;;;-1:-1:-1;;;48864:68:0;;12574:2:1;48864:68:0;;;12556:21:1;12613:2;12593:18;;;12586:30;12652:29;12632:18;;;12625:57;12699:18;;48864:68:0;12372:351:1;48864:68:0;48970:28;;-1:-1:-1;;48987:10:0;5405:2:1;5401:15;5397:53;48970:28:0;;;5385:66:1;48945:12:0;;5467::1;;48970:28:0;;;;;;;;;;;;48960:39;;;;;;48945:54;;49020:48;49039:12;;49020:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;49052:10:0;;;-1:-1:-1;49063:4:0;;-1:-1:-1;49020:18:0;:48::i;:::-;49012:74;;;;-1:-1:-1;;;49012:74:0;;17370:2:1;49012:74:0;;;17352:21:1;17409:2;17389:18;;;17382:30;-1:-1:-1;;;17428:18:1;;;17421:43;17481:18;;49012:74:0;17168:337:1;49012:74:0;49116:10;49099:28;;;;:16;:28;;;;;:35;;-1:-1:-1;;49099:35:0;49130:4;49099:35;;;49162:13;35459:10;:17;;35371:113;49162:13;49145:30;;49208:1;49194:11;:15;49186:24;;;;;;49244:25;;49229:11;:40;;49221:49;;;;;;49313:9;;49289:20;49298:11;49289:6;:20;:::i;:::-;:33;;49281:42;;;;;;41942:6;;-1:-1:-1;;;;;41942:6:0;49338:10;:21;49334:77;;;49390:9;;49376:23;;49334:77;41942:6;;-1:-1:-1;;;;;41942:6:0;49950:10;:21;49946:99;;50021:11;50005:13;;:27;;;;:::i;:::-;49992:9;:40;;49984:49;;;;;;50072:1;50055:99;50080:11;50075:1;:16;50055:99;;50109:33;50119:10;50131;50140:1;50131:6;:10;:::i;:::-;50109:9;:33::i;:::-;50093:3;;;;:::i;:::-;;;;50055:99;;;;48816:1357;;48720:1453;;;:::o;35039:256::-;35136:7;35172:23;35189:5;35172:16;:23::i;:::-;35164:5;:31;35156:87;;;;-1:-1:-1;;;35156:87:0;;9807:2:1;35156:87:0;;;9789:21:1;9846:2;9826:18;;;9819:30;9885:34;9865:18;;;9858:62;-1:-1:-1;;;9936:18:1;;;9929:41;9987:19;;35156:87:0;9605:407:1;35156:87:0;-1:-1:-1;;;;;;35261:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35039:256::o;52350:158::-;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;52421:58:::1;::::0;52403:12:::1;::::0;52429:10:::1;::::0;52453:21:::1;::::0;52403:12;52421:58;52403:12;52421:58;52453:21;52429:10;52421:58:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52402:77;;;52494:7;52486:16;;;::::0;::::1;;52395:113;52350:158::o:0;25482:185::-;25620:39;25637:4;25643:2;25647:7;25620:39;;;;;;;;;;;;:16;:39::i;50629:348::-;50704:16;50732:23;50758:17;50768:6;50758:9;:17::i;:::-;50732:43;;50782:25;50824:15;50810:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;50810:30:0;;50782:58;;50852:9;50847:103;50867:15;50863:1;:19;50847:103;;;50912:30;50932:6;50940:1;50912:19;:30::i;:::-;50898:8;50907:1;50898:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;50884:3;;;;:::i;:::-;;;;50847:103;;;-1:-1:-1;50963:8:0;50629:348;-1:-1:-1;;;50629:348:0:o;51601:82::-;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;51662:4:::1;:15:::0;51601:82::o;35561:233::-;35636:7;35672:30;35459:10;:17;;35371:113;35672:30;35664:5;:38;35656:95;;;;-1:-1:-1;;;35656:95:0;;16957:2:1;35656:95:0;;;16939:21:1;16996:2;16976:18;;;16969:30;17035:34;17015:18;;;17008:62;-1:-1:-1;;;17086:18:1;;;17079:42;17138:19;;35656:95:0;16755:408:1;35656:95:0;35769:10;35780:5;35769:17;;;;;;;;:::i;:::-;;;;;;;;;35762:24;;35561:233;;;:::o;51941:98::-;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;52012:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;51941:98:::0;:::o;22317:239::-;22389:7;22425:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22425:16:0;22460:19;22452:73;;;;-1:-1:-1;;;22452:73:0;;13766:2:1;22452:73:0;;;13748:21:1;13805:2;13785:18;;;13778:30;13844:34;13824:18;;;13817:62;-1:-1:-1;;;13895:18:1;;;13888:39;13944:19;;22452:73:0;13564:405:1;22047:208:0;22119:7;-1:-1:-1;;;;;22147:19:0;;22139:74;;;;-1:-1:-1;;;22139:74:0;;13355:2:1;22139:74:0;;;13337:21:1;13394:2;13374:18;;;13367:30;13433:34;13413:18;;;13406:62;-1:-1:-1;;;13484:18:1;;;13477:40;13534:19;;22139:74:0;13153:406:1;22139:74:0;-1:-1:-1;;;;;;22231:16:0;;;;;:9;:16;;;;;;;22047:208::o;42520:94::-;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;42585:21:::1;42603:1;42585:9;:21::i;:::-;42520:94::o:0;51689:118::-;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;51768:13:::1;:33:::0;51689:118::o;22792:104::-;22848:13;22881:7;22874:14;;;;;:::i;50190:433::-;50247:14;50264:13;35459:10;:17;;35371:113;50264:13;50293:6;;50247:30;;-1:-1:-1;50293:6:0;;50292:7;50284:16;;;;;;50329:1;50315:11;:15;50307:24;;;;;;50370:9;;50346:20;50355:11;50346:6;:20;:::i;:::-;:33;;50338:42;;;;;;41942:6;;-1:-1:-1;;;;;41942:6:0;50393:10;:21;50389:130;;50453:11;50446:4;;:18;;;;:::i;:::-;50433:9;:31;;50425:40;;;;;;50497:13;;50482:11;:28;;50474:37;;;;;;50542:1;50525:93;50550:11;50545:1;:16;50525:93;;50577:33;50587:10;50599;50608:1;50599:6;:10;:::i;50577:33::-;50563:3;;;;:::i;:::-;;;;50525:93;;24475:295;-1:-1:-1;;;;;24578:24:0;;20232:10;24578:24;;24570:62;;;;-1:-1:-1;;;24570:62:0;;11807:2:1;24570:62:0;;;11789:21:1;11846:2;11826:18;;;11819:30;11885:27;11865:18;;;11858:55;11930:18;;24570:62:0;11605:349:1;24570:62:0;20232:10;24645:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;24645:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;24645:53:0;;;;;;;;;;24714:48;;9147:41:1;;;24645:42:0;;20232:10;24714:48;;9120:18:1;24714:48:0;;;;;;;24475:295;;:::o;51526:67::-;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;51572:8:::1;:15:::0;;-1:-1:-1;;51572:15:0::1;::::0;::::1;::::0;;51526:67::o;25738:328::-;25913:41;20232:10;25946:7;25913:18;:41::i;:::-;25905:103;;;;-1:-1:-1;;;25905:103:0;;;;;;;:::i;:::-;26019:39;26033:4;26039:2;26043:7;26052:5;26019:13;:39::i;:::-;25738:328;;;;:::o;45005:37::-;;;;;;;:::i;50983:508::-;27641:4;27665:16;;;:7;:16;;;;;;51081:13;;-1:-1:-1;;;;;27665:16:0;51106:97;;;;-1:-1:-1;;;51106:97:0;;15721:2:1;51106:97:0;;;15703:21:1;15760:2;15740:18;;;15733:30;15799:34;15779:18;;;15772:62;-1:-1:-1;;;15850:18:1;;;15843:45;15905:19;;51106:97:0;15519:411:1;51106:97:0;51219:8;;;;;;;51216:62;;51256:14;51249:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50983:508;;;:::o;51216:62::-;51286:28;51317:10;:8;:10::i;:::-;51286:41;;51372:1;51347:14;51341:28;:32;:144;;;;;;;;;;;;;;;;;51409:14;51436:18;:7;:16;:18::i;:::-;51456:13;51392:78;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51341:144;51334:151;50983:508;-1:-1:-1;;;50983:508:0:o;52173:93::-;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;52235:16:::1;:25:::0;;;::::1;;;;-1:-1:-1::0;;52235:25:0;;::::1;::::0;;;::::1;::::0;;52173:93::o;52045:122::-;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;52128:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;51815:120::-:0;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;51897:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42769:192::-:0;41942:6;;-1:-1:-1;;;;;41942:6:0;20232:10;42089:23;42081:68;;;;-1:-1:-1;;;42081:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42858:22:0;::::1;42850:73;;;::::0;-1:-1:-1;;;42850:73:0;;10638:2:1;42850:73:0::1;::::0;::::1;10620:21:1::0;10677:2;10657:18;;;10650:30;10716:34;10696:18;;;10689:62;-1:-1:-1;;;10767:18:1;;;10760:36;10813:19;;42850:73:0::1;10436:402:1::0;42850:73:0::1;42934:19;42944:8;42934:9;:19::i;21678:305::-:0;21780:4;-1:-1:-1;;;;;;21817:40:0;;-1:-1:-1;;;21817:40:0;;:105;;-1:-1:-1;;;;;;;21874:48:0;;-1:-1:-1;;;21874:48:0;21817:105;:158;;;-1:-1:-1;;;;;;;;;;7618:40:0;;;21939:36;7509:157;31558:174;31633:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31633:29:0;-1:-1:-1;;;;;31633:29:0;;;;;;;;:24;;31687:23;31633:24;31687:14;:23::i;:::-;-1:-1:-1;;;;;31678:46:0;;;;;;;;;;;31558:174;;:::o;27870:348::-;27963:4;27665:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27665:16:0;27980:73;;;;-1:-1:-1;;;27980:73:0;;12161:2:1;27980:73:0;;;12143:21:1;12200:2;12180:18;;;12173:30;12239:34;12219:18;;;12212:62;-1:-1:-1;;;12290:18:1;;;12283:42;12342:19;;27980:73:0;11959:408:1;27980:73:0;28064:13;28080:23;28095:7;28080:14;:23::i;:::-;28064:39;;28133:5;-1:-1:-1;;;;;28122:16:0;:7;-1:-1:-1;;;;;28122:16:0;;:51;;;;28166:7;-1:-1:-1;;;;;28142:31:0;:20;28154:7;28142:11;:20::i;:::-;-1:-1:-1;;;;;28142:31:0;;28122:51;:87;;;-1:-1:-1;;;;;;24962:25:0;;;24938:4;24962:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28177:32;28114:96;27870:348;-1:-1:-1;;;;27870:348:0:o;30862:578::-;31021:4;-1:-1:-1;;;;;30994:31:0;:23;31009:7;30994:14;:23::i;:::-;-1:-1:-1;;;;;30994:31:0;;30986:85;;;;-1:-1:-1;;;30986:85:0;;15311:2:1;30986:85:0;;;15293:21:1;15350:2;15330:18;;;15323:30;15389:34;15369:18;;;15362:62;-1:-1:-1;;;15440:18:1;;;15433:39;15489:19;;30986:85:0;15109:405:1;30986:85:0;-1:-1:-1;;;;;31090:16:0;;31082:65;;;;-1:-1:-1;;;31082:65:0;;11402:2:1;31082:65:0;;;11384:21:1;11441:2;11421:18;;;11414:30;11480:34;11460:18;;;11453:62;-1:-1:-1;;;11531:18:1;;;11524:34;11575:19;;31082:65:0;11200:400:1;31082:65:0;31160:39;31181:4;31187:2;31191:7;31160:20;:39::i;:::-;31264:29;31281:1;31285:7;31264:8;:29::i;:::-;-1:-1:-1;;;;;31306:15:0;;;;;;:9;:15;;;;;:20;;31325:1;;31306:15;:20;;31325:1;;31306:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31337:13:0;;;;;;:9;:13;;;;;:18;;31354:1;;31337:13;:18;;31354:1;;31337:18;:::i;:::-;;;;-1:-1:-1;;31366:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31366:21:0;-1:-1:-1;;;;;31366:21:0;;;;;;;;;31405:27;;31366:16;;31405:27;;;;;;;30862:578;;;:::o;43602:190::-;43727:4;43780;43751:25;43764:5;43771:4;43751:12;:25::i;:::-;:33;;43602:190;-1:-1:-1;;;;43602:190:0:o;28560:110::-;28636:26;28646:2;28650:7;28636:26;;;;;;;;;;;;:9;:26::i;42969:173::-;43044:6;;;-1:-1:-1;;;;;43061:17:0;;;-1:-1:-1;;;;;;43061:17:0;;;;;;;43094:40;;43044:6;;;43061:17;43044:6;;43094:40;;43025:16;;43094:40;43014:128;42969:173;:::o;26948:315::-;27105:28;27115:4;27121:2;27125:7;27105:9;:28::i;:::-;27152:48;27175:4;27181:2;27185:7;27194:5;27152:22;:48::i;:::-;27144:111;;;;-1:-1:-1;;;27144:111:0;;;;;;;:::i;48612:102::-;48672:13;48701:7;48694:14;;;;;:::i;7984:723::-;8040:13;8261:10;8257:53;;-1:-1:-1;;8288:10:0;;;;;;;;;;;;-1:-1:-1;;;8288:10:0;;;;;7984:723::o;8257:53::-;8335:5;8320:12;8376:78;8383:9;;8376:78;;8409:8;;;;:::i;:::-;;-1:-1:-1;8432:10:0;;-1:-1:-1;8440:2:0;8432:10;;:::i;:::-;;;8376:78;;;8464:19;8496:6;8486:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8486:17:0;;8464:39;;8514:154;8521:10;;8514:154;;8548:11;8558:1;8548:11;;:::i;:::-;;-1:-1:-1;8617:10:0;8625:2;8617:5;:10;:::i;:::-;8604:24;;:2;:24;:::i;:::-;8591:39;;8574:6;8581;8574:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8574:56:0;;;;;;;;-1:-1:-1;8645:11:0;8654:2;8645:11;;:::i;:::-;;;8514:154;;36407:589;-1:-1:-1;;;;;36613:18:0;;36609:187;;36648:40;36680:7;37823:10;:17;;37796:24;;;;:15;:24;;;;;:44;;;37851:24;;;;;;;;;;;;37719:164;36648:40;36609:187;;;36718:2;-1:-1:-1;;;;;36710:10:0;:4;-1:-1:-1;;;;;36710:10:0;;36706:90;;36737:47;36770:4;36776:7;36737:32;:47::i;:::-;-1:-1:-1;;;;;36810:16:0;;36806:183;;36843:45;36880:7;36843:36;:45::i;36806:183::-;36916:4;-1:-1:-1;;;;;36910:10:0;:2;-1:-1:-1;;;;;36910:10:0;;36906:83;;36937:40;36965:2;36969:7;36937:27;:40::i;44154:701::-;44237:7;44280:4;44237:7;44295:523;44319:5;:12;44315:1;:16;44295:523;;;44353:20;44376:5;44382:1;44376:8;;;;;;;;:::i;:::-;;;;;;;44353:31;;44419:12;44403;:28;44399:408;;44556:44;;;;;;5647:19:1;;;5682:12;;;5675:28;;;5719:12;;44556:44:0;;;;;;;;;;;;44546:55;;;;;;44531:70;;44399:408;;;44746:44;;;;;;5647:19:1;;;5682:12;;;5675:28;;;5719:12;;44746:44:0;;;;;;;;;;;;44736:55;;;;;;44721:70;;44399:408;-1:-1:-1;44333:3:0;;;;:::i;:::-;;;;44295:523;;28897:321;29027:18;29033:2;29037:7;29027:5;:18::i;:::-;29078:54;29109:1;29113:2;29117:7;29126:5;29078:22;:54::i;:::-;29056:154;;;;-1:-1:-1;;;29056:154:0;;;;;;;:::i;32297:799::-;32452:4;-1:-1:-1;;;;;32473:13:0;;10832:20;10880:8;32469:620;;32509:72;;-1:-1:-1;;;32509:72:0;;-1:-1:-1;;;;;32509:36:0;;;;;:72;;20232:10;;32560:4;;32566:7;;32575:5;;32509:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32509:72:0;;;;;;;;-1:-1:-1;;32509:72:0;;;;;;;;;;;;:::i;:::-;;;32505:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32751:13:0;;32747:272;;32794:60;;-1:-1:-1;;;32794:60:0;;;;;;;:::i;32747:272::-;32969:6;32963:13;32954:6;32950:2;32946:15;32939:38;32505:529;-1:-1:-1;;;;;;32632:51:0;-1:-1:-1;;;32632:51:0;;-1:-1:-1;32625:58:0;;32469:620;-1:-1:-1;33073:4:0;32297:799;;;;;;:::o;38510:988::-;38776:22;38826:1;38801:22;38818:4;38801:16;:22::i;:::-;:26;;;;:::i;:::-;38838:18;38859:26;;;:17;:26;;;;;;38776:51;;-1:-1:-1;38992:28:0;;;38988:328;;-1:-1:-1;;;;;39059:18:0;;39037:19;39059:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39110:30;;;;;;:44;;;39227:30;;:17;:30;;;;;:43;;;38988:328;-1:-1:-1;39412:26:0;;;;:17;:26;;;;;;;;39405:33;;;-1:-1:-1;;;;;39456:18:0;;;;;:12;:18;;;;;:34;;;;;;;39449:41;38510:988::o;39793:1079::-;40071:10;:17;40046:22;;40071:21;;40091:1;;40071:21;:::i;:::-;40103:18;40124:24;;;:15;:24;;;;;;40497:10;:26;;40046:46;;-1:-1:-1;40124:24:0;;40046:46;;40497:26;;;;;;:::i;:::-;;;;;;;;;40475:48;;40561:11;40536:10;40547;40536:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;40641:28;;;:15;:28;;;;;;;:41;;;40813:24;;;;;40806:31;40848:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;39864:1008;;;39793:1079;:::o;37297:221::-;37382:14;37399:20;37416:2;37399:16;:20::i;:::-;-1:-1:-1;;;;;37430:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37475:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37297:221:0:o;29554:382::-;-1:-1:-1;;;;;29634:16:0;;29626:61;;;;-1:-1:-1;;;29626:61:0;;14176:2:1;29626:61:0;;;14158:21:1;;;14195:18;;;14188:30;14254:34;14234:18;;;14227:62;14306:18;;29626:61:0;13974:356:1;29626:61:0;27641:4;27665:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27665:16:0;:30;29698:58;;;;-1:-1:-1;;;29698:58:0;;11045:2:1;29698:58:0;;;11027:21:1;11084:2;11064:18;;;11057:30;11123;11103:18;;;11096:58;11171:18;;29698:58:0;10843:352:1;29698:58:0;29769:45;29798:1;29802:2;29806:7;29769:20;:45::i;:::-;-1:-1:-1;;;;;29827:13:0;;;;;;:9;:13;;;;;:18;;29844:1;;29827:13;:18;;29844:1;;29827:18;:::i;:::-;;;;-1:-1:-1;;29856:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29856:21:0;-1:-1:-1;;;;;29856:21:0;;;;;;;;29895:33;;29856:16;;;29895:33;;29856:16;;29895:33;29554:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:689::-;3066:6;3074;3082;3135:2;3123:9;3114:7;3110:23;3106:32;3103:52;;;3151:1;3148;3141:12;3103:52;3191:9;3178:23;3220:18;3261:2;3253:6;3250:14;3247:34;;;3277:1;3274;3267:12;3247:34;3315:6;3304:9;3300:22;3290:32;;3360:7;3353:4;3349:2;3345:13;3341:27;3331:55;;3382:1;3379;3372:12;3331:55;3422:2;3409:16;3448:2;3440:6;3437:14;3434:34;;;3464:1;3461;3454:12;3434:34;3519:7;3512:4;3502:6;3499:1;3495:14;3491:2;3487:23;3483:34;3480:47;3477:67;;;3540:1;3537;3530:12;3477:67;3571:4;3563:13;;;;3595:6;;-1:-1:-1;3633:20:1;;;;3620:34;;2971:689;-1:-1:-1;;;;2971:689:1:o;3665:180::-;3721:6;3774:2;3762:9;3753:7;3749:23;3745:32;3742:52;;;3790:1;3787;3780:12;3742:52;3813:26;3829:9;3813:26;:::i;3850:245::-;3908:6;3961:2;3949:9;3940:7;3936:23;3932:32;3929:52;;;3977:1;3974;3967:12;3929:52;4016:9;4003:23;4035:30;4059:5;4035:30;:::i;4100:249::-;4169:6;4222:2;4210:9;4201:7;4197:23;4193:32;4190:52;;;4238:1;4235;4228:12;4190:52;4270:9;4264:16;4289:30;4313:5;4289:30;:::i;4354:450::-;4423:6;4476:2;4464:9;4455:7;4451:23;4447:32;4444:52;;;4492:1;4489;4482:12;4444:52;4532:9;4519:23;4565:18;4557:6;4554:30;4551:50;;;4597:1;4594;4587:12;4551:50;4620:22;;4673:4;4665:13;;4661:27;-1:-1:-1;4651:55:1;;4702:1;4699;4692:12;4651:55;4725:73;4790:7;4785:2;4772:16;4767:2;4763;4759:11;4725:73;:::i;4809:180::-;4868:6;4921:2;4909:9;4900:7;4896:23;4892:32;4889:52;;;4937:1;4934;4927:12;4889:52;-1:-1:-1;4960:23:1;;4809:180;-1:-1:-1;4809:180:1:o;4994:257::-;5035:3;5073:5;5067:12;5100:6;5095:3;5088:19;5116:63;5172:6;5165:4;5160:3;5156:14;5149:4;5142:5;5138:16;5116:63;:::i;:::-;5233:2;5212:15;-1:-1:-1;;5208:29:1;5199:39;;;;5240:4;5195:50;;4994:257;-1:-1:-1;;4994:257:1:o;5742:1712::-;6067:3;6105:6;6099:13;6131:4;6144:51;6188:6;6183:3;6178:2;6170:6;6166:15;6144:51;:::i;:::-;6226:6;6221:3;6217:16;6204:29;;-1:-1:-1;;;6249:5:1;6242:25;6286:1;6318:6;6312:13;6334:64;6389:8;6384:2;6377:5;6373:14;6368:2;6360:6;6356:15;6334:64;:::i;:::-;6484:13;;6417:20;;;6457:1;;6544;6566:18;;;;6619;;;;6646:93;;6724:4;6714:8;6710:19;6698:31;;6646:93;6787:2;6777:8;6774:16;6754:18;6751:40;6748:167;;;-1:-1:-1;;;6814:33:1;;6870:4;6867:1;6860:15;6900:4;6821:3;6888:17;6748:167;6931:18;6958:122;;;;7094:1;7089:340;;;;6924:505;;6958:122;-1:-1:-1;;6999:24:1;;6986:11;;;6979:45;7048:17;;;7044:26;;;-1:-1:-1;6958:122:1;;7089:340;17765:1;17758:14;;;17802:4;17789:18;;7184:1;7198:175;7212:8;7209:1;7206:15;7198:175;;;7300:14;;7283:10;;;7279:19;;7272:43;7343:16;;;;7229:10;;7198:175;;;7202:3;;7416:2;7405:8;7401:2;7397:17;7393:26;7386:33;;6924:505;-1:-1:-1;7445:3:1;;5742:1712;-1:-1:-1;;;;;;;;;;;;5742:1712:1:o;7877:488::-;-1:-1:-1;;;;;8146:15:1;;;8128:34;;8198:15;;8193:2;8178:18;;8171:43;8245:2;8230:18;;8223:34;;;8293:3;8288:2;8273:18;;8266:31;;;8071:4;;8314:45;;8339:19;;8331:6;8314:45;:::i;:::-;8306:53;7877:488;-1:-1:-1;;;;;;7877:488:1:o;8370:632::-;8541:2;8593:21;;;8663:13;;8566:18;;;8685:22;;;8512:4;;8541:2;8764:15;;;;8738:2;8723:18;;;8512:4;8807:169;8821:6;8818:1;8815:13;8807:169;;;8882:13;;8870:26;;8951:15;;;;8916:12;;;;8843:1;8836:9;8807:169;;;-1:-1:-1;8993:3:1;;8370:632;-1:-1:-1;;;;;;8370:632:1:o;9381:219::-;9530:2;9519:9;9512:21;9493:4;9550:44;9590:2;9579:9;9575:18;9567:6;9550:44;:::i;10017:414::-;10219:2;10201:21;;;10258:2;10238:18;;;10231:30;10297:34;10292:2;10277:18;;10270:62;-1:-1:-1;;;10363:2:1;10348:18;;10341:48;10421:3;10406:19;;10017:414::o;14748:356::-;14950:2;14932:21;;;14969:18;;;14962:30;15028:34;15023:2;15008:18;;15001:62;15095:2;15080:18;;14748:356::o;16337:413::-;16539:2;16521:21;;;16578:2;16558:18;;;16551:30;16617:34;16612:2;16597:18;;16590:62;-1:-1:-1;;;16683:2:1;16668:18;;16661:47;16740:3;16725:19;;16337:413::o;17818:128::-;17858:3;17889:1;17885:6;17882:1;17879:13;17876:39;;;17895:18;;:::i;:::-;-1:-1:-1;17931:9:1;;17818:128::o;17951:120::-;17991:1;18017;18007:35;;18022:18;;:::i;:::-;-1:-1:-1;18056:9:1;;17951:120::o;18076:168::-;18116:7;18182:1;18178;18174:6;18170:14;18167:1;18164:21;18159:1;18152:9;18145:17;18141:45;18138:71;;;18189:18;;:::i;:::-;-1:-1:-1;18229:9:1;;18076:168::o;18249:125::-;18289:4;18317:1;18314;18311:8;18308:34;;;18322:18;;:::i;:::-;-1:-1:-1;18359:9:1;;18249:125::o;18379:258::-;18451:1;18461:113;18475:6;18472:1;18469:13;18461:113;;;18551:11;;;18545:18;18532:11;;;18525:39;18497:2;18490:10;18461:113;;;18592:6;18589:1;18586:13;18583:48;;;-1:-1:-1;;18627:1:1;18609:16;;18602:27;18379:258::o;18642:380::-;18721:1;18717:12;;;;18764;;;18785:61;;18839:4;18831:6;18827:17;18817:27;;18785:61;18892:2;18884:6;18881:14;18861:18;18858:38;18855:161;;;18938:10;18933:3;18929:20;18926:1;18919:31;18973:4;18970:1;18963:15;19001:4;18998:1;18991:15;18855:161;;18642:380;;;:::o;19027:135::-;19066:3;-1:-1:-1;;19087:17:1;;19084:43;;;19107:18;;:::i;:::-;-1:-1:-1;19154:1:1;19143:13;;19027:135::o;19167:112::-;19199:1;19225;19215:35;;19230:18;;:::i;:::-;-1:-1:-1;19264:9:1;;19167:112::o;19284:127::-;19345:10;19340:3;19336:20;19333:1;19326:31;19376:4;19373:1;19366:15;19400:4;19397:1;19390:15;19416:127;19477:10;19472:3;19468:20;19465:1;19458:31;19508:4;19505:1;19498:15;19532:4;19529:1;19522:15;19548:127;19609:10;19604:3;19600:20;19597:1;19590:31;19640:4;19637:1;19630:15;19664:4;19661:1;19654:15;19680:127;19741:10;19736:3;19732:20;19729:1;19722:31;19772:4;19769:1;19762:15;19796:4;19793:1;19786:15;19812:127;19873:10;19868:3;19864:20;19861:1;19854:31;19904:4;19901:1;19894:15;19928:4;19925:1;19918:15;19944:131;-1:-1:-1;;;;;;20018:32:1;;20008:43;;19998:71;;20065:1;20062;20055:12

Swarm Source

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