ETH Price: $3,697.40 (+1.72%)
 

Overview

Max Total Supply

396 WSG

Holders

113

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
406.eth
Balance
2 WSG
0x051a0259259db0e5785cb2ab04f72ca9e754381d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

War Snails is a gaming collection of 8,888 unique pieces comprised of over 200 hand-drawn traits. In addition to awesome artwork, War Snails has been built from the ground up with engaging, long-term utility and addictive gameplay, inspired by the classic Worms game.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Warsnails

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-03-01
*/

// File: @openzeppelin/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

// 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/Warsnails.sol



pragma solidity >=0.7.0 <0.9.0;








contract Warsnails is ERC721Enumerable, Ownable {

    using SafeMath for uint256;

    using Strings for uint256;



    string public baseURI;

    string public extension = ".json";

    uint256 public cost = 0.08 ether;

    uint256 public presaleCost = 0.06 ether;

    uint256 public maxSnails = 8888;

    uint256 public teamAlloctation = 445;

    uint256 public teamCount = 0;

    uint256 public presaleCap = 250;

    uint256 public maxMintAmount = 100;

    uint256 public maxMintAmountPresale = 5;

    bool public pausedMint = true;

    bool public endpresale = false;

    bool public revealed = false;

    string public notRevealedUri;

    address[] public whitelistusers;

    mapping(address=>uint256) public isMint;



    constructor(

    string memory _name,

    string memory _symbol,

    string memory _initURI,

    string memory _notRevealedUri

    ) ERC721(_name, _symbol) {

        setBaseURI(_initURI);

        setNotRevealedURI(_notRevealedUri);

    }



    function whitelistAddresses(address[] calldata _whitelistusers) external onlyOwner {

        delete whitelistusers;

        whitelistusers = _whitelistusers;

    }



    function addressesTotal() external view returns(uint256) {

        return whitelistusers.length;

    }



    /**

    * @dev function to mint presale snails

    *

    * - function checks teams allocation

    */

    function mintSnailsPresale(uint256 _mintAmount) public payable {

        uint256 supply = totalSupply();

        if (msg.sender == owner()) {

            teamCount += _mintAmount;

            require(teamCount <= teamAlloctation, "teamAlloctation cap reached!");

            require(supply.add(_mintAmount) <= maxSnails, "Max supply reached!");

        }else {

            require(!endpresale, "Presale ended");

            require(isMaxMintPresale(msg.sender) == false, "Presale user max mint reached!");

            require(isWhitelisted(msg.sender), "Not whitelisted");

            require(_mintAmount > 0, "Mint amount cannot be 0");

            require(_mintAmount <= maxMintAmountPresale, "Max Mint amount reached!");

            require(supply.add(_mintAmount) <= presaleCap, "Presale cap reached!");

            require(msg.value >= presaleCost.mul(_mintAmount), "Insufficient ether");

            isMint[msg.sender] += _mintAmount;

        }



        for (uint256 i = 1; i <= _mintAmount; i++) {

            _safeMint(msg.sender, supply + i);

        }

    }



    function mintSnails(uint256 _mintAmount) public payable {

        uint256 supply = totalSupply();

        require(!pausedMint, "Mint paused!");

        require(_mintAmount > 0, "Mint amount cannot be 0");

        require(_mintAmount <= maxMintAmount, "Max Mint amount reached!");

        require(supply.add(_mintAmount) <= maxSnails, "Max supply reached!");

        require(msg.value >= cost.mul(_mintAmount), "Insufficient ether");



        for (uint256 i = 1; i <= _mintAmount; i++) {

            _safeMint(msg.sender, supply + i);

        }

    }



    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(), extension))

        : "";

    }



    function reveal() public onlyOwner {

        revealed = true;

    }



    function updatePresaleCost(uint256 _newCost) public onlyOwner {

        presaleCost = _newCost;

    }



    function updateCost(uint256 _newCost) public onlyOwner {

        cost = _newCost;

    }



    function pausemint(bool _state) public onlyOwner {

        pausedMint = _state;

    }

    /**

    * @dev function to update presalecap

    *

    * - Snail presale can be up to 5 waves

    */



    function updatePresaleCap(uint256 _newCap) public onlyOwner {

        presaleCap = _newCap;

    }



    function updatemaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {

        maxMintAmount = _newmaxMintAmount;

    }



    function updatemaxPresaleMintAmount(uint256 _newmaxMintAmount) public onlyOwner {

        maxMintAmountPresale = _newmaxMintAmount;

    }



    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {

        notRevealedUri = _notRevealedURI;

    }



    function setBaseURI(string memory _newBaseURI) public onlyOwner {

        baseURI = _newBaseURI;

    }



    function updateBaseExtension(string memory _newUriExtension) public onlyOwner {

        extension = _newUriExtension;

    }



    function endPresale(bool _state) public onlyOwner {

        endpresale = _state;

    }



    function isMaxMintPresale(address _user) public view returns(bool) {

        return isMint[_user] >= maxMintAmountPresale;

    }



    function isWhitelisted(address _user) public view returns(bool) {



        for (uint256 x =0; x < whitelistusers.length; x++) {

            if (whitelistusers[x] == _user) {

                return true;

            }

        }

        return false;

    }



    function withdraw() public payable onlyOwner {

        (bool success, ) = payable(msg.sender).call{value:address(this).balance}("");

        require(success);

    }



    function _baseURI() internal view virtual override returns (string memory) {

        return baseURI;

    }



}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initURI","type":"string"},{"internalType":"string","name":"_notRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"addressesTotal","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":"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":"bool","name":"_state","type":"bool"}],"name":"endPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endpresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"extension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isMaxMintPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","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":"maxMintAmountPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSnails","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintSnails","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintSnailsPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pausedMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pausemint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"presaleCap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamAlloctation","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"string","name":"_newUriExtension","type":"string"}],"name":"updateBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"updateCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCap","type":"uint256"}],"name":"updatePresaleCap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"updatePresaleCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"updatemaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"updatemaxPresaleMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistusers","type":"address[]"}],"name":"whitelistAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistusers","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000224565b5067011c37937e080000600d5566d529ae9e860000600e556122b8600f556101bd601055600060115560fa601255606460135560056014556015805462ffffff191660011790553480156200007c57600080fd5b50604051620031f9380380620031f98339810160408190526200009f9162000381565b835184908490620000b890600090602085019062000224565b508051620000ce90600190602084019062000224565b505050620000eb620000e56200010b60201b60201c565b6200010f565b620000f68262000161565b6200010181620001c9565b505050506200048d565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a546001600160a01b03163314620001b05760405162461bcd60e51b81526020600482018190526024820152600080516020620031d983398151915260448201526064015b60405180910390fd5b8051620001c590600b90602084019062000224565b5050565b600a546001600160a01b03163314620002145760405162461bcd60e51b81526020600482018190526024820152600080516020620031d98339815191526044820152606401620001a7565b8051620001c59060169060208401905b82805462000232906200043a565b90600052602060002090601f016020900481019282620002565760008555620002a1565b82601f106200027157805160ff1916838001178555620002a1565b82800160010185558215620002a1579182015b82811115620002a157825182559160200191906001019062000284565b50620002af929150620002b3565b5090565b5b80821115620002af5760008155600101620002b4565b600082601f830112620002dc57600080fd5b81516001600160401b0380821115620002f957620002f962000477565b604051601f8301601f19908116603f0116810190828211818310171562000324576200032462000477565b816040528381526020925086838588010111156200034157600080fd5b600091505b8382101562000365578582018301518183018401529082019062000346565b83821115620003775760008385830101525b9695505050505050565b600080600080608085870312156200039857600080fd5b84516001600160401b0380821115620003b057600080fd5b620003be88838901620002ca565b95506020870151915080821115620003d557600080fd5b620003e388838901620002ca565b94506040870151915080821115620003fa57600080fd5b6200040888838901620002ca565b935060608701519150808211156200041f57600080fd5b506200042e87828801620002ca565b91505092959194509250565b600181811c908216806200044f57607f821691505b602082108114156200047157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612d3c806200049d6000396000f3fe60806040526004361061031a5760003560e01c806355f804b3116101ab578063a22cb465116100f7578063d4accc2e11610095578063e802e4bc1161006f578063e802e4bc146108cf578063e985e9c5146108e5578063f2c4ce1e1461092e578063f2fde38b1461094e57600080fd5b8063d4accc2e14610862578063e0cab8c714610882578063e17b35ed146108a257600080fd5b8063aabd0b0c116100d1578063aabd0b0c146107c5578063aeaf4b7a14610802578063b88d4fde14610822578063c87b56dd1461084257600080fd5b8063a22cb46514610770578063a475b5dd14610790578063a9158371146107a557600080fd5b8063780eb914116101645780638da5cb5b1161013e5780638da5cb5b1461070e57806395d89b411461072c5780639913c1c7146107415780639f1a3d9c1461075657600080fd5b8063780eb914146106cf5780637effc032146106e25780638caa0083146106f857600080fd5b806355f804b31461062f5780636352211e1461064f57806363d5502f1461066f5780636c0360eb1461068557806370a082311461069a578063715018a6146106ba57600080fd5b80632a23d07d1161026a5780633af32abf1161022357806342842e0e116101fd57806342842e0e146105af5780634f6ccce7146105cf57806351830227146105ef57806351cd2ae91461060f57600080fd5b80633af32abf146105675780633ccfd60b14610587578063405571d41461058f57600080fd5b80632a23d07d146104c95780632bf04304146104df5780632d5537b0146104ff5780632f745c59146105145780633232c10b1461053457806335a9fc731461055457600080fd5b806313faede6116102d7578063239c70ae116102b1578063239c70ae1461045357806323b872dd1461046957806323c5a0881461048957806324e186ba146104a957600080fd5b806313faede61461040957806318160ddd1461041f5780631fd8291a1461043457600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063081c8c44146103ae5780630834cad4146103c3578063095ea7b3146103e7575b600080fd5b34801561032b57600080fd5b5061033f61033a3660046128d6565b61096e565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b50610369610999565b60405161034b9190612a9f565b34801561038257600080fd5b50610396610391366004612959565b610a2b565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b50610369610ac5565b3480156103cf57600080fd5b506103d960105481565b60405190815260200161034b565b3480156103f357600080fd5b5061040761040236600461281c565b610b53565b005b34801561041557600080fd5b506103d9600d5481565b34801561042b57600080fd5b506008546103d9565b34801561044057600080fd5b5060155461033f90610100900460ff1681565b34801561045f57600080fd5b506103d960135481565b34801561047557600080fd5b5061040761048436600461273a565b610c69565b34801561049557600080fd5b506104076104a4366004612959565b610c9a565b3480156104b557600080fd5b506104076104c43660046128bb565b610cc9565b3480156104d557600080fd5b506103d9600e5481565b3480156104eb57600080fd5b506104076104fa366004612846565b610d06565b34801561050b57600080fd5b50610369610d48565b34801561052057600080fd5b506103d961052f36600461281c565b610d55565b34801561054057600080fd5b5061040761054f366004612910565b610deb565b610407610562366004612959565b610e2c565b34801561057357600080fd5b5061033f6105823660046126ec565b6111a2565b61040761120c565b34801561059b57600080fd5b506104076105aa366004612959565b61128e565b3480156105bb57600080fd5b506104076105ca36600461273a565b6112bd565b3480156105db57600080fd5b506103d96105ea366004612959565b6112d8565b3480156105fb57600080fd5b5060155461033f9062010000900460ff1681565b34801561061b57600080fd5b5061040761062a366004612959565b61136b565b34801561063b57600080fd5b5061040761064a366004612910565b61139a565b34801561065b57600080fd5b5061039661066a366004612959565b6113d7565b34801561067b57600080fd5b506103d960125481565b34801561069157600080fd5b5061036961144e565b3480156106a657600080fd5b506103d96106b53660046126ec565b61145b565b3480156106c657600080fd5b506104076114e2565b6104076106dd366004612959565b611518565b3480156106ee57600080fd5b506103d960145481565b34801561070457600080fd5b506103d960115481565b34801561071a57600080fd5b50600a546001600160a01b0316610396565b34801561073857600080fd5b506103696116cb565b34801561074d57600080fd5b506017546103d9565b34801561076257600080fd5b5060155461033f9060ff1681565b34801561077c57600080fd5b5061040761078b3660046127f2565b6116da565b34801561079c57600080fd5b506104076116e5565b3480156107b157600080fd5b506104076107c0366004612959565b611722565b3480156107d157600080fd5b5061033f6107e03660046126ec565b6014546001600160a01b03909116600090815260186020526040902054101590565b34801561080e57600080fd5b5061040761081d3660046128bb565b611751565b34801561082e57600080fd5b5061040761083d366004612776565b611795565b34801561084e57600080fd5b5061036961085d366004612959565b6117cd565b34801561086e57600080fd5b5061039661087d366004612959565b61194d565b34801561088e57600080fd5b5061040761089d366004612959565b611977565b3480156108ae57600080fd5b506103d96108bd3660046126ec565b60186020526000908152604090205481565b3480156108db57600080fd5b506103d9600f5481565b3480156108f157600080fd5b5061033f610900366004612707565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093a57600080fd5b50610407610949366004612910565b6119a6565b34801561095a57600080fd5b506104076109693660046126ec565b6119e3565b60006001600160e01b0319821663780e9d6360e01b1480610993575061099382611a7b565b92915050565b6060600080546109a890612c18565b80601f01602080910402602001604051908101604052809291908181526020018280546109d490612c18565b8015610a215780601f106109f657610100808354040283529160200191610a21565b820191906000526020600020905b815481529060010190602001808311610a0457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aa95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60168054610ad290612c18565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90612c18565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b6000610b5e826113d7565b9050806001600160a01b0316836001600160a01b03161415610bcc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610aa0565b336001600160a01b0382161480610be85750610be88133610900565b610c5a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610aa0565b610c648383611acb565b505050565b610c733382611b39565b610c8f5760405162461bcd60e51b8152600401610aa090612b39565b610c64838383611c30565b600a546001600160a01b03163314610cc45760405162461bcd60e51b8152600401610aa090612b04565b600d55565b600a546001600160a01b03163314610cf35760405162461bcd60e51b8152600401610aa090612b04565b6015805460ff1916911515919091179055565b600a546001600160a01b03163314610d305760405162461bcd60e51b8152600401610aa090612b04565b610d3c60176000612540565b610c646017838361255e565b600c8054610ad290612c18565b6000610d608361145b565b8210610dc25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610aa0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e155760405162461bcd60e51b8152600401610aa090612b04565b8051610e2890600c9060208401906125c1565b5050565b6000610e3760085490565b9050610e4b600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161415610f25578160116000828254610e769190612b8a565b90915550506010546011541115610ecf5760405162461bcd60e51b815260206004820152601c60248201527f7465616d416c6c6f63746174696f6e20636170207265616368656421000000006044820152606401610aa0565b600f54610edc8284611dd7565b1115610f205760405162461bcd60e51b81526020600482015260136024820152724d617820737570706c7920726561636865642160681b6044820152606401610aa0565b611173565b601554610100900460ff1615610f6d5760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948195b991959609a1b6044820152606401610aa0565b6014543360009081526018602052604090205410610fcd5760405162461bcd60e51b815260206004820152601e60248201527f50726573616c652075736572206d6178206d696e7420726561636865642100006044820152606401610aa0565b610fd6336111a2565b6110145760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610aa0565b6000821161105e5760405162461bcd60e51b815260206004820152601760248201527604d696e7420616d6f756e742063616e6e6f74206265203604c1b6044820152606401610aa0565b6014548211156110ab5760405162461bcd60e51b81526020600482015260186024820152774d6178204d696e7420616d6f756e7420726561636865642160401b6044820152606401610aa0565b6012546110b88284611dd7565b11156110fd5760405162461bcd60e51b815260206004820152601460248201527350726573616c652063617020726561636865642160601b6044820152606401610aa0565b600e5461110a9083611de3565b34101561114e5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1032ba3432b960711b6044820152606401610aa0565b336000908152601860205260408120805484929061116d908490612b8a565b90915550505b60015b828111610c64576111903361118b8385612b8a565b611def565b8061119a81612c53565b915050611176565b6000805b60175481101561120357826001600160a01b0316601782815481106111cd576111cd612cc4565b6000918252602090912001546001600160a01b031614156111f15750600192915050565b806111fb81612c53565b9150506111a6565b50600092915050565b600a546001600160a01b031633146112365760405162461bcd60e51b8152600401610aa090612b04565b604051600090339047908381818185875af1925050503d8060008114611278576040519150601f19603f3d011682016040523d82523d6000602084013e61127d565b606091505b505090508061128b57600080fd5b50565b600a546001600160a01b031633146112b85760405162461bcd60e51b8152600401610aa090612b04565b601255565b610c6483838360405180602001604052806000815250611795565b60006112e360085490565b82106113465760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610aa0565b6008828154811061135957611359612cc4565b90600052602060002001549050919050565b600a546001600160a01b031633146113955760405162461bcd60e51b8152600401610aa090612b04565b601455565b600a546001600160a01b031633146113c45760405162461bcd60e51b8152600401610aa090612b04565b8051610e2890600b9060208401906125c1565b6000818152600260205260408120546001600160a01b0316806109935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610aa0565b600b8054610ad290612c18565b60006001600160a01b0382166114c65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610aa0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461150c5760405162461bcd60e51b8152600401610aa090612b04565b6115166000611e09565b565b600061152360085490565b60155490915060ff16156115685760405162461bcd60e51b815260206004820152600c60248201526b4d696e74207061757365642160a01b6044820152606401610aa0565b600082116115b25760405162461bcd60e51b815260206004820152601760248201527604d696e7420616d6f756e742063616e6e6f74206265203604c1b6044820152606401610aa0565b6013548211156115ff5760405162461bcd60e51b81526020600482015260186024820152774d6178204d696e7420616d6f756e7420726561636865642160401b6044820152606401610aa0565b600f5461160c8284611dd7565b11156116505760405162461bcd60e51b81526020600482015260136024820152724d617820737570706c7920726561636865642160681b6044820152606401610aa0565b600d5461165d9083611de3565b3410156116a15760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1032ba3432b960711b6044820152606401610aa0565b60015b828111610c64576116b93361118b8385612b8a565b806116c381612c53565b9150506116a4565b6060600180546109a890612c18565b610e28338383611e5b565b600a546001600160a01b0316331461170f5760405162461bcd60e51b8152600401610aa090612b04565b6015805462ff0000191662010000179055565b600a546001600160a01b0316331461174c5760405162461bcd60e51b8152600401610aa090612b04565b600e55565b600a546001600160a01b0316331461177b5760405162461bcd60e51b8152600401610aa090612b04565b601580549115156101000261ff0019909216919091179055565b61179f3383611b39565b6117bb5760405162461bcd60e51b8152600401610aa090612b39565b6117c784848484611f2a565b50505050565b6000818152600260205260409020546060906001600160a01b031661184c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610aa0565b60155462010000900460ff166118ee576016805461186990612c18565b80601f016020809104026020016040519081016040528092919081815260200182805461189590612c18565b80156118e25780601f106118b7576101008083540402835291602001916118e2565b820191906000526020600020905b8154815290600101906020018083116118c557829003601f168201915b50505050509050919050565b60006118f8611f5d565b905060008151116119185760405180602001604052806000815250611946565b8061192284611f6c565b600c6040516020016119369392919061299e565b6040516020818303038152906040525b9392505050565b6017818154811061195d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b031633146119a15760405162461bcd60e51b8152600401610aa090612b04565b601355565b600a546001600160a01b031633146119d05760405162461bcd60e51b8152600401610aa090612b04565b8051610e289060169060208401906125c1565b600a546001600160a01b03163314611a0d5760405162461bcd60e51b8152600401610aa090612b04565b6001600160a01b038116611a725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa0565b61128b81611e09565b60006001600160e01b031982166380ac58cd60e01b1480611aac57506001600160e01b03198216635b5e139f60e01b145b8061099357506301ffc9a760e01b6001600160e01b0319831614610993565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b00826113d7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bb25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aa0565b6000611bbd836113d7565b9050806001600160a01b0316846001600160a01b03161480611bf85750836001600160a01b0316611bed84610a2b565b6001600160a01b0316145b80611c2857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c43826113d7565b6001600160a01b031614611ca75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610aa0565b6001600160a01b038216611d095760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610aa0565b611d1483838361206a565b611d1f600082611acb565b6001600160a01b0383166000908152600360205260408120805460019290611d48908490612bd5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d76908490612b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119468284612b8a565b60006119468284612bb6565b610e28828260405180602001604052806000815250612122565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ebd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aa0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f35848484611c30565b611f4184848484612155565b6117c75760405162461bcd60e51b8152600401610aa090612ab2565b6060600b80546109a890612c18565b606081611f905750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fba5780611fa481612c53565b9150611fb39050600a83612ba2565b9150611f94565b60008167ffffffffffffffff811115611fd557611fd5612cda565b6040519080825280601f01601f191660200182016040528015611fff576020820181803683370190505b5090505b8415611c2857612014600183612bd5565b9150612021600a86612c6e565b61202c906030612b8a565b60f81b81838151811061204157612041612cc4565b60200101906001600160f81b031916908160001a905350612063600a86612ba2565b9450612003565b6001600160a01b0383166120c5576120c081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120e8565b816001600160a01b0316836001600160a01b0316146120e8576120e88382612262565b6001600160a01b0382166120ff57610c64816122ff565b826001600160a01b0316826001600160a01b031614610c6457610c6482826123ae565b61212c83836123f2565b6121396000848484612155565b610c645760405162461bcd60e51b8152600401610aa090612ab2565b60006001600160a01b0384163b1561225757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612199903390899088908890600401612a62565b602060405180830381600087803b1580156121b357600080fd5b505af19250505080156121e3575060408051601f3d908101601f191682019092526121e0918101906128f3565b60015b61223d573d808015612211576040519150601f19603f3d011682016040523d82523d6000602084013e612216565b606091505b5080516122355760405162461bcd60e51b8152600401610aa090612ab2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c28565b506001949350505050565b6000600161226f8461145b565b6122799190612bd5565b6000838152600760205260409020549091508082146122cc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061231190600190612bd5565b6000838152600960205260408120546008805493945090928490811061233957612339612cc4565b90600052602060002001549050806008838154811061235a5761235a612cc4565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061239257612392612cae565b6001900381819060005260206000200160009055905550505050565b60006123b98361145b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aa0565b6000818152600260205260409020546001600160a01b0316156124ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aa0565b6124b96000838361206a565b6001600160a01b03821660009081526003602052604081208054600192906124e2908490612b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054600082559060005260206000209081019061128b9190612635565b8280548282559060005260206000209081019282156125b1579160200282015b828111156125b15781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061257e565b506125bd929150612635565b5090565b8280546125cd90612c18565b90600052602060002090601f0160209004810192826125ef57600085556125b1565b82601f1061260857805160ff19168380011785556125b1565b828001600101855582156125b1579182015b828111156125b157825182559160200191906001019061261a565b5b808211156125bd5760008155600101612636565b600067ffffffffffffffff8084111561266557612665612cda565b604051601f8501601f19908116603f0116810190828211818310171561268d5761268d612cda565b816040528093508581528686860111156126a657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126d757600080fd5b919050565b803580151581146126d757600080fd5b6000602082840312156126fe57600080fd5b611946826126c0565b6000806040838503121561271a57600080fd5b612723836126c0565b9150612731602084016126c0565b90509250929050565b60008060006060848603121561274f57600080fd5b612758846126c0565b9250612766602085016126c0565b9150604084013590509250925092565b6000806000806080858703121561278c57600080fd5b612795856126c0565b93506127a3602086016126c0565b925060408501359150606085013567ffffffffffffffff8111156127c657600080fd5b8501601f810187136127d757600080fd5b6127e68782356020840161264a565b91505092959194509250565b6000806040838503121561280557600080fd5b61280e836126c0565b9150612731602084016126dc565b6000806040838503121561282f57600080fd5b612838836126c0565b946020939093013593505050565b6000806020838503121561285957600080fd5b823567ffffffffffffffff8082111561287157600080fd5b818501915085601f83011261288557600080fd5b81358181111561289457600080fd5b8660208260051b85010111156128a957600080fd5b60209290920196919550909350505050565b6000602082840312156128cd57600080fd5b611946826126dc565b6000602082840312156128e857600080fd5b813561194681612cf0565b60006020828403121561290557600080fd5b815161194681612cf0565b60006020828403121561292257600080fd5b813567ffffffffffffffff81111561293957600080fd5b8201601f8101841361294a57600080fd5b611c288482356020840161264a565b60006020828403121561296b57600080fd5b5035919050565b6000815180845261298a816020860160208601612bec565b601f01601f19169290920160200192915050565b6000845160206129b18285838a01612bec565b8551918401916129c48184848a01612bec565b8554920191600090600181811c90808316806129e157607f831692505b8583108114156129ff57634e487b7160e01b85526022600452602485fd5b808015612a135760018114612a2457612a51565b60ff19851688528388019550612a51565b60008b81526020902060005b85811015612a495781548a820152908401908801612a30565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9590830184612972565b9695505050505050565b6020815260006119466020830184612972565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612b9d57612b9d612c82565b500190565b600082612bb157612bb1612c98565b500490565b6000816000190483118215151615612bd057612bd0612c82565b500290565b600082821015612be757612be7612c82565b500390565b60005b83811015612c07578181015183820152602001612bef565b838111156117c75750506000910152565b600181811c90821680612c2c57607f821691505b60208210811415612c4d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c6757612c67612c82565b5060010190565b600082612c7d57612c7d612c98565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461128b57600080fdfea2646970667358221220965e4270ffb99672fc47ec19c80866d92c5b2b82ed007c03d36b5238214c5afa64736f6c634300080700334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a57617220736e61696c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357534700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6569707076747942775a6874596f517364383774756159644c713473783838677846397069385778617468612f00000000000000000000000000000000000000000000000000000000000000000000000000000000006068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d586161796d6e62516e724636796764574c4844554a65626d41334e5172475662624d3972645574413956526b2f7072652d72657665616c2e6a736f6e

