ETH Price: $3,123.47 (+1.90%)

Token

Wolves of Doge Street (WODS)
 

Overview

Max Total Supply

213 WODS

Holders

123

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 WODS
0xFD497C350260d749F57A1279fa3AA73D421aECFd
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Wods

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-08-30
*/

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
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 Merkle 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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

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


// OpenZeppelin Contracts v4.4.1 (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/Context.sol


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/introspection/IERC165.sol


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (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


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


// OpenZeppelin Contracts v4.4.1 (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/ERC721.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

        _afterTokenTransfer(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);

        _afterTokenTransfer(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 from incorrect owner");
        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);

        _afterTokenTransfer(from, to, tokenId);
    }

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

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


// OpenZeppelin Contracts v4.4.1 (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: contracts/wodsBeta2.sol



pragma solidity >=0.7.0 <0.9.0;




contract Wods is ERC721Enumerable, Ownable {
    using Strings for uint256;
    string public baseURI;
    string public baseExtension = ".json";
    string public notRevealedUri;
    uint256 public cost = 0.1 ether;
    uint256 public whiteListCost = 0 ether;
    uint256 public maxSupply = 5700;
    uint256 public maxMintAmount = 2;
    uint256 public nftPerAddressLimit = 2;
    bool public paused = false;
    bool public revealed = false;

    mapping(address => uint256) public addressMintedBalance;

    bytes32 public whitelistMerkleRoot =
        0x3e623d662b07d96484d6e6d48985f68d142891c87bce53b79fdd695352bc0db7;

    bytes32 public whitelistMerkleRoot2 =
        0x8ba8622223bfc782fb7a016c46ff73b3e50704194f07dc33ca69e2879d999a84;

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

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

    // public
    function mint(uint256 _mintAmount) public payable {
        uint256 ownerBalance = balanceOf(msg.sender);

        require(!paused, "the contract is paused");
        uint256 supply = totalSupply();
        require(_mintAmount > 0, "need to mint at least 1 NFT");
        
        require(supply + _mintAmount <= maxSupply, "Supply Limit reached");

        if (msg.sender != owner()) {
            require(msg.value >= cost * _mintAmount, "insufficient funds");
            require(
            _mintAmount <= maxMintAmount, "max mint amount per session exceeded");
            require(ownerBalance < nftPerAddressLimit, "Max NFT per wallet reached");
        }

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

    //Merkle Tree//
    function isValid(bytes32[] memory proof, bytes32 leaf)
        public
        view
        returns (bool)
    {
        return MerkleProof.verify(proof, whitelistMerkleRoot, leaf);
    }
    function isValid2(bytes32[] memory proof, bytes32 leaf)
        public
        view
        returns (bool)
    {
        return MerkleProof.verify(proof, whitelistMerkleRoot2, leaf);
    }

    function mintWhitelist(bytes32[] memory proof) public {
        if(isValid(proof, keccak256(abi.encodePacked(msg.sender)))){
            uint256 supply = totalSupply();
            require(supply + 1 <= maxSupply, "NFT Supply Max reached");
            
            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount == 0, "Max NFT per address exceeded");

            addressMintedBalance[msg.sender]++;
            _safeMint(msg.sender, supply + 1);
        }
        else{
            require(isValid2(proof, keccak256(abi.encodePacked(msg.sender))),"This Address is not in the Whitelist");

            uint256 supply = totalSupply();
            require(supply + 1 <= maxSupply, "NFT Supply Max reached");

            uint256 ownerMintedCount = addressMintedBalance[msg.sender];
            require(ownerMintedCount < 2, "Max NFT per address exceeded");

            for (uint256 i = 1; i <= 2; i++) {
                addressMintedBalance[msg.sender]++;
                _safeMint(msg.sender, supply + i);
            }
        }
    }

    // function mintWhitelist2(bytes32[] memory proof) public {
    //     require(
    //         isValid2(proof, keccak256(abi.encodePacked(msg.sender))),
    //         "This Address is not in the Whitelist"
    //     );
    //     uint256 supply = totalSupply();
    //     require(supply + 1 <= maxSupply, "NFT Supply Max reached");

    //     uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    //     require(ownerMintedCount <= 2, "Max NFT per address exceeded");

    //     for (uint256 i = 1; i <= 2; i++) {
    //         addressMintedBalance[msg.sender]++;
    //         _safeMint(msg.sender, supply + i);
    //     }
    // }

    function giveAway(uint256 _mintAmount, address _to) external onlyOwner {
        uint256 supply = totalSupply();
        require(supply + 1 <= maxSupply, "max NFT limit exceeded");
        
        for (uint256 i = 1; i <= _mintAmount; i++) {
            addressMintedBalance[_to]++;
            _safeMint(_to, supply + i);
        }
    }

    function setWhitelistMerkleRoot(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRoot = merkleRoot;
    }
    function setWhitelistMerkleRoot2(bytes32 merkleRoot) external onlyOwner {
        whitelistMerkleRoot2 = merkleRoot;
    }

    /////////////////////////

    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,
                        tokenId.toString(),
                        baseExtension
                    )
                )
                : "";
    }

    //only owner
    function reveal() public onlyOwner {
        revealed = true;
    }

    function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
        nftPerAddressLimit = _limit;
    }

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

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

    function setWhitelistCost(uint256 _newCost) public onlyOwner {
        whiteListCost = _newCost;
    }

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

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

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

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

    function pause(bool _state) public onlyOwner {
        paused = _state;
    }

    function withdraw() public payable onlyOwner {
        (bool os, ) = payable(owner()).call{value: address(this).balance}("");
        require(os);
    }
}

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":"","type":"address"}],"name":"addressMintedBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"mintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setWhitelistCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"merkleRoot","type":"bytes32"}],"name":"setWhitelistMerkleRoot2","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":[],"name":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistMerkleRoot2","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000252565b5067016345785d8a0000600e556000600f55611644601055600260118190556012556013805461ffff191690557f3e623d662b07d96484d6e6d48985f68d142891c87bce53b79fdd695352bc0db76015557f8ba8622223bfc782fb7a016c46ff73b3e50704194f07dc33ca69e2879d999a84601655348015620000aa57600080fd5b50604051620033e7380380620033e7833981016040819052620000cd91620003af565b835184908490620000e690600090602085019062000252565b508051620000fc90600190602084019062000252565b50505062000119620001136200013960201b60201c565b6200013d565b62000124826200018f565b6200012f81620001f7565b50505050620004bb565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001de5760405162461bcd60e51b81526020600482018190526024820152600080516020620033c783398151915260448201526064015b60405180910390fd5b8051620001f390600b90602084019062000252565b5050565b600a546001600160a01b03163314620002425760405162461bcd60e51b81526020600482018190526024820152600080516020620033c78339815191526044820152606401620001d5565b8051620001f390600d9060208401905b828054620002609062000468565b90600052602060002090601f016020900481019282620002845760008555620002cf565b82601f106200029f57805160ff1916838001178555620002cf565b82800160010185558215620002cf579182015b82811115620002cf578251825591602001919060010190620002b2565b50620002dd929150620002e1565b5090565b5b80821115620002dd5760008155600101620002e2565b600082601f8301126200030a57600080fd5b81516001600160401b0380821115620003275762000327620004a5565b604051601f8301601f19908116603f01168101908282118183101715620003525762000352620004a5565b816040528381526020925086838588010111156200036f57600080fd5b600091505b8382101562000393578582018301518183018401529082019062000374565b83821115620003a55760008385830101525b9695505050505050565b60008060008060808587031215620003c657600080fd5b84516001600160401b0380821115620003de57600080fd5b620003ec88838901620002f8565b955060208701519150808211156200040357600080fd5b6200041188838901620002f8565b945060408701519150808211156200042857600080fd5b6200043688838901620002f8565b935060608701519150808211156200044d57600080fd5b506200045c87828801620002f8565b91505092959194509250565b600181811c908216806200047d57607f821691505b602082108114156200049f57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612efc80620004cb6000396000f3fe6080604052600436106102e45760003560e01c80636c0360eb11610190578063b8a20ed0116100dc578063d49479eb11610095578063df9132ef1161006f578063df9132ef14610861578063e985e9c514610881578063f2c4ce1e146108ca578063f2fde38b146108ea57600080fd5b8063d49479eb1461080b578063d5abeb011461082b578063da3ef23f1461084157600080fd5b8063b8a20ed014610760578063ba7d2c7614610780578063bd32fb6614610796578063c6682862146107b6578063c87b56dd146107cb578063d0eb26b0146107eb57600080fd5b80639257e04411610149578063a22cb46511610123578063a22cb465146106f5578063a475b5dd14610715578063aa98e0c61461072a578063b88d4fde1461074057600080fd5b80639257e044146106b757806395d89b41146106cd578063a0712d68146106e257600080fd5b80636c0360eb1461060f5780636f8b44b01461062457806370a0823114610644578063715018a6146106645780637f00c7a6146106795780638da5cb5b1461069957600080fd5b8063261d3b211161024f57806344d843811161020857806351830227116101e2578063518302271461059657806355f804b3146105b55780635c975abb146105d55780636352211e146105ef57600080fd5b806344d84381146105405780634f41d114146105605780634f6ccce71461057657600080fd5b8063261d3b211461048b5780632f745c59146104ab5780633ccfd60b146104cb57806342842e0e146104d3578063438b6300146104f357806344a0d68a1461052057600080fd5b80630b548483116102a15780630b548483146103cf57806313faede6146103ef57806318160ddd1461041357806318cae26914610428578063239c70ae1461045557806323b872dd1461046b57600080fd5b806301ffc9a7146102e957806302329a291461031e57806306fdde0314610340578063081812fc14610362578063081c8c441461039a578063095ea7b3146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004612a17565b61090a565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e6103393660046129e3565b610935565b005b34801561034c57600080fd5b5061035561097b565b6040516103159190612c2e565b34801561036e57600080fd5b5061038261037d3660046129fe565b610a0d565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b50610355610aa2565b3480156103bb57600080fd5b5061033e6103ca36600461293f565b610b30565b3480156103db57600080fd5b506103096103ea36600461299e565b610c46565b3480156103fb57600080fd5b50610405600e5481565b604051908152602001610315565b34801561041f57600080fd5b50600854610405565b34801561043457600080fd5b5061040561044336600461280f565b60146020526000908152604090205481565b34801561046157600080fd5b5061040560115481565b34801561047757600080fd5b5061033e61048636600461285d565b610c5c565b34801561049757600080fd5b5061033e6104a6366004612a9a565b610c8d565b3480156104b757600080fd5b506104056104c636600461293f565b610d79565b61033e610e0f565b3480156104df57600080fd5b5061033e6104ee36600461285d565b610ead565b3480156104ff57600080fd5b5061051361050e36600461280f565b610ec8565b6040516103159190612bea565b34801561052c57600080fd5b5061033e61053b3660046129fe565b610f6a565b34801561054c57600080fd5b5061033e61055b366004612969565b610f99565b34801561056c57600080fd5b5061040560165481565b34801561058257600080fd5b506104056105913660046129fe565b611274565b3480156105a257600080fd5b5060135461030990610100900460ff1681565b3480156105c157600080fd5b5061033e6105d0366004612a51565b611307565b3480156105e157600080fd5b506013546103099060ff1681565b3480156105fb57600080fd5b5061038261060a3660046129fe565b611348565b34801561061b57600080fd5b506103556113bf565b34801561063057600080fd5b5061033e61063f3660046129fe565b6113cc565b34801561065057600080fd5b5061040561065f36600461280f565b6113fb565b34801561067057600080fd5b5061033e611482565b34801561068557600080fd5b5061033e6106943660046129fe565b6114b8565b3480156106a557600080fd5b50600a546001600160a01b0316610382565b3480156106c357600080fd5b50610405600f5481565b3480156106d957600080fd5b506103556114e7565b61033e6106f03660046129fe565b6114f6565b34801561070157600080fd5b5061033e610710366004612915565b61175d565b34801561072157600080fd5b5061033e611768565b34801561073657600080fd5b5061040560155481565b34801561074c57600080fd5b5061033e61075b366004612899565b6117a3565b34801561076c57600080fd5b5061030961077b36600461299e565b6117d5565b34801561078c57600080fd5b5061040560125481565b3480156107a257600080fd5b5061033e6107b13660046129fe565b6117e4565b3480156107c257600080fd5b50610355611813565b3480156107d757600080fd5b506103556107e63660046129fe565b611820565b3480156107f757600080fd5b5061033e6108063660046129fe565b61199e565b34801561081757600080fd5b5061033e6108263660046129fe565b6119cd565b34801561083757600080fd5b5061040560105481565b34801561084d57600080fd5b5061033e61085c366004612a51565b6119fc565b34801561086d57600080fd5b5061033e61087c3660046129fe565b611a39565b34801561088d57600080fd5b5061030961089c36600461282a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108d657600080fd5b5061033e6108e5366004612a51565b611a68565b3480156108f657600080fd5b5061033e61090536600461280f565b611aa5565b60006001600160e01b0319821663780e9d6360e01b148061092f575061092f82611b3d565b92915050565b600a546001600160a01b031633146109685760405162461bcd60e51b815260040161095f90612c93565b60405180910390fd5b6013805460ff1916911515919091179055565b60606000805461098a90612dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546109b690612dd8565b8015610a035780601f106109d857610100808354040283529160200191610a03565b820191906000526020600020905b8154815290600101906020018083116109e657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161095f565b506000908152600460205260409020546001600160a01b031690565b600d8054610aaf90612dd8565b80601f0160208091040260200160405190810160405280929190818152602001828054610adb90612dd8565b8015610b285780601f10610afd57610100808354040283529160200191610b28565b820191906000526020600020905b815481529060010190602001808311610b0b57829003601f168201915b505050505081565b6000610b3b82611348565b9050806001600160a01b0316836001600160a01b03161415610ba95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161095f565b336001600160a01b0382161480610bc55750610bc5813361089c565b610c375760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161095f565b610c418383611b8d565b505050565b6000610c558360165484611bfb565b9392505050565b610c663382611c11565b610c825760405162461bcd60e51b815260040161095f90612cc8565b610c41838383611d08565b600a546001600160a01b03163314610cb75760405162461bcd60e51b815260040161095f90612c93565b6000610cc260085490565b601054909150610cd3826001612d4a565b1115610d1a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161095f565b60015b838111610d73576001600160a01b0383166000908152601460205260408120805491610d4883612e13565b90915550610d61905083610d5c8385612d4a565b611eaf565b80610d6b81612e13565b915050610d1d565b50505050565b6000610d84836113fb565b8210610de65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161095f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e395760405162461bcd60e51b815260040161095f90612c93565b6000610e4d600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e97576040519150601f19603f3d011682016040523d82523d6000602084013e610e9c565b606091505b5050905080610eaa57600080fd5b50565b610c41838383604051806020016040528060008152506117a3565b60606000610ed5836113fb565b905060008167ffffffffffffffff811115610ef257610ef2612e9a565b604051908082528060200260200182016040528015610f1b578160200160208202803683370190505b50905060005b82811015610f6257610f338582610d79565b828281518110610f4557610f45612e84565b602090810291909101015280610f5a81612e13565b915050610f21565b509392505050565b600a546001600160a01b03163314610f945760405162461bcd60e51b815260040161095f90612c93565b600e55565b6040516bffffffffffffffffffffffff193360601b166020820152610fd8908290603401604051602081830303815290604052805190602001206117d5565b156110ce576000610fe860085490565b601054909150610ff9826001612d4a565b11156110405760405162461bcd60e51b81526020600482015260166024820152751391950814dd5c1c1b1e4813585e081c995858da195960521b604482015260640161095f565b33600090815260146020526040902054801561109e5760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161095f565b3360009081526014602052604081208054916110b983612e13565b90915550610c41905033610d5c846001612d4a565b6040516bffffffffffffffffffffffff193360601b16602082015261110d90829060340160405160208183030381529060405280519060200120610c46565b6111655760405162461bcd60e51b8152602060048201526024808201527f546869732041646472657373206973206e6f7420696e207468652057686974656044820152631b1a5cdd60e21b606482015260840161095f565b600061117060085490565b601054909150611181826001612d4a565b11156111c85760405162461bcd60e51b81526020600482015260166024820152751391950814dd5c1c1b1e4813585e081c995858da195960521b604482015260640161095f565b33600090815260146020526040902054600281106112285760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161095f565b60015b60028111610d735733600090815260146020526040812080549161124e83612e13565b90915550611262905033610d5c8386612d4a565b8061126c81612e13565b91505061122b565b600061127f60085490565b82106112e25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161095f565b600882815481106112f5576112f5612e84565b90600052602060002001549050919050565b600a546001600160a01b031633146113315760405162461bcd60e51b815260040161095f90612c93565b805161134490600b90602084019061266c565b5050565b6000818152600260205260408120546001600160a01b03168061092f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161095f565b600b8054610aaf90612dd8565b600a546001600160a01b031633146113f65760405162461bcd60e51b815260040161095f90612c93565b601055565b60006001600160a01b0382166114665760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161095f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114ac5760405162461bcd60e51b815260040161095f90612c93565b6114b66000611ec9565b565b600a546001600160a01b031633146114e25760405162461bcd60e51b815260040161095f90612c93565b601155565b60606001805461098a90612dd8565b6000611501336113fb565b60135490915060ff16156115505760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161095f565b600061155b60085490565b9050600083116115ad5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161095f565b6010546115ba8483612d4a565b11156115ff5760405162461bcd60e51b815260206004820152601460248201527314dd5c1c1b1e48131a5b5a5d081c995858da195960621b604482015260640161095f565b600a546001600160a01b031633146117125782600e5461161f9190612d76565b3410156116635760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161095f565b6011548311156116c15760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161095f565b60125482106117125760405162461bcd60e51b815260206004820152601a60248201527f4d6178204e4654207065722077616c6c65742072656163686564000000000000604482015260640161095f565b60015b838111610d735733600090815260146020526040812080549161173783612e13565b9091555061174b905033610d5c8385612d4a565b8061175581612e13565b915050611715565b611344338383611f1b565b600a546001600160a01b031633146117925760405162461bcd60e51b815260040161095f90612c93565b6013805461ff001916610100179055565b6117ad3383611c11565b6117c95760405162461bcd60e51b815260040161095f90612cc8565b610d7384848484611fea565b6000610c558360155484611bfb565b600a546001600160a01b0316331461180e5760405162461bcd60e51b815260040161095f90612c93565b601555565b600c8054610aaf90612dd8565b6000818152600260205260409020546060906001600160a01b031661189f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161095f565b601354610100900460ff1661194057600d80546118bb90612dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546118e790612dd8565b80156119345780601f1061190957610100808354040283529160200191611934565b820191906000526020600020905b81548152906001019060200180831161191757829003601f168201915b50505050509050919050565b600061194a61201d565b9050600081511161196a5760405180602001604052806000815250610c55565b806119748461202c565b600c60405160200161198893929190612ae9565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146119c85760405162461bcd60e51b815260040161095f90612c93565b601255565b600a546001600160a01b031633146119f75760405162461bcd60e51b815260040161095f90612c93565b600f55565b600a546001600160a01b03163314611a265760405162461bcd60e51b815260040161095f90612c93565b805161134490600c90602084019061266c565b600a546001600160a01b03163314611a635760405162461bcd60e51b815260040161095f90612c93565b601655565b600a546001600160a01b03163314611a925760405162461bcd60e51b815260040161095f90612c93565b805161134490600d90602084019061266c565b600a546001600160a01b03163314611acf5760405162461bcd60e51b815260040161095f90612c93565b6001600160a01b038116611b345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095f565b610eaa81611ec9565b60006001600160e01b031982166380ac58cd60e01b1480611b6e57506001600160e01b03198216635b5e139f60e01b145b8061092f57506301ffc9a760e01b6001600160e01b031983161461092f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bc282611348565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611c08858461212a565b14949350505050565b6000818152600260205260408120546001600160a01b0316611c8a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161095f565b6000611c9583611348565b9050806001600160a01b0316846001600160a01b03161480611cd05750836001600160a01b0316611cc584610a0d565b6001600160a01b0316145b80611d0057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d1b82611348565b6001600160a01b031614611d7f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161095f565b6001600160a01b038216611de15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161095f565b611dec838383612196565b611df7600082611b8d565b6001600160a01b0383166000908152600360205260408120805460019290611e20908490612d95565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e4e908490612d4a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61134482826040518060200160405280600081525061224e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f7d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161095f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ff5848484611d08565b61200184848484612281565b610d735760405162461bcd60e51b815260040161095f90612c41565b6060600b805461098a90612dd8565b6060816120505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561207a578061206481612e13565b91506120739050600a83612d62565b9150612054565b60008167ffffffffffffffff81111561209557612095612e9a565b6040519080825280601f01601f1916602001820160405280156120bf576020820181803683370190505b5090505b8415611d00576120d4600183612d95565b91506120e1600a86612e2e565b6120ec906030612d4a565b60f81b81838151811061210157612101612e84565b60200101906001600160f81b031916908160001a905350612123600a86612d62565b94506120c3565b600081815b8451811015610f6257600085828151811061214c5761214c612e84565b602002602001015190508083116121725760008381526020829052604090209250612183565b600081815260208490526040902092505b508061218e81612e13565b91505061212f565b6001600160a01b0383166121f1576121ec81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612214565b816001600160a01b0316836001600160a01b03161461221457612214838261238e565b6001600160a01b03821661222b57610c418161242b565b826001600160a01b0316826001600160a01b031614610c4157610c4182826124da565b612258838361251e565b6122656000848484612281565b610c415760405162461bcd60e51b815260040161095f90612c41565b60006001600160a01b0384163b1561238357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122c5903390899088908890600401612bad565b602060405180830381600087803b1580156122df57600080fd5b505af192505050801561230f575060408051601f3d908101601f1916820190925261230c91810190612a34565b60015b612369573d80801561233d576040519150601f19603f3d011682016040523d82523d6000602084013e612342565b606091505b5080516123615760405162461bcd60e51b815260040161095f90612c41565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d00565b506001949350505050565b6000600161239b846113fb565b6123a59190612d95565b6000838152600760205260409020549091508082146123f8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061243d90600190612d95565b6000838152600960205260408120546008805493945090928490811061246557612465612e84565b90600052602060002001549050806008838154811061248657612486612e84565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124be576124be612e6e565b6001900381819060005260206000200160009055905550505050565b60006124e5836113fb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161095f565b6000818152600260205260409020546001600160a01b0316156125d95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161095f565b6125e560008383612196565b6001600160a01b038216600090815260036020526040812080546001929061260e908490612d4a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461267890612dd8565b90600052602060002090601f01602090048101928261269a57600085556126e0565b82601f106126b357805160ff19168380011785556126e0565b828001600101855582156126e0579182015b828111156126e05782518255916020019190600101906126c5565b506126ec9291506126f0565b5090565b5b808211156126ec57600081556001016126f1565b600067ffffffffffffffff83111561271f5761271f612e9a565b612732601f8401601f1916602001612d19565b905082815283838301111561274657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461277457600080fd5b919050565b600082601f83011261278a57600080fd5b8135602067ffffffffffffffff8211156127a6576127a6612e9a565b8160051b6127b5828201612d19565b8381528281019086840183880185018910156127d057600080fd5b600093505b858410156127f35780358352600193909301929184019184016127d5565b50979650505050505050565b8035801515811461277457600080fd5b60006020828403121561282157600080fd5b610c558261275d565b6000806040838503121561283d57600080fd5b6128468361275d565b91506128546020840161275d565b90509250929050565b60008060006060848603121561287257600080fd5b61287b8461275d565b92506128896020850161275d565b9150604084013590509250925092565b600080600080608085870312156128af57600080fd5b6128b88561275d565b93506128c66020860161275d565b925060408501359150606085013567ffffffffffffffff8111156128e957600080fd5b8501601f810187136128fa57600080fd5b61290987823560208401612705565b91505092959194509250565b6000806040838503121561292857600080fd5b6129318361275d565b9150612854602084016127ff565b6000806040838503121561295257600080fd5b61295b8361275d565b946020939093013593505050565b60006020828403121561297b57600080fd5b813567ffffffffffffffff81111561299257600080fd5b611d0084828501612779565b600080604083850312156129b157600080fd5b823567ffffffffffffffff8111156129c857600080fd5b6129d485828601612779565b95602094909401359450505050565b6000602082840312156129f557600080fd5b610c55826127ff565b600060208284031215612a1057600080fd5b5035919050565b600060208284031215612a2957600080fd5b8135610c5581612eb0565b600060208284031215612a4657600080fd5b8151610c5581612eb0565b600060208284031215612a6357600080fd5b813567ffffffffffffffff811115612a7a57600080fd5b8201601f81018413612a8b57600080fd5b611d0084823560208401612705565b60008060408385031215612aad57600080fd5b823591506128546020840161275d565b60008151808452612ad5816020860160208601612dac565b601f01601f19169290920160200192915050565b600084516020612afc8285838a01612dac565b855191840191612b0f8184848a01612dac565b8554920191600090600181811c9080831680612b2c57607f831692505b858310811415612b4a57634e487b7160e01b85526022600452602485fd5b808015612b5e5760018114612b6f57612b9c565b60ff19851688528388019550612b9c565b60008b81526020902060005b85811015612b945781548a820152908401908801612b7b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612be090830184612abd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c2257835183529284019291840191600101612c06565b50909695505050505050565b602081526000610c556020830184612abd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d4257612d42612e9a565b604052919050565b60008219821115612d5d57612d5d612e42565b500190565b600082612d7157612d71612e58565b500490565b6000816000190483118215151615612d9057612d90612e42565b500290565b600082821015612da757612da7612e42565b500390565b60005b83811015612dc7578181015183820152602001612daf565b83811115610d735750506000910152565b600181811c90821680612dec57607f821691505b60208210811415612e0d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2757612e27612e42565b5060010190565b600082612e3d57612e3d612e58565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610eaa57600080fdfea26469706673582212202b26458035792f8c60f421fe5210e0db14877a450f0f8bb0877700c26464cfec64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000015576f6c766573206f6620446f67652053747265657400000000000000000000000000000000000000000000000000000000000000000000000000000000000004574f4453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5642767a5775723348427235414e6853357477334a4b4c51586f41325869316d567068594a484b5a6d715a4e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000048697066733a2f2f516d534c577433726a7a79455473645a56505a52334a4b335639357334696f4a4d394573694857344d68695854432f776f64735f756e72657665616c2e6a736f6e000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102e45760003560e01c80636c0360eb11610190578063b8a20ed0116100dc578063d49479eb11610095578063df9132ef1161006f578063df9132ef14610861578063e985e9c514610881578063f2c4ce1e146108ca578063f2fde38b146108ea57600080fd5b8063d49479eb1461080b578063d5abeb011461082b578063da3ef23f1461084157600080fd5b8063b8a20ed014610760578063ba7d2c7614610780578063bd32fb6614610796578063c6682862146107b6578063c87b56dd146107cb578063d0eb26b0146107eb57600080fd5b80639257e04411610149578063a22cb46511610123578063a22cb465146106f5578063a475b5dd14610715578063aa98e0c61461072a578063b88d4fde1461074057600080fd5b80639257e044146106b757806395d89b41146106cd578063a0712d68146106e257600080fd5b80636c0360eb1461060f5780636f8b44b01461062457806370a0823114610644578063715018a6146106645780637f00c7a6146106795780638da5cb5b1461069957600080fd5b8063261d3b211161024f57806344d843811161020857806351830227116101e2578063518302271461059657806355f804b3146105b55780635c975abb146105d55780636352211e146105ef57600080fd5b806344d84381146105405780634f41d114146105605780634f6ccce71461057657600080fd5b8063261d3b211461048b5780632f745c59146104ab5780633ccfd60b146104cb57806342842e0e146104d3578063438b6300146104f357806344a0d68a1461052057600080fd5b80630b548483116102a15780630b548483146103cf57806313faede6146103ef57806318160ddd1461041357806318cae26914610428578063239c70ae1461045557806323b872dd1461046b57600080fd5b806301ffc9a7146102e957806302329a291461031e57806306fdde0314610340578063081812fc14610362578063081c8c441461039a578063095ea7b3146103af575b600080fd5b3480156102f557600080fd5b50610309610304366004612a17565b61090a565b60405190151581526020015b60405180910390f35b34801561032a57600080fd5b5061033e6103393660046129e3565b610935565b005b34801561034c57600080fd5b5061035561097b565b6040516103159190612c2e565b34801561036e57600080fd5b5061038261037d3660046129fe565b610a0d565b6040516001600160a01b039091168152602001610315565b3480156103a657600080fd5b50610355610aa2565b3480156103bb57600080fd5b5061033e6103ca36600461293f565b610b30565b3480156103db57600080fd5b506103096103ea36600461299e565b610c46565b3480156103fb57600080fd5b50610405600e5481565b604051908152602001610315565b34801561041f57600080fd5b50600854610405565b34801561043457600080fd5b5061040561044336600461280f565b60146020526000908152604090205481565b34801561046157600080fd5b5061040560115481565b34801561047757600080fd5b5061033e61048636600461285d565b610c5c565b34801561049757600080fd5b5061033e6104a6366004612a9a565b610c8d565b3480156104b757600080fd5b506104056104c636600461293f565b610d79565b61033e610e0f565b3480156104df57600080fd5b5061033e6104ee36600461285d565b610ead565b3480156104ff57600080fd5b5061051361050e36600461280f565b610ec8565b6040516103159190612bea565b34801561052c57600080fd5b5061033e61053b3660046129fe565b610f6a565b34801561054c57600080fd5b5061033e61055b366004612969565b610f99565b34801561056c57600080fd5b5061040560165481565b34801561058257600080fd5b506104056105913660046129fe565b611274565b3480156105a257600080fd5b5060135461030990610100900460ff1681565b3480156105c157600080fd5b5061033e6105d0366004612a51565b611307565b3480156105e157600080fd5b506013546103099060ff1681565b3480156105fb57600080fd5b5061038261060a3660046129fe565b611348565b34801561061b57600080fd5b506103556113bf565b34801561063057600080fd5b5061033e61063f3660046129fe565b6113cc565b34801561065057600080fd5b5061040561065f36600461280f565b6113fb565b34801561067057600080fd5b5061033e611482565b34801561068557600080fd5b5061033e6106943660046129fe565b6114b8565b3480156106a557600080fd5b50600a546001600160a01b0316610382565b3480156106c357600080fd5b50610405600f5481565b3480156106d957600080fd5b506103556114e7565b61033e6106f03660046129fe565b6114f6565b34801561070157600080fd5b5061033e610710366004612915565b61175d565b34801561072157600080fd5b5061033e611768565b34801561073657600080fd5b5061040560155481565b34801561074c57600080fd5b5061033e61075b366004612899565b6117a3565b34801561076c57600080fd5b5061030961077b36600461299e565b6117d5565b34801561078c57600080fd5b5061040560125481565b3480156107a257600080fd5b5061033e6107b13660046129fe565b6117e4565b3480156107c257600080fd5b50610355611813565b3480156107d757600080fd5b506103556107e63660046129fe565b611820565b3480156107f757600080fd5b5061033e6108063660046129fe565b61199e565b34801561081757600080fd5b5061033e6108263660046129fe565b6119cd565b34801561083757600080fd5b5061040560105481565b34801561084d57600080fd5b5061033e61085c366004612a51565b6119fc565b34801561086d57600080fd5b5061033e61087c3660046129fe565b611a39565b34801561088d57600080fd5b5061030961089c36600461282a565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b3480156108d657600080fd5b5061033e6108e5366004612a51565b611a68565b3480156108f657600080fd5b5061033e61090536600461280f565b611aa5565b60006001600160e01b0319821663780e9d6360e01b148061092f575061092f82611b3d565b92915050565b600a546001600160a01b031633146109685760405162461bcd60e51b815260040161095f90612c93565b60405180910390fd5b6013805460ff1916911515919091179055565b60606000805461098a90612dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546109b690612dd8565b8015610a035780601f106109d857610100808354040283529160200191610a03565b820191906000526020600020905b8154815290600101906020018083116109e657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610a865760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161095f565b506000908152600460205260409020546001600160a01b031690565b600d8054610aaf90612dd8565b80601f0160208091040260200160405190810160405280929190818152602001828054610adb90612dd8565b8015610b285780601f10610afd57610100808354040283529160200191610b28565b820191906000526020600020905b815481529060010190602001808311610b0b57829003601f168201915b505050505081565b6000610b3b82611348565b9050806001600160a01b0316836001600160a01b03161415610ba95760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161095f565b336001600160a01b0382161480610bc55750610bc5813361089c565b610c375760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161095f565b610c418383611b8d565b505050565b6000610c558360165484611bfb565b9392505050565b610c663382611c11565b610c825760405162461bcd60e51b815260040161095f90612cc8565b610c41838383611d08565b600a546001600160a01b03163314610cb75760405162461bcd60e51b815260040161095f90612c93565b6000610cc260085490565b601054909150610cd3826001612d4a565b1115610d1a5760405162461bcd60e51b81526020600482015260166024820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604482015260640161095f565b60015b838111610d73576001600160a01b0383166000908152601460205260408120805491610d4883612e13565b90915550610d61905083610d5c8385612d4a565b611eaf565b80610d6b81612e13565b915050610d1d565b50505050565b6000610d84836113fb565b8210610de65760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161095f565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e395760405162461bcd60e51b815260040161095f90612c93565b6000610e4d600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610e97576040519150601f19603f3d011682016040523d82523d6000602084013e610e9c565b606091505b5050905080610eaa57600080fd5b50565b610c41838383604051806020016040528060008152506117a3565b60606000610ed5836113fb565b905060008167ffffffffffffffff811115610ef257610ef2612e9a565b604051908082528060200260200182016040528015610f1b578160200160208202803683370190505b50905060005b82811015610f6257610f338582610d79565b828281518110610f4557610f45612e84565b602090810291909101015280610f5a81612e13565b915050610f21565b509392505050565b600a546001600160a01b03163314610f945760405162461bcd60e51b815260040161095f90612c93565b600e55565b6040516bffffffffffffffffffffffff193360601b166020820152610fd8908290603401604051602081830303815290604052805190602001206117d5565b156110ce576000610fe860085490565b601054909150610ff9826001612d4a565b11156110405760405162461bcd60e51b81526020600482015260166024820152751391950814dd5c1c1b1e4813585e081c995858da195960521b604482015260640161095f565b33600090815260146020526040902054801561109e5760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161095f565b3360009081526014602052604081208054916110b983612e13565b90915550610c41905033610d5c846001612d4a565b6040516bffffffffffffffffffffffff193360601b16602082015261110d90829060340160405160208183030381529060405280519060200120610c46565b6111655760405162461bcd60e51b8152602060048201526024808201527f546869732041646472657373206973206e6f7420696e207468652057686974656044820152631b1a5cdd60e21b606482015260840161095f565b600061117060085490565b601054909150611181826001612d4a565b11156111c85760405162461bcd60e51b81526020600482015260166024820152751391950814dd5c1c1b1e4813585e081c995858da195960521b604482015260640161095f565b33600090815260146020526040902054600281106112285760405162461bcd60e51b815260206004820152601c60248201527f4d6178204e465420706572206164647265737320657863656564656400000000604482015260640161095f565b60015b60028111610d735733600090815260146020526040812080549161124e83612e13565b90915550611262905033610d5c8386612d4a565b8061126c81612e13565b91505061122b565b600061127f60085490565b82106112e25760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161095f565b600882815481106112f5576112f5612e84565b90600052602060002001549050919050565b600a546001600160a01b031633146113315760405162461bcd60e51b815260040161095f90612c93565b805161134490600b90602084019061266c565b5050565b6000818152600260205260408120546001600160a01b03168061092f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161095f565b600b8054610aaf90612dd8565b600a546001600160a01b031633146113f65760405162461bcd60e51b815260040161095f90612c93565b601055565b60006001600160a01b0382166114665760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161095f565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114ac5760405162461bcd60e51b815260040161095f90612c93565b6114b66000611ec9565b565b600a546001600160a01b031633146114e25760405162461bcd60e51b815260040161095f90612c93565b601155565b60606001805461098a90612dd8565b6000611501336113fb565b60135490915060ff16156115505760405162461bcd60e51b81526020600482015260166024820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604482015260640161095f565b600061155b60085490565b9050600083116115ad5760405162461bcd60e51b815260206004820152601b60248201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604482015260640161095f565b6010546115ba8483612d4a565b11156115ff5760405162461bcd60e51b815260206004820152601460248201527314dd5c1c1b1e48131a5b5a5d081c995858da195960621b604482015260640161095f565b600a546001600160a01b031633146117125782600e5461161f9190612d76565b3410156116635760405162461bcd60e51b8152602060048201526012602482015271696e73756666696369656e742066756e647360701b604482015260640161095f565b6011548311156116c15760405162461bcd60e51b8152602060048201526024808201527f6d6178206d696e7420616d6f756e74207065722073657373696f6e20657863656044820152631959195960e21b606482015260840161095f565b60125482106117125760405162461bcd60e51b815260206004820152601a60248201527f4d6178204e4654207065722077616c6c65742072656163686564000000000000604482015260640161095f565b60015b838111610d735733600090815260146020526040812080549161173783612e13565b9091555061174b905033610d5c8385612d4a565b8061175581612e13565b915050611715565b611344338383611f1b565b600a546001600160a01b031633146117925760405162461bcd60e51b815260040161095f90612c93565b6013805461ff001916610100179055565b6117ad3383611c11565b6117c95760405162461bcd60e51b815260040161095f90612cc8565b610d7384848484611fea565b6000610c558360155484611bfb565b600a546001600160a01b0316331461180e5760405162461bcd60e51b815260040161095f90612c93565b601555565b600c8054610aaf90612dd8565b6000818152600260205260409020546060906001600160a01b031661189f5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161095f565b601354610100900460ff1661194057600d80546118bb90612dd8565b80601f01602080910402602001604051908101604052809291908181526020018280546118e790612dd8565b80156119345780601f1061190957610100808354040283529160200191611934565b820191906000526020600020905b81548152906001019060200180831161191757829003601f168201915b50505050509050919050565b600061194a61201d565b9050600081511161196a5760405180602001604052806000815250610c55565b806119748461202c565b600c60405160200161198893929190612ae9565b6040516020818303038152906040529392505050565b600a546001600160a01b031633146119c85760405162461bcd60e51b815260040161095f90612c93565b601255565b600a546001600160a01b031633146119f75760405162461bcd60e51b815260040161095f90612c93565b600f55565b600a546001600160a01b03163314611a265760405162461bcd60e51b815260040161095f90612c93565b805161134490600c90602084019061266c565b600a546001600160a01b03163314611a635760405162461bcd60e51b815260040161095f90612c93565b601655565b600a546001600160a01b03163314611a925760405162461bcd60e51b815260040161095f90612c93565b805161134490600d90602084019061266c565b600a546001600160a01b03163314611acf5760405162461bcd60e51b815260040161095f90612c93565b6001600160a01b038116611b345760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161095f565b610eaa81611ec9565b60006001600160e01b031982166380ac58cd60e01b1480611b6e57506001600160e01b03198216635b5e139f60e01b145b8061092f57506301ffc9a760e01b6001600160e01b031983161461092f565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611bc282611348565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600082611c08858461212a565b14949350505050565b6000818152600260205260408120546001600160a01b0316611c8a5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161095f565b6000611c9583611348565b9050806001600160a01b0316846001600160a01b03161480611cd05750836001600160a01b0316611cc584610a0d565b6001600160a01b0316145b80611d0057506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611d1b82611348565b6001600160a01b031614611d7f5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b606482015260840161095f565b6001600160a01b038216611de15760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161095f565b611dec838383612196565b611df7600082611b8d565b6001600160a01b0383166000908152600360205260408120805460019290611e20908490612d95565b90915550506001600160a01b0382166000908152600360205260408120805460019290611e4e908490612d4a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b61134482826040518060200160405280600081525061224e565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611f7d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161095f565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611ff5848484611d08565b61200184848484612281565b610d735760405162461bcd60e51b815260040161095f90612c41565b6060600b805461098a90612dd8565b6060816120505750506040805180820190915260018152600360fc1b602082015290565b8160005b811561207a578061206481612e13565b91506120739050600a83612d62565b9150612054565b60008167ffffffffffffffff81111561209557612095612e9a565b6040519080825280601f01601f1916602001820160405280156120bf576020820181803683370190505b5090505b8415611d00576120d4600183612d95565b91506120e1600a86612e2e565b6120ec906030612d4a565b60f81b81838151811061210157612101612e84565b60200101906001600160f81b031916908160001a905350612123600a86612d62565b94506120c3565b600081815b8451811015610f6257600085828151811061214c5761214c612e84565b602002602001015190508083116121725760008381526020829052604090209250612183565b600081815260208490526040902092505b508061218e81612e13565b91505061212f565b6001600160a01b0383166121f1576121ec81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612214565b816001600160a01b0316836001600160a01b03161461221457612214838261238e565b6001600160a01b03821661222b57610c418161242b565b826001600160a01b0316826001600160a01b031614610c4157610c4182826124da565b612258838361251e565b6122656000848484612281565b610c415760405162461bcd60e51b815260040161095f90612c41565b60006001600160a01b0384163b1561238357604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906122c5903390899088908890600401612bad565b602060405180830381600087803b1580156122df57600080fd5b505af192505050801561230f575060408051601f3d908101601f1916820190925261230c91810190612a34565b60015b612369573d80801561233d576040519150601f19603f3d011682016040523d82523d6000602084013e612342565b606091505b5080516123615760405162461bcd60e51b815260040161095f90612c41565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611d00565b506001949350505050565b6000600161239b846113fb565b6123a59190612d95565b6000838152600760205260409020549091508082146123f8576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061243d90600190612d95565b6000838152600960205260408120546008805493945090928490811061246557612465612e84565b90600052602060002001549050806008838154811061248657612486612e84565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806124be576124be612e6e565b6001900381819060005260206000200160009055905550505050565b60006124e5836113fb565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166125745760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161095f565b6000818152600260205260409020546001600160a01b0316156125d95760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161095f565b6125e560008383612196565b6001600160a01b038216600090815260036020526040812080546001929061260e908490612d4a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b82805461267890612dd8565b90600052602060002090601f01602090048101928261269a57600085556126e0565b82601f106126b357805160ff19168380011785556126e0565b828001600101855582156126e0579182015b828111156126e05782518255916020019190600101906126c5565b506126ec9291506126f0565b5090565b5b808211156126ec57600081556001016126f1565b600067ffffffffffffffff83111561271f5761271f612e9a565b612732601f8401601f1916602001612d19565b905082815283838301111561274657600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461277457600080fd5b919050565b600082601f83011261278a57600080fd5b8135602067ffffffffffffffff8211156127a6576127a6612e9a565b8160051b6127b5828201612d19565b8381528281019086840183880185018910156127d057600080fd5b600093505b858410156127f35780358352600193909301929184019184016127d5565b50979650505050505050565b8035801515811461277457600080fd5b60006020828403121561282157600080fd5b610c558261275d565b6000806040838503121561283d57600080fd5b6128468361275d565b91506128546020840161275d565b90509250929050565b60008060006060848603121561287257600080fd5b61287b8461275d565b92506128896020850161275d565b9150604084013590509250925092565b600080600080608085870312156128af57600080fd5b6128b88561275d565b93506128c66020860161275d565b925060408501359150606085013567ffffffffffffffff8111156128e957600080fd5b8501601f810187136128fa57600080fd5b61290987823560208401612705565b91505092959194509250565b6000806040838503121561292857600080fd5b6129318361275d565b9150612854602084016127ff565b6000806040838503121561295257600080fd5b61295b8361275d565b946020939093013593505050565b60006020828403121561297b57600080fd5b813567ffffffffffffffff81111561299257600080fd5b611d0084828501612779565b600080604083850312156129b157600080fd5b823567ffffffffffffffff8111156129c857600080fd5b6129d485828601612779565b95602094909401359450505050565b6000602082840312156129f557600080fd5b610c55826127ff565b600060208284031215612a1057600080fd5b5035919050565b600060208284031215612a2957600080fd5b8135610c5581612eb0565b600060208284031215612a4657600080fd5b8151610c5581612eb0565b600060208284031215612a6357600080fd5b813567ffffffffffffffff811115612a7a57600080fd5b8201601f81018413612a8b57600080fd5b611d0084823560208401612705565b60008060408385031215612aad57600080fd5b823591506128546020840161275d565b60008151808452612ad5816020860160208601612dac565b601f01601f19169290920160200192915050565b600084516020612afc8285838a01612dac565b855191840191612b0f8184848a01612dac565b8554920191600090600181811c9080831680612b2c57607f831692505b858310811415612b4a57634e487b7160e01b85526022600452602485fd5b808015612b5e5760018114612b6f57612b9c565b60ff19851688528388019550612b9c565b60008b81526020902060005b85811015612b945781548a820152908401908801612b7b565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612be090830184612abd565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c2257835183529284019291840191600101612c06565b50909695505050505050565b602081526000610c556020830184612abd565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612d4257612d42612e9a565b604052919050565b60008219821115612d5d57612d5d612e42565b500190565b600082612d7157612d71612e58565b500490565b6000816000190483118215151615612d9057612d90612e42565b500290565b600082821015612da757612da7612e42565b500390565b60005b83811015612dc7578181015183820152602001612daf565b83811115610d735750506000910152565b600181811c90821680612dec57607f821691505b60208210811415612e0d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612e2757612e27612e42565b5060010190565b600082612e3d57612e3d612e58565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610eaa57600080fdfea26469706673582212202b26458035792f8c60f421fe5210e0db14877a450f0f8bb0877700c26464cfec64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000001600000000000000000000000000000000000000000000000000000000000000015576f6c766573206f6620446f67652053747265657400000000000000000000000000000000000000000000000000000000000000000000000000000000000004574f4453000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5642767a5775723348427235414e6853357477334a4b4c51586f41325869316d567068594a484b5a6d715a4e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000048697066733a2f2f516d534c577433726a7a79455473645a56505a52334a4b335639357334696f4a4d394573694857344d68695854432f776f64735f756e72657665616c2e6a736f6e000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Wolves of Doge Street
Arg [1] : _symbol (string): WODS
Arg [2] : _initBaseURI (string): ipfs://QmVBvzWur3HBr5ANhS5tw3JKLQXoA2Xi1mVphYJHKZmqZN/
Arg [3] : _initNotRevealedUri (string): ipfs://QmSLWt3rjzyETsdZVPZR3JK3V95s4ioJM9EsiHW4MhiXTC/wods_unreveal.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000015
Arg [5] : 576f6c766573206f6620446f6765205374726565740000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 574f445300000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d5642767a5775723348427235414e6853357477334a4b4c
Arg [10] : 51586f41325869316d567068594a484b5a6d715a4e2f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000048
Arg [12] : 697066733a2f2f516d534c577433726a7a79455473645a56505a52334a4b3356
Arg [13] : 39357334696f4a4d394573694857344d68695854432f776f64735f756e726576
Arg [14] : 65616c2e6a736f6e000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

