ETH Price: $2,507.93 (+1.43%)

Token

Wasted Whales: Afterparty (AP)
 

Overview

Max Total Supply

1,597 AP

Holders

208

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 AP
0xed780a81378d65d1799119f2b13d76ce7538abeb
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

The After Party marks the second installment in the Wasted Whales series and the second generation of characters in Wasted World.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WWAfterparty

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT
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);
}

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

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

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

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

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

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

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

library Address {
    function isContract(address account) internal view returns (bool) {
        uint size;
        assembly {
            size := extcodesize(account)
        }
        return size > 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;
    }
}

// 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;
        }
    }
}

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from `s`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

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

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

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Does not support burning tokens to address(0).
 *
 * Assumes that an owner cannot have more than the 2**128 - 1 (max value of uint128) of supply
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
    using Address for address;
    using Strings for uint256;

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

    // 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;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view override returns (uint256) {
        require(index < totalSupply(), 'ERC721A: global index out of bounds');
        return index;
    }

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
        require(index < balanceOf(owner), 'ERC721A: owner index out of bounds');
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert('ERC721A: unable to get token of owner by index');
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(owner != address(0), 'ERC721A: number minted query for the zero address');
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        require(_exists(tokenId), 'ERC721A: owner query for nonexistent token');

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert('ERC721A: unable to determine the owner of token');
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return ownershipOf(tokenId).addr;
    }

    /**
     * @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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, 'ERC721A: approval to current owner');

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        _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 override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            'ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = currentIndex;
        require(to != address(0), 'ERC721A: mint to the zero address');
        require(quantity != 0, 'ERC721A: quantity must be greater than 0');

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(address(0), to, updatedIndex, _data),
                        'ERC721A: transfer to non ERC721Receiver implementer'
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved');

        require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner');
        require(to != address(0), 'ERC721A: transfer to the zero address');

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension.
 */