Deployed Bytecode

0x60806040526004361061031a5760003560e01c806355f804b3116101ab578063a22cb465116100f7578063d4accc2e11610095578063e802e4bc1161006f578063e802e4bc146108cf578063e985e9c5146108e5578063f2c4ce1e1461092e578063f2fde38b1461094e57600080fd5b8063d4accc2e14610862578063e0cab8c714610882578063e17b35ed146108a257600080fd5b8063aabd0b0c116100d1578063aabd0b0c146107c5578063aeaf4b7a14610802578063b88d4fde14610822578063c87b56dd1461084257600080fd5b8063a22cb46514610770578063a475b5dd14610790578063a9158371146107a557600080fd5b8063780eb914116101645780638da5cb5b1161013e5780638da5cb5b1461070e57806395d89b411461072c5780639913c1c7146107415780639f1a3d9c1461075657600080fd5b8063780eb914146106cf5780637effc032146106e25780638caa0083146106f857600080fd5b806355f804b31461062f5780636352211e1461064f57806363d5502f1461066f5780636c0360eb1461068557806370a082311461069a578063715018a6146106ba57600080fd5b80632a23d07d1161026a5780633af32abf1161022357806342842e0e116101fd57806342842e0e146105af5780634f6ccce7146105cf57806351830227146105ef57806351cd2ae91461060f57600080fd5b80633af32abf146105675780633ccfd60b14610587578063405571d41461058f57600080fd5b80632a23d07d146104c95780632bf04304146104df5780632d5537b0146104ff5780632f745c59146105145780633232c10b1461053457806335a9fc731461055457600080fd5b806313faede6116102d7578063239c70ae116102b1578063239c70ae1461045357806323b872dd1461046957806323c5a0881461048957806324e186ba146104a957600080fd5b806313faede61461040957806318160ddd1461041f5780631fd8291a1461043457600080fd5b806301ffc9a71461031f57806306fdde0314610354578063081812fc14610376578063081c8c44146103ae5780630834cad4146103c3578063095ea7b3146103e7575b600080fd5b34801561032b57600080fd5b5061033f61033a3660046128d6565b61096e565b60405190151581526020015b60405180910390f35b34801561036057600080fd5b50610369610999565b60405161034b9190612a9f565b34801561038257600080fd5b50610396610391366004612959565b610a2b565b6040516001600160a01b03909116815260200161034b565b3480156103ba57600080fd5b50610369610ac5565b3480156103cf57600080fd5b506103d960105481565b60405190815260200161034b565b3480156103f357600080fd5b5061040761040236600461281c565b610b53565b005b34801561041557600080fd5b506103d9600d5481565b34801561042b57600080fd5b506008546103d9565b34801561044057600080fd5b5060155461033f90610100900460ff1681565b34801561045f57600080fd5b506103d960135481565b34801561047557600080fd5b5061040761048436600461273a565b610c69565b34801561049557600080fd5b506104076104a4366004612959565b610c9a565b3480156104b557600080fd5b506104076104c43660046128bb565b610cc9565b3480156104d557600080fd5b506103d9600e5481565b3480156104eb57600080fd5b506104076104fa366004612846565b610d06565b34801561050b57600080fd5b50610369610d48565b34801561052057600080fd5b506103d961052f36600461281c565b610d55565b34801561054057600080fd5b5061040761054f366004612910565b610deb565b610407610562366004612959565b610e2c565b34801561057357600080fd5b5061033f6105823660046126ec565b6111a2565b61040761120c565b34801561059b57600080fd5b506104076105aa366004612959565b61128e565b3480156105bb57600080fd5b506104076105ca36600461273a565b6112bd565b3480156105db57600080fd5b506103d96105ea366004612959565b6112d8565b3480156105fb57600080fd5b5060155461033f9062010000900460ff1681565b34801561061b57600080fd5b5061040761062a366004612959565b61136b565b34801561063b57600080fd5b5061040761064a366004612910565b61139a565b34801561065b57600080fd5b5061039661066a366004612959565b6113d7565b34801561067b57600080fd5b506103d960125481565b34801561069157600080fd5b5061036961144e565b3480156106a657600080fd5b506103d96106b53660046126ec565b61145b565b3480156106c657600080fd5b506104076114e2565b6104076106dd366004612959565b611518565b3480156106ee57600080fd5b506103d960145481565b34801561070457600080fd5b506103d960115481565b34801561071a57600080fd5b50600a546001600160a01b0316610396565b34801561073857600080fd5b506103696116cb565b34801561074d57600080fd5b506017546103d9565b34801561076257600080fd5b5060155461033f9060ff1681565b34801561077c57600080fd5b5061040761078b3660046127f2565b6116da565b34801561079c57600080fd5b506104076116e5565b3480156107b157600080fd5b506104076107c0366004612959565b611722565b3480156107d157600080fd5b5061033f6107e03660046126ec565b6014546001600160a01b03909116600090815260186020526040902054101590565b34801561080e57600080fd5b5061040761081d3660046128bb565b611751565b34801561082e57600080fd5b5061040761083d366004612776565b611795565b34801561084e57600080fd5b5061036961085d366004612959565b6117cd565b34801561086e57600080fd5b5061039661087d366004612959565b61194d565b34801561088e57600080fd5b5061040761089d366004612959565b611977565b3480156108ae57600080fd5b506103d96108bd3660046126ec565b60186020526000908152604090205481565b3480156108db57600080fd5b506103d9600f5481565b3480156108f157600080fd5b5061033f610900366004612707565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561093a57600080fd5b50610407610949366004612910565b6119a6565b34801561095a57600080fd5b506104076109693660046126ec565b6119e3565b60006001600160e01b0319821663780e9d6360e01b1480610993575061099382611a7b565b92915050565b6060600080546109a890612c18565b80601f01602080910402602001604051908101604052809291908181526020018280546109d490612c18565b8015610a215780601f106109f657610100808354040283529160200191610a21565b820191906000526020600020905b815481529060010190602001808311610a0457829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610aa95760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60168054610ad290612c18565b80601f0160208091040260200160405190810160405280929190818152602001828054610afe90612c18565b8015610b4b5780601f10610b2057610100808354040283529160200191610b4b565b820191906000526020600020905b815481529060010190602001808311610b2e57829003601f168201915b505050505081565b6000610b5e826113d7565b9050806001600160a01b0316836001600160a01b03161415610bcc5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610aa0565b336001600160a01b0382161480610be85750610be88133610900565b610c5a5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610aa0565b610c648383611acb565b505050565b610c733382611b39565b610c8f5760405162461bcd60e51b8152600401610aa090612b39565b610c64838383611c30565b600a546001600160a01b03163314610cc45760405162461bcd60e51b8152600401610aa090612b04565b600d55565b600a546001600160a01b03163314610cf35760405162461bcd60e51b8152600401610aa090612b04565b6015805460ff1916911515919091179055565b600a546001600160a01b03163314610d305760405162461bcd60e51b8152600401610aa090612b04565b610d3c60176000612540565b610c646017838361255e565b600c8054610ad290612c18565b6000610d608361145b565b8210610dc25760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610aa0565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e155760405162461bcd60e51b8152600401610aa090612b04565b8051610e2890600c9060208401906125c1565b5050565b6000610e3760085490565b9050610e4b600a546001600160a01b031690565b6001600160a01b0316336001600160a01b03161415610f25578160116000828254610e769190612b8a565b90915550506010546011541115610ecf5760405162461bcd60e51b815260206004820152601c60248201527f7465616d416c6c6f63746174696f6e20636170207265616368656421000000006044820152606401610aa0565b600f54610edc8284611dd7565b1115610f205760405162461bcd60e51b81526020600482015260136024820152724d617820737570706c7920726561636865642160681b6044820152606401610aa0565b611173565b601554610100900460ff1615610f6d5760405162461bcd60e51b815260206004820152600d60248201526c141c995cd85b1948195b991959609a1b6044820152606401610aa0565b6014543360009081526018602052604090205410610fcd5760405162461bcd60e51b815260206004820152601e60248201527f50726573616c652075736572206d6178206d696e7420726561636865642100006044820152606401610aa0565b610fd6336111a2565b6110145760405162461bcd60e51b815260206004820152600f60248201526e139bdd081dda1a5d195b1a5cdd1959608a1b6044820152606401610aa0565b6000821161105e5760405162461bcd60e51b815260206004820152601760248201527604d696e7420616d6f756e742063616e6e6f74206265203604c1b6044820152606401610aa0565b6014548211156110ab5760405162461bcd60e51b81526020600482015260186024820152774d6178204d696e7420616d6f756e7420726561636865642160401b6044820152606401610aa0565b6012546110b88284611dd7565b11156110fd5760405162461bcd60e51b815260206004820152601460248201527350726573616c652063617020726561636865642160601b6044820152606401610aa0565b600e5461110a9083611de3565b34101561114e5760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1032ba3432b960711b6044820152606401610aa0565b336000908152601860205260408120805484929061116d908490612b8a565b90915550505b60015b828111610c64576111903361118b8385612b8a565b611def565b8061119a81612c53565b915050611176565b6000805b60175481101561120357826001600160a01b0316601782815481106111cd576111cd612cc4565b6000918252602090912001546001600160a01b031614156111f15750600192915050565b806111fb81612c53565b9150506111a6565b50600092915050565b600a546001600160a01b031633146112365760405162461bcd60e51b8152600401610aa090612b04565b604051600090339047908381818185875af1925050503d8060008114611278576040519150601f19603f3d011682016040523d82523d6000602084013e61127d565b606091505b505090508061128b57600080fd5b50565b600a546001600160a01b031633146112b85760405162461bcd60e51b8152600401610aa090612b04565b601255565b610c6483838360405180602001604052806000815250611795565b60006112e360085490565b82106113465760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610aa0565b6008828154811061135957611359612cc4565b90600052602060002001549050919050565b600a546001600160a01b031633146113955760405162461bcd60e51b8152600401610aa090612b04565b601455565b600a546001600160a01b031633146113c45760405162461bcd60e51b8152600401610aa090612b04565b8051610e2890600b9060208401906125c1565b6000818152600260205260408120546001600160a01b0316806109935760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610aa0565b600b8054610ad290612c18565b60006001600160a01b0382166114c65760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610aa0565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461150c5760405162461bcd60e51b8152600401610aa090612b04565b6115166000611e09565b565b600061152360085490565b60155490915060ff16156115685760405162461bcd60e51b815260206004820152600c60248201526b4d696e74207061757365642160a01b6044820152606401610aa0565b600082116115b25760405162461bcd60e51b815260206004820152601760248201527604d696e7420616d6f756e742063616e6e6f74206265203604c1b6044820152606401610aa0565b6013548211156115ff5760405162461bcd60e51b81526020600482015260186024820152774d6178204d696e7420616d6f756e7420726561636865642160401b6044820152606401610aa0565b600f5461160c8284611dd7565b11156116505760405162461bcd60e51b81526020600482015260136024820152724d617820737570706c7920726561636865642160681b6044820152606401610aa0565b600d5461165d9083611de3565b3410156116a15760405162461bcd60e51b815260206004820152601260248201527124b739bab33334b1b4b2b73a1032ba3432b960711b6044820152606401610aa0565b60015b828111610c64576116b93361118b8385612b8a565b806116c381612c53565b9150506116a4565b6060600180546109a890612c18565b610e28338383611e5b565b600a546001600160a01b0316331461170f5760405162461bcd60e51b8152600401610aa090612b04565b6015805462ff0000191662010000179055565b600a546001600160a01b0316331461174c5760405162461bcd60e51b8152600401610aa090612b04565b600e55565b600a546001600160a01b0316331461177b5760405162461bcd60e51b8152600401610aa090612b04565b601580549115156101000261ff0019909216919091179055565b61179f3383611b39565b6117bb5760405162461bcd60e51b8152600401610aa090612b39565b6117c784848484611f2a565b50505050565b6000818152600260205260409020546060906001600160a01b031661184c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610aa0565b60155462010000900460ff166118ee576016805461186990612c18565b80601f016020809104026020016040519081016040528092919081815260200182805461189590612c18565b80156118e25780601f106118b7576101008083540402835291602001916118e2565b820191906000526020600020905b8154815290600101906020018083116118c557829003601f168201915b50505050509050919050565b60006118f8611f5d565b905060008151116119185760405180602001604052806000815250611946565b8061192284611f6c565b600c6040516020016119369392919061299e565b6040516020818303038152906040525b9392505050565b6017818154811061195d57600080fd5b6000918252602090912001546001600160a01b0316905081565b600a546001600160a01b031633146119a15760405162461bcd60e51b8152600401610aa090612b04565b601355565b600a546001600160a01b031633146119d05760405162461bcd60e51b8152600401610aa090612b04565b8051610e289060169060208401906125c1565b600a546001600160a01b03163314611a0d5760405162461bcd60e51b8152600401610aa090612b04565b6001600160a01b038116611a725760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610aa0565b61128b81611e09565b60006001600160e01b031982166380ac58cd60e01b1480611aac57506001600160e01b03198216635b5e139f60e01b145b8061099357506301ffc9a760e01b6001600160e01b0319831614610993565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611b00826113d7565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611bb25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610aa0565b6000611bbd836113d7565b9050806001600160a01b0316846001600160a01b03161480611bf85750836001600160a01b0316611bed84610a2b565b6001600160a01b0316145b80611c2857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c43826113d7565b6001600160a01b031614611ca75760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610aa0565b6001600160a01b038216611d095760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610aa0565b611d1483838361206a565b611d1f600082611acb565b6001600160a01b0383166000908152600360205260408120805460019290611d48908490612bd5565b90915550506001600160a01b0382166000908152600360205260408120805460019290611d76908490612b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006119468284612b8a565b60006119468284612bb6565b610e28828260405180602001604052806000815250612122565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b816001600160a01b0316836001600160a01b03161415611ebd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610aa0565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b611f35848484611c30565b611f4184848484612155565b6117c75760405162461bcd60e51b8152600401610aa090612ab2565b6060600b80546109a890612c18565b606081611f905750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611fba5780611fa481612c53565b9150611fb39050600a83612ba2565b9150611f94565b60008167ffffffffffffffff811115611fd557611fd5612cda565b6040519080825280601f01601f191660200182016040528015611fff576020820181803683370190505b5090505b8415611c2857612014600183612bd5565b9150612021600a86612c6e565b61202c906030612b8a565b60f81b81838151811061204157612041612cc4565b60200101906001600160f81b031916908160001a905350612063600a86612ba2565b9450612003565b6001600160a01b0383166120c5576120c081600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6120e8565b816001600160a01b0316836001600160a01b0316146120e8576120e88382612262565b6001600160a01b0382166120ff57610c64816122ff565b826001600160a01b0316826001600160a01b031614610c6457610c6482826123ae565b61212c83836123f2565b6121396000848484612155565b610c645760405162461bcd60e51b8152600401610aa090612ab2565b60006001600160a01b0384163b1561225757604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612199903390899088908890600401612a62565b602060405180830381600087803b1580156121b357600080fd5b505af19250505080156121e3575060408051601f3d908101601f191682019092526121e0918101906128f3565b60015b61223d573d808015612211576040519150601f19603f3d011682016040523d82523d6000602084013e612216565b606091505b5080516122355760405162461bcd60e51b8152600401610aa090612ab2565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c28565b506001949350505050565b6000600161226f8461145b565b6122799190612bd5565b6000838152600760205260409020549091508082146122cc576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061231190600190612bd5565b6000838152600960205260408120546008805493945090928490811061233957612339612cc4565b90600052602060002001549050806008838154811061235a5761235a612cc4565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061239257612392612cae565b6001900381819060005260206000200160009055905550505050565b60006123b98361145b565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b0382166124485760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610aa0565b6000818152600260205260409020546001600160a01b0316156124ad5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610aa0565b6124b96000838361206a565b6001600160a01b03821660009081526003602052604081208054600192906124e2908490612b8a565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b508054600082559060005260206000209081019061128b9190612635565b8280548282559060005260206000209081019282156125b1579160200282015b828111156125b15781546001600160a01b0319166001600160a01b0384351617825560209092019160019091019061257e565b506125bd929150612635565b5090565b8280546125cd90612c18565b90600052602060002090601f0160209004810192826125ef57600085556125b1565b82601f1061260857805160ff19168380011785556125b1565b828001600101855582156125b1579182015b828111156125b157825182559160200191906001019061261a565b5b808211156125bd5760008155600101612636565b600067ffffffffffffffff8084111561266557612665612cda565b604051601f8501601f19908116603f0116810190828211818310171561268d5761268d612cda565b816040528093508581528686860111156126a657600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146126d757600080fd5b919050565b803580151581146126d757600080fd5b6000602082840312156126fe57600080fd5b611946826126c0565b6000806040838503121561271a57600080fd5b612723836126c0565b9150612731602084016126c0565b90509250929050565b60008060006060848603121561274f57600080fd5b612758846126c0565b9250612766602085016126c0565b9150604084013590509250925092565b6000806000806080858703121561278c57600080fd5b612795856126c0565b93506127a3602086016126c0565b925060408501359150606085013567ffffffffffffffff8111156127c657600080fd5b8501601f810187136127d757600080fd5b6127e68782356020840161264a565b91505092959194509250565b6000806040838503121561280557600080fd5b61280e836126c0565b9150612731602084016126dc565b6000806040838503121561282f57600080fd5b612838836126c0565b946020939093013593505050565b6000806020838503121561285957600080fd5b823567ffffffffffffffff8082111561287157600080fd5b818501915085601f83011261288557600080fd5b81358181111561289457600080fd5b8660208260051b85010111156128a957600080fd5b60209290920196919550909350505050565b6000602082840312156128cd57600080fd5b611946826126dc565b6000602082840312156128e857600080fd5b813561194681612cf0565b60006020828403121561290557600080fd5b815161194681612cf0565b60006020828403121561292257600080fd5b813567ffffffffffffffff81111561293957600080fd5b8201601f8101841361294a57600080fd5b611c288482356020840161264a565b60006020828403121561296b57600080fd5b5035919050565b6000815180845261298a816020860160208601612bec565b601f01601f19169290920160200192915050565b6000845160206129b18285838a01612bec565b8551918401916129c48184848a01612bec565b8554920191600090600181811c90808316806129e157607f831692505b8583108114156129ff57634e487b7160e01b85526022600452602485fd5b808015612a135760018114612a2457612a51565b60ff19851688528388019550612a51565b60008b81526020902060005b85811015612a495781548a820152908401908801612a30565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612a9590830184612972565b9695505050505050565b6020815260006119466020830184612972565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60008219821115612b9d57612b9d612c82565b500190565b600082612bb157612bb1612c98565b500490565b6000816000190483118215151615612bd057612bd0612c82565b500290565b600082821015612be757612be7612c82565b500390565b60005b83811015612c07578181015183820152602001612bef565b838111156117c75750506000910152565b600181811c90821680612c2c57607f821691505b60208210811415612c4d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c6757612c67612c82565b5060010190565b600082612c7d57612c7d612c98565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461128b57600080fdfea2646970667358221220965e4270ffb99672fc47ec19c80866d92c5b2b82ed007c03d36b5238214c5afa64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000160000000000000000000000000000000000000000000000000000000000000000a57617220736e61696c7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000357534700000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d6569707076747942775a6874596f517364383774756159644c713473783838677846397069385778617468612f00000000000000000000000000000000000000000000000000000000000000000000000000000000006068747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d586161796d6e62516e724636796764574c4844554a65626d41334e5172475662624d3972645574413956526b2f7072652d72657665616c2e6a736f6e