48228:7366:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41999:224;;;;;;;;;;-1:-1:-1;41999:224:0;;;;;:::i;:::-;;:::i;:::-;;;9762:14:1;;9755:22;9737:41;;9725:2;9710:18;41999:224:0;;;;;;;;55349:79;;;;;;;;;;-1:-1:-1;55349:79:0;;;;;:::i;:::-;;:::i;:::-;;28819:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30378:221::-;;;;;;;;;;-1:-1:-1;30378:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;8423:32:1;;;8405:51;;8393:2;8378:18;30378:221:0;8259:203:1;48382:28:0;;;;;;;;;;;;;:::i;29901:411::-;;;;;;;;;;-1:-1:-1;29901:411:0;;;;;:::i;:::-;;:::i;50505:194::-;;;;;;;;;;-1:-1:-1;50505:194:0;;;;;:::i;:::-;;:::i;48417:31::-;;;;;;;;;;;;;;;;;;;9935:25:1;;;9923:2;9908:18;48417:31:0;9789:177:1;42639:113:0;;;;;;;;;;-1:-1:-1;42727:10:0;:17;42639:113;;48691:55;;;;;;;;;;-1:-1:-1;48691:55:0;;;;;:::i;:::-;;;;;;;;;;;;;;48538:32;;;;;;;;;;;;;;;;31128:339;;;;;;;;;;-1:-1:-1;31128:339:0;;;;;:::i;:::-;;:::i;52502:347::-;;;;;;;;;;-1:-1:-1;52502:347:0;;;;;:::i;:::-;;:::i;42307:256::-;;;;;;;;;;-1:-1:-1;42307:256:0;;;;;:::i;:::-;;:::i;55436:155::-;;;:::i;31538:185::-;;;;;;;;;;-1:-1:-1;31538:185:0;;;;;:::i;:::-;;:::i;53150:390::-;;;;;;;;;;-1:-1:-1;53150:390:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;54494:86::-;;;;;;;;;;-1:-1:-1;54494:86:0;;;;;:::i;:::-;;:::i;50707:1112::-;;;;;;;;;;-1:-1:-1;50707:1112:0;;;;;:::i;:::-;;:::i;48876:113::-;;;;;;;;;;;;;;;;42829:233;;;;;;;;;;-1:-1:-1;42829:233:0;;;;;:::i;:::-;;:::i;48654:28::-;;;;;;;;;;-1:-1:-1;48654:28:0;;;;;;;;;;;54944:104;;;;;;;;;;-1:-1:-1;54944:104:0;;;;;:::i;:::-;;:::i;48621:26::-;;;;;;;;;;-1:-1:-1;48621:26:0;;;;;;;;28513:239;;;;;;;;;;-1:-1:-1;28513:239:0;;;;;:::i;:::-;;:::i;48310:21::-;;;;;;;;;;;;;:::i;54588:106::-;;;;;;;;;;-1:-1:-1;54588:106:0;;;;;:::i;:::-;;:::i;28243:208::-;;;;;;;;;;-1:-1:-1;28243:208:0;;;;;:::i;:::-;;:::i;7415:103::-;;;;;;;;;;;;;:::i;54814:122::-;;;;;;;;;;-1:-1:-1;54814:122:0;;;;;:::i;:::-;;:::i;6764:87::-;;;;;;;;;;-1:-1:-1;6837:6:0;;-1:-1:-1;;;;;6837:6:0;6764:87;;48455:38;;;;;;;;;;;;;;;;28988:104;;;;;;;;;;;;;:::i;49431:847::-;;;;;;:::i;:::-;;:::i;30671:155::-;;;;;;;;;;-1:-1:-1;30671:155:0;;;;;:::i;:::-;;:::i;54299:69::-;;;;;;;;;;;;;:::i;48755:112::-;;;;;;;;;;;;;;;;31794:328;;;;;;;;;;-1:-1:-1;31794:328:0;;;;;:::i;:::-;;:::i;50307:192::-;;;;;;;;;;-1:-1:-1;50307:192:0;;;;;:::i;:::-;;:::i;48577:37::-;;;;;;;;;;;;;;;;52857:122;;;;;;;;;;-1:-1:-1;52857:122:0;;;;;:::i;:::-;;:::i;48338:37::-;;;;;;;;;;;;;:::i;53548:725::-;;;;;;;;;;-1:-1:-1;53548:725:0;;;;;:::i;:::-;;:::i;54376:110::-;;;;;;;;;;-1:-1:-1;54376:110:0;;;;;:::i;:::-;;:::i;54702:104::-;;;;;;;;;;-1:-1:-1;54702:104:0;;;;;:::i;:::-;;:::i;48500:31::-;;;;;;;;;;;;;;;;55056:151;;;;;;;;;;-1:-1:-1;55056:151:0;;;;;:::i;:::-;;:::i;52985:124::-;;;;;;;;;;-1:-1:-1;52985:124:0;;;;;:::i;:::-;;:::i;30897:164::-;;;;;;;;;;-1:-1:-1;30897:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31018:25:0;;;30994:4;31018:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;30897:164;55215:126;;;;;;;;;;-1:-1:-1;55215:126:0;;;;;:::i;:::-;;:::i;7673:201::-;;;;;;;;;;-1:-1:-1;7673:201:0;;;;;:::i;:::-;;:::i;41999:224::-;42101:4;-1:-1:-1;;;;;;42125:50:0;;-1:-1:-1;;;42125:50:0;;:90;;;42179:36;42203:11;42179:23;:36::i;:::-;42118:97;41999:224;-1:-1:-1;;41999:224:0:o;55349:79::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;;;;;;;;;55405:6:::1;:15:::0;;-1:-1:-1;;55405:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;55349:79::o;28819:100::-;28873:13;28906:5;28899:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28819:100;:::o;30378:221::-;30454:7;33721:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33721:16:0;30474:73;;;;-1:-1:-1;;;30474:73:0;;16988:2:1;30474:73:0;;;16970:21:1;17027:2;17007:18;;;17000:30;17066:34;17046:18;;;17039:62;-1:-1:-1;;;17117:18:1;;;17110:42;17169:19;;30474:73:0;16786:408:1;30474:73:0;-1:-1:-1;30567:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30567:24:0;;30378:221::o;48382:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;29901:411::-;29982:13;29998:23;30013:7;29998:14;:23::i;:::-;29982:39;;30046:5;-1:-1:-1;;;;;30040:11:0;:2;-1:-1:-1;;;;;30040:11:0;;;30032:57;;;;-1:-1:-1;;;30032:57:0;;18886:2:1;30032:57:0;;;18868:21:1;18925:2;18905:18;;;18898:30;18964:34;18944:18;;;18937:62;-1:-1:-1;;;19015:18:1;;;19008:31;19056:19;;30032:57:0;18684:397:1;30032:57:0;5568:10;-1:-1:-1;;;;;30124:21:0;;;;:62;;-1:-1:-1;30149:37:0;30166:5;5568:10;30897:164;:::i;30149:37::-;30102:168;;;;-1:-1:-1;;;30102:168:0;;13919:2:1;30102:168:0;;;13901:21:1;13958:2;13938:18;;;13931:30;13997:34;13977:18;;;13970:62;14068:26;14048:18;;;14041:54;14112:19;;30102:168:0;13717:420:1;30102:168:0;30283:21;30292:2;30296:7;30283:8;:21::i;:::-;29971:341;29901:411;;:::o;50505:194::-;50609:4;50638:53;50657:5;50664:20;;50686:4;50638:18;:53::i;:::-;50631:60;50505:194;-1:-1:-1;;;50505:194:0:o;31128:339::-;31323:41;5568:10;31356:7;31323:18;:41::i;:::-;31315:103;;;;-1:-1:-1;;;31315:103:0;;;;;;;:::i;:::-;31431:28;31441:4;31447:2;31451:7;31431:9;:28::i;52502:347::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;52584:14:::1;52601:13;42727:10:::0;:17;;42639:113;52601:13:::1;52647:9;::::0;52584:30;;-1:-1:-1;52633:10:0::1;52584:30:::0;52642:1:::1;52633:10;:::i;:::-;:23;;52625:58;;;::::0;-1:-1:-1;;;52625:58:0;;15165:2:1;52625:58:0::1;::::0;::::1;15147:21:1::0;15204:2;15184:18;;;15177:30;-1:-1:-1;;;15223:18:1;;;15216:52;15285:18;;52625:58:0::1;14963:346:1::0;52625:58:0::1;52721:1;52704:138;52729:11;52724:1;:16;52704:138;;-1:-1:-1::0;;;;;52762:25:0;::::1;;::::0;;;:20:::1;:25;::::0;;;;:27;;;::::1;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;52804:26:0::1;::::0;-1:-1:-1;52814:3:0;52819:10:::1;52828:1:::0;52819:6;:10:::1;:::i;:::-;52804:9;:26::i;:::-;52742:3:::0;::::1;::::0;::::1;:::i;:::-;;;;52704:138;;;;52573:276;52502:347:::0;;:::o;42307:256::-;42404:7;42440:23;42457:5;42440:16;:23::i;:::-;42432:5;:31;42424:87;;;;-1:-1:-1;;;42424:87:0;;10746:2:1;42424:87:0;;;10728:21:1;10785:2;10765:18;;;10758:30;10824:34;10804:18;;;10797:62;-1:-1:-1;;;10875:18:1;;;10868:41;10926:19;;42424:87:0;10544:407:1;42424:87:0;-1:-1:-1;;;;;;42529:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;42307:256::o;55436:155::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;55493:7:::1;55514;6837:6:::0;;-1:-1:-1;;;;;6837:6:0;;6764:87;55514:7:::1;-1:-1:-1::0;;;;;55506:21:0::1;55535;55506:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55492:69;;;55580:2;55572:11;;;::::0;::::1;;55481:110;55436:155::o:0;31538:185::-;31676:39;31693:4;31699:2;31703:7;31676:39;;;;;;;;;;;;:16;:39::i;53150:390::-;53237:16;53271:23;53297:17;53307:6;53297:9;:17::i;:::-;53271:43;;53325:25;53367:15;53353:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53353:30:0;;53325:58;;53399:9;53394:113;53414:15;53410:1;:19;53394:113;;;53465:30;53485:6;53493:1;53465:19;:30::i;:::-;53451:8;53460:1;53451:11;;;;;;;;:::i;:::-;;;;;;;;;;:44;53431:3;;;;:::i;:::-;;;;53394:113;;;-1:-1:-1;53524:8:0;53150:390;-1:-1:-1;;;53150:390:0:o;54494:86::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;54557:4:::1;:15:::0;54494:86::o;50707:1112::-;50800:28;;-1:-1:-1;;50817:10:0;6432:2:1;6428:15;6424:53;50800:28:0;;;6412:66:1;50775:55:0;;50783:5;;6494:12:1;;50800:28:0;;;;;;;;;;;;50790:39;;;;;;50775:7;:55::i;:::-;50772:1040;;;50846:14;50863:13;42727:10;:17;;42639:113;50863:13;50913:9;;50846:30;;-1:-1:-1;50899:10:0;50846:30;50908:1;50899:10;:::i;:::-;:23;;50891:58;;;;-1:-1:-1;;;50891:58:0;;16637:2:1;50891:58:0;;;16619:21:1;16676:2;16656:18;;;16649:30;-1:-1:-1;;;16695:18:1;;;16688:52;16757:18;;50891:58:0;16435:346:1;50891:58:0;51026:10;50978:24;51005:32;;;:20;:32;;;;;;51060:21;;51052:62;;;;-1:-1:-1;;;51052:62:0;;18529:2:1;51052:62:0;;;18511:21:1;18568:2;18548:18;;;18541:30;18607;18587:18;;;18580:58;18655:18;;51052:62:0;18327:352:1;51052:62:0;51152:10;51131:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;51180:33:0;;-1:-1:-1;51190:10:0;51202;:6;51211:1;51202:10;:::i;50772:1040::-;51288:28;;-1:-1:-1;;51305:10:0;6432:2:1;6428:15;6424:53;51288:28:0;;;6412:66:1;51262:56:0;;51271:5;;6494:12:1;;51288:28:0;;;;;;;;;;;;51278:39;;;;;;51262:8;:56::i;:::-;51254:104;;;;-1:-1:-1;;;51254:104:0;;20466:2:1;51254:104:0;;;20448:21:1;20505:2;20485:18;;;20478:30;20544:34;20524:18;;;20517:62;-1:-1:-1;;;20595:18:1;;;20588:34;20639:19;;51254:104:0;20264:400:1;51254:104:0;51375:14;51392:13;42727:10;:17;;42639:113;51392:13;51442:9;;51375:30;;-1:-1:-1;51428:10:0;51375:30;51437:1;51428:10;:::i;:::-;:23;;51420:58;;;;-1:-1:-1;;;51420:58:0;;16637:2:1;51420:58:0;;;16619:21:1;16676:2;16656:18;;;16649:30;-1:-1:-1;;;16695:18:1;;;16688:52;16757:18;;51420:58:0;16435:346:1;51420:58:0;51543:10;51495:24;51522:32;;;:20;:32;;;;;;51596:1;51577:20;;51569:61;;;;-1:-1:-1;;;51569:61:0;;18529:2:1;51569:61:0;;;18511:21:1;18568:2;18548:18;;;18541:30;18607;18587:18;;;18580:58;18655:18;;51569:61:0;18327:352:1;51569:61:0;51664:1;51647:154;51672:1;51667;:6;51647:154;;51720:10;51699:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;51752:33:0;;-1:-1:-1;51762:10:0;51774;51783:1;51774:6;:10;:::i;51752:33::-;51675:3;;;;:::i;:::-;;;;51647:154;;42829:233;42904:7;42940:30;42727:10;:17;;42639:113;42940:30;42932:5;:38;42924:95;;;;-1:-1:-1;;;42924:95:0;;20053:2:1;42924:95:0;;;20035:21:1;20092:2;20072:18;;;20065:30;20131:34;20111:18;;;20104:62;-1:-1:-1;;;20182:18:1;;;20175:42;20234:19;;42924:95:0;19851:408:1;42924:95:0;43037:10;43048:5;43037:17;;;;;;;;:::i;:::-;;;;;;;;;43030:24;;42829:233;;;:::o;54944:104::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;55019:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54944:104:::0;:::o;28513:239::-;28585:7;28621:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28621:16:0;28656:19;28648:73;;;;-1:-1:-1;;;28648:73:0;;14755:2:1;28648:73:0;;;14737:21:1;14794:2;14774:18;;;14767:30;14833:34;14813:18;;;14806:62;-1:-1:-1;;;14884:18:1;;;14877:39;14933:19;;28648:73:0;14553:405:1;48310:21:0;;;;;;;:::i;54588:106::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;54661:9:::1;:25:::0;54588:106::o;28243:208::-;28315:7;-1:-1:-1;;;;;28343:19:0;;28335:74;;;;-1:-1:-1;;;28335:74:0;;14344:2:1;28335:74:0;;;14326:21:1;14383:2;14363:18;;;14356:30;14422:34;14402:18;;;14395:62;-1:-1:-1;;;14473:18:1;;;14466:40;14523:19;;28335:74:0;14142:406:1;28335:74:0;-1:-1:-1;;;;;;28427:16:0;;;;;:9;:16;;;;;;;28243:208::o;7415:103::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;7480:30:::1;7507:1;7480:18;:30::i;:::-;7415:103::o:0;54814:122::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;54895:13:::1;:33:::0;54814:122::o;28988:104::-;29044:13;29077:7;29070:14;;;;;:::i;49431:847::-;49492:20;49515:21;49525:10;49515:9;:21::i;:::-;49558:6;;49492:44;;-1:-1:-1;49558:6:0;;49557:7;49549:42;;;;-1:-1:-1;;;49549:42:0;;17762:2:1;49549:42:0;;;17744:21:1;17801:2;17781:18;;;17774:30;-1:-1:-1;;;17820:18:1;;;17813:52;17882:18;;49549:42:0;17560:346:1;49549:42:0;49602:14;49619:13;42727:10;:17;;42639:113;49619:13;49602:30;;49665:1;49651:11;:15;49643:55;;;;-1:-1:-1;;;49643:55:0;;20871:2:1;49643:55:0;;;20853:21:1;20910:2;20890:18;;;20883:30;20949:29;20929:18;;;20922:57;20996:18;;49643:55:0;20669:351:1;49643:55:0;49751:9;;49727:20;49736:11;49727:6;:20;:::i;:::-;:33;;49719:66;;;;-1:-1:-1;;;49719:66:0;;10397:2:1;49719:66:0;;;10379:21:1;10436:2;10416:18;;;10409:30;-1:-1:-1;;;10455:18:1;;;10448:50;10515:18;;49719:66:0;10195:344:1;49719:66:0;6837:6;;-1:-1:-1;;;;;6837:6:0;49802:10;:21;49798:309;;49868:11;49861:4;;:18;;;;:::i;:::-;49848:9;:31;;49840:62;;;;-1:-1:-1;;;49840:62:0;;19288:2:1;49840:62:0;;;19270:21:1;19327:2;19307:18;;;19300:30;-1:-1:-1;;;19346:18:1;;;19339:48;19404:18;;49840:62:0;19086:342:1;49840:62:0;49954:13;;49939:11;:28;;49917:91;;;;-1:-1:-1;;;49917:91:0;;15516:2:1;49917:91:0;;;15498:21:1;15555:2;15535:18;;;15528:30;15594:34;15574:18;;;15567:62;-1:-1:-1;;;15645:18:1;;;15638:34;15689:19;;49917:91:0;15314:400:1;49917:91:0;50046:18;;50031:12;:33;50023:72;;;;-1:-1:-1;;;50023:72:0;;15921:2:1;50023:72:0;;;15903:21:1;15960:2;15940:18;;;15933:30;15999:28;15979:18;;;15972:56;16045:18;;50023:72:0;15719:350:1;50023:72:0;50136:1;50119:152;50144:11;50139:1;:16;50119:152;;50198:10;50177:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;50226:33:0;;-1:-1:-1;50236:10:0;50248;50257:1;50248:6;:10;:::i;50226:33::-;50157:3;;;;:::i;:::-;;;;50119:152;;30671:155;30766:52;5568:10;30799:8;30809;30766:18;:52::i;54299:69::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;54345:8:::1;:15:::0;;-1:-1:-1;;54345:15:0::1;;;::::0;;54299:69::o;31794:328::-;31969:41;5568:10;32002:7;31969:18;:41::i;:::-;31961:103;;;;-1:-1:-1;;;31961:103:0;;;;;;;:::i;:::-;32075:39;32089:4;32095:2;32099:7;32108:5;32075:13;:39::i;50307:192::-;50410:4;50439:52;50458:5;50465:19;;50486:4;50439:18;:52::i;52857:122::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;52939:19:::1;:32:::0;52857:122::o;48338:37::-;;;;;;;:::i;53548:725::-;33697:4;33721:16;;;:7;:16;;;;;;53666:13;;-1:-1:-1;;;;;33721:16:0;53697:113;;;;-1:-1:-1;;;53697:113:0;;18113:2:1;53697:113:0;;;18095:21:1;18152:2;18132:18;;;18125:30;18191:34;18171:18;;;18164:62;-1:-1:-1;;;18242:18:1;;;18235:45;18297:19;;53697:113:0;17911:411:1;53697:113:0;53827:8;;;;;;;53823:71;;53868:14;53861:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53548:725;;;:::o;53823:71::-;53906:28;53937:10;:8;:10::i;:::-;53906:41;;54009:1;53984:14;53978:28;:32;:287;;;;;;;;;;;;;;;;;54102:14;54143:18;:7;:16;:18::i;:::-;54188:13;54059:165;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53958:307;53548:725;-1:-1:-1;;;53548:725:0:o;54376:110::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;54451:18:::1;:27:::0;54376:110::o;54702:104::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;54774:13:::1;:24:::0;54702:104::o;55056:151::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;55166:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;52985:124::-:0;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;53068:20:::1;:33:::0;52985:124::o;55215:126::-;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;55301:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;7673:201::-:0;6837:6;;-1:-1:-1;;;;;6837:6:0;5568:10;6984:23;6976:68;;;;-1:-1:-1;;;6976:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7762:22:0;::::1;7754:73;;;::::0;-1:-1:-1;;;7754:73:0;;11577:2:1;7754:73:0::1;::::0;::::1;11559:21:1::0;11616:2;11596:18;;;11589:30;11655:34;11635:18;;;11628:62;-1:-1:-1;;;11706:18:1;;;11699:36;11752:19;;7754:73:0::1;11375:402:1::0;7754:73:0::1;7838:28;7857:8;7838:18;:28::i;27874:305::-:0;27976:4;-1:-1:-1;;;;;;28013:40:0;;-1:-1:-1;;;28013:40:0;;:105;;-1:-1:-1;;;;;;;28070:48:0;;-1:-1:-1;;;28070:48:0;28013:105;:158;;;-1:-1:-1;;;;;;;;;;19657:40:0;;;28135:36;19548:157;37778:174;37853:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;37853:29:0;-1:-1:-1;;;;;37853:29:0;;;;;;;;:24;;37907:23;37853:24;37907:14;:23::i;:::-;-1:-1:-1;;;;;37898:46:0;;;;;;;;;;;37778:174;;:::o;1220:190::-;1345:4;1398;1369:25;1382:5;1389:4;1369:12;:25::i;:::-;:33;;1220:190;-1:-1:-1;;;;1220:190:0:o;33926:348::-;34019:4;33721:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33721:16:0;34036:73;;;;-1:-1:-1;;;34036:73:0;;13506:2:1;34036:73:0;;;13488:21:1;13545:2;13525:18;;;13518:30;13584:34;13564:18;;;13557:62;-1:-1:-1;;;13635:18:1;;;13628:42;13687:19;;34036:73:0;13304:408:1;34036:73:0;34120:13;34136:23;34151:7;34136:14;:23::i;:::-;34120:39;;34189:5;-1:-1:-1;;;;;34178:16:0;:7;-1:-1:-1;;;;;34178:16:0;;:51;;;;34222:7;-1:-1:-1;;;;;34198:31:0;:20;34210:7;34198:11;:20::i;:::-;-1:-1:-1;;;;;34198:31:0;;34178:51;:87;;;-1:-1:-1;;;;;;31018:25:0;;;30994:4;31018:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34233:32;34170:96;33926:348;-1:-1:-1;;;;33926:348:0:o;37035:625::-;37194:4;-1:-1:-1;;;;;37167:31:0;:23;37182:7;37167:14;:23::i;:::-;-1:-1:-1;;;;;37167:31:0;;37159:81;;;;-1:-1:-1;;;37159:81:0;;11984:2:1;37159:81:0;;;11966:21:1;12023:2;12003:18;;;11996:30;12062:34;12042:18;;;12035:62;-1:-1:-1;;;12113:18:1;;;12106:35;12158:19;;37159:81:0;11782:401:1;37159:81:0;-1:-1:-1;;;;;37259:16:0;;37251:65;;;;-1:-1:-1;;;37251:65:0;;12747:2:1;37251:65:0;;;12729:21:1;12786:2;12766:18;;;12759:30;12825:34;12805:18;;;12798:62;-1:-1:-1;;;12876:18:1;;;12869:34;12920:19;;37251:65:0;12545:400:1;37251:65:0;37329:39;37350:4;37356:2;37360:7;37329:20;:39::i;:::-;37433:29;37450:1;37454:7;37433:8;:29::i;:::-;-1:-1:-1;;;;;37475:15:0;;;;;;:9;:15;;;;;:20;;37494:1;;37475:15;:20;;37494:1;;37475:20;:::i;:::-;;;;-1:-1:-1;;;;;;;37506:13:0;;;;;;:9;:13;;;;;:18;;37523:1;;37506:13;:18;;37523:1;;37506:18;:::i;:::-;;;;-1:-1:-1;;37535:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;37535:21:0;-1:-1:-1;;;;;37535:21:0;;;;;;;;;37574:27;;37535:16;;37574:27;;;;;;;29971:341;29901:411;;:::o;34616:110::-;34692:26;34702:2;34706:7;34692:26;;;;;;;;;;;;:9;:26::i;8034:191::-;8127:6;;;-1:-1:-1;;;;;8144:17:0;;;-1:-1:-1;;;;;;8144:17:0;;;;;;;8177:40;;8127:6;;;8144:17;8127:6;;8177:40;;8108:16;;8177:40;8097:128;8034:191;:::o;38094:315::-;38249:8;-1:-1:-1;;;;;38240:17:0;:5;-1:-1:-1;;;;;38240:17:0;;;38232:55;;;;-1:-1:-1;;;38232:55:0;;13152:2:1;38232:55:0;;;13134:21:1;13191:2;13171:18;;;13164:30;13230:27;13210:18;;;13203:55;13275:18;;38232:55:0;12950:349:1;38232:55:0;-1:-1:-1;;;;;38298:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;38298:46:0;;;;;;;;;;38360:41;;9737::1;;;38360::0;;9710:18:1;38360:41:0;;;;;;;38094:315;;;:::o;33004:::-;33161:28;33171:4;33177:2;33181:7;33161:9;:28::i;:::-;33208:48;33231:4;33237:2;33241:7;33250:5;33208:22;:48::i;:::-;33200:111;;;;-1:-1:-1;;;33200:111:0;;;;;;;:::i;49300:108::-;49360:13;49393:7;49386:14;;;;;:::i;3050:723::-;3106:13;3327:10;3323:53;;-1:-1:-1;;3354:10:0;;;;;;;;;;;;-1:-1:-1;;;3354:10:0;;;;;3050:723::o;3323:53::-;3401:5;3386:12;3442:78;3449:9;;3442:78;;3475:8;;;;:::i;:::-;;-1:-1:-1;3498:10:0;;-1:-1:-1;3506:2:0;3498:10;;:::i;:::-;;;3442:78;;;3530:19;3562:6;3552:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3552:17:0;;3530:39;;3580:154;3587:10;;3580:154;;3614:11;3624:1;3614:11;;:::i;:::-;;-1:-1:-1;3683:10:0;3691:2;3683:5;:10;:::i;:::-;3670:24;;:2;:24;:::i;:::-;3657:39;;3640:6;3647;3640:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3640:56:0;;;;;;;;-1:-1:-1;3711:11:0;3720:2;3711:11;;:::i;:::-;;;3580:154;;1771:675;1854:7;1897:4;1854:7;1912:497;1936:5;:12;1932:1;:16;1912:497;;;1970:20;1993:5;1999:1;1993:8;;;;;;;;:::i;:::-;;;;;;;1970:31;;2036:12;2020;:28;2016:382;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2148:57;;2016:382;;;2522:13;2572:15;;;2608:4;2601:15;;;2655:4;2639:21;;2325:57;;2016:382;-1:-1:-1;1950:3:0;;;;:::i;:::-;;;;1912:497;;43675:589;-1:-1:-1;;;;;43881:18:0;;43877:187;;43916:40;43948:7;45091:10;:17;;45064:24;;;;:15;:24;;;;;:44;;;45119:24;;;;;;;;;;;;44987:164;43916:40;43877:187;;;43986:2;-1:-1:-1;;;;;43978:10:0;:4;-1:-1:-1;;;;;43978:10:0;;43974:90;;44005:47;44038:4;44044:7;44005:32;:47::i;:::-;-1:-1:-1;;;;;44078:16:0;;44074:183;;44111:45;44148:7;44111:36;:45::i;44074:183::-;44184:4;-1:-1:-1;;;;;44178:10:0;:2;-1:-1:-1;;;;;44178:10:0;;44174:83;;44205:40;44233:2;44237:7;44205:27;:40::i;34953:321::-;35083:18;35089:2;35093:7;35083:5;:18::i;:::-;35134:54;35165:1;35169:2;35173:7;35182:5;35134:22;:54::i;:::-;35112:154;;;;-1:-1:-1;;;35112:154:0;;;;;;;:::i;38974:799::-;39129:4;-1:-1:-1;;;;;39150:13:0;;9760:19;:23;39146:620;;39186:72;;-1:-1:-1;;;39186:72:0;;-1:-1:-1;;;;;39186:36:0;;;;;:72;;5568:10;;39237:4;;39243:7;;39252:5;;39186:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39186:72:0;;;;;;;;-1:-1:-1;;39186:72:0;;;;;;;;;;;;:::i;:::-;;;39182:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39428:13:0;;39424:272;;39471:60;;-1:-1:-1;;;39471:60:0;;;;;;;:::i;39424:272::-;39646:6;39640:13;39631:6;39627:2;39623:15;39616:38;39182:529;-1:-1:-1;;;;;;39309:51:0;-1:-1:-1;;;39309:51:0;;-1:-1:-1;39302:58:0;;39146:620;-1:-1:-1;39750:4:0;38974:799;;;;;;:::o;45778:988::-;46044:22;46094:1;46069:22;46086:4;46069:16;:22::i;:::-;:26;;;;:::i;:::-;46106:18;46127:26;;;:17;:26;;;;;;46044:51;;-1:-1:-1;46260:28:0;;;46256:328;;-1:-1:-1;;;;;46327:18:0;;46305:19;46327:18;;;:12;:18;;;;;;;;:34;;;;;;;;;46378:30;;;;;;:44;;;46495:30;;:17;:30;;;;;:43;;;46256:328;-1:-1:-1;46680:26:0;;;;:17;:26;;;;;;;;46673:33;;;-1:-1:-1;;;;;46724:18:0;;;;;:12;:18;;;;;:34;;;;;;;46717:41;45778:988::o;47061:1079::-;47339:10;:17;47314:22;;47339:21;;47359:1;;47339:21;:::i;:::-;47371:18;47392:24;;;:15;:24;;;;;;47765:10;:26;;47314:46;;-1:-1:-1;47392:24:0;;47314:46;;47765:26;;;;;;:::i;:::-;;;;;;;;;47743:48;;47829:11;47804:10;47815;47804:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;47909:28;;;:15;:28;;;;;;;:41;;;48081:24;;;;;48074:31;48116:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;47132:1008;;;47061:1079;:::o;44565:221::-;44650:14;44667:20;44684:2;44667:16;:20::i;:::-;-1:-1:-1;;;;;44698:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;44743:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;44565:221:0:o;35610:439::-;-1:-1:-1;;;;;35690:16:0;;35682:61;;;;-1:-1:-1;;;35682:61:0;;16276:2:1;35682:61:0;;;16258:21:1;;;16295:18;;;16288:30;16354:34;16334:18;;;16327:62;16406:18;;35682:61:0;16074:356:1;35682:61:0;33697:4;33721:16;;;:7;:16;;;;;;-1:-1:-1;;;;;33721:16:0;:30;35754:58;;;;-1:-1:-1;;;35754:58:0;;12390:2:1;35754:58:0;;;12372:21:1;12429:2;12409:18;;;12402:30;12468;12448:18;;;12441:58;12516:18;;35754:58:0;12188:352:1;35754:58:0;35825:45;35854:1;35858:2;35862:7;35825:20;:45::i;:::-;-1:-1:-1;;;;;35883:13:0;;;;;;:9;:13;;;;;:18;;35900:1;;35883:13;:18;;35900:1;;35883:18;:::i;:::-;;;;-1:-1:-1;;35912:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;35912:21:0;-1:-1:-1;;;;;35912:21:0;;;;;;;;35951:33;;35912:16;;;35951:33;;35912:16;;35951:33;55019:21:::1;54944:104:::0;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:723::-;657:5;710:3;703:4;695:6;691:17;687:27;677:55;;728:1;725;718:12;677:55;764:6;751:20;790:4;813:18;809:2;806:26;803:52;;;835:18;;:::i;:::-;881:2;878:1;874:10;904:28;928:2;924;920:11;904:28;:::i;:::-;966:15;;;997:12;;;;1029:15;;;1063;;;1059:24;;1056:33;-1:-1:-1;1053:53:1;;;1102:1;1099;1092:12;1053:53;1124:1;1115:10;;1134:163;1148:2;1145:1;1142:9;1134:163;;;1205:17;;1193:30;;1166:1;1159:9;;;;;1243:12;;;;1275;;1134:163;;;-1:-1:-1;1315:5:1;603:723;-1:-1:-1;;;;;;;603:723:1:o;1331:160::-;1396:20;;1452:13;;1445:21;1435:32;;1425:60;;1481:1;1478;1471:12;1496:186;1555:6;1608:2;1596:9;1587:7;1583:23;1579:32;1576:52;;;1624:1;1621;1614:12;1576:52;1647:29;1666:9;1647:29;:::i;1687:260::-;1755:6;1763;1816:2;1804:9;1795:7;1791:23;1787:32;1784:52;;;1832:1;1829;1822:12;1784:52;1855:29;1874:9;1855:29;:::i;:::-;1845:39;;1903:38;1937:2;1926:9;1922:18;1903:38;:::i;:::-;1893:48;;1687:260;;;;;:::o;1952:328::-;2029:6;2037;2045;2098:2;2086:9;2077:7;2073:23;2069:32;2066:52;;;2114:1;2111;2104:12;2066:52;2137:29;2156:9;2137:29;:::i;:::-;2127:39;;2185:38;2219:2;2208:9;2204:18;2185:38;:::i;:::-;2175:48;;2270:2;2259:9;2255:18;2242:32;2232:42;;1952:328;;;;;:::o;2285:666::-;2380:6;2388;2396;2404;2457:3;2445:9;2436:7;2432:23;2428:33;2425:53;;;2474:1;2471;2464:12;2425:53;2497:29;2516:9;2497:29;:::i;:::-;2487:39;;2545:38;2579:2;2568:9;2564:18;2545:38;:::i;:::-;2535:48;;2630:2;2619:9;2615:18;2602:32;2592:42;;2685:2;2674:9;2670:18;2657:32;2712:18;2704:6;2701:30;2698:50;;;2744:1;2741;2734:12;2698:50;2767:22;;2820:4;2812:13;;2808:27;-1:-1:-1;2798:55:1;;2849:1;2846;2839:12;2798:55;2872:73;2937:7;2932:2;2919:16;2914:2;2910;2906:11;2872:73;:::i;:::-;2862:83;;;2285:666;;;;;;;:::o;2956:254::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:35;3200:2;3189:9;3185:18;3169:35;:::i;3215:254::-;3283:6;3291;3344:2;3332:9;3323:7;3319:23;3315:32;3312:52;;;3360:1;3357;3350:12;3312:52;3383:29;3402:9;3383:29;:::i;:::-;3373:39;3459:2;3444:18;;;;3431:32;;-1:-1:-1;;;3215:254:1:o;3474:348::-;3558:6;3611:2;3599:9;3590:7;3586:23;3582:32;3579:52;;;3627:1;3624;3617:12;3579:52;3667:9;3654:23;3700:18;3692:6;3689:30;3686:50;;;3732:1;3729;3722:12;3686:50;3755:61;3808:7;3799:6;3788:9;3784:22;3755:61;:::i;3827:416::-;3920:6;3928;3981:2;3969:9;3960:7;3956:23;3952:32;3949:52;;;3997:1;3994;3987:12;3949:52;4037:9;4024:23;4070:18;4062:6;4059:30;4056:50;;;4102:1;4099;4092:12;4056:50;4125:61;4178:7;4169:6;4158:9;4154:22;4125:61;:::i;:::-;4115:71;4233:2;4218:18;;;;4205:32;;-1:-1:-1;;;;3827:416:1:o;4248:180::-;4304:6;4357:2;4345:9;4336:7;4332:23;4328:32;4325:52;;;4373:1;4370;4363:12;4325:52;4396:26;4412:9;4396:26;:::i;4433:180::-;4492:6;4545:2;4533:9;4524:7;4520:23;4516:32;4513:52;;;4561:1;4558;4551:12;4513:52;-1:-1:-1;4584:23:1;;4433:180;-1:-1:-1;4433:180:1:o;4618:245::-;4676:6;4729:2;4717:9;4708:7;4704:23;4700:32;4697:52;;;4745:1;4742;4735:12;4697:52;4784:9;4771:23;4803:30;4827:5;4803:30;:::i;4868:249::-;4937:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:52;;;5006:1;5003;4996:12;4958:52;5038:9;5032:16;5057:30;5081:5;5057:30;:::i;5122:450::-;5191:6;5244:2;5232:9;5223:7;5219:23;5215:32;5212:52;;;5260:1;5257;5250:12;5212:52;5300:9;5287:23;5333:18;5325:6;5322:30;5319:50;;;5365:1;5362;5355:12;5319:50;5388:22;;5441:4;5433:13;;5429:27;-1:-1:-1;5419:55:1;;5470:1;5467;5460:12;5419:55;5493:73;5558:7;5553:2;5540:16;5535:2;5531;5527:11;5493:73;:::i;5762:254::-;5830:6;5838;5891:2;5879:9;5870:7;5866:23;5862:32;5859:52;;;5907:1;5904;5897:12;5859:52;5943:9;5930:23;5920:33;;5972:38;6006:2;5995:9;5991:18;5972:38;:::i;6021:257::-;6062:3;6100:5;6094:12;6127:6;6122:3;6115:19;6143:63;6199:6;6192:4;6187:3;6183:14;6176:4;6169:5;6165:16;6143:63;:::i;:::-;6260:2;6239:15;-1:-1:-1;;6235:29:1;6226:39;;;;6267:4;6222:50;;6021:257;-1:-1:-1;;6021:257:1:o;6517:1527::-;6741:3;6779:6;6773:13;6805:4;6818:51;6862:6;6857:3;6852:2;6844:6;6840:15;6818:51;:::i;:::-;6932:13;;6891:16;;;;6954:55;6932:13;6891:16;6976:15;;;6954:55;:::i;:::-;7098:13;;7031:20;;;7071:1;;7158;7180:18;;;;7233;;;;7260:93;;7338:4;7328:8;7324:19;7312:31;;7260:93;7401:2;7391:8;7388:16;7368:18;7365:40;7362:167;;;-1:-1:-1;;;7428:33:1;;7484:4;7481:1;7474:15;7514:4;7435:3;7502:17;7362:167;7545:18;7572:110;;;;7696:1;7691:328;;;;7538:481;;7572:110;-1:-1:-1;;7607:24:1;;7593:39;;7652:20;;;;-1:-1:-1;7572:110:1;;7691:328;21560:1;21553:14;;;21597:4;21584:18;;7786:1;7800:169;7814:8;7811:1;7808:15;7800:169;;;7896:14;;7881:13;;;7874:37;7939:16;;;;7831:10;;7800:169;;;7804:3;;8000:8;7993:5;7989:20;7982:27;;7538:481;-1:-1:-1;8035:3:1;;6517:1527;-1:-1:-1;;;;;;;;;;;6517:1527:1:o;8467:488::-;-1:-1:-1;;;;;8736:15:1;;;8718:34;;8788:15;;8783:2;8768:18;;8761:43;8835:2;8820:18;;8813:34;;;8883:3;8878:2;8863:18;;8856:31;;;8661:4;;8904:45;;8929:19;;8921:6;8904:45;:::i;:::-;8896:53;8467:488;-1:-1:-1;;;;;;8467:488:1:o;8960:632::-;9131:2;9183:21;;;9253:13;;9156:18;;;9275:22;;;9102:4;;9131:2;9354:15;;;;9328:2;9313:18;;;9102:4;9397:169;9411:6;9408:1;9405:13;9397:169;;;9472:13;;9460:26;;9541:15;;;;9506:12;;;;9433:1;9426:9;9397:169;;;-1:-1:-1;9583:3:1;;8960:632;-1:-1:-1;;;;;;8960:632:1:o;9971:219::-;10120:2;10109:9;10102:21;10083:4;10140:44;10180:2;10169:9;10165:18;10157:6;10140:44;:::i;10956:414::-;11158:2;11140:21;;;11197:2;11177:18;;;11170:30;11236:34;11231:2;11216:18;;11209:62;-1:-1:-1;;;11302:2:1;11287:18;;11280:48;11360:3;11345:19;;10956:414::o;17199:356::-;17401:2;17383:21;;;17420:18;;;17413:30;17479:34;17474:2;17459:18;;17452:62;17546:2;17531:18;;17199:356::o;19433:413::-;19635:2;19617:21;;;19674:2;19654:18;;;19647:30;19713:34;19708:2;19693:18;;19686:62;-1:-1:-1;;;19779:2:1;19764:18;;19757:47;19836:3;19821:19;;19433:413::o;21207:275::-;21278:2;21272:9;21343:2;21324:13;;-1:-1:-1;;21320:27:1;21308:40;;21378:18;21363:34;;21399:22;;;21360:62;21357:88;;;21425:18;;:::i;:::-;21461:2;21454:22;21207:275;;-1:-1:-1;21207:275:1:o;21613:128::-;21653:3;21684:1;21680:6;21677:1;21674:13;21671:39;;;21690:18;;:::i;:::-;-1:-1:-1;21726:9:1;;21613:128::o;21746:120::-;21786:1;21812;21802:35;;21817:18;;:::i;:::-;-1:-1:-1;21851:9:1;;21746:120::o;21871:168::-;21911:7;21977:1;21973;21969:6;21965:14;21962:1;21959:21;21954:1;21947:9;21940:17;21936:45;21933:71;;;21984:18;;:::i;:::-;-1:-1:-1;22024:9:1;;21871:168::o;22044:125::-;22084:4;22112:1;22109;22106:8;22103:34;;;22117:18;;:::i;:::-;-1:-1:-1;22154:9:1;;22044:125::o;22174:258::-;22246:1;22256:113;22270:6;22267:1;22264:13;22256:113;;;22346:11;;;22340:18;22327:11;;;22320:39;22292:2;22285:10;22256:113;;;22387:6;22384:1;22381:13;22378:48;;;-1:-1:-1;;22422:1:1;22404:16;;22397:27;22174:258::o;22437:380::-;22516:1;22512:12;;;;22559;;;22580:61;;22634:4;22626:6;22622:17;22612:27;;22580:61;22687:2;22679:6;22676:14;22656:18;22653:38;22650:161;;;22733:10;22728:3;22724:20;22721:1;22714:31;22768:4;22765:1;22758:15;22796:4;22793:1;22786:15;22650:161;;22437:380;;;:::o;22822:135::-;22861:3;-1:-1:-1;;22882:17:1;;22879:43;;;22902:18;;:::i;:::-;-1:-1:-1;22949:1:1;22938:13;;22822:135::o;22962:112::-;22994:1;23020;23010:35;;23025:18;;:::i;:::-;-1:-1:-1;23059:9:1;;22962:112::o;23079:127::-;23140:10;23135:3;23131:20;23128:1;23121:31;23171:4;23168:1;23161:15;23195:4;23192:1;23185:15;23211:127;23272:10;23267:3;23263:20;23260:1;23253:31;23303:4;23300:1;23293:15;23327:4;23324:1;23317:15;23343:127;23404:10;23399:3;23395:20;23392:1;23385:31;23435:4;23432:1;23425:15;23459:4;23456:1;23449:15;23475:127;23536:10;23531:3;23527:20;23524:1;23517:31;23567:4;23564:1;23557:15;23591:4;23588:1;23581:15;23607:127;23668:10;23663:3;23659:20;23656:1;23649:31;23699:4;23696:1;23689:15;23723:4;23720:1;23713:15;23739:131;-1:-1:-1;;;;;;23813:32:1;;23803:43;;23793:71;;23860:1;23857;23850:12

Swarm Source

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