contract WWAfterparty is Context, ERC721A, Ownable, ReentrancyGuard  {
    using SafeMath for uint256;
    using Strings for uint256;
    using ECDSA for bytes32;

    // Provenance hash
    string public PROVENANCE_HASH;

    // Signer address
    address public signerAddress;

    // Base URI
    string public _baseTokenURI;

    // Mint info
    uint256 public constant MAX_SUPPLY = 1600;
    uint256 public RESERVED = 20;
    uint256 public MINT_PRICE = 0.09 ether;
    uint256 public WL_TRANSACTION_LIMIT = 10;

    bool public saleIsActive;
    bool public WLSaleIsActive;

    constructor(address signer) ERC721A("Wasted Whales: Afterparty", "AP") {
        signerAddress = signer;
    }

    function mintAfterparty(uint256 amount) public payable nonReentrant {
        uint256 supply = totalSupply();
        require( saleIsActive, "Sale paused" );
        require( supply + amount <= MAX_SUPPLY - RESERVED, "Exceeds maximum supply" );
        require( msg.value >= MINT_PRICE * amount, "Incorrect ether amount" );
        _safeMint(msg.sender, amount);
    }

    function mintAfterpartyWL(uint256 amount, bytes calldata signature) public payable nonReentrant {
        uint256 supply = totalSupply();
        address sender = msg.sender;
        require( WLSaleIsActive, "Whitelist sale paused" );
        require( supply + amount <= MAX_SUPPLY - RESERVED, "Exceeds maximum supply" );
        require( amount <= WL_TRANSACTION_LIMIT, "Exceeds per transaction limit" );
        require( msg.value >= MINT_PRICE * amount, "Incorrect ether amount" );
        require(_validateSignature(
          signature,
          sender
        ), "Invalid data provided");
        _safeMint(sender, amount);
    }

    function emergencyMint(uint256 tokensToMint) public onlyOwner {
        require(totalSupply().add(tokensToMint) <= MAX_SUPPLY - RESERVED, "Exceeds maximum supply");
        _safeMint(msg.sender, tokensToMint);
    }

    function giveAway(address _to, uint256 amount) external onlyOwner {
        require( amount <= RESERVED, "Amount exceeds reserved amount for giveaways" );
        _safeMint(_to, amount);
        RESERVED -= amount;
    }

    function updateSaleStatus(bool status) public onlyOwner {
        saleIsActive = status;
    }

    function updateWLSaleStatus(bool status) public onlyOwner {
        WLSaleIsActive = status;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        require(bytes(PROVENANCE_HASH).length == 0, "Provenance hash has already been set");
        PROVENANCE_HASH = provenanceHash;
    }

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

    function setBaseURI(string memory newBaseURI) public onlyOwner {
        _baseTokenURI = newBaseURI;
    }

    function setPrice(uint256 newPrice) public onlyOwner {
        MINT_PRICE = newPrice;
    }

    function getPrice() public view returns (uint256) {
        return MINT_PRICE;
    }

    function setSignerAddress(address _signer) public onlyOwner {
        signerAddress = _signer;
    }

    function setTxnLimit(uint256 newLimit) public onlyOwner {
        WL_TRANSACTION_LIMIT = newLimit;
    }

    function _validateSignature(
        bytes calldata signature,
        address senderAddress
        ) internal view returns (bool) {
        bytes32 dataHash = keccak256(abi.encodePacked(senderAddress));
        bytes32 message = ECDSA.toEthSignedMessageHash(dataHash);

        address receivedAddress = ECDSA.recover(message, signature);
        return (receivedAddress != address(0) && receivedAddress == signerAddress);
    }

    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        payable(owner()).transfer(balance);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"signer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE_HASH","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WLSaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_TRANSACTION_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"uint256","name":"tokensToMint","type":"uint256"}],"name":"emergencyMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"giveAway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mintAfterparty","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"signature","type":"bytes"}],"name":"mintAfterpartyWL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_signer","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"setTxnLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"signerAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"updateSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"updateWLSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526014600c5567013fbe85edc90000600d55600a600e553480156200002757600080fd5b5060405162002ff638038062002ff68339810160408190526200004a9162000203565b604080518082018252601981527f576173746564205768616c65733a204166746572706172747900000000000000602080830191825283518085019094526002845261041560f41b908401528151919291620000a9916001916200015d565b508051620000bf9060029060208401906200015d565b505050620000dc620000d66200010760201b60201c565b6200010b565b6001600855600a80546001600160a01b0319166001600160a01b039290921691909117905562000270565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200016b9062000233565b90600052602060002090601f0160209004810192826200018f5760008555620001da565b82601f10620001aa57805160ff1916838001178555620001da565b82800160010185558215620001da579182015b82811115620001da578251825591602001919060010190620001bd565b50620001e8929150620001ec565b5090565b5b80821115620001e85760008155600101620001ed565b60006020828403121562000215578081fd5b81516001600160a01b03811681146200022c578182fd5b9392505050565b6002810460018216806200024857607f821691505b602082108114156200026a57634e487b7160e01b600052602260045260246000fd5b50919050565b612d7680620002806000396000f3fe6080604052600436106102465760003560e01c80637e2f747b11610139578063c002d23d116100b6578063e985e9c51161007a578063e985e9c514610636578063eb8d244414610656578063f2fde38b1461066b578063f74568cc1461068b578063ff1b6556146106ab578063ffcc66dc146106c057610246565b8063c002d23d146105b7578063c87b56dd146105cc578063ca800144146105ec578063cfc86f7b1461060c578063d4d93e241461062157610246565b806398d5fdca116100fd57806398d5fdca1461052d578063a22cb46514610542578063a9eb2a1214610562578063aa592f2514610582578063b88d4fde1461059757610246565b80637e2f747b146104bb5780638ac71e20146104d05780638da5cb5b146104e357806391b7f5ed146104f857806395d89b411461051857610246565b806332cb6b0c116101c757806355f804b31161018b57806355f804b3146104315780635b7633d0146104515780636352211e1461046657806370a0823114610486578063715018a6146104a657610246565b806332cb6b0c146103b45780633ab138da146103c95780633ccfd60b146103dc57806342842e0e146103f15780634f6ccce71461041157610246565b80630a0889491161020e5780630a08894914610312578063109695231461033257806318160ddd1461035257806323b872dd146103745780632f745c591461039457610246565b806301ffc9a71461024b578063046dc1661461028157806306fdde03146102a3578063081812fc146102c5578063095ea7b3146102f2575b600080fd5b34801561025757600080fd5b5061026b6102663660046121c3565b6106e0565b60405161027891906123ca565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004612057565b610743565b005b3480156102af57600080fd5b506102b86107ad565b60405161027891906123f3565b3480156102d157600080fd5b506102e56102e0366004612241565b61083f565b6040516102789190612379565b3480156102fe57600080fd5b506102a161030d366004612180565b610882565b34801561031e57600080fd5b506102a161032d3660046121a9565b61091b565b34801561033e57600080fd5b506102a161034d3660046121fb565b61096d565b34801561035e57600080fd5b506103676109ef565b6040516102789190612be7565b34801561038057600080fd5b506102a161038f3660046120a3565b6109f5565b3480156103a057600080fd5b506103676103af366004612180565b610a00565b3480156103c057600080fd5b50610367610aeb565b6102a16103d7366004612241565b610af1565b3480156103e857600080fd5b506102a1610bbf565b3480156103fd57600080fd5b506102a161040c3660046120a3565b610c3f565b34801561041d57600080fd5b5061036761042c366004612241565b610c5a565b34801561043d57600080fd5b506102a161044c3660046121fb565b610c86565b34801561045d57600080fd5b506102e5610cd8565b34801561047257600080fd5b506102e5610481366004612241565b610ce7565b34801561049257600080fd5b506103676104a1366004612057565b610cf9565b3480156104b257600080fd5b506102a1610d46565b3480156104c757600080fd5b50610367610d91565b6102a16104de366004612259565b610d97565b3480156104ef57600080fd5b506102e5610eb8565b34801561050457600080fd5b506102a1610513366004612241565b610ec7565b34801561052457600080fd5b506102b8610f0b565b34801561053957600080fd5b50610367610f1a565b34801561054e57600080fd5b506102a161055d366004612157565b610f20565b34801561056e57600080fd5b506102a161057d3660046121a9565b610fee565b34801561058e57600080fd5b50610367611047565b3480156105a357600080fd5b506102a16105b23660046120de565b61104d565b3480156105c357600080fd5b50610367611086565b3480156105d857600080fd5b506102b86105e7366004612241565b61108c565b3480156105f857600080fd5b506102a1610607366004612180565b611110565b34801561061857600080fd5b506102b8611196565b34801561062d57600080fd5b5061026b611224565b34801561064257600080fd5b5061026b610651366004612071565b611232565b34801561066257600080fd5b5061026b611260565b34801561067757600080fd5b506102a1610686366004612057565b611269565b34801561069757600080fd5b506102a16106a6366004612241565b6112da565b3480156106b757600080fd5b506102b861131e565b3480156106cc57600080fd5b506102a16106db366004612241565b61132b565b60006001600160e01b031982166380ac58cd60e01b148061071157506001600160e01b03198216635b5e139f60e01b145b8061072c57506001600160e01b0319821663780e9d6360e01b145b8061073b575061073b826113b3565b90505b919050565b61074b6113cc565b6001600160a01b031661075c610eb8565b6001600160a01b03161461078b5760405162461bcd60e51b81526004016107829061282c565b60405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546107bc90612c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546107e890612c7e565b80156108355780601f1061080a57610100808354040283529160200191610835565b820191906000526020600020905b81548152906001019060200180831161081857829003601f168201915b5050505050905090565b600061084a826113d0565b6108665760405162461bcd60e51b815260040161078290612b3b565b506000908152600560205260409020546001600160a01b031690565b600061088d82610ce7565b9050806001600160a01b0316836001600160a01b031614156108c15760405162461bcd60e51b815260040161078290612998565b806001600160a01b03166108d36113cc565b6001600160a01b031614806108ef57506108ef816106516113cc565b61090b5760405162461bcd60e51b8152600401610782906126b0565b6109168383836113d7565b505050565b6109236113cc565b6001600160a01b0316610934610eb8565b6001600160a01b03161461095a5760405162461bcd60e51b81526004016107829061282c565b600f805460ff1916911515919091179055565b6109756113cc565b6001600160a01b0316610986610eb8565b6001600160a01b0316146109ac5760405162461bcd60e51b81526004016107829061282c565b600980546109b990612c7e565b1590506109d85760405162461bcd60e51b8152600401610782906124a4565b80516109eb906009906020840190611f14565b5050565b60005490565b610916838383611433565b6000610a0b83610cf9565b8210610a295760405162461bcd60e51b81526004016107829061243d565b6000610a336109ef565b905060008060005b83811015610acc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a8e57805192505b876001600160a01b0316836001600160a01b03161415610ac35786841415610abc57509350610ae592505050565b6001909301925b50600101610a3b565b5060405162461bcd60e51b815260040161078290612ab6565b92915050565b61064081565b60026008541415610b145760405162461bcd60e51b815260040161078290612b04565b60026008556000610b236109ef565b600f5490915060ff16610b485760405162461bcd60e51b81526004016107829061247f565b600c54610b5790610640612c3b565b610b618383612bf0565b1115610b7f5760405162461bcd60e51b815260040161078290612968565b81600d54610b8d9190612c1c565b341015610bac5760405162461bcd60e51b815260040161078290612bb7565b610bb633836116a0565b50506001600855565b610bc76113cc565b6001600160a01b0316610bd8610eb8565b6001600160a01b031614610bfe5760405162461bcd60e51b81526004016107829061282c565b47610c07610eb8565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156109eb573d6000803e3d6000fd5b6109168383836040518060200160405280600081525061104d565b6000610c646109ef565b8210610c825760405162461bcd60e51b8152600401610782906125e6565b5090565b610c8e6113cc565b6001600160a01b0316610c9f610eb8565b6001600160a01b031614610cc55760405162461bcd60e51b81526004016107829061282c565b80516109eb90600b906020840190611f14565b600a546001600160a01b031681565b6000610cf2826116ba565b5192915050565b60006001600160a01b038216610d215760405162461bcd60e51b815260040161078290612759565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610d4e6113cc565b6001600160a01b0316610d5f610eb8565b6001600160a01b031614610d855760405162461bcd60e51b81526004016107829061282c565b610d8f6000611742565b565b600e5481565b60026008541415610dba5760405162461bcd60e51b815260040161078290612b04565b60026008556000610dc96109ef565b600f549091503390610100900460ff16610df55760405162461bcd60e51b815260040161078290612939565b600c54610e0490610640612c3b565b610e0e8684612bf0565b1115610e2c5760405162461bcd60e51b815260040161078290612968565b600e54851115610e4e5760405162461bcd60e51b815260040161078290612565565b84600d54610e5c9190612c1c565b341015610e7b5760405162461bcd60e51b815260040161078290612bb7565b610e86848483611794565b610ea25760405162461bcd60e51b815260040161078290612b88565b610eac81866116a0565b50506001600855505050565b6007546001600160a01b031690565b610ecf6113cc565b6001600160a01b0316610ee0610eb8565b6001600160a01b031614610f065760405162461bcd60e51b81526004016107829061282c565b600d55565b6060600280546107bc90612c7e565b600d5490565b610f286113cc565b6001600160a01b0316826001600160a01b03161415610f595760405162461bcd60e51b8152600401610782906128b0565b8060066000610f666113cc565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610faa6113cc565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe291906123ca565b60405180910390a35050565b610ff66113cc565b6001600160a01b0316611007610eb8565b6001600160a01b03161461102d5760405162461bcd60e51b81526004016107829061282c565b600f80549115156101000261ff0019909216919091179055565b600c5481565b611058848484611433565b61106484848484611841565b6110805760405162461bcd60e51b8152600401610782906129da565b50505050565b600d5481565b6060611097826113d0565b6110b35760405162461bcd60e51b815260040161078290612861565b60006110bd61195d565b90508051600014156110de5760405180602001604052806000815250611109565b806110e88461196c565b6040516020016110f9929190612319565b6040516020818303038152906040525b9392505050565b6111186113cc565b6001600160a01b0316611129610eb8565b6001600160a01b03161461114f5760405162461bcd60e51b81526004016107829061282c565b600c548111156111715760405162461bcd60e51b81526004016107829061270d565b61117b82826116a0565b80600c600082825461118d9190612c3b565b90915550505050565b600b80546111a390612c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546111cf90612c7e565b801561121c5780601f106111f15761010080835404028352916020019161121c565b820191906000526020600020905b8154815290600101906020018083116111ff57829003601f168201915b505050505081565b600f54610100900460ff1681565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b6112716113cc565b6001600160a01b0316611282610eb8565b6001600160a01b0316146112a85760405162461bcd60e51b81526004016107829061282c565b6001600160a01b0381166112ce5760405162461bcd60e51b81526004016107829061251f565b6112d781611742565b50565b6112e26113cc565b6001600160a01b03166112f3610eb8565b6001600160a01b0316146113195760405162461bcd60e51b81526004016107829061282c565b600e55565b600980546111a390612c7e565b6113336113cc565b6001600160a01b0316611344610eb8565b6001600160a01b03161461136a5760405162461bcd60e51b81526004016107829061282c565b600c5461137990610640612c3b565b61138b826113856109ef565b90611a87565b11156113a95760405162461bcd60e51b815260040161078290612968565b6112d733826116a0565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061143e826116ba565b9050600081600001516001600160a01b03166114586113cc565b6001600160a01b0316148061148d57506114706113cc565b6001600160a01b03166114828461083f565b6001600160a01b0316145b806114a1575081516114a1906106516113cc565b9050806114c05760405162461bcd60e51b8152600401610782906128e7565b846001600160a01b031682600001516001600160a01b0316146114f55760405162461bcd60e51b8152600401610782906127e6565b6001600160a01b03841661151b5760405162461bcd60e51b815260040161078290612629565b6115288585856001611080565b61153860008484600001516113d7565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff160217905590860180835291205490911661164a576115ec816113d0565b1561164a578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116998585856001611080565b5050505050565b6109eb828260405180602001604052806000815250611a93565b6116c2611f94565b6116cb826113d0565b6116e75760405162461bcd60e51b81526004016107829061259c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561173857915061073e9050565b50600019016116e9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080826040516020016117a891906122fc565b60405160208183030381529060405280519060200120905060006117cb82611aa0565b9050600061180f8288888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ad092505050565b90506001600160a01b038116158015906118365750600a546001600160a01b038281169116145b979650505050505050565b6000611855846001600160a01b0316611af4565b1561195157836001600160a01b031663150b7a026118716113cc565b8786866040518563ffffffff1660e01b8152600401611893949392919061238d565b602060405180830381600087803b1580156118ad57600080fd5b505af19250505080156118dd575060408051601f3d908101601f191682019092526118da918101906121df565b60015b611937573d80801561190b576040519150601f19603f3d011682016040523d82523d6000602084013e611910565b606091505b50805161192f5760405162461bcd60e51b8152600401610782906129da565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611955565b5060015b949350505050565b6060600b80546107bc90612c7e565b60608161199157506040805180820190915260018152600360fc1b602082015261073e565b8160005b81156119bb57806119a581612cb9565b91506119b49050600a83612c08565b9150611995565b60008167ffffffffffffffff8111156119e457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a0e576020820181803683370190505b5090505b841561195557611a23600183612c3b565b9150611a30600a86612cd4565b611a3b906030612bf0565b60f81b818381518110611a5e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a80600a86612c08565b9450611a12565b60006111098284612bf0565b6109168383836001611afa565b600081604051602001611ab39190612348565b604051602081830303815290604052805190602001209050919050565b6000806000611adf8585611c68565b91509150611aec81611cd8565b509392505050565b3b151590565b6000546001600160a01b038516611b235760405162461bcd60e51b815260040161078290612a2d565b83611b405760405162461bcd60e51b815260040161078290612a6e565b611b4d6000868387611080565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611c565760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c4a57611c2e6000888488611841565b611c4a5760405162461bcd60e51b8152600401610782906129da565b60019182019101611bdb565b50600090815561169990868387611080565b600080825160411415611c9f5760208301516040840151606085015160001a611c9387828585611e05565b94509450505050611cd1565b825160401415611cc95760208301516040840151611cbe868383611ee5565b935093505050611cd1565b506000905060025b9250929050565b6000816004811115611cfa57634e487b7160e01b600052602160045260246000fd5b1415611d05576112d7565b6001816004811115611d2757634e487b7160e01b600052602160045260246000fd5b1415611d455760405162461bcd60e51b815260040161078290612406565b6002816004811115611d6757634e487b7160e01b600052602160045260246000fd5b1415611d855760405162461bcd60e51b8152600401610782906124e8565b6003816004811115611da757634e487b7160e01b600052602160045260246000fd5b1415611dc55760405162461bcd60e51b81526004016107829061266e565b6004816004811115611de757634e487b7160e01b600052602160045260246000fd5b14156112d75760405162461bcd60e51b8152600401610782906127a4565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e3c5750600090506003611edc565b8460ff16601b14158015611e5457508460ff16601c14155b15611e655750600090506004611edc565b600060018787878760405160008152602001604052604051611e8a94939291906123d5565b6020604051602081039080840390855afa158015611eac573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611ed557600060019250925050611edc565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01611f0687828885611e05565b935093505050935093915050565b828054611f2090612c7e565b90600052602060002090601f016020900481019282611f425760008555611f88565b82601f10611f5b57805160ff1916838001178555611f88565b82800160010185558215611f88579182015b82811115611f88578251825591602001919060010190611f6d565b50610c82929150611fab565b604080518082019091526000808252602082015290565b5b80821115610c825760008155600101611fac565b600067ffffffffffffffff80841115611fdb57611fdb612d14565b604051601f8501601f191681016020018281118282101715611fff57611fff612d14565b60405284815291508183850186101561201757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461073e57600080fd5b8035801515811461073e57600080fd5b600060208284031215612068578081fd5b61110982612030565b60008060408385031215612083578081fd5b61208c83612030565b915061209a60208401612030565b90509250929050565b6000806000606084860312156120b7578081fd5b6120c084612030565b92506120ce60208501612030565b9150604084013590509250925092565b600080600080608085870312156120f3578081fd5b6120fc85612030565b935061210a60208601612030565b925060408501359150606085013567ffffffffffffffff81111561212c578182fd5b8501601f8101871361213c578182fd5b61214b87823560208401611fc0565b91505092959194509250565b60008060408385031215612169578182fd5b61217283612030565b915061209a60208401612047565b60008060408385031215612192578182fd5b61219b83612030565b946020939093013593505050565b6000602082840312156121ba578081fd5b61110982612047565b6000602082840312156121d4578081fd5b813561110981612d2a565b6000602082840312156121f0578081fd5b815161110981612d2a565b60006020828403121561220c578081fd5b813567ffffffffffffffff811115612222578182fd5b8201601f81018413612232578182fd5b61195584823560208401611fc0565b600060208284031215612252578081fd5b5035919050565b60008060006040848603121561226d578283fd5b83359250602084013567ffffffffffffffff8082111561228b578384fd5b818601915086601f83011261229e578384fd5b8135818111156122ac578485fd5b8760208285010111156122bd578485fd5b6020830194508093505050509250925092565b600081518084526122e8816020860160208601612c52565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b6000835161232b818460208801612c52565b83519083019061233f818360208801612c52565b01949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c0908301846122d0565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261110960208301846122d0565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b60208082526024908201527f50726f76656e616e636520686173682068617320616c7265616479206265656e604082015263081cd95d60e21b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601d908201527f4578636565647320706572207472616e73616374696f6e206c696d6974000000604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602c908201527f416d6f756e74206578636565647320726573657276656420616d6f756e74206660408201526b6f722067697665617761797360a01b606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526015908201527415da1a5d195b1a5cdd081cd85b19481c185d5cd959605a1b604082015260600190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b602080825260159082015274125b9d985b1a590819185d18481c1c9bdd9a591959605a1b604082015260600190565b602080825260169082015275125b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604082015260600190565b90815260200190565b60008219821115612c0357612c03612ce8565b500190565b600082612c1757612c17612cfe565b500490565b6000816000190483118215151615612c3657612c36612ce8565b500290565b600082821015612c4d57612c4d612ce8565b500390565b60005b83811015612c6d578181015183820152602001612c55565b838111156110805750506000910152565b600281046001821680612c9257607f821691505b60208210811415612cb357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ccd57612ccd612ce8565b5060010190565b600082612ce357612ce3612cfe565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112d757600080fdfea26469706673582212208fddb52c5428484e9aacb02f2733922836b30c06bfbbde13011519dd8c2c72b064736f6c63430008000033000000000000000000000000e1b7717b153738d2667e43916bbe67b2342b8331

Deployed Bytecode

0x6080604052600436106102465760003560e01c80637e2f747b11610139578063c002d23d116100b6578063e985e9c51161007a578063e985e9c514610636578063eb8d244414610656578063f2fde38b1461066b578063f74568cc1461068b578063ff1b6556146106ab578063ffcc66dc146106c057610246565b8063c002d23d146105b7578063c87b56dd146105cc578063ca800144146105ec578063cfc86f7b1461060c578063d4d93e241461062157610246565b806398d5fdca116100fd57806398d5fdca1461052d578063a22cb46514610542578063a9eb2a1214610562578063aa592f2514610582578063b88d4fde1461059757610246565b80637e2f747b146104bb5780638ac71e20146104d05780638da5cb5b146104e357806391b7f5ed146104f857806395d89b411461051857610246565b806332cb6b0c116101c757806355f804b31161018b57806355f804b3146104315780635b7633d0146104515780636352211e1461046657806370a0823114610486578063715018a6146104a657610246565b806332cb6b0c146103b45780633ab138da146103c95780633ccfd60b146103dc57806342842e0e146103f15780634f6ccce71461041157610246565b80630a0889491161020e5780630a08894914610312578063109695231461033257806318160ddd1461035257806323b872dd146103745780632f745c591461039457610246565b806301ffc9a71461024b578063046dc1661461028157806306fdde03146102a3578063081812fc146102c5578063095ea7b3146102f2575b600080fd5b34801561025757600080fd5b5061026b6102663660046121c3565b6106e0565b60405161027891906123ca565b60405180910390f35b34801561028d57600080fd5b506102a161029c366004612057565b610743565b005b3480156102af57600080fd5b506102b86107ad565b60405161027891906123f3565b3480156102d157600080fd5b506102e56102e0366004612241565b61083f565b6040516102789190612379565b3480156102fe57600080fd5b506102a161030d366004612180565b610882565b34801561031e57600080fd5b506102a161032d3660046121a9565b61091b565b34801561033e57600080fd5b506102a161034d3660046121fb565b61096d565b34801561035e57600080fd5b506103676109ef565b6040516102789190612be7565b34801561038057600080fd5b506102a161038f3660046120a3565b6109f5565b3480156103a057600080fd5b506103676103af366004612180565b610a00565b3480156103c057600080fd5b50610367610aeb565b6102a16103d7366004612241565b610af1565b3480156103e857600080fd5b506102a1610bbf565b3480156103fd57600080fd5b506102a161040c3660046120a3565b610c3f565b34801561041d57600080fd5b5061036761042c366004612241565b610c5a565b34801561043d57600080fd5b506102a161044c3660046121fb565b610c86565b34801561045d57600080fd5b506102e5610cd8565b34801561047257600080fd5b506102e5610481366004612241565b610ce7565b34801561049257600080fd5b506103676104a1366004612057565b610cf9565b3480156104b257600080fd5b506102a1610d46565b3480156104c757600080fd5b50610367610d91565b6102a16104de366004612259565b610d97565b3480156104ef57600080fd5b506102e5610eb8565b34801561050457600080fd5b506102a1610513366004612241565b610ec7565b34801561052457600080fd5b506102b8610f0b565b34801561053957600080fd5b50610367610f1a565b34801561054e57600080fd5b506102a161055d366004612157565b610f20565b34801561056e57600080fd5b506102a161057d3660046121a9565b610fee565b34801561058e57600080fd5b50610367611047565b3480156105a357600080fd5b506102a16105b23660046120de565b61104d565b3480156105c357600080fd5b50610367611086565b3480156105d857600080fd5b506102b86105e7366004612241565b61108c565b3480156105f857600080fd5b506102a1610607366004612180565b611110565b34801561061857600080fd5b506102b8611196565b34801561062d57600080fd5b5061026b611224565b34801561064257600080fd5b5061026b610651366004612071565b611232565b34801561066257600080fd5b5061026b611260565b34801561067757600080fd5b506102a1610686366004612057565b611269565b34801561069757600080fd5b506102a16106a6366004612241565b6112da565b3480156106b757600080fd5b506102b861131e565b3480156106cc57600080fd5b506102a16106db366004612241565b61132b565b60006001600160e01b031982166380ac58cd60e01b148061071157506001600160e01b03198216635b5e139f60e01b145b8061072c57506001600160e01b0319821663780e9d6360e01b145b8061073b575061073b826113b3565b90505b919050565b61074b6113cc565b6001600160a01b031661075c610eb8565b6001600160a01b03161461078b5760405162461bcd60e51b81526004016107829061282c565b60405180910390fd5b600a80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600180546107bc90612c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546107e890612c7e565b80156108355780601f1061080a57610100808354040283529160200191610835565b820191906000526020600020905b81548152906001019060200180831161081857829003601f168201915b5050505050905090565b600061084a826113d0565b6108665760405162461bcd60e51b815260040161078290612b3b565b506000908152600560205260409020546001600160a01b031690565b600061088d82610ce7565b9050806001600160a01b0316836001600160a01b031614156108c15760405162461bcd60e51b815260040161078290612998565b806001600160a01b03166108d36113cc565b6001600160a01b031614806108ef57506108ef816106516113cc565b61090b5760405162461bcd60e51b8152600401610782906126b0565b6109168383836113d7565b505050565b6109236113cc565b6001600160a01b0316610934610eb8565b6001600160a01b03161461095a5760405162461bcd60e51b81526004016107829061282c565b600f805460ff1916911515919091179055565b6109756113cc565b6001600160a01b0316610986610eb8565b6001600160a01b0316146109ac5760405162461bcd60e51b81526004016107829061282c565b600980546109b990612c7e565b1590506109d85760405162461bcd60e51b8152600401610782906124a4565b80516109eb906009906020840190611f14565b5050565b60005490565b610916838383611433565b6000610a0b83610cf9565b8210610a295760405162461bcd60e51b81526004016107829061243d565b6000610a336109ef565b905060008060005b83811015610acc576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a8e57805192505b876001600160a01b0316836001600160a01b03161415610ac35786841415610abc57509350610ae592505050565b6001909301925b50600101610a3b565b5060405162461bcd60e51b815260040161078290612ab6565b92915050565b61064081565b60026008541415610b145760405162461bcd60e51b815260040161078290612b04565b60026008556000610b236109ef565b600f5490915060ff16610b485760405162461bcd60e51b81526004016107829061247f565b600c54610b5790610640612c3b565b610b618383612bf0565b1115610b7f5760405162461bcd60e51b815260040161078290612968565b81600d54610b8d9190612c1c565b341015610bac5760405162461bcd60e51b815260040161078290612bb7565b610bb633836116a0565b50506001600855565b610bc76113cc565b6001600160a01b0316610bd8610eb8565b6001600160a01b031614610bfe5760405162461bcd60e51b81526004016107829061282c565b47610c07610eb8565b6001600160a01b03166108fc829081150290604051600060405180830381858888f193505050501580156109eb573d6000803e3d6000fd5b6109168383836040518060200160405280600081525061104d565b6000610c646109ef565b8210610c825760405162461bcd60e51b8152600401610782906125e6565b5090565b610c8e6113cc565b6001600160a01b0316610c9f610eb8565b6001600160a01b031614610cc55760405162461bcd60e51b81526004016107829061282c565b80516109eb90600b906020840190611f14565b600a546001600160a01b031681565b6000610cf2826116ba565b5192915050565b60006001600160a01b038216610d215760405162461bcd60e51b815260040161078290612759565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b610d4e6113cc565b6001600160a01b0316610d5f610eb8565b6001600160a01b031614610d855760405162461bcd60e51b81526004016107829061282c565b610d8f6000611742565b565b600e5481565b60026008541415610dba5760405162461bcd60e51b815260040161078290612b04565b60026008556000610dc96109ef565b600f549091503390610100900460ff16610df55760405162461bcd60e51b815260040161078290612939565b600c54610e0490610640612c3b565b610e0e8684612bf0565b1115610e2c5760405162461bcd60e51b815260040161078290612968565b600e54851115610e4e5760405162461bcd60e51b815260040161078290612565565b84600d54610e5c9190612c1c565b341015610e7b5760405162461bcd60e51b815260040161078290612bb7565b610e86848483611794565b610ea25760405162461bcd60e51b815260040161078290612b88565b610eac81866116a0565b50506001600855505050565b6007546001600160a01b031690565b610ecf6113cc565b6001600160a01b0316610ee0610eb8565b6001600160a01b031614610f065760405162461bcd60e51b81526004016107829061282c565b600d55565b6060600280546107bc90612c7e565b600d5490565b610f286113cc565b6001600160a01b0316826001600160a01b03161415610f595760405162461bcd60e51b8152600401610782906128b0565b8060066000610f666113cc565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610faa6113cc565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fe291906123ca565b60405180910390a35050565b610ff66113cc565b6001600160a01b0316611007610eb8565b6001600160a01b03161461102d5760405162461bcd60e51b81526004016107829061282c565b600f80549115156101000261ff0019909216919091179055565b600c5481565b611058848484611433565b61106484848484611841565b6110805760405162461bcd60e51b8152600401610782906129da565b50505050565b600d5481565b6060611097826113d0565b6110b35760405162461bcd60e51b815260040161078290612861565b60006110bd61195d565b90508051600014156110de5760405180602001604052806000815250611109565b806110e88461196c565b6040516020016110f9929190612319565b6040516020818303038152906040525b9392505050565b6111186113cc565b6001600160a01b0316611129610eb8565b6001600160a01b03161461114f5760405162461bcd60e51b81526004016107829061282c565b600c548111156111715760405162461bcd60e51b81526004016107829061270d565b61117b82826116a0565b80600c600082825461118d9190612c3b565b90915550505050565b600b80546111a390612c7e565b80601f01602080910402602001604051908101604052809291908181526020018280546111cf90612c7e565b801561121c5780601f106111f15761010080835404028352916020019161121c565b820191906000526020600020905b8154815290600101906020018083116111ff57829003601f168201915b505050505081565b600f54610100900460ff1681565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b600f5460ff1681565b6112716113cc565b6001600160a01b0316611282610eb8565b6001600160a01b0316146112a85760405162461bcd60e51b81526004016107829061282c565b6001600160a01b0381166112ce5760405162461bcd60e51b81526004016107829061251f565b6112d781611742565b50565b6112e26113cc565b6001600160a01b03166112f3610eb8565b6001600160a01b0316146113195760405162461bcd60e51b81526004016107829061282c565b600e55565b600980546111a390612c7e565b6113336113cc565b6001600160a01b0316611344610eb8565b6001600160a01b03161461136a5760405162461bcd60e51b81526004016107829061282c565b600c5461137990610640612c3b565b61138b826113856109ef565b90611a87565b11156113a95760405162461bcd60e51b815260040161078290612968565b6112d733826116a0565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6000541190565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061143e826116ba565b9050600081600001516001600160a01b03166114586113cc565b6001600160a01b0316148061148d57506114706113cc565b6001600160a01b03166114828461083f565b6001600160a01b0316145b806114a1575081516114a1906106516113cc565b9050806114c05760405162461bcd60e51b8152600401610782906128e7565b846001600160a01b031682600001516001600160a01b0316146114f55760405162461bcd60e51b8152600401610782906127e6565b6001600160a01b03841661151b5760405162461bcd60e51b815260040161078290612629565b6115288585856001611080565b61153860008484600001516113d7565b6001600160a01b03858116600090815260046020908152604080832080546001600160801b03198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255888552600390935281842080546001600160a01b03191690911767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff160217905590860180835291205490911661164a576115ec816113d0565b1561164a578251600082815260036020908152604090912080549186015167ffffffffffffffff16600160a01b0267ffffffffffffffff60a01b196001600160a01b039094166001600160a01b031990931692909217929092161790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116998585856001611080565b5050505050565b6109eb828260405180602001604052806000815250611a93565b6116c2611f94565b6116cb826113d0565b6116e75760405162461bcd60e51b81526004016107829061259c565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561173857915061073e9050565b50600019016116e9565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080826040516020016117a891906122fc565b60405160208183030381529060405280519060200120905060006117cb82611aa0565b9050600061180f8288888080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250611ad092505050565b90506001600160a01b038116158015906118365750600a546001600160a01b038281169116145b979650505050505050565b6000611855846001600160a01b0316611af4565b1561195157836001600160a01b031663150b7a026118716113cc565b8786866040518563ffffffff1660e01b8152600401611893949392919061238d565b602060405180830381600087803b1580156118ad57600080fd5b505af19250505080156118dd575060408051601f3d908101601f191682019092526118da918101906121df565b60015b611937573d80801561190b576040519150601f19603f3d011682016040523d82523d6000602084013e611910565b606091505b50805161192f5760405162461bcd60e51b8152600401610782906129da565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611955565b5060015b949350505050565b6060600b80546107bc90612c7e565b60608161199157506040805180820190915260018152600360fc1b602082015261073e565b8160005b81156119bb57806119a581612cb9565b91506119b49050600a83612c08565b9150611995565b60008167ffffffffffffffff8111156119e457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a0e576020820181803683370190505b5090505b841561195557611a23600183612c3b565b9150611a30600a86612cd4565b611a3b906030612bf0565b60f81b818381518110611a5e57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611a80600a86612c08565b9450611a12565b60006111098284612bf0565b6109168383836001611afa565b600081604051602001611ab39190612348565b604051602081830303815290604052805190602001209050919050565b6000806000611adf8585611c68565b91509150611aec81611cd8565b509392505050565b3b151590565b6000546001600160a01b038516611b235760405162461bcd60e51b815260040161078290612a2d565b83611b405760405162461bcd60e51b815260040161078290612a6e565b611b4d6000868387611080565b6001600160a01b038516600081815260046020908152604080832080546001600160801b031981166001600160801b039182168b01821617808216600160801b9182900483168c01909216021790558483526003909152812080546001600160a01b03191690921767ffffffffffffffff60a01b1916600160a01b4267ffffffffffffffff16021790915581905b85811015611c565760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a48315611c4a57611c2e6000888488611841565b611c4a5760405162461bcd60e51b8152600401610782906129da565b60019182019101611bdb565b50600090815561169990868387611080565b600080825160411415611c9f5760208301516040840151606085015160001a611c9387828585611e05565b94509450505050611cd1565b825160401415611cc95760208301516040840151611cbe868383611ee5565b935093505050611cd1565b506000905060025b9250929050565b6000816004811115611cfa57634e487b7160e01b600052602160045260246000fd5b1415611d05576112d7565b6001816004811115611d2757634e487b7160e01b600052602160045260246000fd5b1415611d455760405162461bcd60e51b815260040161078290612406565b6002816004811115611d6757634e487b7160e01b600052602160045260246000fd5b1415611d855760405162461bcd60e51b8152600401610782906124e8565b6003816004811115611da757634e487b7160e01b600052602160045260246000fd5b1415611dc55760405162461bcd60e51b81526004016107829061266e565b6004816004811115611de757634e487b7160e01b600052602160045260246000fd5b14156112d75760405162461bcd60e51b8152600401610782906127a4565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a0831115611e3c5750600090506003611edc565b8460ff16601b14158015611e5457508460ff16601c14155b15611e655750600090506004611edc565b600060018787878760405160008152602001604052604051611e8a94939291906123d5565b6020604051602081039080840390855afa158015611eac573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116611ed557600060019250925050611edc565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b01611f0687828885611e05565b935093505050935093915050565b828054611f2090612c7e565b90600052602060002090601f016020900481019282611f425760008555611f88565b82601f10611f5b57805160ff1916838001178555611f88565b82800160010185558215611f88579182015b82811115611f88578251825591602001919060010190611f6d565b50610c82929150611fab565b604080518082019091526000808252602082015290565b5b80821115610c825760008155600101611fac565b600067ffffffffffffffff80841115611fdb57611fdb612d14565b604051601f8501601f191681016020018281118282101715611fff57611fff612d14565b60405284815291508183850186101561201757600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461073e57600080fd5b8035801515811461073e57600080fd5b600060208284031215612068578081fd5b61110982612030565b60008060408385031215612083578081fd5b61208c83612030565b915061209a60208401612030565b90509250929050565b6000806000606084860312156120b7578081fd5b6120c084612030565b92506120ce60208501612030565b9150604084013590509250925092565b600080600080608085870312156120f3578081fd5b6120fc85612030565b935061210a60208601612030565b925060408501359150606085013567ffffffffffffffff81111561212c578182fd5b8501601f8101871361213c578182fd5b61214b87823560208401611fc0565b91505092959194509250565b60008060408385031215612169578182fd5b61217283612030565b915061209a60208401612047565b60008060408385031215612192578182fd5b61219b83612030565b946020939093013593505050565b6000602082840312156121ba578081fd5b61110982612047565b6000602082840312156121d4578081fd5b813561110981612d2a565b6000602082840312156121f0578081fd5b815161110981612d2a565b60006020828403121561220c578081fd5b813567ffffffffffffffff811115612222578182fd5b8201601f81018413612232578182fd5b61195584823560208401611fc0565b600060208284031215612252578081fd5b5035919050565b60008060006040848603121561226d578283fd5b83359250602084013567ffffffffffffffff8082111561228b578384fd5b818601915086601f83011261229e578384fd5b8135818111156122ac578485fd5b8760208285010111156122bd578485fd5b6020830194508093505050509250925092565b600081518084526122e8816020860160208601612c52565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b6000835161232b818460208801612c52565b83519083019061233f818360208801612c52565b01949350505050565b7f19457468657265756d205369676e6564204d6573736167653a0a3332000000008152601c810191909152603c0190565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906123c0908301846122d0565b9695505050505050565b901515815260200190565b93845260ff9290921660208401526040830152606082015260800190565b60006020825261110960208301846122d0565b60208082526018908201527f45434453413a20696e76616c6964207369676e61747572650000000000000000604082015260600190565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252600b908201526a14d85b19481c185d5cd95960aa1b604082015260600190565b60208082526024908201527f50726f76656e616e636520686173682068617320616c7265616479206265656e604082015263081cd95d60e21b606082015260800190565b6020808252601f908201527f45434453413a20696e76616c6964207369676e6174757265206c656e67746800604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601d908201527f4578636565647320706572207472616e73616374696f6e206c696d6974000000604082015260600190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604082015261756560f01b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602c908201527f416d6f756e74206578636565647320726573657276656420616d6f756e74206660408201526b6f722067697665617761797360a01b606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526022908201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604082015261756560f01b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526015908201527415da1a5d195b1a5cdd081cd85b19481c185d5cd959605a1b604082015260600190565b60208082526016908201527545786365656473206d6178696d756d20737570706c7960501b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526028908201527f455243373231413a207175616e74697479206d75737420626520677265617465604082015267072207468616e20360c41b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b602080825260159082015274125b9d985b1a590819185d18481c1c9bdd9a591959605a1b604082015260600190565b602080825260169082015275125b98dbdc9c9958dd08195d1a195c88185b5bdd5b9d60521b604082015260600190565b90815260200190565b60008219821115612c0357612c03612ce8565b500190565b600082612c1757612c17612cfe565b500490565b6000816000190483118215151615612c3657612c36612ce8565b500290565b600082821015612c4d57612c4d612ce8565b500390565b60005b83811015612c6d578181015183820152602001612c55565b838111156110805750506000910152565b600281046001821680612c9257607f821691505b60208210811415612cb357634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612ccd57612ccd612ce8565b5060010190565b600082612ce357612ce3612cfe565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146112d757600080fdfea26469706673582212208fddb52c5428484e9aacb02f2733922836b30c06bfbbde13011519dd8c2c72b064736f6c63430008000033

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

000000000000000000000000e1b7717b153738d2667e43916bbe67b2342b8331

-----Decoded View---------------
Arg [0] : signer (address): 0xe1B7717b153738d2667E43916bbE67B2342b8331

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e1b7717b153738d2667e43916bbe67b2342b8331


Deployed Bytecode Sourcemap

49778:3913:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36485:372;;;;;;;;;;-1:-1:-1;36485:372:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52875:102;;;;;;;;;;-1:-1:-1;52875:102:0;;;;;:::i;:::-;;:::i;:::-;;38371:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;39933:214::-;;;;;;;;;;-1:-1:-1;39933:214:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39454:413::-;;;;;;;;;;-1:-1:-1;39454:413:0;;;;;:::i;:::-;;:::i;52003:96::-;;;;;;;;;;-1:-1:-1;52003:96:0;;;;;:::i;:::-;;:::i;52215:219::-;;;;;;;;;;-1:-1:-1;52215:219:0;;;;;:::i;:::-;;:::i;34742:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40809:170::-;;;;;;;;;;-1:-1:-1;40809:170:0;;;;;:::i;:::-;;:::i;35406:1007::-;;;;;;;;;;-1:-1:-1;35406:1007:0;;;;;:::i;:::-;;:::i;50144:41::-;;;;;;;;;;;;;:::i;50507:374::-;;;;;;:::i;:::-;;:::i;53546:142::-;;;;;;;;;;;;;:::i;41050:185::-;;;;;;;;;;-1:-1:-1;41050:185:0;;;;;:::i;:::-;;:::i;34919:187::-;;;;;;;;;;-1:-1:-1;34919:187:0;;;;;:::i;:::-;;:::i;52564:108::-;;;;;;;;;;-1:-1:-1;52564:108:0;;;;;:::i;:::-;;:::i;50036:28::-;;;;;;;;;;;;;:::i;38180:124::-;;;;;;;;;;-1:-1:-1;38180:124:0;;;;;:::i;:::-;;:::i;36921:221::-;;;;;;;;;;-1:-1:-1;36921:221:0;;;;;:::i;:::-;;:::i;29619:103::-;;;;;;;;;;;;;:::i;50272:40::-;;;;;;;;;;;;;:::i;50889:648::-;;;;;;:::i;:::-;;:::i;28968:87::-;;;;;;;;;;;;;:::i;52680:93::-;;;;;;;;;;-1:-1:-1;52680:93:0;;;;;:::i;:::-;;:::i;38540:104::-;;;;;;;;;;;;;:::i;52781:86::-;;;;;;;;;;;;;:::i;40219:288::-;;;;;;;;;;-1:-1:-1;40219:288:0;;;;;:::i;:::-;;:::i;52107:100::-;;;;;;;;;;-1:-1:-1;52107:100:0;;;;;:::i;:::-;;:::i;50192:28::-;;;;;;;;;;;;;:::i;41306:355::-;;;;;;;;;;-1:-1:-1;41306:355:0;;;;;:::i;:::-;;:::i;50227:38::-;;;;;;;;;;;;;:::i;38715:335::-;;;;;;;;;;-1:-1:-1;38715:335:0;;;;;:::i;:::-;;:::i;51771:224::-;;;;;;;;;;-1:-1:-1;51771:224:0;;;;;:::i;:::-;;:::i;50090:27::-;;;;;;;;;;;;;:::i;50352:26::-;;;;;;;;;;;;;:::i;40578:164::-;;;;;;;;;;-1:-1:-1;40578:164:0;;;;;:::i;:::-;;:::i;50321:24::-;;;;;;;;;;;;;:::i;29877:201::-;;;;;;;;;;-1:-1:-1;29877:201:0;;;;;:::i;:::-;;:::i;52985:106::-;;;;;;;;;;-1:-1:-1;52985:106:0;;;;;:::i;:::-;;:::i;49975:29::-;;;;;;;;;;;;;:::i;51545:218::-;;;;;;;;;;-1:-1:-1;51545:218:0;;;;;:::i;:::-;;:::i;36485:372::-;36587:4;-1:-1:-1;;;;;;36624:40:0;;-1:-1:-1;;;36624:40:0;;:105;;-1:-1:-1;;;;;;;36681:48:0;;-1:-1:-1;;;36681:48:0;36624:105;:172;;;-1:-1:-1;;;;;;;36746:50:0;;-1:-1:-1;;;36746:50:0;36624:172;:225;;;;36813:36;36837:11;36813:23;:36::i;:::-;36604:245;;36485:372;;;;:::o;52875:102::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;;;;;;;;;52946:13:::1;:23:::0;;-1:-1:-1;;;;;;52946:23:0::1;-1:-1:-1::0;;;;;52946:23:0;;;::::1;::::0;;;::::1;::::0;;52875:102::o;38371:100::-;38425:13;38458:5;38451:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38371:100;:::o;39933:214::-;40001:7;40029:16;40037:7;40029;:16::i;:::-;40021:74;;;;-1:-1:-1;;;40021:74:0;;;;;;;:::i;:::-;-1:-1:-1;40115:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40115:24:0;;39933:214::o;39454:413::-;39527:13;39543:24;39559:7;39543:15;:24::i;:::-;39527:40;;39592:5;-1:-1:-1;;;;;39586:11:0;:2;-1:-1:-1;;;;;39586:11:0;;;39578:58;;;;-1:-1:-1;;;39578:58:0;;;;;;;:::i;:::-;39687:5;-1:-1:-1;;;;;39671:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;39671:21:0;;:62;;;;39696:37;39713:5;39720:12;:10;:12::i;39696:37::-;39649:169;;;;-1:-1:-1;;;39649:169:0;;;;;;;:::i;:::-;39831:28;39840:2;39844:7;39853:5;39831:8;:28::i;:::-;39454:413;;;:::o;52003:96::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;52070:12:::1;:21:::0;;-1:-1:-1;;52070:21:0::1;::::0;::::1;;::::0;;;::::1;::::0;;52003:96::o;52215:219::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;52314:15:::1;52308:29;;;;;:::i;:::-;:34:::0;;-1:-1:-1;52300:83:0::1;;;;-1:-1:-1::0;;;52300:83:0::1;;;;;;;:::i;:::-;52394:32:::0;;::::1;::::0;:15:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;52215:219:::0;:::o;34742:100::-;34795:7;34822:12;34742:100;:::o;40809:170::-;40943:28;40953:4;40959:2;40963:7;40943:9;:28::i;35406:1007::-;35495:7;35531:16;35541:5;35531:9;:16::i;:::-;35523:5;:24;35515:71;;;;-1:-1:-1;;;35515:71:0;;;;;;;:::i;:::-;35597:22;35622:13;:11;:13::i;:::-;35597:38;;35646:19;35676:25;35865:9;35860:466;35880:14;35876:1;:18;35860:466;;;35920:31;35954:14;;;:11;:14;;;;;;;;;35920:48;;;;;;;;;-1:-1:-1;;;;;35920:48:0;;;;;-1:-1:-1;;;35920:48:0;;;;;;;;;;;;35991:28;35987:111;;36064:14;;;-1:-1:-1;35987:111:0;36141:5;-1:-1:-1;;;;;36120:26:0;:17;-1:-1:-1;;;;;36120:26:0;;36116:195;;;36190:5;36175:11;:20;36171:85;;;-1:-1:-1;36231:1:0;-1:-1:-1;36224:8:0;;-1:-1:-1;;;36224:8:0;36171:85;36278:13;;;;;36116:195;-1:-1:-1;35896:3:0;;35860:466;;;;36349:56;;-1:-1:-1;;;36349:56:0;;;;;;;:::i;35406:1007::-;;;;;:::o;50144:41::-;50181:4;50144:41;:::o;50507:374::-;32087:1;32685:7;;:19;;32677:63;;;;-1:-1:-1;;;32677:63:0;;;;;;;:::i;:::-;32087:1;32818:7;:18;50586:14:::1;50603:13;:11;:13::i;:::-;50636:12;::::0;50586:30;;-1:-1:-1;50636:12:0::1;;50627:38;;;;-1:-1:-1::0;;;50627:38:0::1;;;;;;;:::i;:::-;50717:8;::::0;50704:21:::1;::::0;50181:4:::1;50704:21;:::i;:::-;50685:15;50694:6:::0;50685;:15:::1;:::i;:::-;:40;;50676:77;;;;-1:-1:-1::0;;;50676:77:0::1;;;;;;;:::i;:::-;50799:6;50786:10;;:19;;;;:::i;:::-;50773:9;:32;;50764:69;;;;-1:-1:-1::0;;;50764:69:0::1;;;;;;;:::i;:::-;50844:29;50854:10;50866:6;50844:9;:29::i;:::-;-1:-1:-1::0;;32043:1:0;32997:7;:22;50507:374::o;53546:142::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;53614:21:::1;53654:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;53646:25:0::1;:34;53672:7;53646:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;41050:185:::0;41188:39;41205:4;41211:2;41215:7;41188:39;;;;;;;;;;;;:16;:39::i;34919:187::-;34986:7;35022:13;:11;:13::i;:::-;35014:5;:21;35006:69;;;;-1:-1:-1;;;35006:69:0;;;;;;;:::i;:::-;-1:-1:-1;35093:5:0;34919:187::o;52564:108::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;52638:26;;::::1;::::0;:13:::1;::::0;:26:::1;::::0;::::1;::::0;::::1;:::i;50036:28::-:0;;;-1:-1:-1;;;;;50036:28:0;;:::o;38180:124::-;38244:7;38271:20;38283:7;38271:11;:20::i;:::-;:25;;38180:124;-1:-1:-1;;38180:124:0:o;36921:221::-;36985:7;-1:-1:-1;;;;;37013:19:0;;37005:75;;;;-1:-1:-1;;;37005:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;37106:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37106:27:0;;36921:221::o;29619:103::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;29684:30:::1;29711:1;29684:18;:30::i;:::-;29619:103::o:0;50272:40::-;;;;:::o;50889:648::-;32087:1;32685:7;;:19;;32677:63;;;;-1:-1:-1;;;32677:63:0;;;;;;;:::i;:::-;32087:1;32818:7;:18;50996:14:::1;51013:13;:11;:13::i;:::-;51084:14;::::0;50996:30;;-1:-1:-1;51054:10:0::1;::::0;51084:14:::1;::::0;::::1;;;51075:50;;;;-1:-1:-1::0;;;51075:50:0::1;;;;;;;:::i;:::-;51177:8;::::0;51164:21:::1;::::0;50181:4:::1;51164:21;:::i;:::-;51145:15;51154:6:::0;51145;:15:::1;:::i;:::-;:40;;51136:77;;;;-1:-1:-1::0;;;51136:77:0::1;;;;;;;:::i;:::-;51243:20;;51233:6;:30;;51224:74;;;;-1:-1:-1::0;;;51224:74:0::1;;;;;;;:::i;:::-;51344:6;51331:10;;:19;;;;:::i;:::-;51318:9;:32;;51309:69;;;;-1:-1:-1::0;;;51309:69:0::1;;;;;;;:::i;:::-;51397:70;51428:9;;51450:6;51397:18;:70::i;:::-;51389:104;;;;-1:-1:-1::0;;;51389:104:0::1;;;;;;;:::i;:::-;51504:25;51514:6;51522;51504:9;:25::i;:::-;-1:-1:-1::0;;32043:1:0;32997:7;:22;-1:-1:-1;;;50889:648:0:o;28968:87::-;29041:6;;-1:-1:-1;;;;;29041:6:0;28968:87;:::o;52680:93::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;52744:10:::1;:21:::0;52680:93::o;38540:104::-;38596:13;38629:7;38622:14;;;;;:::i;52781:86::-;52849:10;;52781:86;:::o;40219:288::-;40326:12;:10;:12::i;:::-;-1:-1:-1;;;;;40314:24:0;:8;-1:-1:-1;;;;;40314:24:0;;;40306:63;;;;-1:-1:-1;;;40306:63:0;;;;;;;:::i;:::-;40427:8;40382:18;:32;40401:12;:10;:12::i;:::-;-1:-1:-1;;;;;40382:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;40382:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;40382:53:0;;;;;;;;;;;40466:12;:10;:12::i;:::-;-1:-1:-1;;;;;40451:48:0;;40490:8;40451:48;;;;;;:::i;:::-;;;;;;;;40219:288;;:::o;52107:100::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;52176:14:::1;:23:::0;;;::::1;;;;-1:-1:-1::0;;52176:23:0;;::::1;::::0;;;::::1;::::0;;52107:100::o;50192:28::-;;;;:::o;41306:355::-;41465:28;41475:4;41481:2;41485:7;41465:9;:28::i;:::-;41526:48;41549:4;41555:2;41559:7;41568:5;41526:22;:48::i;:::-;41504:149;;;;-1:-1:-1;;;41504:149:0;;;;;;;:::i;:::-;41306:355;;;;:::o;50227:38::-;;;;:::o;38715:335::-;38788:13;38822:16;38830:7;38822;:16::i;:::-;38814:76;;;;-1:-1:-1;;;38814:76:0;;;;;;;:::i;:::-;38903:21;38927:10;:8;:10::i;:::-;38903:34;;38961:7;38955:21;38980:1;38955:26;;:87;;;;;;;;;;;;;;;;;39008:7;39017:18;:7;:16;:18::i;:::-;38991:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;38955:87;38948:94;38715:335;-1:-1:-1;;;38715:335:0:o;51771:224::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;51867:8:::1;;51857:6;:18;;51848:77;;;;-1:-1:-1::0;;;51848:77:0::1;;;;;;;:::i;:::-;51936:22;51946:3;51951:6;51936:9;:22::i;:::-;51981:6;51969:8;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;51771:224:0:o;50090:27::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;50352:26::-;;;;;;;;;:::o;40578:164::-;-1:-1:-1;;;;;40699:25:0;;;40675:4;40699:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40578:164::o;50321:24::-;;;;;;:::o;29877:201::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29966:22:0;::::1;29958:73;;;;-1:-1:-1::0;;;29958:73:0::1;;;;;;;:::i;:::-;30042:28;30061:8;30042:18;:28::i;:::-;29877:201:::0;:::o;52985:106::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;53052:20:::1;:31:::0;52985:106::o;49975:29::-;;;;;;;:::i;51545:218::-;29199:12;:10;:12::i;:::-;-1:-1:-1;;;;;29188:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;29188:23:0;;29180:68;;;;-1:-1:-1;;;29180:68:0;;;;;;;:::i;:::-;51674:8:::1;::::0;51661:21:::1;::::0;50181:4:::1;51661:21;:::i;:::-;51626:31;51644:12;51626:13;:11;:13::i;:::-;:17:::0;::::1;:31::i;:::-;:56;;51618:91;;;;-1:-1:-1::0;;;51618:91:0::1;;;;;;;:::i;:::-;51720:35;51730:10;51742:12;51720:9;:35::i;10852:157::-:0;-1:-1:-1;;;;;;10961:40:0;;-1:-1:-1;;;10961:40:0;10852:157;;;:::o;27835:98::-;27915:10;27835:98;:::o;41916:111::-;41973:4;42007:12;-1:-1:-1;41997:22:0;41916:111::o;46836:196::-;46951:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;46951:29:0;-1:-1:-1;;;;;46951:29:0;;;;;;;;;46996:28;;46951:24;;46996:28;;;;;;;46836:196;;;:::o;44716:2002::-;44831:35;44869:20;44881:7;44869:11;:20::i;:::-;44831:58;;44902:22;44944:13;:18;;;-1:-1:-1;;;;;44928:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;44928:34:0;;:87;;;;45003:12;:10;:12::i;:::-;-1:-1:-1;;;;;44979:36:0;:20;44991:7;44979:11;:20::i;:::-;-1:-1:-1;;;;;44979:36:0;;44928:87;:154;;;-1:-1:-1;45049:18:0;;45032:50;;45069:12;:10;:12::i;45032:50::-;44902:181;;45104:17;45096:80;;;;-1:-1:-1;;;45096:80:0;;;;;;;:::i;:::-;45219:4;-1:-1:-1;;;;;45197:26:0;:13;:18;;;-1:-1:-1;;;;;45197:26:0;;45189:77;;;;-1:-1:-1;;;45189:77:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45285:16:0;;45277:66;;;;-1:-1:-1;;;45277:66:0;;;;;;;:::i;:::-;45356:43;45378:4;45384:2;45388:7;45397:1;45356:21;:43::i;:::-;45464:49;45481:1;45485:7;45494:13;:18;;;45464:8;:49::i;:::-;-1:-1:-1;;;;;45809:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;;;;;45809:31:0;;;-1:-1:-1;;;;;45809:31:0;;;-1:-1:-1;;45809:31:0;;;;;;;45855:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;45855:29:0;;;;;;;;;;;;;45901:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;45901:30:0;;;;-1:-1:-1;;;;45946:61:0;-1:-1:-1;;;45991:15:0;45946:61;;;;;;46281:11;;;46311:24;;;;;:29;46281:11;;46311:29;46307:295;;46379:20;46387:11;46379:7;:20::i;:::-;46375:212;;;46456:18;;;46424:24;;;:11;:24;;;;;;;;:50;;46539:28;;;;46497:70;;-1:-1:-1;;;46497:70:0;-1:-1:-1;;;;;;;;;46424:50:0;;;-1:-1:-1;;;;;;46424:50:0;;;;;;;46497:70;;;;;;;46375:212;44716:2002;46649:7;46645:2;-1:-1:-1;;;;;46630:27:0;46639:4;-1:-1:-1;;;;;46630:27:0;;;;;;;;;;;46668:42;46689:4;46695:2;46699:7;46708:1;46668:20;:42::i;:::-;44716:2002;;;;;:::o;42035:104::-;42104:27;42114:2;42118:8;42104:27;;;;;;;;;;;;:9;:27::i;37581:537::-;37642:21;;:::i;:::-;37684:16;37692:7;37684;:16::i;:::-;37676:71;;;;-1:-1:-1;;;37676:71:0;;;;;;;:::i;:::-;37805:7;37785:245;37852:31;37886:17;;;:11;:17;;;;;;;;;37852:51;;;;;;;;;-1:-1:-1;;;;;37852:51:0;;;;;-1:-1:-1;;;37852:51:0;;;;;;;;;;;;37926:28;37922:93;;37986:9;-1:-1:-1;37979:16:0;;-1:-1:-1;37979:16:0;37922:93;-1:-1:-1;;;37825:6:0;37785:245;;30238:191;30331:6;;;-1:-1:-1;;;;;30348:17:0;;;-1:-1:-1;;;;;;30348:17:0;;;;;;;30381:40;;30331:6;;;30348:17;30331:6;;30381:40;;30312:16;;30381:40;30238:191;;:::o;53099:439::-;53228:4;53245:16;53291:13;53274:31;;;;;;;;:::i;:::-;;;;;;;;;;;;;53264:42;;;;;;53245:61;;53317:15;53335:38;53364:8;53335:28;:38::i;:::-;53317:56;;53386:23;53412:33;53426:7;53435:9;;53412:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;53412:13:0;;-1:-1:-1;;;53412:33:0:i;:::-;53386:59;-1:-1:-1;;;;;;53464:29:0;;;;;;:65;;-1:-1:-1;53516:13:0;;-1:-1:-1;;;;;53497:32:0;;;53516:13;;53497:32;53464:65;53456:74;53099:439;-1:-1:-1;;;;;;;53099:439:0:o;47597:804::-;47752:4;47773:15;:2;-1:-1:-1;;;;;47773:13:0;;:15::i;:::-;47769:625;;;47825:2;-1:-1:-1;;;;;47809:36:0;;47846:12;:10;:12::i;:::-;47860:4;47866:7;47875:5;47809:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47809:72:0;;;;;;;;-1:-1:-1;;47809:72:0;;;;;;;;;;;;:::i;:::-;;;47805:534;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48055:13:0;;48051:273;;48098:61;;-1:-1:-1;;;48098:61:0;;;;;;;:::i;48051:273::-;48274:6;48268:13;48259:6;48255:2;48251:15;48244:38;47805:534;-1:-1:-1;;;;;;47932:55:0;-1:-1:-1;;;47932:55:0;;-1:-1:-1;47925:62:0;;47769:625;-1:-1:-1;48378:4:0;47769:625;47597:804;;;;;;:::o;52442:114::-;52502:13;52535;52528:20;;;;;:::i;1107:723::-;1163:13;1384:10;1380:53;;-1:-1:-1;1411:10:0;;;;;;;;;;;;-1:-1:-1;;;1411:10:0;;;;;;1380:53;1458:5;1443:12;1499:78;1506:9;;1499:78;;1532:8;;;;:::i;:::-;;-1:-1:-1;1555:10:0;;-1:-1:-1;1563:2:0;1555:10;;:::i;:::-;;;1499:78;;;1587:19;1619:6;1609:17;;;;;;-1:-1:-1;;;1609:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1609:17:0;;1587:39;;1637:154;1644:10;;1637:154;;1671:11;1681:1;1671:11;;:::i;:::-;;-1:-1:-1;1740:10:0;1748:2;1740:5;:10;:::i;:::-;1727:24;;:2;:24;:::i;:::-;1714:39;;1697:6;1704;1697:14;;;;;;-1:-1:-1;;;1697:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;1697:56:0;;;;;;;;-1:-1:-1;1768:11:0;1777:2;1768:11;;:::i;:::-;;;1637:154;;13727:98;13785:7;13812:5;13816:1;13812;:5;:::i;42502:163::-;42625:32;42631:2;42635:8;42645:5;42652:4;42625:5;:32::i;25980:269::-;26049:7;26235:4;26182:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;26172:69;;;;;;26165:76;;25980:269;;;:::o;22131:231::-;22209:7;22230:17;22249:18;22271:27;22282:4;22288:9;22271:10;:27::i;:::-;22229:69;;;;22309:18;22321:5;22309:11;:18::i;:::-;-1:-1:-1;22345:9:0;22131:231;-1:-1:-1;;;22131:231:0:o;9954:193::-;10083:20;10131:8;;;9954:193::o;42924:1538::-;43063:20;43086:12;-1:-1:-1;;;;;43117:16:0;;43109:62;;;;-1:-1:-1;;;43109:62:0;;;;;;;:::i;:::-;43190:13;43182:66;;;;-1:-1:-1;;;43182:66:0;;;;;;;:::i;:::-;43261:61;43291:1;43295:2;43299:12;43313:8;43261:21;:61::i;:::-;-1:-1:-1;;;;;43600:16:0;;;;;;:12;:16;;;;;;;;:45;;-1:-1:-1;;;;;;43600:45:0;;-1:-1:-1;;;;;43600:45:0;;;;;;;;43660:50;;;-1:-1:-1;;;43660:50:0;;;;;;;;;;;;;;;43727:25;;;:11;:25;;;;;:35;;-1:-1:-1;;;;;;43727:35:0;;;;-1:-1:-1;;;;43777:66:0;-1:-1:-1;;;43827:15:0;43777:66;;;;;;;43727:25;;43912:415;43932:8;43928:1;:12;43912:415;;;43971:38;;43996:12;;-1:-1:-1;;;;;43971:38:0;;;43988:1;;43971:38;;43988:1;;43971:38;44032:4;44028:249;;;44095:59;44126:1;44130:2;44134:12;44148:5;44095:22;:59::i;:::-;44061:196;;;;-1:-1:-1;;;44061:196:0;;;;;;;:::i;:::-;44297:14;;;;;43942:3;43912:415;;;-1:-1:-1;44343:12:0;:27;;;44394:60;;44427:2;44431:12;44445:8;44394:20;:60::i;20021:1308::-;20102:7;20111:12;20336:9;:16;20356:2;20336:22;20332:990;;;20632:4;20617:20;;20611:27;20682:4;20667:20;;20661:27;20740:4;20725:20;;20719:27;20375:9;20711:36;20783:25;20794:4;20711:36;20611:27;20661;20783:10;:25::i;:::-;20776:32;;;;;;;;;20332:990;20830:9;:16;20850:2;20830:22;20826:496;;;21105:4;21090:20;;21084:27;21156:4;21141:20;;21135:27;21198:23;21209:4;21084:27;21135;21198:10;:23::i;:::-;21191:30;;;;;;;;20826:496;-1:-1:-1;21270:1:0;;-1:-1:-1;21274:35:0;20826:496;20021:1308;;;;;:::o;18292:643::-;18370:20;18361:5;:29;;;;;;-1:-1:-1;;;18361:29:0;;;;;;;;;;18357:571;;;18407:7;;18357:571;18468:29;18459:5;:38;;;;;;-1:-1:-1;;;18459:38:0;;;;;;;;;;18455:473;;;18514:34;;-1:-1:-1;;;18514:34:0;;;;;;;:::i;18455:473::-;18579:35;18570:5;:44;;;;;;-1:-1:-1;;;18570:44:0;;;;;;;;;;18566:362;;;18631:41;;-1:-1:-1;;;18631:41:0;;;;;;;:::i;18566:362::-;18703:30;18694:5;:39;;;;;;-1:-1:-1;;;18694:39:0;;;;;;;;;;18690:238;;;18750:44;;-1:-1:-1;;;18750:44:0;;;;;;;:::i;18690:238::-;18825:30;18816:5;:39;;;;;;-1:-1:-1;;;18816:39:0;;;;;;;;;;18812:116;;;18872:44;;-1:-1:-1;;;18872:44:0;;;;;;;:::i;23630:1632::-;23761:7;;24695:66;24682:79;;24678:163;;;-1:-1:-1;24794:1:0;;-1:-1:-1;24798:30:0;24778:51;;24678:163;24855:1;:7;;24860:2;24855:7;;:18;;;;;24866:1;:7;;24871:2;24866:7;;24855:18;24851:102;;;-1:-1:-1;24906:1:0;;-1:-1:-1;24910:30:0;24890:51;;24851:102;25050:14;25067:24;25077:4;25083:1;25086;25089;25067:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;25067:24:0;;-1:-1:-1;;25067:24:0;;;-1:-1:-1;;;;;;;25106:20:0;;25102:103;;25159:1;25163:29;25143:50;;;;;;;25102:103;25225:6;-1:-1:-1;25233:20:0;;-1:-1:-1;23630:1632:0;;;;;;;;:::o;22625:391::-;22739:7;;-1:-1:-1;;;;;22840:75:0;;22942:3;22938:12;;;22952:2;22934:21;22983:25;22994:4;22934:21;23003:1;22840:75;22983:10;:25::i;:::-;22976:32;;;;;;22625:391;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:709::-;;;;4608:2;4596:9;4587:7;4583:23;4579:32;4576:2;;;4629:6;4621;4614:22;4576:2;4670:9;4657:23;4647:33;;4731:2;4720:9;4716:18;4703:32;4754:18;4795:2;4787:6;4784:14;4781:2;;;4816:6;4808;4801:22;4781:2;4859:6;4848:9;4844:22;4834:32;;4904:7;4897:4;4893:2;4889:13;4885:27;4875:2;;4931:6;4923;4916:22;4875:2;4976;4963:16;5002:2;4994:6;4991:14;4988:2;;;5023:6;5015;5008:22;4988:2;5073:7;5068:2;5059:6;5055:2;5051:15;5047:24;5044:37;5041:2;;;5099:6;5091;5084:22;5041:2;5135;5131;5127:11;5117:21;;5157:6;5147:16;;;;;4566:603;;;;;:::o;5174:259::-;;5255:5;5249:12;5282:6;5277:3;5270:19;5298:63;5354:6;5347:4;5342:3;5338:14;5331:4;5324:5;5320:16;5298:63;:::i;:::-;5415:2;5394:15;-1:-1:-1;;5390:29:1;5381:39;;;;5422:4;5377:50;;5225:208;-1:-1:-1;;5225:208:1:o;5438:229::-;5587:2;5583:15;;;;-1:-1:-1;;5579:53:1;5567:66;;5658:2;5649:12;;5557:110::o;5672:470::-;;5889:6;5883:13;5905:53;5951:6;5946:3;5939:4;5931:6;5927:17;5905:53;:::i;:::-;6021:13;;5980:16;;;;6043:57;6021:13;5980:16;6077:4;6065:17;;6043:57;:::i;:::-;6116:20;;5859:283;-1:-1:-1;;;;5859:283:1:o;6147:380::-;6389:66;6377:79;;6481:2;6472:12;;6465:28;;;;6518:2;6509:12;;6367:160::o;6532:203::-;-1:-1:-1;;;;;6696:32:1;;;;6678:51;;6666:2;6651:18;;6633:102::o;6740:490::-;-1:-1:-1;;;;;7009:15:1;;;6991:34;;7061:15;;7056:2;7041:18;;7034:43;7108:2;7093:18;;7086:34;;;7156:3;7151:2;7136:18;;7129:31;;;6740:490;;7177:47;;7204:19;;7196:6;7177:47;:::i;:::-;7169:55;6943:287;-1:-1:-1;;;;;;6943:287:1:o;7235:187::-;7400:14;;7393:22;7375:41;;7363:2;7348:18;;7330:92::o;7427:398::-;7654:25;;;7727:4;7715:17;;;;7710:2;7695:18;;7688:45;7764:2;7749:18;;7742:34;7807:2;7792:18;;7785:34;7641:3;7626:19;;7608:217::o;7830:221::-;;7979:2;7968:9;7961:21;7999:46;8041:2;8030:9;8026:18;8018:6;7999:46;:::i;8056:348::-;8258:2;8240:21;;;8297:2;8277:18;;;8270:30;8336:26;8331:2;8316:18;;8309:54;8395:2;8380:18;;8230:174::o;8409:398::-;8611:2;8593:21;;;8650:2;8630:18;;;8623:30;8689:34;8684:2;8669:18;;8662:62;-1:-1:-1;;;8755:2:1;8740:18;;8733:32;8797:3;8782:19;;8583:224::o;8812:335::-;9014:2;8996:21;;;9053:2;9033:18;;;9026:30;-1:-1:-1;;;9087:2:1;9072:18;;9065:41;9138:2;9123:18;;8986:161::o;9152:400::-;9354:2;9336:21;;;9393:2;9373:18;;;9366:30;9432:34;9427:2;9412:18;;9405:62;-1:-1:-1;;;9498:2:1;9483:18;;9476:34;9542:3;9527:19;;9326:226::o;9557:355::-;9759:2;9741:21;;;9798:2;9778:18;;;9771:30;9837:33;9832:2;9817:18;;9810:61;9903:2;9888:18;;9731:181::o;9917:402::-;10119:2;10101:21;;;10158:2;10138:18;;;10131:30;10197:34;10192:2;10177:18;;10170:62;-1:-1:-1;;;10263:2:1;10248:18;;10241:36;10309:3;10294:19;;10091:228::o;10324:353::-;10526:2;10508:21;;;10565:2;10545:18;;;10538:30;10604:31;10599:2;10584:18;;10577:59;10668:2;10653:18;;10498:179::o;10682:406::-;10884:2;10866:21;;;10923:2;10903:18;;;10896:30;10962:34;10957:2;10942:18;;10935:62;-1:-1:-1;;;11028:2:1;11013:18;;11006:40;11078:3;11063:19;;10856:232::o;11093:399::-;11295:2;11277:21;;;11334:2;11314:18;;;11307:30;11373:34;11368:2;11353:18;;11346:62;-1:-1:-1;;;11439:2:1;11424:18;;11417:33;11482:3;11467:19;;11267:225::o;11497:401::-;11699:2;11681:21;;;11738:2;11718:18;;;11711:30;11777:34;11772:2;11757:18;;11750:62;-1:-1:-1;;;11843:2:1;11828:18;;11821:35;11888:3;11873:19;;11671:227::o;11903:398::-;12105:2;12087:21;;;12144:2;12124:18;;;12117:30;12183:34;12178:2;12163:18;;12156:62;-1:-1:-1;;;12249:2:1;12234:18;;12227:32;12291:3;12276:19;;12077:224::o;12306:421::-;12508:2;12490:21;;;12547:2;12527:18;;;12520:30;12586:34;12581:2;12566:18;;12559:62;12657:27;12652:2;12637:18;;12630:55;12717:3;12702:19;;12480:247::o;12732:408::-;12934:2;12916:21;;;12973:2;12953:18;;;12946:30;13012:34;13007:2;12992:18;;12985:62;-1:-1:-1;;;13078:2:1;13063:18;;13056:42;13130:3;13115:19;;12906:234::o;13145:407::-;13347:2;13329:21;;;13386:2;13366:18;;;13359:30;13425:34;13420:2;13405:18;;13398:62;-1:-1:-1;;;13491:2:1;13476:18;;13469:41;13542:3;13527:19;;13319:233::o;13557:398::-;13759:2;13741:21;;;13798:2;13778:18;;;13771:30;13837:34;13832:2;13817:18;;13810:62;-1:-1:-1;;;13903:2:1;13888:18;;13881:32;13945:3;13930:19;;13731:224::o;13960:402::-;14162:2;14144:21;;;14201:2;14181:18;;;14174:30;14240:34;14235:2;14220:18;;14213:62;-1:-1:-1;;;14306:2:1;14291:18;;14284:36;14352:3;14337:19;;14134:228::o;14367:356::-;14569:2;14551:21;;;14588:18;;;14581:30;14647:34;14642:2;14627:18;;14620:62;14714:2;14699:18;;14541:182::o;14728:411::-;14930:2;14912:21;;;14969:2;14949:18;;;14942:30;15008:34;15003:2;14988:18;;14981:62;-1:-1:-1;;;15074:2:1;15059:18;;15052:45;15129:3;15114:19;;14902:237::o;15144:350::-;15346:2;15328:21;;;15385:2;15365:18;;;15358:30;15424:28;15419:2;15404:18;;15397:56;15485:2;15470:18;;15318:176::o;15499:414::-;15701:2;15683:21;;;15740:2;15720:18;;;15713:30;15779:34;15774:2;15759:18;;15752:62;-1:-1:-1;;;15845:2:1;15830:18;;15823:48;15903:3;15888:19;;15673:240::o;15918:345::-;16120:2;16102:21;;;16159:2;16139:18;;;16132:30;-1:-1:-1;;;16193:2:1;16178:18;;16171:51;16254:2;16239:18;;16092:171::o;16268:346::-;16470:2;16452:21;;;16509:2;16489:18;;;16482:30;-1:-1:-1;;;16543:2:1;16528:18;;16521:52;16605:2;16590:18;;16442:172::o;16619:398::-;16821:2;16803:21;;;16860:2;16840:18;;;16833:30;16899:34;16894:2;16879:18;;16872:62;-1:-1:-1;;;16965:2:1;16950:18;;16943:32;17007:3;16992:19;;16793:224::o;17022:415::-;17224:2;17206:21;;;17263:2;17243:18;;;17236:30;17302:34;17297:2;17282:18;;17275:62;-1:-1:-1;;;17368:2:1;17353:18;;17346:49;17427:3;17412:19;;17196:241::o;17442:397::-;17644:2;17626:21;;;17683:2;17663:18;;;17656:30;17722:34;17717:2;17702:18;;17695:62;-1:-1:-1;;;17788:2:1;17773:18;;17766:31;17829:3;17814:19;;17616:223::o;17844:404::-;18046:2;18028:21;;;18085:2;18065:18;;;18058:30;18124:34;18119:2;18104:18;;18097:62;-1:-1:-1;;;18190:2:1;18175:18;;18168:38;18238:3;18223:19;;18018:230::o;18253:410::-;18455:2;18437:21;;;18494:2;18474:18;;;18467:30;18533:34;18528:2;18513:18;;18506:62;-1:-1:-1;;;18599:2:1;18584:18;;18577:44;18653:3;18638:19;;18427:236::o;18668:355::-;18870:2;18852:21;;;18909:2;18889:18;;;18882:30;18948:33;18943:2;18928:18;;18921:61;19014:2;18999:18;;18842:181::o;19444:409::-;19646:2;19628:21;;;19685:2;19665:18;;;19658:30;19724:34;19719:2;19704:18;;19697:62;-1:-1:-1;;;19790:2:1;19775:18;;19768:43;19843:3;19828:19;;19618:235::o;19858:345::-;20060:2;20042:21;;;20099:2;20079:18;;;20072:30;-1:-1:-1;;;20133:2:1;20118:18;;20111:51;20194:2;20179:18;;20032:171::o;20208:346::-;20410:2;20392:21;;;20449:2;20429:18;;;20422:30;-1:-1:-1;;;20483:2:1;20468:18;;20461:52;20545:2;20530:18;;20382:172::o;20559:177::-;20705:25;;;20693:2;20678:18;;20660:76::o;20741:128::-;;20812:1;20808:6;20805:1;20802:13;20799:2;;;20818:18;;:::i;:::-;-1:-1:-1;20854:9:1;;20789:80::o;20874:120::-;;20940:1;20930:2;;20945:18;;:::i;:::-;-1:-1:-1;20979:9:1;;20920:74::o;20999:168::-;;21105:1;21101;21097:6;21093:14;21090:1;21087:21;21082:1;21075:9;21068:17;21064:45;21061:2;;;21112:18;;:::i;:::-;-1:-1:-1;21152:9:1;;21051:116::o;21172:125::-;;21240:1;21237;21234:8;21231:2;;;21245:18;;:::i;:::-;-1:-1:-1;21282:9:1;;21221:76::o;21302:258::-;21374:1;21384:113;21398:6;21395:1;21392:13;21384:113;;;21474:11;;;21468:18;21455:11;;;21448:39;21420:2;21413:10;21384:113;;;21515:6;21512:1;21509:13;21506:2;;;-1:-1:-1;;21550:1:1;21532:16;;21525:27;21355:205::o;21565:380::-;21650:1;21640:12;;21697:1;21687:12;;;21708:2;;21762:4;21754:6;21750:17;21740:27;;21708:2;21815;21807:6;21804:14;21784:18;21781:38;21778:2;;;21861:10;21856:3;21852:20;21849:1;21842:31;21896:4;21893:1;21886:15;21924:4;21921:1;21914:15;21778:2;;21620:325;;;:::o;21950:135::-;;-1:-1:-1;;22010:17:1;;22007:2;;;22030:18;;:::i;:::-;-1:-1:-1;22077:1:1;22066:13;;21997:88::o;22090:112::-;;22148:1;22138:2;;22153:18;;:::i;:::-;-1:-1:-1;22187:9:1;;22128:74::o;22207:127::-;22268:10;22263:3;22259:20;22256:1;22249:31;22299:4;22296:1;22289:15;22323:4;22320:1;22313:15;22339:127;22400:10;22395:3;22391:20;22388:1;22381:31;22431:4;22428:1;22421:15;22455:4;22452:1;22445:15;22471:127;22532:10;22527:3;22523:20;22520:1;22513:31;22563:4;22560:1;22553:15;22587:4;22584:1;22577:15;22603:133;-1:-1:-1;;;;;;22679:32:1;;22669:43;;22659:2;;22726:1;22723;22716:12

Swarm Source

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