-----Decoded View---------------
Arg [0] : _name (string): War snails
Arg [1] : _symbol (string): WSG
Arg [2] : _initURI (string): ipfs://QmeippvtyBwZhtYoQsd87tuaYdLq4sx88gxF9pi8Wxatha/
Arg [3] : _notRevealedUri (string): https://gateway.pinata.cloud/ipfs/QmXaaymnbQnrF6ygdWLHDUJebmA3NQrGVbbM9rdUtA9VRk/pre-reveal.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [5] : 57617220736e61696c7300000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 5753470000000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d6569707076747942775a6874596f517364383774756159
Arg [10] : 644c713473783838677846397069385778617468612f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [12] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [13] : 732f516d586161796d6e62516e724636796764574c4844554a65626d41334e51
Arg [14] : 72475662624d3972645574413956526b2f7072652d72657665616c2e6a736f6e


Deployed Bytecode Sourcemap

52609:5987:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46372:224;;;;;;;;;;-1:-1:-1;46372:224:0;;;;;:::i;:::-;;:::i;:::-;;;7790:14:1;;7783:22;7765:41;;7753:2;7738:18;46372:224:0;;;;;;;;33192:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;34751:221::-;;;;;;;;;;-1:-1:-1;34751:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7088:32:1;;;7070:51;;7058:2;7043:18;34751:221:0;6924:203:1;53267:28:0;;;;;;;;;;;;;:::i;52940:36::-;;;;;;;;;;;;;;;;;;;18882:25:1;;;18870:2;18855:18;52940:36:0;18736:177:1;34274:411:0;;;;;;;;;;-1:-1:-1;34274:411:0;;;;;:::i;:::-;;:::i;:::-;;52811:32;;;;;;;;;;;;;;;;47012:113;;;;;;;;;;-1:-1:-1;47100:10:0;:17;47012:113;;53191:30;;;;;;;;;;-1:-1:-1;53191:30:0;;;;;;;;;;;53062:34;;;;;;;;;;;;;;;;35501:339;;;;;;;;;;-1:-1:-1;35501:339:0;;;;;:::i;:::-;;:::i;56608:93::-;;;;;;;;;;-1:-1:-1;56608:93:0;;;;;:::i;:::-;;:::i;56713:91::-;;;;;;;;;;-1:-1:-1;56713:91:0;;;;;:::i;:::-;;:::i;52852:39::-;;;;;;;;;;;;;;;;53669:172;;;;;;;;;;-1:-1:-1;53669:172:0;;;;;:::i;:::-;;:::i;52769:33::-;;;;;;;;;;;;;:::i;46680:256::-;;;;;;;;;;-1:-1:-1;46680:256:0;;;;;:::i;:::-;;:::i;57609:129::-;;;;;;;;;;-1:-1:-1;57609:129:0;;;;;:::i;:::-;;:::i;54093:1127::-;;;;;;:::i;:::-;;:::i;58000:278::-;;;;;;;;;;-1:-1:-1;58000:278:0;;;;;:::i;:::-;;:::i;58290:173::-;;;:::i;56936:103::-;;;;;;;;;;-1:-1:-1;56936:103:0;;;;;:::i;:::-;;:::i;35911:185::-;;;;;;;;;;-1:-1:-1;35911:185:0;;;;;:::i;:::-;;:::i;47202:233::-;;;;;;;;;;-1:-1:-1;47202:233:0;;;;;:::i;:::-;;:::i;53230:28::-;;;;;;;;;;-1:-1:-1;53230:28:0;;;;;;;;;;;57192:143;;;;;;;;;;-1:-1:-1;57192:143:0;;;;;:::i;:::-;;:::i;57489:108::-;;;;;;;;;;-1:-1:-1;57489:108:0;;;;;:::i;:::-;;:::i;32886:239::-;;;;;;;;;;-1:-1:-1;32886:239:0;;;;;:::i;:::-;;:::i;53022:31::-;;;;;;;;;;;;;;;;52739:21;;;;;;;;;;;;;:::i;32616:208::-;;;;;;;;;;-1:-1:-1;32616:208:0;;;;;:::i;:::-;;:::i;11788:103::-;;;;;;;;;;;;;:::i;55232:582::-;;;;;;:::i;:::-;;:::i;53105:39::-;;;;;;;;;;;;;;;;52985:28;;;;;;;;;;;;;;;;11137:87;;;;;;;;;;-1:-1:-1;11210:6:0;;-1:-1:-1;;;;;11210:6:0;11137:87;;33361:104;;;;;;;;;;;;;:::i;53853:108::-;;;;;;;;;;-1:-1:-1;53930:14:0;:21;53853:108;;53153:29;;;;;;;;;;-1:-1:-1;53153:29:0;;;;;;;;35044:155;;;;;;;;;;-1:-1:-1;35044:155:0;;;;;:::i;:::-;;:::i;56404:73::-;;;;;;;;;;;;;:::i;56489:107::-;;;;;;;;;;-1:-1:-1;56489:107:0;;;;;:::i;:::-;;:::i;57854:134::-;;;;;;;;;;-1:-1:-1;57854:134:0;;;;;:::i;:::-;57958:20;;-1:-1:-1;;;;;57941:13:0;;;57915:4;57941:13;;;:6;:13;;;;;;:37;;;57854:134;57750:92;;;;;;;;;;-1:-1:-1;57750:92:0;;;;;:::i;:::-;;:::i;36167:328::-;;;;;;;;;;-1:-1:-1;36167:328:0;;;;;:::i;:::-;;:::i;55826:566::-;;;;;;;;;;-1:-1:-1;55826:566:0;;;;;:::i;:::-;;:::i;53304:31::-;;;;;;;;;;-1:-1:-1;53304:31:0;;;;;:::i;:::-;;:::i;57051:129::-;;;;;;;;;;-1:-1:-1;57051:129:0;;;;;:::i;:::-;;:::i;53344:39::-;;;;;;;;;;-1:-1:-1;53344:39:0;;;;;:::i;:::-;;;;;;;;;;;;;;52900:31;;;;;;;;;;;;;;;;35270:164;;;;;;;;;;-1:-1:-1;35270:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;35391:25:0;;;35367:4;35391:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;35270:164;57347:130;;;;;;;;;;-1:-1:-1;57347:130:0;;;;;:::i;:::-;;:::i;12046:201::-;;;;;;;;;;-1:-1:-1;12046:201:0;;;;;:::i;:::-;;:::i;46372:224::-;46474:4;-1:-1:-1;;;;;;46498:50:0;;-1:-1:-1;;;46498:50:0;;:90;;;46552:36;46576:11;46552:23;:36::i;:::-;46491:97;46372:224;-1:-1:-1;;46372:224:0:o;33192:100::-;33246:13;33279:5;33272:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33192:100;:::o;34751:221::-;34827:7;38094:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38094:16:0;34847:73;;;;-1:-1:-1;;;34847:73:0;;14775:2:1;34847:73:0;;;14757:21:1;14814:2;14794:18;;;14787:30;14853:34;14833:18;;;14826:62;-1:-1:-1;;;14904:18:1;;;14897:42;14956:19;;34847:73:0;;;;;;;;;-1:-1:-1;34940:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;34940:24:0;;34751:221::o;53267:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34274:411::-;34355:13;34371:23;34386:7;34371:14;:23::i;:::-;34355:39;;34419:5;-1:-1:-1;;;;;34413:11:0;:2;-1:-1:-1;;;;;34413:11:0;;;34405:57;;;;-1:-1:-1;;;34405:57:0;;16648:2:1;34405:57:0;;;16630:21:1;16687:2;16667:18;;;16660:30;16726:34;16706:18;;;16699:62;-1:-1:-1;;;16777:18:1;;;16770:31;16818:19;;34405:57:0;16446:397:1;34405:57:0;9941:10;-1:-1:-1;;;;;34497:21:0;;;;:62;;-1:-1:-1;34522:37:0;34539:5;9941:10;35270:164;:::i;34522:37::-;34475:168;;;;-1:-1:-1;;;34475:168:0;;12471:2:1;34475:168:0;;;12453:21:1;12510:2;12490:18;;;12483:30;12549:34;12529:18;;;12522:62;12620:26;12600:18;;;12593:54;12664:19;;34475:168:0;12269:420:1;34475:168:0;34656:21;34665:2;34669:7;34656:8;:21::i;:::-;34344:341;34274:411;;:::o;35501:339::-;35696:41;9941:10;35729:7;35696:18;:41::i;:::-;35688:103;;;;-1:-1:-1;;;35688:103:0;;;;;;;:::i;:::-;35804:28;35814:4;35820:2;35824:7;35804:9;:28::i;56608:93::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;56676:4:::1;:15:::0;56608:93::o;56713:91::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;56775:10:::1;:19:::0;;-1:-1:-1;;56775:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;56713:91::o;53669:172::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;53765:21:::1;53772:14;;53765:21;:::i;:::-;53799:32;:14;53816:15:::0;;53799:32:::1;:::i;52769:33::-:0;;;;;;;:::i;46680:256::-;46777:7;46813:23;46830:5;46813:16;:23::i;:::-;46805:5;:31;46797:87;;;;-1:-1:-1;;;46797:87:0;;8243:2:1;46797:87:0;;;8225:21:1;8282:2;8262:18;;;8255:30;8321:34;8301:18;;;8294:62;-1:-1:-1;;;8372:18:1;;;8365:41;8423:19;;46797:87:0;8041:407:1;46797:87:0;-1:-1:-1;;;;;;46902:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;46680:256::o;57609:129::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;57700:28;;::::1;::::0;:9:::1;::::0;:28:::1;::::0;::::1;::::0;::::1;:::i;:::-;;57609:129:::0;:::o;54093:1127::-;54169:14;54186:13;47100:10;:17;;47012:113;54186:13;54169:30;;54230:7;11210:6;;-1:-1:-1;;;;;11210:6:0;;11137:87;54230:7;-1:-1:-1;;;;;54216:21:0;:10;-1:-1:-1;;;;;54216:21:0;;54212:876;;;54269:11;54256:9;;:24;;;;;;;:::i;:::-;;;;-1:-1:-1;;54318:15:0;;54305:9;;:28;;54297:69;;;;-1:-1:-1;;;54297:69:0;;18581:2:1;54297:69:0;;;18563:21:1;18620:2;18600:18;;;18593:30;18659;18639:18;;;18632:58;18707:18;;54297:69:0;18379:352:1;54297:69:0;54418:9;;54391:23;:6;54402:11;54391:10;:23::i;:::-;:36;;54383:68;;;;-1:-1:-1;;;54383:68:0;;17468:2:1;54383:68:0;;;17450:21:1;17507:2;17487:18;;;17480:30;-1:-1:-1;;;17526:18:1;;;17519:49;17585:18;;54383:68:0;17266:343:1;54383:68:0;54212:876;;;54496:10;;;;;;;54495:11;54487:37;;;;-1:-1:-1;;;54487:37:0;;15549:2:1;54487:37:0;;;15531:21:1;15588:2;15568:18;;;15561:30;-1:-1:-1;;;15607:18:1;;;15600:43;15660:18;;54487:37:0;15347:337:1;54487:37:0;57958:20;;54566:10;57915:4;57941:13;;;:6;:13;;;;;;:37;54541:80;;;;-1:-1:-1;;;54541:80:0;;10593:2:1;54541:80:0;;;10575:21:1;10632:2;10612:18;;;10605:30;10671:32;10651:18;;;10644:60;10721:18;;54541:80:0;10391:354:1;54541:80:0;54646:25;54660:10;54646:13;:25::i;:::-;54638:53;;;;-1:-1:-1;;;54638:53:0;;12896:2:1;54638:53:0;;;12878:21:1;12935:2;12915:18;;;12908:30;-1:-1:-1;;;12954:18:1;;;12947:45;13009:18;;54638:53:0;12694:339:1;54638:53:0;54730:1;54716:11;:15;54708:51;;;;-1:-1:-1;;;54708:51:0;;18229:2:1;54708:51:0;;;18211:21:1;18268:2;18248:18;;;18241:30;-1:-1:-1;;;18287:18:1;;;18280:53;18350:18;;54708:51:0;18027:347:1;54708:51:0;54799:20;;54784:11;:35;;54776:72;;;;-1:-1:-1;;;54776:72:0;;14061:2:1;54776:72:0;;;14043:21:1;14100:2;14080:18;;;14073:30;-1:-1:-1;;;14119:18:1;;;14112:54;14183:18;;54776:72:0;13859:348:1;54776:72:0;54900:10;;54873:23;:6;54884:11;54873:10;:23::i;:::-;:37;;54865:70;;;;-1:-1:-1;;;54865:70:0;;9887:2:1;54865:70:0;;;9869:21:1;9926:2;9906:18;;;9899:30;-1:-1:-1;;;9945:18:1;;;9938:50;10005:18;;54865:70:0;9685:344:1;54865:70:0;54973:11;;:28;;54989:11;54973:15;:28::i;:::-;54960:9;:41;;54952:72;;;;-1:-1:-1;;;54952:72:0;;11711:2:1;54952:72:0;;;11693:21:1;11750:2;11730:18;;;11723:30;-1:-1:-1;;;11769:18:1;;;11762:48;11827:18;;54952:72:0;11509:342:1;54952:72:0;55048:10;55041:18;;;;:6;:18;;;;;:33;;55063:11;;55041:18;:33;;55063:11;;55041:33;:::i;:::-;;;;-1:-1:-1;;54212:876:0;55121:1;55104:107;55129:11;55124:1;:16;55104:107;;55164:33;55174:10;55186;55195:1;55186:6;:10;:::i;:::-;55164:9;:33::i;:::-;55142:3;;;;:::i;:::-;;;;55104:107;;58000:278;58058:4;;58081:163;58104:14;:21;58100:25;;58081:163;;;58174:5;-1:-1:-1;;;;;58153:26:0;:14;58168:1;58153:17;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;58153:17:0;:26;58149:82;;;-1:-1:-1;58209:4:0;;58000:278;-1:-1:-1;;58000:278:0:o;58149:82::-;58127:3;;;;:::i;:::-;;;;58081:163;;;-1:-1:-1;58263:5:0;;58000:278;-1:-1:-1;;58000:278:0:o;58290:173::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;58367:57:::1;::::0;58349:12:::1;::::0;58375:10:::1;::::0;58398:21:::1;::::0;58349:12;58367:57;58349:12;58367:57;58398:21;58375:10;58367:57:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58348:76;;;58445:7;58437:16;;;::::0;::::1;;58335:128;58290:173::o:0;56936:103::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;57009:10:::1;:20:::0;56936:103::o;35911:185::-;36049:39;36066:4;36072:2;36076:7;36049:39;;;;;;;;;;;;:16;:39::i;47202:233::-;47277:7;47313:30;47100:10;:17;;47012:113;47313:30;47305:5;:38;47297:95;;;;-1:-1:-1;;;47297:95:0;;17816:2:1;47297:95:0;;;17798:21:1;17855:2;17835:18;;;17828:30;17894:34;17874:18;;;17867:62;-1:-1:-1;;;17945:18:1;;;17938:42;17997:19;;47297:95:0;17614:408:1;47297:95:0;47410:10;47421:5;47410:17;;;;;;;;:::i;:::-;;;;;;;;;47403:24;;47202:233;;;:::o;57192:143::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;57285:20:::1;:40:::0;57192:143::o;57489:108::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;57566:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;32886:239::-:0;32958:7;32994:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32994:16:0;33029:19;33021:73;;;;-1:-1:-1;;;33021:73:0;;13651:2:1;33021:73:0;;;13633:21:1;13690:2;13670:18;;;13663:30;13729:34;13709:18;;;13702:62;-1:-1:-1;;;13780:18:1;;;13773:39;13829:19;;33021:73:0;13449:405:1;52739:21:0;;;;;;;:::i;32616:208::-;32688:7;-1:-1:-1;;;;;32716:19:0;;32708:74;;;;-1:-1:-1;;;32708:74:0;;13240:2:1;32708:74:0;;;13222:21:1;13279:2;13259:18;;;13252:30;13318:34;13298:18;;;13291:62;-1:-1:-1;;;13369:18:1;;;13362:40;13419:19;;32708:74:0;13038:406:1;32708:74:0;-1:-1:-1;;;;;;32800:16:0;;;;;:9;:16;;;;;;;32616:208::o;11788:103::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;11853:30:::1;11880:1;11853:18;:30::i;:::-;11788:103::o:0;55232:582::-;55301:14;55318:13;47100:10;:17;;47012:113;55318:13;55353:10;;55301:30;;-1:-1:-1;55353:10:0;;55352:11;55344:36;;;;-1:-1:-1;;;55344:36:0;;16307:2:1;55344:36:0;;;16289:21:1;16346:2;16326:18;;;16319:30;-1:-1:-1;;;16365:18:1;;;16358:42;16417:18;;55344:36:0;16105:336:1;55344:36:0;55415:1;55401:11;:15;55393:51;;;;-1:-1:-1;;;55393:51:0;;18229:2:1;55393:51:0;;;18211:21:1;18268:2;18248:18;;;18241:30;-1:-1:-1;;;18287:18:1;;;18280:53;18350:18;;55393:51:0;18027:347:1;55393:51:0;55480:13;;55465:11;:28;;55457:65;;;;-1:-1:-1;;;55457:65:0;;14061:2:1;55457:65:0;;;14043:21:1;14100:2;14080:18;;;14073:30;-1:-1:-1;;;14119:18:1;;;14112:54;14183:18;;55457:65:0;13859:348:1;55457:65:0;55570:9;;55543:23;:6;55554:11;55543:10;:23::i;:::-;:36;;55535:68;;;;-1:-1:-1;;;55535:68:0;;17468:2:1;55535:68:0;;;17450:21:1;17507:2;17487:18;;;17480:30;-1:-1:-1;;;17526:18:1;;;17519:49;17585:18;;55535:68:0;17266:343:1;55535:68:0;55637:4;;:21;;55646:11;55637:8;:21::i;:::-;55624:9;:34;;55616:65;;;;-1:-1:-1;;;55616:65:0;;11711:2:1;55616:65:0;;;11693:21:1;11750:2;11730:18;;;11723:30;-1:-1:-1;;;11769:18:1;;;11762:48;11827:18;;55616:65:0;11509:342:1;55616:65:0;55715:1;55698:107;55723:11;55718:1;:16;55698:107;;55758:33;55768:10;55780;55789:1;55780:6;:10;:::i;55758:33::-;55736:3;;;;:::i;:::-;;;;55698:107;;33361:104;33417:13;33450:7;33443:14;;;;;:::i;35044:155::-;35139:52;9941:10;35172:8;35182;35139:18;:52::i;56404:73::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;56452:8:::1;:15:::0;;-1:-1:-1;;56452:15:0::1;::::0;::::1;::::0;;56404:73::o;56489:107::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;56564:11:::1;:22:::0;56489:107::o;57750:92::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;57813:10:::1;:19:::0;;;::::1;;;;-1:-1:-1::0;;57813:19:0;;::::1;::::0;;;::::1;::::0;;57750:92::o;36167:328::-;36342:41;9941:10;36375:7;36342:18;:41::i;:::-;36334:103;;;;-1:-1:-1;;;36334:103:0;;;;;;;:::i;:::-;36448:39;36462:4;36468:2;36472:7;36481:5;36448:13;:39::i;:::-;36167:328;;;;:::o;55826:566::-;38070:4;38094:16;;;:7;:16;;;;;;55934:13;;-1:-1:-1;;;;;38094:16:0;55969:111;;;;-1:-1:-1;;;55969:111:0;;15891:2:1;55969:111:0;;;15873:21:1;15930:2;15910:18;;;15903:30;15969:34;15949:18;;;15942:62;-1:-1:-1;;;16020:18:1;;;16013:45;16075:19;;55969:111:0;15689:411:1;55969:111:0;56101:8;;;;;;;56097:75;;56144:14;56137:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55826:566;;;:::o;56097:75::-;56188:28;56219:10;:8;:10::i;:::-;56188:41;;56280:1;56255:14;56249:28;:32;:133;;;;;;;;;;;;;;;;;56319:14;56335:18;:7;:16;:18::i;:::-;56355:9;56302:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;56249:133;56242:140;55826:566;-1:-1:-1;;;55826:566:0:o;53304:31::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;53304:31:0;;-1:-1:-1;53304:31:0;:::o;57051:129::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;57137:13:::1;:33:::0;57051:129::o;57347:130::-;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;57435:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;12046:201::-:0;11210:6;;-1:-1:-1;;;;;11210:6:0;9941:10;11357:23;11349:68;;;;-1:-1:-1;;;11349:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12135:22:0;::::1;12127:73;;;::::0;-1:-1:-1;;;12127:73:0;;9074:2:1;12127:73:0::1;::::0;::::1;9056:21:1::0;9113:2;9093:18;;;9086:30;9152:34;9132:18;;;9125:62;-1:-1:-1;;;9203:18:1;;;9196:36;9249:19;;12127:73:0::1;8872:402:1::0;12127:73:0::1;12211:28;12230:8;12211:18;:28::i;32247:305::-:0;32349:4;-1:-1:-1;;;;;;32386:40:0;;-1:-1:-1;;;32386:40:0;;:105;;-1:-1:-1;;;;;;;32443:48:0;;-1:-1:-1;;;32443:48:0;32386:105;:158;;;-1:-1:-1;;;;;;;;;;24030:40:0;;;32508:36;23921:157;42151:174;42226:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;42226:29:0;-1:-1:-1;;;;;42226:29:0;;;;;;;;:24;;42280:23;42226:24;42280:14;:23::i;:::-;-1:-1:-1;;;;;42271:46:0;;;;;;;;;;;42151:174;;:::o;38299:348::-;38392:4;38094:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38094:16:0;38409:73;;;;-1:-1:-1;;;38409:73:0;;12058:2:1;38409:73:0;;;12040:21:1;12097:2;12077:18;;;12070:30;12136:34;12116:18;;;12109:62;-1:-1:-1;;;12187:18:1;;;12180:42;12239:19;;38409:73:0;11856:408:1;38409:73:0;38493:13;38509:23;38524:7;38509:14;:23::i;:::-;38493:39;;38562:5;-1:-1:-1;;;;;38551:16:0;:7;-1:-1:-1;;;;;38551:16:0;;:51;;;;38595:7;-1:-1:-1;;;;;38571:31:0;:20;38583:7;38571:11;:20::i;:::-;-1:-1:-1;;;;;38571:31:0;;38551:51;:87;;;-1:-1:-1;;;;;;35391:25:0;;;35367:4;35391:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;38606:32;38543:96;38299:348;-1:-1:-1;;;;38299:348:0:o;41408:625::-;41567:4;-1:-1:-1;;;;;41540:31:0;:23;41555:7;41540:14;:23::i;:::-;-1:-1:-1;;;;;41540:31:0;;41532:81;;;;-1:-1:-1;;;41532:81:0;;9481:2:1;41532:81:0;;;9463:21:1;9520:2;9500:18;;;9493:30;9559:34;9539:18;;;9532:62;-1:-1:-1;;;9610:18:1;;;9603:35;9655:19;;41532:81:0;9279:401:1;41532:81:0;-1:-1:-1;;;;;41632:16:0;;41624:65;;;;-1:-1:-1;;;41624:65:0;;10952:2:1;41624:65:0;;;10934:21:1;10991:2;10971:18;;;10964:30;11030:34;11010:18;;;11003:62;-1:-1:-1;;;11081:18:1;;;11074:34;11125:19;;41624:65:0;10750:400:1;41624:65:0;41702:39;41723:4;41729:2;41733:7;41702:20;:39::i;:::-;41806:29;41823:1;41827:7;41806:8;:29::i;:::-;-1:-1:-1;;;;;41848:15:0;;;;;;:9;:15;;;;;:20;;41867:1;;41848:15;:20;;41867:1;;41848:20;:::i;:::-;;;;-1:-1:-1;;;;;;;41879:13:0;;;;;;:9;:13;;;;;:18;;41896:1;;41879:13;:18;;41896:1;;41879:18;:::i;:::-;;;;-1:-1:-1;;41908:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;41908:21:0;-1:-1:-1;;;;;41908:21:0;;;;;;;;;41947:27;;41908:16;;41947:27;;;;;;;34344:341;34274:411;;:::o;2893:98::-;2951:7;2978:5;2982:1;2978;:5;:::i;3631:98::-;3689:7;3716:5;3720:1;3716;:5;:::i;38989:110::-;39065:26;39075:2;39079:7;39065:26;;;;;;;;;;;;:9;:26::i;12407:191::-;12500:6;;;-1:-1:-1;;;;;12517:17:0;;;-1:-1:-1;;;;;;12517:17:0;;;;;;;12550:40;;12500:6;;;12517:17;12500:6;;12550:40;;12481:16;;12550:40;12470:128;12407:191;:::o;42467:315::-;42622:8;-1:-1:-1;;;;;42613:17:0;:5;-1:-1:-1;;;;;42613:17:0;;;42605:55;;;;-1:-1:-1;;;42605:55:0;;11357:2:1;42605:55:0;;;11339:21:1;11396:2;11376:18;;;11369:30;11435:27;11415:18;;;11408:55;11480:18;;42605:55:0;11155:349:1;42605:55:0;-1:-1:-1;;;;;42671:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;42671:46:0;;;;;;;;;;42733:41;;7765::1;;;42733::0;;7738:18:1;42733:41:0;;;;;;;42467:315;;;:::o;37377:::-;37534:28;37544:4;37550:2;37554:7;37534:9;:28::i;:::-;37581:48;37604:4;37610:2;37614:7;37623:5;37581:22;:48::i;:::-;37573:111;;;;-1:-1:-1;;;37573:111:0;;;;;;;:::i;58475:112::-;58535:13;58570:7;58563:14;;;;;:::i;7423:723::-;7479:13;7700:10;7696:53;;-1:-1:-1;;7727:10:0;;;;;;;;;;;;-1:-1:-1;;;7727:10:0;;;;;7423:723::o;7696:53::-;7774:5;7759:12;7815:78;7822:9;;7815:78;;7848:8;;;;:::i;:::-;;-1:-1:-1;7871:10:0;;-1:-1:-1;7879:2:0;7871:10;;:::i;:::-;;;7815:78;;;7903:19;7935:6;7925:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7925:17:0;;7903:39;;7953:154;7960:10;;7953:154;;7987:11;7997:1;7987:11;;:::i;:::-;;-1:-1:-1;8056:10:0;8064:2;8056:5;:10;:::i;:::-;8043:24;;:2;:24;:::i;:::-;8030:39;;8013:6;8020;8013:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8013:56:0;;;;;;;;-1:-1:-1;8084:11:0;8093:2;8084:11;;:::i;:::-;;;7953:154;;48048:589;-1:-1:-1;;;;;48254:18:0;;48250:187;;48289:40;48321:7;49464:10;:17;;49437:24;;;;:15;:24;;;;;:44;;;49492:24;;;;;;;;;;;;49360:164;48289:40;48250:187;;;48359:2;-1:-1:-1;;;;;48351:10:0;:4;-1:-1:-1;;;;;48351:10:0;;48347:90;;48378:47;48411:4;48417:7;48378:32;:47::i;:::-;-1:-1:-1;;;;;48451:16:0;;48447:183;;48484:45;48521:7;48484:36;:45::i;48447:183::-;48557:4;-1:-1:-1;;;;;48551:10:0;:2;-1:-1:-1;;;;;48551:10:0;;48547:83;;48578:40;48606:2;48610:7;48578:27;:40::i;39326:321::-;39456:18;39462:2;39466:7;39456:5;:18::i;:::-;39507:54;39538:1;39542:2;39546:7;39555:5;39507:22;:54::i;:::-;39485:154;;;;-1:-1:-1;;;39485:154:0;;;;;;;:::i;43347:799::-;43502:4;-1:-1:-1;;;;;43523:13:0;;14133:19;:23;43519:620;;43559:72;;-1:-1:-1;;;43559:72:0;;-1:-1:-1;;;;;43559:36:0;;;;;:72;;9941:10;;43610:4;;43616:7;;43625:5;;43559:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43559:72:0;;;;;;;;-1:-1:-1;;43559:72:0;;;;;;;;;;;;:::i;:::-;;;43555:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;43801:13:0;;43797:272;;43844:60;;-1:-1:-1;;;43844:60:0;;;;;;;:::i;43797:272::-;44019:6;44013:13;44004:6;44000:2;43996:15;43989:38;43555:529;-1:-1:-1;;;;;;43682:51:0;-1:-1:-1;;;43682:51:0;;-1:-1:-1;43675:58:0;;43519:620;-1:-1:-1;44123:4:0;43347:799;;;;;;:::o;50151:988::-;50417:22;50467:1;50442:22;50459:4;50442:16;:22::i;:::-;:26;;;;:::i;:::-;50479:18;50500:26;;;:17;:26;;;;;;50417:51;;-1:-1:-1;50633:28:0;;;50629:328;;-1:-1:-1;;;;;50700:18:0;;50678:19;50700:18;;;:12;:18;;;;;;;;:34;;;;;;;;;50751:30;;;;;;:44;;;50868:30;;:17;:30;;;;;:43;;;50629:328;-1:-1:-1;51053:26:0;;;;:17;:26;;;;;;;;51046:33;;;-1:-1:-1;;;;;51097:18:0;;;;;:12;:18;;;;;:34;;;;;;;51090:41;50151:988::o;51434:1079::-;51712:10;:17;51687:22;;51712:21;;51732:1;;51712:21;:::i;:::-;51744:18;51765:24;;;:15;:24;;;;;;52138:10;:26;;51687:46;;-1:-1:-1;51765:24:0;;51687:46;;52138:26;;;;;;:::i;:::-;;;;;;;;;52116:48;;52202:11;52177:10;52188;52177:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;52282:28;;;:15;:28;;;;;;;:41;;;52454:24;;;;;52447:31;52489:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;51505:1008;;;51434:1079;:::o;48938:221::-;49023:14;49040:20;49057:2;49040:16;:20::i;:::-;-1:-1:-1;;;;;49071:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;49116:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;48938:221:0:o;39983:439::-;-1:-1:-1;;;;;40063:16:0;;40055:61;;;;-1:-1:-1;;;40055:61:0;;14414:2:1;40055:61:0;;;14396:21:1;;;14433:18;;;14426:30;14492:34;14472:18;;;14465:62;14544:18;;40055:61:0;14212:356:1;40055:61:0;38070:4;38094:16;;;:7;:16;;;;;;-1:-1:-1;;;;;38094:16:0;:30;40127:58;;;;-1:-1:-1;;;40127:58:0;;10236:2:1;40127:58:0;;;10218:21:1;10275:2;10255:18;;;10248:30;10314;10294:18;;;10287:58;10362:18;;40127:58:0;10034:352:1;40127:58:0;40198:45;40227:1;40231:2;40235:7;40198:20;:45::i;:::-;-1:-1:-1;;;;;40256:13:0;;;;;;:9;:13;;;;;:18;;40273:1;;40256:13;:18;;40273:1;;40256:18;:::i;:::-;;;;-1:-1:-1;;40285:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;40285:21:0;-1:-1:-1;;;;;40285:21:0;;;;;;;;40324:33;;40285:16;;;40324:33;;40285:16;;40324:33;57700:28:::1;57609:129:::0;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:160::-;893:20;;949:13;;942:21;932:32;;922:60;;978:1;975;968:12;993:186;1052:6;1105:2;1093:9;1084:7;1080:23;1076:32;1073:52;;;1121:1;1118;1111:12;1073:52;1144:29;1163:9;1144:29;:::i;1184:260::-;1252:6;1260;1313:2;1301:9;1292:7;1288:23;1284:32;1281:52;;;1329:1;1326;1319:12;1281:52;1352:29;1371:9;1352:29;:::i;:::-;1342:39;;1400:38;1434:2;1423:9;1419:18;1400:38;:::i;:::-;1390:48;;1184:260;;;;;:::o;1449:328::-;1526:6;1534;1542;1595:2;1583:9;1574:7;1570:23;1566:32;1563:52;;;1611:1;1608;1601:12;1563:52;1634:29;1653:9;1634:29;:::i;:::-;1624:39;;1682:38;1716:2;1705:9;1701:18;1682:38;:::i;:::-;1672:48;;1767:2;1756:9;1752:18;1739:32;1729:42;;1449:328;;;;;:::o;1782:666::-;1877:6;1885;1893;1901;1954:3;1942:9;1933:7;1929:23;1925:33;1922:53;;;1971:1;1968;1961:12;1922:53;1994:29;2013:9;1994:29;:::i;:::-;1984:39;;2042:38;2076:2;2065:9;2061:18;2042:38;:::i;:::-;2032:48;;2127:2;2116:9;2112:18;2099:32;2089:42;;2182:2;2171:9;2167:18;2154:32;2209:18;2201:6;2198:30;2195:50;;;2241:1;2238;2231:12;2195:50;2264:22;;2317:4;2309:13;;2305:27;-1:-1:-1;2295:55:1;;2346:1;2343;2336:12;2295:55;2369:73;2434:7;2429:2;2416:16;2411:2;2407;2403:11;2369:73;:::i;:::-;2359:83;;;1782:666;;;;;;;:::o;2453:254::-;2518:6;2526;2579:2;2567:9;2558:7;2554:23;2550:32;2547:52;;;2595:1;2592;2585:12;2547:52;2618:29;2637:9;2618:29;:::i;:::-;2608:39;;2666:35;2697:2;2686:9;2682:18;2666:35;:::i;2712:254::-;2780:6;2788;2841:2;2829:9;2820:7;2816:23;2812:32;2809:52;;;2857:1;2854;2847:12;2809:52;2880:29;2899:9;2880:29;:::i;:::-;2870:39;2956:2;2941:18;;;;2928:32;;-1:-1:-1;;;2712:254:1:o;2971:615::-;3057:6;3065;3118:2;3106:9;3097:7;3093:23;3089:32;3086:52;;;3134:1;3131;3124:12;3086:52;3174:9;3161:23;3203:18;3244:2;3236:6;3233:14;3230:34;;;3260:1;3257;3250:12;3230:34;3298:6;3287:9;3283:22;3273:32;;3343:7;3336:4;3332:2;3328:13;3324:27;3314:55;;3365:1;3362;3355:12;3314:55;3405:2;3392:16;3431:2;3423:6;3420:14;3417:34;;;3447:1;3444;3437:12;3417:34;3500:7;3495:2;3485:6;3482:1;3478:14;3474:2;3470:23;3466:32;3463:45;3460:65;;;3521:1;3518;3511:12;3460:65;3552:2;3544:11;;;;;3574:6;;-1:-1:-1;2971:615:1;;-1:-1:-1;;;;2971:615:1:o;3591:180::-;3647:6;3700:2;3688:9;3679:7;3675:23;3671:32;3668:52;;;3716:1;3713;3706:12;3668:52;3739:26;3755:9;3739:26;:::i;3776:245::-;3834:6;3887:2;3875:9;3866:7;3862:23;3858:32;3855:52;;;3903:1;3900;3893:12;3855:52;3942:9;3929:23;3961:30;3985:5;3961:30;:::i;4026:249::-;4095:6;4148:2;4136:9;4127:7;4123:23;4119:32;4116:52;;;4164:1;4161;4154:12;4116:52;4196:9;4190:16;4215:30;4239:5;4215:30;:::i;4280:450::-;4349:6;4402:2;4390:9;4381:7;4377:23;4373:32;4370:52;;;4418:1;4415;4408:12;4370:52;4458:9;4445:23;4491:18;4483:6;4480:30;4477:50;;;4523:1;4520;4513:12;4477:50;4546:22;;4599:4;4591:13;;4587:27;-1:-1:-1;4577:55:1;;4628:1;4625;4618:12;4577:55;4651:73;4716:7;4711:2;4698:16;4693:2;4689;4685:11;4651:73;:::i;4735:180::-;4794:6;4847:2;4835:9;4826:7;4822:23;4818:32;4815:52;;;4863:1;4860;4853:12;4815:52;-1:-1:-1;4886:23:1;;4735:180;-1:-1:-1;4735:180:1:o;4920:257::-;4961:3;4999:5;4993:12;5026:6;5021:3;5014:19;5042:63;5098:6;5091:4;5086:3;5082:14;5075:4;5068:5;5064:16;5042:63;:::i;:::-;5159:2;5138:15;-1:-1:-1;;5134:29:1;5125:39;;;;5166:4;5121:50;;4920:257;-1:-1:-1;;4920:257:1:o;5182:1527::-;5406:3;5444:6;5438:13;5470:4;5483:51;5527:6;5522:3;5517:2;5509:6;5505:15;5483:51;:::i;:::-;5597:13;;5556:16;;;;5619:55;5597:13;5556:16;5641:15;;;5619:55;:::i;:::-;5763:13;;5696:20;;;5736:1;;5823;5845:18;;;;5898;;;;5925:93;;6003:4;5993:8;5989:19;5977:31;;5925:93;6066:2;6056:8;6053:16;6033:18;6030:40;6027:167;;;-1:-1:-1;;;6093:33:1;;6149:4;6146:1;6139:15;6179:4;6100:3;6167:17;6027:167;6210:18;6237:110;;;;6361:1;6356:328;;;;6203:481;;6237:110;-1:-1:-1;;6272:24:1;;6258:39;;6317:20;;;;-1:-1:-1;6237:110:1;;6356:328;18991:1;18984:14;;;19028:4;19015:18;;6451:1;6465:169;6479:8;6476:1;6473:15;6465:169;;;6561:14;;6546:13;;;6539:37;6604:16;;;;6496:10;;6465:169;;;6469:3;;6665:8;6658:5;6654:20;6647:27;;6203:481;-1:-1:-1;6700:3:1;;5182:1527;-1:-1:-1;;;;;;;;;;;5182:1527:1:o;7132:488::-;-1:-1:-1;;;;;7401:15:1;;;7383:34;;7453:15;;7448:2;7433:18;;7426:43;7500:2;7485:18;;7478:34;;;7548:3;7543:2;7528:18;;7521:31;;;7326:4;;7569:45;;7594:19;;7586:6;7569:45;:::i;:::-;7561:53;7132:488;-1:-1:-1;;;;;;7132:488:1:o;7817:219::-;7966:2;7955:9;7948:21;7929:4;7986:44;8026:2;8015:9;8011:18;8003:6;7986:44;:::i;8453:414::-;8655:2;8637:21;;;8694:2;8674:18;;;8667:30;8733:34;8728:2;8713:18;;8706:62;-1:-1:-1;;;8799:2:1;8784:18;;8777:48;8857:3;8842:19;;8453:414::o;14986:356::-;15188:2;15170:21;;;15207:18;;;15200:30;15266:34;15261:2;15246:18;;15239:62;15333:2;15318:18;;14986:356::o;16848:413::-;17050:2;17032:21;;;17089:2;17069:18;;;17062:30;17128:34;17123:2;17108:18;;17101:62;-1:-1:-1;;;17194:2:1;17179:18;;17172:47;17251:3;17236:19;;16848:413::o;19044:128::-;19084:3;19115:1;19111:6;19108:1;19105:13;19102:39;;;19121:18;;:::i;:::-;-1:-1:-1;19157:9:1;;19044:128::o;19177:120::-;19217:1;19243;19233:35;;19248:18;;:::i;:::-;-1:-1:-1;19282:9:1;;19177:120::o;19302:168::-;19342:7;19408:1;19404;19400:6;19396:14;19393:1;19390:21;19385:1;19378:9;19371:17;19367:45;19364:71;;;19415:18;;:::i;:::-;-1:-1:-1;19455:9:1;;19302:168::o;19475:125::-;19515:4;19543:1;19540;19537:8;19534:34;;;19548:18;;:::i;:::-;-1:-1:-1;19585:9:1;;19475:125::o;19605:258::-;19677:1;19687:113;19701:6;19698:1;19695:13;19687:113;;;19777:11;;;19771:18;19758:11;;;19751:39;19723:2;19716:10;19687:113;;;19818:6;19815:1;19812:13;19809:48;;;-1:-1:-1;;19853:1:1;19835:16;;19828:27;19605:258::o;19868:380::-;19947:1;19943:12;;;;19990;;;20011:61;;20065:4;20057:6;20053:17;20043:27;;20011:61;20118:2;20110:6;20107:14;20087:18;20084:38;20081:161;;;20164:10;20159:3;20155:20;20152:1;20145:31;20199:4;20196:1;20189:15;20227:4;20224:1;20217:15;20081:161;;19868:380;;;:::o;20253:135::-;20292:3;-1:-1:-1;;20313:17:1;;20310:43;;;20333:18;;:::i;:::-;-1:-1:-1;20380:1:1;20369:13;;20253:135::o;20393:112::-;20425:1;20451;20441:35;;20456:18;;:::i;:::-;-1:-1:-1;20490:9:1;;20393:112::o;20510:127::-;20571:10;20566:3;20562:20;20559:1;20552:31;20602:4;20599:1;20592:15;20626:4;20623:1;20616:15;20642:127;20703:10;20698:3;20694:20;20691:1;20684:31;20734:4;20731:1;20724:15;20758:4;20755:1;20748:15;20774:127;20835:10;20830:3;20826:20;20823:1;20816:31;20866:4;20863:1;20856:15;20890:4;20887:1;20880:15;20906:127;20967:10;20962:3;20958:20;20955:1;20948:31;20998:4;20995:1;20988:15;21022:4;21019:1;21012:15;21038:127;21099:10;21094:3;21090:20;21087:1;21080:31;21130:4;21127:1;21120:15;21154:4;21151:1;21144:15;21170:131;-1:-1:-1;;;;;;21244:32:1;;21234:43;;21224:71;;21291:1;21288;21281:12

Swarm Source

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